From 7b5bf9d8e56bb34438d0f010d14f7bbaf5690f70 Mon Sep 17 00:00:00 2001 From: Peter Mudd Date: Fri, 6 Mar 2020 12:42:46 -0500 Subject: [PATCH 1/5] test: fix commit kitchen test commit message, no auto push --- scripts/kitchen_test.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/kitchen_test.sh b/scripts/kitchen_test.sh index 4d88154..ef7c469 100755 --- a/scripts/kitchen_test.sh +++ b/scripts/kitchen_test.sh @@ -53,7 +53,7 @@ function log_test_kitchen_test() { git rev-parse HEAD | tee -a "$my_log" echo "CURRENT RELEASE TAG" | tee -a "$my_log" git tag --sort=committerdate | tail -1 | tee -a "$my_log" - kitchen test "$SERVER" --no-color --destroy passing | tee -a "$my_log" + kitchen test "$SERVER" --no-color --destroy always | tee -a "$my_log" return_code=${PIPESTATUS[0]} if [ ! "$return_code" -eq 0 ]; then echo "KITCHEN TEST DID NOT COMPLETE SUCCESSFULLY." | tee -a "$my_log" @@ -87,15 +87,13 @@ if [ ${#failures_array[@]} -eq 0 ]; then dos2unix test/results/* read -p 'Commit test results and push to github? [y]' -n 1 -r REPLY echo - commit_message="test: on premise windows 10 and windows server \'kitchen test\' results" + commit_message="test: on premise windows 10 and windows server `kitchen test` results" if [[ $REPLY =~ ^[Yy]$ ]]; then git add -A test/results git commit -m "$commit_message" - git push else echo git add test/results/* - echo git commit -m \""$commit_message"\" - echo git push + echo git commit -m "$commit_message" fi else for failure in "${!failures[@]}"; do From 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Mon Sep 17 00:00:00 2001 From: Peter Mudd Date: Fri, 6 Mar 2020 12:43:24 -0500 Subject: [PATCH 2/5] feat: support saltstack 3000 --- .kitchen.yml | 8 ++++---- windows/system/desktop/optional_features/action.jinja | 2 +- .../desktop/optional_features/feature_installed.sls | 2 +- .../system/desktop/optional_features/feature_removed.sls | 2 +- windows/system/packages/chocolatey/action.jinja | 2 +- windows/system/packages/saltstack/action.jinja | 2 +- windows/system/packages/saltstack/installed.sls | 2 +- windows/system/packages/saltstack/latest.sls | 2 +- windows/system/server/features/action.jinja | 2 +- windows/system/server/features/installed.sls | 2 +- windows/system/server/features/removed.sls | 2 +- windows/system/user/action.jinja | 2 +- windows/system/user/present.sls | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.kitchen.yml b/.kitchen.yml index 9944fca..e885ffe 100755 --- a/.kitchen.yml +++ b/.kitchen.yml @@ -155,11 +155,11 @@ platforms: suites: - name: py3 provisioner: - salt_bootstrap_options: "-version 2019.2.3 -pythonVersion 3" + salt_bootstrap_options: "-version 3000 -pythonVersion 3" # salt_version: latest - # - name: py3-3000 - # provisioner: - # salt_bootstrap_options: "-version 3000 -pythonVersion 3" + - name: py3-2019.2.3 + provisioner: + salt_bootstrap_options: "-version 2019.2.3 -pythonVersion 3" # - name: py2 # provisioner: # salt_bootstrap_options: "-version 2019.2.3 -pythonVersion 2" diff --git a/windows/system/desktop/optional_features/action.jinja b/windows/system/desktop/optional_features/action.jinja index 21241cc..8a298c0 100755 --- a/windows/system/desktop/optional_features/action.jinja +++ b/windows/system/desktop/optional_features/action.jinja @@ -2,5 +2,5 @@ {%- from tplroot ~ "/map.jinja" import windows with context %} {%- if windows.system.enabled and windows.system.desktop.enabled and windows.system.desktop.optional_features.enabled and 'Server' not in grains['osfinger'] %} {%- set action = sls.split('.')[-1] %} - {%- include slspath + "/optional_features.jinja" %} + {%- include tpldir + "/optional_features.jinja" %} {%- endif %} \ No newline at end of file diff --git a/windows/system/desktop/optional_features/feature_installed.sls b/windows/system/desktop/optional_features/feature_installed.sls index 8d9cd7a..9e8960a 100755 --- a/windows/system/desktop/optional_features/feature_installed.sls +++ b/windows/system/desktop/optional_features/feature_installed.sls @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- # vim: ft=sls -{%- include slspath + "/action.jinja" %} +{%- include tpldir + "/action.jinja" %} diff --git a/windows/system/desktop/optional_features/feature_removed.sls b/windows/system/desktop/optional_features/feature_removed.sls index 8d9cd7a..9e8960a 100755 --- a/windows/system/desktop/optional_features/feature_removed.sls +++ b/windows/system/desktop/optional_features/feature_removed.sls @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- # vim: ft=sls -{%- include slspath + "/action.jinja" %} +{%- include tpldir + "/action.jinja" %} diff --git a/windows/system/packages/chocolatey/action.jinja b/windows/system/packages/chocolatey/action.jinja index ef91ce6..18655da 100755 --- a/windows/system/packages/chocolatey/action.jinja +++ b/windows/system/packages/chocolatey/action.jinja @@ -3,5 +3,5 @@ {%- from "windows/map.jinja" import windows with context %} {%- if windows.system.enabled and windows.system.packages.saltstack.enabled %} {%- set action = sls.split('.')[-1] %} - {%- include slspath + "/packages.jinja" %} + {%- include tpldir + "/packages.jinja" %} {%- endif %} \ No newline at end of file diff --git a/windows/system/packages/saltstack/action.jinja b/windows/system/packages/saltstack/action.jinja index 4872d10..5a60720 100755 --- a/windows/system/packages/saltstack/action.jinja +++ b/windows/system/packages/saltstack/action.jinja @@ -1,5 +1,5 @@ {%- from "windows/map.jinja" import windows with context %} {%- if windows.system.enabled and windows.system.packages.enabled and windows.system.packages.saltstack.enabled %} {%- set action = sls.split('.')[-1] %} - {%- include slspath + "/pkg.jinja" %} + {%- include tpldir + "/pkg.jinja" %} {%- endif %} \ No newline at end of file diff --git a/windows/system/packages/saltstack/installed.sls b/windows/system/packages/saltstack/installed.sls index 3912b6e..a380526 100755 --- a/windows/system/packages/saltstack/installed.sls +++ b/windows/system/packages/saltstack/installed.sls @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- # vim: ft=sls -{%- include slspath + "/action.jinja" %} \ No newline at end of file +{%- include tpldir + "/action.jinja" %} \ No newline at end of file diff --git a/windows/system/packages/saltstack/latest.sls b/windows/system/packages/saltstack/latest.sls index 8d9cd7a..9e8960a 100755 --- a/windows/system/packages/saltstack/latest.sls +++ b/windows/system/packages/saltstack/latest.sls @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- # vim: ft=sls -{%- include slspath + "/action.jinja" %} +{%- include tpldir + "/action.jinja" %} diff --git a/windows/system/server/features/action.jinja b/windows/system/server/features/action.jinja index f90decb..65c4e87 100755 --- a/windows/system/server/features/action.jinja +++ b/windows/system/server/features/action.jinja @@ -2,5 +2,5 @@ {%- from tplroot ~ "/map.jinja" import windows with context %} {%- if windows.system.enabled and windows.system.server.enabled and windows.system.server.features.enabled and 'Server' in grains['osfinger'] %} {%- set action = sls.split('.')[-1] %} - {%- include slspath + "/features.jinja" %} + {%- include tpldir + "/features.jinja" %} {%- endif %} \ No newline at end of file diff --git a/windows/system/server/features/installed.sls b/windows/system/server/features/installed.sls index 8d9cd7a..9e8960a 100755 --- a/windows/system/server/features/installed.sls +++ b/windows/system/server/features/installed.sls @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- # vim: ft=sls -{%- include slspath + "/action.jinja" %} +{%- include tpldir + "/action.jinja" %} diff --git a/windows/system/server/features/removed.sls b/windows/system/server/features/removed.sls index 8d9cd7a..9e8960a 100755 --- a/windows/system/server/features/removed.sls +++ b/windows/system/server/features/removed.sls @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- # vim: ft=sls -{%- include slspath + "/action.jinja" %} +{%- include tpldir + "/action.jinja" %} diff --git a/windows/system/user/action.jinja b/windows/system/user/action.jinja index 3b8d3ca..2a5cccf 100755 --- a/windows/system/user/action.jinja +++ b/windows/system/user/action.jinja @@ -2,5 +2,5 @@ {%- from tplroot ~ "/map.jinja" import windows with context %} {%- if windows.system.enabled and windows.system.users.enabled %} {%- set action = sls.split('.')[-1] %} - {%- include slspath + "/add.jinja" %} + {%- include tpldir + "/add.jinja" %} {%- endif %} \ No newline at end of file diff --git a/windows/system/user/present.sls b/windows/system/user/present.sls index 3912b6e..a380526 100755 --- a/windows/system/user/present.sls +++ b/windows/system/user/present.sls @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- # vim: ft=sls -{%- include slspath + "/action.jinja" %} \ No newline at end of file +{%- include tpldir + "/action.jinja" %} \ No newline at end of file From 39235c1b306950da407a0d0f94a563ac69db1832 Mon Sep 17 00:00:00 2001 From: Peter Mudd Date: Fri, 6 Mar 2020 16:31:12 -0500 Subject: [PATCH 3/5] test: on premise windows 10 and windows server kitchen test results --- ...9.2.3-windows-10-1709.inspec.results.json} | 2 +- ...19.2.3-windows-10-1709.inspec.results.txt} | 2 +- ...19.2.3-windows-10-1709.inspec.results.xml} | 40 +- ...19.2.3-windows-10-1803.inspec.results.json | 1 + ...019.2.3-windows-10-1803.inspec.results.txt | 71 + ...019.2.3-windows-10-1803.inspec.results.xml | 27 + ...19.2.3-windows-10-1809.inspec.results.json | 1 + ...019.2.3-windows-10-1809.inspec.results.txt | 71 + ...019.2.3-windows-10-1809.inspec.results.xml | 27 + ...19.2.3-windows-10-1903.inspec.results.json | 1 + ...019.2.3-windows-10-1903.inspec.results.txt | 71 + ...19.2.3-windows-10-1903.inspec.results.xml} | 40 +- ...9.2.3-windows-10-1909.inspec.results.json} | 2 +- ...19.2.3-windows-10-1909.inspec.results.txt} | 2 +- ...019.2.3-windows-10-1909.inspec.results.xml | 27 + ....3-windows-server-2016.inspec.results.json | 1 + ...2.3-windows-server-2016.inspec.results.txt | 71 + ...2.3-windows-server-2016.inspec.results.xml | 27 + ...ndows-server-2019-1809.inspec.results.json | 1 + ...indows-server-2019-1809.inspec.results.txt | 71 + ...indows-server-2019-1809.inspec.results.xml | 27 + .../py3-201923-windows-10-1709.kitchen.log | 1020 + test/results/py3-201923-windows-10-1709.log | 1078 + .../py3-201923-windows-10-1709.salt.log | 30200 +++++++++++++++ .../py3-201923-windows-10-1803.kitchen.log | 1021 + test/results/py3-201923-windows-10-1803.log | 1079 + .../py3-201923-windows-10-1803.salt.log | 30214 +++++++++++++++ .../py3-201923-windows-10-1809.kitchen.log | 1036 + test/results/py3-201923-windows-10-1809.log | 1093 + .../py3-201923-windows-10-1809.salt.log | 30159 +++++++++++++++ .../py3-201923-windows-10-1903.kitchen.log | 1036 + test/results/py3-201923-windows-10-1903.log | 1093 + .../py3-201923-windows-10-1903.salt.log | 30159 +++++++++++++++ .../py3-201923-windows-10-1909.kitchen.log | 1028 + test/results/py3-201923-windows-10-1909.log | 1087 + .../py3-201923-windows-10-1909.salt.log | 30155 +++++++++++++++ ...py3-201923-windows-server-2016.kitchen.log | 952 + .../py3-201923-windows-server-2016.log | 1006 + .../py3-201923-windows-server-2016.salt.log | 31861 ++++++++++++++++ ...01923-windows-server-2019-1809.kitchen.log | 945 + .../py3-201923-windows-server-2019-1809.log | 1001 + ...3-201923-windows-server-2019-1809.salt.log | 31046 +++++++++++++++ test/results/py3-windows-10-1709.kitchen.log | 2113 +- test/results/py3-windows-10-1709.log | 266 +- test/results/py3-windows-10-1709.salt.log | 13354 +++---- .../py3-windows-10-1803.inspec.results.json | 2 +- .../py3-windows-10-1803.inspec.results.txt | 2 +- .../py3-windows-10-1803.inspec.results.xml | 40 +- test/results/py3-windows-10-1803.kitchen.log | 2042 +- test/results/py3-windows-10-1803.log | 209 +- test/results/py3-windows-10-1803.salt.log | 14233 +++---- .../py3-windows-10-1809.inspec.results.json | 2 +- .../py3-windows-10-1809.inspec.results.txt | 2 +- .../py3-windows-10-1809.inspec.results.xml | 40 +- test/results/py3-windows-10-1809.kitchen.log | 2072 +- test/results/py3-windows-10-1809.log | 191 +- test/results/py3-windows-10-1809.salt.log | 14507 ++++--- .../py3-windows-10-1903.inspec.results.json | 2 +- .../py3-windows-10-1903.inspec.results.txt | 2 +- .../py3-windows-10-1903.inspec.results.xml | 40 +- test/results/py3-windows-10-1903.kitchen.log | 2073 +- test/results/py3-windows-10-1903.log | 184 +- test/results/py3-windows-10-1903.salt.log | 13536 +++---- test/results/py3-windows-10-1909.kitchen.log | 2131 +- test/results/py3-windows-10-1909.log | 301 +- test/results/py3-windows-10-1909.salt.log | 13490 +++---- ...y3-windows-server-2016.inspec.results.json | 2 +- ...py3-windows-server-2016.inspec.results.txt | 2 +- ...py3-windows-server-2016.inspec.results.xml | 40 +- .../py3-windows-server-2016.kitchen.log | 1901 +- test/results/py3-windows-server-2016.log | 155 +- test/results/py3-windows-server-2016.salt.log | 14291 +++---- ...ndows-server-2019-1809.inspec.results.json | 2 +- ...indows-server-2019-1809.inspec.results.txt | 2 +- ...indows-server-2019-1809.inspec.results.xml | 40 +- .../py3-windows-server-2019-1809.kitchen.log | 1887 +- test/results/py3-windows-server-2019-1809.log | 181 +- .../py3-windows-server-2019-1809.salt.log | 13594 +++---- 78 files changed, 281690 insertions(+), 60093 deletions(-) rename test/results/{py3-windows-10-1709.inspec.results.json => py3-2019.2.3-windows-10-1709.inspec.results.json} (72%) rename test/results/{py3-windows-10-1909.inspec.results.txt => py3-2019.2.3-windows-10-1709.inspec.results.txt} (96%) rename test/results/{py3-windows-10-1709.inspec.results.xml => py3-2019.2.3-windows-10-1709.inspec.results.xml} (82%) create mode 100644 test/results/py3-2019.2.3-windows-10-1803.inspec.results.json create mode 100644 test/results/py3-2019.2.3-windows-10-1803.inspec.results.txt create mode 100644 test/results/py3-2019.2.3-windows-10-1803.inspec.results.xml create mode 100644 test/results/py3-2019.2.3-windows-10-1809.inspec.results.json create mode 100644 test/results/py3-2019.2.3-windows-10-1809.inspec.results.txt create mode 100644 test/results/py3-2019.2.3-windows-10-1809.inspec.results.xml create mode 100644 test/results/py3-2019.2.3-windows-10-1903.inspec.results.json create mode 100644 test/results/py3-2019.2.3-windows-10-1903.inspec.results.txt rename test/results/{py3-windows-10-1909.inspec.results.xml => py3-2019.2.3-windows-10-1903.inspec.results.xml} (82%) rename test/results/{py3-windows-10-1909.inspec.results.json => py3-2019.2.3-windows-10-1909.inspec.results.json} (69%) rename test/results/{py3-windows-10-1709.inspec.results.txt => py3-2019.2.3-windows-10-1909.inspec.results.txt} (96%) create mode 100644 test/results/py3-2019.2.3-windows-10-1909.inspec.results.xml create mode 100644 test/results/py3-2019.2.3-windows-server-2016.inspec.results.json create mode 100644 test/results/py3-2019.2.3-windows-server-2016.inspec.results.txt create mode 100644 test/results/py3-2019.2.3-windows-server-2016.inspec.results.xml create mode 100644 test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.json create mode 100644 test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.txt create mode 100644 test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.xml create mode 100644 test/results/py3-201923-windows-10-1709.kitchen.log create mode 100644 test/results/py3-201923-windows-10-1709.log create mode 100755 test/results/py3-201923-windows-10-1709.salt.log create mode 100644 test/results/py3-201923-windows-10-1803.kitchen.log create mode 100644 test/results/py3-201923-windows-10-1803.log create mode 100755 test/results/py3-201923-windows-10-1803.salt.log create mode 100644 test/results/py3-201923-windows-10-1809.kitchen.log create mode 100644 test/results/py3-201923-windows-10-1809.log create mode 100755 test/results/py3-201923-windows-10-1809.salt.log create mode 100644 test/results/py3-201923-windows-10-1903.kitchen.log create mode 100644 test/results/py3-201923-windows-10-1903.log create mode 100755 test/results/py3-201923-windows-10-1903.salt.log create mode 100644 test/results/py3-201923-windows-10-1909.kitchen.log create mode 100644 test/results/py3-201923-windows-10-1909.log create mode 100755 test/results/py3-201923-windows-10-1909.salt.log create mode 100644 test/results/py3-201923-windows-server-2016.kitchen.log create mode 100644 test/results/py3-201923-windows-server-2016.log create mode 100755 test/results/py3-201923-windows-server-2016.salt.log create mode 100644 test/results/py3-201923-windows-server-2019-1809.kitchen.log create mode 100644 test/results/py3-201923-windows-server-2019-1809.log create mode 100755 test/results/py3-201923-windows-server-2019-1809.salt.log diff --git a/test/results/py3-windows-10-1709.inspec.results.json b/test/results/py3-2019.2.3-windows-10-1709.inspec.results.json similarity index 72% rename from test/results/py3-windows-10-1709.inspec.results.json rename to test/results/py3-2019.2.3-windows-10-1709.inspec.results.json index 88d7b45..4b94884 100644 --- a/test/results/py3-windows-10-1709.inspec.results.json +++ b/test/results/py3-2019.2.3-windows-10-1709.inspec.results.json @@ -1 +1 @@ -{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.16299"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001085,"start_time":"2020-03-04T15:15:47-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3264532,"start_time":"2020-03-04T15:15:47-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0353809,"start_time":"2020-03-04T15:15:47-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0316697,"start_time":"2020-03-04T15:15:47-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0294081,"start_time":"2020-03-04T15:15:47-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0301167,"start_time":"2020-03-04T15:15:47-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001343,"start_time":"2020-03-04T15:15:47-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":7.24e-05,"start_time":"2020-03-04T15:15:47-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001029,"start_time":"2020-03-04T15:15:47-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":7.9e-06,"start_time":"2020-03-04T15:15:47-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0440278,"start_time":"2020-03-04T15:15:47-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4180575,"start_time":"2020-03-04T15:15:47-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":1.7974369,"start_time":"2020-03-04T15:15:48-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0173363,"start_time":"2020-03-04T15:15:50-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001533,"start_time":"2020-03-04T15:15:50-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1039854,"start_time":"2020-03-04T15:15:50-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1483963,"start_time":"2020-03-04T15:15:50-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1231042,"start_time":"2020-03-04T15:15:50-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.115525,"start_time":"2020-03-04T15:15:50-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1166726,"start_time":"2020-03-04T15:15:50-05:00"}]}],"status":"loaded"}],"statistics":{"duration":3.3673753},"version":"4.18.39"} \ No newline at end of file +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.16299"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001256,"start_time":"2020-03-06T14:00:39-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3858251,"start_time":"2020-03-06T14:00:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0460388,"start_time":"2020-03-06T14:00:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0365171,"start_time":"2020-03-06T14:00:40-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0403939,"start_time":"2020-03-06T14:00:40-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0333948,"start_time":"2020-03-06T14:00:40-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001393,"start_time":"2020-03-06T14:00:40-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":8.84e-05,"start_time":"2020-03-06T14:00:40-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.000124,"start_time":"2020-03-06T14:00:40-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":1.55e-05,"start_time":"2020-03-06T14:00:40-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0632375,"start_time":"2020-03-06T14:00:40-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4806686,"start_time":"2020-03-06T14:00:40-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":1.8323233,"start_time":"2020-03-06T14:00:40-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0171296,"start_time":"2020-03-06T14:00:42-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001534,"start_time":"2020-03-06T14:00:42-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.120323,"start_time":"2020-03-06T14:00:42-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1402445,"start_time":"2020-03-06T14:00:42-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1657122,"start_time":"2020-03-06T14:00:42-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1078096,"start_time":"2020-03-06T14:00:42-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1377188,"start_time":"2020-03-06T14:00:43-05:00"}]}],"status":"loaded"}],"statistics":{"duration":3.6446455},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-windows-10-1909.inspec.results.txt b/test/results/py3-2019.2.3-windows-10-1709.inspec.results.txt similarity index 96% rename from test/results/py3-windows-10-1909.inspec.results.txt rename to test/results/py3-2019.2.3-windows-10-1709.inspec.results.txt index 1a4c02d..d769e96 100644 --- a/test/results/py3-windows-10-1909.inspec.results.txt +++ b/test/results/py3-2019.2.3-windows-10-1709.inspec.results.txt @@ -66,6 +66,6 @@ Pending: (Failures listed here are expected and do not affect your suite's statu # Not yet implemented # -Finished in 4.71 seconds (files took 7 minutes 10 seconds to load) +Finished in 3.64 seconds (files took 6 minutes 16 seconds to load) 20 examples, 0 failures, 1 pending diff --git a/test/results/py3-windows-10-1709.inspec.results.xml b/test/results/py3-2019.2.3-windows-10-1709.inspec.results.xml similarity index 82% rename from test/results/py3-windows-10-1709.inspec.results.xml rename to test/results/py3-2019.2.3-windows-10-1709.inspec.results.xml index d064f4c..1c2fca5 100644 --- a/test/results/py3-windows-10-1709.inspec.results.xml +++ b/test/results/py3-2019.2.3-windows-10-1709.inspec.results.xml @@ -1,27 +1,27 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/test/results/py3-2019.2.3-windows-10-1803.inspec.results.json b/test/results/py3-2019.2.3-windows-10-1803.inspec.results.json new file mode 100644 index 0000000..64f64e1 --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1803.inspec.results.json @@ -0,0 +1 @@ +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.17134"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":9.87e-05,"start_time":"2020-03-06T13:53:55-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.1929448,"start_time":"2020-03-06T13:53:55-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0320467,"start_time":"2020-03-06T13:53:55-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0292427,"start_time":"2020-03-06T13:53:55-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0332091,"start_time":"2020-03-06T13:53:55-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0455734,"start_time":"2020-03-06T13:53:55-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001228,"start_time":"2020-03-06T13:53:55-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":7.58e-05,"start_time":"2020-03-06T13:53:55-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001287,"start_time":"2020-03-06T13:53:55-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":7.6e-06,"start_time":"2020-03-06T13:53:55-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0548268,"start_time":"2020-03-06T13:53:55-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4500498,"start_time":"2020-03-06T13:53:55-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":1.5414114,"start_time":"2020-03-06T13:53:55-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0173105,"start_time":"2020-03-06T13:53:57-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001454,"start_time":"2020-03-06T13:53:57-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1081406,"start_time":"2020-03-06T13:53:57-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1302741,"start_time":"2020-03-06T13:53:57-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1323217,"start_time":"2020-03-06T13:53:57-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1362653,"start_time":"2020-03-06T13:53:57-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1225537,"start_time":"2020-03-06T13:53:57-05:00"}]}],"status":"loaded"}],"statistics":{"duration":3.056228},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-2019.2.3-windows-10-1803.inspec.results.txt b/test/results/py3-2019.2.3-windows-10-1803.inspec.results.txt new file mode 100644 index 0000000..0f64746 --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1803.inspec.results.txt @@ -0,0 +1,71 @@ + +windows_10_enterprise_evaluation + should include "windows" + +Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` + should not be installed + +Windows AppX Provisioned Package `Microsoft.Wallet` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneMusic` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneVideo` + should not be installed + +Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` + should not be installed + +Chocolatey package notepadplusplus + should be installed + +Chocolatey package windirstat + should be installed + version + should cmp == "1.1.2.20161210" + +No-op + Skipped control due to only_if condition: only supported on servers (PENDING: Not yet implemented) + +Command: `choco` + should exist + +`Eastern Standard Time` timezone (converted from America/New_York) + should be set + +Windows Optional Feature: `TelnetClient` + should be installed + +System Information + hostname + should cmp == "saltstack1" + +Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName + ComputerName + should cmp == "saltstack1" + +Powershell + stdout + should match "Saltstack Computer Description" + +System Package Git + should be installed + +System Package 7-Zip + should be installed + version + should cmp == "18.06.00.0" + +System Package KDiff3 + should be installed + +Pending: (Failures listed here are expected and do not affect your suite's status) + + 1) No-op Skipped control due to only_if condition: only supported on servers + # Not yet implemented + # + +Finished in 3.06 seconds (files took 4 minutes 34.4 seconds to load) +20 examples, 0 failures, 1 pending + diff --git a/test/results/py3-2019.2.3-windows-10-1803.inspec.results.xml b/test/results/py3-2019.2.3-windows-10-1803.inspec.results.xml new file mode 100644 index 0000000..d9f4bec --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1803.inspec.results.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/results/py3-2019.2.3-windows-10-1809.inspec.results.json b/test/results/py3-2019.2.3-windows-10-1809.inspec.results.json new file mode 100644 index 0000000..527385bf --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1809.inspec.results.json @@ -0,0 +1 @@ +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.17763"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001153,"start_time":"2020-03-06T13:48:49-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3222704,"start_time":"2020-03-06T13:48:49-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.081366,"start_time":"2020-03-06T13:48:49-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0777456,"start_time":"2020-03-06T13:48:49-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0573043,"start_time":"2020-03-06T13:48:49-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0516799,"start_time":"2020-03-06T13:48:49-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0002044,"start_time":"2020-03-06T13:48:49-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":0.0001501,"start_time":"2020-03-06T13:48:49-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0002116,"start_time":"2020-03-06T13:48:49-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":1.11e-05,"start_time":"2020-03-06T13:48:49-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0565483,"start_time":"2020-03-06T13:48:49-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5168988,"start_time":"2020-03-06T13:48:49-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":3.1337369,"start_time":"2020-03-06T13:48:50-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0210798,"start_time":"2020-03-06T13:48:53-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001554,"start_time":"2020-03-06T13:48:53-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.0948386,"start_time":"2020-03-06T13:48:53-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1503472,"start_time":"2020-03-06T13:48:53-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.144997,"start_time":"2020-03-06T13:48:53-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1358084,"start_time":"2020-03-06T13:48:53-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1250405,"start_time":"2020-03-06T13:48:54-05:00"}]}],"status":"loaded"}],"statistics":{"duration":5.0066448},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-2019.2.3-windows-10-1809.inspec.results.txt b/test/results/py3-2019.2.3-windows-10-1809.inspec.results.txt new file mode 100644 index 0000000..2cfed0e --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1809.inspec.results.txt @@ -0,0 +1,71 @@ + +windows_10_enterprise_evaluation + should include "windows" + +Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` + should not be installed + +Windows AppX Provisioned Package `Microsoft.Wallet` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneMusic` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneVideo` + should not be installed + +Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` + should not be installed + +Chocolatey package notepadplusplus + should be installed + +Chocolatey package windirstat + should be installed + version + should cmp == "1.1.2.20161210" + +No-op + Skipped control due to only_if condition: only supported on servers (PENDING: Not yet implemented) + +Command: `choco` + should exist + +`Eastern Standard Time` timezone (converted from America/New_York) + should be set + +Windows Optional Feature: `TelnetClient` + should be installed + +System Information + hostname + should cmp == "saltstack1" + +Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName + ComputerName + should cmp == "saltstack1" + +Powershell + stdout + should match "Saltstack Computer Description" + +System Package Git + should be installed + +System Package 7-Zip + should be installed + version + should cmp == "18.06.00.0" + +System Package KDiff3 + should be installed + +Pending: (Failures listed here are expected and do not affect your suite's status) + + 1) No-op Skipped control due to only_if condition: only supported on servers + # Not yet implemented + # + +Finished in 5.01 seconds (files took 4 minutes 27.8 seconds to load) +20 examples, 0 failures, 1 pending + diff --git a/test/results/py3-2019.2.3-windows-10-1809.inspec.results.xml b/test/results/py3-2019.2.3-windows-10-1809.inspec.results.xml new file mode 100644 index 0000000..3d8dc4b --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1809.inspec.results.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/results/py3-2019.2.3-windows-10-1903.inspec.results.json b/test/results/py3-2019.2.3-windows-10-1903.inspec.results.json new file mode 100644 index 0000000..47bf88f --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1903.inspec.results.json @@ -0,0 +1 @@ +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.18362"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001424,"start_time":"2020-03-06T13:43:51-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3626618,"start_time":"2020-03-06T13:43:51-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0685395,"start_time":"2020-03-06T13:43:51-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.068161,"start_time":"2020-03-06T13:43:51-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0444676,"start_time":"2020-03-06T13:43:51-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0872283,"start_time":"2020-03-06T13:43:51-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001679,"start_time":"2020-03-06T13:43:51-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":0.0001094,"start_time":"2020-03-06T13:43:51-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001612,"start_time":"2020-03-06T13:43:51-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":1.17e-05,"start_time":"2020-03-06T13:43:51-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.1774301,"start_time":"2020-03-06T13:43:51-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.6373436,"start_time":"2020-03-06T13:43:51-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":3.9602448,"start_time":"2020-03-06T13:43:52-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.025793,"start_time":"2020-03-06T13:43:56-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.000181,"start_time":"2020-03-06T13:43:56-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1218669,"start_time":"2020-03-06T13:43:56-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1772286,"start_time":"2020-03-06T13:43:56-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1791242,"start_time":"2020-03-06T13:43:56-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1654789,"start_time":"2020-03-06T13:43:56-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1656596,"start_time":"2020-03-06T13:43:57-05:00"}]}],"status":"loaded"}],"statistics":{"duration":6.2857038},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-2019.2.3-windows-10-1903.inspec.results.txt b/test/results/py3-2019.2.3-windows-10-1903.inspec.results.txt new file mode 100644 index 0000000..a881d5d --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1903.inspec.results.txt @@ -0,0 +1,71 @@ + +windows_10_enterprise_evaluation + should include "windows" + +Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` + should not be installed + +Windows AppX Provisioned Package `Microsoft.Wallet` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneMusic` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneVideo` + should not be installed + +Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` + should not be installed + +Chocolatey package notepadplusplus + should be installed + +Chocolatey package windirstat + should be installed + version + should cmp == "1.1.2.20161210" + +No-op + Skipped control due to only_if condition: only supported on servers (PENDING: Not yet implemented) + +Command: `choco` + should exist + +`Eastern Standard Time` timezone (converted from America/New_York) + should be set + +Windows Optional Feature: `TelnetClient` + should be installed + +System Information + hostname + should cmp == "saltstack1" + +Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName + ComputerName + should cmp == "saltstack1" + +Powershell + stdout + should match "Saltstack Computer Description" + +System Package Git + should be installed + +System Package 7-Zip + should be installed + version + should cmp == "18.06.00.0" + +System Package KDiff3 + should be installed + +Pending: (Failures listed here are expected and do not affect your suite's status) + + 1) No-op Skipped control due to only_if condition: only supported on servers + # Not yet implemented + # + +Finished in 6.29 seconds (files took 4 minutes 25.6 seconds to load) +20 examples, 0 failures, 1 pending + diff --git a/test/results/py3-windows-10-1909.inspec.results.xml b/test/results/py3-2019.2.3-windows-10-1903.inspec.results.xml similarity index 82% rename from test/results/py3-windows-10-1909.inspec.results.xml rename to test/results/py3-2019.2.3-windows-10-1903.inspec.results.xml index c2b187e..1de747a 100644 --- a/test/results/py3-windows-10-1909.inspec.results.xml +++ b/test/results/py3-2019.2.3-windows-10-1903.inspec.results.xml @@ -1,27 +1,27 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/test/results/py3-windows-10-1909.inspec.results.json b/test/results/py3-2019.2.3-windows-10-1909.inspec.results.json similarity index 69% rename from test/results/py3-windows-10-1909.inspec.results.json rename to test/results/py3-2019.2.3-windows-10-1909.inspec.results.json index 83df5f3..cb9902f 100644 --- a/test/results/py3-windows-10-1909.inspec.results.json +++ b/test/results/py3-2019.2.3-windows-10-1909.inspec.results.json @@ -1 +1 @@ -{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.18363"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001309,"start_time":"2020-03-04T14:53:04-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3873352,"start_time":"2020-03-04T14:53:04-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0386833,"start_time":"2020-03-04T14:53:04-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0389905,"start_time":"2020-03-04T14:53:04-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0435281,"start_time":"2020-03-04T14:53:04-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.053062,"start_time":"2020-03-04T14:53:04-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.000145,"start_time":"2020-03-04T14:53:05-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":9.9e-05,"start_time":"2020-03-04T14:53:05-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001393,"start_time":"2020-03-04T14:53:05-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":8.5e-06,"start_time":"2020-03-04T14:53:05-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0605985,"start_time":"2020-03-04T14:53:05-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5387619,"start_time":"2020-03-04T14:53:05-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":2.7284244,"start_time":"2020-03-04T14:53:05-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0172281,"start_time":"2020-03-04T14:53:08-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001654,"start_time":"2020-03-04T14:53:08-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1041552,"start_time":"2020-03-04T14:53:08-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1728998,"start_time":"2020-03-04T14:53:08-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1765108,"start_time":"2020-03-04T14:53:08-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1417128,"start_time":"2020-03-04T14:53:08-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1690175,"start_time":"2020-03-04T14:53:08-05:00"}]}],"status":"loaded"}],"statistics":{"duration":4.7144409},"version":"4.18.39"} \ No newline at end of file +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.18363"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":9.96e-05,"start_time":"2020-03-06T13:38:54-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3531564,"start_time":"2020-03-06T13:38:54-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0483349,"start_time":"2020-03-06T13:38:54-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0574097,"start_time":"2020-03-06T13:38:54-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.05259,"start_time":"2020-03-06T13:38:54-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0413892,"start_time":"2020-03-06T13:38:54-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001353,"start_time":"2020-03-06T13:38:54-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":8.44e-05,"start_time":"2020-03-06T13:38:54-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001465,"start_time":"2020-03-06T13:38:54-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":9.0e-06,"start_time":"2020-03-06T13:38:54-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0544238,"start_time":"2020-03-06T13:38:54-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5716781,"start_time":"2020-03-06T13:38:54-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":2.8292874,"start_time":"2020-03-06T13:38:55-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0221677,"start_time":"2020-03-06T13:38:58-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001785,"start_time":"2020-03-06T13:38:58-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1366587,"start_time":"2020-03-06T13:38:58-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.2294129,"start_time":"2020-03-06T13:38:58-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.2549206,"start_time":"2020-03-06T13:38:58-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1837299,"start_time":"2020-03-06T13:38:58-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.2110219,"start_time":"2020-03-06T13:38:59-05:00"}]}],"status":"loaded"}],"statistics":{"duration":5.0795518},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-windows-10-1709.inspec.results.txt b/test/results/py3-2019.2.3-windows-10-1909.inspec.results.txt similarity index 96% rename from test/results/py3-windows-10-1709.inspec.results.txt rename to test/results/py3-2019.2.3-windows-10-1909.inspec.results.txt index 2b42bcb..3ca70cd 100644 --- a/test/results/py3-windows-10-1709.inspec.results.txt +++ b/test/results/py3-2019.2.3-windows-10-1909.inspec.results.txt @@ -66,6 +66,6 @@ Pending: (Failures listed here are expected and do not affect your suite's statu # Not yet implemented # -Finished in 3.37 seconds (files took 6 minutes 33 seconds to load) +Finished in 5.08 seconds (files took 6 minutes 29 seconds to load) 20 examples, 0 failures, 1 pending diff --git a/test/results/py3-2019.2.3-windows-10-1909.inspec.results.xml b/test/results/py3-2019.2.3-windows-10-1909.inspec.results.xml new file mode 100644 index 0000000..4a0e1bf --- /dev/null +++ b/test/results/py3-2019.2.3-windows-10-1909.inspec.results.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/results/py3-2019.2.3-windows-server-2016.inspec.results.json b/test/results/py3-2019.2.3-windows-server-2016.inspec.results.json new file mode 100644 index 0000000..1c68600 --- /dev/null +++ b/test/results/py3-2019.2.3-windows-server-2016.inspec.results.json @@ -0,0 +1 @@ +{"platform":{"name":"windows_server_2016_standard_evaluation","release":"10.0.14393"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_server_2016_standard_evaluation should include \"windows\"","run_time":0.0001344,"start_time":"2020-03-06T14:14:31-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3816161,"start_time":"2020-03-06T14:14:31-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0264548,"start_time":"2020-03-06T14:14:31-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0309281,"start_time":"2020-03-06T14:14:31-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0434566,"start_time":"2020-03-06T14:14:31-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0366956,"start_time":"2020-03-06T14:14:31-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001766,"start_time":"2020-03-06T14:14:31-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":0.0001217,"start_time":"2020-03-06T14:14:31-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001634,"start_time":"2020-03-06T14:14:31-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Feature 'telnet-client' should be installed","run_time":1.4874106,"start_time":"2020-03-06T14:14:31-05:00"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0746003,"start_time":"2020-03-06T14:14:33-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5770498,"start_time":"2020-03-06T14:14:33-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"Windows Optional Feature: `TelnetClient`","run_time":1.04e-05,"start_time":"2020-03-06T14:14:34-05:00","resource":"Windows Optional Feature: `TelnetClient`","skip_message":"The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead."}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0271424,"start_time":"2020-03-06T14:14:34-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001864,"start_time":"2020-03-06T14:14:34-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1159779,"start_time":"2020-03-06T14:14:34-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1935131,"start_time":"2020-03-06T14:14:34-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1581377,"start_time":"2020-03-06T14:14:34-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1958287,"start_time":"2020-03-06T14:14:34-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.17212,"start_time":"2020-03-06T14:14:34-05:00"}]}],"status":"loaded"}],"statistics":{"duration":3.5617863},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-2019.2.3-windows-server-2016.inspec.results.txt b/test/results/py3-2019.2.3-windows-server-2016.inspec.results.txt new file mode 100644 index 0000000..8b064db --- /dev/null +++ b/test/results/py3-2019.2.3-windows-server-2016.inspec.results.txt @@ -0,0 +1,71 @@ + +windows_server_2016_standard_evaluation + should include "windows" + +Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` + should not be installed + +Windows AppX Provisioned Package `Microsoft.Wallet` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneMusic` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneVideo` + should not be installed + +Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` + should not be installed + +Chocolatey package notepadplusplus + should be installed + +Chocolatey package windirstat + should be installed + version + should cmp == "1.1.2.20161210" + +Windows Feature 'telnet-client' + should be installed + +Command: `choco` + should exist + +`Eastern Standard Time` timezone (converted from America/New_York) + should be set + +Windows Optional Feature: `TelnetClient` + The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead. (PENDING: Not yet implemented) + +System Information + hostname + should cmp == "saltstack1" + +Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName + ComputerName + should cmp == "saltstack1" + +Powershell + stdout + should match "Saltstack Computer Description" + +System Package Git + should be installed + +System Package 7-Zip + should be installed + version + should cmp == "18.06.00.0" + +System Package KDiff3 + should be installed + +Pending: (Failures listed here are expected and do not affect your suite's status) + + 1) Windows Optional Feature: `TelnetClient` The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead. + # Not yet implemented + # + +Finished in 3.56 seconds (files took 5 minutes 18 seconds to load) +20 examples, 0 failures, 1 pending + diff --git a/test/results/py3-2019.2.3-windows-server-2016.inspec.results.xml b/test/results/py3-2019.2.3-windows-server-2016.inspec.results.xml new file mode 100644 index 0000000..4b0bf19 --- /dev/null +++ b/test/results/py3-2019.2.3-windows-server-2016.inspec.results.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.json b/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.json new file mode 100644 index 0000000..78776ef --- /dev/null +++ b/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.json @@ -0,0 +1 @@ +{"platform":{"name":"windows_server_2019_datacenter_evaluation","release":"10.0.17763"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_server_2019_datacenter_evaluation should include \"windows\"","run_time":0.0001018,"start_time":"2020-03-06T14:08:38-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.7042336,"start_time":"2020-03-06T14:08:38-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0431035,"start_time":"2020-03-06T14:08:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0303063,"start_time":"2020-03-06T14:08:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.030014,"start_time":"2020-03-06T14:08:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0318399,"start_time":"2020-03-06T14:08:39-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001447,"start_time":"2020-03-06T14:08:39-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":9.7e-05,"start_time":"2020-03-06T14:08:39-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.000142,"start_time":"2020-03-06T14:08:39-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Feature 'telnet-client' should be installed","run_time":3.5623205,"start_time":"2020-03-06T14:08:39-05:00"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0638132,"start_time":"2020-03-06T14:08:42-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5365627,"start_time":"2020-03-06T14:08:42-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"Windows Optional Feature: `TelnetClient`","run_time":1.1e-05,"start_time":"2020-03-06T14:08:43-05:00","resource":"Windows Optional Feature: `TelnetClient`","skip_message":"The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead."}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0263248,"start_time":"2020-03-06T14:08:43-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001807,"start_time":"2020-03-06T14:08:43-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1412118,"start_time":"2020-03-06T14:08:43-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.2194455,"start_time":"2020-03-06T14:08:43-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.2115446,"start_time":"2020-03-06T14:08:43-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.2072587,"start_time":"2020-03-06T14:08:43-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.2355231,"start_time":"2020-03-06T14:08:44-05:00"}]}],"status":"loaded"}],"statistics":{"duration":6.0819303},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.txt b/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.txt new file mode 100644 index 0000000..f86119a --- /dev/null +++ b/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.txt @@ -0,0 +1,71 @@ + +windows_server_2019_datacenter_evaluation + should include "windows" + +Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` + should not be installed + +Windows AppX Provisioned Package `Microsoft.Wallet` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneMusic` + should not be installed + +Windows AppX Provisioned Package `Microsoft.ZuneVideo` + should not be installed + +Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` + should not be installed + +Chocolatey package notepadplusplus + should be installed + +Chocolatey package windirstat + should be installed + version + should cmp == "1.1.2.20161210" + +Windows Feature 'telnet-client' + should be installed + +Command: `choco` + should exist + +`Eastern Standard Time` timezone (converted from America/New_York) + should be set + +Windows Optional Feature: `TelnetClient` + The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead. (PENDING: Not yet implemented) + +System Information + hostname + should cmp == "saltstack1" + +Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName + ComputerName + should cmp == "saltstack1" + +Powershell + stdout + should match "Saltstack Computer Description" + +System Package Git + should be installed + +System Package 7-Zip + should be installed + version + should cmp == "18.06.00.0" + +System Package KDiff3 + should be installed + +Pending: (Failures listed here are expected and do not affect your suite's status) + + 1) Windows Optional Feature: `TelnetClient` The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead. + # Not yet implemented + # + +Finished in 6.08 seconds (files took 7 minutes 26 seconds to load) +20 examples, 0 failures, 1 pending + diff --git a/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.xml b/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.xml new file mode 100644 index 0000000..75ec8f0 --- /dev/null +++ b/test/results/py3-2019.2.3-windows-server-2019-1809.inspec.results.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/results/py3-201923-windows-10-1709.kitchen.log b/test/results/py3-201923-windows-10-1709.kitchen.log new file mode 100644 index 0000000..26d9aa4 --- /dev/null +++ b/test/results/py3-201923-windows-10-1709.kitchen.log @@ -0,0 +1,1020 @@ +I, [2020-03-06T13:54:28.260224 #22541] INFO -- py3-201923-windows-10-1709: -----> Cleaning up any prior instances of +I, [2020-03-06T13:54:28.260393 #22541] INFO -- py3-201923-windows-10-1709: -----> Destroying ... +I, [2020-03-06T13:54:28.261651 #22541] INFO -- py3-201923-windows-10-1709: Finished destroying (0m0.00s). +I, [2020-03-06T13:54:28.262587 #22541] INFO -- py3-201923-windows-10-1709: -----> Testing +I, [2020-03-06T13:54:28.262891 #22541] INFO -- py3-201923-windows-10-1709: -----> Creating ... +I, [2020-03-06T13:54:33.953517 #22541] INFO -- py3-201923-windows-10-1709: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:54:34.927955 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Cloning VM... +I, [2020-03-06T13:54:35.382746 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:54:35.604416 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Checking if box 'StefanScherer/windows_10' version '2018.03.14' is up to date... +I, [2020-03-06T13:54:36.500961 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1709-32d8b6b3-f16a-4565-9d3a-83ce7617d600 +I, [2020-03-06T13:54:39.846486 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:54:39.982495 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:54:39.982904 #22541] INFO -- py3-201923-windows-10-1709: default: Adapter 1: nat +I, [2020-03-06T13:54:40.147621 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Forwarding ports... +I, [2020-03-06T13:54:40.300759 #22541] INFO -- py3-201923-windows-10-1709: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:54:40.301169 #22541] INFO -- py3-201923-windows-10-1709: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:54:40.301607 #22541] INFO -- py3-201923-windows-10-1709: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:54:40.302235 #22541] INFO -- py3-201923-windows-10-1709: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:54:40.806597 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:54:42.065515 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Booting VM... +I, [2020-03-06T13:54:44.632998 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:54:46.366409 #22541] INFO -- py3-201923-windows-10-1709: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:54:46.366580 #22541] INFO -- py3-201923-windows-10-1709: default: WinRM username: vagrant +I, [2020-03-06T13:54:46.366868 #22541] INFO -- py3-201923-windows-10-1709: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:54:46.367164 #22541] INFO -- py3-201923-windows-10-1709: default: WinRM transport: negotiate +I, [2020-03-06T13:55:08.312692 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Machine booted and ready! +I, [2020-03-06T13:55:08.334543 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:55:08.519904 #22541] INFO -- py3-201923-windows-10-1709: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T13:55:08.520003 #22541] INFO -- py3-201923-windows-10-1709: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T13:55:08.520033 #22541] INFO -- py3-201923-windows-10-1709: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T13:55:08.520068 #22541] INFO -- py3-201923-windows-10-1709: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T13:55:08.520135 #22541] INFO -- py3-201923-windows-10-1709: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T13:55:08.520162 #22541] INFO -- py3-201923-windows-10-1709: default: your host and reload your VM. +I, [2020-03-06T13:55:08.520188 #22541] INFO -- py3-201923-windows-10-1709: default: +I, [2020-03-06T13:55:08.520219 #22541] INFO -- py3-201923-windows-10-1709: default: Guest Additions Version: 5.2.8 +I, [2020-03-06T13:55:08.520253 #22541] INFO -- py3-201923-windows-10-1709: default: VirtualBox Version: 6.1 +I, [2020-03-06T13:55:09.215028 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Mounting shared folders... +I, [2020-03-06T13:55:09.216318 #22541] INFO -- py3-201923-windows-10-1709: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:55:17.064713 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:55:29.715325 #22541] INFO -- py3-201923-windows-10-1709: [WinRM] Established +I, [2020-03-06T13:55:29.715464 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:55:29.727691 #22541] INFO -- py3-201923-windows-10-1709: Vagrant instance created. +I, [2020-03-06T13:55:29.729807 #22541] INFO -- py3-201923-windows-10-1709: Finished creating (1m1.46s). +I, [2020-03-06T13:55:29.730077 #22541] INFO -- py3-201923-windows-10-1709: -----> Converging ... +I, [2020-03-06T13:55:29.732625 #22541] INFO -- py3-201923-windows-10-1709: Preparing files for transfer +I, [2020-03-06T13:55:29.732769 #22541] INFO -- py3-201923-windows-10-1709: Preparing salt-minion +I, [2020-03-06T13:55:29.740004 #22541] INFO -- py3-201923-windows-10-1709: Preparing pillars into /srv/pillar +I, [2020-03-06T13:55:29.740150 #22541] INFO -- py3-201923-windows-10-1709: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:55:29.746036 #22541] INFO -- py3-201923-windows-10-1709: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:55:29.930515 #22541] INFO -- py3-201923-windows-10-1709: Preparing state_top +I, [2020-03-06T13:55:29.932165 #22541] INFO -- py3-201923-windows-10-1709: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:55:31.100473 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:55:31.100982 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:55:31.101980 #22541] INFO -- py3-201923-windows-10-1709: Directory: C:\ +I, [2020-03-06T13:55:31.102692 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:55:31.103298 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:55:31.103923 #22541] INFO -- py3-201923-windows-10-1709: Mode LastWriteTime Length Name +I, [2020-03-06T13:55:31.104587 #22541] INFO -- py3-201923-windows-10-1709: ---- ------------- ------ ---- +I, [2020-03-06T13:55:31.105440 #22541] INFO -- py3-201923-windows-10-1709: d----- 3/6/2020 10:55 AM temp +I, [2020-03-06T13:55:32.390661 #22541] INFO -- py3-201923-windows-10-1709: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe +I, [2020-03-06T13:55:41.836086 #22541] INFO -- py3-201923-windows-10-1709: Installing Salt minion +I, [2020-03-06T13:56:39.687481 #22541] INFO -- py3-201923-windows-10-1709: Starting the Salt minion service +I, [2020-03-06T13:56:39.687951 #22541] INFO -- py3-201923-windows-10-1709: Salt minion successfully installed +I, [2020-03-06T13:56:47.110530 #22541] INFO -- py3-201923-windows-10-1709: You asked for latest and you have 2019.2.3 installed, sweet! +I, [2020-03-06T13:56:47.110927 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:47.111292 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:48.334510 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:48.334860 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:48.335196 #22541] INFO -- py3-201923-windows-10-1709: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:56:48.335488 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:48.335810 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:48.336227 #22541] INFO -- py3-201923-windows-10-1709: Mode LastWriteTime Length Name +I, [2020-03-06T13:56:48.336619 #22541] INFO -- py3-201923-windows-10-1709: ---- ------------- ------ ---- +I, [2020-03-06T13:56:48.336989 #22541] INFO -- py3-201923-windows-10-1709: d----- 3/6/2020 10:56 AM kitchen +I, [2020-03-06T13:56:48.337246 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:48.337485 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:56:48.353414 #22541] INFO -- py3-201923-windows-10-1709: Transferring files to +I, [2020-03-06T13:57:33.518616 #22541] INFO -- py3-201923-windows-10-1709: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:57:33.519017 #22541] INFO -- py3-201923-windows-10-1709: At line:1 char:131 +I, [2020-03-06T13:57:33.519427 #22541] INFO -- py3-201923-windows-10-1709: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:57:33.519874 #22541] INFO -- py3-201923-windows-10-1709: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:57:33.520311 #22541] INFO -- py3-201923-windows-10-1709: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:57:33.520738 #22541] INFO -- py3-201923-windows-10-1709: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:57:33.521063 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:57:33.521330 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:57:33.521629 #22541] INFO -- py3-201923-windows-10-1709: Traceback (most recent call last): +I, [2020-03-06T13:57:33.522011 #22541] INFO -- py3-201923-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:57:33.522418 #22541] INFO -- py3-201923-windows-10-1709: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:57:33.522860 #22541] INFO -- py3-201923-windows-10-1709: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:57:33.523242 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:57:33.523747 #22541] INFO -- py3-201923-windows-10-1709: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:57:33.524188 #22541] INFO -- py3-201923-windows-10-1709: Traceback (most recent call last): +I, [2020-03-06T13:57:33.524651 #22541] INFO -- py3-201923-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:57:33.525077 #22541] INFO -- py3-201923-windows-10-1709: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:57:33.525505 #22541] INFO -- py3-201923-windows-10-1709: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:57:33.525893 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:58:41.641887 #22541] INFO -- py3-201923-windows-10-1709: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:58:41.642313 #22541] INFO -- py3-201923-windows-10-1709: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:58:41.642660 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:58:41.643063 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:58:41.643512 #22541] INFO -- py3-201923-windows-10-1709: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:58:41.643910 #22541] INFO -- py3-201923-windows-10-1709: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:58:41.644217 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:58:41.644506 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:47.611173 #22541] INFO -- py3-201923-windows-10-1709: local: +I, [2020-03-06T13:59:47.611683 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.612168 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:59:47.612621 #22541] INFO -- py3-201923-windows-10-1709: Function: system.hostname +I, [2020-03-06T13:59:47.613028 #22541] INFO -- py3-201923-windows-10-1709: Name: saltstack1 +I, [2020-03-06T13:59:47.613379 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.613737 #22541] INFO -- py3-201923-windows-10-1709: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:59:47.614069 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:03.576229 +I, [2020-03-06T13:59:47.614395 #22541] INFO -- py3-201923-windows-10-1709: Duration: 171.768 ms +I, [2020-03-06T13:59:47.614729 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.615051 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.615382 #22541] INFO -- py3-201923-windows-10-1709: hostname: +I, [2020-03-06T13:59:47.615734 #22541] INFO -- py3-201923-windows-10-1709: saltstack1 +I, [2020-03-06T13:59:47.616049 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.616556 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:59:47.617073 #22541] INFO -- py3-201923-windows-10-1709: Function: system.computer_desc +I, [2020-03-06T13:59:47.617558 #22541] INFO -- py3-201923-windows-10-1709: Name: Saltstack Computer Description +I, [2020-03-06T13:59:47.617994 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.618490 #22541] INFO -- py3-201923-windows-10-1709: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:59:47.618928 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:03.747997 +I, [2020-03-06T13:59:47.619388 #22541] INFO -- py3-201923-windows-10-1709: Duration: 3171.737 ms +I, [2020-03-06T13:59:47.619938 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.620443 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.620945 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:47.621436 #22541] INFO -- py3-201923-windows-10-1709: Saltstack Computer Description +I, [2020-03-06T13:59:47.621899 #22541] INFO -- py3-201923-windows-10-1709: old: +I, [2020-03-06T13:59:47.622379 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.622840 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:59:47.623344 #22541] INFO -- py3-201923-windows-10-1709: Function: timezone.system +I, [2020-03-06T13:59:47.623790 #22541] INFO -- py3-201923-windows-10-1709: Name: America/New_York +I, [2020-03-06T13:59:47.624242 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.624725 #22541] INFO -- py3-201923-windows-10-1709: Comment: Set timezone America/New_York +I, [2020-03-06T13:59:47.625183 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:06.997403 +I, [2020-03-06T13:59:47.625669 #22541] INFO -- py3-201923-windows-10-1709: Duration: 46.909 ms +I, [2020-03-06T13:59:47.626114 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.626590 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.627047 #22541] INFO -- py3-201923-windows-10-1709: timezone: +I, [2020-03-06T13:59:47.627536 #22541] INFO -- py3-201923-windows-10-1709: America/New_York +I, [2020-03-06T13:59:47.628016 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.628491 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.module.environ.items +I, [2020-03-06T13:59:47.628941 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:47.629407 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.629860 #22541] INFO -- py3-201923-windows-10-1709: Comment: environ.items: Success +I, [2020-03-06T13:59:47.630348 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:07.059960 +I, [2020-03-06T13:59:47.630826 #22541] INFO -- py3-201923-windows-10-1709: Duration: 31.679 ms +I, [2020-03-06T13:59:47.631276 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.631724 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.632210 #22541] INFO -- py3-201923-windows-10-1709: environ.items: +I, [2020-03-06T13:59:47.632672 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.633178 #22541] INFO -- py3-201923-windows-10-1709: ALLUSERSPROFILE: +I, [2020-03-06T13:59:47.633635 #22541] INFO -- py3-201923-windows-10-1709: C:\ProgramData +I, [2020-03-06T13:59:47.634046 #22541] INFO -- py3-201923-windows-10-1709: APPDATA: +I, [2020-03-06T13:59:47.634446 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:59:47.634797 #22541] INFO -- py3-201923-windows-10-1709: COMMONPROGRAMFILES: +I, [2020-03-06T13:59:47.635135 #22541] INFO -- py3-201923-windows-10-1709: C:\Program Files\Common Files +I, [2020-03-06T13:59:47.635450 #22541] INFO -- py3-201923-windows-10-1709: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:59:47.635766 #22541] INFO -- py3-201923-windows-10-1709: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:59:47.636095 #22541] INFO -- py3-201923-windows-10-1709: COMMONPROGRAMW6432: +I, [2020-03-06T13:59:47.636404 #22541] INFO -- py3-201923-windows-10-1709: C:\Program Files\Common Files +I, [2020-03-06T13:59:47.636708 #22541] INFO -- py3-201923-windows-10-1709: COMPUTERNAME: +I, [2020-03-06T13:59:47.637065 #22541] INFO -- py3-201923-windows-10-1709: VAGRANT-10 +I, [2020-03-06T13:59:47.637406 #22541] INFO -- py3-201923-windows-10-1709: COMSPEC: +I, [2020-03-06T13:59:47.637779 #22541] INFO -- py3-201923-windows-10-1709: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:59:47.638125 #22541] INFO -- py3-201923-windows-10-1709: HOMEDRIVE: +I, [2020-03-06T13:59:47.638605 #22541] INFO -- py3-201923-windows-10-1709: C: +I, [2020-03-06T13:59:47.638965 #22541] INFO -- py3-201923-windows-10-1709: HOMEPATH: +I, [2020-03-06T13:59:47.639368 #22541] INFO -- py3-201923-windows-10-1709: \Users\vagrant +I, [2020-03-06T13:59:47.639815 #22541] INFO -- py3-201923-windows-10-1709: LOCALAPPDATA: +I, [2020-03-06T13:59:47.640289 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:59:47.640639 #22541] INFO -- py3-201923-windows-10-1709: LOGONSERVER: +I, [2020-03-06T13:59:47.640981 #22541] INFO -- py3-201923-windows-10-1709: \\VAGRANT-10 +I, [2020-03-06T13:59:47.641299 #22541] INFO -- py3-201923-windows-10-1709: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:59:47.641666 #22541] INFO -- py3-201923-windows-10-1709: 2 +I, [2020-03-06T13:59:47.642006 #22541] INFO -- py3-201923-windows-10-1709: ONEDRIVE: +I, [2020-03-06T13:59:47.642373 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:59:47.642709 #22541] INFO -- py3-201923-windows-10-1709: OS: +I, [2020-03-06T13:59:47.643029 #22541] INFO -- py3-201923-windows-10-1709: Windows_NT +I, [2020-03-06T13:59:47.643338 #22541] INFO -- py3-201923-windows-10-1709: PATH: +I, [2020-03-06T13:59:47.643708 #22541] INFO -- py3-201923-windows-10-1709: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:59:47.644025 #22541] INFO -- py3-201923-windows-10-1709: PATHEXT: +I, [2020-03-06T13:59:47.644350 #22541] INFO -- py3-201923-windows-10-1709: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:59:47.644708 #22541] INFO -- py3-201923-windows-10-1709: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:59:47.645016 #22541] INFO -- py3-201923-windows-10-1709: AMD64 +I, [2020-03-06T13:59:47.645330 #22541] INFO -- py3-201923-windows-10-1709: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:59:47.645756 #22541] INFO -- py3-201923-windows-10-1709: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:59:47.646125 #22541] INFO -- py3-201923-windows-10-1709: PROCESSOR_LEVEL: +I, [2020-03-06T13:59:47.646462 #22541] INFO -- py3-201923-windows-10-1709: 6 +I, [2020-03-06T13:59:47.646904 #22541] INFO -- py3-201923-windows-10-1709: PROCESSOR_REVISION: +I, [2020-03-06T13:59:47.647293 #22541] INFO -- py3-201923-windows-10-1709: 8e0c +I, [2020-03-06T13:59:47.647635 #22541] INFO -- py3-201923-windows-10-1709: PROGRAMDATA: +I, [2020-03-06T13:59:47.647952 #22541] INFO -- py3-201923-windows-10-1709: C:\ProgramData +I, [2020-03-06T13:59:47.648300 #22541] INFO -- py3-201923-windows-10-1709: PROGRAMFILES: +I, [2020-03-06T13:59:47.648639 #22541] INFO -- py3-201923-windows-10-1709: C:\Program Files +I, [2020-03-06T13:59:47.648954 #22541] INFO -- py3-201923-windows-10-1709: PROGRAMFILES(X86): +I, [2020-03-06T13:59:47.649272 #22541] INFO -- py3-201923-windows-10-1709: C:\Program Files (x86) +I, [2020-03-06T13:59:47.649631 #22541] INFO -- py3-201923-windows-10-1709: PROGRAMW6432: +I, [2020-03-06T13:59:47.649944 #22541] INFO -- py3-201923-windows-10-1709: C:\Program Files +I, [2020-03-06T13:59:47.650328 #22541] INFO -- py3-201923-windows-10-1709: PROMPT: +I, [2020-03-06T13:59:47.650759 #22541] INFO -- py3-201923-windows-10-1709: $P$G +I, [2020-03-06T13:59:47.651187 #22541] INFO -- py3-201923-windows-10-1709: PSMODULEPATH: +I, [2020-03-06T13:59:47.651587 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:59:47.651959 #22541] INFO -- py3-201923-windows-10-1709: PUBLIC: +I, [2020-03-06T13:59:47.652398 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\Public +I, [2020-03-06T13:59:47.652814 #22541] INFO -- py3-201923-windows-10-1709: PYTHON: +I, [2020-03-06T13:59:47.653173 #22541] INFO -- py3-201923-windows-10-1709: C:\salt\bin\python.exe +I, [2020-03-06T13:59:47.653492 #22541] INFO -- py3-201923-windows-10-1709: SALTDIR: +I, [2020-03-06T13:59:47.653902 #22541] INFO -- py3-201923-windows-10-1709: C:\salt +I, [2020-03-06T13:59:47.654306 #22541] INFO -- py3-201923-windows-10-1709: SCRIPT: +I, [2020-03-06T13:59:47.654639 #22541] INFO -- py3-201923-windows-10-1709: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:59:47.655057 #22541] INFO -- py3-201923-windows-10-1709: SYSTEMDRIVE: +I, [2020-03-06T13:59:47.655519 #22541] INFO -- py3-201923-windows-10-1709: C: +I, [2020-03-06T13:59:47.655851 #22541] INFO -- py3-201923-windows-10-1709: SYSTEMROOT: +I, [2020-03-06T13:59:47.656187 #22541] INFO -- py3-201923-windows-10-1709: C:\Windows +I, [2020-03-06T13:59:47.656498 #22541] INFO -- py3-201923-windows-10-1709: TEMP: +I, [2020-03-06T13:59:47.656846 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:59:47.657182 #22541] INFO -- py3-201923-windows-10-1709: TMP: +I, [2020-03-06T13:59:47.657496 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:59:47.657857 #22541] INFO -- py3-201923-windows-10-1709: USERDOMAIN: +I, [2020-03-06T13:59:47.658222 #22541] INFO -- py3-201923-windows-10-1709: VAGRANT-10 +I, [2020-03-06T13:59:47.658589 #22541] INFO -- py3-201923-windows-10-1709: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:59:47.658926 #22541] INFO -- py3-201923-windows-10-1709: VAGRANT-10 +I, [2020-03-06T13:59:47.659258 #22541] INFO -- py3-201923-windows-10-1709: USERNAME: +I, [2020-03-06T13:59:47.659570 #22541] INFO -- py3-201923-windows-10-1709: vagrant +I, [2020-03-06T13:59:47.659892 #22541] INFO -- py3-201923-windows-10-1709: USERPROFILE: +I, [2020-03-06T13:59:47.660258 #22541] INFO -- py3-201923-windows-10-1709: C:\Users\vagrant +I, [2020-03-06T13:59:47.660576 #22541] INFO -- py3-201923-windows-10-1709: WINDIR: +I, [2020-03-06T13:59:47.660948 #22541] INFO -- py3-201923-windows-10-1709: C:\Windows +I, [2020-03-06T13:59:47.661255 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.661562 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.module.user.current +I, [2020-03-06T13:59:47.661898 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:47.662194 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.662498 #22541] INFO -- py3-201923-windows-10-1709: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:59:47.662802 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:07.091639 +I, [2020-03-06T13:59:47.663119 #22541] INFO -- py3-201923-windows-10-1709: Duration: 62.463 ms +I, [2020-03-06T13:59:47.663411 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.663710 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.664083 #22541] INFO -- py3-201923-windows-10-1709: user.current: +I, [2020-03-06T13:59:47.664439 #22541] INFO -- py3-201923-windows-10-1709: VAGRANT-10\vagrant +I, [2020-03-06T13:59:47.664784 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.665136 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.module.status.uptime +I, [2020-03-06T13:59:47.665471 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:47.665910 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.666365 #22541] INFO -- py3-201923-windows-10-1709: Comment: status.uptime: 0:02:18.231843 +I, [2020-03-06T13:59:47.666785 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:07.154102 +I, [2020-03-06T13:59:47.667174 #22541] INFO -- py3-201923-windows-10-1709: Duration: 77.741 ms +I, [2020-03-06T13:59:47.667559 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.668010 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.668371 #22541] INFO -- py3-201923-windows-10-1709: status.uptime: +I, [2020-03-06T13:59:47.668851 #22541] INFO -- py3-201923-windows-10-1709: 0:02:18.231843 +I, [2020-03-06T13:59:47.669254 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.669670 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:59:47.670001 #22541] INFO -- py3-201923-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:59:47.670345 #22541] INFO -- py3-201923-windows-10-1709: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage +I, [2020-03-06T13:59:47.670655 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.670973 #22541] INFO -- py3-201923-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run +I, [2020-03-06T13:59:47.671301 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:07.263106 +I, [2020-03-06T13:59:47.671604 #22541] INFO -- py3-201923-windows-10-1709: Duration: 3546.892 ms +I, [2020-03-06T13:59:47.671970 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.672367 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.672685 #22541] INFO -- py3-201923-windows-10-1709: pid: +I, [2020-03-06T13:59:47.673029 #22541] INFO -- py3-201923-windows-10-1709: 4024 +I, [2020-03-06T13:59:47.673354 #22541] INFO -- py3-201923-windows-10-1709: retcode: +I, [2020-03-06T13:59:47.673670 #22541] INFO -- py3-201923-windows-10-1709: 0 +I, [2020-03-06T13:59:47.674079 #22541] INFO -- py3-201923-windows-10-1709: stderr: +I, [2020-03-06T13:59:47.674460 #22541] INFO -- py3-201923-windows-10-1709: stdout: +I, [2020-03-06T13:59:47.674813 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.675162 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:59:47.675477 #22541] INFO -- py3-201923-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:59:47.675808 #22541] INFO -- py3-201923-windows-10-1709: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage +I, [2020-03-06T13:59:47.676139 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.676452 #22541] INFO -- py3-201923-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run +I, [2020-03-06T13:59:47.676756 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:10.809998 +I, [2020-03-06T13:59:47.677174 #22541] INFO -- py3-201923-windows-10-1709: Duration: 1297.433 ms +I, [2020-03-06T13:59:47.677543 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.677897 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.678393 #22541] INFO -- py3-201923-windows-10-1709: pid: +I, [2020-03-06T13:59:47.678835 #22541] INFO -- py3-201923-windows-10-1709: 3772 +I, [2020-03-06T13:59:47.679236 #22541] INFO -- py3-201923-windows-10-1709: retcode: +I, [2020-03-06T13:59:47.679557 #22541] INFO -- py3-201923-windows-10-1709: 0 +I, [2020-03-06T13:59:47.679870 #22541] INFO -- py3-201923-windows-10-1709: stderr: +I, [2020-03-06T13:59:47.680195 #22541] INFO -- py3-201923-windows-10-1709: stdout: +I, [2020-03-06T13:59:47.680498 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.680891 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:59:47.681237 #22541] INFO -- py3-201923-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:59:47.681633 #22541] INFO -- py3-201923-windows-10-1709: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage +I, [2020-03-06T13:59:47.682103 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.682509 #22541] INFO -- py3-201923-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run +I, [2020-03-06T13:59:47.682841 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:12.107431 +I, [2020-03-06T13:59:47.683169 #22541] INFO -- py3-201923-windows-10-1709: Duration: 1405.821 ms +I, [2020-03-06T13:59:47.683470 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.683839 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.684217 #22541] INFO -- py3-201923-windows-10-1709: pid: +I, [2020-03-06T13:59:47.684564 #22541] INFO -- py3-201923-windows-10-1709: 4796 +I, [2020-03-06T13:59:47.685041 #22541] INFO -- py3-201923-windows-10-1709: retcode: +I, [2020-03-06T13:59:47.685467 #22541] INFO -- py3-201923-windows-10-1709: 0 +I, [2020-03-06T13:59:47.685890 #22541] INFO -- py3-201923-windows-10-1709: stderr: +I, [2020-03-06T13:59:47.686212 #22541] INFO -- py3-201923-windows-10-1709: stdout: +I, [2020-03-06T13:59:47.686528 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.686883 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:59:47.687209 #22541] INFO -- py3-201923-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:59:47.687549 #22541] INFO -- py3-201923-windows-10-1709: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage +I, [2020-03-06T13:59:47.687909 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.688327 #22541] INFO -- py3-201923-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run +I, [2020-03-06T13:59:47.688774 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:13.513252 +I, [2020-03-06T13:59:47.689172 #22541] INFO -- py3-201923-windows-10-1709: Duration: 1406.146 ms +I, [2020-03-06T13:59:47.689548 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.689986 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.690312 #22541] INFO -- py3-201923-windows-10-1709: pid: +I, [2020-03-06T13:59:47.690630 #22541] INFO -- py3-201923-windows-10-1709: 4596 +I, [2020-03-06T13:59:47.690976 #22541] INFO -- py3-201923-windows-10-1709: retcode: +I, [2020-03-06T13:59:47.691288 #22541] INFO -- py3-201923-windows-10-1709: 0 +I, [2020-03-06T13:59:47.691721 #22541] INFO -- py3-201923-windows-10-1709: stderr: +I, [2020-03-06T13:59:47.692297 #22541] INFO -- py3-201923-windows-10-1709: stdout: +I, [2020-03-06T13:59:47.692838 #22541] INFO -- py3-201923-windows-10-1709: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:57:14.919398 Duration: 531.849 ms +I, [2020-03-06T13:59:47.693275 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.693683 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:59:47.694004 #22541] INFO -- py3-201923-windows-10-1709: Function: reg.present +I, [2020-03-06T13:59:47.694337 #22541] INFO -- py3-201923-windows-10-1709: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:59:47.694645 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.694971 #22541] INFO -- py3-201923-windows-10-1709: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:59:47.695296 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:15.466901 +I, [2020-03-06T13:59:47.695643 #22541] INFO -- py3-201923-windows-10-1709: Duration: 17312.486 ms +I, [2020-03-06T13:59:47.695951 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.696282 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.696589 #22541] INFO -- py3-201923-windows-10-1709: reg: +I, [2020-03-06T13:59:47.696900 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.697334 #22541] INFO -- py3-201923-windows-10-1709: Added: +I, [2020-03-06T13:59:47.703254 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.703920 #22541] INFO -- py3-201923-windows-10-1709: Entry: +I, [2020-03-06T13:59:47.704359 #22541] INFO -- py3-201923-windows-10-1709: SystemDefaultTlsVersions +I, [2020-03-06T13:59:47.704732 #22541] INFO -- py3-201923-windows-10-1709: Inheritance: +I, [2020-03-06T13:59:47.705116 #22541] INFO -- py3-201923-windows-10-1709: True +I, [2020-03-06T13:59:47.705453 #22541] INFO -- py3-201923-windows-10-1709: Key: +I, [2020-03-06T13:59:47.705853 #22541] INFO -- py3-201923-windows-10-1709: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:59:47.706309 #22541] INFO -- py3-201923-windows-10-1709: Owner: +I, [2020-03-06T13:59:47.706666 #22541] INFO -- py3-201923-windows-10-1709: None +I, [2020-03-06T13:59:47.707030 #22541] INFO -- py3-201923-windows-10-1709: Perms: +I, [2020-03-06T13:59:47.707366 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.707808 #22541] INFO -- py3-201923-windows-10-1709: Deny: +I, [2020-03-06T13:59:47.708219 #22541] INFO -- py3-201923-windows-10-1709: None +I, [2020-03-06T13:59:47.708591 #22541] INFO -- py3-201923-windows-10-1709: Grant: +I, [2020-03-06T13:59:47.708994 #22541] INFO -- py3-201923-windows-10-1709: None +I, [2020-03-06T13:59:47.709328 #22541] INFO -- py3-201923-windows-10-1709: Value: +I, [2020-03-06T13:59:47.709667 #22541] INFO -- py3-201923-windows-10-1709: 1 +I, [2020-03-06T13:59:47.709997 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.710326 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:59:47.710652 #22541] INFO -- py3-201923-windows-10-1709: Function: reg.present +I, [2020-03-06T13:59:47.710996 #22541] INFO -- py3-201923-windows-10-1709: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:59:47.711329 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.711665 #22541] INFO -- py3-201923-windows-10-1709: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:59:47.711998 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:32.779387 +I, [2020-03-06T13:59:47.712348 #22541] INFO -- py3-201923-windows-10-1709: Duration: 218.318 ms +I, [2020-03-06T13:59:47.712656 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.712985 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.713295 #22541] INFO -- py3-201923-windows-10-1709: reg: +I, [2020-03-06T13:59:47.713665 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.714115 #22541] INFO -- py3-201923-windows-10-1709: Added: +I, [2020-03-06T13:59:47.714452 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.714858 #22541] INFO -- py3-201923-windows-10-1709: Entry: +I, [2020-03-06T13:59:47.715193 #22541] INFO -- py3-201923-windows-10-1709: SystemDefaultTlsVersions +I, [2020-03-06T13:59:47.715526 #22541] INFO -- py3-201923-windows-10-1709: Inheritance: +I, [2020-03-06T13:59:47.715869 #22541] INFO -- py3-201923-windows-10-1709: True +I, [2020-03-06T13:59:47.716187 #22541] INFO -- py3-201923-windows-10-1709: Key: +I, [2020-03-06T13:59:47.717499 #22541] INFO -- py3-201923-windows-10-1709: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:59:47.718100 #22541] INFO -- py3-201923-windows-10-1709: Owner: +I, [2020-03-06T13:59:47.718545 #22541] INFO -- py3-201923-windows-10-1709: None +I, [2020-03-06T13:59:47.718942 #22541] INFO -- py3-201923-windows-10-1709: Perms: +I, [2020-03-06T13:59:47.719344 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.719691 #22541] INFO -- py3-201923-windows-10-1709: Deny: +I, [2020-03-06T13:59:47.720018 #22541] INFO -- py3-201923-windows-10-1709: None +I, [2020-03-06T13:59:47.720339 #22541] INFO -- py3-201923-windows-10-1709: Grant: +I, [2020-03-06T13:59:47.720680 #22541] INFO -- py3-201923-windows-10-1709: None +I, [2020-03-06T13:59:47.721000 #22541] INFO -- py3-201923-windows-10-1709: Value: +I, [2020-03-06T13:59:47.721375 #22541] INFO -- py3-201923-windows-10-1709: 1 +I, [2020-03-06T13:59:47.721714 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.722037 #22541] INFO -- py3-201923-windows-10-1709: ID: manually.update_git_repo-ng +I, [2020-03-06T13:59:47.722481 #22541] INFO -- py3-201923-windows-10-1709: Function: archive.extracted +I, [2020-03-06T13:59:47.722921 #22541] INFO -- py3-201923-windows-10-1709: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:59:47.723287 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.723780 #22541] INFO -- py3-201923-windows-10-1709: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:59:47.724184 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:32.997705 +I, [2020-03-06T13:59:47.724703 #22541] INFO -- py3-201923-windows-10-1709: Duration: 1015.827 ms +I, [2020-03-06T13:59:47.725097 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.725516 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.725867 #22541] INFO -- py3-201923-windows-10-1709: directories_created: +I, [2020-03-06T13:59:47.726215 #22541] INFO -- py3-201923-windows-10-1709: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:59:47.726564 #22541] INFO -- py3-201923-windows-10-1709: extracted_files: +I, [2020-03-06T13:59:47.726880 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ +I, [2020-03-06T13:59:47.727211 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:59:47.727697 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:59:47.728089 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:59:47.728504 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:59:47.728831 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:59:47.729149 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:59:47.729482 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:59:47.729956 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:59:47.730335 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:59:47.730779 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:59:47.731242 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:59:47.731627 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:59:47.731983 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:59:47.732327 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:59:47.732649 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:59:47.732970 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:59:47.733310 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:59:47.733672 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:59:47.734024 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:59:47.734441 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:59:47.734893 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:59:47.735321 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:59:47.735649 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:59:47.735973 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:59:47.736328 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:59:47.736643 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:59:47.737014 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:59:47.737362 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:59:47.737722 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:59:47.738165 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:59:47.738560 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:59:47.739000 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:59:47.739352 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:59:47.739676 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:59:47.739999 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:59:47.740331 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:59:47.740642 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:59:47.740950 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:59:47.741371 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:59:47.741779 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:59:47.742257 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:59:47.742607 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:59:47.743037 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:59:47.743490 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:59:47.743831 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:59:47.744171 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:59:47.744487 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:59:47.744803 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:59:47.745194 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:59:47.745644 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:59:47.746000 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:59:47.746388 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:59:47.746835 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:59:47.747265 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:59:47.747612 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:59:47.747962 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:59:47.748281 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:59:47.748597 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:59:47.748937 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:59:47.749303 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:59:47.749776 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:59:47.750243 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:59:47.750611 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:59:47.750947 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:59:47.751311 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:59:47.751643 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:59:47.751975 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:59:47.752289 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:59:47.752631 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:59:47.752997 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:59:47.753378 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:59:47.753829 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:59:47.754192 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:59:47.754510 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:59:47.754843 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:59:47.755150 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:59:47.755461 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:59:47.755829 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:59:47.756174 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:59:47.756606 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:59:47.757087 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:59:47.757522 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:59:47.757880 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:59:47.758198 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:59:47.758512 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:59:47.758844 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:59:47.759158 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:59:47.759519 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:59:47.759856 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:59:47.760302 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:59:47.760741 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:59:47.761083 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:59:47.761420 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:59:47.761785 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:59:47.762116 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:59:47.762470 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:59:47.762852 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:59:47.763297 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:59:47.763793 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:59:47.764238 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:59:47.764589 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:59:47.764906 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:59:47.765223 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:59:47.765552 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:59:47.765867 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:59:47.766190 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:59:47.766550 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:59:47.767034 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:59:47.767459 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:59:47.767823 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:59:47.768170 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:59:47.768549 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:59:47.768877 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:59:47.769230 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:59:47.769576 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:59:47.769892 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:59:47.770254 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:59:47.770729 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:59:47.771082 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:59:47.771486 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:59:47.771806 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:59:47.772121 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:59:47.772451 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:59:47.772763 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:59:47.773110 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:59:47.773444 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:59:47.773828 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:59:47.774241 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:59:47.774650 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:59:47.775060 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:59:47.775410 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:59:47.775731 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:59:47.776060 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:59:47.776427 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:59:47.776796 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:59:47.777244 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:59:47.777638 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:59:47.778170 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:59:47.778793 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:59:47.779346 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:59:47.779734 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:59:47.780267 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:59:47.780653 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:59:47.781012 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:59:47.781416 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:59:47.781789 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:59:47.782165 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:59:47.782582 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:59:47.783024 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:59:47.783542 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:59:47.784013 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:59:47.784486 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:59:47.784940 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:59:47.785418 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:59:47.785917 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:59:47.786412 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:59:47.786885 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:59:47.787390 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:59:47.787862 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:59:47.788365 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:59:47.788974 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:59:47.789508 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:59:47.790126 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:59:47.790566 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:59:47.790967 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:59:47.791346 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:59:47.791718 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:59:47.792113 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:59:47.792497 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:59:47.792891 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:59:47.793379 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:59:47.793822 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:59:47.794306 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:59:47.794865 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:59:47.795425 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:59:47.795957 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:59:47.796503 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:59:47.797043 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:59:47.797598 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:59:47.798141 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:59:47.798679 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:59:47.799186 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:59:47.799590 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:59:47.799961 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:59:47.800364 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:59:47.800740 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:59:47.801183 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:59:47.801632 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:59:47.802149 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:59:47.802630 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:59:47.803057 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:59:47.803461 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:59:47.803957 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:59:47.804483 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:59:47.804885 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:59:47.805407 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:59:47.805793 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:59:47.806183 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:59:47.806633 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:59:47.807061 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:59:47.807491 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:59:47.807992 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:59:47.808510 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:59:47.816352 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:59:47.816957 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:59:47.817382 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:59:47.817788 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:59:47.818205 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:59:47.818741 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:59:47.819362 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:59:47.819908 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:59:47.820360 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:59:47.820774 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:59:47.821190 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:59:47.821587 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:59:47.821979 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:59:47.822502 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:59:47.822928 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:59:47.823334 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:59:47.823790 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:59:47.824283 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:59:47.824836 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:59:47.825335 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:59:47.825780 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:59:47.826203 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:59:47.826589 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:59:47.826989 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:59:47.827383 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:59:47.827762 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:59:47.828190 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:59:47.828617 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:59:47.829194 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:59:47.829753 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:59:47.830320 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:59:47.830877 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:59:47.831451 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:59:47.832005 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:59:47.832565 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:59:47.833051 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:59:47.833632 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:59:47.834264 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:59:47.834840 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:59:47.835543 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:59:47.837890 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:59:47.838721 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:59:47.839375 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:59:47.840003 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:59:47.840590 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:59:47.841194 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:59:47.841781 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:59:47.842320 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:59:47.842918 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:59:47.843465 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:59:47.843943 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:59:47.844513 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:59:47.845021 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:59:47.845481 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:59:47.845954 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:59:47.846393 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:59:47.846809 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:59:47.847285 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:59:47.847791 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:59:47.848279 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:59:47.848741 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:59:47.849164 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:59:47.849564 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:59:47.849930 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:59:47.850297 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:59:47.850794 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:59:47.851220 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:59:47.851613 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:59:47.852076 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:59:47.852537 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:59:47.852906 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:59:47.853301 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:59:47.853662 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:59:47.854029 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:59:47.854410 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:59:47.854776 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:59:47.855249 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:59:47.855670 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:59:47.856119 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:59:47.856515 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:59:47.856931 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:59:47.857453 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:59:47.858013 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:59:47.858563 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:59:47.859075 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:59:47.859622 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:59:47.860136 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:59:47.860668 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:59:47.861175 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:59:47.861697 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:59:47.862221 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:59:47.862716 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:59:47.863243 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:59:47.863754 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:59:47.864301 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:59:47.864820 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:59:47.865349 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:59:47.865869 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:59:47.866408 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:59:47.866932 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:59:47.867445 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:59:47.867971 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:59:47.868473 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:59:47.869006 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:59:47.869547 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:59:47.870063 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:59:47.870625 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:59:47.871148 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:59:47.871695 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:59:47.872209 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:59:47.872741 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:59:47.873266 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:59:47.873808 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:59:47.874339 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:59:47.874899 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:59:47.875461 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:59:47.875986 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:59:47.876562 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:59:47.877110 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:59:47.877674 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:59:47.878149 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:59:47.878557 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:59:47.879001 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:59:47.960747 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:59:47.961385 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:59:47.961957 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:59:47.962411 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:59:47.962874 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:59:47.963256 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:59:47.963643 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:59:47.964126 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:59:47.964557 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:59:47.965184 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:59:47.965780 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:59:47.966373 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:59:47.966922 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:59:47.967409 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:59:47.967895 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:59:47.968360 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:59:47.968842 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:59:47.969299 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:59:47.969775 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:59:47.970232 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:59:47.970722 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:59:47.971196 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:59:47.971684 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:59:47.972152 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:59:47.972644 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:59:47.973095 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:59:47.973573 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:59:47.974039 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:59:47.974573 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:59:47.975068 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:59:47.975545 #22541] INFO -- py3-201923-windows-10-1709: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:59:47.975969 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.976424 #22541] INFO -- py3-201923-windows-10-1709: ID: rename-extract +I, [2020-03-06T13:59:47.976856 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:47.977282 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.977742 #22541] INFO -- py3-201923-windows-10-1709: Comment: file.rename: True +I, [2020-03-06T13:59:47.978177 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:34.013532 +I, [2020-03-06T13:59:47.978614 #22541] INFO -- py3-201923-windows-10-1709: Duration: 0.0 ms +I, [2020-03-06T13:59:47.979028 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.979472 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.979905 #22541] INFO -- py3-201923-windows-10-1709: file.rename: +I, [2020-03-06T13:59:47.980356 #22541] INFO -- py3-201923-windows-10-1709: True +I, [2020-03-06T13:59:47.980775 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.981226 #22541] INFO -- py3-201923-windows-10-1709: ID: pkg.refresh_db +I, [2020-03-06T13:59:47.981704 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:47.982185 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.982677 #22541] INFO -- py3-201923-windows-10-1709: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:59:47.983171 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:34.013532 +I, [2020-03-06T13:59:47.983691 #22541] INFO -- py3-201923-windows-10-1709: Duration: 13999.593 ms +I, [2020-03-06T13:59:47.984191 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.984698 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.985095 #22541] INFO -- py3-201923-windows-10-1709: pkg.refresh_db: +I, [2020-03-06T13:59:47.985466 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.985827 #22541] INFO -- py3-201923-windows-10-1709: failed: +I, [2020-03-06T13:59:47.986195 #22541] INFO -- py3-201923-windows-10-1709: 0 +I, [2020-03-06T13:59:47.986582 #22541] INFO -- py3-201923-windows-10-1709: success: +I, [2020-03-06T13:59:47.987019 #22541] INFO -- py3-201923-windows-10-1709: 298 +I, [2020-03-06T13:59:47.987571 #22541] INFO -- py3-201923-windows-10-1709: total: +I, [2020-03-06T13:59:47.987973 #22541] INFO -- py3-201923-windows-10-1709: 298 +I, [2020-03-06T13:59:47.988408 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.988779 #22541] INFO -- py3-201923-windows-10-1709: ID: git +I, [2020-03-06T13:59:47.989168 #22541] INFO -- py3-201923-windows-10-1709: Function: pkg.installed +I, [2020-03-06T13:59:47.989531 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.989887 #22541] INFO -- py3-201923-windows-10-1709: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:59:47.990440 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:57:48.028820 +I, [2020-03-06T13:59:47.990891 #22541] INFO -- py3-201923-windows-10-1709: Duration: 27829.148 ms +I, [2020-03-06T13:59:47.991409 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.991899 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.992464 #22541] INFO -- py3-201923-windows-10-1709: git: +I, [2020-03-06T13:59:47.992995 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.993542 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:47.994103 #22541] INFO -- py3-201923-windows-10-1709: 2.23.0.windows.1 +I, [2020-03-06T13:59:47.994654 #22541] INFO -- py3-201923-windows-10-1709: old: +I, [2020-03-06T13:59:47.995146 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.995529 #22541] INFO -- py3-201923-windows-10-1709: ID: kdiff3 +I, [2020-03-06T13:59:47.995917 #22541] INFO -- py3-201923-windows-10-1709: Function: pkg.installed +I, [2020-03-06T13:59:47.996273 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:47.996647 #22541] INFO -- py3-201923-windows-10-1709: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:59:47.997036 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:58:15.888184 +I, [2020-03-06T13:59:47.997560 #22541] INFO -- py3-201923-windows-10-1709: Duration: 11687.391 ms +I, [2020-03-06T13:59:47.998087 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:47.998523 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.998898 #22541] INFO -- py3-201923-windows-10-1709: kdiff3: +I, [2020-03-06T13:59:47.999240 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:47.999579 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:47.999943 #22541] INFO -- py3-201923-windows-10-1709: Not Found +I, [2020-03-06T13:59:48.000290 #22541] INFO -- py3-201923-windows-10-1709: old: +I, [2020-03-06T13:59:48.000622 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.008868 #22541] INFO -- py3-201923-windows-10-1709: ID: 7zip +I, [2020-03-06T13:59:48.009410 #22541] INFO -- py3-201923-windows-10-1709: Function: pkg.installed +I, [2020-03-06T13:59:48.009822 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:48.010229 #22541] INFO -- py3-201923-windows-10-1709: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:59:48.010754 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:58:27.606864 +I, [2020-03-06T13:59:48.011234 #22541] INFO -- py3-201923-windows-10-1709: Duration: 13437.934 ms +I, [2020-03-06T13:59:48.011750 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:48.012162 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.012634 #22541] INFO -- py3-201923-windows-10-1709: 7zip: +I, [2020-03-06T13:59:48.013144 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.013643 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:48.014094 #22541] INFO -- py3-201923-windows-10-1709: 18.06.00.0 +I, [2020-03-06T13:59:48.014499 #22541] INFO -- py3-201923-windows-10-1709: old: +I, [2020-03-06T13:59:48.014850 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.015301 #22541] INFO -- py3-201923-windows-10-1709: ID: windows_environment.refresh.path +I, [2020-03-06T13:59:48.015776 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:48.016149 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:48.016557 #22541] INFO -- py3-201923-windows-10-1709: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:59:48.016906 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:58:41.060426 +I, [2020-03-06T13:59:48.017257 #22541] INFO -- py3-201923-windows-10-1709: Duration: 62.336 ms +I, [2020-03-06T13:59:48.017612 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:48.018010 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.018402 #22541] INFO -- py3-201923-windows-10-1709: windows_environment.refresh: +I, [2020-03-06T13:59:48.018761 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.019110 #22541] INFO -- py3-201923-windows-10-1709: PATH: +I, [2020-03-06T13:59:48.019515 #22541] INFO -- py3-201923-windows-10-1709: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:59:48.019998 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.020482 #22541] INFO -- py3-201923-windows-10-1709: ID: chocolatey.bootstrap +I, [2020-03-06T13:59:48.020920 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:48.021301 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:48.021668 #22541] INFO -- py3-201923-windows-10-1709: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:59:48.021986 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.022391 #22541] INFO -- py3-201923-windows-10-1709: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:59:48.022700 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.023273 #22541] INFO -- py3-201923-windows-10-1709: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:59:48.023777 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.025121 #22541] INFO -- py3-201923-windows-10-1709: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:59:48.025512 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.025898 #22541] INFO -- py3-201923-windows-10-1709: Installing chocolatey on this machine +I, [2020-03-06T13:59:48.026255 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.026640 #22541] INFO -- py3-201923-windows-10-1709: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:59:48.027034 #22541] INFO -- py3-201923-windows-10-1709: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:59:48.027428 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.027912 #22541] INFO -- py3-201923-windows-10-1709: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:59:48.028359 #22541] INFO -- py3-201923-windows-10-1709: before you can use choco. +I, [2020-03-06T13:59:48.028782 #22541] INFO -- py3-201923-windows-10-1709: Restricting write permissions to Administrators +I, [2020-03-06T13:59:48.029182 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.029585 #22541] INFO -- py3-201923-windows-10-1709: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:59:48.029938 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.030358 #22541] INFO -- py3-201923-windows-10-1709: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:59:48.030760 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.031186 #22541] INFO -- py3-201923-windows-10-1709: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:59:48.031528 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.031952 #22541] INFO -- py3-201923-windows-10-1709: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:59:48.032342 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.032840 #22541] INFO -- py3-201923-windows-10-1709: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:59:48.033254 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.033606 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.033930 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.034277 #22541] INFO -- py3-201923-windows-10-1709: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:59:48.034594 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.034949 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.035248 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.035605 #22541] INFO -- py3-201923-windows-10-1709: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:59:48.036023 #22541] INFO -- py3-201923-windows-10-1709: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:59:48.036387 #22541] INFO -- py3-201923-windows-10-1709: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:59:48.036745 #22541] INFO -- py3-201923-windows-10-1709: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:59:48.037114 #22541] INFO -- py3-201923-windows-10-1709: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:59:48.037594 #22541] INFO -- py3-201923-windows-10-1709: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:59:48.038019 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.038411 #22541] INFO -- py3-201923-windows-10-1709: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:59:48.038831 #22541] INFO -- py3-201923-windows-10-1709: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:59:48.039160 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.039516 #22541] INFO -- py3-201923-windows-10-1709: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:59:48.039881 #22541] INFO -- py3-201923-windows-10-1709: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:59:48.040183 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.040539 #22541] INFO -- py3-201923-windows-10-1709: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:59:48.040907 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.041253 #22541] INFO -- py3-201923-windows-10-1709: Run choco /? for a list of functions. +I, [2020-03-06T13:59:48.041570 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.041941 #22541] INFO -- py3-201923-windows-10-1709: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:59:48.042243 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.042731 #22541] INFO -- py3-201923-windows-10-1709: first prior to using choco. +I, [2020-03-06T13:59:48.043133 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.043577 #22541] INFO -- py3-201923-windows-10-1709: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:59:48.043944 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.044333 #22541] INFO -- py3-201923-windows-10-1709: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:59:48.044730 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:58:41.122762 +I, [2020-03-06T13:59:48.045123 #22541] INFO -- py3-201923-windows-10-1709: Duration: 31703.159 ms +I, [2020-03-06T13:59:48.045499 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:48.045977 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.046389 #22541] INFO -- py3-201923-windows-10-1709: chocolatey.bootstrap: +I, [2020-03-06T13:59:48.046816 #22541] INFO -- py3-201923-windows-10-1709: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:59:48.047280 #22541] INFO -- py3-201923-windows-10-1709: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:59:48.047770 #22541] INFO -- py3-201923-windows-10-1709: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:59:48.048210 #22541] INFO -- py3-201923-windows-10-1709: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:59:48.048653 #22541] INFO -- py3-201923-windows-10-1709: Installing chocolatey on this machine +I, [2020-03-06T13:59:48.049073 #22541] INFO -- py3-201923-windows-10-1709: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:59:48.049482 #22541] INFO -- py3-201923-windows-10-1709: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:59:48.049896 #22541] INFO -- py3-201923-windows-10-1709: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:59:48.050379 #22541] INFO -- py3-201923-windows-10-1709: before you can use choco. +I, [2020-03-06T13:59:48.050862 #22541] INFO -- py3-201923-windows-10-1709: Restricting write permissions to Administrators +I, [2020-03-06T13:59:48.051345 #22541] INFO -- py3-201923-windows-10-1709: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:59:48.051897 #22541] INFO -- py3-201923-windows-10-1709: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:59:48.052367 #22541] INFO -- py3-201923-windows-10-1709: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:59:48.052812 #22541] INFO -- py3-201923-windows-10-1709: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:59:48.053236 #22541] INFO -- py3-201923-windows-10-1709: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:59:48.053639 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.054041 #22541] INFO -- py3-201923-windows-10-1709: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:59:48.054465 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.055007 #22541] INFO -- py3-201923-windows-10-1709: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:59:48.055492 #22541] INFO -- py3-201923-windows-10-1709: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:59:48.055918 #22541] INFO -- py3-201923-windows-10-1709: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:59:48.056334 #22541] INFO -- py3-201923-windows-10-1709: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:59:48.056747 #22541] INFO -- py3-201923-windows-10-1709: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:59:48.057161 #22541] INFO -- py3-201923-windows-10-1709: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:59:48.057608 #22541] INFO -- py3-201923-windows-10-1709: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:59:48.058114 #22541] INFO -- py3-201923-windows-10-1709: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:59:48.058586 #22541] INFO -- py3-201923-windows-10-1709: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:59:48.059027 #22541] INFO -- py3-201923-windows-10-1709: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:59:48.059446 #22541] INFO -- py3-201923-windows-10-1709: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:59:48.059831 #22541] INFO -- py3-201923-windows-10-1709: Run choco /? for a list of functions. +I, [2020-03-06T13:59:48.060242 #22541] INFO -- py3-201923-windows-10-1709: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:59:48.060680 #22541] INFO -- py3-201923-windows-10-1709: first prior to using choco. +I, [2020-03-06T13:59:48.061219 #22541] INFO -- py3-201923-windows-10-1709: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:59:48.061745 #22541] INFO -- py3-201923-windows-10-1709: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:59:48.062210 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.062656 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:59:48.063088 #22541] INFO -- py3-201923-windows-10-1709: Function: chocolatey.installed +I, [2020-03-06T13:59:48.063493 #22541] INFO -- py3-201923-windows-10-1709: Name: windirstat +I, [2020-03-06T13:59:48.063873 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:48.064354 #22541] INFO -- py3-201923-windows-10-1709: Comment: +I, [2020-03-06T13:59:48.064879 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:59:12.825921 +I, [2020-03-06T13:59:48.065292 #22541] INFO -- py3-201923-windows-10-1709: Duration: 13015.722 ms +I, [2020-03-06T13:59:48.065635 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:48.065984 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.066480 #22541] INFO -- py3-201923-windows-10-1709: windirstat: +I, [2020-03-06T13:59:48.066901 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.067344 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:48.067895 #22541] INFO -- py3-201923-windows-10-1709: - 1.1.2.20161210 +I, [2020-03-06T13:59:48.068486 #22541] INFO -- py3-201923-windows-10-1709: old: +I, [2020-03-06T13:59:48.068933 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.069372 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:59:48.069785 #22541] INFO -- py3-201923-windows-10-1709: Function: chocolatey.installed +I, [2020-03-06T13:59:48.070196 #22541] INFO -- py3-201923-windows-10-1709: Name: notepadplusplus +I, [2020-03-06T13:59:48.070569 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:48.070925 #22541] INFO -- py3-201923-windows-10-1709: Comment: +I, [2020-03-06T13:59:48.071326 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:59:25.841643 +I, [2020-03-06T13:59:48.071811 #22541] INFO -- py3-201923-windows-10-1709: Duration: 13343.762 ms +I, [2020-03-06T13:59:48.072262 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:48.072670 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.073083 #22541] INFO -- py3-201923-windows-10-1709: notepadplusplus: +I, [2020-03-06T13:59:48.073458 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.073842 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:48.074247 #22541] INFO -- py3-201923-windows-10-1709: - 7.8.5 +I, [2020-03-06T13:59:48.074677 #22541] INFO -- py3-201923-windows-10-1709: old: +I, [2020-03-06T13:59:48.075242 #22541] INFO -- py3-201923-windows-10-1709: notepadplusplus.install: +I, [2020-03-06T13:59:48.075748 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.076162 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:48.076582 #22541] INFO -- py3-201923-windows-10-1709: - 7.8.5 +I, [2020-03-06T13:59:48.076985 #22541] INFO -- py3-201923-windows-10-1709: old: +I, [2020-03-06T13:59:48.077346 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.077724 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:59:48.078109 #22541] INFO -- py3-201923-windows-10-1709: Function: dism.feature_installed +I, [2020-03-06T13:59:48.078472 #22541] INFO -- py3-201923-windows-10-1709: Name: TelnetClient +I, [2020-03-06T13:59:48.078898 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:48.079275 #22541] INFO -- py3-201923-windows-10-1709: Comment: Installed TelnetClient +I, [2020-03-06T13:59:48.079756 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:59:39.185405 +I, [2020-03-06T13:59:48.080220 #22541] INFO -- py3-201923-windows-10-1709: Duration: 7531.464 ms +I, [2020-03-06T13:59:48.080650 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:48.081112 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.081489 #22541] INFO -- py3-201923-windows-10-1709: feature: +I, [2020-03-06T13:59:48.081875 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.082236 #22541] INFO -- py3-201923-windows-10-1709: new: +I, [2020-03-06T13:59:48.082607 #22541] INFO -- py3-201923-windows-10-1709: TelnetClient +I, [2020-03-06T13:59:48.082983 #22541] INFO -- py3-201923-windows-10-1709: pid: +I, [2020-03-06T13:59:48.083341 #22541] INFO -- py3-201923-windows-10-1709: 6596 +I, [2020-03-06T13:59:48.083765 #22541] INFO -- py3-201923-windows-10-1709: retcode: +I, [2020-03-06T13:59:48.084134 #22541] INFO -- py3-201923-windows-10-1709: 0 +I, [2020-03-06T13:59:48.084507 #22541] INFO -- py3-201923-windows-10-1709: stderr: +I, [2020-03-06T13:59:48.084956 #22541] INFO -- py3-201923-windows-10-1709: stdout: +I, [2020-03-06T13:59:48.085397 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.085794 #22541] INFO -- py3-201923-windows-10-1709: ID: windows.module.system.reboot +I, [2020-03-06T13:59:48.086198 #22541] INFO -- py3-201923-windows-10-1709: Function: module.run +I, [2020-03-06T13:59:48.086557 #22541] INFO -- py3-201923-windows-10-1709: Result: True +I, [2020-03-06T13:59:48.086930 #22541] INFO -- py3-201923-windows-10-1709: Comment: system.reboot: True +I, [2020-03-06T13:59:48.087290 #22541] INFO -- py3-201923-windows-10-1709: Started: 10:59:46.716869 +I, [2020-03-06T13:59:48.087674 #22541] INFO -- py3-201923-windows-10-1709: Duration: 327.538 ms +I, [2020-03-06T13:59:48.088025 #22541] INFO -- py3-201923-windows-10-1709: Changes: +I, [2020-03-06T13:59:48.088398 #22541] INFO -- py3-201923-windows-10-1709: ---------- +I, [2020-03-06T13:59:48.088780 #22541] INFO -- py3-201923-windows-10-1709: system.reboot: +I, [2020-03-06T13:59:48.089139 #22541] INFO -- py3-201923-windows-10-1709: True +I, [2020-03-06T13:59:48.089499 #22541] INFO -- py3-201923-windows-10-1709: +I, [2020-03-06T13:59:48.089969 #22541] INFO -- py3-201923-windows-10-1709: Summary for local +I, [2020-03-06T13:59:48.090402 #22541] INFO -- py3-201923-windows-10-1709: ------------- +I, [2020-03-06T13:59:48.090832 #22541] INFO -- py3-201923-windows-10-1709: Succeeded: 25 (changed=24) +I, [2020-03-06T13:59:48.091217 #22541] INFO -- py3-201923-windows-10-1709: Failed: 0 +I, [2020-03-06T13:59:48.091586 #22541] INFO -- py3-201923-windows-10-1709: ------------- +I, [2020-03-06T13:59:48.091950 #22541] INFO -- py3-201923-windows-10-1709: Total states run: 25 +I, [2020-03-06T13:59:48.092314 #22541] INFO -- py3-201923-windows-10-1709: Total run time: 163.235 s +I, [2020-03-06T13:59:48.119884 #22541] INFO -- py3-201923-windows-10-1709: Downloading files from +I, [2020-03-06T13:59:48.303906 #22541] INFO -- py3-201923-windows-10-1709: Finished converging (4m18.57s). +I, [2020-03-06T13:59:48.304130 #22541] INFO -- py3-201923-windows-10-1709: -----> Setting up ... +I, [2020-03-06T13:59:48.307056 #22541] INFO -- py3-201923-windows-10-1709: Finished setting up (0m0.00s). +I, [2020-03-06T13:59:48.307247 #22541] INFO -- py3-201923-windows-10-1709: -----> Verifying ... +I, [2020-03-06T13:59:49.593831 #22541] INFO -- py3-201923-windows-10-1709: Loaded default +I, [2020-03-06T13:59:55.408303 #22541] INFO -- py3-201923-windows-10-1709: [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). +I, [2020-03-06T14:00:43.237881 #22541] INFO -- py3-201923-windows-10-1709: Finished verifying (0m54.92s). +I, [2020-03-06T14:00:43.238010 #22541] INFO -- py3-201923-windows-10-1709: Finished testing (6m14.98s). +I, [2020-03-06T14:00:43.243104 #22541] INFO -- py3-201923-windows-10-1709: -----> Destroying ... +I, [2020-03-06T14:00:54.304762 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Forcing shutdown of VM... +I, [2020-03-06T14:00:55.965737 #22541] INFO -- py3-201923-windows-10-1709: ==> default: Destroying VM and associated drives... +I, [2020-03-06T14:00:56.681533 #22541] INFO -- py3-201923-windows-10-1709: Vagrant instance destroyed. +I, [2020-03-06T14:00:56.682866 #22541] INFO -- py3-201923-windows-10-1709: Finished destroying (0m13.44s). diff --git a/test/results/py3-201923-windows-10-1709.log b/test/results/py3-201923-windows-10-1709.log new file mode 100644 index 0000000..b60fb0b --- /dev/null +++ b/test/results/py3-201923-windows-10-1709.log @@ -0,0 +1,1078 @@ +Fri Mar 6 13:54:09 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +Author: Peter Mudd +Date: Fri Mar 6 12:43:24 2020 -0500 + + feat: support saltstack 3000 +CURRENT BRANCH COMMIT ID +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +CURRENT RELEASE TAG +v1.0.0 +-----> Starting Test Kitchen (v2.3.4) +-----> Cleaning up any prior instances of +-----> Destroying ... + Finished destroying (0m0.00s). +-----> Testing +-----> Creating ... + Bringing machine 'default' up with 'virtualbox' provider... + ==> default: Cloning VM... + ==> default: Matching MAC address for NAT networking... + ==> default: Checking if box 'StefanScherer/windows_10' version '2018.03.14' is up to date... + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1709-32d8b6b3-f16a-4565-9d3a-83ce7617d600 + ==> default: Clearing any previously set network interfaces... + ==> default: Preparing network interfaces based on configuration... + default: Adapter 1: nat + ==> default: Forwarding ports... + default: 3389 (guest) => 3389 (host) (adapter 1) + default: 5985 (guest) => 55985 (host) (adapter 1) + default: 5986 (guest) => 55986 (host) (adapter 1) + default: 22 (guest) => 2222 (host) (adapter 1) + ==> default: Running 'pre-boot' VM customizations... + ==> default: Booting VM... + ==> default: Waiting for machine to boot. This may take a few minutes... + default: WinRM address: 127.0.0.1:55985 + default: WinRM username: vagrant + default: WinRM execution_time_limit: PT2H + default: WinRM transport: negotiate + ==> default: Machine booted and ready! + ==> default: Checking for guest additions in VM... + default: The guest additions on this VM do not match the installed version of + default: VirtualBox! In most cases this is fine, but in rare cases it can + default: prevent things such as shared folders from working properly. If you see + default: shared folder errors, please make sure the guest additions within the + default: virtual machine match the version of VirtualBox you have installed on + default: your host and reload your VM. + default: + default: Guest Additions Version: 5.2.8 + default: VirtualBox Version: 6.1 + ==> default: Mounting shared folders... + default: /results => /mnt/c/tmp/results + ==> default: Machine not provisioned because `--no-provision` is specified. + [WinRM] Established + + Vagrant instance created. + Finished creating (1m1.46s). +-----> Converging ... + Preparing files for transfer + Preparing salt-minion + Preparing pillars into /srv/pillar + pillars-from-files is deprecated in favor of pillars_from_files + Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula + Preparing state_top + Preparing scripts into /etc/salt/scripts + + + Directory: C:\ + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:55 AM temp + Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + Installing Salt minion + Starting the Salt minion service + Salt minion successfully installed + You asked for latest and you have 2019.2.3 installed, sweet! + + + + + Directory: C:\Users\vagrant\AppData\Local\Temp + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:56 AM kitchen + + + Transferring files to + c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + At line:1 char:131 + + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException + + FullyQualifiedErrorId : NativeCommandError + + + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + + + local: + ---------- + ID: windows.state.system.hostname.saltstack1 + Function: system.hostname + Name: saltstack1 + Result: True + Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot + Started: 10:57:03.576229 + Duration: 171.768 ms + Changes: + ---------- + hostname: + saltstack1 + ---------- + ID: windows.state.system.computer_desc.description + Function: system.computer_desc + Name: Saltstack Computer Description + Result: True + Comment: Computer description successfully changed to 'Saltstack Computer Description' + Started: 10:57:03.747997 + Duration: 3171.737 ms + Changes: + ---------- + new: + Saltstack Computer Description + old: + ---------- + ID: windows.state.timezone.system.America/New_York + Function: timezone.system + Name: America/New_York + Result: True + Comment: Set timezone America/New_York + Started: 10:57:06.997403 + Duration: 46.909 ms + Changes: + ---------- + timezone: + America/New_York + ---------- + ID: windows.module.environ.items + Function: module.run + Result: True + Comment: environ.items: Success + Started: 10:57:07.059960 + Duration: 31.679 ms + Changes: + ---------- + environ.items: + ---------- + ALLUSERSPROFILE: + C:\ProgramData + APPDATA: + C:\Users\vagrant\AppData\Roaming + COMMONPROGRAMFILES: + C:\Program Files\Common Files + COMMONPROGRAMFILES(X86): + C:\Program Files (x86)\Common Files + COMMONPROGRAMW6432: + C:\Program Files\Common Files + COMPUTERNAME: + VAGRANT-10 + COMSPEC: + C:\Windows\system32\cmd.exe + HOMEDRIVE: + C: + HOMEPATH: + \Users\vagrant + LOCALAPPDATA: + C:\Users\vagrant\AppData\Local + LOGONSERVER: + \\VAGRANT-10 + NUMBER_OF_PROCESSORS: + 2 + ONEDRIVE: + C:\Users\vagrant\OneDrive + OS: + Windows_NT + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 + PATHEXT: + .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL + PROCESSOR_ARCHITECTURE: + AMD64 + PROCESSOR_IDENTIFIER: + Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_LEVEL: + 6 + PROCESSOR_REVISION: + 8e0c + PROGRAMDATA: + C:\ProgramData + PROGRAMFILES: + C:\Program Files + PROGRAMFILES(X86): + C:\Program Files (x86) + PROGRAMW6432: + C:\Program Files + PROMPT: + $P$G + PSMODULEPATH: + C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules + PUBLIC: + C:\Users\Public + PYTHON: + C:\salt\bin\python.exe + SALTDIR: + C:\salt + SCRIPT: + C:\salt\bin\Scripts\salt-call + SYSTEMDRIVE: + C: + SYSTEMROOT: + C:\Windows + TEMP: + C:\Users\vagrant\AppData\Local\Temp + TMP: + C:\Users\vagrant\AppData\Local\Temp + USERDOMAIN: + VAGRANT-10 + USERDOMAIN_ROAMINGPROFILE: + VAGRANT-10 + USERNAME: + vagrant + USERPROFILE: + C:\Users\vagrant + WINDIR: + C:\Windows + ---------- + ID: windows.module.user.current + Function: module.run + Result: True + Comment: user.current: VAGRANT-10\vagrant + Started: 10:57:07.091639 + Duration: 62.463 ms + Changes: + ---------- + user.current: + VAGRANT-10\vagrant + ---------- + ID: windows.module.status.uptime + Function: module.run + Result: True + Comment: status.uptime: 0:02:18.231843 + Started: 10:57:07.154102 + Duration: 77.741 ms + Changes: + ---------- + status.uptime: + 0:02:18.231843 + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection + Function: cmd.run + Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run + Started: 10:57:07.263106 + Duration: 3546.892 ms + Changes: + ---------- + pid: + 4024 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet + Function: cmd.run + Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run + Started: 10:57:10.809998 + Duration: 1297.433 ms + Changes: + ---------- + pid: + 3772 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run + Started: 10:57:12.107431 + Duration: 1405.821 ms + Changes: + ---------- + pid: + 4796 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run + Started: 10:57:13.513252 + Duration: 1406.146 ms + Changes: + ---------- + pid: + 4596 + retcode: + 0 + stderr: + stdout: + Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:57:14.919398 Duration: 531.849 ms + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:57:15.466901 + Duration: 17312.486 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:57:32.779387 + Duration: 218.318 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: manually.update_git_repo-ng + Function: archive.extracted + Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + Result: True + Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs + Started: 10:57:32.997705 + Duration: 1015.827 ms + Changes: + ---------- + directories_created: + - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ + extracted_files: + - salt-winrepo-ng-master/ + - salt-winrepo-ng-master/.gitignore + - salt-winrepo-ng-master/.travis.yml + - salt-winrepo-ng-master/.travis/ + - salt-winrepo-ng-master/.travis/requirements.txt + - salt-winrepo-ng-master/.travis/tests.py + - salt-winrepo-ng-master/7zip.sls + - salt-winrepo-ng-master/LICENSE + - salt-winrepo-ng-master/README.md + - salt-winrepo-ng-master/_config.yml + - salt-winrepo-ng-master/activeperl_x64.sls + - salt-winrepo-ng-master/activeperl_x86.sls + - salt-winrepo-ng-master/adobeair.sls + - salt-winrepo-ng-master/adobereader-dc-classic.sls + - salt-winrepo-ng-master/adobereader-xi.sls + - salt-winrepo-ng-master/adobereader.sls + - salt-winrepo-ng-master/adobeshockwaveplayer.sls + - salt-winrepo-ng-master/adv-ip-scanner.sls + - salt-winrepo-ng-master/adv-port-scanner.sls + - salt-winrepo-ng-master/advancedlogging.sls + - salt-winrepo-ng-master/anydesk-msi.sls + - salt-winrepo-ng-master/anydesk.sls + - salt-winrepo-ng-master/applicationrequestrouting.sls + - salt-winrepo-ng-master/aspnet-mvc1.sls + - salt-winrepo-ng-master/atom.sls + - salt-winrepo-ng-master/audacity.sls + - salt-winrepo-ng-master/auditbeat/ + - salt-winrepo-ng-master/auditbeat/init.sls + - salt-winrepo-ng-master/auditbeat/install.cmd + - salt-winrepo-ng-master/auditbeat/install.ps1 + - salt-winrepo-ng-master/auditbeat/remove.cmd + - salt-winrepo-ng-master/autohotkey.sls + - salt-winrepo-ng-master/autoit.sls + - salt-winrepo-ng-master/autopsy.sls + - salt-winrepo-ng-master/awscli.sls + - salt-winrepo-ng-master/azuredatastudio.sls + - salt-winrepo-ng-master/bandizip.sls + - salt-winrepo-ng-master/belarc-advisor.sls + - salt-winrepo-ng-master/bginfo4x.sls + - salt-winrepo-ng-master/bitnami-nginxstack.sls + - salt-winrepo-ng-master/bitvise.sls + - salt-winrepo-ng-master/blender.sls + - salt-winrepo-ng-master/bootracer.sls + - salt-winrepo-ng-master/bulk_extractor.sls + - salt-winrepo-ng-master/bulkrenameutility.sls + - salt-winrepo-ng-master/ccleaner-slim.sls + - salt-winrepo-ng-master/ccleaner.sls + - salt-winrepo-ng-master/cdburnerxp.sls + - salt-winrepo-ng-master/cdroller.sls + - salt-winrepo-ng-master/check-mk-agent-msi.sls + - salt-winrepo-ng-master/check-mk-agent.sls + - salt-winrepo-ng-master/chocolatey/ + - salt-winrepo-ng-master/chocolatey/init.sls + - salt-winrepo-ng-master/chocolatey/install.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.ps1 + - salt-winrepo-ng-master/chrome-rdp.sls + - salt-winrepo-ng-master/chrome.sls + - salt-winrepo-ng-master/clamav.sls + - salt-winrepo-ng-master/clamwin.sls + - salt-winrepo-ng-master/classicshell.sls + - salt-winrepo-ng-master/clink.sls + - salt-winrepo-ng-master/conemu.sls + - salt-winrepo-ng-master/cpu-z.sls + - salt-winrepo-ng-master/curl.sls + - salt-winrepo-ng-master/cyberduck-cli.sls + - salt-winrepo-ng-master/cyberduck-msi.sls + - salt-winrepo-ng-master/cyberduck.sls + - salt-winrepo-ng-master/defraggler.sls + - salt-winrepo-ng-master/docs/ + - salt-winrepo-ng-master/docs/ReadMe.md + - salt-winrepo-ng-master/dotnet.sls + - salt-winrepo-ng-master/dropbox.sls + - salt-winrepo-ng-master/duplicati.sls + - salt-winrepo-ng-master/dvdstyler.sls + - salt-winrepo-ng-master/echo-desktop.sls + - salt-winrepo-ng-master/eea.sls + - salt-winrepo-ng-master/emet.sls + - salt-winrepo-ng-master/emsisoft-anti-malware.sls + - salt-winrepo-ng-master/eraser.sls + - salt-winrepo-ng-master/erlang/ + - salt-winrepo-ng-master/erlang/init.sls + - salt-winrepo-ng-master/erlang/install.cmd + - salt-winrepo-ng-master/evernote.sls + - salt-winrepo-ng-master/fiddler.sls + - salt-winrepo-ng-master/filebeat/ + - salt-winrepo-ng-master/filebeat/init.sls + - salt-winrepo-ng-master/filebeat/install.cmd + - salt-winrepo-ng-master/filebeat/install.ps1 + - salt-winrepo-ng-master/filebeat/remove.cmd + - salt-winrepo-ng-master/filehippo-app-manager.sls + - salt-winrepo-ng-master/filezilla.sls + - salt-winrepo-ng-master/firefox-esr_x64.sls + - salt-winrepo-ng-master/firefox-esr_x86.sls + - salt-winrepo-ng-master/firefox_x64.sls + - salt-winrepo-ng-master/firefox_x86.sls + - salt-winrepo-ng-master/functionbeat/ + - salt-winrepo-ng-master/functionbeat/init.sls + - salt-winrepo-ng-master/functionbeat/install.cmd + - salt-winrepo-ng-master/functionbeat/install.ps1 + - salt-winrepo-ng-master/functionbeat/remove.cmd + - salt-winrepo-ng-master/gedit.sls + - salt-winrepo-ng-master/gimp.sls + - salt-winrepo-ng-master/git-extensions.sls + - salt-winrepo-ng-master/git.sls + - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls + - salt-winrepo-ng-master/gnucash.sls + - salt-winrepo-ng-master/golang.sls + - salt-winrepo-ng-master/goodsync.sls + - salt-winrepo-ng-master/gow.sls + - salt-winrepo-ng-master/gpg4win-light.sls + - salt-winrepo-ng-master/gpg4win-vanilla.sls + - salt-winrepo-ng-master/gpg4win/ + - salt-winrepo-ng-master/gpg4win/init.sls + - salt-winrepo-ng-master/gpg4win/silent.ini + - salt-winrepo-ng-master/graylog-collector-sidecar.sls + - salt-winrepo-ng-master/grepwin.sls + - salt-winrepo-ng-master/gvim.sls + - salt-winrepo-ng-master/handbrake.sls + - salt-winrepo-ng-master/heartbeat/ + - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp + - salt-winrepo-ng-master/heartbeat/init.sls + - salt-winrepo-ng-master/heartbeat/install.cmd + - salt-winrepo-ng-master/heartbeat/install.ps1 + - salt-winrepo-ng-master/heartbeat/remove.cmd + - salt-winrepo-ng-master/hipchat.sls + - salt-winrepo-ng-master/hostsfileeditor.sls + - salt-winrepo-ng-master/hwinfo.sls + - salt-winrepo-ng-master/ice.sls + - salt-winrepo-ng-master/icecast.sls + - salt-winrepo-ng-master/icloud.sls + - salt-winrepo-ng-master/iismediaservices.sls + - salt-winrepo-ng-master/influx-capacitor.sls + - salt-winrepo-ng-master/inkscape.sls + - salt-winrepo-ng-master/intellij-community.sls + - salt-winrepo-ng-master/intellij-ultimate.sls + - salt-winrepo-ng-master/internet-evidence-finder.sls + - salt-winrepo-ng-master/irfanview-plugins.sls + - salt-winrepo-ng-master/irfanview.sls + - salt-winrepo-ng-master/isapirewrite-lite.sls + - salt-winrepo-ng-master/itunes.sls + - salt-winrepo-ng-master/jdk8.sls + - salt-winrepo-ng-master/jre.sls + - salt-winrepo-ng-master/jre8.sls + - salt-winrepo-ng-master/jungledisk-server-management.sls + - salt-winrepo-ng-master/jungledisk-server.sls + - salt-winrepo-ng-master/jungledisk-workgroup.sls + - salt-winrepo-ng-master/kdiff3.sls + - salt-winrepo-ng-master/keepass-2x.sls + - salt-winrepo-ng-master/keepass.sls + - salt-winrepo-ng-master/lastpass.sls + - salt-winrepo-ng-master/lazarus.sls + - salt-winrepo-ng-master/libreoffice.sls + - salt-winrepo-ng-master/logparser.sls + - salt-winrepo-ng-master/maas360bootanalyzer.sls + - salt-winrepo-ng-master/malwarebytes.sls + - salt-winrepo-ng-master/mariadb.sls + - salt-winrepo-ng-master/mercurial.sls + - salt-winrepo-ng-master/messageanalyzer.sls + - salt-winrepo-ng-master/metricbeat/ + - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp + - salt-winrepo-ng-master/metricbeat/init.sls + - salt-winrepo-ng-master/metricbeat/install.cmd + - salt-winrepo-ng-master/metricbeat/install.ps1 + - salt-winrepo-ng-master/metricbeat/remove.cmd + - salt-winrepo-ng-master/microsoft-build-tools.sls + - salt-winrepo-ng-master/mikogo.sls + - salt-winrepo-ng-master/miktex-basic.sls + - salt-winrepo-ng-master/mongodb.sls + - salt-winrepo-ng-master/ms-mbsa.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls + - salt-winrepo-ng-master/mucommander.sls + - salt-winrepo-ng-master/mysql-essential.sls + - salt-winrepo-ng-master/mysql-installer-community.sls + - salt-winrepo-ng-master/mysql-workbench.sls + - salt-winrepo-ng-master/never10.sls + - salt-winrepo-ng-master/newrelic-infra.sls + - salt-winrepo-ng-master/nextcloud-client.sls + - salt-winrepo-ng-master/nmap.sls + - salt-winrepo-ng-master/node.js-lts.sls + - salt-winrepo-ng-master/node.js.sls + - salt-winrepo-ng-master/nomacs.sls + - salt-winrepo-ng-master/npp.sls + - salt-winrepo-ng-master/nsclient.sls + - salt-winrepo-ng-master/nsis.sls + - salt-winrepo-ng-master/ntp.sls + - salt-winrepo-ng-master/nunit-console.sls + - salt-winrepo-ng-master/nxlog.sls + - salt-winrepo-ng-master/octopus-tentacle.sls + - salt-winrepo-ng-master/openlp.sls + - salt-winrepo-ng-master/openoffice.sls + - salt-winrepo-ng-master/openvpn.sls + - salt-winrepo-ng-master/osquery.sls + - salt-winrepo-ng-master/ossec-agent.sls + - salt-winrepo-ng-master/owncloud.sls + - salt-winrepo-ng-master/packetbeat/ + - salt-winrepo-ng-master/packetbeat/init.sls + - salt-winrepo-ng-master/packetbeat/install.cmd + - salt-winrepo-ng-master/packetbeat/install.ps1 + - salt-winrepo-ng-master/packetbeat/remove.cmd + - salt-winrepo-ng-master/pandoc.sls + - salt-winrepo-ng-master/parallels-client-15.sls + - salt-winrepo-ng-master/pass4win.sls + - salt-winrepo-ng-master/passware-kit-agent.sls + - salt-winrepo-ng-master/passware-kit-forensic.sls + - salt-winrepo-ng-master/patchmypc-free.sls + - salt-winrepo-ng-master/pdf24creator.sls + - salt-winrepo-ng-master/pdfcreator.sls + - salt-winrepo-ng-master/peazip.sls + - salt-winrepo-ng-master/pgadmin4.sls + - salt-winrepo-ng-master/pgina.sls + - salt-winrepo-ng-master/pidgin.sls + - salt-winrepo-ng-master/postgresql.sls + - salt-winrepo-ng-master/powerbi-desktop.sls + - salt-winrepo-ng-master/powershell-core.sls + - salt-winrepo-ng-master/prometheus-wmi-exporter.sls + - salt-winrepo-ng-master/putty.sls + - salt-winrepo-ng-master/pycharm-pro/ + - salt-winrepo-ng-master/pycharm-pro/init.sls + - salt-winrepo-ng-master/pycharm-pro/silent.config + - salt-winrepo-ng-master/python2_x64.sls + - salt-winrepo-ng-master/python2_x86.sls + - salt-winrepo-ng-master/python3_x64.sls + - salt-winrepo-ng-master/python3_x86.sls + - salt-winrepo-ng-master/qemu.sls + - salt-winrepo-ng-master/queueexplorerpro.sls + - salt-winrepo-ng-master/quicktime.sls + - salt-winrepo-ng-master/rabbitmq.sls + - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls + - salt-winrepo-ng-master/rakudo-star_x64.sls + - salt-winrepo-ng-master/rasclient.sls + - salt-winrepo-ng-master/rdcman.sls + - salt-winrepo-ng-master/rocketchat.sls + - salt-winrepo-ng-master/rubyinstaller_x64.sls + - salt-winrepo-ng-master/rubyinstaller_x86.sls + - salt-winrepo-ng-master/salt-minion-py2.sls + - salt-winrepo-ng-master/salt-minion-py3.sls + - salt-winrepo-ng-master/sandboxie.sls + - salt-winrepo-ng-master/scaleout.sls + - salt-winrepo-ng-master/secunia.psi.sls + - salt-winrepo-ng-master/sensu.sls + - salt-winrepo-ng-master/sharpdevelop.sls + - salt-winrepo-ng-master/skitch.sls + - salt-winrepo-ng-master/skype-msi.sls + - salt-winrepo-ng-master/skype.sls + - salt-winrepo-ng-master/slack-machine-msi.sls + - salt-winrepo-ng-master/slack-user-msi.sls + - salt-winrepo-ng-master/slack.sls + - salt-winrepo-ng-master/smartmontools.sls + - salt-winrepo-ng-master/snmptools.sls + - salt-winrepo-ng-master/soapui.sls + - salt-winrepo-ng-master/software-informer.sls + - salt-winrepo-ng-master/sourcetree.sls + - salt-winrepo-ng-master/spybot-anti-beacon.sls + - salt-winrepo-ng-master/spybot.sls + - salt-winrepo-ng-master/sscserv-free.sls + - salt-winrepo-ng-master/stayawake/ + - salt-winrepo-ng-master/stayawake/init.sls + - salt-winrepo-ng-master/stayawake/install.cmd + - salt-winrepo-ng-master/steam.sls + - salt-winrepo-ng-master/stellarium.sls + - salt-winrepo-ng-master/strawberryperl_x64.sls + - salt-winrepo-ng-master/strawberryperl_x86.sls + - salt-winrepo-ng-master/stunnel.sls + - salt-winrepo-ng-master/subinacl.sls + - salt-winrepo-ng-master/sumatrapdf.sls + - salt-winrepo-ng-master/svn.sls + - salt-winrepo-ng-master/teamviewer.sls + - salt-winrepo-ng-master/teamviewer_host.sls + - salt-winrepo-ng-master/teracopy.sls + - salt-winrepo-ng-master/texmaker.sls + - salt-winrepo-ng-master/texniccenter.sls + - salt-winrepo-ng-master/texstudio.sls + - salt-winrepo-ng-master/texworks.sls + - salt-winrepo-ng-master/thunderbird.sls + - salt-winrepo-ng-master/tightvnc.sls + - salt-winrepo-ng-master/todotxt.net.sls + - salt-winrepo-ng-master/todour.sls + - salt-winrepo-ng-master/tortoise-bzr.sls + - salt-winrepo-ng-master/tortoise-git.sls + - salt-winrepo-ng-master/tortoise-hg.sls + - salt-winrepo-ng-master/tortoise-svn.sls + - salt-winrepo-ng-master/truecrypt.sls + - salt-winrepo-ng-master/ultradefrag.sls + - salt-winrepo-ng-master/urlrewrite.sls + - salt-winrepo-ng-master/usbdlm.sls + - salt-winrepo-ng-master/vagrant.sls + - salt-winrepo-ng-master/vcforpython27.sls + - salt-winrepo-ng-master/vcxsrv.sls + - salt-winrepo-ng-master/verysleepy.sls + - salt-winrepo-ng-master/veyon.sls + - salt-winrepo-ng-master/virtualbox.sls + - salt-winrepo-ng-master/viscosity.sls + - salt-winrepo-ng-master/vivaldi.sls + - salt-winrepo-ng-master/vlc.sls + - salt-winrepo-ng-master/vs-community.sls + - salt-winrepo-ng-master/vs_remotetools_2017.sls + - salt-winrepo-ng-master/vscode.sls + - salt-winrepo-ng-master/vsee.sls + - salt-winrepo-ng-master/wamp-server-3.sls + - salt-winrepo-ng-master/wamp-stack.sls + - salt-winrepo-ng-master/webdeploy.sls + - salt-winrepo-ng-master/webplatforminstaller.sls + - salt-winrepo-ng-master/win-app-manager.sls + - salt-winrepo-ng-master/windirstat.sls + - salt-winrepo-ng-master/winhttpcertcfg.sls + - salt-winrepo-ng-master/winlogbeat/ + - salt-winrepo-ng-master/winlogbeat/init.sls + - salt-winrepo-ng-master/winlogbeat/install.cmd + - salt-winrepo-ng-master/winlogbeat/install.ps1 + - salt-winrepo-ng-master/winlogbeat/remove.cmd + - salt-winrepo-ng-master/winmerge.sls + - salt-winrepo-ng-master/winmtr.sls + - salt-winrepo-ng-master/winpcap.sls + - salt-winrepo-ng-master/winrar.sls + - salt-winrepo-ng-master/winscp.sls + - salt-winrepo-ng-master/wireshark.sls + - salt-winrepo-ng-master/wmi_provider/ + - salt-winrepo-ng-master/wmi_provider/README.md + - salt-winrepo-ng-master/wmi_provider/answer.txt + - salt-winrepo-ng-master/wmi_provider/init.sls + - salt-winrepo-ng-master/wmi_provider/majsetup.reg + - salt-winrepo-ng-master/wscc.sls + - salt-winrepo-ng-master/wufuc.sls + - salt-winrepo-ng-master/xampp.sls + - salt-winrepo-ng-master/xming.sls + - salt-winrepo-ng-master/yubikey-manager.sls + - salt-winrepo-ng-master/yubikey-personalization-tool.sls + - salt-winrepo-ng-master/zabbix-agent.sls + - salt-winrepo-ng-master/zipinstaller/ + - salt-winrepo-ng-master/zipinstaller/init.sls + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic + - salt-winrepo-ng-master/zoom.sls + ---------- + ID: rename-extract + Function: module.run + Result: True + Comment: file.rename: True + Started: 10:57:34.013532 + Duration: 0.0 ms + Changes: + ---------- + file.rename: + True + ---------- + ID: pkg.refresh_db + Function: module.run + Result: True + Comment: check_cmd determined the state succeeded + Started: 10:57:34.013532 + Duration: 13999.593 ms + Changes: + ---------- + pkg.refresh_db: + ---------- + failed: + 0 + success: + 298 + total: + 298 + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 10:57:48.028820 + Duration: 27829.148 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: + ---------- + ID: kdiff3 + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: kdiff3 + Started: 10:58:15.888184 + Duration: 11687.391 ms + Changes: + ---------- + kdiff3: + ---------- + new: + Not Found + old: + ---------- + ID: 7zip + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:58:27.606864 + Duration: 13437.934 ms + Changes: + ---------- + 7zip: + ---------- + new: + 18.06.00.0 + old: + ---------- + ID: windows_environment.refresh.path + Function: module.run + Result: True + Comment: windows_environment.refresh: Success + Started: 10:58:41.060426 + Duration: 62.336 ms + Changes: + ---------- + windows_environment.refresh: + ---------- + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd + ---------- + ID: chocolatey.bootstrap + Function: module.run + Result: True + Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. + + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + + Downloading 7-Zip commandline tool prior to extraction. + + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + + Installing chocolatey on this machine + + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + + We are setting up the Chocolatey package repository. + + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + + + Creating Chocolatey folders if they do not already exist. + + + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + + You can call choco from anywhere, command line or powershell by typing choco. + + Run choco /? for a list of functions. + + You may need to shut down and restart powershell and/or consoles + + first prior to using choco. + + Ensuring chocolatey commands are on the path + + Ensuring chocolatey.nupkg is in the lib folder + Started: 10:58:41.122762 + Duration: 31703.159 ms + Changes: + ---------- + chocolatey.bootstrap: + Getting latest version of the Chocolatey package for download. + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + Downloading 7-Zip commandline tool prior to extraction. + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + Installing chocolatey on this machine + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + We are setting up the Chocolatey package repository. + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + Creating Chocolatey folders if they do not already exist. + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + You can call choco from anywhere, command line or powershell by typing choco. + Run choco /? for a list of functions. + You may need to shut down and restart powershell and/or consoles + first prior to using choco. + Ensuring chocolatey commands are on the path + Ensuring chocolatey.nupkg is in the lib folder + ---------- + ID: windows.system.packages.chocolatey.windirstat + Function: chocolatey.installed + Name: windirstat + Result: True + Comment: + Started: 10:59:12.825921 + Duration: 13015.722 ms + Changes: + ---------- + windirstat: + ---------- + new: + - 1.1.2.20161210 + old: + ---------- + ID: windows.system.packages.chocolatey.notepadplusplus + Function: chocolatey.installed + Name: notepadplusplus + Result: True + Comment: + Started: 10:59:25.841643 + Duration: 13343.762 ms + Changes: + ---------- + notepadplusplus: + ---------- + new: + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 + old: + ---------- + ID: windows.system.desktop.optional_features.installed.TelnetClient + Function: dism.feature_installed + Name: TelnetClient + Result: True + Comment: Installed TelnetClient + Started: 10:59:39.185405 + Duration: 7531.464 ms + Changes: + ---------- + feature: + ---------- + new: + TelnetClient + pid: + 6596 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.module.system.reboot + Function: module.run + Result: True + Comment: system.reboot: True + Started: 10:59:46.716869 + Duration: 327.538 ms + Changes: + ---------- + system.reboot: + True + + Summary for local + ------------- + Succeeded: 25 (changed=24) + Failed: 0 + ------------- + Total states run: 25 + Total run time: 163.235 s + Downloading files from + Finished converging (4m18.57s). +-----> Setting up ... + Finished setting up (0m0.00s). +-----> Verifying ... + Loaded default + [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). +`[WSMAN ERROR CODE: 995]: The I/O operation has been aborted because of either a thread exit or an application request. `, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 +`execution expired`, target may be rebooting after highstate. Remaining retries: 18 +`execution expired`, target may be rebooting after highstate. Remaining retries: 17 +INFO: Got pillar from the target minion using WinRM. + +Profile: SaltStack Windows Formula (default) +Version: (not specified) +Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 + + ✔ Operating System: + ✔ windows_10_enterprise_evaluation should include "windows" + ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled + ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed + ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey + ✔ Chocolatey package notepadplusplus should be installed + ✔ Chocolatey package windirstat should be installed + ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" + ↺ Windows Features: salt.formula.windows.system.server.features + ↺ Skipped control due to only_if condition: only supported on servers + ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap + ✔ Command: `choco` should exist + ✔ Windows Timezone: salt.states.timezone.system + ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set + ✔ Windows Optional Features: salt.states.win_dism.feature_installed + ✔ Windows Optional Feature: `TelnetClient` should be installed + ✔ Windows Computer Hostname: salt.states.win_system.hostname + ✔ System Information hostname should cmp == "saltstack1" + ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" + ✔ Windows Computer Description: salt.states.win_system.computer_desc + ✔ Powershell stdout should match "Saltstack Computer Description" + ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed + ✔ System Package Git should be installed + ✔ System Package 7-Zip should be installed + ✔ System Package 7-Zip version should cmp == "18.06.00.0" + ✔ System Package KDiff3 should be installed + + +Profile Summary: 9 successful controls, 0 control failures, 1 control skipped +Test Summary: 19 successful, 0 failures, 1 skipped + Finished verifying (0m54.92s). + Finished testing (6m14.98s). +-----> Destroying ... + ==> default: Forcing shutdown of VM... + ==> default: Destroying VM and associated drives... + Vagrant instance destroyed. + Finished destroying (0m13.44s). +-----> Test Kitchen is finished. (6m40.31s) +KITCHEN TEST EXIT CODE +0 diff --git a/test/results/py3-201923-windows-10-1709.salt.log b/test/results/py3-201923-windows-10-1709.salt.log new file mode 100755 index 0000000..9249781 --- /dev/null +++ b/test/results/py3-201923-windows-10-1709.salt.log @@ -0,0 +1,30200 @@ +2020-03-06 10:56:53,419 [salt.loader :747 ][DEBUG ][1464] Grains refresh requested. Refreshing grains. +2020-03-06 10:56:53,419 [salt.config :2190][DEBUG ][1464] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:56:53,419 [salt.config :2334][DEBUG ][1464] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:56:53,435 [salt.config :2190][DEBUG ][1464] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:56:57,826 [salt.pillar :57 ][DEBUG ][1464] Determining pillar cache +2020-03-06 10:56:57,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:56:57,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:56:57,903 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:56:57,903 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:56:57,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015617609024047852 +2020-03-06 10:56:57,919 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:56:57,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:56:57,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:56:57,951 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded confirm_top.confirm_top +2020-03-06 10:56:57,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded compound_match.match +2020-03-06 10:56:57,966 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][1464] compound_match: vagrant-10 ? * +2020-03-06 10:56:57,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded glob_match.match +2020-03-06 10:56:57,981 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][1464] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:56:57,981 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:56:57,981 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:56:57,981 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:56:57,981 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 10:56:57,997 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 10:56:57,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015899181365966797 +2020-03-06 10:56:58,029 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:56:58,029 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:56:58,184 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded state.highstate +2020-03-06 10:56:58,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded direct_call.execute +2020-03-06 10:56:58,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded grains.get +2020-03-06 10:56:58,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded saltutil.is_running +2020-03-06 10:56:58,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded config.get +2020-03-06 10:56:58,544 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: test, ret: _|- +2020-03-06 10:56:58,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:56:59,575 [git.cmd :722 ][DEBUG ][1464] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:56:59,638 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:56:59,638 [salt.fileserver :502 ][DEBUG ][1464] Updating roots fileserver cache +2020-03-06 10:56:59,701 [salt.state :736 ][DEBUG ][1464] Gathering pillar data for state run +2020-03-06 10:56:59,701 [salt.state :750 ][DEBUG ][1464] Finished gathering pillar data for state run +2020-03-06 10:56:59,701 [salt.state :966 ][INFO ][1464] Loading fresh modules for state activity +2020-03-06 10:56:59,731 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:56:59,747 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:56:59,747 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:56:59,747 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:56:59,747 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:56:59,763 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:56:59,779 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:56:59,779 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:56:59,779 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:56:59,809 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:56:59,809 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:56:59,809 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.030770301818847656 +2020-03-06 10:56:59,826 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:56:59,826 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:56:59,826 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:56:59,826 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded confirm_top.confirm_top +2020-03-06 10:56:59,826 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded compound_match.match +2020-03-06 10:56:59,826 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][1464] compound_match: vagrant-10 ? * +2020-03-06 10:56:59,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded glob_match.match +2020-03-06 10:56:59,841 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][1464] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:56:59,841 [salt.fileclient :1368][DEBUG ][1464] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:56:59,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded saltutil.sync_all +2020-03-06 10:56:59,841 [salt.loaded.int.module.saltutil:968 ][DEBUG ][1464] Syncing all +2020-03-06 10:56:59,841 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:56:59,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:56:59,872 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:56:59,872 [salt.utils.extmods:90 ][INFO ][1464] Syncing clouds for environment 'base' +2020-03-06 10:56:59,872 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_clouds, for base) +2020-03-06 10:56:59,872 [salt.fileclient :234 ][INFO ][1464] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:56:59,888 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:56:59,888 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:56:59,888 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:56:59,904 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:56:59,920 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:56:59,920 [salt.utils.extmods:90 ][INFO ][1464] Syncing beacons for environment 'base' +2020-03-06 10:56:59,920 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_beacons, for base) +2020-03-06 10:56:59,920 [salt.fileclient :234 ][INFO ][1464] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:56:59,920 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:56:59,920 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:56:59,920 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:56:59,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:56:59,950 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:56:59,950 [salt.utils.extmods:90 ][INFO ][1464] Syncing modules for environment 'base' +2020-03-06 10:56:59,950 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_modules, for base) +2020-03-06 10:56:59,950 [salt.fileclient :234 ][INFO ][1464] Caching directory '_modules/' for environment 'base' +2020-03-06 10:56:59,950 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:56:59,966 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:56:59,966 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:56:59,966 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:56:59,966 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:56:59,982 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:56:59,982 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:56:59,982 [salt.utils.extmods:119 ][INFO ][1464] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:56:59,982 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:57:00,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,013 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,013 [salt.utils.extmods:90 ][INFO ][1464] Syncing states for environment 'base' +2020-03-06 10:57:00,028 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_states, for base) +2020-03-06 10:57:00,028 [salt.fileclient :234 ][INFO ][1464] Caching directory '_states/' for environment 'base' +2020-03-06 10:57:00,028 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,028 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:57:00,028 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:57:00,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,060 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,060 [salt.utils.extmods:90 ][INFO ][1464] Syncing sdb for environment 'base' +2020-03-06 10:57:00,060 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_sdb, for base) +2020-03-06 10:57:00,060 [salt.fileclient :234 ][INFO ][1464] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:57:00,060 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,060 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:57:00,075 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:57:00,092 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,092 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,106 [salt.utils.extmods:90 ][INFO ][1464] Syncing grains for environment 'base' +2020-03-06 10:57:00,106 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_grains, for base) +2020-03-06 10:57:00,106 [salt.fileclient :234 ][INFO ][1464] Caching directory '_grains/' for environment 'base' +2020-03-06 10:57:00,106 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,106 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:57:00,106 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:57:00,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,138 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,138 [salt.utils.extmods:90 ][INFO ][1464] Syncing renderers for environment 'base' +2020-03-06 10:57:00,138 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_renderers, for base) +2020-03-06 10:57:00,138 [salt.fileclient :234 ][INFO ][1464] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:57:00,138 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,138 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:57:00,154 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:57:00,170 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,184 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,184 [salt.utils.extmods:90 ][INFO ][1464] Syncing returners for environment 'base' +2020-03-06 10:57:00,184 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_returners, for base) +2020-03-06 10:57:00,184 [salt.fileclient :234 ][INFO ][1464] Caching directory '_returners/' for environment 'base' +2020-03-06 10:57:00,184 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,184 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:57:00,184 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:57:00,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,216 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,216 [salt.utils.extmods:90 ][INFO ][1464] Syncing output for environment 'base' +2020-03-06 10:57:00,216 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_output, for base) +2020-03-06 10:57:00,216 [salt.fileclient :234 ][INFO ][1464] Caching directory '_output/' for environment 'base' +2020-03-06 10:57:00,231 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,231 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:57:00,231 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:57:00,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,263 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,263 [salt.utils.extmods:90 ][INFO ][1464] Syncing utils for environment 'base' +2020-03-06 10:57:00,263 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_utils, for base) +2020-03-06 10:57:00,263 [salt.fileclient :234 ][INFO ][1464] Caching directory '_utils/' for environment 'base' +2020-03-06 10:57:00,263 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,279 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:57:00,279 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:57:00,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,310 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,310 [salt.utils.extmods:90 ][INFO ][1464] Syncing log_handlers for environment 'base' +2020-03-06 10:57:00,310 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:57:00,310 [salt.fileclient :234 ][INFO ][1464] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:57:00,310 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,310 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:57:00,310 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:57:00,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,341 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,356 [salt.utils.extmods:90 ][INFO ][1464] Syncing proxy for environment 'base' +2020-03-06 10:57:00,356 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_proxy, for base) +2020-03-06 10:57:00,356 [salt.fileclient :234 ][INFO ][1464] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:57:00,356 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,356 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:57:00,356 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:57:00,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,388 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,388 [salt.utils.extmods:90 ][INFO ][1464] Syncing engines for environment 'base' +2020-03-06 10:57:00,388 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_engines, for base) +2020-03-06 10:57:00,388 [salt.fileclient :234 ][INFO ][1464] Caching directory '_engines/' for environment 'base' +2020-03-06 10:57:00,388 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,388 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:57:00,404 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:57:00,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,419 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,436 [salt.utils.extmods:90 ][INFO ][1464] Syncing thorium for environment 'base' +2020-03-06 10:57:00,436 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_thorium, for base) +2020-03-06 10:57:00,436 [salt.fileclient :234 ][INFO ][1464] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:57:00,436 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,436 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:57:00,436 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:57:00,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,466 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,466 [salt.utils.extmods:90 ][INFO ][1464] Syncing serializers for environment 'base' +2020-03-06 10:57:00,466 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_serializers, for base) +2020-03-06 10:57:00,466 [salt.fileclient :234 ][INFO ][1464] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:57:00,466 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,514 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:57:00,514 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:57:00,528 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,544 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,544 [salt.utils.extmods:90 ][INFO ][1464] Syncing matchers for environment 'base' +2020-03-06 10:57:00,560 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_matchers, for base) +2020-03-06 10:57:00,560 [salt.fileclient :234 ][INFO ][1464] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:57:00,560 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,560 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:57:00,560 [salt.utils.extmods:79 ][INFO ][1464] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:57:00,592 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:00,606 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:00,606 [salt.utils.extmods:90 ][INFO ][1464] Syncing pillar for environment 'base' +2020-03-06 10:57:00,606 [salt.utils.extmods:94 ][INFO ][1464] Loading cache from salt://_pillar, for base) +2020-03-06 10:57:00,606 [salt.fileclient :234 ][INFO ][1464] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:57:00,606 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:00,606 [salt.utils.extmods:109 ][DEBUG ][1464] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:57:00,606 [salt.state :1000][DEBUG ][1464] Refreshing modules... +2020-03-06 10:57:00,622 [salt.state :966 ][INFO ][1464] Loading fresh modules for state activity +2020-03-06 10:57:00,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:00,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:00,669 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:57:00,669 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:57:00,685 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:57:00,685 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:57:00,685 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,685 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:57:00,685 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:57:00,701 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:00,716 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:00,716 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:00,716 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:57:00,716 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,716 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:57:00,747 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:00,747 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:00,747 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:57:00,747 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,763 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:57:00,763 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:00,763 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:00,779 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:00,779 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,779 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:57:00,795 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:00,795 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:00,795 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:00,795 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,810 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:57:00,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:00,810 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:00,810 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:57:00,810 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,826 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:57:00,826 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:00,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:00,841 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:00,841 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,841 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:57:00,857 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:00,857 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:00,857 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:00,857 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,857 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:57:00,873 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded config.get +2020-03-06 10:57:00,873 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded grains.filter_by +2020-03-06 10:57:00,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.18685364723205566 +2020-03-06 10:57:00,888 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .states + - .modules + - .system +2020-03-06 10:57:00,888 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.states', '.modules', '.system'])]) +2020-03-06 10:57:00,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:00,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:57:00,903 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:57:00,903 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:57:00,903 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,903 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:57:00,903 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:57:00,919 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:00,919 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:57:00,919 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:57:00,919 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:57:00,919 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:00,950 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:57:01,060 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,075 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,107 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,153 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,153 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.23427319526672363 +2020-03-06 10:57:01,153 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.state.system.computer_desc.description: + system.computer_desc: + - name: Saltstack Computer Description + - require: + - windows.state.system.hostname.saltstack1 +windows.state.system.hostname.saltstack1: + system.hostname: + - name: saltstack1 +windows.state.timezone.system.America/New_York: + timezone.system: + - name: America/New_York + - utc: False + + + +2020-03-06 10:57:01,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) +2020-03-06 10:57:01,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,185 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:57:01,185 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:57:01,185 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:57:01,185 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,216 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:57:01,216 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:57:01,295 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,341 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:57:01,357 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:57:01,420 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,420 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,450 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,450 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,466 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,466 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,482 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,482 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,498 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,498 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,529 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,529 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,545 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,545 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,575 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.2807788848876953 +2020-03-06 10:57:01,575 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.module.environ.items: + module.run: + - environ.items: +windows.module.system.reboot: + module.run: + - system.reboot: + - timeout: 5 + - in_seconds: True + - only_on_pending_reboot: True + - wait_for_reboot: False + - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + - order: last +windows.module.user.current: + module.run: + - user.current: + - sam: True +windows.module.status.uptime: + module.run: + - status.uptime: + - human_readable: True + - require: + - windows.module.user.current + + +2020-03-06 10:57:01,575 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) +2020-03-06 10:57:01,575 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,575 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:57:01,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:57:01,591 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:57:01,591 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:57:01,591 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,591 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:57:01,591 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:57:01,591 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,607 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,607 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,622 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,622 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,654 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,654 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,654 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,654 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,670 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.0784001350402832 +2020-03-06 10:57:01,670 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +# sls: windows.system windows system +# slspath: windows/system windows system +# sls: os_windows.desktop.features os_windows features +# slspath: os_windows/desktop os_windows desktop +include: + # - .settings + # + # - .dsc + # + - .packages + - .server + - .desktop + + +2020-03-06 10:57:01,670 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.packages', '.server', '.desktop'])]) +2020-03-06 10:57:01,670 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,670 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:57:01,684 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:57:01,684 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:57:01,684 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:57:01,684 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,684 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:57:01,700 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:57:01,700 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,700 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:01,700 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .providers + - .appx + - .powershell + - .saltstack + - .chocolatey +2020-03-06 10:57:01,716 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) +2020-03-06 10:57:01,716 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,716 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:57:01,716 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:57:01,716 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:57:01,731 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:57:01,731 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,731 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:57:01,747 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:57:01,747 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:01,747 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .remove-provisioned-apps + +2020-03-06 10:57:01,747 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.remove-provisioned-apps'])]) +2020-03-06 10:57:01,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,763 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:57:01,763 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:57:01,778 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:57:01,778 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,778 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:57:01,778 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:57:01,778 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.01569986343383789 +2020-03-06 10:57:01,794 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .removed + +2020-03-06 10:57:01,794 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.removed'])]) +2020-03-06 10:57:01,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:57:01,810 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:57:01,810 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:57:01,810 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,825 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:57:01,825 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:57:01,825 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:01,872 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,872 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:01,872 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,872 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:01,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:01,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:01,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:01,903 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,903 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:01,903 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.07811141014099121 +2020-03-06 10:57:01,903 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + + + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection: + cmd.run: + - name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet: + cmd.run: + - name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal: + cmd.run: + - name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}" + + + + + + + +2020-03-06 10:57:01,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) +2020-03-06 10:57:01,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,919 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:57:01,919 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:57:01,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:57:01,935 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:57:01,935 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,935 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:57:01,935 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:57:01,935 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.015687942504882812 +2020-03-06 10:57:01,950 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .modules + - .framework + +2020-03-06 10:57:01,950 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.framework'])]) +2020-03-06 10:57:01,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,950 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:57:01,966 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:57:01,966 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:57:01,966 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:57:01,966 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:01,982 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:57:01,982 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:57:01,982 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:01,982 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:01,982 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .v4_5 + +2020-03-06 10:57:01,982 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.v4_5'])]) +2020-03-06 10:57:01,982 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:01,982 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:57:01,998 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:57:01,998 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:57:01,998 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:57:01,998 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,013 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:57:02,013 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:57:02,013 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:02,013 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .tls1_2 + +2020-03-06 10:57:02,013 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.tls1_2'])]) +2020-03-06 10:57:02,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,028 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:57:02,028 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:57:02,044 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:57:02,044 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,044 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:57:02,044 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:57:02,044 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,060 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,060 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,076 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,076 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,076 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,091 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,091 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,091 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,106 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,106 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,106 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,106 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,123 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.07858681678771973 +2020-03-06 10:57:02,123 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +# https://docs.microsoft.com/en-us/security/solving-tls1-problem +# https://blog.pauby.com/post/force-powershell-to-use-tls-1-2/ +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:64 +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:32 +# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - use_32bit_registry: true + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} +2020-03-06 10:57:02,123 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) +2020-03-06 10:57:02,123 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,123 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:57:02,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:57:02,154 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:57:02,154 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:57:02,154 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,154 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:57:02,154 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:57:02,169 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:02,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:57:02,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:57:02,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,185 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:57:02,185 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:57:02,200 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:57:02,200 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,200 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:57:02,200 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:57:02,200 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,216 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:57:02,216 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:57:02,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:57:02,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,232 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:57:02,232 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,232 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,263 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,263 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,263 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,310 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:57:02,310 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:57:02,326 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:57:02,326 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,326 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:57:02,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pkg.version +2020-03-06 10:57:02,544 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][1464] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:57:02,560 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][1464] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:57:02,560 [salt.loaded.int.module.win_pkg:935 ][INFO ][1464] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:57:02,560 [salt.loaded.int.module.win_pkg:954 ][INFO ][1464] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:57:02,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cp.cache_dir +2020-03-06 10:57:02,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded roots.envs +2020-03-06 10:57:02,607 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:57:02,607 [salt.fileclient :234 ][INFO ][1464] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:57:02,622 [salt.fileserver :159 ][DEBUG ][1464] Returning file list from cache: age=3 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:57:02,639 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded reg.list_keys +2020-03-06 10:57:02,639 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,653 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,653 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,653 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,653 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,653 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.4689352512359619 +2020-03-06 10:57:02,669 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +include: + - .windows_software_repository +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db +7zip: + pkg.installed: + - version: 18.06.00.0 + - refresh_minion_env_path: False + - require: + - pkg.refresh_db +windows_environment.refresh.path: + module.run: + - windows_environment.refresh: + - onchanges: + + - pkg: git +2020-03-06 10:57:02,685 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:57:02,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,685 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:57:02,685 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:57:02,701 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:57:02,701 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,701 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:57:02,701 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:57:02,701 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,716 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.093748) +2020-03-06 10:57:02,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,732 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,748 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,748 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:02,748 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.046996116638183594 +2020-03-06 10:57:02,748 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +manually.update_git_repo-ng: + archive.extracted: + - name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + - source: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip + - skip_verify: True + - if_missing: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + +rename-extract: + module.run: + - file.rename: + - src: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng-master + - dst: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + - onchanges: + - manually.update_git_repo-ng + - onchanges_in: + - pkg.refresh_db + +pkg.refresh_db: + module.run: + - pkg.refresh_db: + - failhard: False + - check_cmd: + - dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + + - retry: + attempts: 10 + until: True + interval: 5 +2020-03-06 10:57:02,748 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) +2020-03-06 10:57:02,748 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,748 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:57:02,748 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:57:02,763 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:57:02,763 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:57:02,763 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,763 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:57:02,763 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:57:02,779 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,779 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:02,779 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:57:02,779 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:57:02,779 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,794 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:57:02,794 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:57:02,794 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:57:02,794 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,794 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:57:02,794 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:57:02,810 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,810 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,826 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,826 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,842 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,842 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,842 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,842 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,856 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,856 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,856 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,856 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,856 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,856 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06218385696411133 +2020-03-06 10:57:02,872 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .bootstrap +windows.system.packages.chocolatey.windirstat: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: windirstat + - version: 1.1.2.20161210 + +windows.system.packages.chocolatey.notepadplusplus: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: notepadplusplus + +2020-03-06 10:57:02,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) +2020-03-06 10:57:02,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:57:02,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:57:02,888 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:57:02,888 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,903 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:57:02,903 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:57:02,903 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,903 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,919 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:02,935 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:02,935 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:02,935 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:02,935 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,951 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:02,951 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,951 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:02,951 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,951 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:02,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.06283807754516602 +2020-03-06 10:57:02,966 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +chocolatey.bootstrap: + module.run: + - chocolatey.bootstrap: + - unless: "where.exe chocolatey" + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + +2020-03-06 10:57:02,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) +2020-03-06 10:57:02,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:02,966 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:57:02,982 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:57:02,982 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:57:02,982 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:57:02,982 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:02,997 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:57:02,997 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:57:02,997 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:02,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:02,997 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .features + +2020-03-06 10:57:02,997 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.features'])]) +2020-03-06 10:57:02,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:03,013 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:57:03,013 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:57:03,013 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:57:03,013 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:57:03,013 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,029 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:57:03,029 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:57:03,029 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:03,029 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:03,029 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:57:03,029 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:57:03,029 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:03,045 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:57:03,060 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:57:03,060 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:57:03,060 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,060 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:57:03,060 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:57:03,076 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:03,076 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:57:03,076 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:57:03,076 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:57:03,091 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,091 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:57:03,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:03,106 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:03,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:03,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:03,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:03,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:03,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:03,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:03,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:03,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:03,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:03,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:03,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:03,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:03,154 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.0779104232788086 +2020-03-06 10:57:03,154 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +2020-03-06 10:57:03,154 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +{} +2020-03-06 10:57:03,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.01517486572265625 +2020-03-06 10:57:03,169 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:57:03,169 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:57:03,169 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:57:03,169 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:57:03,185 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,185 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:57:03,185 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:57:03,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:03,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:03,185 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .packages + - .optional_features + +2020-03-06 10:57:03,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.optional_features'])]) +2020-03-06 10:57:03,201 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.015902996063232422 +2020-03-06 10:57:03,201 [salt.fileclient :1072][DEBUG ][1464] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:57:03,201 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:57:03,201 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:57:03,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:57:03,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,216 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:57:03,216 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:57:03,216 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:03,232 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.015720367431640625 +2020-03-06 10:57:03,232 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .feature_installed + +2020-03-06 10:57:03,232 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('include', ['.feature_installed'])]) +2020-03-06 10:57:03,248 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.015643596649169922 +2020-03-06 10:57:03,248 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:57:03,248 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:57:03,248 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:57:03,263 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,263 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:57:03,263 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:57:03,263 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:03,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:57:03,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:57:03,278 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:57:03,278 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:57:03,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:03,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:57:03,325 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:03,325 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:57:03,325 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:03,325 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:57:03,325 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:03,325 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:57:03,341 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:03,341 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:57:03,341 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:03,341 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:57:03,341 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:03,341 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:57:03,373 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:57:03,373 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:57:03,373 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:57:03,373 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:03,388 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:57:03,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.12471914291381836 +2020-03-06 10:57:03,388 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.system.desktop.optional_features.installed.TelnetClient: + dism.feature_installed: + - name: TelnetClient + - onlyif: > + powershell -command "if ((Get-WindowsOptionalFeature -online | + Where-Object {($_.FeatureName -eq 'TelnetClient') + -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" + +2020-03-06 10:57:03,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) +2020-03-06 10:57:03,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:03,404 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cmd.run +2020-03-06 10:57:03,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded system.get_computer_desc +2020-03-06 10:57:03,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded system.computer_desc +2020-03-06 10:57:03,576 [salt.state :1819][INFO ][1464] Running state [saltstack1] at time 10:57:03.576229 +2020-03-06 10:57:03,591 [salt.state :1852][INFO ][1464] Executing state system.hostname for [saltstack1] +2020-03-06 10:57:03,591 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:57:03,622 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: vagrant-10 +2020-03-06 10:57:03,622 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1464] output: vagrant-10 +2020-03-06 10:57:03,622 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:57:03,638 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: vagrant-10 +2020-03-06 10:57:03,638 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1464] output: vagrant-10 +2020-03-06 10:57:03,638 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:57:03,747 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:57:03,747 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1464] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:57:03,747 [salt.state :320 ][INFO ][1464] {'hostname': 'saltstack1'} +2020-03-06 10:57:03,747 [salt.state :1997][INFO ][1464] Completed state [saltstack1] at time 10:57:03.747997 (duration_in_ms=171.768) +2020-03-06 10:57:03,747 [salt.state :1819][INFO ][1464] Running state [Saltstack Computer Description] at time 10:57:03.747997 +2020-03-06 10:57:03,747 [salt.state :1852][INFO ][1464] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:57:06,919 [salt.state :320 ][INFO ][1464] {'old': '', 'new': 'Saltstack Computer Description'} +2020-03-06 10:57:06,919 [salt.state :1997][INFO ][1464] Completed state [Saltstack Computer Description] at time 10:57:06.919734 (duration_in_ms=3171.737) +2020-03-06 10:57:06,981 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded platform.is_windows +2020-03-06 10:57:06,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded path.which +2020-03-06 10:57:06,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded timezone.get_zone +2020-03-06 10:57:06,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded timezone.system +2020-03-06 10:57:06,997 [salt.state :1819][INFO ][1464] Running state [America/New_York] at time 10:57:06.997403 +2020-03-06 10:57:06,997 [salt.state :1852][INFO ][1464] Executing state timezone.system for [America/New_York] +2020-03-06 10:57:06,997 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:57:07,044 [salt.state :320 ][INFO ][1464] {'timezone': 'America/New_York'} +2020-03-06 10:57:07,044 [salt.state :1997][INFO ][1464] Completed state [America/New_York] at time 10:57:07.044312 (duration_in_ms=46.909) +2020-03-06 10:57:07,059 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded module.run +2020-03-06 10:57:07,059 [salt.state :1819][INFO ][1464] Running state [windows.module.environ.items] at time 10:57:07.059960 +2020-03-06 10:57:07,075 [salt.state :1852][INFO ][1464] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:57:07,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded environ.items +2020-03-06 10:57:07,091 [salt.state :320 ][INFO ][1464] {'environ.items': {'PROMPT': '$P$G', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMDATA': 'C:\\ProgramData', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'NUMBER_OF_PROCESSORS': '2', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'LOGONSERVER': '\\\\VAGRANT-10', 'USERDOMAIN': 'VAGRANT-10', 'WINDIR': 'C:\\Windows', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'HOMEDRIVE': 'C:', 'USERNAME': 'vagrant', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'SYSTEMDRIVE': 'C:', 'HOMEPATH': '\\Users\\vagrant', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'SYSTEMROOT': 'C:\\Windows', 'USERPROFILE': 'C:\\Users\\vagrant', 'PROGRAMFILES': 'C:\\Program Files', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'SALTDIR': 'C:\\salt', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMPUTERNAME': 'VAGRANT-10', 'PROCESSOR_LEVEL': '6', 'OS': 'Windows_NT', 'PROGRAMW6432': 'C:\\Program Files', 'PUBLIC': 'C:\\Users\\Public', 'PROCESSOR_REVISION': '8e0c'}} +2020-03-06 10:57:07,091 [salt.state :1997][INFO ][1464] Completed state [windows.module.environ.items] at time 10:57:07.091639 (duration_in_ms=31.679) +2020-03-06 10:57:07,091 [salt.state :1819][INFO ][1464] Running state [windows.module.user.current] at time 10:57:07.091639 +2020-03-06 10:57:07,091 [salt.state :1852][INFO ][1464] Executing state module.run for [windows.module.user.current] +2020-03-06 10:57:07,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded user.current +2020-03-06 10:57:07,154 [salt.state :320 ][INFO ][1464] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:57:07,154 [salt.state :1997][INFO ][1464] Completed state [windows.module.user.current] at time 10:57:07.154102 (duration_in_ms=62.463) +2020-03-06 10:57:07,154 [salt.state :1819][INFO ][1464] Running state [windows.module.status.uptime] at time 10:57:07.154102 +2020-03-06 10:57:07,154 [salt.state :1852][INFO ][1464] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:57:07,231 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded status.uptime +2020-03-06 10:57:07,231 [salt.state :320 ][INFO ][1464] {'status.uptime': '0:02:18.231843'} +2020-03-06 10:57:07,231 [salt.state :1997][INFO ][1464] Completed state [windows.module.status.uptime] at time 10:57:07.231843 (duration_in_ms=77.741) +2020-03-06 10:57:07,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cmd.run +2020-03-06 10:57:07,263 [salt.state :1819][INFO ][1464] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:57:07.263106 +2020-03-06 10:57:07,263 [salt.state :1852][INFO ][1464] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] +2020-03-06 10:57:07,279 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:09,310 [salt.loaded.int.states.cmd:343 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:57:09,310 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:10,809 [salt.state :320 ][INFO ][1464] {'pid': 4024, 'stderr': '', 'retcode': 0, 'stdout': ''} +2020-03-06 10:57:10,809 [salt.state :1997][INFO ][1464] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:57:10.809998 (duration_in_ms=3546.892) +2020-03-06 10:57:10,809 [salt.state :1819][INFO ][1464] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:57:10.809998 +2020-03-06 10:57:10,809 [salt.state :1852][INFO ][1464] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] +2020-03-06 10:57:10,825 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:11,325 [salt.loaded.int.states.cmd:343 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:57:11,341 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:12,107 [salt.state :320 ][INFO ][1464] {'pid': 3772, 'stderr': '', 'retcode': 0, 'stdout': ''} +2020-03-06 10:57:12,107 [salt.state :1997][INFO ][1464] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:57:12.107431 (duration_in_ms=1297.433) +2020-03-06 10:57:12,107 [salt.state :1819][INFO ][1464] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:57:12.107431 +2020-03-06 10:57:12,107 [salt.state :1852][INFO ][1464] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] +2020-03-06 10:57:12,107 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:12,623 [salt.loaded.int.states.cmd:343 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:57:12,623 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:13,513 [salt.state :320 ][INFO ][1464] {'pid': 4796, 'stderr': '', 'retcode': 0, 'stdout': ''} +2020-03-06 10:57:13,513 [salt.state :1997][INFO ][1464] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:57:13.513252 (duration_in_ms=1405.821) +2020-03-06 10:57:13,513 [salt.state :1819][INFO ][1464] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:57:13.513252 +2020-03-06 10:57:13,513 [salt.state :1852][INFO ][1464] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] +2020-03-06 10:57:13,513 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:14,075 [salt.loaded.int.states.cmd:343 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:57:14,075 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:14,919 [salt.state :320 ][INFO ][1464] {'pid': 4596, 'stderr': '', 'retcode': 0, 'stdout': ''} +2020-03-06 10:57:14,919 [salt.state :1997][INFO ][1464] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:57:14.919398 (duration_in_ms=1406.146) +2020-03-06 10:57:14,919 [salt.state :1819][INFO ][1464] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:57:14.919398 +2020-03-06 10:57:14,919 [salt.state :1852][INFO ][1464] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] +2020-03-06 10:57:14,935 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:15,435 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][1464] retcode: 1 +2020-03-06 10:57:15,435 [salt.loaded.int.states.cmd:343 ][DEBUG ][1464] Last command return code: 1 +2020-03-06 10:57:15,451 [salt.state :320 ][INFO ][1464] onlyif condition is false +2020-03-06 10:57:15,451 [salt.state :1997][INFO ][1464] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:57:15.451247 (duration_in_ms=531.849) +2020-03-06 10:57:15,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded reg.present +2020-03-06 10:57:15,466 [salt.state :1819][INFO ][1464] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:57:15.466901 +2020-03-06 10:57:15,466 [salt.state :1852][INFO ][1464] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:57:17,716 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt.secret_key, ret: _|- +2020-03-06 10:57:17,716 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt:secret_key, ret: _|- +2020-03-06 10:57:19,341 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet.api_key, ret: _|- +2020-03-06 10:57:19,341 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet:api_key, ret: _|- +2020-03-06 10:57:20,310 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops.api_key, ret: _|- +2020-03-06 10:57:20,310 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops:api_key, ret: _|- +2020-03-06 10:57:25,778 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:57:25,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded apache.a2enconf +2020-03-06 10:57:25,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded apache.a2enmod +2020-03-06 10:57:25,826 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded apache.a2ensite +2020-03-06 10:57:25,888 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:57:25,903 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:57:25,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:57:25,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:57:26,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:57:26,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:57:26,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:57:26,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:57:26,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_asg.exists +2020-03-06 10:57:26,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cfn.exists +2020-03-06 10:57:26,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:57:26,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:57:26,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:57:26,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:57:26,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:57:26,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:57:26,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_dynamodb.exists +2020-03-06 10:57:26,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_ec2.get_key +2020-03-06 10:57:26,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elasticache.exists +2020-03-06 10:57:26,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:57:26,325 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elb.exists +2020-03-06 10:57:26,357 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:57:26,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_iam.get_user +2020-03-06 10:57:26,403 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_iam.role_exists +2020-03-06 10:57:26,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_iot.policy_exists +2020-03-06 10:57:26,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_kinesis.exists +2020-03-06 10:57:26,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_kms.describe_key +2020-03-06 10:57:26,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_lambda.function_exists +2020-03-06 10:57:26,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_asg.exists +2020-03-06 10:57:26,514 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_rds.exists +2020-03-06 10:57:26,528 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_route53.get_record +2020-03-06 10:57:26,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:57:26,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:57:26,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_secgroup.exists +2020-03-06 10:57:26,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_sns.exists +2020-03-06 10:57:26,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_sqs.exists +2020-03-06 10:57:26,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_vpc.exists +2020-03-06 10:57:26,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded bower.list +2020-03-06 10:57:26,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded chef.client +2020-03-06 10:57:26,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cimc.get_system_info +2020-03-06 10:57:26,747 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cisconso.set_data_value +2020-03-06 10:57:26,779 [salt.loader :1577][DEBUG ][1464] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:57:26,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded ddns.update +2020-03-06 10:57:26,873 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded chassis.cmd +2020-03-06 10:57:26,919 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:57:26,951 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:57:26,981 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:57:27,013 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:57:27,357 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded esxi.cmd +2020-03-06 10:57:27,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded git.version +2020-03-06 10:57:27,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded github.list_users +2020-03-06 10:57:27,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded glanceng.image_get +2020-03-06 10:57:27,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded elasticsearch.exists +2020-03-06 10:57:27,653 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: grafana_version, ret: _|- +2020-03-06 10:57:27,653 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: grafana_version, ret: _|- +2020-03-06 10:57:27,795 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded icinga2.generate_ticket +2020-03-06 10:57:27,809 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded ifttt.trigger_event +2020-03-06 10:57:27,841 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:57:27,888 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:57:27,934 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:57:27,982 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:57:28,028 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:57:28,075 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:57:28,232 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:57:28,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.domain_get +2020-03-06 10:57:28,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:57:28,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.group_get +2020-03-06 10:57:28,278 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.project_get +2020-03-06 10:57:28,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.role_get +2020-03-06 10:57:28,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.role_grant +2020-03-06 10:57:28,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.service_get +2020-03-06 10:57:28,325 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.user_get +2020-03-06 10:57:28,356 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:57:28,466 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:57:28,482 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:57:28,513 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:57:28,575 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:57:28,591 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:57:28,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:57:28,623 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:57:28,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:57:28,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:57:28,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded memcached.status +2020-03-06 10:57:28,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mongodb.db_exists +2020-03-06 10:57:28,748 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mongodb.user_exists +2020-03-06 10:57:28,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:57:28,778 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:57:28,778 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:57:28,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:57:28,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_networks +2020-03-06 10:57:28,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_subnets +2020-03-06 10:57:28,982 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_subnets +2020-03-06 10:57:28,998 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_subnets +2020-03-06 10:57:29,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded npm.list +2020-03-06 10:57:29,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nxos.cmd +2020-03-06 10:57:29,107 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:57:29,122 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:57:29,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded panos.commit +2020-03-06 10:57:29,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pdbedit.create +2020-03-06 10:57:29,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pecl.list +2020-03-06 10:57:30,295 [pip.vcs :60 ][DEBUG ][1464] Registered VCS backend: git +2020-03-06 10:57:30,607 [pip.vcs :60 ][DEBUG ][1464] Registered VCS backend: hg +2020-03-06 10:57:30,685 [pip.pep425tags :79 ][DEBUG ][1464] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:57:30,685 [pip.pep425tags :79 ][DEBUG ][1464] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:57:30,685 [pip.pep425tags :79 ][DEBUG ][1464] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:57:30,701 [pip.pep425tags :79 ][DEBUG ][1464] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:57:31,138 [pip.vcs :60 ][DEBUG ][1464] Registered VCS backend: svn +2020-03-06 10:57:31,154 [pip.vcs :60 ][DEBUG ][1464] Registered VCS backend: bzr +2020-03-06 10:57:31,497 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:57:31,513 [salt.loader :1577][DEBUG ][1464] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:57:31,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.cluster_exists +2020-03-06 10:57:31,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.user_exists +2020-03-06 10:57:31,545 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.create_extension +2020-03-06 10:57:31,559 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.group_create +2020-03-06 10:57:31,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.datadir_init +2020-03-06 10:57:31,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.language_create +2020-03-06 10:57:31,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.privileges_grant +2020-03-06 10:57:31,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.schema_exists +2020-03-06 10:57:31,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.tablespace_exists +2020-03-06 10:57:31,622 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.user_exists +2020-03-06 10:57:31,763 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:57:31,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded selinux.getenforce +2020-03-06 10:57:31,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded splunk.list_users +2020-03-06 10:57:31,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded splunk_search.get +2020-03-06 10:57:32,013 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:57:32,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded tomcat.status +2020-03-06 10:57:32,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded vagrant.version +2020-03-06 10:57:32,123 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded victorops.create_event +2020-03-06 10:57:32,217 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded win_iis.create_site +2020-03-06 10:57:32,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded win_servermanager.install +2020-03-06 10:57:32,326 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:57:32,356 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded wordpress.show_plugin +2020-03-06 10:57:32,372 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded x509.get_pem_entry +2020-03-06 10:57:32,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded xmpp.send_msg +2020-03-06 10:57:32,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded zk_concurrency.lock +2020-03-06 10:57:32,545 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded zonecfg.create +2020-03-06 10:57:32,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded zookeeper.create +2020-03-06 10:57:32,560 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:57:32,576 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:57:32,747 [salt.state :889 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:57:32,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded dacl.check_perms +2020-03-06 10:57:32,763 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][1464] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:57:32,763 [salt.loaded.int.utils.win_dacl:1186][ERROR ][1464] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:57:32,779 [salt.state :320 ][INFO ][1464] {'reg': {'Added': {'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions', 'Inheritance': True}}} +2020-03-06 10:57:32,779 [salt.state :1997][INFO ][1464] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:57:32.779387 (duration_in_ms=17312.486) +2020-03-06 10:57:32,779 [salt.state :1819][INFO ][1464] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:57:32.779387 +2020-03-06 10:57:32,779 [salt.state :1852][INFO ][1464] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:57:32,794 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:57:32,794 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:57:32,982 [salt.state :889 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:57:32,982 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][1464] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:57:32,997 [salt.loaded.int.utils.win_dacl:1186][ERROR ][1464] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:57:32,997 [salt.state :320 ][INFO ][1464] {'reg': {'Added': {'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions', 'Inheritance': True}}} +2020-03-06 10:57:32,997 [salt.state :1997][INFO ][1464] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:57:32.997705 (duration_in_ms=218.318) +2020-03-06 10:57:32,997 [salt.state :1819][INFO ][1464] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:57:32.997705 +2020-03-06 10:57:32,997 [salt.state :1852][INFO ][1464] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:57:32,997 [salt.utils.http :234 ][DEBUG ][1464] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:57:32,997 [salt.utils.http :235 ][DEBUG ][1464] Using backend: tornado +2020-03-06 10:57:33,545 [salt.loaded.int.states.archive:976 ][DEBUG ][1464] file.cached: {'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'changes': {'hash': {'old': None, 'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36'}}, 'result': True} +2020-03-06 10:57:33,545 [salt.loaded.int.states.archive:91 ][DEBUG ][1464] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:57:33,545 [salt.loaded.int.states.archive:996 ][DEBUG ][1464] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:57:33,607 [salt.loaded.int.module.win_file:1463][DEBUG ][1464] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:57:33,607 [salt.loaded.int.module.win_file:1463][DEBUG ][1464] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:57:33,622 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][1464] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:57:33,622 [salt.loaded.int.states.archive:1247][DEBUG ][1464] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:57:33,997 [salt.loaded.int.states.archive:1543][DEBUG ][1464] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:57:34,013 [salt.state :320 ][INFO ][1464] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} +2020-03-06 10:57:34,013 [salt.state :1997][INFO ][1464] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:57:34.013532 (duration_in_ms=1015.827) +2020-03-06 10:57:34,013 [salt.state :1819][INFO ][1464] Running state [rename-extract] at time 10:57:34.013532 +2020-03-06 10:57:34,013 [salt.state :1852][INFO ][1464] Executing state module.run for [rename-extract] +2020-03-06 10:57:34,013 [salt.state :320 ][INFO ][1464] {'file.rename': True} +2020-03-06 10:57:34,013 [salt.state :1997][INFO ][1464] Completed state [rename-extract] at time 10:57:34.013532 (duration_in_ms=0.0) +2020-03-06 10:57:34,013 [salt.state :1819][INFO ][1464] Running state [pkg.refresh_db] at time 10:57:34.013532 +2020-03-06 10:57:34,013 [salt.state :1852][INFO ][1464] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:57:34,029 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][1464] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:31.406522) +2020-03-06 10:57:34,029 [salt.loaded.int.module.win_pkg:935 ][INFO ][1464] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:57:34,029 [salt.loaded.int.module.win_pkg:954 ][INFO ][1464] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:57:34,029 [salt.fileclient :234 ][INFO ][1464] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:57:34,216 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:57:34,216 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:57:34,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:57:34,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,231 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:57:34,231 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:57:34,247 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:57:34,247 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:57:34,247 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,247 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:57:34,263 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:57:34,263 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:57:34,263 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:57:34,263 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,263 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:57:34,279 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:57:34,279 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:57:34,279 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:57:34,279 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:57:34,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:57:34,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:57:34,294 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:57:34,310 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,310 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:57:34,326 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:57:34,326 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:57:34,326 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:57:34,326 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,326 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:57:34,342 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:57:34,342 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:57:34,342 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:57:34,342 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,357 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:57:34,357 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:57:34,357 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:57:34,372 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:57:34,372 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,372 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:57:34,388 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:57:34,388 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:57:34,388 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:57:34,388 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,388 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:57:34,404 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:57:34,404 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:57:34,404 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:57:34,404 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,419 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:57:34,419 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:57:34,419 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:57:34,419 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:57:34,419 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,435 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:57:34,435 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:57:34,450 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:57:34,450 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:57:34,450 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,450 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:57:34,467 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:57:34,467 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:57:34,467 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:57:34,467 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,481 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:57:34,481 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:57:34,481 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:57:34,481 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:57:34,481 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,497 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:57:34,497 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:57:34,513 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:57:34,513 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:57:34,513 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,513 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:57:34,528 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:57:34,528 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:57:34,528 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:57:34,528 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,544 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:57:34,544 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:57:34,544 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:57:34,544 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:57:34,544 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,560 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:57:34,560 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:57:34,575 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:57:34,575 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:57:34,575 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,575 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:57:34,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:57:34,591 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:57:34,591 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:57:34,591 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,606 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:57:34,606 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:57:34,606 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:57:34,606 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:57:34,622 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,622 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:57:34,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:57:34,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:57:34,638 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:57:34,638 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,638 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:57:34,653 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:57:34,653 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:57:34,653 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:57:34,653 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,669 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:57:34,669 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:57:34,669 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:57:34,669 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:57:34,669 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,685 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:57:34,701 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:57:34,701 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:57:34,701 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:57:34,701 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,716 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:57:34,716 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:57:34,716 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:57:34,731 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:57:34,731 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,731 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:57:34,747 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:57:34,747 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:57:34,747 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:57:34,747 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,778 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:57:34,778 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:57:34,794 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:57:34,794 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:57:34,794 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,794 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:57:34,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:57:34,810 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:57:34,810 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:57:34,810 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,826 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:57:34,826 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:57:34,826 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:57:34,826 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:57:34,826 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,841 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:57:34,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:57:34,856 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:57:34,856 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:57:34,856 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,872 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:57:34,872 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:57:34,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:57:34,888 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:57:34,888 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,888 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:57:34,904 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:57:34,904 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:57:34,904 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:57:34,904 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,919 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:57:34,936 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:57:34,936 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:57:34,936 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:57:34,936 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,936 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:57:34,950 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:57:34,950 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:57:34,950 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:57:34,950 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,966 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:57:34,966 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:57:34,982 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:57:34,982 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:57:34,982 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:34,982 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:57:34,997 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:57:34,997 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:57:34,997 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:57:34,997 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,013 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:57:35,013 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:57:35,013 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:57:35,013 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:57:35,028 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,028 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:57:35,044 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:57:35,044 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:57:35,044 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:57:35,044 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,044 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:57:35,060 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:57:35,060 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:57:35,060 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:57:35,060 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,076 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:57:35,076 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:57:35,076 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:57:35,091 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:57:35,091 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,091 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:57:35,107 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:57:35,107 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:57:35,107 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:57:35,107 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,107 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:57:35,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:57:35,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:57:35,122 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:57:35,122 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,138 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:57:35,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:57:35,154 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:57:35,154 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:57:35,154 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,154 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:57:35,170 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:57:35,170 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:57:35,170 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:57:35,170 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,184 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:57:35,184 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:57:35,184 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:57:35,184 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:57:35,184 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,200 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:57:35,216 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:57:35,216 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:57:35,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:57:35,232 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,232 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:57:35,248 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:57:35,248 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:57:35,248 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:57:35,248 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,248 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:57:35,264 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:57:35,264 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:57:35,264 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:57:35,264 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,278 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:57:35,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:57:35,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:57:35,294 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:57:35,294 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:57:35,310 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:57:35,310 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:57:35,310 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:57:35,310 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,326 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:57:35,326 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:57:35,341 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:57:35,341 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:57:35,341 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,341 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:57:35,356 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:57:35,356 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:57:35,356 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:57:35,356 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,372 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:57:35,372 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:57:35,388 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:57:35,388 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:57:35,388 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,388 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:57:35,403 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:57:35,403 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:57:35,403 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:57:35,403 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,419 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:57:35,419 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:57:35,419 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:57:35,419 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:57:35,435 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,435 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:57:35,466 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:57:35,466 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:57:35,466 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:57:35,466 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,466 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:57:35,481 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:57:35,481 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:57:35,481 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:57:35,481 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,497 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:57:35,497 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:57:35,497 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:57:35,513 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:57:35,513 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,513 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:57:35,528 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:57:35,528 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:57:35,528 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:57:35,528 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,528 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:57:35,544 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:57:35,544 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:57:35,544 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:57:35,544 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,560 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:57:35,560 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:57:35,575 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:57:35,575 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:57:35,575 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,575 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:57:35,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:57:35,591 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:57:35,591 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:57:35,591 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,607 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:57:35,607 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:57:35,607 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:57:35,623 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:57:35,623 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,623 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:57:35,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:57:35,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:57:35,638 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:57:35,638 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,638 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:57:35,653 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:57:35,653 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:57:35,653 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:57:35,653 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,669 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:57:35,669 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:57:35,685 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:57:35,685 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:57:35,685 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,685 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:57:35,701 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:57:35,701 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:57:35,701 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:57:35,701 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,701 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:57:35,716 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:57:35,716 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:57:35,716 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:57:35,716 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,732 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:57:35,732 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:57:35,732 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:57:35,748 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:57:35,748 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,748 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:57:35,763 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:57:35,778 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:57:35,778 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:57:35,778 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,778 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:57:35,794 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:57:35,794 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:57:35,794 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:57:35,794 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,810 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:57:35,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:57:35,825 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:57:35,825 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:57:35,825 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,825 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:57:35,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:57:35,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:57:35,841 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:57:35,841 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,857 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:57:35,857 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:57:35,857 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:57:35,872 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:57:35,872 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,872 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:57:35,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:57:35,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:57:35,888 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:57:35,888 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,888 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:57:35,903 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:57:35,903 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:57:35,903 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:57:35,903 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,919 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:57:35,919 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:57:35,919 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:57:35,935 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:57:35,935 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,935 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:57:35,951 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:57:35,951 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:57:35,951 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:57:35,951 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,951 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:57:35,966 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:57:35,966 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:57:35,966 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:57:35,966 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,982 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:57:35,982 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:57:35,998 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:57:35,998 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:57:35,998 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:35,998 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:57:36,013 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:57:36,013 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:57:36,013 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:57:36,013 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,029 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:57:36,029 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:57:36,029 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:57:36,029 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:57:36,045 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,045 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:57:36,059 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:57:36,059 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:57:36,059 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:57:36,059 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,059 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:57:36,075 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:57:36,075 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:57:36,075 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:57:36,075 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,107 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:57:36,107 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:57:36,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:57:36,122 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:57:36,122 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,122 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:57:36,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:57:36,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:57:36,138 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:57:36,138 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,153 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:57:36,153 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:57:36,169 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:57:36,169 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:57:36,169 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,169 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:57:36,185 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:57:36,185 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:57:36,185 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:57:36,185 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,201 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:57:36,201 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:57:36,201 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:57:36,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:57:36,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,216 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:57:36,232 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:57:36,232 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:57:36,232 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:57:36,232 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,232 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:57:36,263 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:57:36,263 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:57:36,263 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:57:36,263 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,263 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:57:36,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:57:36,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:57:36,278 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:57:36,278 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:57:36,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:57:36,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:57:36,294 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:57:36,309 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,309 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:57:36,325 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:57:36,325 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:57:36,325 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:57:36,325 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,325 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:57:36,341 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:57:36,356 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:57:36,356 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:57:36,356 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,356 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:57:36,372 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:57:36,372 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:57:36,372 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:57:36,372 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,388 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:57:36,388 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:57:36,388 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:57:36,388 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:57:36,388 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,404 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:57:36,404 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:57:36,419 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:57:36,419 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:57:36,419 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,419 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:57:36,435 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:57:36,435 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:57:36,435 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:57:36,435 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,450 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:57:36,450 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:57:36,450 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:57:36,450 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:57:36,466 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,466 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:57:36,482 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:57:36,482 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:57:36,482 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:57:36,482 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,482 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:57:36,498 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:57:36,498 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:57:36,498 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:57:36,498 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,513 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:57:36,513 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:57:36,513 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:57:36,513 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:57:36,528 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,528 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:57:36,544 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:57:36,544 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:57:36,544 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:57:36,544 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,559 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:57:36,559 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:57:36,559 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:57:36,559 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:57:36,575 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,575 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:57:36,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:57:36,591 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:57:36,591 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:57:36,591 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,591 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:57:36,607 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:57:36,607 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:57:36,607 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:57:36,607 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,622 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:57:36,622 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:57:36,622 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:57:36,622 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:57:36,622 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,638 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:57:36,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:57:36,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:57:36,653 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:57:36,653 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,653 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:57:36,669 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:57:36,669 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:57:36,669 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:57:36,669 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,669 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:57:36,685 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:57:36,685 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:57:36,685 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:57:36,700 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,700 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:57:36,700 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:57:36,716 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:57:36,716 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:57:36,716 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,716 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:57:36,732 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:57:36,732 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:57:36,732 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:57:36,732 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,747 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:57:36,747 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:57:36,747 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:57:36,747 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:57:36,763 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,763 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:57:36,778 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:57:36,778 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:57:36,778 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:57:36,778 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,778 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:57:36,794 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:57:36,794 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:57:36,794 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:57:36,794 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,810 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:57:36,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:57:36,825 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:57:36,825 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:57:36,825 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,825 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:57:36,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:57:36,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:57:36,841 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:57:36,841 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,856 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:57:36,872 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:57:36,872 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:57:36,872 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:57:36,872 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,872 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:57:36,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:57:36,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:57:36,888 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:57:36,888 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,904 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:57:36,904 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:57:36,904 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:57:36,919 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:57:36,919 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,919 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:57:36,935 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:57:36,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:57:36,935 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:57:36,935 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,935 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:57:36,950 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:57:36,950 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:57:36,966 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:57:36,966 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,981 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:57:36,981 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:57:36,981 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:57:36,981 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:57:36,997 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:36,997 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:57:37,013 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:57:37,013 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:57:37,013 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:57:37,013 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,013 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:57:37,029 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:57:37,029 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:57:37,029 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:57:37,029 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,044 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:57:37,044 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:57:37,044 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:57:37,044 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:57:37,060 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,060 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:57:37,060 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:57:37,075 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:57:37,075 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:57:37,075 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,075 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:57:37,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:57:37,091 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:57:37,091 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:57:37,091 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,107 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:57:37,107 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:57:37,107 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:57:37,107 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:57:37,107 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,122 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:57:37,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:57:37,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:57:37,138 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:57:37,138 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,138 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:57:37,154 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:57:37,154 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:57:37,154 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:57:37,154 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,154 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:57:37,169 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:57:37,169 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:57:37,169 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:57:37,169 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,185 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:57:37,185 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,185 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,200 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,200 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,200 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,216 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,216 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,216 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,232 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:57:37,232 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:57:37,247 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:57:37,247 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,247 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:57:37,263 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:57:37,263 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:57:37,263 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:57:37,263 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,263 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:57:37,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:57:37,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:57:37,278 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:57:37,278 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:57:37,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:57:37,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:57:37,310 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:57:37,310 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,310 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:57:37,325 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:57:37,325 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:57:37,325 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:57:37,325 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,325 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:57:37,342 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:57:37,342 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:57:37,342 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:57:37,342 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,357 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:57:37,357 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,372 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,372 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,372 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,372 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:57:37,388 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,403 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,403 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,403 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,403 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,419 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:57:37,419 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:57:37,419 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:57:37,419 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,435 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:57:37,435 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,435 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,435 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,435 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,450 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:57:37,450 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:57:37,466 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:57:37,466 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:57:37,466 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,466 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:57:37,482 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:57:37,482 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:57:37,482 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:57:37,482 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,497 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:57:37,497 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:57:37,497 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:57:37,497 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:57:37,497 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,513 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:57:37,513 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:57:37,529 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:57:37,529 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:57:37,529 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,529 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:57:37,544 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:57:37,544 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:57:37,544 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:57:37,544 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,560 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:57:37,560 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:57:37,560 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:57:37,560 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:57:37,576 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,576 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:57:37,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:57:37,591 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:57:37,591 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:57:37,591 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,591 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:57:37,607 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:57:37,607 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:57:37,607 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:57:37,607 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,622 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:57:37,622 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:57:37,622 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:57:37,622 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:57:37,638 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,638 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:57:37,653 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:57:37,653 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:57:37,653 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:57:37,653 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,653 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:57:37,669 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:57:37,669 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:57:37,669 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:57:37,669 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,685 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:57:37,685 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:57:37,700 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:57:37,700 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:57:37,700 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,700 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:57:37,716 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:57:37,716 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:57:37,732 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:57:37,732 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,748 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:57:37,763 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:57:37,763 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:57:37,763 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:57:37,763 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,763 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:57:37,778 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:57:37,778 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:57:37,778 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:57:37,778 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,794 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:57:37,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:57:37,810 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:57:37,810 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:57:37,810 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,810 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:57:37,825 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:57:37,825 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:57:37,825 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:57:37,825 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,841 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:57:37,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:57:37,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:57:37,857 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:57:37,857 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,857 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:57:37,872 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:57:37,872 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:57:37,872 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:57:37,872 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,872 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:57:37,889 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:57:37,889 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:57:37,889 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:57:37,889 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,903 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:57:37,903 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:57:37,903 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:57:37,903 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:57:37,903 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,919 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:57:37,919 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:57:37,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:57:37,935 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:57:37,935 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,935 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:57:37,950 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:57:37,950 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:57:37,950 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:57:37,950 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,966 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:57:37,981 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:57:37,981 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:57:37,981 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:57:37,981 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:37,998 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:57:37,998 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:57:37,998 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:57:37,998 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:57:37,998 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,013 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:57:38,013 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:57:38,029 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:57:38,029 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:57:38,029 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,029 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:57:38,044 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:57:38,044 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:57:38,044 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:57:38,044 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,059 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:57:38,059 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:57:38,059 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:57:38,059 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:57:38,075 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,075 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:57:38,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:57:38,091 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:57:38,091 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:57:38,091 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,091 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:57:38,107 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:57:38,107 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:57:38,107 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:57:38,107 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,122 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:57:38,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:57:38,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:57:38,138 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:57:38,138 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,138 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:57:38,154 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:57:38,154 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:57:38,154 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:57:38,154 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,169 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:57:38,169 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:57:38,169 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:57:38,169 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:57:38,169 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,185 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:57:38,185 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:57:38,201 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:57:38,201 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:57:38,201 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,201 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:57:38,216 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:57:38,216 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:57:38,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:57:38,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,232 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:57:38,232 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:57:38,232 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:57:38,232 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:57:38,247 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,247 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:57:38,263 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:57:38,263 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:57:38,263 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:57:38,263 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,263 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:57:38,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:57:38,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:57:38,278 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:57:38,278 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:57:38,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:57:38,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:57:38,294 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:57:38,294 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,309 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:57:38,309 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:57:38,309 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:57:38,325 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:57:38,325 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,325 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:57:38,341 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:57:38,341 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:57:38,341 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:57:38,341 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,341 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:57:38,357 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:57:38,357 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:57:38,357 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:57:38,357 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,372 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:57:38,372 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:57:38,372 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:57:38,388 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:57:38,388 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,388 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:57:38,404 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:57:38,404 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:57:38,404 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:57:38,404 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,419 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:57:38,419 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:57:38,419 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:57:38,419 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:57:38,419 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,450 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:57:38,450 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:57:38,450 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:57:38,450 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:57:38,466 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,466 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:57:38,482 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:57:38,498 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:57:38,498 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:57:38,498 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,498 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:57:38,514 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:57:38,514 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:57:38,514 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:57:38,514 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,528 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:57:38,528 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:57:38,528 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:57:38,528 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:57:38,544 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,544 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:57:38,560 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:57:38,560 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:57:38,560 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:57:38,560 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,560 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:57:38,576 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:57:38,576 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:57:38,576 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:57:38,576 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,591 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:57:38,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:57:38,606 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:57:38,606 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:57:38,606 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,606 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:57:38,622 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:57:38,622 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:57:38,622 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:57:38,622 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,622 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:57:38,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:57:38,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:57:38,638 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:57:38,638 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,654 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:57:38,654 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:57:38,654 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:57:38,669 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:57:38,669 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,669 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:57:38,685 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:57:38,685 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:57:38,685 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:57:38,685 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,701 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:57:38,701 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:57:38,701 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:57:38,701 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:57:38,701 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,716 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:57:38,716 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:57:38,731 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:57:38,731 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:57:38,731 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,731 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:57:38,747 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:57:38,747 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:57:38,747 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:57:38,747 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,763 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:57:38,778 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:57:38,778 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:57:38,778 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:57:38,778 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,794 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:57:38,794 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:57:38,794 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:57:38,810 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:57:38,810 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,810 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:57:38,825 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:57:38,825 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:57:38,825 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:57:38,825 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,825 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:57:38,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:57:38,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:57:38,841 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:57:38,841 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,857 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:57:38,873 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:57:38,873 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:57:38,873 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:57:38,873 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,888 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:57:38,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:57:38,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:57:38,888 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:57:38,904 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,904 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:57:38,919 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:57:38,919 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:57:38,919 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:57:38,919 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,919 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:57:38,935 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:57:38,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:57:38,935 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:57:38,935 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,951 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:57:38,951 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:57:38,951 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:57:38,966 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:57:38,966 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,966 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:57:38,982 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:57:38,982 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:57:38,982 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:57:38,982 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:38,982 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:57:38,997 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:57:38,997 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:57:38,997 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:57:38,997 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,013 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:57:39,013 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:57:39,013 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:57:39,028 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:57:39,028 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,028 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:57:39,044 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:57:39,044 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:57:39,044 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:57:39,044 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,060 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:57:39,060 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:57:39,060 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:57:39,075 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:57:39,075 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,075 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:57:39,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:57:39,091 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:57:39,091 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:57:39,091 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,107 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:57:39,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:57:39,122 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:57:39,122 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:57:39,122 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,122 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:57:39,138 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:57:39,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:57:39,138 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:57:39,154 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,154 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:57:39,169 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:57:39,169 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:57:39,169 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:57:39,169 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,169 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:57:39,185 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:57:39,185 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:57:39,185 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:57:39,185 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,201 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:57:39,201 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:57:39,216 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:57:39,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:57:39,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,216 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:57:39,232 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:57:39,232 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:57:39,232 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:57:39,232 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,263 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:57:39,278 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:57:39,278 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:57:39,278 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:57:39,294 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:57:39,310 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:57:39,310 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:57:39,310 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:57:39,310 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,326 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:57:39,326 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:57:39,341 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:57:39,356 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:57:39,356 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,356 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:57:39,388 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:57:39,388 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:57:39,388 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:57:39,388 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,388 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:57:39,404 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:57:39,404 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:57:39,404 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:57:39,404 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,419 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:57:39,419 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:57:39,419 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:57:39,419 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:57:39,435 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,435 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:57:39,450 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:57:39,450 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:57:39,450 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:57:39,450 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,450 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:57:39,466 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:57:39,466 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:57:39,466 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:57:39,466 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,498 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:57:39,498 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:57:39,498 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:57:39,513 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:57:39,513 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,513 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:57:39,528 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:57:39,528 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:57:39,528 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:57:39,528 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,544 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:57:39,544 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:57:39,544 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:57:39,544 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:57:39,544 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,560 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:57:39,560 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:57:39,575 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:57:39,575 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:57:39,575 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,575 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:57:39,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:57:39,591 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:57:39,591 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:57:39,591 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,607 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:57:39,607 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:57:39,607 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:57:39,607 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:57:39,607 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,622 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:57:39,622 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:57:39,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:57:39,638 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:57:39,638 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,638 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:57:39,654 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:57:39,654 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:57:39,654 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:57:39,654 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,669 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:57:39,669 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:57:39,669 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:57:39,685 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:57:39,685 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,685 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:57:39,701 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:57:39,701 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:57:39,701 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:57:39,701 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,701 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:57:39,716 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:57:39,716 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:57:39,716 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:57:39,716 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,732 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:57:39,747 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:57:39,747 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:57:39,747 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:57:39,747 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,747 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:57:39,763 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:57:39,779 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:57:39,779 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:57:39,779 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,779 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:57:39,795 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:57:39,795 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:57:39,795 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:57:39,810 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,810 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:57:39,810 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:57:39,826 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:57:39,826 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:57:39,826 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,826 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:57:39,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:57:39,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:57:39,841 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:57:39,841 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,857 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:57:39,857 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:57:39,857 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:57:39,857 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:57:39,857 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,873 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:57:39,873 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:57:39,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:57:39,888 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:57:39,888 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,888 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:57:39,903 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:57:39,903 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:57:39,903 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:57:39,903 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,903 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:57:39,919 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:57:39,919 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:57:39,919 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:57:39,919 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,935 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:57:39,935 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:57:39,935 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:57:39,951 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:57:39,951 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,951 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:57:39,966 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:57:39,966 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:57:39,966 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:57:39,966 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,966 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:57:39,982 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:57:39,982 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:57:39,982 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:57:39,982 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:39,997 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:57:39,997 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:57:39,997 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:57:40,013 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:57:40,013 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,013 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:57:40,029 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:57:40,029 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:57:40,029 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:57:40,029 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,044 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:57:40,044 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:57:40,044 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:57:40,044 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:57:40,059 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,059 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:57:40,075 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:57:40,075 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:57:40,075 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:57:40,075 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,075 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:57:40,091 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:57:40,091 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:57:40,091 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:57:40,091 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,107 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:57:40,107 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:57:40,107 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:57:40,107 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:57:40,107 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,122 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:57:40,122 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:57:40,138 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:57:40,138 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:57:40,138 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,138 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:57:40,154 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:57:40,154 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:57:40,154 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:57:40,154 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,169 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:57:40,169 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:57:40,169 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:57:40,169 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:57:40,169 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,184 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:57:40,184 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:57:40,200 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:57:40,200 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:57:40,200 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,200 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:57:40,216 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:57:40,216 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:57:40,216 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:57:40,216 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,231 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:57:40,231 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:57:40,231 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:57:40,231 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:57:40,247 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,247 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:57:40,263 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:57:40,263 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:57:40,263 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:57:40,263 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,279 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:57:40,294 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:57:40,294 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:57:40,294 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:57:40,294 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,294 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:57:40,310 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:57:40,310 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:57:40,310 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:57:40,310 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,325 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:57:40,325 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:57:40,341 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:57:40,341 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:57:40,341 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,341 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:57:40,357 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:57:40,357 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:57:40,357 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:57:40,357 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,388 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:57:40,388 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:57:40,404 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:57:40,404 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:57:40,404 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,419 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:57:40,419 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:57:40,419 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:57:40,435 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:57:40,435 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,435 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:57:40,450 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:57:40,450 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:57:40,450 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:57:40,450 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,467 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:57:40,467 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:57:40,481 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:57:40,481 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:57:40,481 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,481 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:57:40,497 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:57:40,497 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:57:40,497 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:57:40,497 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,513 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:57:40,513 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:57:40,513 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:57:40,529 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:57:40,529 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,529 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:57:40,544 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:57:40,544 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:57:40,544 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:57:40,544 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,560 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:57:40,575 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:57:40,575 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:57:40,575 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:57:40,575 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,575 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:57:40,591 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:57:40,591 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:57:40,606 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:57:40,606 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,606 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:57:40,622 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:57:40,622 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:57:40,622 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:57:40,622 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,638 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:57:40,638 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:57:40,638 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:57:40,638 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:57:40,654 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,654 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:57:40,669 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:57:40,669 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:57:40,669 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:57:40,669 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,669 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:57:40,685 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:57:40,685 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:57:40,685 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:57:40,685 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,701 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:57:40,717 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:57:40,717 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:57:40,717 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:57:40,717 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,731 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:57:40,731 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:57:40,747 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:57:40,747 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:57:40,747 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,747 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:57:40,779 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:57:40,779 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:57:40,779 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:57:40,779 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,779 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:57:40,794 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:57:40,794 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:57:40,794 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:57:40,794 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,810 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:57:40,825 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:57:40,825 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:57:40,825 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:57:40,825 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,825 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:57:40,841 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:57:40,841 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:57:40,841 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:57:40,841 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,856 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:57:40,872 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:57:40,872 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:57:40,872 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:57:40,872 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,872 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:57:40,888 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:57:40,888 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:57:40,888 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:57:40,888 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,904 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:57:40,904 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:57:40,920 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:57:40,920 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:57:40,920 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,920 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:57:40,934 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:57:40,934 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:57:40,934 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:57:40,934 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,950 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:57:40,950 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:57:40,950 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:57:40,966 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:57:40,966 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,966 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:57:40,982 [salt.fileclient :1093][DEBUG ][1464] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:57:40,982 [salt.fileclient :1101][DEBUG ][1464] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:57:40,982 [salt.fileclient :1121][DEBUG ][1464] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:57:40,982 [salt.fileclient :1149][DEBUG ][1464] No dest file found +2020-03-06 10:57:40,997 [salt.fileclient :1230][INFO ][1464] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:57:40,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,013 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:57:41,013 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,029 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +7zip: + + + '16.04.00.0': + + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.03.00.0': + + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.02.00.0': + + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.00.00.0': + + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '19.00.00.0': + + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '18.06.00.0': + + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.05.00.0': + + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.03.00.0': + + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.01.00.0': + + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:57:41,029 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,029 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,029 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,029 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,044 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:57:41,044 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,060 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +activeperl_x64: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.24.3': + full_name: 'ActivePerl 5.24.3 Build 2404 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.26.1': + full_name: 'ActivePerl 5.26.1 Build 2601 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,060 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,060 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,060 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:57:41,060 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.015634775161743164 +2020-03-06 10:57:41,075 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +activeperl_x86: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205' + + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,091 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:57:41,091 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,091 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +adobeair: + latest: + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + '30.0.0.107': + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,107 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:57:41,107 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,107 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,122 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +# to understand what is meant by "classic" see +# http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html + +adobereader-dc-classic: + + + '20.006.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20049': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20047': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20036': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20099': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20098': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20091': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20069': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20064': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20081': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20071': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20063': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20055': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20040': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,122 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,122 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,122 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:57:41,138 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,138 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +adobereader-xi: + '11.0.10': + full_name: 'Adobe Reader XI (11.0.10)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '11.0.6': + full_name: 'Adobe Reader XI (11.0.06)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,153 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:57:41,153 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,153 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,153 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +adobereader: + '10.1.4': + full_name: 'Adobe Reader X (10.1.4)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '9.5.0': + full_name: 'Adobe Reader 9.5.0' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,153 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,153 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,169 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:57:41,169 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +adobeshockwaveplayer: + latest: + full_name: 'Adobe Shockwave Player 12.2' + installer: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version + +2020-03-06 10:57:41,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,185 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:57:41,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,201 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.015859127044677734 +2020-03-06 10:57:41,201 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: + + + +adv-ip-scanner: + + + '2.5.3784': + full_name: 'Advanced IP Scanner 2.5' + installer: 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-ip-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:57:41,201 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,201 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,201 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:57:41,216 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,216 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: + + + +adv-port-scanner: + + + '2.5.3680': + full_name: 'Advanced Port Scanner 2.5' + installer: 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-port-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:57:41,216 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,232 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:57:41,232 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,232 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,248 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +advancedlogging: + '1.0.0625.10': + full_name: 'IIS Advanced Logging 1.0' + + installer: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + uninstaller: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,248 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,248 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,248 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,248 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,248 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:57:41,248 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.014856576919555664 +2020-03-06 10:57:41,263 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +# just 32-bit x86 msi package available + + + +anydesk-msi: + latest: + full_name: 'AnyDesk MSI' + installer: 'https://download.anydesk.com/AnyDesk.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.anydesk.com/AnyDesk.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,263 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:57:41,278 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,278 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,278 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +# just 32-bit x86 installer available + + + + + + + +anydesk: + latest: + full_name: 'AnyDesk' + installer: 'https://download.anydesk.com/AnyDesk.exe' + install_flags: '--install "%ProgramFiles(x86)%\AnyDesk" --start-with-win --silent --create-shortcut' + uninstaller: 'https://download.anydesk.com/AnyDesk.exe' + uninstall_flags: '--silent --remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,294 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:57:41,294 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,309 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +applicationrequestrouting: + '3.0.1952': + full_name: 'Microsoft Application Request Routing 3.0' + + installer: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,309 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,309 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:57:41,325 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,325 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,325 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +aspnet-mvc1: + '1.0.0.0': + full_name: 'Microsoft ASP.NET MVC 1.0' + installer: 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi' + install_flags: '/qn /norestart' + uninstaller: '{A4394612-D02F-11DC-9BFF-D18556D89593}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,325 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,325 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,341 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:57:41,341 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,357 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: + +atom: + + '1.28.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.2': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.1': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.23.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,357 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,357 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,357 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,357 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,357 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:57:41,372 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,372 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: + + + + +audacity: + + '2.2.2': + full_name: 'Audacity 2.2.2' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Audacity 2.2.1' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,372 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,388 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:57:41,388 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,404 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.016160249710083008 +2020-03-06 10:57:41,404 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: + + + +autohotkey: + '1.1.29.01': + full_name: 'AutoHotkey 1.1.29.01' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.27.06': + full_name: 'AutoHotkey 1.1.27.06' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.24.00': + full_name: 'AutoHotkey 1.1.24.00' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.22.09': + full_name: 'AutoHotkey 1.1.22.09' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,404 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,404 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,404 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,404 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,419 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:57:41,419 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,419 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: + +autoit: + + '3.3.14.5': + full_name: 'AutoIt v3.3.14.5' + installer: 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\AutoIt3\Uninstall.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,419 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,435 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:57:41,435 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,435 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,435 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +autopsy: + '4.3.0': + full_name: 'Autopsy' + + installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,451 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,451 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.015676498413085938 +2020-03-06 10:57:41,451 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,451 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,451 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:57:41,451 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.015641212463378906 +2020-03-06 10:57:41,466 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +awscli: + latest: + + full_name: 'AWS Command Line Interface' + installer: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + uninstaller: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,466 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,482 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:57:41,497 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,497 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +# due to winrepo installer limitations you need to manually download the exe from +# https://go.microsoft.com/fwlink/?linkid=2049975 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... + + +azuredatastudio: + '1.3.9': + full_name: 'Azure Data Studio' +# installer: 'salt://win/repo-ng/azuredatastudio/azuredatastudio-windows-setup-1.3.9.exe' + installer: 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe' + uninstaller: 'C:\Program Files\Azure Data Studio\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,529 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:57:41,529 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,529 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,529 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +#the provider only offers the download of the latest version + + + +bandizip: + '6.21': + full_name: 'Bandizip' + installer: 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE' + install_flags: '/S' + uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,529 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,529 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,545 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,545 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:57:41,545 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,545 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,560 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +# just 32-bit x86 installer available + + + +belarc-advisor: + '8.6': + full_name: 'Belarc Advisor' + installer: 'http://downloads.belarc.com/advisor/advisorinstaller.exe' + install_flags: '/s' + uninstaller: '%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\Uninstall.exe' + uninstall_flags: '/s "%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\INSTALL.LOG"' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,560 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,560 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,560 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:57:41,560 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,576 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0160524845123291 +2020-03-06 10:57:41,576 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +bginfo4x: + '3.3.6': + full_name: 'BGINFO4X for Windows 3.3.6' + installer: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + uninstaller: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,576 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,576 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,576 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:57:41,576 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.015658140182495117 +2020-03-06 10:57:41,591 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +# source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe +bitnami-nginxstack: + '1.8.0-0': + full_name: 'Bitnami Nginx Stack' + installer: 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe' + install_flags: '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"' + uninstaller: 'C:\Bitnami\nginxstack-1.8.0-0\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,591 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,591 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:57:41,607 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,607 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,607 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +bitvise: + + '8.32': + full_name: 'Bitvise SSH Server 8.32 (remove only)' + installer: 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe' + install_flags: '-acceptEULA -defaultInstance -startService' + uninstaller: '%ProgramFiles%\Bitvise SSH Server\uninst.exe' + uninstall_flags: '"Bitvise SSH Server" -unat' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:41,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,622 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0149688720703125 +2020-03-06 10:57:41,622 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,622 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,622 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:57:41,622 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,622 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,638 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +blender: + '2.78': + full_name: 'Blender' + + installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,638 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,638 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:57:41,638 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,653 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.01576399803161621 +2020-03-06 10:57:41,653 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +bootracer: + '6.50.0.450': + full_name: 'BootRacer' + installer: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + uninstaller: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# download zip archive manually and unpack msi to slat master winrepo-ng directory + +2020-03-06 10:57:41,653 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,653 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,653 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:57:41,653 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.01587057113647461 +2020-03-06 10:57:41,669 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: + +bulkrenameutility: + + '3.0.0.1': + + full_name: 'Bulk Rename Utility 3.0.0.1 (64-bit)' + + installer: 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\Bulk Rename Utility\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:41,669 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,685 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:57:41,685 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,700 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +# just 32-bit x86 installer available + + + +bulk_extractor: + + '1.5.5': + full_name: 'Bulk Extractor 1.5.5' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.5\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Bulk Extractor 1.5.1' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.1\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Bulk Extractor 1.5.0' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.0\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,700 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,700 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,700 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:57:41,700 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,716 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.015854358673095703 +2020-03-06 10:57:41,716 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: + +ccleaner-slim: + + '5.60': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup560_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.59': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup559_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.58': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup558_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup557_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,716 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,716 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,732 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:57:41,732 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,732 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,748 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: + +ccleaner: + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup557.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.44': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup544.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:41,748 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,748 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,748 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,748 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,748 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:57:41,748 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.015604257583618164 +2020-03-06 10:57:41,763 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +cdburnerxp: + '4.5.6.5931': + full_name: 'CDBurnerXP' + installer: 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\CDBurnerXP\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,763 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,779 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:57:41,779 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,779 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,779 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +# just 32-bit x86 installer available + + + +cdroller: + '10.0': + full_name: 'CDRoller version 10.0' + installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe' + install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"' + uninstaller: '%PROGRAMFILES(x86)%\CDRoller\unins000.exe' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,794 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,794 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:57:41,794 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.015687942504882812 +2020-03-06 10:57:41,810 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +check-mk-agent-msi: + + '1.5.0.3268': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2940': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2857': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8.1521': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8p26': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p5': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6.185': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p16': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p14': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p13': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p12': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:41,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,825 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:57:41,825 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.015841245651245117 +2020-03-06 10:57:41,841 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +check-mk-agent: + 'Not Found': + full_name: 'Check_MK Agent 1.2.8b4' + + installer: 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe' + + uninstaller: '%ProgramFiles%\check_mk\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,841 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,857 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:57:41,857 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,857 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,857 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +chrome-rdp: + latest: + full_name: 'Chrome Remote Desktop Host' + installer: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,857 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,872 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:57:41,872 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,872 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +chrome: + latest: + full_name: 'Google Chrome' + installer: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:41,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.015933513641357422 +2020-03-06 10:57:41,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,888 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:57:41,888 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,904 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +clamav: + '0.99.1': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + '0.98.7': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + +2020-03-06 10:57:41,904 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) +2020-03-06 10:57:41,904 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,904 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,904 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,904 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:57:41,919 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,919 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +# just 32-bit x86 installer available + + + +clamwin: + '0.98.7': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.6': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.5': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,935 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:57:41,935 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,935 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +classicshell: + '4.2.4': + full_name: 'Classic Shell' + installer: 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe' + install_flags: '/passive' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,935 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.014827251434326172 +2020-03-06 10:57:41,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,950 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:57:41,950 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.015665292739868164 +2020-03-06 10:57:41,966 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +# just 32-bit x86 installer available + + + +clink: + '0.4.8': + full_name: 'Clink v0.4.8' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.8\clink_uninstall_0.4.8.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.7': + full_name: 'Clink v0.4.7' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.7\clink_uninstall_0.4.7.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.6': + full_name: 'Clink v0.4.6' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.6\clink_uninstall_0.4.6.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.4': + full_name: 'Clink v0.4.4' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.4\clink_uninstall_0.4.4.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# https://mridgers.github.io/clink/ + +2020-03-06 10:57:41,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:41,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,966 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:57:41,981 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:41,981 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:41,981 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +conemu: + '11.160.5290': + + full_name: 'ConEmu 160529.x64' + install_flags: '/p:x64,adm /quiet /norestart' + uninstall_flags: '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart' + + installer: 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:41,981 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:41,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.015911102294921875 +2020-03-06 10:57:41,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:41,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:41,997 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:57:41,997 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.015677690505981445 +2020-03-06 10:57:42,013 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +cpu-z: + + '1.86': + full_name: 'CPUID CPU-Z 1.86' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.85': + full_name: 'CPUID CPU-Z 1.85' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.84': + full_name: 'CPUID CPU-Z 1.84' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.83': + full_name: 'CPUID CPU-Z 1.83' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.82': + full_name: 'CPUID CPU-Z 1.82' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.81': + full_name: 'CPUID CPU-Z 1.81' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.80': + full_name: 'CPUID CPU-Z 1.80' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.79': + full_name: 'CPUID CPU-Z 1.79' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.78': + full_name: 'CPUID CPU-Z 1.78' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.77': + full_name: 'CPUID CPU-Z 1.77' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.76': + full_name: 'CPUID CPU-Z 1.76' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.75': + full_name: 'CPUID CPU-Z 1.75' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.74': + full_name: 'CPUID CPU-Z 1.74' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.73': + full_name: 'CPUID CPU-Z 1.73' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.72.1': + full_name: 'CPUID CPU-Z 1.72.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.71.1': + full_name: 'CPUID CPU-Z 1.71.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.70': + full_name: 'CPUID CPU-Z 1.70' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.69': + full_name: 'CPUID CPU-Z 1.69' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.68': + full_name: 'CPUID CPU-Z 1.68' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.67': + full_name: 'CPUID CPU-Z 1.67' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.66': + full_name: 'CPUID CPU-Z 1.66' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.65': + full_name: 'CPUID CPU-Z 1.65' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,013 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,029 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,029 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:57:42,029 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,029 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,029 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +curl: + '7.46.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.45.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.44.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.43.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# You need to download the win64 msi from website (Captcha protected) and place in your winrepo-ng on master +# http://www.confusedbycode.com/curl/#downloads +# Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, +# so you might not be calling the right 'curl' + +2020-03-06 10:57:42,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,044 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:57:42,060 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,060 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,060 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +cyberduck-cli: + '1.0.0.0': + full_name: 'Cyberduck CLI' + installer: 'http://dist.duck.sh/duck-5.0.3.20504.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ALLUSERSPROFILE%\Package Cache\{d7e97b39-df55-4b65-84b3-c24d1041948b}\duck-5.0.3.20504.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,060 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,060 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,075 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:57:42,075 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,091 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +# just 32-bit x86 installer available + + + + +cyberduck-msi: + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:57:42,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,091 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:57:42,107 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,107 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,107 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +# just 32-bit x86 installer available + + + + +cyberduck: + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:42,107 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,123 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.015726566314697266 +2020-03-06 10:57:42,123 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,123 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,123 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:57:42,123 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,139 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,139 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +# just 32-bit x86 installer available + + + +defraggler: + '2.20': + full_name: 'Defraggler' + installer: 'https://download.piriform.com/dfsetup220.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '2.18.945': + full_name: 'Defraggler 2.18' + installer: 'https://download.piriform.com/dfsetup218.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,139 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,139 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,139 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,139 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,139 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:57:42,153 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,153 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,153 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +dotnet: + '4.6.01590': + full_name: 'Microsoft .NET Framework 4.6.2' + installer: 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01590\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.01055': + full_name: 'Microsoft .NET Framework 4.6.1' + installer: 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01055\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.00081': + full_name: 'Microsoft .NET Framework 4.6' + installer: 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.00081\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.5.51209': + full_name: 'Microsoft .NET Framework 4.5.2' + installer: 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.5.51209\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,153 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,169 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:57:42,169 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +# just 32-bit x86 installer available + + + + + + + + +dropbox: + '69.4.102': + full_name: 'Dropbox' + installer: 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe' + install_flags: '/NOLAUNCH' + uninstaller: '%PROGRAMFILES(x86)%\Dropbox\Client\DropboxUninstaller.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,185 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:57:42,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,201 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.01566338539123535 +2020-03-06 10:57:42,201 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +duplicati: + '1.3.4': + + full_name: 'Duplicati (x64)' + installer: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + uninstaller: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + refresh: False + cache_dir: False + use_scheduler: False + +2020-03-06 10:57:42,201 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) +2020-03-06 10:57:42,201 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,201 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:57:42,216 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,216 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +dvdstyler: + 'Not Found': + full_name: 'DVDStyler v2.9.6' + + installer: 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\DVDStyler\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,216 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,231 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.015052080154418945 +2020-03-06 10:57:42,231 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,231 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,231 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:57:42,231 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,247 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.01564931869506836 +2020-03-06 10:57:42,247 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +echo-desktop: + '3.0.4': + full_name: + Echo Desktop + installer: + https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe + install_flags: + /S + uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" + uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" + +2020-03-06 10:57:42,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) +2020-03-06 10:57:42,247 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,263 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:57:42,263 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,263 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +eea: +# '5.0.2260.1': +# full_name: 'ESET Endpoint Antivirus' +# +# installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# +# install_flags: '/qn ALLUSERS=1 /norestart' +# uninstall_flags: '/qn /norestart' +# msiexec: True +# locale: en_US +# reboot: False +# cache_dir: True +# use_scheduler: True + '6.3.2016.0': + full_name: 'ESET Endpoint Antivirus' + + installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + cache_dir: True + use_scheduler: True +# +# download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ +# for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB + +2020-03-06 10:57:42,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) +2020-03-06 10:57:42,278 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,278 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,278 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,278 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:57:42,278 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,278 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,278 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +emet: + '5.5': + full_name: 'EMET 5.5' + installer: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + install_flags: 'ALLUSERS=1 /quiet /qn /norestart' + uninstaller: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:42,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,294 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:57:42,294 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,310 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +# just 32-bit x86 installer available + + + +# Source: https://www.emsisoft.com/en/ +emsisoft-anti-malware: + '9.0': + full_name: 'Emsisoft Anti-Malware' + installer: 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Emsisoft Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,310 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,310 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,310 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:57:42,310 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,326 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.015628814697265625 +2020-03-06 10:57:42,326 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: + + +eraser: + + '6.2.2986': + full_name: 'Eraser 6.2.0.2986' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '6.2.2983': + full_name: 'Eraser 6.2.0.2983' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,326 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,326 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,326 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,341 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:57:42,341 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,341 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +evernote: + '6.9.7.6770': + full_name: 'Evernote v. 6.9.7' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.9.6.6729': + full_name: 'Evernote v. 6.9.6' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.5.4.4720': + full_name: 'Evernote v. 6.5.4' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,356 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,356 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,356 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:57:42,356 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,356 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,356 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +# just 32-bit x86 installer available + + + +fiddler: + '5.0.20181.14850': + full_name: 'Fiddler' + installer: 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe' + install_flags: '/S /D=%ProgramFiles(x86)%\Fiddler' + uninstaller: '%ProgramFiles(x86)%\Fiddler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,356 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.015620231628417969 +2020-03-06 10:57:42,372 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,372 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,372 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:57:42,372 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,388 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +# just 32-bit x86 installer available + + + +# Source: http://filehippo.com/download_update_checker/ +filehippo-app-manager: + '2.0': + full_name: 'FileHippo App Manager' + installer: 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\FileHippo.com\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download manually and place on master salt://win/repo-ng/filehippo-app-manager + +2020-03-06 10:57:42,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,388 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:57:42,388 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,403 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.015620231628417969 +2020-03-06 10:57:42,403 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: + + +filezilla: + + '3.47.1': + full_name: 'FileZilla Client 3.47.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.47.0': + full_name: 'FileZilla Client 3.47.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.3': + full_name: 'FileZilla Client 3.46.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.2': + full_name: 'FileZilla Client 3.46.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.1': + full_name: 'FileZilla Client 3.46.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.0': + full_name: 'FileZilla Client 3.46.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.1': + full_name: 'FileZilla Client 3.45.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.0': + full_name: 'FileZilla Client 3.45.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.2': + full_name: 'FileZilla Client 3.44.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.1': + full_name: 'FileZilla Client 3.44.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.0': + full_name: 'FileZilla Client 3.44.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.43.0': + full_name: 'FileZilla Client 3.43.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.1': + full_name: 'FileZilla Client 3.42.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.0': + full_name: 'FileZilla Client 3.42.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.2': + full_name: 'FileZilla Client 3.41.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.1': + full_name: 'FileZilla Client 3.41.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.0': + full_name: 'FileZilla Client 3.41.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.40.0': + full_name: 'FileZilla Client 3.40.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.39.0': + full_name: 'FileZilla Client 3.39.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.1': + full_name: 'FileZilla Client 3.38.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.0': + full_name: 'FileZilla Client 3.38.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.4': + full_name: 'FileZilla Client 3.37.4' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.3': + full_name: 'FileZilla Client 3.37.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.1': + full_name: 'FileZilla Client 3.37.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.0': + full_name: 'FileZilla Client 3.37.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.36.0': + full_name: 'FileZilla Client 3.36.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.2': + full_name: 'FileZilla Client 3.35.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.1': + full_name: 'FileZilla Client 3.35.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.0': + full_name: 'FileZilla Client 3.35.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.34.0': + full_name: 'FileZilla Client 3.34.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.33.0': + full_name: 'FileZilla Client 3.33.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.32.0': + full_name: 'FileZilla Client 3.32.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.31.0': + full_name: 'FileZilla Client 3.31.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.30.0': + full_name: 'FileZilla Client 3.30.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.29.0': + full_name: 'FileZilla Client 3.29.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.28.0': + full_name: 'FileZilla Client 3.28.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.1': + full_name: 'FileZilla Client 3.27.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0.1': + full_name: 'FileZilla Client 3.27.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0': + full_name: 'FileZilla Client 3.27.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.2': + full_name: 'FileZilla Client 3.26.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.1': + full_name: 'FileZilla Client 3.26.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.0': + full_name: 'FileZilla Client 3.26.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.2': + full_name: 'FileZilla Client 3.25.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.1': + full_name: 'FileZilla Client 3.25.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.0': + full_name: 'FileZilla Client 3.25.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.1': + full_name: 'FileZilla Client 3.24.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.0': + full_name: 'FileZilla Client 3.24.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.2': + full_name: 'FileZilla Client 3.23.0.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.1': + full_name: 'FileZilla Client 3.23.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0': + full_name: 'FileZilla Client 3.23.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.2': + full_name: 'FileZilla Client 3.22.2.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.1': + full_name: 'FileZilla Client 3.22.2.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2': + full_name: 'FileZilla Client 3.22.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.1': + full_name: 'FileZilla Client 3.22.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.0': + full_name: 'FileZilla Client 3.22.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.21.0': + full_name: 'FileZilla Client 3.21.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.1': + full_name: 'FileZilla Client 3.20.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.0': + full_name: 'FileZilla Client 3.20.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.19.0': + full_name: 'FileZilla Client 3.19.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.18.0': + full_name: 'FileZilla Client 3.18.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0.1': + full_name: 'FileZilla Client 3.17.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0': + full_name: 'FileZilla Client 3.17.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.1': + full_name: 'FileZilla Client 3.16.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.0': + full_name: 'FileZilla Client 3.16.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,419 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.015633821487426758 +2020-03-06 10:57:42,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,435 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:57:42,435 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,435 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,451 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +firefox-esr_x64: + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,451 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.01594090461730957 +2020-03-06 10:57:42,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,466 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:57:42,466 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,481 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.014835119247436523 +2020-03-06 10:57:42,481 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +firefox-esr_x86: + + + + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.8.0': + full_name: 'Mozilla Firefox 38.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.1': + full_name: 'Mozilla Firefox 38.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.0': + full_name: 'Mozilla Firefox 38.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.1': + full_name: 'Mozilla Firefox 38.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Firefox 38.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.2': + full_name: 'Mozilla Firefox 38.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.1': + full_name: 'Mozilla Firefox 38.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Firefox 38.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Firefox 38.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Firefox 38.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.1': + full_name: 'Mozilla Firefox 38.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.016150712966918945 +2020-03-06 10:57:42,528 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,529 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:57:42,529 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,544 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.01477503776550293 +2020-03-06 10:57:42,544 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +firefox_x64: + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,560 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,560 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.01613140106201172 +2020-03-06 10:57:42,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,576 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:57:42,576 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,592 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.01605963706970215 +2020-03-06 10:57:42,606 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +firefox_x86: + + + + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.2': + full_name: 'Mozilla Firefox 41.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.1': + full_name: 'Mozilla Firefox 41.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0': + full_name: 'Mozilla Firefox 41.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.3': + full_name: 'Mozilla Firefox 40.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.2': + full_name: 'Mozilla Firefox 40.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0': + full_name: 'Mozilla Firefox 40.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0.3': + full_name: 'Mozilla Firefox 39.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0': + full_name: 'Mozilla Firefox 39.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.6': + full_name: 'Mozilla Firefox 38.0.6 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.5': + full_name: 'Mozilla Firefox 38.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.1': + full_name: 'Mozilla Firefox 38.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0': + full_name: 'Mozilla Firefox 38.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.2': + full_name: 'Mozilla Firefox 37.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.1': + full_name: 'Mozilla Firefox 37.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0': + full_name: 'Mozilla Firefox 37.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.4': + full_name: 'Mozilla Firefox 36.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.3': + full_name: 'Mozilla Firefox 36.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.1': + full_name: 'Mozilla Firefox 36.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0': + full_name: 'Mozilla Firefox 36.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0.1': + full_name: 'Mozilla Firefox 35.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0': + full_name: 'Mozilla Firefox 35.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0.5': + full_name: 'Mozilla Firefox 34.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0': + full_name: 'Mozilla Firefox 34.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1.1': + full_name: 'Mozilla Firefox 33.1.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1': + full_name: 'Mozilla Firefox 33.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.3': + full_name: 'Mozilla Firefox 33.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.2': + full_name: 'Mozilla Firefox 33.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.1': + full_name: 'Mozilla Firefox 33.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0': + full_name: 'Mozilla Firefox 33.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.3': + full_name: 'Mozilla Firefox 32.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.2': + full_name: 'Mozilla Firefox 32.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.1': + full_name: 'Mozilla Firefox 32.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0': + full_name: 'Mozilla Firefox 32.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '31.0': + full_name: 'Mozilla Firefox 31.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '30.0': + full_name: 'Mozilla Firefox 30.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '29.0.1': + full_name: 'Mozilla Firefox 29.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,622 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,622 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.015981435775756836 +2020-03-06 10:57:42,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,638 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:57:42,638 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,653 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.014674663543701172 +2020-03-06 10:57:42,653 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +# just 32-bit x86 installer available + + + + +gedit: + '2.30.1': + full_name: gedit 2.30.1 + installer: https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\gedit\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,653 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,653 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,669 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:57:42,669 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.015683412551879883 +2020-03-06 10:57:42,685 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +# just 32-bit x86 installer available +# Gimp installs into %ProgramFiles on either cpu arch +gimp: + + '2.10.4': + full_name: 'GIMP 2.10.4' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.22': + full_name: 'GIMP 2.8.22' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.16': + full_name: 'GIMP 2.8.16' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.14': + full_name: 'GIMP 2.8.14' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + +2020-03-06 10:57:42,685 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) +2020-03-06 10:57:42,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,701 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,701 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,701 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:57:42,701 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,701 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,701 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +git-extensions: + '2.48.05': + full_name: 'Git Extensions 2.48.05' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.48.03': + full_name: 'Git Extensions 2.48.03' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:42,701 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,701 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,716 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:57:42,716 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,731 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.014882326126098633 +2020-03-06 10:57:42,731 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git + + + + + + + +git: + + + + + + + + + + '2.23.0.windows.1': + full_name: Git version 2.23.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.22.0.windows.1': + full_name: Git version 2.22.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.21.0': + full_name: Git version 2.21.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.1': + full_name: Git version 2.20.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.0': + full_name: Git version 2.20.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.2': + full_name: Git version 2.19.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.1': + full_name: Git version 2.19.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.0': + full_name: Git version 2.19.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.18.0': + full_name: Git version 2.18.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.1.2': + full_name: Git version 2.17.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.0': + full_name: Git version 2.17.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.3': + full_name: Git version 2.16.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.2': + full_name: Git version 2.16.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.0.2': + full_name: Git version 2.16.0.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.15.0': + full_name: Git version 2.15.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.14.2': + full_name: Git version 2.14.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.3': + full_name: Git version 2.13.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.1.2': + full_name: Git version 2.13.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.2': + full_name: Git version 2.12.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.1': + full_name: Git version 2.12.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0.3': + full_name: Git version 2.11.0.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0': + full_name: Git version 2.11.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.2': + full_name: Git version 2.10.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.1': + full_name: Git version 2.10.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.0': + full_name: Git version 2.10.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.9.0': + full_name: Git version 2.9.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.4': + full_name: Git version 2.8.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.3': + full_name: Git version 2.8.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.2': + full_name: Git version 2.8.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.1': + full_name: Git version 2.8.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.2': + full_name: Git version 2.7.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.1': + full_name: Git version 2.7.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.0': + full_name: Git version 2.7.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.4': + full_name: Git version 2.6.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.2': + full_name: Git version 2.6.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.3': + full_name: Git version 2.5.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.2.2': + full_name: Git version 2.5.2.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.0': + full_name: Git version 2.5.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + +msysgit: + '1.9.5-preview20150319': + full_name: 'Git version 1.9.5-preview20150319' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART ' + msiexec: False + locale: en_US + reboot: False + '1.9.5-preview20141217': + full_name: 'Git version 1.9.5-preview20141217' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + '1.9.4-preview20140815': + full_name: 'Git version 1.9.4-preview20140815' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe' + install_flags: '/VERYSILENT /NOREBOOT' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NOREBOOT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,747 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015621185302734375 +2020-03-06 10:57:42,747 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,747 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,763 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:57:42,763 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,778 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +# just 32-bit x86 installer available + + + +glarysoft-absolute-uninstaller: + '5.3.1.23': + full_name: 'Absolute Uninstaller 5.3.1.23' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '5.3.1.21': + full_name: 'Absolute Uninstaller 5.3.1.21' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:42,778 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,778 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,778 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,778 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,778 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:57:42,794 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.015862226486206055 +2020-03-06 10:57:42,794 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +# just 32-bit x86 installer available + + + +gnucash: + '2.6.5': + full_name: 'GnuCash 2.6.5' + installer: 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe' + install_flags: '/SILENT' + uninstaller: '%ProgramFiles(x86)%\gnucash\uninstall\gnucash\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,794 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,810 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:57:42,810 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,826 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.016033411026000977 +2020-03-06 10:57:42,826 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +# "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. +# See https://golang.org/ + + + + + +# Hint: the versionWithTrailingZero is required, because golang sets the version field in Windows to e.g. 1.14.0 or 1.13.0 if 1.14 or 1.13 is installed. +# If we dont do that the version can not be removed anymore via saltstack. + +golang: + + + '1.2.2': + + full_name: 'Go Programming Language amd64 go1.2.2' + installer: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.0': + + full_name: 'Go Programming Language amd64 go1.3' + installer: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.1': + + full_name: 'Go Programming Language amd64 go1.3.1' + installer: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.2': + + full_name: 'Go Programming Language amd64 go1.3.2' + installer: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.3': + + full_name: 'Go Programming Language amd64 go1.3.3' + installer: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.0': + + full_name: 'Go Programming Language amd64 go1.4' + installer: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.1': + + full_name: 'Go Programming Language amd64 go1.4.1' + installer: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.2': + + full_name: 'Go Programming Language amd64 go1.4.2' + installer: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.3': + + full_name: 'Go Programming Language amd64 go1.4.3' + installer: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.0': + + full_name: 'Go Programming Language amd64 go1.5' + installer: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.1': + + full_name: 'Go Programming Language amd64 go1.5.1' + installer: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.2': + + full_name: 'Go Programming Language amd64 go1.5.2' + installer: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.3': + + full_name: 'Go Programming Language amd64 go1.5.3' + installer: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.4': + + full_name: 'Go Programming Language amd64 go1.5.4' + installer: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.0': + + full_name: 'Go Programming Language amd64 go1.6' + installer: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.1': + + full_name: 'Go Programming Language amd64 go1.6.1' + installer: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.2': + + full_name: 'Go Programming Language amd64 go1.6.2' + installer: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.3': + + full_name: 'Go Programming Language amd64 go1.6.3' + installer: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.4': + + full_name: 'Go Programming Language amd64 go1.6.4' + installer: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.0': + + full_name: 'Go Programming Language amd64 go1.7' + installer: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.1': + + full_name: 'Go Programming Language amd64 go1.7.1' + installer: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.2': + + full_name: 'Go Programming Language amd64 go1.7.2' + installer: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.3': + + full_name: 'Go Programming Language amd64 go1.7.3' + installer: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.4': + + full_name: 'Go Programming Language amd64 go1.7.4' + installer: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.5': + + full_name: 'Go Programming Language amd64 go1.7.5' + installer: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.6': + + full_name: 'Go Programming Language amd64 go1.7.6' + installer: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.0': + + full_name: 'Go Programming Language amd64 go1.8' + installer: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.1': + + full_name: 'Go Programming Language amd64 go1.8.1' + installer: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.2': + + full_name: 'Go Programming Language amd64 go1.8.2' + installer: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.3': + + full_name: 'Go Programming Language amd64 go1.8.3' + installer: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.4': + + full_name: 'Go Programming Language amd64 go1.8.4' + installer: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.5': + + full_name: 'Go Programming Language amd64 go1.8.5' + installer: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.6': + + full_name: 'Go Programming Language amd64 go1.8.6' + installer: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.7': + + full_name: 'Go Programming Language amd64 go1.8.7' + installer: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.0': + + full_name: 'Go Programming Language amd64 go1.9' + installer: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.1': + + full_name: 'Go Programming Language amd64 go1.9.1' + installer: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.2': + + full_name: 'Go Programming Language amd64 go1.9.2' + installer: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.3': + + full_name: 'Go Programming Language amd64 go1.9.3' + installer: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.4': + + full_name: 'Go Programming Language amd64 go1.9.4' + installer: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + + full_name: 'Go Programming Language amd64 go1.9.5' + installer: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.6': + + full_name: 'Go Programming Language amd64 go1.9.6' + installer: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.7': + + full_name: 'Go Programming Language amd64 go1.9.7' + installer: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.0': + + full_name: 'Go Programming Language amd64 go1.10' + installer: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.1': + + full_name: 'Go Programming Language amd64 go1.10.1' + installer: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.2': + + full_name: 'Go Programming Language amd64 go1.10.2' + installer: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.3': + + full_name: 'Go Programming Language amd64 go1.10.3' + installer: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.4': + + full_name: 'Go Programming Language amd64 go1.10.4' + installer: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.5': + + full_name: 'Go Programming Language amd64 go1.10.5' + installer: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.6': + + full_name: 'Go Programming Language amd64 go1.10.6' + installer: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.7': + + full_name: 'Go Programming Language amd64 go1.10.7' + installer: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.8': + + full_name: 'Go Programming Language amd64 go1.10.8' + installer: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.0': + + full_name: 'Go Programming Language amd64 go1.11' + installer: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.1': + + full_name: 'Go Programming Language amd64 go1.11.1' + installer: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.2': + + full_name: 'Go Programming Language amd64 go1.11.2' + installer: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.3': + + full_name: 'Go Programming Language amd64 go1.11.3' + installer: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.4': + + full_name: 'Go Programming Language amd64 go1.11.4' + installer: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.5': + + full_name: 'Go Programming Language amd64 go1.11.5' + installer: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.6': + + full_name: 'Go Programming Language amd64 go1.11.6' + installer: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.7': + + full_name: 'Go Programming Language amd64 go1.11.7' + installer: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.8': + + full_name: 'Go Programming Language amd64 go1.11.8' + installer: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.9': + + full_name: 'Go Programming Language amd64 go1.11.9' + installer: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.10': + + full_name: 'Go Programming Language amd64 go1.11.10' + installer: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.11': + + full_name: 'Go Programming Language amd64 go1.11.11' + installer: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.12': + + full_name: 'Go Programming Language amd64 go1.11.12' + installer: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.13': + + full_name: 'Go Programming Language amd64 go1.11.13' + installer: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.0': + + full_name: 'Go Programming Language amd64 go1.12' + installer: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.1': + + full_name: 'Go Programming Language amd64 go1.12.1' + installer: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.2': + + full_name: 'Go Programming Language amd64 go1.12.2' + installer: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.3': + + full_name: 'Go Programming Language amd64 go1.12.3' + installer: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.4': + + full_name: 'Go Programming Language amd64 go1.12.4' + installer: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.5': + + full_name: 'Go Programming Language amd64 go1.12.5' + installer: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.6': + + full_name: 'Go Programming Language amd64 go1.12.6' + installer: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.7': + + full_name: 'Go Programming Language amd64 go1.12.7' + installer: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.8': + + full_name: 'Go Programming Language amd64 go1.12.8' + installer: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.9': + + full_name: 'Go Programming Language amd64 go1.12.9' + installer: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.10': + + full_name: 'Go Programming Language amd64 go1.12.10' + installer: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.11': + + full_name: 'Go Programming Language amd64 go1.12.11' + installer: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.12': + + full_name: 'Go Programming Language amd64 go1.12.12' + installer: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.13': + + full_name: 'Go Programming Language amd64 go1.12.13' + installer: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.14': + + full_name: 'Go Programming Language amd64 go1.12.14' + installer: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.15': + + full_name: 'Go Programming Language amd64 go1.12.15' + installer: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.16': + + full_name: 'Go Programming Language amd64 go1.12.16' + installer: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.17': + + full_name: 'Go Programming Language amd64 go1.12.17' + installer: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.0': + + full_name: 'Go Programming Language amd64 go1.13' + installer: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.1': + + full_name: 'Go Programming Language amd64 go1.13.1' + installer: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.2': + + full_name: 'Go Programming Language amd64 go1.13.2' + installer: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.3': + + full_name: 'Go Programming Language amd64 go1.13.3' + installer: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.4': + + full_name: 'Go Programming Language amd64 go1.13.4' + installer: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.5': + + full_name: 'Go Programming Language amd64 go1.13.5' + installer: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.6': + + full_name: 'Go Programming Language amd64 go1.13.6' + installer: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.7': + + full_name: 'Go Programming Language amd64 go1.13.7' + installer: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.8': + + full_name: 'Go Programming Language amd64 go1.13.8' + installer: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.14.0': + + full_name: 'Go Programming Language amd64 go1.14' + installer: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:42,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,857 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.031736135482788086 +2020-03-06 10:57:42,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,872 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:57:42,872 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,872 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +goodsync: + '9.9.46.6': + full_name: 'GoodSync' + installer: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:42,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.01590132713317871 +2020-03-06 10:57:42,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,888 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:57:42,888 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,903 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +# just 32-bit x86 installer available + + + +gow: + 'Not Found': + full_name: 'Gow' + installer: 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Gow\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + # Gow - GNU on Windows - The lightweight alternative to Cygwin + # https://github.com/bmatzelle/gow/wiki + +2020-03-06 10:57:42,903 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,903 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,903 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,903 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,903 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:57:42,903 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0157012939453125 +2020-03-06 10:57:42,919 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +# just 32-bit x86 installer available + + + +gpg4win-light: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream +# Here are work around instructions under Issue #113 in the meantime +# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 +# + +2020-03-06 10:57:42,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,935 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:57:42,935 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:42,935 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +# just 32-bit x86 installer available + + + +gpg4win-vanilla: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,935 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,950 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:57:42,950 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.01563405990600586 +2020-03-06 10:57:42,966 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: + + +graylog-collector-sidecar: + + '0.1.6': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.5': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.4': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.3': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.2': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.1': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.0': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:42,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,981 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:57:42,981 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:42,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.01578974723815918 +2020-03-06 10:57:42,997 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +grepwin: + '1.6.682': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.673': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.661': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.646': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:42,997 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:42,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:42,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:42,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:42,997 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:57:43,013 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,013 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +# just 32-bit x86 installer available + + + +gvim: + 'Not Found': + full_name: 'Vim 8.0.3' + installer: 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Vim\vim80\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,013 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,029 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,044 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:57:43,044 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,059 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +# Source: https://handbrake.fr +handbrake: + '0.10.5': + full_name: 'Handbrake 0.10.5' + + installer: 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Handbrake\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,059 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,059 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,059 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,059 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,059 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:57:43,059 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.01598048210144043 +2020-03-06 10:57:43,075 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +hipchat: + + + + '4.0.1650': + installer: 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe' + full_name: 'HipChat' + install_flags: '/sp /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Atlassian\Hipchat4\unins000.exe' + uninstall_flags: '/sp /verysilent' + msiexec: False + reboot: False + +2020-03-06 10:57:43,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:57:43,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,075 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:57:43,091 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,091 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +hostsfileeditor: + '1.2.0': + + full_name: 'Hosts File Editor' + installer: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + uninstaller: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,107 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:57:43,122 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,122 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,122 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: + +hwinfo: + '5.70': + + full_name: 'HWiNFO64 Version 5.70' + installer: 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe' + uninstaller: '%PROGRAMFILES%\HWiNFO64\unins000.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,122 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,122 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,138 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:57:43,138 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,138 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +ice: + '3.6.1.2': + full_name: 'Ice 3.6.1.2' + installer: 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi' + uninstaller: '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,154 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:57:43,154 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,154 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,154 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +# just 32-bit x86 installer available + + + +icecast: + '2.4.2': + full_name: 'Icecast' + installer: 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Icecast\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,154 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.015729427337646484 +2020-03-06 10:57:43,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,169 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:57:43,169 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +icloud: + '7.3.0.20': + full_name: iCloud + installer: 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,185 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:57:43,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,201 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.015628814697265625 +2020-03-06 10:57:43,201 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +iismediaservices: + '4.1.0938.454': + full_name: 'IIS Media Services 4.1' + + installer: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '4.0.0938.54': + full_name: 'IIS Media Services 4.0' + + installer: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '2.0.1': + full_name: 'IIS Media Services 2.0' + + installer: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,201 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,201 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,216 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:57:43,216 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,216 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +influx-capacitor: + '1.0.89': + full_name: 'Influx Capacitor' + installer: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + install_flags: '/q' + uninstaller: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + uninstall_flags: '/q' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,216 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,231 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,231 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:57:43,231 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,231 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,231 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +inkscape: + '0.91': + full_name: 'Inkscape 0.91' + + installer: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + uninstaller: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,247 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,247 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:57:43,247 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.016084909439086914 +2020-03-06 10:57:43,263 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +# just 32-bit x86 installer available + + + +intellij-community: + + '14.1.4': + full_name: 'IntelliJ IDEAS Community Edition 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:43,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,263 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:57:43,279 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,279 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +# just 32-bit x86 installer available + + + +intellij-ultimate: + + '14.1.4': + full_name: 'IntelliJ IDEAS Ultimate 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:43,279 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,294 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:57:43,294 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,294 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +internet-evidence-finder: + '6.2.3.0001': + full_name: 'Internet Evidence Finder' + installer: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,310 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.015690088272094727 +2020-03-06 10:57:43,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,310 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:57:43,310 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,326 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.015405654907226562 +2020-03-06 10:57:43,326 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +irfanview-plugins: + '4.42': + + full_name: 'Irfanview Plugins 4.40' + installer: 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe' + # download manually from: http://www.irfanview.info/files/irfanview_plugins_x64_442_setup.exe and place on master + + install_flags: '/silent' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,326 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,326 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,326 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,326 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,326 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:57:43,326 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.015670061111450195 +2020-03-06 10:57:43,341 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +irfanview: + '4.51': + + full_name: 'IrfanView 64 (remove only)' + installer: 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe' + # download manually from: http://www.irfanview.info/files/iview451_x64_setup.exe and place on master + + install_flags: '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0' + uninstaller: '%ProgramFiles%\irfanview\iv_uninstall.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False +# install_flags +# folder: destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used +# silent: silent install - no prompts +# desktop: create desktop shortcut; 0 = no, 1 = yes (default: 0) +# thumbs: create desktop shortcut for thumbnails; 0 = no, 1 = yes (default: 0) +# group: create group in Start Menu; 0 = no, 1 = yes (default: 0) +# allusers: desktop/group links are for all users; 0 = current user, 1 = all users +# assoc: if used, set file associations; 0 = none, 1 = images only, 2 = select all (default: 0) +# assocallusers: if used, set associations for all users (Windows XP only) +# ini: if used, set custom INI file folder (system environment variables are allowed) + +2020-03-06 10:57:43,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,341 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:57:43,357 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,357 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,357 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +isapirewrite-lite: + '3.1.0112': + full_name: 'Helicon ISAPI_Rewrite 3 Lite' + + installer: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + uninstaller: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,357 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,357 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,357 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,357 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,372 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:57:43,372 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,388 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +itunes: + '12.8.0.150': + full_name: 'iTunes' + + installer: 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe' + uninstall_flags: | + '/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} & + msiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} & + msiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} & + msiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} & + msiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} & + msiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} & + exit 0' + # the above uninstalls: + # Bonjour64 v. 3.1.0.1 {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} + # Apple Software Update v. 2.6.0.1 {A30EA700-5515-48F0-88B0-9E99DC356B88} + # Apple Mobile Device Support (64-bit) v. 11.4.1.46 {C29B636B-9015-4ED1-A12F-6375A337F23B} + # Apple Application Support (32-bit) v. 6.6 {C56BA005-F02C-461B-ACA5-A0CE3E32578F} + # Apple Application Support (64-bit) v. 6.6 {D745E014-74DD-43A3-98DF-E7D38164B681} + # iTunes v. 12.8.0.150 {36F365B3-05C2-455D-9D96-B73829DE046D} + + install_flags: '/quiet /qn ALLUSERS=1 /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,388 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:57:43,404 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,404 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,404 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way +# to find manual download links for any version use: +# http://www.java.com/en/download/manual.jsp +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + +jdk8: + '8.0.1440.1': + + full_name: 'Java SE Development Kit 8 Update 144 (64-bit)' + installer: salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe + + install_flags: '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"' + uninstall_flags: '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,404 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,404 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,419 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:57:43,419 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,419 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +jre: + '7.0.790': + + full_name: 'Java 7 Update 79 (64-bit)' + installer: 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/s REBOOT=Suppress SPONSORS=0' + msiexec: False + locale: en_US + reboot: False + # due to winrepo installer limitations you need to manually download the exe from + # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 + # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way + +2020-03-06 10:57:43,419 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,434 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.015715837478637695 +2020-03-06 10:57:43,434 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,434 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,434 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:57:43,434 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,450 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.015644073486328125 +2020-03-06 10:57:43,450 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://www.java.com/en/download/manual.jsp +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + + + +jre8: + + + + '8.0.2010.9': + + full_name: 'Java 8 Update 201 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2110.9': + + full_name: 'Java 8 Update 211 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2210.9': + + full_name: 'Java 8 Update 221 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2310.9': + + full_name: 'Java 8 Update 231 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2410.7': + + full_name: 'Java 8 Update 241 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:43,450 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,450 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,466 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:57:43,466 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,466 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +jungledisk-server-management: + '3.23.0.2': + full_name: 'Jungle Disk Server Management' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-management64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,466 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,481 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,481 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:57:43,481 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,481 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,481 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +jungledisk-server: + '3.23.0.2': + full_name: 'Jungle Disk Server' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,481 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,481 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,497 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:57:43,497 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,497 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +jungledisk-workgroup: + '3.23.0.2': + full_name: 'Jungle Disk Workgroup' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,513 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:57:43,513 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,513 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +kdiff3: + 'Not Found': + full_name: 'KDiff3 (remove only)' + + installer: 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe' + + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\KDiff3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,513 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,529 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.015705347061157227 +2020-03-06 10:57:43,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,529 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:57:43,529 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,545 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.016111135482788086 +2020-03-06 10:57:43,545 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +# Keepass 2.x installation from https://keepass.info/ +# to keep the versioning in the format of "2..minor", two seperate version arrays are created. + + + +# Hint: Version 2.24 is the first version that provides a msi-package, all versions before had a -Setup.exe + + +keepass-2x: + + + '2.24.0': + full_name: 'KeePass 2.24' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.25.0': + full_name: 'KeePass 2.25' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.26.0': + full_name: 'KeePass 2.26' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.27.0': + full_name: 'KeePass 2.27' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.28.0': + full_name: 'KeePass 2.28' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.29.0': + full_name: 'KeePass 2.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.30.0': + full_name: 'KeePass 2.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.31.0': + full_name: 'KeePass 2.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.32.0': + full_name: 'KeePass 2.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.33.0': + full_name: 'KeePass 2.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.34.0': + full_name: 'KeePass 2.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.35.0': + full_name: 'KeePass 2.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.36.0': + full_name: 'KeePass 2.36' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.37.0': + full_name: 'KeePass 2.37' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.38.0': + full_name: 'KeePass 2.38' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.0': + full_name: 'KeePass 2.39' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.40.0': + full_name: 'KeePass 2.40' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.41.0': + full_name: 'KeePass 2.41' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.0': + full_name: 'KeePass 2.42' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.43.0': + full_name: 'KeePass 2.43' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.44.0': + full_name: 'KeePass 2.44' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.1': + full_name: 'KeePass 2.39.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.1': + full_name: 'KeePass 2.42.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,545 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,545 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,559 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,559 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,559 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:57:43,559 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,559 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,559 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +keepass: + '1.35.0': + full_name: 'KeePass 1.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.34.0': + full_name: 'KeePass 1.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.33.0': + full_name: 'KeePass 1.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.32.0': + full_name: 'KeePass 1.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.31.0': + full_name: 'KeePass 1.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.30.0': + full_name: 'KeePass 1.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.29.0': + full_name: 'KeePass 1.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,575 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,575 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,575 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:57:43,575 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.015757322311401367 +2020-03-06 10:57:43,591 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +# just 32-bit x86 installer available + + + +lastpass: + 'Not Found': + full_name: 'LastPass (uninstall only)' + + installer: 'https://lastpass.eu/sync/lastpass_x64.exe' + + install_flags: '-si --userinstallie --userinstallff --userinstallchrome' + uninstaller: '%PROGRAMFILES(x86)%\LastPass\lastpass.exe' + uninstall_flags: '-sb' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,591 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,591 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:57:43,606 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,606 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,606 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +# NOTE: If the lazarus installation directory exists the installation will +# pop up a dialog box. This will cause the minion to hang because it +# is waiting for the user to click continue on a dialog box that will +# never be seen. So, before running this, make sure the lazarus +# installation directory is not present. +# If doing an upgrade that means you'll have to do something like the +# following: +# pkg.remove lazarus +# file.remove c:\lazarus +# pkg.install lazarus + + +lazarus: + + '1.8.0': + full_name: Lazarus 1.8.0 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + '1.6.4': + full_name: Lazarus 1.6.4 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + +2020-03-06 10:57:43,606 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) +2020-03-06 10:57:43,606 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,623 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,623 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,623 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:57:43,623 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.015642881393432617 +2020-03-06 10:57:43,638 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +libreoffice: + + '5.3.5.2': + full_name: 'LibreOffice 5.3.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.3.6.1': + full_name: 'LibreOffice 5.3.6.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.6.2': + full_name: 'LibreOffice 5.4.6.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.7.2': + full_name: 'LibreOffice 5.4.7.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.0.5.2': + full_name: 'LibreOffice 6.0.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.2.7.1': + full_name: 'LibreOffice 6.2.7.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:43,638 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,654 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:57:43,654 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,654 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,654 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +logparser: + '2.2.10': + full_name: 'Log Parser 2.2' + installer: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,654 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,669 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:57:43,669 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,685 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +# just 32-bit x86 installer available + + + +maas360bootanalyzer: + '1.0.0': + full_name: 'MaaS360 Boot Analyzer v 1.0.0' + installer: 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe' + + install_flags: | + '/S & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v UninstallString /d "C:\Program Files (x86)\BootAnalyzer\Uninstall.exe" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" & + exit 0' + + uninstaller: '%PROGRAMFILES(x86)%\MaaS360\BootAnalyzer\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory + +2020-03-06 10:57:43,685 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,685 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:57:43,685 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,700 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.015682220458984375 +2020-03-06 10:57:43,700 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.malwarebytes.org +malwarebytes: + '3.5.1.2522': + full_name: 'Malwarebytes Anti-Malware version 2.0.4.1028' + installer: 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Malwarebytes Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: Falsea + +2020-03-06 10:57:43,700 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) +2020-03-06 10:57:43,700 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,700 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:57:43,716 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,731 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.015656232833862305 +2020-03-06 10:57:43,731 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +#MariaDB https://downloads.mariadb.org/mariadb/+releases/ +#only stable versions are listed + + + + + + + + +mariadb: + + + '10.0.38.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.37.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.36.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.35.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.34.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.33.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.32.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.29.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.28.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.27.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.26.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.25.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.23.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.19.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.18.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.17.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.16.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '5.5.63.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.62.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.61.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.60.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.59.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.58.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.57.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.56.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.55.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.54.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.53.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.52.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.51.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.50.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.49.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.48.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.47.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.1.38.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.37.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.36.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.35.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.34.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.33.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.32.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.31.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.30.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.29.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.28.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.27.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.26.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.25.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.24.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.23.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.22.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.21.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.19.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.18.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.17.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.16.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.14.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.13.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.12.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.11.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.10.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.9.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.8.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.2.22.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.21.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.20.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.19.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.18.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.16.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.15.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.14.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.13.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.12.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.11.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.10.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.9.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.8.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.6.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:57:43,747 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:57:43,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.01629495620727539 +2020-03-06 10:57:43,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,778 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,778 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:57:43,778 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,778 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,794 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +mercurial: + '3.1.1': + + full_name: 'Mercurial 3.1.1 (x64)' + installer: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + uninstaller: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,794 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,794 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:57:43,810 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,810 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +messageanalyzer: + '4.0.7551.0': + full_name: 'Microsoft Message Analyzer' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi' + + install_flags: '/quiet /norestart' + uninstaller: '{1CC02C23-8FCD-487E-860C-311EC0A0C933}' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,825 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:57:43,825 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.01564788818359375 +2020-03-06 10:57:43,841 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +microsoft-build-tools: + '14.0.23107': + + full_name: 'Microsoft Build Tools 14.0 (amd64)' + uninstall_flags: '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart' + + installer: 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe' + install_flags: '/Q /NoRestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,841 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,841 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:57:43,857 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,857 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,857 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +mikogo: + '5.3.0': + full_name: 'Mikogo' + installer: 'https://download.mikogo4.com/mikogo-starter.exe' + install_flags: '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0' + uninstaller: '%AppData%\Mikogo\remover.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,857 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,872 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:57:43,872 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,872 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +miktex-basic: + '2.9': + full_name: 'MiKTeX 2.9' + + installer: 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe' + + install_flags: '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\MiKTeX 2.9\"' + uninstaller: 'cmd' + uninstall_flags: | + '/c del /Q /F /S "%ProgramFiles%\MiKTeX 2.9\" & + reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MiKTeX 2.9" /f & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.015621662139892578 +2020-03-06 10:57:43,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,888 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:57:43,888 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,903 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.01576089859008789 +2020-03-06 10:57:43,903 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +mongodb: + '3.3.5': + full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6': + full_name: 'MongoDB 3.2.6 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,903 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,903 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,903 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,903 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,903 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:57:43,919 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,919 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +ms-mbsa: + '2.3.2211': + + installer: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + uninstaller: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + + full_name: 'Microsoft Baseline Security Analyzer 2.3' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:43,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,935 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:57:43,935 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,935 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +ms-vcpp-2005-atl-redist_x64: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,935 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,951 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,951 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:57:43,951 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,951 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,951 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +ms-vcpp-2005-atl-redist_x86: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,951 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,951 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,951 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,966 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:57:43,966 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,966 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +ms-vcpp-2005-redist_x64: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,982 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,982 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,982 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:57:43,982 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,982 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:43,982 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +ms-vcpp-2005-redist_x86: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:43,982 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:43,982 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:43,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:43,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:43,997 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:57:43,997 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:43,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,013 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +ms-vcpp-2005-sp1-mfc-redist_x64: + '8.0.61000': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,013 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,013 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:57:44,029 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.030895233154296875 +2020-03-06 10:57:44,044 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +ms-vcpp-2005-sp1-mfc-redist_x86: + '8.0.61001': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,044 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:57:44,059 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,059 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,059 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +ms-vcpp-2005-sp1-redist_x64: + '8.0.59192': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,059 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,059 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,059 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,059 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,075 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:57:44,075 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,075 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +ms-vcpp-2005-sp1-redist_x86: + '8.0.59193': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,075 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,091 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:57:44,091 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,091 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +ms-vcpp-2008-redist_x64: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' + installer: 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,107 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.015655994415283203 +2020-03-06 10:57:44,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,107 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:57:44,107 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,122 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.014856815338134766 +2020-03-06 10:57:44,122 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +ms-vcpp-2008-redist_x86: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' + installer: 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,122 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,122 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,122 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:57:44,138 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,138 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +ms-vcpp-2008-sp1-atl-redist_x64: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,138 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:57:44,153 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,153 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,153 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +ms-vcpp-2008-sp1-atl-redist_x86: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,153 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,153 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,153 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,153 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:57:44,169 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +ms-vcpp-2008-sp1-mfc-redist_x64: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,185 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:57:44,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,185 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +ms-vcpp-2008-sp1-mfc-redist_x86: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,200 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:57:44,200 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,200 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,200 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +ms-vcpp-2010-sp1-mfc-redist_x64: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,200 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,200 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,216 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:57:44,216 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,216 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +ms-vcpp-2010-sp1-mfc-redist_x86: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,216 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,232 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:57:44,232 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,232 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,232 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +ms-vcpp-2012-redist_x64: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ProgramData%\Package Cache\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\vcredist_x64.exe' + uninstall_flags: '/quiet /uninstall /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,232 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,232 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,247 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:57:44,247 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.015714645385742188 +2020-03-06 10:57:44,263 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +ms-vcpp-2012-redist_x86: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: '"%ProgramData%\Package Cache\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\vcredist_x86.exe"' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,279 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:57:44,279 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,279 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +ms-vcpp-2013-redist_x64: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,279 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,294 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:57:44,294 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,294 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +ms-vcpp-2013-redist_x86: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,310 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:57:44,310 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,310 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,325 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +ms-vcpp-2015-build-tools: + '14.0.25420.1': + full_name: 'Microsoft Visual C++ Build Tools' + installer: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + install_flags: '/Q /Silent /NoRestart' + uninstaller: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + uninstall_flags: '/Q /U /Silent /NoRestart' + locale: en_US + reboot: False + +2020-03-06 10:57:44,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,325 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,325 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,325 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,325 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:57:44,325 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.016122817993164062 +2020-03-06 10:57:44,341 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +ms-vcpp-2015-redist_x64: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} + # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} + +2020-03-06 10:57:44,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,341 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:57:44,357 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,357 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,357 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +ms-vcpp-2015-redist_x86: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} + +2020-03-06 10:57:44,372 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,372 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,372 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,372 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:57:44,372 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.015735864639282227 +2020-03-06 10:57:44,388 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +ms-vcpp-2017-redist_x64: + '14.20.27508.1': + full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + '14.20.27508': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,388 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:57:44,388 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,403 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.015669822692871094 +2020-03-06 10:57:44,403 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +ms-vcpp-2017-redist_x86: + '14.11.25325.0': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' + installer: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:44,403 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,403 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,403 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,403 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,403 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:57:44,403 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.015659809112548828 +2020-03-06 10:57:44,419 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: + + + + +mucommander: + + '0.9.2': + full_name: 'muCommander (remove only)' + installer: 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe' + uninstaller: '%PROGRAMFILES(x86)%\muCommander\uninstaller.exe' + install_flags: '/S' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:57:44,419 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,435 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:57:44,435 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,435 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,435 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +mysql-essential: + '5.1.73': + full_name: 'MySQL Server 5.1' + + installer: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:44,435 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,435 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,451 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,451 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,451 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:57:44,451 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,451 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,466 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +mysql-installer-community: + '1.4.3.0': + full_name: 'MySQL Installer - Community' + installer: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Read for MySQL Server 5.6.23.0 Community installation instructions: +# https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html +# https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html + +2020-03-06 10:57:44,466 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,466 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:57:44,466 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.01571369171142578 +2020-03-06 10:57:44,482 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +mysql-workbench-community: + + '8.0.15': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.14': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.13': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + +2020-03-06 10:57:44,482 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,482 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:57:44,498 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,498 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,498 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +never10: + '1.3': + full_name: 'Never 10 (GRC)' + installer: 'https://www.grc.com/files/never10.exe' + install_flags: 'update delete disable' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False +# download it from https://www.grc.com/never10.htm + +2020-03-06 10:57:44,498 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,498 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,513 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:57:44,513 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,528 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +# Please note that per +# https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows +# the MSI uninstall does not remove files or settings, +# and the service must be stopped beforehand. +# +# So this uninstall is not going to work. + +newrelic-infra: + + '1.0.279': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.292': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.296': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.301': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.311': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.316': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.323': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.336': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.338': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.341': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.673': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.677': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.682': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.690': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.703': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:44,528 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,528 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,528 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,528 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,544 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:57:44,544 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,560 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.016112565994262695 +2020-03-06 10:57:44,560 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +nextcloud-client: + + '2.2.3.4': + full_name: 'Nextcloud Client 2.2.3.4' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.2.4.2': + full_name: 'Nextcloud Client 2.2.4.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.1.8': + full_name: 'Nextcloud Client 2.3.1.8' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.2.1': + full_name: 'Nextcloud Client 2.3.2.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.3.1': + full_name: 'Nextcloud Client 2.3.3.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.0': + full_name: 'Nextcloud Client 2.5.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.1': + full_name: 'Nextcloud Client 2.5.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.2': + full_name: 'Nextcloud Client 2.5.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.3': + full_name: 'Nextcloud Client 2.5.3' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.6.0': + full_name: 'Nextcloud Client 2.6.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:57:44,560 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,560 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,576 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:57:44,576 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,576 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,576 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: + + +# just 32-bit x86 installer available + + + +nmap: + + '7.70': + full_name: 'Nmap 7.70' + installer: 'https://nmap.org/dist/nmap-7.70-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '7.60': + full_name: 'Nmap 7.60' + installer: 'https://nmap.org/dist/nmap-7.60-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:44,576 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.015244245529174805 +2020-03-06 10:57:44,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,591 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:57:44,591 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,607 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.015824317932128906 +2020-03-06 10:57:44,607 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +node.js-lts: + + '12.13.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.17.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.11.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.9.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:44,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,607 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,622 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:57:44,622 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,622 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,622 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +node.js: + + '13.1.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.6.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '11.14.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '9.11.2': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + uninstaller: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.10.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:44,622 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.015763044357299805 +2020-03-06 10:57:44,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,638 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:57:44,638 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,654 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.015636920928955078 +2020-03-06 10:57:44,654 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +nomacs: + + '3.8.0': + full_name: 'nomacs - Image Lounge' + installer: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:44,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,654 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,654 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,654 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,654 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:57:44,670 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,670 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.01588916778564453 +2020-03-06 10:57:44,670 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +# just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. + + + +npp: + + + '7.7.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.9': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.8': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.5': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.4.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +# the 64-bit installer is available from: +# https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe + +2020-03-06 10:57:44,716 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,732 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.062116384506225586 +2020-03-06 10:57:44,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,732 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:57:44,747 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,763 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +nsclient: + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2039': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2029': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1046': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1044': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.0062': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.23': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.19': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.143': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.88': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:44,763 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,763 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:57:44,779 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,779 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,779 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +# Define versions + + +nsis: + + + '3.03': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02.1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.01': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.51': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.50': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.49': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.48': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.47': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.46': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0b2': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0b1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:44,794 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.015639066696166992 +2020-03-06 10:57:44,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,794 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:57:44,794 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.015720844268798828 +2020-03-06 10:57:44,810 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +# Install Meinberg NTP daemon for Windows +# Note: To do a silent installation, this installer needs a setup file named +# setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. +# The file is documented at +# https://www.meinberg.de/german/sw/readme-ntpinstaller.htm#unattended + + + +ntp: + + '4.2.8p13': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p12': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p11': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:44,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,826 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,826 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:57:44,826 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.015838623046875 +2020-03-06 10:57:44,841 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: + + + +nunit-console: + + + '3.9.0': + full_name: 'NUnit Console 3.9.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.8.0': + full_name: 'NUnit Console 3.8.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.7.0': + full_name: 'NUnit Console 3.7.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:57:44,841 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:57:44,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,856 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,856 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:57:44,856 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,856 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,856 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +nxlog: + '2.10.2150': + full_name: 'NXLog-CE' + installer: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:44,856 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,856 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,872 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:57:44,872 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,872 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +octopus-tentacle: + 'latest': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://octopus.com/downloads/latest/OctopusTentacle64' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://octopus.com/downloads/latest/OctopusTentacle64' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.17': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.16': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:44,888 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,888 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:57:44,888 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,904 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.015941858291625977 +2020-03-06 10:57:44,904 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +# Source: http://openlp.org/ +# just 32-bit x86 installer available + + + + +openlp: + + '2.4.6': + full_name: 'OpenLP 2.4.6' + installer: 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'OpenLP 2.2.1' + installer: 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:44,904 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,904 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,904 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,904 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,919 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:57:44,919 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,919 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +openoffice: + '4.1.2': + full_name: 'OpenOffice 4.1.2' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart' + msiexec: False + locale: en_US + reboot: False + '4.1.1': + full_name: 'OpenOffice 4.1.1' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart' + msiexec: False + locale: en_US + reboot: False +# +# for other languages replace the two occurrences of 'en-US' +# in the download URL with your local two or four letter code below: +# +# 'el', 'en-GB', 'es', 'eu', 'ca', +# 'ca-XR', 'ca-XV', 'cs', 'ru', 'zh-CN', +# 'zh-TW', 'vi', 'ta', 'th', 'tr', 'sk', +# 'sl', 'sr', 'sv', 'pl', 'pt', 'pt-BR', +# 'nb', 'nl', 'lt', 'km', 'ko', 'ja', +# 'it', 'he', 'hi', 'hu', 'gd', 'gl', +# 'fi', 'fr', 'da', 'de', 'bg', 'ast' +# + +2020-03-06 10:57:44,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,935 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:57:44,935 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.014757871627807617 +2020-03-06 10:57:44,950 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +openvpn: + +# Combined installer since v2.4+ so no arch needed + + '2.4.7-I607-Win10': + full_name: 'OpenVPN 2.4.7-I607-Win10 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.6-I602': + full_name: 'OpenVPN 2.4.6-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.5-I601': + full_name: 'OpenVPN 2.4.5-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.4-I601': + full_name: 'OpenVPN 2.4.4-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I602': + full_name: 'OpenVPN 2.4.3-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I601': + full_name: 'OpenVPN 2.4.3-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + + '2.3.17-I601': + full_name: 'OpenVPN 2.3.17-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.12-I601': + full_name: 'OpenVPN 2.3.12-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.11-I601': + full_name: 'OpenVPN 2.3.11-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.10-I603': + full_name: 'OpenVPN 2.3.10-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.8-I601': + full_name: 'OpenVPN 2.3.8-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.6-I601': + full_name: 'OpenVPN 2.3.6-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# https://chocolatey.org/packages/openvpn +# Install with the following options: +# /SELECTSHORTCUTS=1 - create the start menu shortcuts +# /SELECTOPENVPN=1 - OpenVPN itself +# /SELECTSERVICE=1 - install the OpenVPN service +# /SELECTTAP=1 - install the TAP device driver +# /SELECTOPENVPNGUI=1 - install the default OpenVPN GUI +# /SELECTASSOCIATIONS=1 - associate with .ovpn files +# /SELECTOPENSSLUTILITIES=1 - install the utilities for generating public-private key pairs +# /SELECTEASYRSA=1 - install the RSA X509 certificate management scripts +# /SELECTPATH=1 - add openvpn.exe in PATH +# /SELECTOPENSSLDLLS=1 - dependencies - OpenSSL DLL's +# /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's +# /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's + +2020-03-06 10:57:44,950 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,966 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:57:44,966 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:44,966 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +# Performant endpoint visibility https://osquery.io/ + + + +osquery: + + '3.3.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.3.0': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.6': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.4': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '2.11.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:57:44,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:57:44,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,982 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,982 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,982 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:57:44,982 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:44,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.015642642974853516 +2020-03-06 10:57:44,997 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +# just 32-bit x86 installer available + + + + + + + + + +ossec-agent: + + + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:44,997 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:44,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:44,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:44,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:44,997 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:57:45,013 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,028 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +owncloud: + + + + + '2.2.4.6408': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2.6192': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1.6146': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0.6076': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.1.1.5837': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,028 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,028 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,028 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,028 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,028 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:57:45,044 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,044 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +pandoc: + '1.17.0.2': + full_name: 'Pandoc 1.17.0.2' + installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,060 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:57:45,060 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,076 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.015810728073120117 +2020-03-06 10:57:45,076 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +parallels-client-15: + '15.0.3869': + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + uninstaller: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# The latest RAS clients can be downloaded for FREE from: +# https://www.parallels.com/uk/products/ras/download/links/ + +2020-03-06 10:57:45,076 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,076 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,076 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,076 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,076 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:57:45,076 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0156252384185791 +2020-03-06 10:57:45,091 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +pass4win: + '1.2.3.7': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '1.2.1.9': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,107 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:57:45,107 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,107 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,107 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +passware-kit-agent: + '13.1.7657': + full_name: 'Passware Kit Agent (64-bit)' + installer: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,107 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,107 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,123 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,123 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,123 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:57:45,123 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,123 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,123 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +passware-kit-forensic: + '13.1.7657': + full_name: 'Passware Kit Forensic (64-bit)' + installer: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,123 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.015084505081176758 +2020-03-06 10:57:45,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,138 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:57:45,138 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,138 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +# Source: https://patchmypc.net/ +patchmypc-free: + '3.0.1.1': + full_name: 'PatchMyPC' + installer: 'https://patchmypc.net/freeupdater/PatchMyPC.exe' + install_flags: | + ' & cmd /c taskkill /F /IM PatchMyPC.exe & + xcopy /q /c /r /y "c:\salt\var\cache\salt\minion\extrn_files\base\patchmypc.net\freeupdater\PatchMyPC.exe" "%SystemRoot%" & + exit 0' + uninstaller: 'cmd' + uninstall_flags: | + '/c taskkill /F /IM PatchMyPC.exe & + del /q /f "%SystemRoot%"\PatchMyPC.exe & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,154 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.016063690185546875 +2020-03-06 10:57:45,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,154 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:57:45,154 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,154 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +pdf24creator: + + '8.8.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.5.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +# Source: https://en.pdf24.org/ +# Packagin info Source: https://chocolatey.org/packages/pdf24 + +2020-03-06 10:57:45,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,169 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:57:45,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,185 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +# just 32-bit x86 installer available + + + +pdfcreator: + '2.5.0': + full_name: 'PDFCreator' + installer: 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe' + install_flags: '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-' + uninstaller: '%ProgramFiles(x86)%\PDFCreator\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,200 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.014835834503173828 +2020-03-06 10:57:45,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,200 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:57:45,200 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,200 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,200 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +peazip: + '6.0.0': + + full_name: 'PeaZip 6.0.0 (WIN64)' + installer: 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\PeaZip\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,216 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,216 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:57:45,231 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,231 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,231 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: + + + + +pgadmin4: + + '2.1': + full_name: 'pgAdmin 4 version 2.1' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0': + full_name: 'pgAdmin 4 version 2.0' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6': + full_name: 'pgAdmin 4 version 1.6' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v1\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,247 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.015892505645751953 +2020-03-06 10:57:45,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,247 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:57:45,263 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,263 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +pgina: + '3.1.8.0': + full_name: 'pGina v3.1.8.0' + installer: 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe' + install_flags: '/silent ' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,279 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:57:45,279 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,279 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: + +# just 32-bit x86 installer available + + + +pidgin: + + '2.12.0': + full_name: 'Pidgin' + installer: 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Pidgin\pidgin-uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,279 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,295 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,295 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,295 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:57:45,295 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,295 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,309 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +# Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: +# salt mid pkg.install postgresql version='"9.6"' + + + +postgresql: + '9.6': + full_name: 'PostgreSQL 9.6 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.6\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.5': + full_name: 'PostgreSQL 9.5 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.5\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.4': + full_name: 'PostgreSQL 9.4 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.4\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.3': + full_name: 'PostgreSQL 9.3 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.3\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + + +2020-03-06 10:57:45,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:57:45,309 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,309 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:57:45,325 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,325 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,325 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +### NOTE: You must accept the PowerBI Desktop EULA by setting the +### Pillar key `powerbi:desktop:accept_eula` to `True` in order to +### install this package. You can find a copy of the EULA at +### https://powerbi.microsoft.com/en-us/desktop-eula/. + +powerbi-desktop: + ## version 4.0.1 - https://www.microsoft.com/en-us/download/details.aspx?id=45331 + '2.59.5135.421': &powerbi-desktop + full_name: + "Microsoft PowerBI Desktop (x64)" + installer: &msi401 + "https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi" + install_flags: &flags + /qn + /norestart + ACCEPT_EULA=0 + uninstaller: *msi401 + uninstall_flags: *flags + msiexec: True + reboot: False + +2020-03-06 10:57:45,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:57:45,325 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,341 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:57:45,341 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,356 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.015633583068847656 +2020-03-06 10:57:45,356 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +#PowerShell Core https://github.com/PowerShell/PowerShell + + + +powershell-core: + + '6.1.3.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.2.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.1.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.0.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.0.5.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:57:45,356 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:57:45,356 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,356 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,356 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,372 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:57:45,372 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,372 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +# Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems +# WMI Exporter: https://github.com/martinlindhe/wmi_exporter +# Prometheus Monitoring: https://prometheus.io/ + +prometheus-wmi-exporter: + + '0.9.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.7.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.6.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.5.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.4': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.015717744827270508 +2020-03-06 10:57:45,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,388 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:57:45,388 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,404 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.016070842742919922 +2020-03-06 10:57:45,404 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +putty: + + '0.73.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + + full_name: 'PuTTY release 0.73 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.72.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + + full_name: 'PuTTY release 0.72 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.71.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + + full_name: 'PuTTY release 0.71 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.70.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + + full_name: 'PuTTY release 0.70 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.69.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + + full_name: 'PuTTY release 0.69 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.68.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + + full_name: 'PuTTY release 0.68 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + + + '0.67': + full_name: 'PuTTY release 0.67' + installer: 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.66': + full_name: 'PuTTY release 0.66' + installer: 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.65': + full_name: 'PuTTY release 0.65' + installer: 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.64': + full_name: 'PuTTY release 0.64' + installer: 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,404 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,404 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,419 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:57:45,419 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,419 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +python2_x64: + + + + + '2.7.1150': + full_name: 'Python 2.7.1 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,435 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,435 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,435 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:57:45,450 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,450 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,450 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +python2_x86: + + + + + '2.7.1150': + full_name: 'Python 2.7.1' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,450 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,450 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,466 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:57:45,466 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,482 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: + + +python3_x64: + + '3.8.150.0': + full_name: 'Python 3.8.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.4150.0': + full_name: 'Python 3.7.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,482 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,482 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:57:45,497 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,497 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: + + +python3_x86: + + '3.7.4150.0': + full_name: 'Python 3.7.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.015790700912475586 +2020-03-06 10:57:45,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,513 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:57:45,513 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,529 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +qemu: + '2018.05.19': + full_name: 'QEMU' + installer: 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe' + uninstaller: '%PROGRAMFILES%\qemu\qemu-uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,529 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,529 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,529 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:57:45,529 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,544 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.014840841293334961 +2020-03-06 10:57:45,544 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: + + + + +queueexplorerpro: + '4.1.5': + full_name: 'QueueExplorer Professional 4.1.5' + installer: 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\QueueExplorer Professional\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,544 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,544 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,559 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,559 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,559 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:57:45,559 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,559 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,559 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +quicktime: + '7.79.80.95': + full_name: 'QuickTime 7' + #installer: 'https://secure-appldnld.apple.com/quicktime/031-27600-20150820-F20FB1EF-6710-46BD-99B3-7DCF1253B310/QuickTimeInstaller.exe' + installer: 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe' + + uninstall_flags: | + '/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart & + msiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart & + msiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart & + msiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart & + exit 0' + + install_flags: '/quiet /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + # the above uninstalls: + # Apple Software Update v. 2.1.4.131 {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} + # Apple Application Support v. 4.1.2 {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} + # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} + # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} + +2020-03-06 10:57:45,559 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,575 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.015662193298339844 +2020-03-06 10:57:45,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,575 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:57:45,575 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,575 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,591 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: + +rabbitmq: + + '3.6.9': + full_name: 'RabbitMQ Server 3.6.9' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.7.7': + full_name: 'RabbitMQ Server 3.7.7' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,591 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,591 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:57:45,591 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,606 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.015653610229492188 +2020-03-06 10:57:45,606 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +rakudo-star_x86: + '1.0.0': + full_name: 'Rakudo Star 2016.01' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,606 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,606 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,606 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,606 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,606 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:57:45,606 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,622 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.01589822769165039 +2020-03-06 10:57:45,622 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +rakudo-star_x64: + '1.0.0': + full_name: 'Rakudo Star 2016.04' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,622 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,622 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,622 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,622 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,622 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:57:45,638 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,638 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +rasclient: + + '16': + + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + uninstaller: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,638 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,654 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.01568436622619629 +2020-03-06 10:57:45,654 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,654 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,654 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:57:45,654 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,654 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,654 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +rdcman: + '2.7.14060': + full_name: 'Remote Desktop Connection Manager' + installer: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.015624046325683594 +2020-03-06 10:57:45,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,669 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:57:45,669 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,685 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: + + +rocketchat: + + '2.13.1': + full_name: 'Rocket.Chat+ 2.13.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.13.0': + full_name: 'Rocket.Chat+ 2.13.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.12.0': + full_name: 'Rocket.Chat+ 2.12.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.5': + full_name: 'Rocket.Chat+ 2.10.5' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.4': + full_name: 'Rocket.Chat+ 2.10.4' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.3': + full_name: 'Rocket.Chat+ 2.10.3' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.2': + full_name: 'Rocket.Chat+ 2.10.2' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.1': + full_name: 'Rocket.Chat+ 2.10.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.9.0': + full_name: 'Rocket.Chat+ 2.9.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,685 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,685 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:57:45,701 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,701 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,701 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +rubyinstaller_x64: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,701 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,701 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,716 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:57:45,716 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,716 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,731 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +rubyinstaller_x86: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '1.9.3-p551': + full_name: 'Ruby 1.9.3-p551' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby193\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,731 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,731 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,731 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,731 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,731 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:57:45,731 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.015926361083984375 +2020-03-06 10:57:45,747 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Salt added support for Py3 with 2017.7.0. As a result, the package names have +# changed to denote the Python version included with the install. So add new +# versions of the 2017.7 branch here. Versions from older branches will be +# added below. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion: + + '3000': + full_name: 'Salt Minion 3000' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Add versions from older branches here: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + '2016.11.10': + full_name: 'Salt Minion 2016.11.10' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.9': + full_name: 'Salt Minion 2016.11.9' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.8': + full_name: 'Salt Minion 2016.11.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.7': + full_name: 'Salt Minion 2016.11.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.6': + full_name: 'Salt Minion 2016.11.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.5': + full_name: 'Salt Minion 2016.11.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.4': + full_name: 'Salt Minion 2016.11.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.3': + full_name: 'Salt Minion 2016.11.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.2': + full_name: 'Salt Minion 2016.11.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.1': + full_name: 'Salt Minion 2016.11.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.0': + full_name: 'Salt Minion 2016.11.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:57:45,763 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:57:45,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.016106843948364258 +2020-03-06 10:57:45,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,763 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:57:45,763 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,778 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.014754056930541992 +2020-03-06 10:57:45,778 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion-py3: + + '3000': + full_name: 'Salt Minion 3000 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:57:45,778 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:57:45,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.015781879425048828 +2020-03-06 10:57:45,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,794 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,794 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:57:45,794 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,810 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +sandboxie: + '4.20': + + full_name: 'Sandboxie 4.20 (64-bit)' + installer: 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe' + uninstaller: 'C:\Windows\Installer\SandboxieInstall64.exe' + + install_flags: '/S' + uninstall_flags: '/remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,810 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:57:45,810 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,825 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.015825510025024414 +2020-03-06 10:57:45,825 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +scaleout: + latest: + + full_name: 'ScaleOut StateServer x64 Edition' + installer: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + uninstaller: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,825 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,825 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,825 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:57:45,825 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.015650033950805664 +2020-03-06 10:57:45,841 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +# just 32-bit x86 installer available + + + +secunia.psi: + '3.0.0.10004': + full_name: 'Secunia PSI' + installer: 'http://secunia.com/PSISetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Secunia\PSI\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,841 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,841 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:57:45,857 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,857 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,857 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: + + + + + + +sensu: + + '1.4.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.28.4': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.5': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.25.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,872 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:57:45,872 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,889 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.016102075576782227 +2020-03-06 10:57:45,889 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +sharpdevelop: + '5.1.5134': + full_name: 'SharpDevelop 5.1 RC' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '4.4.9749': + full_name: 'SharpDevelop 4.4' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6466': + full_name: 'SharpDevelop 3.2.1' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.2.2648': + full_name: 'SharpDevelop 2.2' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,889 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,889 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,889 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,889 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,889 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:57:45,919 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,919 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +# just 32-bit x86 installer available + + + +skitch: + '2.3.2.176': + full_name: 'Skitch' + installer: 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe' + install_flags: '--mode unattended' + uninstaller: '%ProgramFiles(x86)%\Evernote\Skitch\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:45,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,935 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:57:45,935 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,935 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +skype-msi: + '7.41.101': + full_name: 'Skype™ 7.41' + installer: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.151': + full_name: 'Skype™ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.103': + full_name: 'Skype™ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# you can always get latest msi from: +# http://www.skype.com/go/getskype-msi (but version number keeps increasing) +# +# for explanation of silent switches read: +# http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 +# you can also check microsite http://skype.techygeekshome.info/ + +2020-03-06 10:57:45,935 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skype™ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skype™ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skype™ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.01566314697265625 +2020-03-06 10:57:45,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,950 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,950 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:57:45,950 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,966 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +# just 32-bit x86 installer available + + + + +skype: + '8.31': + full_name: 'Skype version 8.31' + installer: 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe' + install_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\Microsoft\Skype for Desktop\unins000.exe' + uninstall_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:45,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,966 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:57:45,966 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,982 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.015799522399902344 +2020-03-06 10:57:45,982 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +#MSI machine-wide deployment package +#The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. +#It is multi-client-capable, meaning that it can be used by multiple users on one machine, +#keeping their profiles separately in %ROAMINGAPPDATA%. Using this method, Slack will not receive automatic updates. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-machine-msi: + + '3.3.7.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.6.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:45,982 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,982 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,982 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:45,982 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:45,997 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:57:45,997 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:45,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:45,997 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +#MSI for per-user deployment package +#The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. +#The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-user-msi: + latest: + full_name: 'Slack Machine-Wide Installer' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:45,997 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:45,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:45,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,013 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:57:46,013 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,013 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +slack: + 3.4.0: + full_name: Slack + installer: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + install_flags: '/qn /norestart' + uninstaller: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:57:46,013 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:57:46,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,028 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,028 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:57:46,028 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,028 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,028 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +# just 32-bit x86 installer available + + + +smartmontools: + '6.4 2015-06-04 r4109 (sf-6.4-1)': + full_name: 'smartmontools' + installer: 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\smartmontools\uninst-smartmontools.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,028 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,028 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,044 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:57:46,060 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,060 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.01565718650817871 +2020-03-06 10:57:46,060 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +# just 32-bit x86 installer available + + + +snmptools: + 'Not Found': + full_name: 'SnmpTools 2' + installer: 'https://erwan.labalec.fr/snmptools/snmptools32.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\SnmpTools\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,060 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,060 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,075 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:57:46,075 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,075 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: + +soapui: + + '5.4.0': + full_name: 'SoapUI 5.4.0 5.4.0' + + installer: 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe' + + install_flags: '-q' + uninstaller: '%ProgramFiles%\SmartBear\SoapUI-5.4.0\uninstall.exe' + uninstall_flags: '-q' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:46,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,075 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,091 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:57:46,091 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,107 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0156400203704834 +2020-03-06 10:57:46,107 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +# just 32-bit x86 installer available + + + +# Source: http://software.informer.com/ +software-informer: + 'Not Found': + full_name: 'Software Informer' + installer: 'https://files.informer.com/siinst.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + uninstaller: '%ProgramFiles(x86)%\Software Informer\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,107 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,107 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,107 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:57:46,123 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,123 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,123 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +sourcetree: + + '2.3.1.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.4.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.11.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.2.5': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0.20.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.10.23.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + + + '1.9.13.7': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.9.20': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.6.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.8.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.7.0.32509': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6.25': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.5.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.4.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.3.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.2.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.1.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.0.8': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '0.9.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:46,123 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,139 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.016126632690429688 +2020-03-06 10:57:46,139 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,139 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,139 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:57:46,169 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +# just 32-bit x86 installer available + + + +spybot-anti-beacon: + '1.6': + full_name: 'Spybot Anti-Beacon' + installer: 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot Anti-Beacon\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,185 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:57:46,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,185 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.safer-networking.org/ +spybot: + '2.4': + full_name: 'Spybot - Search & Destroy' + installer: 'http://spybotupdates.com/files/spybot-2.4.exe' + install_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot - Search & Destroy 2\unins000.exe' + uninstall_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + msiexec: False + locale: en_US + reboot: False +# alternative download URLs +# http://www.spybotupdates.biz/files/spybot-2.4.exe +# http://spybot-mirror.com/files/spybot-2.4.exe + +2020-03-06 10:57:46,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,185 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,201 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,201 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:57:46,201 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.01563405990600586 +2020-03-06 10:57:46,216 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +sscserv-free: + + '3.6.1': + full_name: 'SSC Serv 3.6.1 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '3.5.0': + full_name: 'SSC Serv 3.5.0 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:46,216 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,232 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:57:46,232 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,232 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,232 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +steam: + latest: + full_name: 'Steam' + installer: 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe' + install_flags: '/S' + uninstaller: + "C:\\Program Files (x86)\\Steam\\uninstaller.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:57:46,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,247 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,247 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:57:46,247 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.01575183868408203 +2020-03-06 10:57:46,263 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +stellarium: + '0.16.1': + full_name: 'Stellarium 0.16.1' + + installer: 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe' + + install_flags: '/silent' + uninstaller: '%ProgramFiles%\Stellarium\unins000.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,263 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:57:46,263 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,278 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.015615701675415039 +2020-03-06 10:57:46,278 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +strawberryperl_x64: + + '5.26.1001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:46,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,278 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,278 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,278 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,294 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:57:46,294 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,294 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,294 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +strawberryperl_x86: + + '5.26.1001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:46,310 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,310 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,310 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,310 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:57:46,310 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,326 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.015613317489624023 +2020-03-06 10:57:46,326 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +# just 32-bit x86 installer available + + + +stunnel: + '5.30': + full_name: 'stunnel installed for AllUsers' + installer: 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\stunnel\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,326 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,326 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,326 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,326 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,326 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:57:46,326 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.015656232833862305 +2020-03-06 10:57:46,341 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +subinacl: + '5.2.3790.1164': + full_name: 'Windows Resource Kit Tools - SubInAcl.exe' + installer: 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:46,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,341 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:57:46,357 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,357 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,373 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: + + + +sumatrapdf: + '3.1.2': + full_name: 'SumatraPDF' + installer: 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe' + install_flags: '/s /opt' + uninstaller: '%ProgramFiles%\SumatraPDF\uninstall.exe' + uninstall_flags: '/s' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,373 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,373 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,373 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,373 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,373 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:57:46,388 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,388 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +svn: + '1.8.13': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.8.11': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:46,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,403 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,403 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,403 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:57:46,403 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.015619039535522461 +2020-03-06 10:57:46,419 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer: + latest: + full_name: 'TeamViewer 14' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,419 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,419 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:57:46,434 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,434 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,434 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer_host: + latest: + full_name: 'TeamViewer 14 Host' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,434 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,434 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,434 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,450 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:57:46,450 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.015642166137695312 +2020-03-06 10:57:46,466 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +# just 32-bit x86 installer available + + + +teracopy: + 'Not Found': + full_name: 'TeraCopy 2.3' + installer: 'http://storage.googleapis.com/codesector/teracopy.exe' + install_flags: | + '/SP- /verysilent /suppressmsgboxes /norestart & + reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeraCopy_is1 /v DisplayVersion /d 2.3 & + exit 0' + uninstaller: '%ProgramFiles(x86)%\TeraCopy\unins000.exe' + uninstall_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,466 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,466 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,466 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:57:46,482 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,482 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +# just 32-bit x86 installer available + + + +texmaker: + 'Not Found': + full_name: 'Texmaker' + installer: 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Texmaker\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,482 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,497 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:57:46,497 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,497 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: + +texniccenter: + '2.02 Stable': + full_name: 'TeXnicCenter Version 2.02 Stable' + + installer: 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES%\TeXnicCenter\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,513 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:57:46,513 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,513 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +# just 32-bit x86 installer available + + + +texstudio: + '2.10.8': + full_name: 'TeXstudio 2.10.8' + installer: 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXstudio\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,513 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,529 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:57:46,529 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,544 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.014904022216796875 +2020-03-06 10:57:46,544 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +# just 32-bit x86 installer available + + + +texworks: + '0.6.1': + full_name: 'TeXworks 0.6.1' + installer: 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXworks\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,544 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,544 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,544 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:57:46,560 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,560 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,560 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +# just 32-bit x86 installer available + + + +thunderbird: + + '60.6.1': + full_name: 'Mozilla Thunderbird 60.6.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Thunderbird 60.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.3': + full_name: 'Mozilla Thunderbird 60.5.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Thunderbird 60.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Thunderbird 60.5.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Thunderbird 60.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Thunderbird 60.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.3': + full_name: 'Mozilla Thunderbird 60.3.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.2': + full_name: 'Mozilla Thunderbird 60.3.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.1': + full_name: 'Mozilla Thunderbird 60.3.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Thunderbird 60.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Thunderbird 60.2.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Thunderbird 60.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.1': + full_name: 'Mozilla Thunderbird 52.9.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Thunderbird 52.9.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Thunderbird 52.8.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Thunderbird 52.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Thunderbird 52.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Thunderbird 52.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Thunderbird 45.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Thunderbird 45.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Thunderbird 38.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Thunderbird 38.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Thunderbird 38.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Thunderbird 38.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.0': + full_name: 'Mozilla Thunderbird 38.2.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.1.0': + full_name: 'Mozilla Thunderbird 38.1.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:46,575 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,575 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.015683889389038086 +2020-03-06 10:57:46,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,575 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:57:46,591 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,591 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +tightvnc: + + + '2.8.27.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.23.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.11.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.8.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.5.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.2.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.7.10.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:46,591 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,607 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,607 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:57:46,607 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,607 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,607 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +todotxt.net: + 'Not Found': + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + full_name: 'todotxt.net v3.2.0.0' + installer: 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Hughesoft\todotxt.net\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,623 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,623 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,623 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,623 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,623 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:57:46,638 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,638 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +todour: + '2.03': + full_name: 'Todour version 2.03' + installer: 'https://nerdur.com/Todour-2.03.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Todour\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,638 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,653 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:57:46,653 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,653 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,653 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +# just 32-bit x86 installer available + + + +# Source: http://wiki.bazaar.canonical.com/ +tortoise-bzr: + '2.5.1-1': + full_name: 'Bazaar 2.5.1' + installer: 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Bazaar\uninst000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,653 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0157012939453125 +2020-03-06 10:57:46,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,669 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,669 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:57:46,669 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.015779972076416016 +2020-03-06 10:57:46,685 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +# Source: https://tortoisegit.org/ +tortoise-git: + + '2.8.0.0': + + full_name: 'TortoiseGit 2.8.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.7.0.0': + + full_name: 'TortoiseGit 2.7.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.6.0.0': + + full_name: 'TortoiseGit 2.6.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.5.0.0': + + full_name: 'TortoiseGit 2.5.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.4.0.0': + + full_name: 'TortoiseGit 2.4.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.3.0.0': + + full_name: 'TortoiseGit 2.3.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0.0': + + full_name: 'TortoiseGit 2.2.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0.0': + + full_name: 'TortoiseGit 2.1.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0.0': + + full_name: 'TortoiseGit 2.0.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.16.0': + + full_name: 'TortoiseGit 1.8.16.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.15.0': + + full_name: 'TortoiseGit 1.8.15.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.14.0': + + full_name: 'TortoiseGit 1.8.14.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.13.0': + + full_name: 'TortoiseGit 1.8.13.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:46,685 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,685 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,700 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:57:46,700 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,700 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,700 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +# Source: http://tortoisehg.bitbucket.org/ +tortoise-hg: + '3.6.2': + + full_name: 'TortoiseHg 3.6.2 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.3.0': + + full_name: 'TortoiseHg 3.3.0 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# Need to download from source site above, so it will append proper aws key credentials +# place downloaded msi in master's win_repo-ng + +2020-03-06 10:57:46,700 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,700 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,716 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:57:46,716 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,716 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,716 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +# Source: http://tortoisesvn.net/ +tortoise-svn: + '1.9.27285': + + full_name: 'TortoiseSVN 1.9.4.27285 (64 bit)' + installer: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + uninstaller: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:46,732 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,732 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,732 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:57:46,747 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,747 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +# just 32-bit x86 installer available + + + +truecrypt: + '7.1a': + full_name: 'TrueCrypt 7.1a' + installer: 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Truecrypt\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,747 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,747 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,763 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:57:46,763 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,779 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +ultradefrag: + '7.0.2': + full_name: 'Ultra Defragmenter' + + installer: 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe' + + install_flags: '/S /FULL=1' + uninstaller: '%ProgramFiles%\UltraDefrag\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,779 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,779 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,779 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,779 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,779 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:57:46,779 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,795 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.01600503921508789 +2020-03-06 10:57:46,795 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +urlrewrite: + '7.2.1952': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.2.1980': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:46,795 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,795 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,809 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,809 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,809 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:57:46,809 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,809 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,809 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +usbdlm: + '5.2.7.0': + + full_name: 'USB Drive Letter Manager (x64)' + installer: http://www.uwe-sieber.de/files/usbdlm_x64.msi + uninstaller: http://www.uwe-sieber.de/files/usbdlm_x64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:46,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,809 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,825 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:57:46,825 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.015657901763916016 +2020-03-06 10:57:46,841 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +vagrant: + + + '2.2.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.8': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:46,856 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,856 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.01568913459777832 +2020-03-06 10:57:46,856 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,856 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,856 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:57:46,872 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,872 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +vcforpython27: + '9.0.1.30729': + full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' + installer: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:46,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,872 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:57:46,888 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,888 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: + + + + +vcxsrv: + + '1.20.0.0': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.19.6.4': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:46,888 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,888 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,904 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,904 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,904 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:57:46,904 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,904 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,904 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: + + +verysleepy: + '0.90': + full_name: 'Very Sleepy CS version 0.90' + installer: 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe' + uninstaller: '%ProgramFiles%\Very Sleepy CS\unins000.exe' + install_flags: '/SP- /NORESTART /SILENT' + uninstall_flags: '/SILENT' + cache_dir: True + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:46,904 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,904 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,919 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:57:46,919 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,935 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +veyon: + + '4.0.7': + full_name: 'Veyon 4.0.7' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.0.6': + full_name: 'Veyon 4.0.6' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:46,935 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,935 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:57:46,935 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,950 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.014864921569824219 +2020-03-06 10:57:46,950 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +# Version 5.1 and older are no longer supported by Oracle +# https://www.virtualbox.org/wiki/Download_Old_Builds + + + +virtualbox: + + '6.0.4': + full_name: 'Oracle VM VirtualBox 6.0.4' + installer: 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.2.26': + full_name: 'Oracle VM VirtualBox 5.2.26' + installer: 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.1.38': + full_name: 'Oracle VM VirtualBox 5.1.38' + installer: 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.0.40': + full_name: 'Oracle VM VirtualBox 5.0.40' + installer: 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart' + + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:46,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:46,966 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,966 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,966 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:57:46,981 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,981 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,981 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: + + + + +viscosity: + + '1.7.14.1595': + full_name: Viscosity 1.7.14 (1595) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.7.12.1581': + full_name: Viscosity 1.7.12 (1581) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.6.8.1477': + full_name: Viscosity 1.6.8 (1477) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + +2020-03-06 10:57:46,981 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:57:46,981 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:46,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:46,997 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:46,997 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:57:46,997 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:46,997 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:46,997 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +#Vivaldi is a Chromium-based browser +#https://vivaldi.com + + + +vivaldi: + latest: + full_name: 'Vivaldi' + + installer: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + uninstaller: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + + install_flags: '--vivaldi-silent --do-not-launch-chrome --system-level' + uninstall_flags: '--uninstall --force-uninstall --system-level --vivaldi' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,013 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,013 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,013 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,013 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:57:47,029 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,029 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,044 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +vlc: + + '3.0.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.5': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.4': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:47,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,044 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,044 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:57:47,060 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,076 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.015644073486328125 +2020-03-06 10:57:47,076 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +vs-community: + 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) + full_name: + Visual Studio Community 2017 + installer: + https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe + install_flags: + --quiet + --norestart + --wait + uninstaller: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe" + uninstall_flags: + /uninstall + --force + --quiet + --norestart + reboot: False + +2020-03-06 10:57:47,076 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,076 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,076 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,091 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:57:47,091 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,091 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,091 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +# due to winrepo installer limitations you need to manually download x86 + x64 System installer from +# https://code.visualstudio.com/Download +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... + + + +vscode: + + '1.36.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.36.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.37.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.37.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.38.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.38.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.2': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.2.exe' + installer: 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:47,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,106 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.015778541564941406 +2020-03-06 10:57:47,106 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,106 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,106 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:57:47,106 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,106 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,106 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +vsee: + '15.0.0.707': + full_name: 'VSee' + installer: 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe' + install_flags: '-no_autorun' + uninstaller: '%AppData%\VSeeInstall\vseeUninstall.exe' + uninstall_flags: '-no_confirm' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,122 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,122 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,122 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:57:47,122 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,122 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,138 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +vs_remotetools_2017: + latest: + full_name: 'Remote Tools for Visual Studio 2017' + + installer: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + uninstaller: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + arch: x64 + + install_flags: '/install /passive /quiet' + uninstall_flags: '/uninstall /passive /quiet' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,138 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,138 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:57:47,138 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,154 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.015685319900512695 +2020-03-06 10:57:47,154 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +wamp-server-3: + '3.1.3': + + full_name: 'Wampserver64 3.1.3' + installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe' + uninstaller: 'c:\wamp64\uninstall_services.bat' + uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,154 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,154 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,154 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:57:47,169 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,169 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: + + +wamp-stack: + + '7.1.27-1': + full_name: 'Bitnami WAMP Stack 7.1.27-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-7.1.27-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + '5.6.40-1': + full_name: 'Bitnami WAMP Stack 5.6.40-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-5.6.40-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:47,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,169 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,185 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:57:47,185 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,200 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.015639066696166992 +2020-03-06 10:57:47,200 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +webdeploy: + '3.1237.1764': + full_name: 'Microsoft Web Deploy 3.5' + + installer: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:47,200 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,200 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,200 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:57:47,216 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,216 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +webplatforminstaller: + '5.0.50430.0': + full_name: 'Microsoft Web Platform Installer 5.0' + + installer: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:47,216 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,216 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,232 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:57:47,232 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,247 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.015700340270996094 +2020-03-06 10:57:47,247 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +# Source: http://winappmanager.herokuapp.com/ + + + +win-app-manager: + '15.01.11': + full_name: 'WinAppManager' + installer: 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinApp Manager\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,247 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,247 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:57:47,263 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,263 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: + + + +windirstat: + 'Not Found': + full_name: 'WinDirStat 1.1.2' + installer: 'http://download01.windirstat.info/windirstat1_1_2_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\WinDirStat\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,263 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,279 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:57:47,279 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,279 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +winhttpcertcfg: + '5.2.3790.1060': + full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' + installer: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:57:47,279 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,279 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,295 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,295 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:57:47,295 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,295 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,295 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: + + + + +winmerge: + + '2.16.0': + full_name: 'WinMerge 2.16.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.14.0': + full_name: 'WinMerge 2.14.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:47,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,309 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,309 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,309 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:57:47,309 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,325 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0156705379486084 +2020-03-06 10:57:47,325 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +winmtr: + + '0.92': + + full_name: 'WinMTR_x64 0.92' + installer: 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe' + uninstaller: 'c:\utl\uninstall-winmtr_x64.exe' + + install_flags: '/D="c:\utl" /SILENT /NORESTART' + uninstall_flags: 'c:\utl\SSEun.dat /SILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +# download exe from winmtr.net +# create two installers using http://www.ssesetup.com/ + +2020-03-06 10:57:47,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,325 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,325 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,325 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,325 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:57:47,341 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,341 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +winpcap: + '4.1.0.2980': + full_name: 'WinPcap 4.1.3' + installer: 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\WinPcap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,341 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,341 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,357 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:57:47,357 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,357 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,357 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +#if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) + + +winrar: + + + '5.70.0': + + full_name: 'WinRAR 5.70 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-570.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.61.0': + + full_name: 'WinRAR 5.61 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-561.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:57:47,357 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,372 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.01565861701965332 +2020-03-06 10:57:47,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,388 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:57:47,388 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,388 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,404 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: + + + +winscp: + + '5.17': + full_name: 'WinSCP 5.17' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.9': + full_name: 'WinSCP 5.15.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.7': + full_name: 'WinSCP 5.15.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.5': + full_name: 'WinSCP 5.15.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.4': + full_name: 'WinSCP 5.15.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.3': + full_name: 'WinSCP 5.15.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.2': + full_name: 'WinSCP 5.15.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.1': + full_name: 'WinSCP 5.15.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15': + full_name: 'WinSCP 5.15' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.9': + full_name: 'WinSCP 5.13.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.8': + full_name: 'WinSCP 5.13.8' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.7': + full_name: 'WinSCP 5.13.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.6': + full_name: 'WinSCP 5.13.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.5': + full_name: 'WinSCP 5.13.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.4': + full_name: 'WinSCP 5.13.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.3': + full_name: 'WinSCP 5.13.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.2': + full_name: 'WinSCP 5.13.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.1': + full_name: 'WinSCP 5.13.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13': + full_name: 'WinSCP 5.13' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.3': + full_name: 'WinSCP 5.11.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.2': + full_name: 'WinSCP 5.11.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.1': + full_name: 'WinSCP 5.11.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.6': + full_name: 'WinSCP 5.9.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.2': + full_name: 'WinSCP 5.9.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.1': + full_name: 'WinSCP 5.9.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9': + full_name: 'WinSCP 5.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:47,404 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,404 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,404 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,404 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,419 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:57:47,419 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,419 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,419 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +wireshark: + + '3.0.4': + + full_name: 'Wireshark 3.0.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + + full_name: 'Wireshark 3.0.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + + full_name: 'Wireshark 3.0.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + + full_name: 'Wireshark 3.0.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + + full_name: 'Wireshark 3.0.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.6': + + full_name: 'Wireshark 2.6.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.5': + + full_name: 'Wireshark 2.6.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.4': + + full_name: 'Wireshark 2.6.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.3': + + full_name: 'Wireshark 2.6.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.2': + + full_name: 'Wireshark 2.6.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.1': + + full_name: 'Wireshark 2.6.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.0': + + full_name: 'Wireshark 2.6.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.12': + + full_name: 'Wireshark 2.4.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.11': + + full_name: 'Wireshark 2.4.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.10': + + full_name: 'Wireshark 2.4.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.9': + + full_name: 'Wireshark 2.4.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.8': + + full_name: 'Wireshark 2.4.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.7': + + full_name: 'Wireshark 2.4.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.6': + + full_name: 'Wireshark 2.4.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.5': + + full_name: 'Wireshark 2.4.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.4': + + full_name: 'Wireshark 2.4.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.3': + + full_name: 'Wireshark 2.4.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.2': + + full_name: 'Wireshark 2.4.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.1': + + full_name: 'Wireshark 2.4.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.0': + + full_name: 'Wireshark 2.4.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.17': + + full_name: 'Wireshark 2.2.17 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.16': + + full_name: 'Wireshark 2.2.16 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.15': + + full_name: 'Wireshark 2.2.15 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.14': + + full_name: 'Wireshark 2.2.14 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.13': + + full_name: 'Wireshark 2.2.13 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.12': + + full_name: 'Wireshark 2.2.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.11': + + full_name: 'Wireshark 2.2.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.10': + + full_name: 'Wireshark 2.2.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.9': + + full_name: 'Wireshark 2.2.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + + full_name: 'Wireshark 2.2.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.7': + + full_name: 'Wireshark 2.2.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + + full_name: 'Wireshark 2.2.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.5': + + full_name: 'Wireshark 2.2.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + + full_name: 'Wireshark 2.2.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.3': + + full_name: 'Wireshark 2.2.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2': + + full_name: 'Wireshark 2.2.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + + full_name: 'Wireshark 2.2.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0': + + full_name: 'Wireshark 2.2.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:47,435 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,435 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,451 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,451 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:57:47,451 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,451 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,451 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +# source: http://www.kls-soft.com/wscc/ +wscc: + '2.5.0.4': + full_name: 'WSCC 2.5.0.4' + installer: 'http://www.kls-soft.com/downloads/wscc_setup.exe' + install_flags: '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + + uninstaller: '%PROGRAMFILES(x86)%\WSCC\unins000.exe' + + uninstall_flags: '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,451 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,451 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,466 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:57:47,466 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.015916824340820312 +2020-03-06 10:57:47,482 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +# Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 +# https://github.com/zeffy/wufuc + + + + + + +wufuc: + + '1.0.1.201': + full_name: 'wufuc' + installer: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:57:47,482 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,482 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,497 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:57:47,497 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,497 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +xampp: + '7.2.6.0': + full_name: 'XAMPP 7.2.6' + installer: 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe' + install_flags: '--mode unattended' + uninstaller: 'c:\xampp\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,497 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,513 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:57:47,513 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,513 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +# just 32-bit x86 installer available + + + +# http://www.straightrunning.com/XmingNotes/setupcmdline.htm +xming: + '6.9.0.31': + full_name: 'Xming 6.9.0.31' + installer: 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe' + install_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + uninstaller: '%ProgramFiles(x86)%\Xming\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:57:47,513 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,513 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,529 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:57:47,529 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,529 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,529 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: + + +yubikey-manager: + + '1.1.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.2': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + +2020-03-06 10:57:47,544 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,544 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,544 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:57:47,544 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,560 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.015592813491821289 +2020-03-06 10:57:47,560 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +yubikey-personalization-tool: + '3.1.24': + full_name: 'YubiKey Personalization Tool' + installer: 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe' + install_flags: '/S' + uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:57:47,560 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,560 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,560 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,576 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:57:47,591 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,591 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,606 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.0.9.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.10.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.11.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.12.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.13.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.14.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.15.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.16.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.2.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.5.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.6.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:57:47,606 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,606 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,606 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,622 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,622 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:57:47,622 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,622 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,622 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: + +zoom: + latest: + full_name: 'Zoom' + installer: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:57:47,638 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:57:47,638 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,638 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,638 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:57:47,638 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,653 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.01578664779663086 +2020-03-06 10:57:47,653 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +# Software Definition File for Elasticsearch Auditbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +auditbeat: + + '7.3.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:57:47,653 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,653 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,653 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,653 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:57:47,669 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,669 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +chocolatey: + latest: + full_name: 'Chocolatey' + installer: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd' + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd' + cache_dir: True + +# this software also has it's own salt execution module, which you might prefer to use, see +# http://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html +# for usage examples see +# https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 + + +2020-03-06 10:57:47,669 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,669 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,685 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:57:47,685 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,701 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.015642642974853516 +2020-03-06 10:57:47,701 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: + + + + +erlang: + + '19.3': + full_name: 'Erlang OTP 19 (8.3)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"' + uninstaller: '%ProgramFiles%\erl8.3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '21.0.1': + full_name: 'Erlang OTP 21 (10.0.1)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"' + uninstaller: '%ProgramFiles%\erl10.0.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:57:47,701 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:57:47,701 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,716 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,716 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:57:47,716 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,732 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.015774250030517578 +2020-03-06 10:57:47,732 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +# Software Definition File for Elasticsearch Filebeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +filebeat: + + '7.3.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:57:47,732 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,732 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,732 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,747 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:57:47,747 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,747 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +# Software Definition File for Elasticsearch Functionbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +functionbeat: + + '7.3.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:57:47,747 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,747 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,763 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:57:47,763 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,763 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,778 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +# just 32-bit x86 installer available + + + + +gpg4win: + + 3.1.7: + full_name: 'Gpg4win (3.1.7)' + installer: 'http://files.gpg4win.org/gpg4win-3.1.7.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.3: + full_name: 'Gpg4win (3.0.3)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.0: + full_name: 'Gpg4win (3.0.0)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.4: + full_name: 'Gpg4win (2.3.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.3: + full_name: 'Gpg4win (2.3.3)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.2: + full_name: 'Gpg4win (2.3.2)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.2.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.1: + full_name: 'Gpg4win (2.3.1)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.1.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.0: + full_name: 'Gpg4win (2.3.0)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.2.4: + full_name: 'Gpg4win (2.2.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.2.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + +2020-03-06 10:57:47,778 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:57:47,778 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,778 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,778 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,794 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:57:47,794 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,794 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,794 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +# Software Definition File for Elasticsearch Heartbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +heartbeat: + + '7.3.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:57:47,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,810 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,810 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:57:47,810 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,825 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.01573467254638672 +2020-03-06 10:57:47,825 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +# Software Definition File for Elasticsearch Metricbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +metricbeat: + + '7.3.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:57:47,825 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,825 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,841 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:57:47,841 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,841 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,841 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +# Software Definition File for Elasticsearch Packetbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +packetbeat: + + '7.3.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:57:47,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,857 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,857 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:57:47,857 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.015641212463378906 +2020-03-06 10:57:47,872 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: + + + + + +pycharm-pro: + + 191.6605.12: + installer: 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe' + full_name: 'JetBrains Pycharm 2019.1.1' + install_flags: '/S /CONFIG=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\silent.config' + cache_file: salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config + uninstaller: '%ProgramFiles(x86)%\JetBrains\PyCharm 2019.1.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + reboot: False + + +2020-03-06 10:57:47,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:57:47,872 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,889 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,889 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:57:47,889 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,889 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,889 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +# just 32-bit x86 installer available + + + +stayawake: + + '1.0': + full_name: 'StayAwake' + installer: 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd' + install_flags: '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"' + uninstaller: '%PROGRAMFILES(x86)%\StayAwake\uninstall.exe' + uninstall_flags: '/S' + + +2020-03-06 10:57:47,889 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) +2020-03-06 10:57:47,903 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.014487743377685547 +2020-03-06 10:57:47,903 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,903 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,903 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:57:47,903 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,903 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,919 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +# Software Definition File for Elasticsearch Winlogbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +winlogbeat: + + '7.3.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:57:47,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,919 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,919 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,919 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:57:47,919 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.015661239624023438 +2020-03-06 10:57:47,935 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +############################################################# +# Windows +############################################################# +# + + +2020-03-06 10:57:47,935 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +{} +2020-03-06 10:57:47,935 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,935 [salt.loaded.int.module.win_pkg:1213][DEBUG ][1464] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:57:47,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:57:47,935 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:57:47,951 [salt.template :59 ][DEBUG ][1464] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:57:47,951 [salt.utils.jinja :85 ][DEBUG ][1464] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:57:47,951 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:57:47,951 [salt.template :120 ][DEBUG ][1464] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +# only 32-bit (x86) installer available + + + +zipinstaller: + '1.21': + full_name: 'ZipInstaller' + installer: 'salt://win/repo-ng/zipinstaller/zipinst.exe' + + install_flags: '/i zipinst_x64.zip' + + uninstaller: 'zipinst.exe' + uninstall_flags: '/uninst "c:\utl\uninst1~.nsu"' + msiexec: False + locale: en_US + reboot: False + cache_dir: True +# Description: +# This is a 32-bit zip archive program installer that installes directly from zip archives and creates shortcuts and un-install entries +# automatically, exactly as defined in a simple '~zipinst~.zic' if it finds it inside the zip archive. +# +# All it takes is calling up 'zipinst.exe /i .zip' that contains a file called '~zipinst~.zic', which itself is in *.ini file +# format and contains, directives about where it should install etc. +# +# Source: +# http://www.nirsoft.net/utils/zipinst.html +# http://www.nirsoft.net/utils/zipinst.exe +# http://www.nirsoft.net/utils/zipinst.zip (need to add '~zipinst~.zic' to it) +# you have to insert the '~zipinst~.zic' file into the 'zipinst.zip' file +# and place the resulting zipinst.zip into the 'salt://win/repo-ng/zipinstaller/' on your master +# as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache +# + +2020-03-06 10:57:47,951 [salt.loaded.int.render.yaml:80 ][DEBUG ][1464] Results of YAML rendering: +OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) +2020-03-06 10:57:47,951 [salt.template :26 ][PROFILE ][1464] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:57:47,982 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:57:47,982 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:57:48,013 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: Volume in drive C is Windows 10 + Volume Serial Number is A4D6-10A7 + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + +03/06/2020 01:57 PM . +03/06/2020 01:57 PM .. +03/06/2020 01:57 PM 927 7zip.sls +03/06/2020 01:57 PM 723 activeperl_x64.sls +03/06/2020 01:57 PM 973 activeperl_x86.sls +03/06/2020 01:57 PM 798 adobeair.sls +03/06/2020 01:57 PM 956 adobereader-dc-classic.sls +03/06/2020 01:57 PM 851 adobereader-xi.sls +03/06/2020 01:57 PM 830 adobereader.sls +03/06/2020 01:57 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:57 PM 775 adv-ip-scanner.sls +03/06/2020 01:57 PM 787 adv-port-scanner.sls +03/06/2020 01:57 PM 769 advancedlogging.sls +03/06/2020 01:57 PM 373 anydesk-msi.sls +03/06/2020 01:57 PM 597 anydesk.sls +03/06/2020 01:57 PM 803 applicationrequestrouting.sls +03/06/2020 01:57 PM 370 aspnet-mvc1.sls +03/06/2020 01:57 PM 439 atom.sls +03/06/2020 01:57 PM 655 audacity.sls +03/06/2020 01:57 PM auditbeat +03/06/2020 01:57 PM 1,768 autohotkey.sls +03/06/2020 01:57 PM 611 autoit.sls +03/06/2020 01:57 PM 670 autopsy.sls +03/06/2020 01:57 PM 659 awscli.sls +03/06/2020 01:57 PM 799 azuredatastudio.sls +03/06/2020 01:57 PM 422 bandizip.sls +03/06/2020 01:57 PM 563 belarc-advisor.sls +03/06/2020 01:57 PM 367 bginfo4x.sls +03/06/2020 01:57 PM 547 bitnami-nginxstack.sls +03/06/2020 01:57 PM 568 bitvise.sls +03/06/2020 01:57 PM 777 blender.sls +03/06/2020 01:57 PM 395 bootracer.sls +03/06/2020 01:57 PM 664 bulkrenameutility.sls +03/06/2020 01:57 PM 661 bulk_extractor.sls +03/06/2020 01:57 PM 476 ccleaner-slim.sls +03/06/2020 01:57 PM 445 ccleaner.sls +03/06/2020 01:57 PM 606 cdburnerxp.sls +03/06/2020 01:57 PM 594 cdroller.sls +03/06/2020 01:57 PM 658 check-mk-agent-msi.sls +03/06/2020 01:57 PM 451 check-mk-agent.sls +03/06/2020 01:57 PM chocolatey +03/06/2020 01:57 PM 394 chrome-rdp.sls +03/06/2020 01:57 PM 375 chrome.sls +03/06/2020 01:57 PM 1,296 clamav.sls +03/06/2020 01:57 PM 1,200 clamwin.sls +03/06/2020 01:57 PM 500 classicshell.sls +03/06/2020 01:57 PM 1,521 clink.sls +03/06/2020 01:57 PM 617 conemu.sls +03/06/2020 01:57 PM 687 cpu-z.sls +03/06/2020 01:57 PM 2,833 curl.sls +03/06/2020 01:57 PM 374 cyberduck-cli.sls +03/06/2020 01:57 PM 616 cyberduck-msi.sls +03/06/2020 01:57 PM 639 cyberduck.sls +03/06/2020 01:57 PM 751 defraggler.sls +03/06/2020 01:57 PM 2,637 dotnet.sls +03/06/2020 01:57 PM 643 dropbox.sls +03/06/2020 01:57 PM 683 duplicati.sls +03/06/2020 01:57 PM 712 dvdstyler.sls +03/06/2020 01:57 PM 737 echo-desktop.sls +03/06/2020 01:57 PM 1,327 eea.sls +03/06/2020 01:57 PM 423 emet.sls +03/06/2020 01:57 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:57 PM 721 eraser.sls +03/06/2020 01:57 PM erlang +03/06/2020 01:57 PM 982 evernote.sls +03/06/2020 01:57 PM 531 fiddler.sls +03/06/2020 01:57 PM filebeat +03/06/2020 01:57 PM 660 filehippo-app-manager.sls +03/06/2020 01:57 PM 1,271 filezilla.sls +03/06/2020 01:57 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:57 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:57 PM 1,365 firefox_x64.sls +03/06/2020 01:57 PM 1,870 firefox_x86.sls +03/06/2020 01:57 PM functionbeat +03/06/2020 01:57 PM 552 gedit.sls +03/06/2020 01:57 PM 822 gimp.sls +03/06/2020 01:57 PM 953 git-extensions.sls +03/06/2020 01:57 PM 3,855 git.sls +03/06/2020 01:57 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:57 PM 563 gnucash.sls +03/06/2020 01:57 PM 2,152 golang.sls +03/06/2020 01:57 PM 320 goodsync.sls +03/06/2020 01:57 PM 601 gow.sls +03/06/2020 01:57 PM gpg4win +03/06/2020 01:57 PM 847 gpg4win-light.sls +03/06/2020 01:57 PM 621 gpg4win-vanilla.sls +03/06/2020 01:57 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:57 PM 2,661 grepwin.sls +03/06/2020 01:57 PM 505 gvim.sls +03/06/2020 01:57 PM 622 handbrake.sls +03/06/2020 01:57 PM heartbeat +03/06/2020 01:57 PM 503 hipchat.sls +03/06/2020 01:57 PM 771 hostsfileeditor.sls +03/06/2020 01:57 PM 623 hwinfo.sls +03/06/2020 01:57 PM 339 ice.sls +03/06/2020 01:57 PM 493 icecast.sls +03/06/2020 01:57 PM 377 icloud.sls +03/06/2020 01:57 PM 2,197 iismediaservices.sls +03/06/2020 01:57 PM 358 influx-capacitor.sls +03/06/2020 01:57 PM 644 inkscape.sls +03/06/2020 01:57 PM 646 intellij-community.sls +03/06/2020 01:57 PM 618 intellij-ultimate.sls +03/06/2020 01:57 PM 360 internet-evidence-finder.sls +03/06/2020 01:57 PM 702 irfanview-plugins.sls +03/06/2020 01:57 PM 1,610 irfanview.sls +03/06/2020 01:57 PM 697 isapirewrite-lite.sls +03/06/2020 01:57 PM 2,602 itunes.sls +03/06/2020 01:57 PM 1,279 jdk8.sls +03/06/2020 01:57 PM 1,200 jre.sls +03/06/2020 01:57 PM 1,480 jre8.sls +03/06/2020 01:57 PM 995 jungledisk-server-management.sls +03/06/2020 01:57 PM 891 jungledisk-server.sls +03/06/2020 01:57 PM 921 jungledisk-workgroup.sls +03/06/2020 01:57 PM 518 kdiff3.sls +03/06/2020 01:57 PM 1,091 keepass-2x.sls +03/06/2020 01:57 PM 2,655 keepass.sls +03/06/2020 01:57 PM 673 lastpass.sls +03/06/2020 01:57 PM 1,329 lazarus.sls +03/06/2020 01:57 PM 951 libreoffice.sls +03/06/2020 01:57 PM 419 logparser.sls +03/06/2020 01:57 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:57 PM 722 malwarebytes.sls +03/06/2020 01:57 PM 1,884 mariadb.sls +03/06/2020 01:57 PM 653 mercurial.sls +03/06/2020 01:57 PM 649 messageanalyzer.sls +03/06/2020 01:57 PM metricbeat +03/06/2020 01:57 PM 603 microsoft-build-tools.sls +03/06/2020 01:57 PM 317 mikogo.sls +03/06/2020 01:57 PM 766 miktex-basic.sls +03/06/2020 01:57 PM 787 mongodb.sls +03/06/2020 01:57 PM 831 ms-mbsa.sls +03/06/2020 01:57 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:57 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:57 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:57 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:57 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:57 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:57 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:57 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:57 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:57 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:57 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:57 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:57 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:57 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:57 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:57 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:57 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:57 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:57 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:57 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:57 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:57 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:57 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:57 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:57 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:57 PM 585 mucommander.sls +03/06/2020 01:57 PM 638 mysql-essential.sls +03/06/2020 01:57 PM 632 mysql-installer-community.sls +03/06/2020 01:57 PM 639 mysql-workbench.sls +03/06/2020 01:57 PM 298 never10.sls +03/06/2020 01:57 PM 929 newrelic-infra.sls +03/06/2020 01:57 PM 526 nextcloud-client.sls +03/06/2020 01:57 PM 584 nmap.sls +03/06/2020 01:57 PM 709 node.js-lts.sls +03/06/2020 01:57 PM 733 node.js.sls +03/06/2020 01:57 PM 368 nomacs.sls +03/06/2020 01:57 PM 985 npp.sls +03/06/2020 01:57 PM 1,252 nsclient.sls +03/06/2020 01:57 PM 826 nsis.sls +03/06/2020 01:57 PM 902 ntp.sls +03/06/2020 01:57 PM 793 nunit-console.sls +03/06/2020 01:57 PM 363 nxlog.sls +03/06/2020 01:57 PM 1,081 octopus-tentacle.sls +03/06/2020 01:57 PM 678 openlp.sls +03/06/2020 01:57 PM 1,192 openoffice.sls +03/06/2020 01:57 PM 2,130 openvpn.sls +03/06/2020 01:57 PM 587 osquery.sls +03/06/2020 01:57 PM 878 ossec-agent.sls +03/06/2020 01:57 PM 590 owncloud.sls +03/06/2020 01:57 PM packetbeat +03/06/2020 01:57 PM 400 pandoc.sls +03/06/2020 01:57 PM 814 parallels-client-15.sls +03/06/2020 01:57 PM 1,709 pass4win.sls +03/06/2020 01:57 PM 378 passware-kit-agent.sls +03/06/2020 01:57 PM 416 passware-kit-forensic.sls +03/06/2020 01:57 PM 656 patchmypc-free.sls +03/06/2020 01:57 PM 638 pdf24creator.sls +03/06/2020 01:57 PM 567 pdfcreator.sls +03/06/2020 01:57 PM 611 peazip.sls +03/06/2020 01:57 PM 812 pgadmin4.sls +03/06/2020 01:57 PM 235 pgina.sls +03/06/2020 01:57 PM 617 pidgin.sls +03/06/2020 01:57 PM 1,898 postgresql.sls +03/06/2020 01:57 PM 997 powerbi-desktop.sls +03/06/2020 01:57 PM 864 powershell-core.sls +03/06/2020 01:57 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:57 PM 1,488 putty.sls +03/06/2020 01:57 PM pycharm-pro +03/06/2020 01:57 PM 567 python2_x64.sls +03/06/2020 01:57 PM 526 python2_x86.sls +03/06/2020 01:57 PM 1,540 python3_x64.sls +03/06/2020 01:57 PM 1,435 python3_x86.sls +03/06/2020 01:57 PM 449 qemu.sls +03/06/2020 01:57 PM 562 queueexplorerpro.sls +03/06/2020 01:57 PM 1,542 quicktime.sls +03/06/2020 01:57 PM 495 rabbitmq.sls +03/06/2020 01:57 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:57 PM 375 rakudo-star_x64.sls +03/06/2020 01:57 PM 888 rasclient.sls +03/06/2020 01:57 PM 444 rdcman.sls +03/06/2020 01:57 PM 609 rocketchat.sls +03/06/2020 01:57 PM 526 rubyinstaller_x64.sls +03/06/2020 01:57 PM 551 rubyinstaller_x86.sls +03/06/2020 01:57 PM 3,719 salt-minion-py2.sls +03/06/2020 01:57 PM 2,050 salt-minion-py3.sls +03/06/2020 01:57 PM 562 sandboxie.sls +03/06/2020 01:57 PM 581 scaleout.sls +03/06/2020 01:57 PM 476 secunia.psi.sls +03/06/2020 01:57 PM 1,190 sensu.sls +03/06/2020 01:57 PM 1,827 sharpdevelop.sls +03/06/2020 01:57 PM 539 skitch.sls +03/06/2020 01:57 PM 1,533 skype-msi.sls +03/06/2020 01:57 PM 708 skype.sls +03/06/2020 01:57 PM 1,244 slack-machine-msi.sls +03/06/2020 01:57 PM 1,023 slack-user-msi.sls +03/06/2020 01:57 PM 329 slack.sls +03/06/2020 01:57 PM 591 smartmontools.sls +03/06/2020 01:57 PM 556 snmptools.sls +03/06/2020 01:57 PM 653 soapui.sls +03/06/2020 01:57 PM 623 software-informer.sls +03/06/2020 01:57 PM 1,039 sourcetree.sls +03/06/2020 01:57 PM 591 spybot-anti-beacon.sls +03/06/2020 01:57 PM 765 spybot.sls +03/06/2020 01:57 PM 664 sscserv-free.sls +03/06/2020 01:57 PM stayawake +03/06/2020 01:57 PM 443 steam.sls +03/06/2020 01:57 PM 658 stellarium.sls +03/06/2020 01:57 PM 540 strawberryperl_x64.sls +03/06/2020 01:57 PM 531 strawberryperl_x86.sls +03/06/2020 01:57 PM 521 stunnel.sls +03/06/2020 01:57 PM 398 subinacl.sls +03/06/2020 01:57 PM 467 sumatrapdf.sls +03/06/2020 01:57 PM 769 svn.sls +03/06/2020 01:57 PM 534 teamviewer.sls +03/06/2020 01:57 PM 549 teamviewer_host.sls +03/06/2020 01:57 PM 749 teracopy.sls +03/06/2020 01:57 PM 491 texmaker.sls +03/06/2020 01:57 PM 709 texniccenter.sls +03/06/2020 01:57 PM 639 texstudio.sls +03/06/2020 01:57 PM 643 texworks.sls +03/06/2020 01:57 PM 937 thunderbird.sls +03/06/2020 01:57 PM 1,014 tightvnc.sls +03/06/2020 01:57 PM 623 todotxt.net.sls +03/06/2020 01:57 PM 551 todour.sls +03/06/2020 01:57 PM 630 tortoise-bzr.sls +03/06/2020 01:57 PM 983 tortoise-git.sls +03/06/2020 01:57 PM 1,367 tortoise-hg.sls +03/06/2020 01:57 PM 897 tortoise-svn.sls +03/06/2020 01:57 PM 503 truecrypt.sls +03/06/2020 01:57 PM 662 ultradefrag.sls +03/06/2020 01:57 PM 1,598 urlrewrite.sls +03/06/2020 01:57 PM 560 usbdlm.sls +03/06/2020 01:57 PM 1,361 vagrant.sls +03/06/2020 01:57 PM 479 vcforpython27.sls +03/06/2020 01:57 PM 820 vcxsrv.sls +03/06/2020 01:57 PM 434 verysleepy.sls +03/06/2020 01:57 PM 611 veyon.sls +03/06/2020 01:57 PM 2,570 virtualbox.sls +03/06/2020 01:57 PM 794 viscosity.sls +03/06/2020 01:57 PM 657 vivaldi.sls +03/06/2020 01:57 PM 739 vlc.sls +03/06/2020 01:57 PM 713 vs-community.sls +03/06/2020 01:57 PM 1,388 vscode.sls +03/06/2020 01:57 PM 325 vsee.sls +03/06/2020 01:57 PM 640 vs_remotetools_2017.sls +03/06/2020 01:57 PM 835 wamp-server-3.sls +03/06/2020 01:57 PM 585 wamp-stack.sls +03/06/2020 01:57 PM 775 webdeploy.sls +03/06/2020 01:57 PM 842 webplatforminstaller.sls +03/06/2020 01:57 PM 610 win-app-manager.sls +03/06/2020 01:57 PM 467 windirstat.sls +03/06/2020 01:57 PM 468 winhttpcertcfg.sls +03/06/2020 01:57 PM winlogbeat +03/06/2020 01:57 PM 618 winmerge.sls +03/06/2020 01:57 PM 737 winmtr.sls +03/06/2020 01:57 PM 288 winpcap.sls +03/06/2020 01:57 PM 825 winrar.sls +03/06/2020 01:57 PM 828 winscp.sls +03/06/2020 01:57 PM 1,136 wireshark.sls +03/06/2020 01:57 PM wmi_provider +03/06/2020 01:57 PM 539 wscc.sls +03/06/2020 01:57 PM 726 wufuc.sls +03/06/2020 01:57 PM 352 xampp.sls +03/06/2020 01:57 PM 649 xming.sls +03/06/2020 01:57 PM 621 yubikey-manager.sls +03/06/2020 01:57 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:57 PM 1,119 zabbix-agent.sls +03/06/2020 01:57 PM zipinstaller +03/06/2020 01:57 PM 278 zoom.sls + 284 File(s) 232,192 bytes + 16 Dir(s) 49,622,171,648 bytes free +2020-03-06 10:57:48,013 [salt.state :938 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:57:48,013 [salt.state :320 ][INFO ][1464] {'pkg.refresh_db': {'failed': 0, 'success': 298, 'total': 298}} +2020-03-06 10:57:48,013 [salt.state :1997][INFO ][1464] Completed state [pkg.refresh_db] at time 10:57:48.013125 (duration_in_ms=13999.593) +2020-03-06 10:57:48,028 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:57:48,028 [salt.state :1819][INFO ][1464] Running state [git] at time 10:57:48.028820 +2020-03-06 10:57:48,028 [salt.state :1852][INFO ][1464] Executing state pkg.installed for [git] +2020-03-06 10:57:48,044 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:57:48,044 [salt.loaded.int.module.win_pkg:802 ][INFO ][1464] Refresh skipped, age of winrepo metadata in seconds (0.07780694961547852) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:57:48,060 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.077807) +2020-03-06 10:57:48,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,185 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:57:48,200 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:57:48,216 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:57:48,216 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.250015) +2020-03-06 10:57:48,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,232 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,248 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,248 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,248 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,248 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:57:48,248 [salt.utils.http :234 ][DEBUG ][1464] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:57:48,248 [salt.utils.http :235 ][DEBUG ][1464] Using backend: tornado +2020-03-06 10:57:52,028 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:58:15,669 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.687200) +2020-03-06 10:58:15,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,669 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,685 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,701 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:58:15,701 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.734535) +2020-03-06 10:58:15,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,716 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:15,731 [salt.state :320 ][INFO ][1464] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' + +2020-03-06 10:58:15,731 [salt.state :1000][DEBUG ][1464] Refreshing modules... +2020-03-06 10:58:15,794 [salt.state :966 ][INFO ][1464] Loading fresh modules for state activity +2020-03-06 10:58:15,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:58:15,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:58:15,857 [salt.state :1997][INFO ][1464] Completed state [git] at time 10:58:15.857968 (duration_in_ms=27829.148) +2020-03-06 10:58:15,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded config.option +2020-03-06 10:58:15,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pkg.install +2020-03-06 10:58:15,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pkg.installed +2020-03-06 10:58:15,888 [salt.state :1819][INFO ][1464] Running state [kdiff3] at time 10:58:15.888184 +2020-03-06 10:58:15,888 [salt.state :1852][INFO ][1464] Executing state pkg.installed for [kdiff3] +2020-03-06 10:58:16,638 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt.secret_key, ret: _|- +2020-03-06 10:58:16,638 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt:secret_key, ret: _|- +2020-03-06 10:58:16,934 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet.api_key, ret: _|- +2020-03-06 10:58:16,934 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet:api_key, ret: _|- +2020-03-06 10:58:17,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded reg.read_value +2020-03-06 10:58:17,356 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops.api_key, ret: _|- +2020-03-06 10:58:17,356 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops:api_key, ret: _|- +2020-03-06 10:58:24,028 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded platform.is_windows +2020-03-06 10:58:24,028 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded path.which +2020-03-06 10:58:24,075 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:58:24,075 [salt.loaded.int.module.win_pkg:802 ][INFO ][1464] Refresh skipped, age of winrepo metadata in seconds (36.10880136489868) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:58:24,075 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:36.108801) +2020-03-06 10:58:24,091 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,091 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,091 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,091 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,091 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,091 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,091 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,106 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,106 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,106 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,122 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,122 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,122 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,122 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,138 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:58:24,169 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:58:24,185 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:58:24,200 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:36.233783) +2020-03-06 10:58:24,200 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,200 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,200 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:24,231 [salt.utils.http :234 ][DEBUG ][1464] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:58:24,231 [salt.utils.http :235 ][DEBUG ][1464] Using backend: tornado +2020-03-06 10:58:25,607 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:58:27,216 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:39.249437) +2020-03-06 10:58:27,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,216 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,231 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,263 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:58:27,263 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:39.296755) +2020-03-06 10:58:27,279 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,279 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,279 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,279 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,279 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,279 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,279 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:27,295 [salt.state :320 ][INFO ][1464] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:58:27,309 [salt.state :1000][DEBUG ][1464] Refreshing modules... +2020-03-06 10:58:27,404 [salt.state :966 ][INFO ][1464] Loading fresh modules for state activity +2020-03-06 10:58:27,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:58:27,575 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:58:27,575 [salt.state :1997][INFO ][1464] Completed state [kdiff3] at time 10:58:27.575575 (duration_in_ms=11687.391) +2020-03-06 10:58:27,592 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded config.option +2020-03-06 10:58:27,606 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pkg.install +2020-03-06 10:58:27,606 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pkg.installed +2020-03-06 10:58:27,606 [salt.state :1819][INFO ][1464] Running state [7zip] at time 10:58:27.606864 +2020-03-06 10:58:27,606 [salt.state :1852][INFO ][1464] Executing state pkg.installed for [7zip] +2020-03-06 10:58:28,388 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt.secret_key, ret: _|- +2020-03-06 10:58:28,404 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt:secret_key, ret: _|- +2020-03-06 10:58:28,919 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet.api_key, ret: _|- +2020-03-06 10:58:28,935 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet:api_key, ret: _|- +2020-03-06 10:58:29,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded reg.read_value +2020-03-06 10:58:29,294 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops.api_key, ret: _|- +2020-03-06 10:58:29,294 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops:api_key, ret: _|- +2020-03-06 10:58:36,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded platform.is_windows +2020-03-06 10:58:36,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded path.which +2020-03-06 10:58:36,154 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:58:36,169 [salt.loaded.int.module.win_pkg:802 ][INFO ][1464] Refresh skipped, age of winrepo metadata in seconds (48.20278525352478) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:58:36,169 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:48.202785) +2020-03-06 10:58:36,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,169 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,185 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,201 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,216 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:58:36,232 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:58:36,247 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:58:36,247 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:48.280673) +2020-03-06 10:58:36,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,247 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,263 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,278 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,278 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,278 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:36,278 [salt.utils.http :234 ][DEBUG ][1464] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:58:36,278 [salt.utils.http :235 ][DEBUG ][1464] Using backend: tornado +2020-03-06 10:58:40,216 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:58:40,841 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:52.859394) +2020-03-06 10:58:40,841 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,841 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,841 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,841 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,841 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,841 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,857 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,873 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:58:40,873 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1464] Using existing pkg metadata db for saltenv 'base' (age is 0:00:52.906687) +2020-03-06 10:58:40,888 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,888 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,888 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,888 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,888 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,888 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,888 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,904 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,904 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,904 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,904 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,904 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,904 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,904 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1464] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:58:40,919 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:58:40,935 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:58:40,935 [salt.state :320 ][INFO ][1464] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 10:58:40,950 [salt.state :1000][DEBUG ][1464] Refreshing modules... +2020-03-06 10:58:40,982 [salt.state :966 ][INFO ][1464] Loading fresh modules for state activity +2020-03-06 10:58:41,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded jinja.render +2020-03-06 10:58:41,044 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded yaml.render +2020-03-06 10:58:41,044 [salt.state :1997][INFO ][1464] Completed state [7zip] at time 10:58:41.044798 (duration_in_ms=13437.934) +2020-03-06 10:58:41,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded config.option +2020-03-06 10:58:41,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded module.run +2020-03-06 10:58:41,060 [salt.state :1819][INFO ][1464] Running state [windows_environment.refresh.path] at time 10:58:41.060426 +2020-03-06 10:58:41,060 [salt.state :1852][INFO ][1464] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:58:41,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded windows_environment.refresh +2020-03-06 10:58:41,076 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cmd.run +2020-03-06 10:58:41,076 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:58:41,091 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:58:41,091 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1464] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:58:41,091 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded environ.get +2020-03-06 10:58:41,107 [py.warnings :919 ][WARNING ][1464] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 10:58:41,107 [py.warnings :919 ][WARNING ][1464] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 10:58:41,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded event.fire +2020-03-06 10:58:41,107 [salt.utils.event :322 ][DEBUG ][1464] SaltEvent PUB socket URI: 4510 +2020-03-06 10:58:41,107 [salt.utils.event :323 ][DEBUG ][1464] SaltEvent PULL socket URI: 4511 +2020-03-06 10:58:41,107 [salt.utils.event :737 ][DEBUG ][1464] Sending event: tag = environ_setenv; data = {'clear_all': False, 'false_unsets': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'permanent': False, '_stamp': '2020-03-06T18:58:41.107121'} +2020-03-06 10:58:41,107 [salt.transport.ipc:364 ][DEBUG ][1464] Closing IPCMessageClient instance +2020-03-06 10:58:41,122 [salt.state :320 ][INFO ][1464] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:58:41,122 [salt.state :1997][INFO ][1464] Completed state [windows_environment.refresh.path] at time 10:58:41.122762 (duration_in_ms=62.336) +2020-03-06 10:58:41,122 [salt.state :1819][INFO ][1464] Running state [chocolatey.bootstrap] at time 10:58:41.122762 +2020-03-06 10:58:41,122 [salt.state :1852][INFO ][1464] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:58:41,810 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt.secret_key, ret: _|- +2020-03-06 10:58:41,810 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: ifttt:secret_key, ret: _|- +2020-03-06 10:58:42,184 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet.api_key, ret: _|- +2020-03-06 10:58:42,184 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: pushbullet:api_key, ret: _|- +2020-03-06 10:58:42,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded reg.read_value +2020-03-06 10:58:42,607 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops.api_key, ret: _|- +2020-03-06 10:58:42,607 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: victorops:api_key, ret: _|- +2020-03-06 10:58:51,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded platform.is_windows +2020-03-06 10:58:51,247 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded path.which +2020-03-06 10:58:51,294 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:58:51,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded apache.config +2020-03-06 10:58:51,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded apache.a2enconf +2020-03-06 10:58:51,388 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded apache.a2ensite +2020-03-06 10:58:51,403 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:58:51,403 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:58:51,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:58:51,419 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:58:51,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:58:51,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:58:51,435 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:58:51,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:58:51,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_asg.exists +2020-03-06 10:58:51,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cfn.exists +2020-03-06 10:58:51,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:58:51,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:58:51,498 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:58:51,498 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:58:51,498 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:58:51,498 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:58:51,498 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_dynamodb.exists +2020-03-06 10:58:51,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_ec2.get_key +2020-03-06 10:58:51,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elasticache.exists +2020-03-06 10:58:51,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:58:51,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elb.exists +2020-03-06 10:58:51,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:58:51,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_iam.get_user +2020-03-06 10:58:51,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_iam.role_exists +2020-03-06 10:58:51,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_iot.policy_exists +2020-03-06 10:58:51,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_kinesis.exists +2020-03-06 10:58:51,529 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_kms.describe_key +2020-03-06 10:58:51,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_lambda.function_exists +2020-03-06 10:58:51,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_asg.exists +2020-03-06 10:58:51,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_rds.exists +2020-03-06 10:58:51,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_route53.get_record +2020-03-06 10:58:51,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:58:51,544 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:58:51,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_secgroup.exists +2020-03-06 10:58:51,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_sns.exists +2020-03-06 10:58:51,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_sqs.exists +2020-03-06 10:58:51,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded boto_vpc.exists +2020-03-06 10:58:51,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded bower.list +2020-03-06 10:58:51,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded chef.client +2020-03-06 10:58:51,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cimc.get_system_info +2020-03-06 10:58:51,591 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded cisconso.set_data_value +2020-03-06 10:58:51,606 [salt.loader :1577][DEBUG ][1464] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:58:51,606 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded ddns.update +2020-03-06 10:58:51,622 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded chassis.cmd +2020-03-06 10:58:51,638 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:58:51,653 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:58:51,669 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:58:51,708 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:58:51,998 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded esxi.cmd +2020-03-06 10:58:52,013 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:58:52,076 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: git version 2.23.0.windows.1 +2020-03-06 10:58:52,076 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded github.list_users +2020-03-06 10:58:52,076 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded glanceng.image_get +2020-03-06 10:58:52,092 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded elasticsearch.exists +2020-03-06 10:58:52,092 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: grafana_version, ret: _|- +2020-03-06 10:58:52,092 [salt.loaded.int.module.config:398 ][DEBUG ][1464] key: grafana_version, ret: _|- +2020-03-06 10:58:52,106 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded icinga2.generate_ticket +2020-03-06 10:58:52,106 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded ifttt.trigger_event +2020-03-06 10:58:52,138 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:58:52,154 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:58:52,184 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:58:52,201 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:58:52,216 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:58:52,232 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:58:52,263 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:58:52,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.domain_get +2020-03-06 10:58:52,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:58:52,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.group_get +2020-03-06 10:58:52,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.project_get +2020-03-06 10:58:52,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.role_get +2020-03-06 10:58:52,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.role_grant +2020-03-06 10:58:52,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.service_get +2020-03-06 10:58:52,294 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded keystoneng.user_get +2020-03-06 10:58:52,309 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:58:52,341 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:58:52,372 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:58:52,388 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:58:52,419 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:58:52,450 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:58:52,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:58:52,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:58:52,450 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:58:52,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded lxd.version +2020-03-06 10:58:52,466 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded memcached.status +2020-03-06 10:58:52,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mongodb.db_exists +2020-03-06 10:58:52,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mongodb.user_exists +2020-03-06 10:58:52,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:58:52,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:58:52,482 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:58:52,497 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded mssql.version +2020-03-06 10:58:52,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_networks +2020-03-06 10:58:52,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_subnets +2020-03-06 10:58:52,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_subnets +2020-03-06 10:58:52,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded neutronng.list_subnets +2020-03-06 10:58:52,513 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded npm.list +2020-03-06 10:58:52,528 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nxos.cmd +2020-03-06 10:58:52,544 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:58:52,560 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:58:52,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded panos.commit +2020-03-06 10:58:52,576 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pdbedit.create +2020-03-06 10:58:52,606 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded pecl.list +2020-03-06 10:58:52,638 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:58:52,638 [salt.loader :1577][DEBUG ][1464] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:58:52,654 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.cluster_exists +2020-03-06 10:58:52,670 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.user_exists +2020-03-06 10:58:52,670 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.create_extension +2020-03-06 10:58:52,670 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.group_create +2020-03-06 10:58:52,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.datadir_init +2020-03-06 10:58:52,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.language_create +2020-03-06 10:58:52,685 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.privileges_grant +2020-03-06 10:58:52,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.schema_exists +2020-03-06 10:58:52,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.tablespace_exists +2020-03-06 10:58:52,700 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded postgres.user_exists +2020-03-06 10:58:52,747 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:58:52,747 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded selinux.getenforce +2020-03-06 10:58:52,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded splunk.list_users +2020-03-06 10:58:52,763 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded splunk_search.get +2020-03-06 10:58:52,795 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:58:52,795 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded tomcat.status +2020-03-06 10:58:52,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded vagrant.version +2020-03-06 10:58:52,810 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded victorops.create_event +2020-03-06 10:58:52,825 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded win_iis.create_site +2020-03-06 10:58:52,841 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded win_servermanager.install +2020-03-06 10:58:52,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:58:52,857 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded wordpress.show_plugin +2020-03-06 10:58:52,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded x509.get_pem_entry +2020-03-06 10:58:52,872 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded xmpp.send_msg +2020-03-06 10:58:52,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded zk_concurrency.lock +2020-03-06 10:58:52,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded zonecfg.create +2020-03-06 10:58:52,888 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded zookeeper.create +2020-03-06 10:58:52,903 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:58:52,903 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:58:53,169 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:58:53,169 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][1464] retcode: 1 +2020-03-06 10:58:53,169 [salt.state :915 ][DEBUG ][1464] Last command return code: 1 +2020-03-06 10:58:53,169 [salt.utils.http :234 ][DEBUG ][1464] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:58:53,169 [salt.utils.http :235 ][DEBUG ][1464] Using backend: tornado +2020-03-06 10:58:53,904 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:00,888 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: Preparing: C:\24846a424e4ebddffc02c68bf0\header.bmp... +Preparing: C:\24846a424e4ebddffc02c68bf0\SplashScreen.bmp... +Preparing: C:\24846a424e4ebddffc02c68bf0\watermark.bmp... +Preparing: C:\24846a424e4ebddffc02c68bf0\DisplayIcon.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Print.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate1.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate2.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate3.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate4.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate5.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate6.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate7.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Rotate8.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Save.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\Setup.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\stop.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\SysReqMet.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\SysReqNotMet.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\Graphics\warn.ico... +Preparing: C:\24846a424e4ebddffc02c68bf0\1033\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1042\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1041\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1037\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1025\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1035\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1030\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1044\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1043\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1040\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1029\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1031\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1036\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1032\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1038\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\2052\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1028\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\3076\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1055\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1053\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\3082\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\2070\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1046\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1049\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\1045\LocalizedData.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\Client\Parameterinfo.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\Extended\Parameterinfo.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\ParameterInfo.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\Strings.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\UiInfo.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\Client\UiInfo.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\Extended\UiInfo.xml... +Preparing: C:\24846a424e4ebddffc02c68bf0\SetupUi.xsd... +Preparing: C:\24846a424e4ebddffc02c68bf0\DHtmlHeader.html... +Preparing: C:\24846a424e4ebddffc02c68bf0\1033\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1025\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1028\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1030\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1031\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1029\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1036\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1035\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1032\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1038\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1037\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1040\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1041\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1042\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1044\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1043\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1046\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1045\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1055\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1053\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\2052\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\1049\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\3082\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\2070\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\3076\eula.rtf... +Preparing: C:\24846a424e4ebddffc02c68bf0\Setup.exe... +Preparing: C:\24846a424e4ebddffc02c68bf0\SetupUtility.exe... +Preparing: C:\24846a424e4ebddffc02c68bf0\SetupEngine.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1025\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1033\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1029\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1030\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1035\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1031\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1036\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1032\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1028\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\2052\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\3076\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1042\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1041\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1037\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1044\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1053\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1055\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1040\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1045\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1046\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1049\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1038\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\2070\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\3082\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\1043\SetupResources.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\SetupUi.dll... +Preparing: C:\24846a424e4ebddffc02c68bf0\sqmapi.dll... +2020-03-06 10:59:00,888 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:59:12,825 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: Getting latest version of the Chocolatey package for download. +Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +Downloading 7-Zip commandline tool prior to extraction. +Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +Installing chocolatey on this machine +Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. +Restricting write permissions to Administrators +We are setting up the Chocolatey package repository. +The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + +Creating Chocolatey folders if they do not already exist. + +WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. +chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. +PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +WARNING: Not setting tab completion: Profile file does not exist at +'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +Chocolatey (choco.exe) is now ready. +You can call choco from anywhere, command line or powershell by typing choco. +Run choco /? for a list of functions. +You may need to shut down and restart powershell and/or consoles + first prior to using choco. +Ensuring chocolatey commands are on the path +Ensuring chocolatey.nupkg is in the lib folder +2020-03-06 10:59:12,825 [salt.state :320 ][INFO ][1464] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:59:12,825 [salt.state :1997][INFO ][1464] Completed state [chocolatey.bootstrap] at time 10:59:12.825921 (duration_in_ms=31703.159) +2020-03-06 10:59:12,825 [salt.state :1819][INFO ][1464] Running state [windirstat] at time 10:59:12.825921 +2020-03-06 10:59:12,825 [salt.state :1852][INFO ][1464] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:59:12,841 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:14,123 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: chocolatey|0.10.15 +2020-03-06 10:59:14,123 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:14,966 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: 0.10.15 +2020-03-06 10:59:14,982 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1464] output: 0.10.15 +2020-03-06 10:59:14,982 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:24,372 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:59:24,372 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:25,826 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:59:25,826 [salt.state :320 ][INFO ][1464] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 10:59:25,841 [salt.state :1997][INFO ][1464] Completed state [windirstat] at time 10:59:25.841643 (duration_in_ms=13015.722) +2020-03-06 10:59:25,841 [salt.state :1819][INFO ][1464] Running state [notepadplusplus] at time 10:59:25.841643 +2020-03-06 10:59:25,841 [salt.state :1852][INFO ][1464] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:59:25,841 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:27,107 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:59:27,107 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:38,013 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +notepadplusplus +By installing you accept licenses for the packages. + +chocolatey-core.extension v1.3.5.1 [Approved] +chocolatey-core.extension package files install completed. Performing other installation steps. + Installed/updated chocolatey-core extensions. + The install of chocolatey-core.extension was successful. + Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' + +notepadplusplus.install v7.8.5 +notepadplusplus.install package files install completed. Performing other installation steps. +Installing 64-bit notepadplusplus.install... +notepadplusplus.install has been installed. +notepadplusplus.install installed to 'C:\Program Files\Notepad++' +Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program files\notepad++\notepad++.exe'. + notepadplusplus.install may be able to be automatically uninstalled. + The install of notepadplusplus.install was successful. + Software installed as 'exe', install location is likely default. + +notepadplusplus v7.8.5 [Approved] +notepadplusplus package files install completed. Performing other installation steps. + The install of notepadplusplus was successful. + Software install location not explicitly set, could be in package or + default install location if installer. + +Chocolatey installed 3/3 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:59:38,029 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:39,185 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +windirstat|1.1.2.20161210 +2020-03-06 10:59:39,185 [salt.state :320 ][INFO ][1464] Made the following changes: +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' +'notepadplusplus' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:59:39,185 [salt.state :1997][INFO ][1464] Completed state [notepadplusplus] at time 10:59:39.185405 (duration_in_ms=13343.762) +2020-03-06 10:59:39,185 [salt.state :1819][INFO ][1464] Running state [TelnetClient] at time 10:59:39.185405 +2020-03-06 10:59:39,185 [salt.state :1852][INFO ][1464] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:59:39,201 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:59:39,201 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:59:42,873 [salt.state :889 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:59:42,873 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:43,935 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.16299.15 + +Image Version: 10.0.16299.309 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.16299.15 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Xps-Foundation-Xps-Viewer +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:59:43,935 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1464] output: +Deployment Image Servicing and Management tool +Version: 10.0.16299.15 + +Image Version: 10.0.16299.309 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.16299.15 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Xps-Foundation-Xps-Viewer +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:59:43,935 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:45,404 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:59:46,716 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1464] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.16299.15 + +Image Version: 10.0.16299.309 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.16299.15 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Xps-Foundation-Xps-Viewer +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:59:46,716 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1464] output: +Deployment Image Servicing and Management tool +Version: 10.0.16299.15 + +Image Version: 10.0.16299.309 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.16299.15 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Xps-Foundation-Xps-Viewer +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:59:46,716 [salt.state :320 ][INFO ][1464] {'feature': {'new': 'TelnetClient'}, 'pid': 6596, 'stderr': '', 'retcode': 0, 'stdout': ''} +2020-03-06 10:59:46,716 [salt.state :1997][INFO ][1464] Completed state [TelnetClient] at time 10:59:46.716869 (duration_in_ms=7531.464) +2020-03-06 10:59:46,716 [salt.state :1819][INFO ][1464] Running state [windows.module.system.reboot] at time 10:59:46.716869 +2020-03-06 10:59:46,716 [salt.state :1852][INFO ][1464] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:59:46,732 [salt.utils.lazy :107 ][DEBUG ][1464] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:59:46,747 [salt.loaded.int.module.cmdmod:397 ][INFO ][1464] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:59:46,966 [salt.state :889 ][DEBUG ][1464] Last command return code: 0 +2020-03-06 10:59:46,982 [salt.loaded.int.module.win_system:1413][DEBUG ][1464] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:59:46,982 [salt.loaded.int.module.win_system:1348][DEBUG ][1464] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:59:46,982 [salt.loaded.int.module.win_system:1348][DEBUG ][1464] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:59:46,982 [salt.loaded.int.module.win_system:1387][DEBUG ][1464] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:59:46,982 [salt.loaded.int.module.win_system:1273][DEBUG ][1464] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:59:47,044 [salt.state :320 ][INFO ][1464] {'system.reboot': True} +2020-03-06 10:59:47,044 [salt.state :1997][INFO ][1464] Completed state [windows.module.system.reboot] at time 10:59:47.044407 (duration_in_ms=327.538) +2020-03-06 10:59:47,060 [salt.state :2801][DEBUG ][1464] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1542382982368 does not exist, no need to cleanup +2020-03-06 10:59:47,060 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded state.check_result +2020-03-06 10:59:47,107 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded highstate.output +2020-03-06 10:59:47,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,122 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,138 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,154 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,169 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,185 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,200 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,216 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,232 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,263 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 10:59:47,279 [salt.utils.lazy :104 ][DEBUG ][1464] LazyLoaded nested.output +2020-03-06 13:59:54,591 [salt.loader :747 ][DEBUG ][6876] Grains refresh requested. Refreshing grains. +2020-03-06 13:59:54,591 [salt.config :2190][DEBUG ][6876] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:59:54,591 [salt.config :2334][DEBUG ][6876] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:59:54,591 [salt.config :2190][DEBUG ][6876] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-201923-windows-10-1803.kitchen.log b/test/results/py3-201923-windows-10-1803.kitchen.log new file mode 100644 index 0000000..51155c5 --- /dev/null +++ b/test/results/py3-201923-windows-10-1803.kitchen.log @@ -0,0 +1,1021 @@ +I, [2020-03-06T13:49:26.676326 #21944] INFO -- py3-201923-windows-10-1803: -----> Cleaning up any prior instances of +I, [2020-03-06T13:49:26.676564 #21944] INFO -- py3-201923-windows-10-1803: -----> Destroying ... +I, [2020-03-06T13:49:26.678339 #21944] INFO -- py3-201923-windows-10-1803: Finished destroying (0m0.00s). +I, [2020-03-06T13:49:26.679513 #21944] INFO -- py3-201923-windows-10-1803: -----> Testing +I, [2020-03-06T13:49:26.679810 #21944] INFO -- py3-201923-windows-10-1803: -----> Creating ... +I, [2020-03-06T13:49:32.104652 #21944] INFO -- py3-201923-windows-10-1803: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:49:33.020092 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Cloning VM... +I, [2020-03-06T13:49:33.452637 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:49:33.658121 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Checking if box 'StefanScherer/windows_10' version '2018.09.12' is up to date... +I, [2020-03-06T13:49:34.460213 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1803-eca6023e-23a2-4d73-8a37-b4a0d9962c52 +I, [2020-03-06T13:49:37.762883 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:49:37.890837 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:49:37.891407 #21944] INFO -- py3-201923-windows-10-1803: default: Adapter 1: nat +I, [2020-03-06T13:49:38.054176 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Forwarding ports... +I, [2020-03-06T13:49:38.201273 #21944] INFO -- py3-201923-windows-10-1803: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:49:38.201916 #21944] INFO -- py3-201923-windows-10-1803: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:49:38.202564 #21944] INFO -- py3-201923-windows-10-1803: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:49:38.203128 #21944] INFO -- py3-201923-windows-10-1803: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:49:38.666438 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:49:39.863598 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Booting VM... +I, [2020-03-06T13:49:42.435626 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:49:43.908652 #21944] INFO -- py3-201923-windows-10-1803: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:49:43.909001 #21944] INFO -- py3-201923-windows-10-1803: default: WinRM username: vagrant +I, [2020-03-06T13:49:43.909477 #21944] INFO -- py3-201923-windows-10-1803: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:49:43.909871 #21944] INFO -- py3-201923-windows-10-1803: default: WinRM transport: negotiate +I, [2020-03-06T13:50:05.695881 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Machine booted and ready! +I, [2020-03-06T13:50:05.731828 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:50:05.973480 #21944] INFO -- py3-201923-windows-10-1803: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T13:50:05.973612 #21944] INFO -- py3-201923-windows-10-1803: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T13:50:05.973667 #21944] INFO -- py3-201923-windows-10-1803: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T13:50:05.973715 #21944] INFO -- py3-201923-windows-10-1803: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T13:50:05.973807 #21944] INFO -- py3-201923-windows-10-1803: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T13:50:05.973888 #21944] INFO -- py3-201923-windows-10-1803: default: your host and reload your VM. +I, [2020-03-06T13:50:05.973947 #21944] INFO -- py3-201923-windows-10-1803: default: +I, [2020-03-06T13:50:05.973996 #21944] INFO -- py3-201923-windows-10-1803: default: Guest Additions Version: 5.2.16 +I, [2020-03-06T13:50:05.974050 #21944] INFO -- py3-201923-windows-10-1803: default: VirtualBox Version: 6.1 +I, [2020-03-06T13:50:06.797711 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Mounting shared folders... +I, [2020-03-06T13:50:06.799658 #21944] INFO -- py3-201923-windows-10-1803: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:50:12.888020 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:50:24.892633 #21944] INFO -- py3-201923-windows-10-1803: [WinRM] Established +I, [2020-03-06T13:50:24.892759 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:24.905547 #21944] INFO -- py3-201923-windows-10-1803: Vagrant instance created. +I, [2020-03-06T13:50:24.907617 #21944] INFO -- py3-201923-windows-10-1803: Finished creating (0m58.23s). +I, [2020-03-06T13:50:24.907903 #21944] INFO -- py3-201923-windows-10-1803: -----> Converging ... +I, [2020-03-06T13:50:24.910579 #21944] INFO -- py3-201923-windows-10-1803: Preparing files for transfer +I, [2020-03-06T13:50:24.910775 #21944] INFO -- py3-201923-windows-10-1803: Preparing salt-minion +I, [2020-03-06T13:50:24.916617 #21944] INFO -- py3-201923-windows-10-1803: Preparing pillars into /srv/pillar +I, [2020-03-06T13:50:24.916762 #21944] INFO -- py3-201923-windows-10-1803: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:50:24.921000 #21944] INFO -- py3-201923-windows-10-1803: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:50:25.105505 #21944] INFO -- py3-201923-windows-10-1803: Preparing state_top +I, [2020-03-06T13:50:25.107495 #21944] INFO -- py3-201923-windows-10-1803: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:50:26.128380 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:26.128803 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:26.129337 #21944] INFO -- py3-201923-windows-10-1803: Directory: C:\ +I, [2020-03-06T13:50:26.129801 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:26.130342 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:26.130809 #21944] INFO -- py3-201923-windows-10-1803: Mode LastWriteTime Length Name +I, [2020-03-06T13:50:26.131200 #21944] INFO -- py3-201923-windows-10-1803: ---- ------------- ------ ---- +I, [2020-03-06T13:50:26.131609 #21944] INFO -- py3-201923-windows-10-1803: d----- 3/6/2020 10:50 AM temp +I, [2020-03-06T13:50:26.904667 #21944] INFO -- py3-201923-windows-10-1803: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe +I, [2020-03-06T13:50:30.521016 #21944] INFO -- py3-201923-windows-10-1803: Installing Salt minion +I, [2020-03-06T13:50:42.880498 #21944] INFO -- py3-201923-windows-10-1803: Starting the Salt minion service +I, [2020-03-06T13:50:42.880957 #21944] INFO -- py3-201923-windows-10-1803: Salt minion successfully installed +I, [2020-03-06T13:50:44.098279 #21944] INFO -- py3-201923-windows-10-1803: You asked for latest and you have 2019.2.3 installed, sweet! +I, [2020-03-06T13:50:44.098682 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.099184 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.646318 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.646708 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.647135 #21944] INFO -- py3-201923-windows-10-1803: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:50:44.647489 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.647933 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.648426 #21944] INFO -- py3-201923-windows-10-1803: Mode LastWriteTime Length Name +I, [2020-03-06T13:50:44.648807 #21944] INFO -- py3-201923-windows-10-1803: ---- ------------- ------ ---- +I, [2020-03-06T13:50:44.649201 #21944] INFO -- py3-201923-windows-10-1803: d----- 3/6/2020 10:50 AM kitchen +I, [2020-03-06T13:50:44.649580 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.649919 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:50:44.661993 #21944] INFO -- py3-201923-windows-10-1803: Transferring files to +I, [2020-03-06T13:51:15.896265 #21944] INFO -- py3-201923-windows-10-1803: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:51:15.896669 #21944] INFO -- py3-201923-windows-10-1803: At line:1 char:131 +I, [2020-03-06T13:51:15.897203 #21944] INFO -- py3-201923-windows-10-1803: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:51:15.897645 #21944] INFO -- py3-201923-windows-10-1803: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:51:15.898134 #21944] INFO -- py3-201923-windows-10-1803: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:51:15.898498 #21944] INFO -- py3-201923-windows-10-1803: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:51:15.898764 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:51:15.899138 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:51:15.899531 #21944] INFO -- py3-201923-windows-10-1803: Traceback (most recent call last): +I, [2020-03-06T13:51:15.899953 #21944] INFO -- py3-201923-windows-10-1803: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:51:15.900222 #21944] INFO -- py3-201923-windows-10-1803: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:51:15.900512 #21944] INFO -- py3-201923-windows-10-1803: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:51:15.900792 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:51:15.901056 #21944] INFO -- py3-201923-windows-10-1803: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:51:15.901371 #21944] INFO -- py3-201923-windows-10-1803: Traceback (most recent call last): +I, [2020-03-06T13:51:15.901606 #21944] INFO -- py3-201923-windows-10-1803: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:51:15.901808 #21944] INFO -- py3-201923-windows-10-1803: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:51:15.902010 #21944] INFO -- py3-201923-windows-10-1803: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:51:15.902223 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:10.286378 #21944] INFO -- py3-201923-windows-10-1803: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:52:10.286867 #21944] INFO -- py3-201923-windows-10-1803: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:52:10.287360 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:10.287768 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:10.288184 #21944] INFO -- py3-201923-windows-10-1803: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:52:10.288600 #21944] INFO -- py3-201923-windows-10-1803: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:52:10.288955 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:10.289358 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.070603 #21944] INFO -- py3-201923-windows-10-1803: local: +I, [2020-03-06T13:52:57.071163 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.071817 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:52:57.072335 #21944] INFO -- py3-201923-windows-10-1803: Function: system.hostname +I, [2020-03-06T13:52:57.073035 #21944] INFO -- py3-201923-windows-10-1803: Name: saltstack1 +I, [2020-03-06T13:52:57.073566 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.074096 #21944] INFO -- py3-201923-windows-10-1803: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:52:57.074485 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:50:56.937515 +I, [2020-03-06T13:52:57.074991 #21944] INFO -- py3-201923-windows-10-1803: Duration: 109.78 ms +I, [2020-03-06T13:52:57.075545 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.075979 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.076364 #21944] INFO -- py3-201923-windows-10-1803: hostname: +I, [2020-03-06T13:52:57.076961 #21944] INFO -- py3-201923-windows-10-1803: saltstack1 +I, [2020-03-06T13:52:57.077561 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.078051 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:52:57.078806 #21944] INFO -- py3-201923-windows-10-1803: Function: system.computer_desc +I, [2020-03-06T13:52:57.079307 #21944] INFO -- py3-201923-windows-10-1803: Name: Saltstack Computer Description +I, [2020-03-06T13:52:57.079696 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.080229 #21944] INFO -- py3-201923-windows-10-1803: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:52:57.080640 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:50:57.047295 +I, [2020-03-06T13:52:57.080976 #21944] INFO -- py3-201923-windows-10-1803: Duration: 2849.722 ms +I, [2020-03-06T13:52:57.081397 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.081869 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.082269 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.082692 #21944] INFO -- py3-201923-windows-10-1803: Saltstack Computer Description +I, [2020-03-06T13:52:57.083052 #21944] INFO -- py3-201923-windows-10-1803: old: +I, [2020-03-06T13:52:57.083399 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.083723 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:52:57.084045 #21944] INFO -- py3-201923-windows-10-1803: Function: timezone.system +I, [2020-03-06T13:52:57.084447 #21944] INFO -- py3-201923-windows-10-1803: Name: America/New_York +I, [2020-03-06T13:52:57.084788 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.085171 #21944] INFO -- py3-201923-windows-10-1803: Comment: Set timezone America/New_York +I, [2020-03-06T13:52:57.085509 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:50:59.927136 +I, [2020-03-06T13:52:57.085825 #21944] INFO -- py3-201923-windows-10-1803: Duration: 16.601 ms +I, [2020-03-06T13:52:57.086157 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.087755 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.089108 #21944] INFO -- py3-201923-windows-10-1803: timezone: +I, [2020-03-06T13:52:57.090927 #21944] INFO -- py3-201923-windows-10-1803: America/New_York +I, [2020-03-06T13:52:57.092664 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.094050 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.module.environ.items +I, [2020-03-06T13:52:57.095204 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.096793 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.097901 #21944] INFO -- py3-201923-windows-10-1803: Comment: environ.items: Success +I, [2020-03-06T13:52:57.099012 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:50:59.943737 +I, [2020-03-06T13:52:57.100085 #21944] INFO -- py3-201923-windows-10-1803: Duration: 18.458 ms +I, [2020-03-06T13:52:57.100681 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.103194 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.105051 #21944] INFO -- py3-201923-windows-10-1803: environ.items: +I, [2020-03-06T13:52:57.106909 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.108806 #21944] INFO -- py3-201923-windows-10-1803: ALLUSERSPROFILE: +I, [2020-03-06T13:52:57.110639 #21944] INFO -- py3-201923-windows-10-1803: C:\ProgramData +I, [2020-03-06T13:52:57.112395 #21944] INFO -- py3-201923-windows-10-1803: APPDATA: +I, [2020-03-06T13:52:57.113853 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:52:57.115575 #21944] INFO -- py3-201923-windows-10-1803: COMMONPROGRAMFILES: +I, [2020-03-06T13:52:57.117021 #21944] INFO -- py3-201923-windows-10-1803: C:\Program Files\Common Files +I, [2020-03-06T13:52:57.118424 #21944] INFO -- py3-201923-windows-10-1803: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:52:57.120106 #21944] INFO -- py3-201923-windows-10-1803: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:52:57.121669 #21944] INFO -- py3-201923-windows-10-1803: COMMONPROGRAMW6432: +I, [2020-03-06T13:52:57.122755 #21944] INFO -- py3-201923-windows-10-1803: C:\Program Files\Common Files +I, [2020-03-06T13:52:57.123871 #21944] INFO -- py3-201923-windows-10-1803: COMPUTERNAME: +I, [2020-03-06T13:52:57.124616 #21944] INFO -- py3-201923-windows-10-1803: VAGRANT-10 +I, [2020-03-06T13:52:57.126685 #21944] INFO -- py3-201923-windows-10-1803: COMSPEC: +I, [2020-03-06T13:52:57.128017 #21944] INFO -- py3-201923-windows-10-1803: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:52:57.129403 #21944] INFO -- py3-201923-windows-10-1803: DRIVERDATA: +I, [2020-03-06T13:52:57.130164 #21944] INFO -- py3-201923-windows-10-1803: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T13:52:57.131428 #21944] INFO -- py3-201923-windows-10-1803: HOMEDRIVE: +I, [2020-03-06T13:52:57.133201 #21944] INFO -- py3-201923-windows-10-1803: C: +I, [2020-03-06T13:52:57.134686 #21944] INFO -- py3-201923-windows-10-1803: HOMEPATH: +I, [2020-03-06T13:52:57.136334 #21944] INFO -- py3-201923-windows-10-1803: \Users\vagrant +I, [2020-03-06T13:52:57.138387 #21944] INFO -- py3-201923-windows-10-1803: LOCALAPPDATA: +I, [2020-03-06T13:52:57.140232 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:52:57.142323 #21944] INFO -- py3-201923-windows-10-1803: LOGONSERVER: +I, [2020-03-06T13:52:57.144366 #21944] INFO -- py3-201923-windows-10-1803: \\VAGRANT-10 +I, [2020-03-06T13:52:57.144963 #21944] INFO -- py3-201923-windows-10-1803: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:52:57.146021 #21944] INFO -- py3-201923-windows-10-1803: 2 +I, [2020-03-06T13:52:57.146992 #21944] INFO -- py3-201923-windows-10-1803: ONEDRIVE: +I, [2020-03-06T13:52:57.148110 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:52:57.149005 #21944] INFO -- py3-201923-windows-10-1803: OS: +I, [2020-03-06T13:52:57.149483 #21944] INFO -- py3-201923-windows-10-1803: Windows_NT +I, [2020-03-06T13:52:57.150409 #21944] INFO -- py3-201923-windows-10-1803: PATH: +I, [2020-03-06T13:52:57.151608 #21944] INFO -- py3-201923-windows-10-1803: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:52:57.152700 #21944] INFO -- py3-201923-windows-10-1803: PATHEXT: +I, [2020-03-06T13:52:57.160407 #21944] INFO -- py3-201923-windows-10-1803: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:52:57.161145 #21944] INFO -- py3-201923-windows-10-1803: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:52:57.161762 #21944] INFO -- py3-201923-windows-10-1803: AMD64 +I, [2020-03-06T13:52:57.162343 #21944] INFO -- py3-201923-windows-10-1803: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:52:57.162911 #21944] INFO -- py3-201923-windows-10-1803: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:52:57.163537 #21944] INFO -- py3-201923-windows-10-1803: PROCESSOR_LEVEL: +I, [2020-03-06T13:52:57.164111 #21944] INFO -- py3-201923-windows-10-1803: 6 +I, [2020-03-06T13:52:57.164676 #21944] INFO -- py3-201923-windows-10-1803: PROCESSOR_REVISION: +I, [2020-03-06T13:52:57.165244 #21944] INFO -- py3-201923-windows-10-1803: 8e0c +I, [2020-03-06T13:52:57.165985 #21944] INFO -- py3-201923-windows-10-1803: PROGRAMDATA: +I, [2020-03-06T13:52:57.166838 #21944] INFO -- py3-201923-windows-10-1803: C:\ProgramData +I, [2020-03-06T13:52:57.167505 #21944] INFO -- py3-201923-windows-10-1803: PROGRAMFILES: +I, [2020-03-06T13:52:57.168086 #21944] INFO -- py3-201923-windows-10-1803: C:\Program Files +I, [2020-03-06T13:52:57.168739 #21944] INFO -- py3-201923-windows-10-1803: PROGRAMFILES(X86): +I, [2020-03-06T13:52:57.169351 #21944] INFO -- py3-201923-windows-10-1803: C:\Program Files (x86) +I, [2020-03-06T13:52:57.169945 #21944] INFO -- py3-201923-windows-10-1803: PROGRAMW6432: +I, [2020-03-06T13:52:57.170542 #21944] INFO -- py3-201923-windows-10-1803: C:\Program Files +I, [2020-03-06T13:52:57.171051 #21944] INFO -- py3-201923-windows-10-1803: PROMPT: +I, [2020-03-06T13:52:57.171575 #21944] INFO -- py3-201923-windows-10-1803: $P$G +I, [2020-03-06T13:52:57.172078 #21944] INFO -- py3-201923-windows-10-1803: PSMODULEPATH: +I, [2020-03-06T13:52:57.172730 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:52:57.173285 #21944] INFO -- py3-201923-windows-10-1803: PUBLIC: +I, [2020-03-06T13:52:57.173863 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\Public +I, [2020-03-06T13:52:57.174396 #21944] INFO -- py3-201923-windows-10-1803: PYTHON: +I, [2020-03-06T13:52:57.174918 #21944] INFO -- py3-201923-windows-10-1803: C:\salt\bin\python.exe +I, [2020-03-06T13:52:57.175458 #21944] INFO -- py3-201923-windows-10-1803: SALTDIR: +I, [2020-03-06T13:52:57.176001 #21944] INFO -- py3-201923-windows-10-1803: C:\salt +I, [2020-03-06T13:52:57.176572 #21944] INFO -- py3-201923-windows-10-1803: SCRIPT: +I, [2020-03-06T13:52:57.177149 #21944] INFO -- py3-201923-windows-10-1803: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:52:57.177727 #21944] INFO -- py3-201923-windows-10-1803: SYSTEMDRIVE: +I, [2020-03-06T13:52:57.178272 #21944] INFO -- py3-201923-windows-10-1803: C: +I, [2020-03-06T13:52:57.178784 #21944] INFO -- py3-201923-windows-10-1803: SYSTEMROOT: +I, [2020-03-06T13:52:57.179296 #21944] INFO -- py3-201923-windows-10-1803: C:\Windows +I, [2020-03-06T13:52:57.179779 #21944] INFO -- py3-201923-windows-10-1803: TEMP: +I, [2020-03-06T13:52:57.180289 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:52:57.180783 #21944] INFO -- py3-201923-windows-10-1803: TMP: +I, [2020-03-06T13:52:57.181293 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:52:57.181794 #21944] INFO -- py3-201923-windows-10-1803: USERDOMAIN: +I, [2020-03-06T13:52:57.182301 #21944] INFO -- py3-201923-windows-10-1803: VAGRANT-10 +I, [2020-03-06T13:52:57.182801 #21944] INFO -- py3-201923-windows-10-1803: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:52:57.183313 #21944] INFO -- py3-201923-windows-10-1803: VAGRANT-10 +I, [2020-03-06T13:52:57.183813 #21944] INFO -- py3-201923-windows-10-1803: USERNAME: +I, [2020-03-06T13:52:57.184321 #21944] INFO -- py3-201923-windows-10-1803: vagrant +I, [2020-03-06T13:52:57.184824 #21944] INFO -- py3-201923-windows-10-1803: USERPROFILE: +I, [2020-03-06T13:52:57.185325 #21944] INFO -- py3-201923-windows-10-1803: C:\Users\vagrant +I, [2020-03-06T13:52:57.185826 #21944] INFO -- py3-201923-windows-10-1803: WINDIR: +I, [2020-03-06T13:52:57.186358 #21944] INFO -- py3-201923-windows-10-1803: C:\Windows +I, [2020-03-06T13:52:57.186843 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.187324 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.module.user.current +I, [2020-03-06T13:52:57.187785 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.188248 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.188710 #21944] INFO -- py3-201923-windows-10-1803: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:52:57.189176 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:50:59.962195 +I, [2020-03-06T13:52:57.189616 #21944] INFO -- py3-201923-windows-10-1803: Duration: 17.036 ms +I, [2020-03-06T13:52:57.190102 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.190603 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.191135 #21944] INFO -- py3-201923-windows-10-1803: user.current: +I, [2020-03-06T13:52:57.191699 #21944] INFO -- py3-201923-windows-10-1803: VAGRANT-10\vagrant +I, [2020-03-06T13:52:57.192254 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.192782 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.module.status.uptime +I, [2020-03-06T13:52:57.193321 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.193835 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.194354 #21944] INFO -- py3-201923-windows-10-1803: Comment: status.uptime: 0:01:13.021757 +I, [2020-03-06T13:52:57.194890 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:50:59.979231 +I, [2020-03-06T13:52:57.195430 #21944] INFO -- py3-201923-windows-10-1803: Duration: 42.526 ms +I, [2020-03-06T13:52:57.195929 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.196400 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.196905 #21944] INFO -- py3-201923-windows-10-1803: status.uptime: +I, [2020-03-06T13:52:57.197418 #21944] INFO -- py3-201923-windows-10-1803: 0:01:13.021757 +I, [2020-03-06T13:52:57.197929 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.198448 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:52:57.198972 #21944] INFO -- py3-201923-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:52:57.199515 #21944] INFO -- py3-201923-windows-10-1803: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage +I, [2020-03-06T13:52:57.199997 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.200512 #21944] INFO -- py3-201923-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run +I, [2020-03-06T13:52:57.201059 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:00.038180 +I, [2020-03-06T13:52:57.201618 #21944] INFO -- py3-201923-windows-10-1803: Duration: 1932.149 ms +I, [2020-03-06T13:52:57.202122 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.202656 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.203191 #21944] INFO -- py3-201923-windows-10-1803: pid: +I, [2020-03-06T13:52:57.203703 #21944] INFO -- py3-201923-windows-10-1803: 5500 +I, [2020-03-06T13:52:57.204227 #21944] INFO -- py3-201923-windows-10-1803: retcode: +I, [2020-03-06T13:52:57.204767 #21944] INFO -- py3-201923-windows-10-1803: 0 +I, [2020-03-06T13:52:57.205284 #21944] INFO -- py3-201923-windows-10-1803: stderr: +I, [2020-03-06T13:52:57.205813 #21944] INFO -- py3-201923-windows-10-1803: stdout: +I, [2020-03-06T13:52:57.206345 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.206900 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:52:57.207480 #21944] INFO -- py3-201923-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:52:57.208060 #21944] INFO -- py3-201923-windows-10-1803: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage +I, [2020-03-06T13:52:57.208626 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.209157 #21944] INFO -- py3-201923-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run +I, [2020-03-06T13:52:57.209664 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:01.985255 +I, [2020-03-06T13:52:57.210242 #21944] INFO -- py3-201923-windows-10-1803: Duration: 1299.481 ms +I, [2020-03-06T13:52:57.210790 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.211352 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.211933 #21944] INFO -- py3-201923-windows-10-1803: pid: +I, [2020-03-06T13:52:57.212464 #21944] INFO -- py3-201923-windows-10-1803: 6964 +I, [2020-03-06T13:52:57.212976 #21944] INFO -- py3-201923-windows-10-1803: retcode: +I, [2020-03-06T13:52:57.213503 #21944] INFO -- py3-201923-windows-10-1803: 0 +I, [2020-03-06T13:52:57.214020 #21944] INFO -- py3-201923-windows-10-1803: stderr: +I, [2020-03-06T13:52:57.214576 #21944] INFO -- py3-201923-windows-10-1803: stdout: +I, [2020-03-06T13:52:57.215093 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.215628 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:52:57.216125 #21944] INFO -- py3-201923-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:52:57.216660 #21944] INFO -- py3-201923-windows-10-1803: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage +I, [2020-03-06T13:52:57.217223 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.217786 #21944] INFO -- py3-201923-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run +I, [2020-03-06T13:52:57.218312 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:03.284736 +I, [2020-03-06T13:52:57.218812 #21944] INFO -- py3-201923-windows-10-1803: Duration: 1964.929 ms +I, [2020-03-06T13:52:57.219312 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.219799 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.220318 #21944] INFO -- py3-201923-windows-10-1803: pid: +I, [2020-03-06T13:52:57.220861 #21944] INFO -- py3-201923-windows-10-1803: 6464 +I, [2020-03-06T13:52:57.221429 #21944] INFO -- py3-201923-windows-10-1803: retcode: +I, [2020-03-06T13:52:57.221956 #21944] INFO -- py3-201923-windows-10-1803: 0 +I, [2020-03-06T13:52:57.222468 #21944] INFO -- py3-201923-windows-10-1803: stderr: +I, [2020-03-06T13:52:57.222982 #21944] INFO -- py3-201923-windows-10-1803: stdout: +I, [2020-03-06T13:52:57.223508 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.224116 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:52:57.224689 #21944] INFO -- py3-201923-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:52:57.225277 #21944] INFO -- py3-201923-windows-10-1803: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage +I, [2020-03-06T13:52:57.225795 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.226368 #21944] INFO -- py3-201923-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run +I, [2020-03-06T13:52:57.226875 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:05.249665 +I, [2020-03-06T13:52:57.227439 #21944] INFO -- py3-201923-windows-10-1803: Duration: 1222.669 ms +I, [2020-03-06T13:52:57.228058 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.228655 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.229271 #21944] INFO -- py3-201923-windows-10-1803: pid: +I, [2020-03-06T13:52:57.229834 #21944] INFO -- py3-201923-windows-10-1803: 3648 +I, [2020-03-06T13:52:57.230362 #21944] INFO -- py3-201923-windows-10-1803: retcode: +I, [2020-03-06T13:52:57.230898 #21944] INFO -- py3-201923-windows-10-1803: 0 +I, [2020-03-06T13:52:57.236871 #21944] INFO -- py3-201923-windows-10-1803: stderr: +I, [2020-03-06T13:52:57.237577 #21944] INFO -- py3-201923-windows-10-1803: stdout: +I, [2020-03-06T13:52:57.238122 #21944] INFO -- py3-201923-windows-10-1803: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:51:06.472334 Duration: 473.688 ms +I, [2020-03-06T13:52:57.238579 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.239037 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:52:57.239543 #21944] INFO -- py3-201923-windows-10-1803: Function: reg.present +I, [2020-03-06T13:52:57.240099 #21944] INFO -- py3-201923-windows-10-1803: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:52:57.240628 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.241153 #21944] INFO -- py3-201923-windows-10-1803: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:52:57.241672 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:06.946022 +I, [2020-03-06T13:52:57.242167 #21944] INFO -- py3-201923-windows-10-1803: Duration: 8198.516 ms +I, [2020-03-06T13:52:57.242657 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.243146 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.243667 #21944] INFO -- py3-201923-windows-10-1803: reg: +I, [2020-03-06T13:52:57.244179 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.244687 #21944] INFO -- py3-201923-windows-10-1803: Added: +I, [2020-03-06T13:52:57.245147 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.245660 #21944] INFO -- py3-201923-windows-10-1803: Entry: +I, [2020-03-06T13:52:57.246100 #21944] INFO -- py3-201923-windows-10-1803: SystemDefaultTlsVersions +I, [2020-03-06T13:52:57.246516 #21944] INFO -- py3-201923-windows-10-1803: Inheritance: +I, [2020-03-06T13:52:57.246909 #21944] INFO -- py3-201923-windows-10-1803: True +I, [2020-03-06T13:52:57.247357 #21944] INFO -- py3-201923-windows-10-1803: Key: +I, [2020-03-06T13:52:57.247874 #21944] INFO -- py3-201923-windows-10-1803: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:52:57.248334 #21944] INFO -- py3-201923-windows-10-1803: Owner: +I, [2020-03-06T13:52:57.248850 #21944] INFO -- py3-201923-windows-10-1803: None +I, [2020-03-06T13:52:57.249359 #21944] INFO -- py3-201923-windows-10-1803: Perms: +I, [2020-03-06T13:52:57.249805 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.250214 #21944] INFO -- py3-201923-windows-10-1803: Deny: +I, [2020-03-06T13:52:57.250636 #21944] INFO -- py3-201923-windows-10-1803: None +I, [2020-03-06T13:52:57.251052 #21944] INFO -- py3-201923-windows-10-1803: Grant: +I, [2020-03-06T13:52:57.251510 #21944] INFO -- py3-201923-windows-10-1803: None +I, [2020-03-06T13:52:57.251951 #21944] INFO -- py3-201923-windows-10-1803: Value: +I, [2020-03-06T13:52:57.252453 #21944] INFO -- py3-201923-windows-10-1803: 1 +I, [2020-03-06T13:52:57.252934 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.253461 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:52:57.253975 #21944] INFO -- py3-201923-windows-10-1803: Function: reg.present +I, [2020-03-06T13:52:57.254501 #21944] INFO -- py3-201923-windows-10-1803: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:52:57.255014 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.255580 #21944] INFO -- py3-201923-windows-10-1803: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:52:57.256109 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:15.144538 +I, [2020-03-06T13:52:57.256634 #21944] INFO -- py3-201923-windows-10-1803: Duration: 210.475 ms +I, [2020-03-06T13:52:57.257081 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.257554 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.258018 #21944] INFO -- py3-201923-windows-10-1803: reg: +I, [2020-03-06T13:52:57.258507 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.258910 #21944] INFO -- py3-201923-windows-10-1803: Added: +I, [2020-03-06T13:52:57.259290 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.259710 #21944] INFO -- py3-201923-windows-10-1803: Entry: +I, [2020-03-06T13:52:57.260137 #21944] INFO -- py3-201923-windows-10-1803: SystemDefaultTlsVersions +I, [2020-03-06T13:52:57.260580 #21944] INFO -- py3-201923-windows-10-1803: Inheritance: +I, [2020-03-06T13:52:57.261669 #21944] INFO -- py3-201923-windows-10-1803: True +I, [2020-03-06T13:52:57.262341 #21944] INFO -- py3-201923-windows-10-1803: Key: +I, [2020-03-06T13:52:57.262948 #21944] INFO -- py3-201923-windows-10-1803: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:52:57.263414 #21944] INFO -- py3-201923-windows-10-1803: Owner: +I, [2020-03-06T13:52:57.263809 #21944] INFO -- py3-201923-windows-10-1803: None +I, [2020-03-06T13:52:57.264317 #21944] INFO -- py3-201923-windows-10-1803: Perms: +I, [2020-03-06T13:52:57.264832 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.265326 #21944] INFO -- py3-201923-windows-10-1803: Deny: +I, [2020-03-06T13:52:57.265742 #21944] INFO -- py3-201923-windows-10-1803: None +I, [2020-03-06T13:52:57.266172 #21944] INFO -- py3-201923-windows-10-1803: Grant: +I, [2020-03-06T13:52:57.266574 #21944] INFO -- py3-201923-windows-10-1803: None +I, [2020-03-06T13:52:57.266952 #21944] INFO -- py3-201923-windows-10-1803: Value: +I, [2020-03-06T13:52:57.267351 #21944] INFO -- py3-201923-windows-10-1803: 1 +I, [2020-03-06T13:52:57.267778 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.268278 #21944] INFO -- py3-201923-windows-10-1803: ID: manually.update_git_repo-ng +I, [2020-03-06T13:52:57.268685 #21944] INFO -- py3-201923-windows-10-1803: Function: archive.extracted +I, [2020-03-06T13:52:57.269111 #21944] INFO -- py3-201923-windows-10-1803: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:52:57.269593 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.270145 #21944] INFO -- py3-201923-windows-10-1803: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:52:57.270685 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:15.355013 +I, [2020-03-06T13:52:57.271195 #21944] INFO -- py3-201923-windows-10-1803: Duration: 895.423 ms +I, [2020-03-06T13:52:57.271659 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.272155 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.272658 #21944] INFO -- py3-201923-windows-10-1803: directories_created: +I, [2020-03-06T13:52:57.273212 #21944] INFO -- py3-201923-windows-10-1803: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:52:57.273747 #21944] INFO -- py3-201923-windows-10-1803: extracted_files: +I, [2020-03-06T13:52:57.274293 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ +I, [2020-03-06T13:52:57.274748 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:52:57.275180 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:52:57.275681 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:52:57.276197 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:52:57.276694 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:52:57.277231 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:52:57.277757 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:52:57.278314 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:52:57.278826 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:52:57.279374 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:52:57.279912 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:52:57.280458 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:52:57.281027 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:52:57.281561 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:52:57.282091 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:52:57.282643 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:52:57.283220 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:52:57.283796 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:52:57.284442 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:52:57.285060 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:52:57.285627 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:52:57.286168 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:52:57.286696 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:52:57.287230 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:52:57.287798 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:52:57.288367 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:52:57.288958 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:52:57.289493 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:52:57.290073 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:52:57.290597 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:52:57.291146 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:52:57.291689 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:52:57.292221 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:52:57.292739 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:52:57.293230 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:52:57.293743 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:52:57.294247 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:52:57.294806 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:52:57.295338 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:52:57.295887 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:52:57.296386 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:52:57.296922 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:52:57.297444 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:52:57.297999 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:52:57.298545 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:52:57.299066 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:52:57.299597 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:52:57.300120 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:52:57.300669 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:52:57.301185 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:52:57.301739 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:52:57.302268 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:52:57.302827 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:52:57.308725 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:52:57.309477 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:52:57.310094 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:52:57.310713 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:52:57.311323 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:52:57.311897 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:52:57.312453 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:52:57.313058 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:52:57.313692 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:52:57.314293 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:52:57.314880 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:52:57.315518 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:52:57.316116 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:52:57.316676 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:52:57.317302 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:52:57.317816 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:52:57.318289 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:52:57.318730 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:52:57.319209 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:52:57.319693 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:52:57.320085 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:52:57.320570 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:52:57.321597 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:52:57.322219 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:52:57.322787 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:52:57.323354 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:52:57.323890 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:52:57.324448 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:52:57.325040 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:52:57.325598 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:52:57.326162 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:52:57.326665 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:52:57.327090 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:52:57.327543 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:52:57.327926 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:52:57.328440 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:52:57.328889 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:52:57.329409 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:52:57.330591 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:52:57.331164 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:52:57.331697 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:52:57.332210 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:52:57.332665 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:52:57.333102 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:52:57.333588 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:52:57.333995 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:52:57.334382 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:52:57.334760 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:52:57.335123 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:52:57.335566 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:52:57.336052 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:52:57.336574 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:52:57.337069 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:52:57.337550 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:52:57.337958 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:52:57.338394 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:52:57.338835 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:52:57.339232 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:52:57.339628 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:52:57.340078 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:52:57.340577 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:52:57.340970 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:52:57.341362 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:52:57.341732 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:52:57.342110 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:52:57.342560 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:52:57.343054 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:52:57.343562 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:52:57.344025 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:52:57.344445 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:52:57.344808 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:52:57.345191 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:52:57.345578 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:52:57.346049 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:52:57.346520 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:52:57.347013 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:52:57.347509 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:52:57.347978 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:52:57.348379 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:52:57.348758 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:52:57.349189 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:52:57.349619 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:52:57.350120 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:52:57.350626 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:52:57.351045 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:52:57.351475 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:52:57.351862 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:52:57.352264 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:52:57.352636 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:52:57.353102 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:52:57.353579 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:52:57.354068 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:52:57.354528 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:52:57.354928 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:52:57.355322 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:52:57.355709 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:52:57.356101 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:52:57.356564 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:52:57.357041 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:52:57.357548 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:52:57.358052 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:52:57.358454 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:52:57.358844 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:52:57.359231 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:52:57.359604 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:52:57.360125 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:52:57.360570 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:52:57.361084 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:52:57.361607 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:52:57.362303 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:52:57.363025 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:52:57.363799 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:52:57.364523 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:52:57.365480 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:52:57.365950 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:52:57.366355 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:52:57.366772 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:52:57.367147 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:52:57.367583 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:52:57.368048 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:52:57.368605 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:52:57.369116 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:52:57.369513 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:52:57.369934 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:52:57.370360 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:52:57.370781 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:52:57.371202 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:52:57.371606 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:52:57.377110 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:52:57.377725 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:52:57.378167 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:52:57.378614 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:52:57.379244 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:52:57.379789 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:52:57.380299 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:52:57.380751 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:52:57.381153 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:52:57.381568 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:52:57.382039 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:52:57.382521 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:52:57.382961 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:52:57.383432 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:52:57.383862 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:52:57.384363 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:52:57.384875 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:52:57.385343 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:52:57.385816 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:52:57.386324 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:52:57.386934 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:52:57.387530 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:52:57.388080 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:52:57.388633 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:52:57.389143 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:52:57.389638 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:52:57.390244 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:52:57.390732 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:52:57.391184 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:52:57.391614 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:52:57.392047 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:52:57.392498 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:52:57.393017 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:52:57.393509 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:52:57.394127 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:52:57.394688 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:52:57.395225 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:52:57.395754 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:52:57.396257 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:52:57.396871 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:52:57.397446 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:52:57.398016 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:52:57.398621 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:52:57.399126 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:52:57.399679 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:52:57.400300 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:52:57.400871 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:52:57.401530 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:52:57.402032 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:52:57.402480 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:52:57.402924 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:52:57.403340 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:52:57.403759 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:52:57.404220 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:52:57.404745 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:52:57.405344 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:52:57.405896 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:52:57.406512 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:52:57.407065 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:52:57.407465 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:52:57.407846 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:52:57.408230 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:52:57.408714 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:52:57.409205 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:52:57.409758 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:52:57.410187 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:52:57.410703 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:52:57.411064 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:52:57.411450 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:52:57.411934 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:52:57.412408 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:52:57.412881 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:52:57.413382 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:52:57.413793 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:52:57.414188 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:52:57.414611 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:52:57.414994 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:52:57.415376 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:52:57.415836 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:52:57.416311 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:52:57.416814 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:52:57.417235 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:52:57.417640 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:52:57.417988 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:52:57.418359 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:52:57.418823 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:52:57.419285 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:52:57.419726 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:52:57.420215 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:52:57.420683 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:52:57.421052 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:52:57.421413 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:52:57.421740 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:52:57.422083 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:52:57.422425 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:52:57.422754 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:52:57.423128 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:52:57.423523 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:52:57.424008 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:52:57.424430 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:52:57.424787 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:52:57.425159 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:52:57.425556 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:52:57.425963 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:52:57.426353 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:52:57.426715 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:52:57.427172 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:52:57.427599 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:52:57.427966 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:52:57.428325 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:52:57.428654 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:52:57.429030 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:52:57.429424 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:52:57.429822 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:52:57.430185 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:52:57.430649 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:52:57.431011 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:52:57.431365 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:52:57.431710 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:52:57.432115 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:52:57.432585 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:52:57.432946 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:52:57.433345 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:52:57.433784 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:52:57.434195 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:52:57.434560 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:52:57.439425 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:52:57.440138 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:52:57.440699 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:52:57.441215 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:52:57.441697 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:52:57.442196 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:52:57.442675 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:52:57.443189 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:52:57.443689 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:52:57.444198 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:52:57.444739 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:52:57.445316 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:52:57.445906 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:52:57.446472 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:52:57.447074 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:52:57.447648 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:52:57.448213 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:52:57.448640 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:52:57.547481 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:52:57.548063 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:52:57.548542 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:52:57.549081 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:52:57.549535 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:52:57.549917 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:52:57.550282 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:52:57.550663 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:52:57.551021 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:52:57.551372 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:52:57.551719 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:52:57.552140 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:52:57.552504 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:52:57.552936 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:52:57.553357 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:52:57.553752 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:52:57.554122 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:52:57.554455 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:52:57.554802 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:52:57.555139 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:52:57.555488 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:52:57.555901 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:52:57.556243 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:52:57.556609 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:52:57.557067 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:52:57.557471 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:52:57.562776 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:52:57.563442 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:52:57.563892 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:52:57.565136 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:52:57.566005 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:52:57.566419 #21944] INFO -- py3-201923-windows-10-1803: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:52:57.566841 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.567197 #21944] INFO -- py3-201923-windows-10-1803: ID: rename-extract +I, [2020-03-06T13:52:57.567557 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.567990 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.568460 #21944] INFO -- py3-201923-windows-10-1803: Comment: file.rename: True +I, [2020-03-06T13:52:57.568854 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:16.250436 +I, [2020-03-06T13:52:57.569193 #21944] INFO -- py3-201923-windows-10-1803: Duration: 0.0 ms +I, [2020-03-06T13:52:57.569540 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.569887 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.570239 #21944] INFO -- py3-201923-windows-10-1803: file.rename: +I, [2020-03-06T13:52:57.570606 #21944] INFO -- py3-201923-windows-10-1803: True +I, [2020-03-06T13:52:57.570926 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.571289 #21944] INFO -- py3-201923-windows-10-1803: ID: pkg.refresh_db +I, [2020-03-06T13:52:57.571647 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.571988 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.572397 #21944] INFO -- py3-201923-windows-10-1803: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:52:57.572833 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:16.250436 +I, [2020-03-06T13:52:57.573169 #21944] INFO -- py3-201923-windows-10-1803: Duration: 8444.762 ms +I, [2020-03-06T13:52:57.573508 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.573871 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.574258 #21944] INFO -- py3-201923-windows-10-1803: pkg.refresh_db: +I, [2020-03-06T13:52:57.574599 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.574945 #21944] INFO -- py3-201923-windows-10-1803: failed: +I, [2020-03-06T13:52:57.575317 #21944] INFO -- py3-201923-windows-10-1803: 0 +I, [2020-03-06T13:52:57.575707 #21944] INFO -- py3-201923-windows-10-1803: success: +I, [2020-03-06T13:52:57.576065 #21944] INFO -- py3-201923-windows-10-1803: 298 +I, [2020-03-06T13:52:57.576494 #21944] INFO -- py3-201923-windows-10-1803: total: +I, [2020-03-06T13:52:57.576994 #21944] INFO -- py3-201923-windows-10-1803: 298 +I, [2020-03-06T13:52:57.577408 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.577748 #21944] INFO -- py3-201923-windows-10-1803: ID: 7zip +I, [2020-03-06T13:52:57.578101 #21944] INFO -- py3-201923-windows-10-1803: Function: pkg.installed +I, [2020-03-06T13:52:57.578452 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.578872 #21944] INFO -- py3-201923-windows-10-1803: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:52:57.579239 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:24.716957 +I, [2020-03-06T13:52:57.579588 #21944] INFO -- py3-201923-windows-10-1803: Duration: 4236.566 ms +I, [2020-03-06T13:52:57.579987 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.580389 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.580752 #21944] INFO -- py3-201923-windows-10-1803: 7zip: +I, [2020-03-06T13:52:57.581106 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.581430 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.581831 #21944] INFO -- py3-201923-windows-10-1803: 18.06.00.0 +I, [2020-03-06T13:52:57.582239 #21944] INFO -- py3-201923-windows-10-1803: old: +I, [2020-03-06T13:52:57.582702 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.583153 #21944] INFO -- py3-201923-windows-10-1803: ID: kdiff3 +I, [2020-03-06T13:52:57.583537 #21944] INFO -- py3-201923-windows-10-1803: Function: pkg.installed +I, [2020-03-06T13:52:57.583871 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.584213 #21944] INFO -- py3-201923-windows-10-1803: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:52:57.584535 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:28.964273 +I, [2020-03-06T13:52:57.585018 #21944] INFO -- py3-201923-windows-10-1803: Duration: 10770.418 ms +I, [2020-03-06T13:52:57.585547 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.586097 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.586624 #21944] INFO -- py3-201923-windows-10-1803: kdiff3: +I, [2020-03-06T13:52:57.587144 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.587582 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.587982 #21944] INFO -- py3-201923-windows-10-1803: Not Found +I, [2020-03-06T13:52:57.588326 #21944] INFO -- py3-201923-windows-10-1803: old: +I, [2020-03-06T13:52:57.588656 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.589005 #21944] INFO -- py3-201923-windows-10-1803: ID: git +I, [2020-03-06T13:52:57.589446 #21944] INFO -- py3-201923-windows-10-1803: Function: pkg.installed +I, [2020-03-06T13:52:57.589864 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.590250 #21944] INFO -- py3-201923-windows-10-1803: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:52:57.590627 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:51:39.749826 +I, [2020-03-06T13:52:57.590968 #21944] INFO -- py3-201923-windows-10-1803: Duration: 29953.505 ms +I, [2020-03-06T13:52:57.591277 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.591606 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.591983 #21944] INFO -- py3-201923-windows-10-1803: git: +I, [2020-03-06T13:52:57.592359 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.592786 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.593242 #21944] INFO -- py3-201923-windows-10-1803: 2.23.0.windows.1 +I, [2020-03-06T13:52:57.593628 #21944] INFO -- py3-201923-windows-10-1803: old: +I, [2020-03-06T13:52:57.593973 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.594304 #21944] INFO -- py3-201923-windows-10-1803: ID: windows_environment.refresh.path +I, [2020-03-06T13:52:57.594686 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.595025 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.595348 #21944] INFO -- py3-201923-windows-10-1803: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:52:57.595687 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:52:09.715994 +I, [2020-03-06T13:52:57.596026 #21944] INFO -- py3-201923-windows-10-1803: Duration: 46.49 ms +I, [2020-03-06T13:52:57.596373 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.596737 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.597077 #21944] INFO -- py3-201923-windows-10-1803: windows_environment.refresh: +I, [2020-03-06T13:52:57.597403 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.597741 #21944] INFO -- py3-201923-windows-10-1803: PATH: +I, [2020-03-06T13:52:57.598135 #21944] INFO -- py3-201923-windows-10-1803: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:52:57.598471 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.598819 #21944] INFO -- py3-201923-windows-10-1803: ID: chocolatey.bootstrap +I, [2020-03-06T13:52:57.599186 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.599535 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.600020 #21944] INFO -- py3-201923-windows-10-1803: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:52:57.600410 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.600947 #21944] INFO -- py3-201923-windows-10-1803: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:52:57.601367 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.601785 #21944] INFO -- py3-201923-windows-10-1803: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:52:57.602093 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.602463 #21944] INFO -- py3-201923-windows-10-1803: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:52:57.602784 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.603110 #21944] INFO -- py3-201923-windows-10-1803: Installing chocolatey on this machine +I, [2020-03-06T13:52:57.603529 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.603958 #21944] INFO -- py3-201923-windows-10-1803: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:52:57.604361 #21944] INFO -- py3-201923-windows-10-1803: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:52:57.604680 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.605010 #21944] INFO -- py3-201923-windows-10-1803: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:52:57.605340 #21944] INFO -- py3-201923-windows-10-1803: before you can use choco. +I, [2020-03-06T13:52:57.605718 #21944] INFO -- py3-201923-windows-10-1803: Restricting write permissions to Administrators +I, [2020-03-06T13:52:57.606041 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.606404 #21944] INFO -- py3-201923-windows-10-1803: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:52:57.606750 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.611921 #21944] INFO -- py3-201923-windows-10-1803: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:52:57.612368 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.612842 #21944] INFO -- py3-201923-windows-10-1803: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:52:57.613207 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.613637 #21944] INFO -- py3-201923-windows-10-1803: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:52:57.613963 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.614347 #21944] INFO -- py3-201923-windows-10-1803: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:52:57.614654 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.614999 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.615372 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.615907 #21944] INFO -- py3-201923-windows-10-1803: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:52:57.616352 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.616715 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.617046 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.617437 #21944] INFO -- py3-201923-windows-10-1803: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:52:57.617841 #21944] INFO -- py3-201923-windows-10-1803: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:52:57.618252 #21944] INFO -- py3-201923-windows-10-1803: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:52:57.618722 #21944] INFO -- py3-201923-windows-10-1803: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:52:57.619179 #21944] INFO -- py3-201923-windows-10-1803: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:52:57.619605 #21944] INFO -- py3-201923-windows-10-1803: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:52:57.619947 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.620339 #21944] INFO -- py3-201923-windows-10-1803: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:52:57.620692 #21944] INFO -- py3-201923-windows-10-1803: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:52:57.621036 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.621383 #21944] INFO -- py3-201923-windows-10-1803: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:52:57.621782 #21944] INFO -- py3-201923-windows-10-1803: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:52:57.622215 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.622665 #21944] INFO -- py3-201923-windows-10-1803: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:52:57.623011 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.623351 #21944] INFO -- py3-201923-windows-10-1803: Run choco /? for a list of functions. +I, [2020-03-06T13:52:57.623685 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.624051 #21944] INFO -- py3-201923-windows-10-1803: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:52:57.624468 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.624867 #21944] INFO -- py3-201923-windows-10-1803: first prior to using choco. +I, [2020-03-06T13:52:57.625199 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.625639 #21944] INFO -- py3-201923-windows-10-1803: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:52:57.626039 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.626437 #21944] INFO -- py3-201923-windows-10-1803: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:52:57.626807 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:52:09.762484 +I, [2020-03-06T13:52:57.627181 #21944] INFO -- py3-201923-windows-10-1803: Duration: 23020.61 ms +I, [2020-03-06T13:52:57.627541 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.627945 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.628282 #21944] INFO -- py3-201923-windows-10-1803: chocolatey.bootstrap: +I, [2020-03-06T13:52:57.628744 #21944] INFO -- py3-201923-windows-10-1803: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:52:57.629172 #21944] INFO -- py3-201923-windows-10-1803: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:52:57.629590 #21944] INFO -- py3-201923-windows-10-1803: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:52:57.630408 #21944] INFO -- py3-201923-windows-10-1803: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:52:57.630774 #21944] INFO -- py3-201923-windows-10-1803: Installing chocolatey on this machine +I, [2020-03-06T13:52:57.631180 #21944] INFO -- py3-201923-windows-10-1803: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:52:57.631561 #21944] INFO -- py3-201923-windows-10-1803: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:52:57.631980 #21944] INFO -- py3-201923-windows-10-1803: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:52:57.632409 #21944] INFO -- py3-201923-windows-10-1803: before you can use choco. +I, [2020-03-06T13:52:57.632808 #21944] INFO -- py3-201923-windows-10-1803: Restricting write permissions to Administrators +I, [2020-03-06T13:52:57.633148 #21944] INFO -- py3-201923-windows-10-1803: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:52:57.633498 #21944] INFO -- py3-201923-windows-10-1803: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:52:57.633860 #21944] INFO -- py3-201923-windows-10-1803: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:52:57.634265 #21944] INFO -- py3-201923-windows-10-1803: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:52:57.634662 #21944] INFO -- py3-201923-windows-10-1803: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:52:57.635058 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.635467 #21944] INFO -- py3-201923-windows-10-1803: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:52:57.635932 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.636303 #21944] INFO -- py3-201923-windows-10-1803: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:52:57.636679 #21944] INFO -- py3-201923-windows-10-1803: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:52:57.637042 #21944] INFO -- py3-201923-windows-10-1803: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:52:57.637383 #21944] INFO -- py3-201923-windows-10-1803: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:52:57.637745 #21944] INFO -- py3-201923-windows-10-1803: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:52:57.638098 #21944] INFO -- py3-201923-windows-10-1803: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:52:57.638513 #21944] INFO -- py3-201923-windows-10-1803: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:52:57.639006 #21944] INFO -- py3-201923-windows-10-1803: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:52:57.639401 #21944] INFO -- py3-201923-windows-10-1803: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:52:57.639758 #21944] INFO -- py3-201923-windows-10-1803: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:52:57.640098 #21944] INFO -- py3-201923-windows-10-1803: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:52:57.640439 #21944] INFO -- py3-201923-windows-10-1803: Run choco /? for a list of functions. +I, [2020-03-06T13:52:57.640847 #21944] INFO -- py3-201923-windows-10-1803: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:52:57.641195 #21944] INFO -- py3-201923-windows-10-1803: first prior to using choco. +I, [2020-03-06T13:52:57.641654 #21944] INFO -- py3-201923-windows-10-1803: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:52:57.642079 #21944] INFO -- py3-201923-windows-10-1803: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:52:57.642483 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.642839 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:52:57.643169 #21944] INFO -- py3-201923-windows-10-1803: Function: chocolatey.installed +I, [2020-03-06T13:52:57.643534 #21944] INFO -- py3-201923-windows-10-1803: Name: windirstat +I, [2020-03-06T13:52:57.643882 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.644204 #21944] INFO -- py3-201923-windows-10-1803: Comment: +I, [2020-03-06T13:52:57.644567 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:52:32.783094 +I, [2020-03-06T13:52:57.644999 #21944] INFO -- py3-201923-windows-10-1803: Duration: 7038.85 ms +I, [2020-03-06T13:52:57.645376 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.645754 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.646109 #21944] INFO -- py3-201923-windows-10-1803: windirstat: +I, [2020-03-06T13:52:57.646479 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.646835 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.647296 #21944] INFO -- py3-201923-windows-10-1803: - 1.1.2.20161210 +I, [2020-03-06T13:52:57.647704 #21944] INFO -- py3-201923-windows-10-1803: old: +I, [2020-03-06T13:52:57.648112 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.648586 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:52:57.648957 #21944] INFO -- py3-201923-windows-10-1803: Function: chocolatey.installed +I, [2020-03-06T13:52:57.649382 #21944] INFO -- py3-201923-windows-10-1803: Name: notepadplusplus +I, [2020-03-06T13:52:57.649890 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.650383 #21944] INFO -- py3-201923-windows-10-1803: Comment: +I, [2020-03-06T13:52:57.650943 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:52:39.821944 +I, [2020-03-06T13:52:57.651525 #21944] INFO -- py3-201923-windows-10-1803: Duration: 11535.976 ms +I, [2020-03-06T13:52:57.652044 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.652509 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.652913 #21944] INFO -- py3-201923-windows-10-1803: notepadplusplus: +I, [2020-03-06T13:52:57.653293 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.653665 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.654058 #21944] INFO -- py3-201923-windows-10-1803: - 7.8.5 +I, [2020-03-06T13:52:57.654506 #21944] INFO -- py3-201923-windows-10-1803: old: +I, [2020-03-06T13:52:57.654890 #21944] INFO -- py3-201923-windows-10-1803: notepadplusplus.install: +I, [2020-03-06T13:52:57.655260 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.655628 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.655989 #21944] INFO -- py3-201923-windows-10-1803: - 7.8.5 +I, [2020-03-06T13:52:57.660495 #21944] INFO -- py3-201923-windows-10-1803: old: +I, [2020-03-06T13:52:57.660956 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.661351 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:52:57.661727 #21944] INFO -- py3-201923-windows-10-1803: Function: dism.feature_installed +I, [2020-03-06T13:52:57.662094 #21944] INFO -- py3-201923-windows-10-1803: Name: TelnetClient +I, [2020-03-06T13:52:57.662479 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.662845 #21944] INFO -- py3-201923-windows-10-1803: Comment: Installed TelnetClient +I, [2020-03-06T13:52:57.663347 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:52:51.357920 +I, [2020-03-06T13:52:57.663733 #21944] INFO -- py3-201923-windows-10-1803: Duration: 4922.692 ms +I, [2020-03-06T13:52:57.664112 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.664475 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.664831 #21944] INFO -- py3-201923-windows-10-1803: feature: +I, [2020-03-06T13:52:57.665239 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.665620 #21944] INFO -- py3-201923-windows-10-1803: new: +I, [2020-03-06T13:52:57.666004 #21944] INFO -- py3-201923-windows-10-1803: TelnetClient +I, [2020-03-06T13:52:57.666435 #21944] INFO -- py3-201923-windows-10-1803: pid: +I, [2020-03-06T13:52:57.666935 #21944] INFO -- py3-201923-windows-10-1803: 1248 +I, [2020-03-06T13:52:57.667476 #21944] INFO -- py3-201923-windows-10-1803: retcode: +I, [2020-03-06T13:52:57.667990 #21944] INFO -- py3-201923-windows-10-1803: 0 +I, [2020-03-06T13:52:57.668528 #21944] INFO -- py3-201923-windows-10-1803: stderr: +I, [2020-03-06T13:52:57.669074 #21944] INFO -- py3-201923-windows-10-1803: stdout: +I, [2020-03-06T13:52:57.669612 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.670114 #21944] INFO -- py3-201923-windows-10-1803: ID: windows.module.system.reboot +I, [2020-03-06T13:52:57.670506 #21944] INFO -- py3-201923-windows-10-1803: Function: module.run +I, [2020-03-06T13:52:57.670995 #21944] INFO -- py3-201923-windows-10-1803: Result: True +I, [2020-03-06T13:52:57.671408 #21944] INFO -- py3-201923-windows-10-1803: Comment: system.reboot: True +I, [2020-03-06T13:52:57.671875 #21944] INFO -- py3-201923-windows-10-1803: Started: 10:52:56.280612 +I, [2020-03-06T13:52:57.672275 #21944] INFO -- py3-201923-windows-10-1803: Duration: 236.758 ms +I, [2020-03-06T13:52:57.672636 #21944] INFO -- py3-201923-windows-10-1803: Changes: +I, [2020-03-06T13:52:57.673032 #21944] INFO -- py3-201923-windows-10-1803: ---------- +I, [2020-03-06T13:52:57.673381 #21944] INFO -- py3-201923-windows-10-1803: system.reboot: +I, [2020-03-06T13:52:57.673805 #21944] INFO -- py3-201923-windows-10-1803: True +I, [2020-03-06T13:52:57.674283 #21944] INFO -- py3-201923-windows-10-1803: +I, [2020-03-06T13:52:57.674716 #21944] INFO -- py3-201923-windows-10-1803: Summary for local +I, [2020-03-06T13:52:57.675060 #21944] INFO -- py3-201923-windows-10-1803: ------------- +I, [2020-03-06T13:52:57.675387 #21944] INFO -- py3-201923-windows-10-1803: Succeeded: 25 (changed=24) +I, [2020-03-06T13:52:57.675740 #21944] INFO -- py3-201923-windows-10-1803: Failed: 0 +I, [2020-03-06T13:52:57.676081 #21944] INFO -- py3-201923-windows-10-1803: ------------- +I, [2020-03-06T13:52:57.676475 #21944] INFO -- py3-201923-windows-10-1803: Total states run: 25 +I, [2020-03-06T13:52:57.676897 #21944] INFO -- py3-201923-windows-10-1803: Total run time: 119.458 s +I, [2020-03-06T13:52:57.696973 #21944] INFO -- py3-201923-windows-10-1803: Downloading files from +I, [2020-03-06T13:52:57.873244 #21944] INFO -- py3-201923-windows-10-1803: Finished converging (2m32.96s). +I, [2020-03-06T13:52:57.873443 #21944] INFO -- py3-201923-windows-10-1803: -----> Setting up ... +I, [2020-03-06T13:52:57.876257 #21944] INFO -- py3-201923-windows-10-1803: Finished setting up (0m0.00s). +I, [2020-03-06T13:52:57.876463 #21944] INFO -- py3-201923-windows-10-1803: -----> Verifying ... +I, [2020-03-06T13:52:59.039051 #21944] INFO -- py3-201923-windows-10-1803: Loaded default +I, [2020-03-06T13:53:58.081867 #21944] INFO -- py3-201923-windows-10-1803: Finished verifying (1m0.20s). +I, [2020-03-06T13:53:58.082014 #21944] INFO -- py3-201923-windows-10-1803: Finished testing (4m31.41s). +I, [2020-03-06T13:53:58.083396 #21944] INFO -- py3-201923-windows-10-1803: -----> Destroying ... +I, [2020-03-06T13:54:07.445769 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:54:09.031582 #21944] INFO -- py3-201923-windows-10-1803: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:54:09.682025 #21944] INFO -- py3-201923-windows-10-1803: Vagrant instance destroyed. +I, [2020-03-06T13:54:09.683088 #21944] INFO -- py3-201923-windows-10-1803: Finished destroying (0m11.60s). diff --git a/test/results/py3-201923-windows-10-1803.log b/test/results/py3-201923-windows-10-1803.log new file mode 100644 index 0000000..49bf336 --- /dev/null +++ b/test/results/py3-201923-windows-10-1803.log @@ -0,0 +1,1079 @@ +Fri Mar 6 13:49:06 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +Author: Peter Mudd +Date: Fri Mar 6 12:43:24 2020 -0500 + + feat: support saltstack 3000 +CURRENT BRANCH COMMIT ID +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +CURRENT RELEASE TAG +v1.0.0 +-----> Starting Test Kitchen (v2.3.4) +-----> Cleaning up any prior instances of +-----> Destroying ... + Finished destroying (0m0.00s). +-----> Testing +-----> Creating ... + Bringing machine 'default' up with 'virtualbox' provider... + ==> default: Cloning VM... + ==> default: Matching MAC address for NAT networking... + ==> default: Checking if box 'StefanScherer/windows_10' version '2018.09.12' is up to date... + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1803-eca6023e-23a2-4d73-8a37-b4a0d9962c52 + ==> default: Clearing any previously set network interfaces... + ==> default: Preparing network interfaces based on configuration... + default: Adapter 1: nat + ==> default: Forwarding ports... + default: 3389 (guest) => 3389 (host) (adapter 1) + default: 5985 (guest) => 55985 (host) (adapter 1) + default: 5986 (guest) => 55986 (host) (adapter 1) + default: 22 (guest) => 2222 (host) (adapter 1) + ==> default: Running 'pre-boot' VM customizations... + ==> default: Booting VM... + ==> default: Waiting for machine to boot. This may take a few minutes... + default: WinRM address: 127.0.0.1:55985 + default: WinRM username: vagrant + default: WinRM execution_time_limit: PT2H + default: WinRM transport: negotiate + ==> default: Machine booted and ready! + ==> default: Checking for guest additions in VM... + default: The guest additions on this VM do not match the installed version of + default: VirtualBox! In most cases this is fine, but in rare cases it can + default: prevent things such as shared folders from working properly. If you see + default: shared folder errors, please make sure the guest additions within the + default: virtual machine match the version of VirtualBox you have installed on + default: your host and reload your VM. + default: + default: Guest Additions Version: 5.2.16 + default: VirtualBox Version: 6.1 + ==> default: Mounting shared folders... + default: /results => /mnt/c/tmp/results + ==> default: Machine not provisioned because `--no-provision` is specified. + [WinRM] Established + + Vagrant instance created. + Finished creating (0m58.23s). +-----> Converging ... + Preparing files for transfer + Preparing salt-minion + Preparing pillars into /srv/pillar + pillars-from-files is deprecated in favor of pillars_from_files + Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula + Preparing state_top + Preparing scripts into /etc/salt/scripts + + + Directory: C:\ + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:50 AM temp + Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + Installing Salt minion + Starting the Salt minion service + Salt minion successfully installed + You asked for latest and you have 2019.2.3 installed, sweet! + + + + + Directory: C:\Users\vagrant\AppData\Local\Temp + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:50 AM kitchen + + + Transferring files to + c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + At line:1 char:131 + + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException + + FullyQualifiedErrorId : NativeCommandError + + + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + + + local: + ---------- + ID: windows.state.system.hostname.saltstack1 + Function: system.hostname + Name: saltstack1 + Result: True + Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot + Started: 10:50:56.937515 + Duration: 109.78 ms + Changes: + ---------- + hostname: + saltstack1 + ---------- + ID: windows.state.system.computer_desc.description + Function: system.computer_desc + Name: Saltstack Computer Description + Result: True + Comment: Computer description successfully changed to 'Saltstack Computer Description' + Started: 10:50:57.047295 + Duration: 2849.722 ms + Changes: + ---------- + new: + Saltstack Computer Description + old: + ---------- + ID: windows.state.timezone.system.America/New_York + Function: timezone.system + Name: America/New_York + Result: True + Comment: Set timezone America/New_York + Started: 10:50:59.927136 + Duration: 16.601 ms + Changes: + ---------- + timezone: + America/New_York + ---------- + ID: windows.module.environ.items + Function: module.run + Result: True + Comment: environ.items: Success + Started: 10:50:59.943737 + Duration: 18.458 ms + Changes: + ---------- + environ.items: + ---------- + ALLUSERSPROFILE: + C:\ProgramData + APPDATA: + C:\Users\vagrant\AppData\Roaming + COMMONPROGRAMFILES: + C:\Program Files\Common Files + COMMONPROGRAMFILES(X86): + C:\Program Files (x86)\Common Files + COMMONPROGRAMW6432: + C:\Program Files\Common Files + COMPUTERNAME: + VAGRANT-10 + COMSPEC: + C:\Windows\system32\cmd.exe + DRIVERDATA: + C:\Windows\System32\Drivers\DriverData + HOMEDRIVE: + C: + HOMEPATH: + \Users\vagrant + LOCALAPPDATA: + C:\Users\vagrant\AppData\Local + LOGONSERVER: + \\VAGRANT-10 + NUMBER_OF_PROCESSORS: + 2 + ONEDRIVE: + C:\Users\vagrant\OneDrive + OS: + Windows_NT + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 + PATHEXT: + .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL + PROCESSOR_ARCHITECTURE: + AMD64 + PROCESSOR_IDENTIFIER: + Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_LEVEL: + 6 + PROCESSOR_REVISION: + 8e0c + PROGRAMDATA: + C:\ProgramData + PROGRAMFILES: + C:\Program Files + PROGRAMFILES(X86): + C:\Program Files (x86) + PROGRAMW6432: + C:\Program Files + PROMPT: + $P$G + PSMODULEPATH: + C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules + PUBLIC: + C:\Users\Public + PYTHON: + C:\salt\bin\python.exe + SALTDIR: + C:\salt + SCRIPT: + C:\salt\bin\Scripts\salt-call + SYSTEMDRIVE: + C: + SYSTEMROOT: + C:\Windows + TEMP: + C:\Users\vagrant\AppData\Local\Temp + TMP: + C:\Users\vagrant\AppData\Local\Temp + USERDOMAIN: + VAGRANT-10 + USERDOMAIN_ROAMINGPROFILE: + VAGRANT-10 + USERNAME: + vagrant + USERPROFILE: + C:\Users\vagrant + WINDIR: + C:\Windows + ---------- + ID: windows.module.user.current + Function: module.run + Result: True + Comment: user.current: VAGRANT-10\vagrant + Started: 10:50:59.962195 + Duration: 17.036 ms + Changes: + ---------- + user.current: + VAGRANT-10\vagrant + ---------- + ID: windows.module.status.uptime + Function: module.run + Result: True + Comment: status.uptime: 0:01:13.021757 + Started: 10:50:59.979231 + Duration: 42.526 ms + Changes: + ---------- + status.uptime: + 0:01:13.021757 + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection + Function: cmd.run + Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run + Started: 10:51:00.038180 + Duration: 1932.149 ms + Changes: + ---------- + pid: + 5500 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet + Function: cmd.run + Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run + Started: 10:51:01.985255 + Duration: 1299.481 ms + Changes: + ---------- + pid: + 6964 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run + Started: 10:51:03.284736 + Duration: 1964.929 ms + Changes: + ---------- + pid: + 6464 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run + Started: 10:51:05.249665 + Duration: 1222.669 ms + Changes: + ---------- + pid: + 3648 + retcode: + 0 + stderr: + stdout: + Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:51:06.472334 Duration: 473.688 ms + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:51:06.946022 + Duration: 8198.516 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:51:15.144538 + Duration: 210.475 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: manually.update_git_repo-ng + Function: archive.extracted + Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + Result: True + Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs + Started: 10:51:15.355013 + Duration: 895.423 ms + Changes: + ---------- + directories_created: + - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ + extracted_files: + - salt-winrepo-ng-master/ + - salt-winrepo-ng-master/.gitignore + - salt-winrepo-ng-master/.travis.yml + - salt-winrepo-ng-master/.travis/ + - salt-winrepo-ng-master/.travis/requirements.txt + - salt-winrepo-ng-master/.travis/tests.py + - salt-winrepo-ng-master/7zip.sls + - salt-winrepo-ng-master/LICENSE + - salt-winrepo-ng-master/README.md + - salt-winrepo-ng-master/_config.yml + - salt-winrepo-ng-master/activeperl_x64.sls + - salt-winrepo-ng-master/activeperl_x86.sls + - salt-winrepo-ng-master/adobeair.sls + - salt-winrepo-ng-master/adobereader-dc-classic.sls + - salt-winrepo-ng-master/adobereader-xi.sls + - salt-winrepo-ng-master/adobereader.sls + - salt-winrepo-ng-master/adobeshockwaveplayer.sls + - salt-winrepo-ng-master/adv-ip-scanner.sls + - salt-winrepo-ng-master/adv-port-scanner.sls + - salt-winrepo-ng-master/advancedlogging.sls + - salt-winrepo-ng-master/anydesk-msi.sls + - salt-winrepo-ng-master/anydesk.sls + - salt-winrepo-ng-master/applicationrequestrouting.sls + - salt-winrepo-ng-master/aspnet-mvc1.sls + - salt-winrepo-ng-master/atom.sls + - salt-winrepo-ng-master/audacity.sls + - salt-winrepo-ng-master/auditbeat/ + - salt-winrepo-ng-master/auditbeat/init.sls + - salt-winrepo-ng-master/auditbeat/install.cmd + - salt-winrepo-ng-master/auditbeat/install.ps1 + - salt-winrepo-ng-master/auditbeat/remove.cmd + - salt-winrepo-ng-master/autohotkey.sls + - salt-winrepo-ng-master/autoit.sls + - salt-winrepo-ng-master/autopsy.sls + - salt-winrepo-ng-master/awscli.sls + - salt-winrepo-ng-master/azuredatastudio.sls + - salt-winrepo-ng-master/bandizip.sls + - salt-winrepo-ng-master/belarc-advisor.sls + - salt-winrepo-ng-master/bginfo4x.sls + - salt-winrepo-ng-master/bitnami-nginxstack.sls + - salt-winrepo-ng-master/bitvise.sls + - salt-winrepo-ng-master/blender.sls + - salt-winrepo-ng-master/bootracer.sls + - salt-winrepo-ng-master/bulk_extractor.sls + - salt-winrepo-ng-master/bulkrenameutility.sls + - salt-winrepo-ng-master/ccleaner-slim.sls + - salt-winrepo-ng-master/ccleaner.sls + - salt-winrepo-ng-master/cdburnerxp.sls + - salt-winrepo-ng-master/cdroller.sls + - salt-winrepo-ng-master/check-mk-agent-msi.sls + - salt-winrepo-ng-master/check-mk-agent.sls + - salt-winrepo-ng-master/chocolatey/ + - salt-winrepo-ng-master/chocolatey/init.sls + - salt-winrepo-ng-master/chocolatey/install.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.ps1 + - salt-winrepo-ng-master/chrome-rdp.sls + - salt-winrepo-ng-master/chrome.sls + - salt-winrepo-ng-master/clamav.sls + - salt-winrepo-ng-master/clamwin.sls + - salt-winrepo-ng-master/classicshell.sls + - salt-winrepo-ng-master/clink.sls + - salt-winrepo-ng-master/conemu.sls + - salt-winrepo-ng-master/cpu-z.sls + - salt-winrepo-ng-master/curl.sls + - salt-winrepo-ng-master/cyberduck-cli.sls + - salt-winrepo-ng-master/cyberduck-msi.sls + - salt-winrepo-ng-master/cyberduck.sls + - salt-winrepo-ng-master/defraggler.sls + - salt-winrepo-ng-master/docs/ + - salt-winrepo-ng-master/docs/ReadMe.md + - salt-winrepo-ng-master/dotnet.sls + - salt-winrepo-ng-master/dropbox.sls + - salt-winrepo-ng-master/duplicati.sls + - salt-winrepo-ng-master/dvdstyler.sls + - salt-winrepo-ng-master/echo-desktop.sls + - salt-winrepo-ng-master/eea.sls + - salt-winrepo-ng-master/emet.sls + - salt-winrepo-ng-master/emsisoft-anti-malware.sls + - salt-winrepo-ng-master/eraser.sls + - salt-winrepo-ng-master/erlang/ + - salt-winrepo-ng-master/erlang/init.sls + - salt-winrepo-ng-master/erlang/install.cmd + - salt-winrepo-ng-master/evernote.sls + - salt-winrepo-ng-master/fiddler.sls + - salt-winrepo-ng-master/filebeat/ + - salt-winrepo-ng-master/filebeat/init.sls + - salt-winrepo-ng-master/filebeat/install.cmd + - salt-winrepo-ng-master/filebeat/install.ps1 + - salt-winrepo-ng-master/filebeat/remove.cmd + - salt-winrepo-ng-master/filehippo-app-manager.sls + - salt-winrepo-ng-master/filezilla.sls + - salt-winrepo-ng-master/firefox-esr_x64.sls + - salt-winrepo-ng-master/firefox-esr_x86.sls + - salt-winrepo-ng-master/firefox_x64.sls + - salt-winrepo-ng-master/firefox_x86.sls + - salt-winrepo-ng-master/functionbeat/ + - salt-winrepo-ng-master/functionbeat/init.sls + - salt-winrepo-ng-master/functionbeat/install.cmd + - salt-winrepo-ng-master/functionbeat/install.ps1 + - salt-winrepo-ng-master/functionbeat/remove.cmd + - salt-winrepo-ng-master/gedit.sls + - salt-winrepo-ng-master/gimp.sls + - salt-winrepo-ng-master/git-extensions.sls + - salt-winrepo-ng-master/git.sls + - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls + - salt-winrepo-ng-master/gnucash.sls + - salt-winrepo-ng-master/golang.sls + - salt-winrepo-ng-master/goodsync.sls + - salt-winrepo-ng-master/gow.sls + - salt-winrepo-ng-master/gpg4win-light.sls + - salt-winrepo-ng-master/gpg4win-vanilla.sls + - salt-winrepo-ng-master/gpg4win/ + - salt-winrepo-ng-master/gpg4win/init.sls + - salt-winrepo-ng-master/gpg4win/silent.ini + - salt-winrepo-ng-master/graylog-collector-sidecar.sls + - salt-winrepo-ng-master/grepwin.sls + - salt-winrepo-ng-master/gvim.sls + - salt-winrepo-ng-master/handbrake.sls + - salt-winrepo-ng-master/heartbeat/ + - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp + - salt-winrepo-ng-master/heartbeat/init.sls + - salt-winrepo-ng-master/heartbeat/install.cmd + - salt-winrepo-ng-master/heartbeat/install.ps1 + - salt-winrepo-ng-master/heartbeat/remove.cmd + - salt-winrepo-ng-master/hipchat.sls + - salt-winrepo-ng-master/hostsfileeditor.sls + - salt-winrepo-ng-master/hwinfo.sls + - salt-winrepo-ng-master/ice.sls + - salt-winrepo-ng-master/icecast.sls + - salt-winrepo-ng-master/icloud.sls + - salt-winrepo-ng-master/iismediaservices.sls + - salt-winrepo-ng-master/influx-capacitor.sls + - salt-winrepo-ng-master/inkscape.sls + - salt-winrepo-ng-master/intellij-community.sls + - salt-winrepo-ng-master/intellij-ultimate.sls + - salt-winrepo-ng-master/internet-evidence-finder.sls + - salt-winrepo-ng-master/irfanview-plugins.sls + - salt-winrepo-ng-master/irfanview.sls + - salt-winrepo-ng-master/isapirewrite-lite.sls + - salt-winrepo-ng-master/itunes.sls + - salt-winrepo-ng-master/jdk8.sls + - salt-winrepo-ng-master/jre.sls + - salt-winrepo-ng-master/jre8.sls + - salt-winrepo-ng-master/jungledisk-server-management.sls + - salt-winrepo-ng-master/jungledisk-server.sls + - salt-winrepo-ng-master/jungledisk-workgroup.sls + - salt-winrepo-ng-master/kdiff3.sls + - salt-winrepo-ng-master/keepass-2x.sls + - salt-winrepo-ng-master/keepass.sls + - salt-winrepo-ng-master/lastpass.sls + - salt-winrepo-ng-master/lazarus.sls + - salt-winrepo-ng-master/libreoffice.sls + - salt-winrepo-ng-master/logparser.sls + - salt-winrepo-ng-master/maas360bootanalyzer.sls + - salt-winrepo-ng-master/malwarebytes.sls + - salt-winrepo-ng-master/mariadb.sls + - salt-winrepo-ng-master/mercurial.sls + - salt-winrepo-ng-master/messageanalyzer.sls + - salt-winrepo-ng-master/metricbeat/ + - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp + - salt-winrepo-ng-master/metricbeat/init.sls + - salt-winrepo-ng-master/metricbeat/install.cmd + - salt-winrepo-ng-master/metricbeat/install.ps1 + - salt-winrepo-ng-master/metricbeat/remove.cmd + - salt-winrepo-ng-master/microsoft-build-tools.sls + - salt-winrepo-ng-master/mikogo.sls + - salt-winrepo-ng-master/miktex-basic.sls + - salt-winrepo-ng-master/mongodb.sls + - salt-winrepo-ng-master/ms-mbsa.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls + - salt-winrepo-ng-master/mucommander.sls + - salt-winrepo-ng-master/mysql-essential.sls + - salt-winrepo-ng-master/mysql-installer-community.sls + - salt-winrepo-ng-master/mysql-workbench.sls + - salt-winrepo-ng-master/never10.sls + - salt-winrepo-ng-master/newrelic-infra.sls + - salt-winrepo-ng-master/nextcloud-client.sls + - salt-winrepo-ng-master/nmap.sls + - salt-winrepo-ng-master/node.js-lts.sls + - salt-winrepo-ng-master/node.js.sls + - salt-winrepo-ng-master/nomacs.sls + - salt-winrepo-ng-master/npp.sls + - salt-winrepo-ng-master/nsclient.sls + - salt-winrepo-ng-master/nsis.sls + - salt-winrepo-ng-master/ntp.sls + - salt-winrepo-ng-master/nunit-console.sls + - salt-winrepo-ng-master/nxlog.sls + - salt-winrepo-ng-master/octopus-tentacle.sls + - salt-winrepo-ng-master/openlp.sls + - salt-winrepo-ng-master/openoffice.sls + - salt-winrepo-ng-master/openvpn.sls + - salt-winrepo-ng-master/osquery.sls + - salt-winrepo-ng-master/ossec-agent.sls + - salt-winrepo-ng-master/owncloud.sls + - salt-winrepo-ng-master/packetbeat/ + - salt-winrepo-ng-master/packetbeat/init.sls + - salt-winrepo-ng-master/packetbeat/install.cmd + - salt-winrepo-ng-master/packetbeat/install.ps1 + - salt-winrepo-ng-master/packetbeat/remove.cmd + - salt-winrepo-ng-master/pandoc.sls + - salt-winrepo-ng-master/parallels-client-15.sls + - salt-winrepo-ng-master/pass4win.sls + - salt-winrepo-ng-master/passware-kit-agent.sls + - salt-winrepo-ng-master/passware-kit-forensic.sls + - salt-winrepo-ng-master/patchmypc-free.sls + - salt-winrepo-ng-master/pdf24creator.sls + - salt-winrepo-ng-master/pdfcreator.sls + - salt-winrepo-ng-master/peazip.sls + - salt-winrepo-ng-master/pgadmin4.sls + - salt-winrepo-ng-master/pgina.sls + - salt-winrepo-ng-master/pidgin.sls + - salt-winrepo-ng-master/postgresql.sls + - salt-winrepo-ng-master/powerbi-desktop.sls + - salt-winrepo-ng-master/powershell-core.sls + - salt-winrepo-ng-master/prometheus-wmi-exporter.sls + - salt-winrepo-ng-master/putty.sls + - salt-winrepo-ng-master/pycharm-pro/ + - salt-winrepo-ng-master/pycharm-pro/init.sls + - salt-winrepo-ng-master/pycharm-pro/silent.config + - salt-winrepo-ng-master/python2_x64.sls + - salt-winrepo-ng-master/python2_x86.sls + - salt-winrepo-ng-master/python3_x64.sls + - salt-winrepo-ng-master/python3_x86.sls + - salt-winrepo-ng-master/qemu.sls + - salt-winrepo-ng-master/queueexplorerpro.sls + - salt-winrepo-ng-master/quicktime.sls + - salt-winrepo-ng-master/rabbitmq.sls + - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls + - salt-winrepo-ng-master/rakudo-star_x64.sls + - salt-winrepo-ng-master/rasclient.sls + - salt-winrepo-ng-master/rdcman.sls + - salt-winrepo-ng-master/rocketchat.sls + - salt-winrepo-ng-master/rubyinstaller_x64.sls + - salt-winrepo-ng-master/rubyinstaller_x86.sls + - salt-winrepo-ng-master/salt-minion-py2.sls + - salt-winrepo-ng-master/salt-minion-py3.sls + - salt-winrepo-ng-master/sandboxie.sls + - salt-winrepo-ng-master/scaleout.sls + - salt-winrepo-ng-master/secunia.psi.sls + - salt-winrepo-ng-master/sensu.sls + - salt-winrepo-ng-master/sharpdevelop.sls + - salt-winrepo-ng-master/skitch.sls + - salt-winrepo-ng-master/skype-msi.sls + - salt-winrepo-ng-master/skype.sls + - salt-winrepo-ng-master/slack-machine-msi.sls + - salt-winrepo-ng-master/slack-user-msi.sls + - salt-winrepo-ng-master/slack.sls + - salt-winrepo-ng-master/smartmontools.sls + - salt-winrepo-ng-master/snmptools.sls + - salt-winrepo-ng-master/soapui.sls + - salt-winrepo-ng-master/software-informer.sls + - salt-winrepo-ng-master/sourcetree.sls + - salt-winrepo-ng-master/spybot-anti-beacon.sls + - salt-winrepo-ng-master/spybot.sls + - salt-winrepo-ng-master/sscserv-free.sls + - salt-winrepo-ng-master/stayawake/ + - salt-winrepo-ng-master/stayawake/init.sls + - salt-winrepo-ng-master/stayawake/install.cmd + - salt-winrepo-ng-master/steam.sls + - salt-winrepo-ng-master/stellarium.sls + - salt-winrepo-ng-master/strawberryperl_x64.sls + - salt-winrepo-ng-master/strawberryperl_x86.sls + - salt-winrepo-ng-master/stunnel.sls + - salt-winrepo-ng-master/subinacl.sls + - salt-winrepo-ng-master/sumatrapdf.sls + - salt-winrepo-ng-master/svn.sls + - salt-winrepo-ng-master/teamviewer.sls + - salt-winrepo-ng-master/teamviewer_host.sls + - salt-winrepo-ng-master/teracopy.sls + - salt-winrepo-ng-master/texmaker.sls + - salt-winrepo-ng-master/texniccenter.sls + - salt-winrepo-ng-master/texstudio.sls + - salt-winrepo-ng-master/texworks.sls + - salt-winrepo-ng-master/thunderbird.sls + - salt-winrepo-ng-master/tightvnc.sls + - salt-winrepo-ng-master/todotxt.net.sls + - salt-winrepo-ng-master/todour.sls + - salt-winrepo-ng-master/tortoise-bzr.sls + - salt-winrepo-ng-master/tortoise-git.sls + - salt-winrepo-ng-master/tortoise-hg.sls + - salt-winrepo-ng-master/tortoise-svn.sls + - salt-winrepo-ng-master/truecrypt.sls + - salt-winrepo-ng-master/ultradefrag.sls + - salt-winrepo-ng-master/urlrewrite.sls + - salt-winrepo-ng-master/usbdlm.sls + - salt-winrepo-ng-master/vagrant.sls + - salt-winrepo-ng-master/vcforpython27.sls + - salt-winrepo-ng-master/vcxsrv.sls + - salt-winrepo-ng-master/verysleepy.sls + - salt-winrepo-ng-master/veyon.sls + - salt-winrepo-ng-master/virtualbox.sls + - salt-winrepo-ng-master/viscosity.sls + - salt-winrepo-ng-master/vivaldi.sls + - salt-winrepo-ng-master/vlc.sls + - salt-winrepo-ng-master/vs-community.sls + - salt-winrepo-ng-master/vs_remotetools_2017.sls + - salt-winrepo-ng-master/vscode.sls + - salt-winrepo-ng-master/vsee.sls + - salt-winrepo-ng-master/wamp-server-3.sls + - salt-winrepo-ng-master/wamp-stack.sls + - salt-winrepo-ng-master/webdeploy.sls + - salt-winrepo-ng-master/webplatforminstaller.sls + - salt-winrepo-ng-master/win-app-manager.sls + - salt-winrepo-ng-master/windirstat.sls + - salt-winrepo-ng-master/winhttpcertcfg.sls + - salt-winrepo-ng-master/winlogbeat/ + - salt-winrepo-ng-master/winlogbeat/init.sls + - salt-winrepo-ng-master/winlogbeat/install.cmd + - salt-winrepo-ng-master/winlogbeat/install.ps1 + - salt-winrepo-ng-master/winlogbeat/remove.cmd + - salt-winrepo-ng-master/winmerge.sls + - salt-winrepo-ng-master/winmtr.sls + - salt-winrepo-ng-master/winpcap.sls + - salt-winrepo-ng-master/winrar.sls + - salt-winrepo-ng-master/winscp.sls + - salt-winrepo-ng-master/wireshark.sls + - salt-winrepo-ng-master/wmi_provider/ + - salt-winrepo-ng-master/wmi_provider/README.md + - salt-winrepo-ng-master/wmi_provider/answer.txt + - salt-winrepo-ng-master/wmi_provider/init.sls + - salt-winrepo-ng-master/wmi_provider/majsetup.reg + - salt-winrepo-ng-master/wscc.sls + - salt-winrepo-ng-master/wufuc.sls + - salt-winrepo-ng-master/xampp.sls + - salt-winrepo-ng-master/xming.sls + - salt-winrepo-ng-master/yubikey-manager.sls + - salt-winrepo-ng-master/yubikey-personalization-tool.sls + - salt-winrepo-ng-master/zabbix-agent.sls + - salt-winrepo-ng-master/zipinstaller/ + - salt-winrepo-ng-master/zipinstaller/init.sls + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic + - salt-winrepo-ng-master/zoom.sls + ---------- + ID: rename-extract + Function: module.run + Result: True + Comment: file.rename: True + Started: 10:51:16.250436 + Duration: 0.0 ms + Changes: + ---------- + file.rename: + True + ---------- + ID: pkg.refresh_db + Function: module.run + Result: True + Comment: check_cmd determined the state succeeded + Started: 10:51:16.250436 + Duration: 8444.762 ms + Changes: + ---------- + pkg.refresh_db: + ---------- + failed: + 0 + success: + 298 + total: + 298 + ---------- + ID: 7zip + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:51:24.716957 + Duration: 4236.566 ms + Changes: + ---------- + 7zip: + ---------- + new: + 18.06.00.0 + old: + ---------- + ID: kdiff3 + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: kdiff3 + Started: 10:51:28.964273 + Duration: 10770.418 ms + Changes: + ---------- + kdiff3: + ---------- + new: + Not Found + old: + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 10:51:39.749826 + Duration: 29953.505 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: + ---------- + ID: windows_environment.refresh.path + Function: module.run + Result: True + Comment: windows_environment.refresh: Success + Started: 10:52:09.715994 + Duration: 46.49 ms + Changes: + ---------- + windows_environment.refresh: + ---------- + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + ---------- + ID: chocolatey.bootstrap + Function: module.run + Result: True + Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. + + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + + Downloading 7-Zip commandline tool prior to extraction. + + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + + Installing chocolatey on this machine + + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + + We are setting up the Chocolatey package repository. + + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + + + Creating Chocolatey folders if they do not already exist. + + + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + + You can call choco from anywhere, command line or powershell by typing choco. + + Run choco /? for a list of functions. + + You may need to shut down and restart powershell and/or consoles + + first prior to using choco. + + Ensuring chocolatey commands are on the path + + Ensuring chocolatey.nupkg is in the lib folder + Started: 10:52:09.762484 + Duration: 23020.61 ms + Changes: + ---------- + chocolatey.bootstrap: + Getting latest version of the Chocolatey package for download. + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + Downloading 7-Zip commandline tool prior to extraction. + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + Installing chocolatey on this machine + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + We are setting up the Chocolatey package repository. + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + Creating Chocolatey folders if they do not already exist. + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + You can call choco from anywhere, command line or powershell by typing choco. + Run choco /? for a list of functions. + You may need to shut down and restart powershell and/or consoles + first prior to using choco. + Ensuring chocolatey commands are on the path + Ensuring chocolatey.nupkg is in the lib folder + ---------- + ID: windows.system.packages.chocolatey.windirstat + Function: chocolatey.installed + Name: windirstat + Result: True + Comment: + Started: 10:52:32.783094 + Duration: 7038.85 ms + Changes: + ---------- + windirstat: + ---------- + new: + - 1.1.2.20161210 + old: + ---------- + ID: windows.system.packages.chocolatey.notepadplusplus + Function: chocolatey.installed + Name: notepadplusplus + Result: True + Comment: + Started: 10:52:39.821944 + Duration: 11535.976 ms + Changes: + ---------- + notepadplusplus: + ---------- + new: + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 + old: + ---------- + ID: windows.system.desktop.optional_features.installed.TelnetClient + Function: dism.feature_installed + Name: TelnetClient + Result: True + Comment: Installed TelnetClient + Started: 10:52:51.357920 + Duration: 4922.692 ms + Changes: + ---------- + feature: + ---------- + new: + TelnetClient + pid: + 1248 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.module.system.reboot + Function: module.run + Result: True + Comment: system.reboot: True + Started: 10:52:56.280612 + Duration: 236.758 ms + Changes: + ---------- + system.reboot: + True + + Summary for local + ------------- + Succeeded: 25 (changed=24) + Failed: 0 + ------------- + Total states run: 25 + Total run time: 119.458 s + Downloading files from + Finished converging (2m32.96s). +-----> Setting up ... + Finished setting up (0m0.00s). +-----> Verifying ... + Loaded default +`execution expired`, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 +`execution expired`, target may be rebooting after highstate. Remaining retries: 18 +`execution expired`, target may be rebooting after highstate. Remaining retries: 17 +INFO: Got pillar from the target minion using WinRM. + +Profile: SaltStack Windows Formula (default) +Version: (not specified) +Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 + + ✔ Operating System: + ✔ windows_10_enterprise_evaluation should include "windows" + ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled + ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed + ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey + ✔ Chocolatey package notepadplusplus should be installed + ✔ Chocolatey package windirstat should be installed + ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" + ↺ Windows Features: salt.formula.windows.system.server.features + ↺ Skipped control due to only_if condition: only supported on servers + ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap + ✔ Command: `choco` should exist + ✔ Windows Timezone: salt.states.timezone.system + ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set + ✔ Windows Optional Features: salt.states.win_dism.feature_installed + ✔ Windows Optional Feature: `TelnetClient` should be installed + ✔ Windows Computer Hostname: salt.states.win_system.hostname + ✔ System Information hostname should cmp == "saltstack1" + ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" + ✔ Windows Computer Description: salt.states.win_system.computer_desc + ✔ Powershell stdout should match "Saltstack Computer Description" + ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed + ✔ System Package Git should be installed + ✔ System Package 7-Zip should be installed + ✔ System Package 7-Zip version should cmp == "18.06.00.0" + ✔ System Package KDiff3 should be installed + + +Profile Summary: 9 successful controls, 0 control failures, 1 control skipped +Test Summary: 19 successful, 0 failures, 1 skipped + Finished verifying (1m0.20s). + Finished testing (4m31.41s). +-----> Destroying ... + ==> default: Forcing shutdown of VM... + ==> default: Destroying VM and associated drives... + Vagrant instance destroyed. + Finished destroying (0m11.60s). +-----> Test Kitchen is finished. (4m56.35s) +KITCHEN TEST EXIT CODE +0 diff --git a/test/results/py3-201923-windows-10-1803.salt.log b/test/results/py3-201923-windows-10-1803.salt.log new file mode 100755 index 0000000..8be34b4 --- /dev/null +++ b/test/results/py3-201923-windows-10-1803.salt.log @@ -0,0 +1,30214 @@ +2020-03-06 10:50:48,423 [salt.loader :747 ][DEBUG ][4652] Grains refresh requested. Refreshing grains. +2020-03-06 10:50:48,423 [salt.config :2190][DEBUG ][4652] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:50:48,423 [salt.config :2334][DEBUG ][4652] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:50:48,423 [salt.config :2190][DEBUG ][4652] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:50:53,921 [salt.pillar :57 ][DEBUG ][4652] Determining pillar cache +2020-03-06 10:50:53,953 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:50:53,953 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:50:53,969 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:50:53,984 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:50:53,984 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:53,984 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:50:53,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:50:53,984 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:54,001 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded confirm_top.confirm_top +2020-03-06 10:50:54,001 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded compound_match.match +2020-03-06 10:50:54,001 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4652] compound_match: vagrant-10 ? * +2020-03-06 10:50:54,001 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded glob_match.match +2020-03-06 10:50:54,001 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4652] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:50:54,017 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:50:54,017 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:50:54,017 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:54,017 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 10:50:54,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 10:50:54,034 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.017176151275634766 +2020-03-06 10:50:54,081 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:50:54,081 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:50:54,175 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded state.highstate +2020-03-06 10:50:54,175 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded direct_call.execute +2020-03-06 10:50:54,190 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded grains.get +2020-03-06 10:50:54,269 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded saltutil.is_running +2020-03-06 10:50:54,316 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded config.get +2020-03-06 10:50:54,316 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: test, ret: _|- +2020-03-06 10:50:54,348 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:54,583 [git.cmd :722 ][DEBUG ][4652] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:50:54,614 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:54,614 [salt.fileserver :502 ][DEBUG ][4652] Updating roots fileserver cache +2020-03-06 10:50:54,670 [salt.state :736 ][DEBUG ][4652] Gathering pillar data for state run +2020-03-06 10:50:54,670 [salt.state :750 ][DEBUG ][4652] Finished gathering pillar data for state run +2020-03-06 10:50:54,670 [salt.state :966 ][INFO ][4652] Loading fresh modules for state activity +2020-03-06 10:50:54,698 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:50:54,698 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:50:54,698 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:50:54,713 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:50:54,713 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:50:54,713 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:54,713 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:50:54,713 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:50:54,713 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:54,732 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:54,744 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:54,744 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.031852006912231445 +2020-03-06 10:50:54,744 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:50:54,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:50:54,744 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:54,744 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded confirm_top.confirm_top +2020-03-06 10:50:54,744 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded compound_match.match +2020-03-06 10:50:54,761 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4652] compound_match: vagrant-10 ? * +2020-03-06 10:50:54,761 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded glob_match.match +2020-03-06 10:50:54,761 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4652] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:50:54,761 [salt.fileclient :1368][DEBUG ][4652] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:50:54,761 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded saltutil.sync_all +2020-03-06 10:50:54,761 [salt.loaded.int.module.saltutil:968 ][DEBUG ][4652] Syncing all +2020-03-06 10:50:54,761 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:50:54,776 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:54,792 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:54,792 [salt.utils.extmods:90 ][INFO ][4652] Syncing clouds for environment 'base' +2020-03-06 10:50:54,792 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_clouds, for base) +2020-03-06 10:50:54,792 [salt.fileclient :234 ][INFO ][4652] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:50:54,792 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:54,809 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:50:54,809 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:50:54,838 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:54,838 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:54,838 [salt.utils.extmods:90 ][INFO ][4652] Syncing beacons for environment 'base' +2020-03-06 10:50:54,852 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_beacons, for base) +2020-03-06 10:50:54,852 [salt.fileclient :234 ][INFO ][4652] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:50:54,852 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:54,852 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:50:54,852 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:50:54,871 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:54,871 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:54,885 [salt.utils.extmods:90 ][INFO ][4652] Syncing modules for environment 'base' +2020-03-06 10:50:54,885 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_modules, for base) +2020-03-06 10:50:54,885 [salt.fileclient :234 ][INFO ][4652] Caching directory '_modules/' for environment 'base' +2020-03-06 10:50:54,885 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:54,885 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:50:54,885 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:50:54,885 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:50:54,885 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:54,900 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:50:54,900 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:50:54,900 [salt.utils.extmods:119 ][INFO ][4652] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:50:54,900 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:50:54,916 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:54,933 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:54,933 [salt.utils.extmods:90 ][INFO ][4652] Syncing states for environment 'base' +2020-03-06 10:50:54,933 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_states, for base) +2020-03-06 10:50:54,933 [salt.fileclient :234 ][INFO ][4652] Caching directory '_states/' for environment 'base' +2020-03-06 10:50:54,933 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:54,933 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:50:54,933 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:50:54,949 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:54,970 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:54,970 [salt.utils.extmods:90 ][INFO ][4652] Syncing sdb for environment 'base' +2020-03-06 10:50:54,970 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_sdb, for base) +2020-03-06 10:50:54,970 [salt.fileclient :234 ][INFO ][4652] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:50:54,970 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:54,970 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:50:54,970 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:50:54,988 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,000 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,000 [salt.utils.extmods:90 ][INFO ][4652] Syncing grains for environment 'base' +2020-03-06 10:50:55,000 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_grains, for base) +2020-03-06 10:50:55,000 [salt.fileclient :234 ][INFO ][4652] Caching directory '_grains/' for environment 'base' +2020-03-06 10:50:55,000 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,000 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:50:55,000 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:50:55,031 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,047 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,047 [salt.utils.extmods:90 ][INFO ][4652] Syncing renderers for environment 'base' +2020-03-06 10:50:55,047 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_renderers, for base) +2020-03-06 10:50:55,047 [salt.fileclient :234 ][INFO ][4652] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:50:55,047 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,047 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:50:55,062 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:50:55,078 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,078 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,095 [salt.utils.extmods:90 ][INFO ][4652] Syncing returners for environment 'base' +2020-03-06 10:50:55,095 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_returners, for base) +2020-03-06 10:50:55,095 [salt.fileclient :234 ][INFO ][4652] Caching directory '_returners/' for environment 'base' +2020-03-06 10:50:55,095 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,095 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:50:55,095 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:50:55,115 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,128 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,128 [salt.utils.extmods:90 ][INFO ][4652] Syncing output for environment 'base' +2020-03-06 10:50:55,128 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_output, for base) +2020-03-06 10:50:55,128 [salt.fileclient :234 ][INFO ][4652] Caching directory '_output/' for environment 'base' +2020-03-06 10:50:55,128 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,128 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:50:55,128 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:50:55,145 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,162 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,162 [salt.utils.extmods:90 ][INFO ][4652] Syncing utils for environment 'base' +2020-03-06 10:50:55,162 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_utils, for base) +2020-03-06 10:50:55,162 [salt.fileclient :234 ][INFO ][4652] Caching directory '_utils/' for environment 'base' +2020-03-06 10:50:55,162 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,162 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:50:55,162 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:50:55,179 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,191 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,191 [salt.utils.extmods:90 ][INFO ][4652] Syncing log_handlers for environment 'base' +2020-03-06 10:50:55,191 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:50:55,191 [salt.fileclient :234 ][INFO ][4652] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:50:55,191 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,191 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:50:55,191 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:50:55,209 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,227 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,227 [salt.utils.extmods:90 ][INFO ][4652] Syncing proxy for environment 'base' +2020-03-06 10:50:55,227 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_proxy, for base) +2020-03-06 10:50:55,227 [salt.fileclient :234 ][INFO ][4652] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:50:55,227 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,227 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:50:55,227 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:50:55,261 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,261 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,261 [salt.utils.extmods:90 ][INFO ][4652] Syncing engines for environment 'base' +2020-03-06 10:50:55,261 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_engines, for base) +2020-03-06 10:50:55,261 [salt.fileclient :234 ][INFO ][4652] Caching directory '_engines/' for environment 'base' +2020-03-06 10:50:55,261 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,261 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:50:55,276 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:50:55,292 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,308 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,308 [salt.utils.extmods:90 ][INFO ][4652] Syncing thorium for environment 'base' +2020-03-06 10:50:55,308 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_thorium, for base) +2020-03-06 10:50:55,308 [salt.fileclient :234 ][INFO ][4652] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:50:55,308 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,308 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:50:55,308 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:50:55,325 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,345 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,345 [salt.utils.extmods:90 ][INFO ][4652] Syncing serializers for environment 'base' +2020-03-06 10:50:55,345 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_serializers, for base) +2020-03-06 10:50:55,345 [salt.fileclient :234 ][INFO ][4652] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:50:55,345 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,345 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:50:55,345 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:50:55,362 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,375 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,375 [salt.utils.extmods:90 ][INFO ][4652] Syncing matchers for environment 'base' +2020-03-06 10:50:55,375 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_matchers, for base) +2020-03-06 10:50:55,375 [salt.fileclient :234 ][INFO ][4652] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:50:55,375 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,375 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:50:55,375 [salt.utils.extmods:79 ][INFO ][4652] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:50:55,391 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:55,410 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:55,410 [salt.utils.extmods:90 ][INFO ][4652] Syncing pillar for environment 'base' +2020-03-06 10:50:55,410 [salt.utils.extmods:94 ][INFO ][4652] Loading cache from salt://_pillar, for base) +2020-03-06 10:50:55,410 [salt.fileclient :234 ][INFO ][4652] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:50:55,410 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:55,410 [salt.utils.extmods:109 ][DEBUG ][4652] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:50:55,423 [salt.state :1000][DEBUG ][4652] Refreshing modules... +2020-03-06 10:50:55,423 [salt.state :966 ][INFO ][4652] Loading fresh modules for state activity +2020-03-06 10:50:55,457 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:50:55,457 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:50:55,472 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:50:55,472 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:50:55,472 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:50:55,472 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:50:55,472 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,472 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:50:55,472 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:50:55,472 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,489 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,489 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,489 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:50:55,489 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,489 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:50:55,511 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,511 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,511 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,511 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,511 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:50:55,511 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,528 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,528 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,528 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,528 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:50:55,528 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,528 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,528 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,528 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,545 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:50:55,545 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,545 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,545 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,545 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,545 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:50:55,545 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,562 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,562 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,562 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,562 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:50:55,562 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,562 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,562 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,562 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,579 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:50:55,579 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded config.get +2020-03-06 10:50:55,579 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded grains.filter_by +2020-03-06 10:50:55,579 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.10672974586486816 +2020-03-06 10:50:55,597 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .states + - .modules + - .system +2020-03-06 10:50:55,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.states', '.modules', '.system'])]) +2020-03-06 10:50:55,597 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:55,597 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:50:55,597 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:50:55,597 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:50:55,597 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,597 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:50:55,597 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:50:55,597 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,613 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:50:55,613 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:50:55,613 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:50:55,613 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,613 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:50:55,656 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,666 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,666 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,682 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,682 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,682 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,682 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,682 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,682 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,698 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,698 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,698 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,698 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,698 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,716 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.11917781829833984 +2020-03-06 10:50:55,716 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.state.system.computer_desc.description: + system.computer_desc: + - name: Saltstack Computer Description + - require: + - windows.state.system.hostname.saltstack1 +windows.state.system.hostname.saltstack1: + system.hostname: + - name: saltstack1 +windows.state.timezone.system.America/New_York: + timezone.system: + - name: America/New_York + - utc: False + + + +2020-03-06 10:50:55,716 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) +2020-03-06 10:50:55,716 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:55,716 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:50:55,716 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:50:55,730 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:50:55,730 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,730 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:50:55,730 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:50:55,730 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,730 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:50:55,730 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:50:55,794 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,794 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,794 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,821 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,821 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,821 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,821 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,821 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,832 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,832 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,832 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,832 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,832 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,832 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,832 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.10164451599121094 +2020-03-06 10:50:55,852 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.module.environ.items: + module.run: + - environ.items: +windows.module.system.reboot: + module.run: + - system.reboot: + - timeout: 5 + - in_seconds: True + - only_on_pending_reboot: True + - wait_for_reboot: False + - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + - order: last +windows.module.user.current: + module.run: + - user.current: + - sam: True +windows.module.status.uptime: + module.run: + - status.uptime: + - human_readable: True + - require: + - windows.module.user.current + + +2020-03-06 10:50:55,852 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) +2020-03-06 10:50:55,852 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:55,852 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:50:55,852 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:50:55,852 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:50:55,852 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:50:55,852 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,866 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:50:55,866 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:50:55,866 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,866 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,881 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,881 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,897 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:55,897 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,897 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:55,897 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,897 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:55,897 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,897 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:55,913 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,913 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:55,913 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,913 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:55,913 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.047853708267211914 +2020-03-06 10:50:55,928 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +# sls: windows.system windows system +# slspath: windows/system windows system +# sls: os_windows.desktop.features os_windows features +# slspath: os_windows/desktop os_windows desktop +include: + # - .settings + # + # - .dsc + # + - .packages + - .server + - .desktop + + +2020-03-06 10:50:55,928 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.packages', '.server', '.desktop'])]) +2020-03-06 10:50:55,928 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:55,928 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:50:55,928 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:50:55,928 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:50:55,928 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:50:55,928 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,928 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:50:55,928 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:50:55,928 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,944 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.015825748443603516 +2020-03-06 10:50:55,944 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .providers + - .appx + - .powershell + - .saltstack + - .chocolatey +2020-03-06 10:50:55,944 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) +2020-03-06 10:50:55,944 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:55,944 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:50:55,944 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:50:55,944 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:50:55,944 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:50:55,944 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,944 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:50:55,944 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:50:55,944 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,961 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.016549110412597656 +2020-03-06 10:50:55,961 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .remove-provisioned-apps + +2020-03-06 10:50:55,961 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.remove-provisioned-apps'])]) +2020-03-06 10:50:55,961 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:55,961 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:50:55,961 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:50:55,961 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:50:55,961 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,961 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:50:55,961 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:50:55,961 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,961 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:55,977 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .removed + +2020-03-06 10:50:55,977 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.removed'])]) +2020-03-06 10:50:55,977 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:55,977 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:50:55,977 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:50:55,977 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:50:55,977 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:55,977 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:50:55,977 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:50:55,977 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:55,993 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:55,993 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,014 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,014 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,014 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,014 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,014 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,026 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,026 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,026 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,026 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,026 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,026 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,026 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,043 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.06669807434082031 +2020-03-06 10:50:56,043 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + + + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection: + cmd.run: + - name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet: + cmd.run: + - name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal: + cmd.run: + - name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}" + + + + + + + +2020-03-06 10:50:56,043 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) +2020-03-06 10:50:56,043 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,043 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:50:56,043 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:50:56,043 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:50:56,043 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:50:56,043 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,057 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:50:56,057 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:50:56,057 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,057 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,057 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .modules + - .framework + +2020-03-06 10:50:56,057 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.framework'])]) +2020-03-06 10:50:56,057 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,057 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:50:56,057 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:50:56,057 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:50:56,073 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:50:56,073 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,073 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:50:56,073 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:50:56,073 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,073 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,073 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .v4_5 + +2020-03-06 10:50:56,073 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.v4_5'])]) +2020-03-06 10:50:56,073 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,073 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:50:56,073 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:50:56,090 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:50:56,090 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:50:56,090 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,090 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:50:56,090 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:50:56,090 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,090 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,090 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .tls1_2 + +2020-03-06 10:50:56,107 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.tls1_2'])]) +2020-03-06 10:50:56,107 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,107 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:50:56,107 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:50:56,107 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:50:56,107 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,107 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:50:56,107 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:50:56,107 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,107 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,124 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,124 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,140 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,140 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,140 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,140 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,140 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,140 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,140 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,156 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,156 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,156 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,156 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,156 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.04848122596740723 +2020-03-06 10:50:56,156 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +# https://docs.microsoft.com/en-us/security/solving-tls1-problem +# https://blog.pauby.com/post/force-powershell-to-use-tls-1-2/ +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:64 +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:32 +# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - use_32bit_registry: true + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} +2020-03-06 10:50:56,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) +2020-03-06 10:50:56,171 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,171 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:50:56,171 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:50:56,171 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:50:56,171 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:50:56,171 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,171 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:50:56,171 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:50:56,187 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,187 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,187 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:50:56,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:50:56,187 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,187 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:50:56,187 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:50:56,187 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:50:56,187 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,187 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:50:56,187 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:50:56,203 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,203 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:50:56,203 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:50:56,203 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:50:56,203 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,203 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:50:56,220 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,220 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,220 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,238 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,238 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,238 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,238 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,253 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,253 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,253 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,253 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,253 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,253 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,253 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,270 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:50:56,270 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:50:56,270 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:50:56,270 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,284 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:50:56,375 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pkg.version +2020-03-06 10:50:56,375 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][4652] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:50:56,375 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4652] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:50:56,375 [salt.loaded.int.module.win_pkg:935 ][INFO ][4652] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:50:56,375 [salt.loaded.int.module.win_pkg:954 ][INFO ][4652] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:50:56,391 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cp.cache_dir +2020-03-06 10:50:56,409 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded roots.envs +2020-03-06 10:50:56,409 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:50:56,409 [salt.fileclient :234 ][INFO ][4652] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:50:56,409 [salt.fileserver :159 ][DEBUG ][4652] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:50:56,424 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded reg.list_keys +2020-03-06 10:50:56,424 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,424 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,424 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,424 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,439 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.23546457290649414 +2020-03-06 10:50:56,439 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +include: + - .windows_software_repository +7zip: + pkg.installed: + - version: 18.06.00.0 + - refresh_minion_env_path: False + - require: + - pkg.refresh_db +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db +windows_environment.refresh.path: + module.run: + - windows_environment.refresh: + - onchanges: + + - pkg: git +2020-03-06 10:50:56,439 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:50:56,439 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,456 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:50:56,456 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:50:56,456 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:50:56,456 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,456 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:50:56,456 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:50:56,456 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,474 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.050807) +2020-03-06 10:50:56,474 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,474 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,474 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,474 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,474 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:50:56,488 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.032334327697753906 +2020-03-06 10:50:56,488 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +manually.update_git_repo-ng: + archive.extracted: + - name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + - source: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip + - skip_verify: True + - if_missing: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + +rename-extract: + module.run: + - file.rename: + - src: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng-master + - dst: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + - onchanges: + - manually.update_git_repo-ng + - onchanges_in: + - pkg.refresh_db + +pkg.refresh_db: + module.run: + - pkg.refresh_db: + - failhard: False + - check_cmd: + - dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + + - retry: + attempts: 10 + until: True + interval: 5 +2020-03-06 10:50:56,488 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) +2020-03-06 10:50:56,488 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,504 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:50:56,504 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:50:56,504 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:50:56,504 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:50:56,504 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,504 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:50:56,504 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:50:56,504 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,504 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,520 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:50:56,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:50:56,520 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,520 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:50:56,520 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:50:56,520 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:50:56,520 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,520 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:50:56,520 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:50:56,520 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,538 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,538 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,557 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,557 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,557 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,557 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,557 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,569 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,569 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,569 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,569 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,569 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,569 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,569 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,588 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06783270835876465 +2020-03-06 10:50:56,588 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .bootstrap +windows.system.packages.chocolatey.windirstat: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: windirstat + - version: 1.1.2.20161210 + +windows.system.packages.chocolatey.notepadplusplus: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: notepadplusplus + +2020-03-06 10:50:56,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) +2020-03-06 10:50:56,588 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,588 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:50:56,588 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:50:56,588 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:50:56,588 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,600 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:50:56,600 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:50:56,600 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,600 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,600 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,620 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,620 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,620 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,620 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,632 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,647 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.046929359436035156 +2020-03-06 10:50:56,647 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +chocolatey.bootstrap: + module.run: + - chocolatey.bootstrap: + - unless: "where.exe chocolatey" + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + +2020-03-06 10:50:56,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) +2020-03-06 10:50:56,647 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,647 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:50:56,647 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:50:56,663 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:50:56,663 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:50:56,663 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,663 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:50:56,663 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:50:56,663 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,663 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,663 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .features + +2020-03-06 10:50:56,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.features'])]) +2020-03-06 10:50:56,663 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,663 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:50:56,663 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:50:56,679 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:50:56,679 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:50:56,679 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,679 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:50:56,679 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:50:56,679 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,679 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,679 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:50:56,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:50:56,679 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,679 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:50:56,679 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:50:56,695 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:50:56,695 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,695 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:50:56,695 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:50:56,695 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,695 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:50:56,695 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:50:56,695 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:50:56,695 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,713 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:50:56,713 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,713 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,713 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,738 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,756 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,756 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,756 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,756 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.06033444404602051 +2020-03-06 10:50:56,756 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +2020-03-06 10:50:56,756 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +{} +2020-03-06 10:50:56,756 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,756 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:50:56,756 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:50:56,776 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:50:56,776 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:50:56,776 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,776 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:50:56,776 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:50:56,776 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,776 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,776 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .packages + - .optional_features + +2020-03-06 10:50:56,776 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.optional_features'])]) +2020-03-06 10:50:56,776 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,776 [salt.fileclient :1072][DEBUG ][4652] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:50:56,793 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:50:56,793 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:50:56,793 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:50:56,793 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,793 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:50:56,793 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:50:56,793 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,793 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:50:56,793 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .feature_installed + +2020-03-06 10:50:56,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('include', ['.feature_installed'])]) +2020-03-06 10:50:56,809 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,809 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:50:56,809 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:50:56,809 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:50:56,809 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,809 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:50:56,809 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:50:56,809 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:50:56,809 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:50:56,825 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:50:56,825 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:50:56,825 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,825 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:50:56,825 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,825 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:50:56,843 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,843 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:50:56,843 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,859 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:50:56,859 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,859 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:50:56,859 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,859 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:50:56,859 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,859 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:50:56,874 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,874 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:50:56,874 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:50:56,874 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:50:56,874 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:50:56,890 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:50:56,890 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:50:56,890 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.0807950496673584 +2020-03-06 10:50:56,890 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.system.desktop.optional_features.installed.TelnetClient: + dism.feature_installed: + - name: TelnetClient + - onlyif: > + powershell -command "if ((Get-WindowsOptionalFeature -online | + Where-Object {($_.FeatureName -eq 'TelnetClient') + -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" + +2020-03-06 10:50:56,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) +2020-03-06 10:50:56,890 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:50:56,905 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cmd.run +2020-03-06 10:50:56,937 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded system.get_computer_desc +2020-03-06 10:50:56,937 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded system.computer_desc +2020-03-06 10:50:56,937 [salt.state :1819][INFO ][4652] Running state [saltstack1] at time 10:50:56.937515 +2020-03-06 10:50:56,937 [salt.state :1852][INFO ][4652] Executing state system.hostname for [saltstack1] +2020-03-06 10:50:56,937 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:50:56,952 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: vagrant-10 +2020-03-06 10:50:56,952 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4652] output: vagrant-10 +2020-03-06 10:50:56,952 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:50:56,968 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: vagrant-10 +2020-03-06 10:50:56,968 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4652] output: vagrant-10 +2020-03-06 10:50:56,968 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:50:57,047 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:50:57,047 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4652] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:50:57,047 [salt.state :320 ][INFO ][4652] {'hostname': 'saltstack1'} +2020-03-06 10:50:57,047 [salt.state :1997][INFO ][4652] Completed state [saltstack1] at time 10:50:57.047295 (duration_in_ms=109.78) +2020-03-06 10:50:57,047 [salt.state :1819][INFO ][4652] Running state [Saltstack Computer Description] at time 10:50:57.047295 +2020-03-06 10:50:57,047 [salt.state :1852][INFO ][4652] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:50:59,897 [salt.state :320 ][INFO ][4652] {'old': '', 'new': 'Saltstack Computer Description'} +2020-03-06 10:50:59,897 [salt.state :1997][INFO ][4652] Completed state [Saltstack Computer Description] at time 10:50:59.897017 (duration_in_ms=2849.722) +2020-03-06 10:50:59,912 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded platform.is_windows +2020-03-06 10:50:59,912 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded path.which +2020-03-06 10:50:59,927 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded timezone.get_zone +2020-03-06 10:50:59,927 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded timezone.system +2020-03-06 10:50:59,927 [salt.state :1819][INFO ][4652] Running state [America/New_York] at time 10:50:59.927136 +2020-03-06 10:50:59,927 [salt.state :1852][INFO ][4652] Executing state timezone.system for [America/New_York] +2020-03-06 10:50:59,927 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:50:59,943 [salt.state :320 ][INFO ][4652] {'timezone': 'America/New_York'} +2020-03-06 10:50:59,943 [salt.state :1997][INFO ][4652] Completed state [America/New_York] at time 10:50:59.943737 (duration_in_ms=16.601) +2020-03-06 10:50:59,943 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded module.run +2020-03-06 10:50:59,943 [salt.state :1819][INFO ][4652] Running state [windows.module.environ.items] at time 10:50:59.943737 +2020-03-06 10:50:59,943 [salt.state :1852][INFO ][4652] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:50:59,943 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded environ.items +2020-03-06 10:50:59,962 [salt.state :320 ][INFO ][4652] {'environ.items': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'PROGRAMDATA': 'C:\\ProgramData', 'PUBLIC': 'C:\\Users\\Public', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'SALTDIR': 'C:\\salt', 'SYSTEMROOT': 'C:\\Windows', 'NUMBER_OF_PROCESSORS': '2', 'COMPUTERNAME': 'VAGRANT-10', 'SYSTEMDRIVE': 'C:', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'USERNAME': 'vagrant', 'PROGRAMFILES': 'C:\\Program Files', 'PROCESSOR_REVISION': '8e0c', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'HOMEPATH': '\\Users\\vagrant', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PROMPT': '$P$G', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'HOMEDRIVE': 'C:', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'USERDOMAIN': 'VAGRANT-10', 'PROCESSOR_LEVEL': '6', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'WINDIR': 'C:\\Windows', 'USERPROFILE': 'C:\\Users\\vagrant', 'PROGRAMW6432': 'C:\\Program Files', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'OS': 'Windows_NT', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'LOGONSERVER': '\\\\VAGRANT-10'}} +2020-03-06 10:50:59,962 [salt.state :1997][INFO ][4652] Completed state [windows.module.environ.items] at time 10:50:59.962195 (duration_in_ms=18.458) +2020-03-06 10:50:59,962 [salt.state :1819][INFO ][4652] Running state [windows.module.user.current] at time 10:50:59.962195 +2020-03-06 10:50:59,962 [salt.state :1852][INFO ][4652] Executing state module.run for [windows.module.user.current] +2020-03-06 10:50:59,962 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded user.current +2020-03-06 10:50:59,962 [salt.state :320 ][INFO ][4652] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:50:59,979 [salt.state :1997][INFO ][4652] Completed state [windows.module.user.current] at time 10:50:59.979231 (duration_in_ms=17.036) +2020-03-06 10:50:59,979 [salt.state :1819][INFO ][4652] Running state [windows.module.status.uptime] at time 10:50:59.979231 +2020-03-06 10:50:59,979 [salt.state :1852][INFO ][4652] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:51:00,021 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded status.uptime +2020-03-06 10:51:00,021 [salt.state :320 ][INFO ][4652] {'status.uptime': '0:01:13.021757'} +2020-03-06 10:51:00,021 [salt.state :1997][INFO ][4652] Completed state [windows.module.status.uptime] at time 10:51:00.021757 (duration_in_ms=42.526) +2020-03-06 10:51:00,021 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cmd.run +2020-03-06 10:51:00,038 [salt.state :1819][INFO ][4652] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:51:00.038180 +2020-03-06 10:51:00,038 [salt.state :1852][INFO ][4652] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] +2020-03-06 10:51:00,038 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:00,556 [salt.loaded.int.states.cmd:343 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:51:00,556 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:01,970 [salt.state :320 ][INFO ][4652] {'retcode': 0, 'stderr': '', 'stdout': '', 'pid': 5500} +2020-03-06 10:51:01,970 [salt.state :1997][INFO ][4652] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:51:01.970329 (duration_in_ms=1932.149) +2020-03-06 10:51:01,985 [salt.state :1819][INFO ][4652] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:51:01.985255 +2020-03-06 10:51:01,985 [salt.state :1852][INFO ][4652] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] +2020-03-06 10:51:01,985 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:02,479 [salt.loaded.int.states.cmd:343 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:51:02,479 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:03,284 [salt.state :320 ][INFO ][4652] {'retcode': 0, 'stderr': '', 'stdout': '', 'pid': 6964} +2020-03-06 10:51:03,284 [salt.state :1997][INFO ][4652] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:51:03.284736 (duration_in_ms=1299.481) +2020-03-06 10:51:03,284 [salt.state :1819][INFO ][4652] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:51:03.284736 +2020-03-06 10:51:03,284 [salt.state :1852][INFO ][4652] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] +2020-03-06 10:51:03,284 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:04,246 [salt.loaded.int.states.cmd:343 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:51:04,246 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:05,230 [salt.state :320 ][INFO ][4652] {'retcode': 0, 'stderr': '', 'stdout': '', 'pid': 6464} +2020-03-06 10:51:05,249 [salt.state :1997][INFO ][4652] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:51:05.249665 (duration_in_ms=1964.929) +2020-03-06 10:51:05,249 [salt.state :1819][INFO ][4652] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:51:05.249665 +2020-03-06 10:51:05,249 [salt.state :1852][INFO ][4652] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] +2020-03-06 10:51:05,249 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:05,728 [salt.loaded.int.states.cmd:343 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:51:05,728 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:06,472 [salt.state :320 ][INFO ][4652] {'retcode': 0, 'stderr': '', 'stdout': '', 'pid': 3648} +2020-03-06 10:51:06,472 [salt.state :1997][INFO ][4652] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:51:06.472334 (duration_in_ms=1222.669) +2020-03-06 10:51:06,472 [salt.state :1819][INFO ][4652] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:51:06.472334 +2020-03-06 10:51:06,472 [salt.state :1852][INFO ][4652] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] +2020-03-06 10:51:06,472 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:06,931 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4652] retcode: 1 +2020-03-06 10:51:06,931 [salt.loaded.int.states.cmd:343 ][DEBUG ][4652] Last command return code: 1 +2020-03-06 10:51:06,931 [salt.state :320 ][INFO ][4652] onlyif condition is false +2020-03-06 10:51:06,946 [salt.state :1997][INFO ][4652] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:51:06.946022 (duration_in_ms=473.688) +2020-03-06 10:51:06,946 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded reg.present +2020-03-06 10:51:06,946 [salt.state :1819][INFO ][4652] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:51:06.946022 +2020-03-06 10:51:06,946 [salt.state :1852][INFO ][4652] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:51:07,732 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt.secret_key, ret: _|- +2020-03-06 10:51:07,747 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt:secret_key, ret: _|- +2020-03-06 10:51:08,264 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet.api_key, ret: _|- +2020-03-06 10:51:08,264 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet:api_key, ret: _|- +2020-03-06 10:51:08,624 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops.api_key, ret: _|- +2020-03-06 10:51:08,624 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops:api_key, ret: _|- +2020-03-06 10:51:12,760 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:51:12,775 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded apache.a2enconf +2020-03-06 10:51:12,775 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded apache.a2enmod +2020-03-06 10:51:12,791 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded apache.a2ensite +2020-03-06 10:51:12,808 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:51:12,823 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:51:12,823 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:51:12,841 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:51:12,857 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:51:12,872 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:51:12,872 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:51:12,888 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:51:12,888 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_asg.exists +2020-03-06 10:51:12,888 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cfn.exists +2020-03-06 10:51:12,902 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:51:12,902 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:51:12,902 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:51:12,902 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:51:12,918 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:51:12,918 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:51:12,918 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_dynamodb.exists +2020-03-06 10:51:12,935 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_ec2.get_key +2020-03-06 10:51:12,935 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elasticache.exists +2020-03-06 10:51:12,950 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:51:12,950 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elb.exists +2020-03-06 10:51:12,950 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:51:12,965 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_iam.get_user +2020-03-06 10:51:12,983 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_iam.role_exists +2020-03-06 10:51:12,983 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_iot.policy_exists +2020-03-06 10:51:12,983 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_kinesis.exists +2020-03-06 10:51:12,997 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_kms.describe_key +2020-03-06 10:51:12,997 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_lambda.function_exists +2020-03-06 10:51:12,997 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_asg.exists +2020-03-06 10:51:13,013 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_rds.exists +2020-03-06 10:51:13,013 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_route53.get_record +2020-03-06 10:51:13,013 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:51:13,029 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:51:13,029 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_secgroup.exists +2020-03-06 10:51:13,029 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_sns.exists +2020-03-06 10:51:13,029 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_sqs.exists +2020-03-06 10:51:13,044 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_vpc.exists +2020-03-06 10:51:13,044 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded bower.list +2020-03-06 10:51:13,060 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded chef.client +2020-03-06 10:51:13,060 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cimc.get_system_info +2020-03-06 10:51:13,075 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cisconso.set_data_value +2020-03-06 10:51:13,075 [salt.loader :1577][DEBUG ][4652] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:51:13,091 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded ddns.update +2020-03-06 10:51:13,091 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded chassis.cmd +2020-03-06 10:51:13,108 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:51:13,138 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:51:13,138 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:51:13,169 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:51:13,363 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded esxi.cmd +2020-03-06 10:51:13,407 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded git.version +2020-03-06 10:51:13,424 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded github.list_users +2020-03-06 10:51:13,424 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded glanceng.image_get +2020-03-06 10:51:13,438 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded elasticsearch.exists +2020-03-06 10:51:13,454 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: grafana_version, ret: _|- +2020-03-06 10:51:13,454 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: grafana_version, ret: _|- +2020-03-06 10:51:13,470 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded icinga2.generate_ticket +2020-03-06 10:51:13,484 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded ifttt.trigger_event +2020-03-06 10:51:13,484 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:51:13,503 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:51:13,520 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:51:13,536 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:51:13,551 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:51:13,569 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:51:13,597 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:51:13,597 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.domain_get +2020-03-06 10:51:13,613 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:51:13,613 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.group_get +2020-03-06 10:51:13,613 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.project_get +2020-03-06 10:51:13,613 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.role_get +2020-03-06 10:51:13,613 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.role_grant +2020-03-06 10:51:13,628 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.service_get +2020-03-06 10:51:13,628 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.user_get +2020-03-06 10:51:13,645 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:51:13,676 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:51:13,676 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:51:13,693 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:51:13,711 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:51:13,727 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:51:13,742 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:51:13,742 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:51:13,742 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:51:13,742 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:51:13,757 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded memcached.status +2020-03-06 10:51:13,773 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mongodb.db_exists +2020-03-06 10:51:13,773 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mongodb.user_exists +2020-03-06 10:51:13,773 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:51:13,789 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:51:13,789 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:51:13,789 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:51:13,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_networks +2020-03-06 10:51:13,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_subnets +2020-03-06 10:51:13,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_subnets +2020-03-06 10:51:13,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_subnets +2020-03-06 10:51:13,837 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded npm.list +2020-03-06 10:51:13,837 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nxos.cmd +2020-03-06 10:51:13,852 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:51:13,872 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:51:13,889 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded panos.commit +2020-03-06 10:51:13,904 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pdbedit.create +2020-03-06 10:51:13,904 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pecl.list +2020-03-06 10:51:14,260 [pip.vcs :60 ][DEBUG ][4652] Registered VCS backend: git +2020-03-06 10:51:14,321 [pip.vcs :60 ][DEBUG ][4652] Registered VCS backend: hg +2020-03-06 10:51:14,352 [pip.pep425tags :79 ][DEBUG ][4652] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:51:14,352 [pip.pep425tags :79 ][DEBUG ][4652] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:51:14,352 [pip.pep425tags :79 ][DEBUG ][4652] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:51:14,352 [pip.pep425tags :79 ][DEBUG ][4652] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:51:14,526 [pip.vcs :60 ][DEBUG ][4652] Registered VCS backend: svn +2020-03-06 10:51:14,526 [pip.vcs :60 ][DEBUG ][4652] Registered VCS backend: bzr +2020-03-06 10:51:14,650 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:51:14,650 [salt.loader :1577][DEBUG ][4652] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:51:14,650 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.cluster_exists +2020-03-06 10:51:14,650 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.user_exists +2020-03-06 10:51:14,665 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.create_extension +2020-03-06 10:51:14,665 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.group_create +2020-03-06 10:51:14,665 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.datadir_init +2020-03-06 10:51:14,665 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.language_create +2020-03-06 10:51:14,665 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.privileges_grant +2020-03-06 10:51:14,681 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.schema_exists +2020-03-06 10:51:14,681 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.tablespace_exists +2020-03-06 10:51:14,681 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.user_exists +2020-03-06 10:51:14,728 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:51:14,744 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded selinux.getenforce +2020-03-06 10:51:14,760 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded splunk.list_users +2020-03-06 10:51:14,760 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded splunk_search.get +2020-03-06 10:51:14,791 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:51:14,806 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded tomcat.status +2020-03-06 10:51:14,823 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded vagrant.version +2020-03-06 10:51:14,823 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded victorops.create_event +2020-03-06 10:51:14,839 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded win_iis.create_site +2020-03-06 10:51:14,854 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded win_servermanager.install +2020-03-06 10:51:14,870 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:51:14,870 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded wordpress.show_plugin +2020-03-06 10:51:14,870 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded x509.get_pem_entry +2020-03-06 10:51:14,885 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded xmpp.send_msg +2020-03-06 10:51:14,916 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded zk_concurrency.lock +2020-03-06 10:51:14,916 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded zonecfg.create +2020-03-06 10:51:14,916 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded zookeeper.create +2020-03-06 10:51:14,932 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:51:14,932 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:51:15,112 [salt.state :889 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:51:15,128 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded dacl.check_perms +2020-03-06 10:51:15,144 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4652] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:51:15,144 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4652] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:51:15,144 [salt.state :320 ][INFO ][4652] {'reg': {'Added': {'Perms': {'Deny': None, 'Grant': None}, 'Value': 1, 'Owner': None, 'Inheritance': True, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 10:51:15,144 [salt.state :1997][INFO ][4652] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:51:15.144538 (duration_in_ms=8198.516) +2020-03-06 10:51:15,144 [salt.state :1819][INFO ][4652] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:51:15.144538 +2020-03-06 10:51:15,144 [salt.state :1852][INFO ][4652] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:51:15,161 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:51:15,161 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:51:15,339 [salt.state :889 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:51:15,339 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4652] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:51:15,355 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4652] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:51:15,355 [salt.state :320 ][INFO ][4652] {'reg': {'Added': {'Perms': {'Deny': None, 'Grant': None}, 'Value': 1, 'Owner': None, 'Inheritance': True, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 10:51:15,355 [salt.state :1997][INFO ][4652] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:51:15.355013 (duration_in_ms=210.475) +2020-03-06 10:51:15,355 [salt.state :1819][INFO ][4652] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:51:15.355013 +2020-03-06 10:51:15,355 [salt.state :1852][INFO ][4652] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:51:15,355 [salt.utils.http :234 ][DEBUG ][4652] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:51:15,355 [salt.utils.http :235 ][DEBUG ][4652] Using backend: tornado +2020-03-06 10:51:15,999 [salt.loaded.int.states.archive:976 ][DEBUG ][4652] file.cached: {'result': True, 'changes': {'hash': {'old': None, 'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36'}}, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip'} +2020-03-06 10:51:15,999 [salt.loaded.int.states.archive:91 ][DEBUG ][4652] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:51:15,999 [salt.loaded.int.states.archive:996 ][DEBUG ][4652] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:51:16,050 [salt.loaded.int.module.win_file:1463][DEBUG ][4652] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:51:16,065 [salt.loaded.int.module.win_file:1463][DEBUG ][4652] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:51:16,065 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4652] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:51:16,065 [salt.loaded.int.states.archive:1247][DEBUG ][4652] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:51:16,250 [salt.loaded.int.states.archive:1543][DEBUG ][4652] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:51:16,250 [salt.state :320 ][INFO ][4652] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} +2020-03-06 10:51:16,250 [salt.state :1997][INFO ][4652] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:51:16.250436 (duration_in_ms=895.423) +2020-03-06 10:51:16,250 [salt.state :1819][INFO ][4652] Running state [rename-extract] at time 10:51:16.250436 +2020-03-06 10:51:16,250 [salt.state :1852][INFO ][4652] Executing state module.run for [rename-extract] +2020-03-06 10:51:16,250 [salt.state :320 ][INFO ][4652] {'file.rename': True} +2020-03-06 10:51:16,250 [salt.state :1997][INFO ][4652] Completed state [rename-extract] at time 10:51:16.250436 (duration_in_ms=0.0) +2020-03-06 10:51:16,250 [salt.state :1819][INFO ][4652] Running state [pkg.refresh_db] at time 10:51:16.250436 +2020-03-06 10:51:16,265 [salt.state :1852][INFO ][4652] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:51:16,265 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4652] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:19.841899) +2020-03-06 10:51:16,265 [salt.loaded.int.module.win_pkg:935 ][INFO ][4652] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:51:16,265 [salt.loaded.int.module.win_pkg:954 ][INFO ][4652] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:51:16,265 [salt.fileclient :234 ][INFO ][4652] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:51:16,405 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:51:16,422 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:51:16,422 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:51:16,422 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,422 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,435 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:51:16,435 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,451 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:51:16,451 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:51:16,451 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:51:16,451 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:51:16,451 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,451 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:51:16,451 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:51:16,451 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:51:16,451 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,467 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,467 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:51:16,467 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:51:16,485 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,485 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:51:16,485 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:51:16,485 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:51:16,485 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:51:16,485 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,485 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:51:16,485 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:51:16,501 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:51:16,501 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:51:16,501 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,501 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:51:16,501 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:51:16,501 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:51:16,501 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:51:16,501 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,501 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,517 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:51:16,517 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,533 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:51:16,533 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:51:16,533 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:51:16,533 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:51:16,533 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,533 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:51:16,533 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:51:16,549 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:51:16,549 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:51:16,549 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,549 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:51:16,549 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:51:16,549 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:51:16,549 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:51:16,549 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,549 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,565 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:51:16,565 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,581 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:51:16,581 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:51:16,581 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:51:16,581 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:51:16,581 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,581 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:51:16,581 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:51:16,581 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:51:16,597 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:51:16,597 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,597 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:51:16,597 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:51:16,597 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:51:16,597 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:51:16,597 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,597 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,613 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:51:16,613 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,629 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,629 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:51:16,629 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,644 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,644 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:51:16,644 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,660 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:51:16,660 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:51:16,660 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:51:16,660 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:51:16,660 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,660 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:51:16,660 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:51:16,660 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:51:16,660 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:51:16,676 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,676 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:51:16,676 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:51:16,676 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:51:16,676 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:51:16,676 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,676 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:51:16,676 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:51:16,676 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,693 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,693 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:51:16,693 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:51:16,710 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:51:16,710 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,710 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:51:16,710 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:51:16,710 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:51:16,710 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:51:16,710 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,710 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,728 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:51:16,728 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,745 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,745 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:51:16,745 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,761 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:51:16,761 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:51:16,761 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:51:16,761 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:51:16,761 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,761 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:51:16,761 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:51:16,777 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:51:16,777 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:51:16,777 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,777 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:51:16,777 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:51:16,777 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:51:16,777 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:51:16,777 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,793 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:51:16,793 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:51:16,793 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:51:16,793 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:51:16,793 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,793 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:51:16,793 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:51:16,793 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:51:16,809 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:51:16,809 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,809 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:51:16,809 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:51:16,809 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:51:16,809 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:51:16,809 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,825 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:51:16,825 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:51:16,825 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:51:16,825 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:51:16,825 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,825 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:51:16,825 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:51:16,841 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:51:16,841 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:51:16,841 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,841 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:51:16,841 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:51:16,841 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:51:16,841 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:51:16,841 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,856 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:51:16,856 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:51:16,856 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:51:16,856 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:51:16,856 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,856 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:51:16,856 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:51:16,856 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:51:16,872 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:51:16,872 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,872 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:51:16,872 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:51:16,872 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:51:16,872 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:51:16,872 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,888 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,888 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:51:16,888 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,904 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:51:16,904 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:51:16,904 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:51:16,904 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:51:16,904 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,904 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,920 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:51:16,920 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,935 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:51:16,935 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:51:16,935 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:51:16,935 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:51:16,935 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,935 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:51:16,935 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:51:16,935 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:51:16,951 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:51:16,951 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,951 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:51:16,951 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:51:16,951 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:51:16,951 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:51:16,951 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,951 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,968 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:51:16,968 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,983 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:51:16,983 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:51:16,983 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:51:16,983 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:51:16,983 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,983 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:51:16,983 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:51:16,983 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:51:16,999 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:51:16,999 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:16,999 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:51:16,999 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:51:16,999 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:51:16,999 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:51:16,999 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,015 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:51:17,015 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:51:17,015 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:51:17,015 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:51:17,015 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,015 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:51:17,015 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:51:17,015 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:51:17,031 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:51:17,031 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,031 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:51:17,031 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:51:17,031 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:51:17,031 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:51:17,031 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,047 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:51:17,047 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:51:17,047 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:51:17,047 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:51:17,047 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,047 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:51:17,047 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:51:17,047 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:51:17,062 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:51:17,062 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,062 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:51:17,062 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:51:17,062 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:51:17,062 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:51:17,062 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,078 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,078 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:51:17,078 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,094 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:51:17,094 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:51:17,094 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:51:17,094 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:51:17,094 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,094 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:51:17,094 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:51:17,110 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:51:17,110 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:51:17,110 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,110 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:51:17,110 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:51:17,110 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:51:17,110 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:51:17,110 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,126 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:51:17,126 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:51:17,126 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:51:17,126 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:51:17,126 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,126 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:51:17,126 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:51:17,126 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:51:17,141 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:51:17,141 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,141 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:51:17,141 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:51:17,141 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:51:17,141 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:51:17,141 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,141 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,158 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:51:17,158 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,174 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:51:17,174 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:51:17,174 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:51:17,174 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:51:17,174 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,174 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:51:17,174 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:51:17,174 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:51:17,190 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:51:17,190 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,190 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:51:17,190 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:51:17,190 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:51:17,190 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:51:17,190 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,190 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,207 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:51:17,207 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,223 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,223 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:51:17,223 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,241 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:51:17,241 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:51:17,241 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:51:17,241 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:51:17,241 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,241 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:51:17,241 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:51:17,258 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:51:17,258 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:51:17,258 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,258 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:51:17,258 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:51:17,258 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:51:17,258 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:51:17,258 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,275 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:51:17,275 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:51:17,275 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:51:17,275 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:51:17,275 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,275 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:51:17,275 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:51:17,275 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:51:17,275 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:51:17,292 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,292 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:51:17,292 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:51:17,292 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:51:17,292 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:51:17,292 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,292 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:51:17,292 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:51:17,292 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:51:17,308 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:51:17,308 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,308 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:51:17,308 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:51:17,308 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:51:17,308 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:51:17,308 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,324 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:51:17,324 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:51:17,324 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:51:17,324 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:51:17,324 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,324 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:51:17,324 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:51:17,324 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:51:17,324 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:51:17,340 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,340 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:51:17,340 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:51:17,340 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:51:17,340 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:51:17,340 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,340 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,355 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:51:17,355 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,371 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:51:17,371 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:51:17,371 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:51:17,371 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:51:17,371 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,371 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:51:17,371 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:51:17,387 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:51:17,387 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:51:17,387 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,387 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:51:17,387 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:51:17,387 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:51:17,387 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:51:17,387 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,402 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:51:17,402 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:51:17,402 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:51:17,402 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:51:17,402 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,402 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:51:17,402 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:51:17,418 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:51:17,418 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:51:17,418 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,418 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:51:17,418 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:51:17,418 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:51:17,418 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:51:17,418 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,434 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:51:17,434 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:51:17,434 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:51:17,434 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:51:17,434 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,434 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:51:17,434 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:51:17,434 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:51:17,434 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:51:17,449 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,449 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:51:17,449 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:51:17,449 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:51:17,449 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:51:17,449 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,449 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:51:17,449 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:51:17,466 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:51:17,466 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:51:17,466 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,466 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:51:17,466 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:51:17,466 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:51:17,466 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:51:17,466 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,482 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:51:17,482 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:51:17,482 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:51:17,482 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:51:17,482 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,482 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:51:17,482 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:51:17,482 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:51:17,482 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:51:17,497 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,497 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:51:17,497 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:51:17,497 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:51:17,497 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:51:17,497 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,497 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:51:17,513 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:51:17,513 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:51:17,513 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:51:17,513 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,513 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:51:17,513 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:51:17,513 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:51:17,529 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:51:17,529 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,529 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:51:17,529 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:51:17,529 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:51:17,529 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:51:17,529 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,545 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,545 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:51:17,545 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,562 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:51:17,562 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:51:17,562 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:51:17,562 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:51:17,562 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,562 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:51:17,562 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:51:17,578 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:51:17,578 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:51:17,578 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,578 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:51:17,578 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:51:17,578 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:51:17,578 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:51:17,578 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,594 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:51:17,594 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:51:17,594 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:51:17,594 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:51:17,594 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,594 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:51:17,594 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:51:17,594 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:51:17,609 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:51:17,609 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,609 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:51:17,609 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:51:17,609 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:51:17,609 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:51:17,609 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,625 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:51:17,625 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:51:17,625 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:51:17,625 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:51:17,625 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,625 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:51:17,625 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:51:17,640 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:51:17,640 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:51:17,640 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,640 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:51:17,640 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:51:17,640 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:51:17,640 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:51:17,640 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,656 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,656 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:51:17,656 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,673 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,673 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:51:17,673 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,690 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:51:17,690 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:51:17,690 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:51:17,690 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:51:17,690 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,690 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:51:17,690 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:51:17,690 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:51:17,707 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:51:17,707 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,707 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:51:17,707 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:51:17,707 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:51:17,707 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:51:17,707 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,722 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:51:17,722 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,722 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,722 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,722 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,722 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,722 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,722 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,738 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,738 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,738 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,738 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:51:17,738 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:51:17,738 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:51:17,738 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,754 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:51:17,754 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:51:17,754 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:51:17,754 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:51:17,754 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,754 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:51:17,754 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:51:17,754 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:51:17,770 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:51:17,770 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,770 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:51:17,770 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:51:17,770 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:51:17,770 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:51:17,770 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,786 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:51:17,786 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:51:17,786 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:51:17,786 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:51:17,786 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,786 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:51:17,801 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:51:17,801 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:51:17,801 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:51:17,801 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,801 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:51:17,801 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,801 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,801 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,817 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,817 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:51:17,817 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,817 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,817 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,817 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,817 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,833 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:51:17,833 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:51:17,833 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:51:17,833 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,833 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:51:17,833 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,833 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,833 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,849 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,849 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:51:17,849 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:51:17,849 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:51:17,849 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:51:17,849 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,864 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:51:17,864 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:51:17,864 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:51:17,864 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:51:17,864 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,864 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:51:17,864 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:51:17,864 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:51:17,880 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:51:17,880 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,880 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:51:17,880 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:51:17,880 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:51:17,880 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:51:17,880 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,896 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:51:17,896 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:51:17,896 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:51:17,896 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:51:17,896 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,896 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:51:17,896 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:51:17,896 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:51:17,896 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:51:17,912 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,912 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:51:17,912 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:51:17,912 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:51:17,912 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:51:17,912 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,912 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,928 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:51:17,928 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,946 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:51:17,946 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:51:17,946 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:51:17,946 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:51:17,946 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,946 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,961 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:51:17,961 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,976 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:51:17,976 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:51:17,976 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:51:17,976 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:51:17,976 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,976 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:51:17,976 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:51:17,992 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:51:17,992 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:51:17,992 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:17,992 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:51:17,992 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:51:17,992 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:51:17,992 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:51:17,992 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,008 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:51:18,008 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:51:18,008 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:51:18,008 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:51:18,008 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,008 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:51:18,008 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:51:18,008 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:51:18,023 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:51:18,023 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,023 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:51:18,023 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:51:18,023 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:51:18,023 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:51:18,023 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,039 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,039 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:51:18,039 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,055 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:51:18,055 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:51:18,055 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:51:18,055 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:51:18,055 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,055 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:51:18,055 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:51:18,055 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:51:18,072 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:51:18,072 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,072 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:51:18,072 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:51:18,072 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:51:18,072 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:51:18,072 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,089 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:51:18,089 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:51:18,089 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:51:18,089 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:51:18,089 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,089 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,104 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:51:18,104 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,104 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,121 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:51:18,121 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,137 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:51:18,137 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:51:18,137 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:51:18,137 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:51:18,137 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,137 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:51:18,137 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:51:18,137 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:51:18,153 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:51:18,153 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,153 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:51:18,153 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:51:18,153 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:51:18,153 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:51:18,153 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,153 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,169 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:51:18,169 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,185 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:51:18,185 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:51:18,185 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:51:18,185 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:51:18,185 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,185 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,201 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:51:18,201 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,217 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,217 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:51:18,217 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,232 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:51:18,232 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:51:18,232 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:51:18,232 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:51:18,232 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,232 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:51:18,232 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:51:18,248 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:51:18,248 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:51:18,248 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,248 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:51:18,248 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:51:18,248 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:51:18,248 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:51:18,248 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,265 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:51:18,265 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:51:18,265 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:51:18,265 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:51:18,265 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,265 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:51:18,265 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:51:18,265 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:51:18,265 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:51:18,281 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,281 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:51:18,281 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:51:18,281 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:51:18,281 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:51:18,281 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,281 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,296 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:51:18,296 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,312 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:51:18,312 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:51:18,312 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:51:18,312 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:51:18,312 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,312 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:51:18,312 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:51:18,312 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:51:18,328 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:51:18,328 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,328 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:51:18,328 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:51:18,328 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:51:18,328 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:51:18,328 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,328 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:51:18,328 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:51:18,345 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:51:18,345 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:51:18,345 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,345 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:51:18,345 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:51:18,345 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:51:18,345 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:51:18,345 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,345 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,363 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:51:18,363 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,379 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:51:18,379 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:51:18,379 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:51:18,379 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:51:18,379 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,379 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,395 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:51:18,395 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,413 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,413 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:51:18,413 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,430 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:51:18,430 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:51:18,430 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:51:18,430 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:51:18,430 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,430 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:51:18,430 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:51:18,446 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:51:18,446 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:51:18,446 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,446 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:51:18,446 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:51:18,446 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:51:18,446 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:51:18,446 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,461 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:51:18,461 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:51:18,461 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:51:18,461 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:51:18,461 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,461 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:51:18,461 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:51:18,461 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:51:18,477 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:51:18,477 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,477 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:51:18,477 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:51:18,477 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:51:18,477 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:51:18,477 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,493 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:51:18,493 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:51:18,493 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:51:18,493 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:51:18,493 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,493 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:51:18,493 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:51:18,493 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:51:18,493 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:51:18,509 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,509 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:51:18,509 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:51:18,509 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:51:18,509 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:51:18,509 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,509 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,525 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:51:18,525 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,540 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:51:18,540 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:51:18,540 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:51:18,540 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:51:18,540 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,540 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:51:18,540 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:51:18,556 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:51:18,556 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:51:18,556 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,556 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:51:18,556 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:51:18,575 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:51:18,575 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:51:18,575 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,575 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:51:18,575 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:51:18,575 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:51:18,575 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:51:18,575 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,591 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:51:18,591 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:51:18,591 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:51:18,591 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:51:18,591 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,591 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:51:18,591 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:51:18,591 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:51:18,591 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:51:18,607 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,607 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:51:18,607 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:51:18,607 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:51:18,607 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:51:18,607 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,607 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,624 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:51:18,624 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,640 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:51:18,640 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:51:18,640 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:51:18,640 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:51:18,640 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,640 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,655 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:51:18,655 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,671 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:51:18,671 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:51:18,671 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:51:18,671 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:51:18,671 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,687 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:51:18,687 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:51:18,687 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:51:18,687 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:51:18,687 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,687 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:51:18,687 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:51:18,687 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:51:18,703 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:51:18,703 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,703 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:51:18,703 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:51:18,703 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:51:18,703 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:51:18,703 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,703 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,719 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:51:18,719 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,735 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:51:18,735 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:51:18,735 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:51:18,735 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:51:18,735 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,735 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:51:18,735 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:51:18,750 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:51:18,750 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:51:18,750 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,750 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:51:18,750 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:51:18,750 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:51:18,750 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:51:18,750 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,766 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:51:18,766 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:51:18,766 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:51:18,766 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:51:18,766 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,766 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:51:18,782 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:51:18,782 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:51:18,782 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:51:18,782 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,782 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:51:18,782 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:51:18,782 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:51:18,797 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:51:18,797 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,797 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:51:18,797 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:51:18,797 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:51:18,797 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:51:18,797 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,813 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:51:18,813 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:51:18,813 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:51:18,813 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:51:18,813 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,813 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,828 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:51:18,828 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,845 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:51:18,845 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:51:18,845 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:51:18,845 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:51:18,845 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,845 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:51:18,845 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:51:18,845 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:51:18,845 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:51:18,861 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,861 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:51:18,861 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:51:18,861 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:51:18,861 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:51:18,861 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,879 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:51:18,879 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:51:18,879 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:51:18,879 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:51:18,879 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,879 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:51:18,879 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:51:18,879 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:51:18,879 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:51:18,894 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,894 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:51:18,894 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:51:18,894 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:51:18,894 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:51:18,894 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,910 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,910 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:51:18,910 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,928 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:51:18,928 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:51:18,928 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:51:18,928 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:51:18,928 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,928 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:51:18,928 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:51:18,928 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:51:18,928 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:51:18,945 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,945 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:51:18,945 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:51:18,945 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:51:18,945 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:51:18,945 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,945 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,961 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:51:18,961 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,977 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:51:18,977 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:51:18,977 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:51:18,977 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:51:18,977 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,977 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:18,993 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:51:18,993 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,009 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:51:19,009 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:51:19,009 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:51:19,009 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:51:19,009 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,009 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:51:19,009 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:51:19,025 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:51:19,025 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:51:19,025 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,025 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:51:19,025 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:51:19,025 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:51:19,025 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:51:19,025 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,041 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:51:19,041 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:51:19,041 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:51:19,041 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:51:19,041 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,041 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,057 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:51:19,057 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,072 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:51:19,072 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:51:19,072 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:51:19,072 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:51:19,072 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,072 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:51:19,072 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:51:19,089 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:51:19,089 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:51:19,089 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,089 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:51:19,089 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:51:19,089 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:51:19,089 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:51:19,089 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,105 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:51:19,105 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:51:19,105 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:51:19,105 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:51:19,105 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,105 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:51:19,105 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:51:19,105 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:51:19,105 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:51:19,120 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,120 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:51:19,120 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:51:19,120 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:51:19,120 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:51:19,120 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,120 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:51:19,120 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:51:19,138 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:51:19,138 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:51:19,138 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,138 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:51:19,138 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:51:19,138 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:51:19,138 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:51:19,138 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,155 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,155 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:51:19,155 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,172 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:51:19,172 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:51:19,172 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:51:19,172 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:51:19,172 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,172 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:51:19,172 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:51:19,172 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:51:19,189 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:51:19,189 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,189 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:51:19,189 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:51:19,189 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:51:19,189 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:51:19,189 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,189 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:51:19,189 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:51:19,206 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:51:19,206 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:51:19,206 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,206 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:51:19,206 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:51:19,206 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:51:19,206 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:51:19,206 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,206 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,223 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:51:19,223 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,240 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:51:19,240 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:51:19,240 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:51:19,240 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:51:19,240 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,240 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,261 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:51:19,261 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,279 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:51:19,279 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:51:19,279 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:51:19,279 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:51:19,279 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,279 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:51:19,279 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:51:19,279 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:51:19,279 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:51:19,296 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,296 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:51:19,296 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:51:19,296 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:51:19,296 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:51:19,296 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,296 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:51:19,296 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:51:19,313 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:51:19,313 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:51:19,313 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,313 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:51:19,313 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:51:19,313 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:51:19,313 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:51:19,313 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,329 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,329 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:51:19,329 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,348 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:51:19,348 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:51:19,348 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:51:19,348 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:51:19,348 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,348 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:51:19,348 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:51:19,348 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:51:19,348 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:51:19,363 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,363 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:51:19,363 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:51:19,363 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:51:19,363 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:51:19,363 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,363 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:51:19,363 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:51:19,379 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:51:19,379 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:51:19,379 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,379 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:51:19,379 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:51:19,379 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:51:19,379 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:51:19,379 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,379 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,396 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1093][DEBUG ][4652] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1101][DEBUG ][4652] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1121][DEBUG ][4652] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:51:19,396 [salt.fileclient :1149][DEBUG ][4652] No dest file found +2020-03-06 10:51:19,413 [salt.fileclient :1230][INFO ][4652] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:51:19,413 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,413 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,413 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:51:19,413 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,430 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.017377376556396484 +2020-03-06 10:51:19,430 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +7zip: + + + '18.06.00.0': + + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.05.00.0': + + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.03.00.0': + + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.01.00.0': + + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '19.00.00.0': + + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '16.04.00.0': + + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.03.00.0': + + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.02.00.0': + + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.00.00.0': + + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:51:19,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,430 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,446 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,446 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,446 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:51:19,446 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,446 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,446 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +activeperl_x64: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.24.3': + full_name: 'ActivePerl 5.24.3 Build 2404 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.26.1': + full_name: 'ActivePerl 5.26.1 Build 2601 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,463 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.017059326171875 +2020-03-06 10:51:19,463 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,463 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,463 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:51:19,463 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,463 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,480 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +activeperl_x86: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205' + + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,480 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,480 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,480 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,480 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,480 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:51:19,480 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,480 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,480 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +adobeair: + latest: + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + '30.0.0.107': + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,497 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,497 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,497 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,497 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:51:19,497 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,497 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,514 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +# to understand what is meant by "classic" see +# http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html + +adobereader-dc-classic: + + + '20.006.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20049': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20047': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20036': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20099': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20098': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20091': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20069': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20064': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20081': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20071': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20063': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20055': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20040': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,514 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,514 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,514 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,514 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,514 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:51:19,514 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,530 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.015961408615112305 +2020-03-06 10:51:19,530 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +adobereader-xi: + '11.0.10': + full_name: 'Adobe Reader XI (11.0.10)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '11.0.6': + full_name: 'Adobe Reader XI (11.0.06)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,530 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,530 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,530 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,530 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:51:19,530 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,530 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,546 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +adobereader: + '10.1.4': + full_name: 'Adobe Reader X (10.1.4)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '9.5.0': + full_name: 'Adobe Reader 9.5.0' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,546 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,546 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,546 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,546 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:51:19,546 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,546 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,546 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +adobeshockwaveplayer: + latest: + full_name: 'Adobe Shockwave Player 12.2' + installer: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version + +2020-03-06 10:51:19,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,546 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,562 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,562 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,562 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:51:19,562 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,562 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,562 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: + + + +adv-ip-scanner: + + + '2.5.3784': + full_name: 'Advanced IP Scanner 2.5' + installer: 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-ip-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:51:19,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,562 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,579 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,579 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,579 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:51:19,579 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,579 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,579 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: + + + +adv-port-scanner: + + + '2.5.3680': + full_name: 'Advanced Port Scanner 2.5' + installer: 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-port-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:51:19,579 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,579 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,594 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,594 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,594 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:51:19,594 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,594 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,594 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +advancedlogging: + '1.0.0625.10': + full_name: 'IIS Advanced Logging 1.0' + + installer: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + uninstaller: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,594 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,594 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,609 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,609 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:51:19,609 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,609 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,609 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +# just 32-bit x86 msi package available + + + +anydesk-msi: + latest: + full_name: 'AnyDesk MSI' + installer: 'https://download.anydesk.com/AnyDesk.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.anydesk.com/AnyDesk.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,609 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,609 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,609 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,609 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:51:19,625 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,625 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,625 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +# just 32-bit x86 installer available + + + + + + + +anydesk: + latest: + full_name: 'AnyDesk' + installer: 'https://download.anydesk.com/AnyDesk.exe' + install_flags: '--install "%ProgramFiles(x86)%\AnyDesk" --start-with-win --silent --create-shortcut' + uninstaller: 'https://download.anydesk.com/AnyDesk.exe' + uninstall_flags: '--silent --remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,625 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,625 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,625 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,641 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:51:19,641 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,641 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,641 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +applicationrequestrouting: + '3.0.1952': + full_name: 'Microsoft Application Request Routing 3.0' + + installer: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,641 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,641 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,641 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,641 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:51:19,641 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,657 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.01560521125793457 +2020-03-06 10:51:19,657 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +aspnet-mvc1: + '1.0.0.0': + full_name: 'Microsoft ASP.NET MVC 1.0' + installer: 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi' + install_flags: '/qn /norestart' + uninstaller: '{A4394612-D02F-11DC-9BFF-D18556D89593}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,657 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,657 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,657 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,657 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:51:19,657 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,657 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,673 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: + +atom: + + '1.28.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.2': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.1': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.23.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,673 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,673 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,673 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,673 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:51:19,673 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,673 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,689 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: + + + + +audacity: + + '2.2.2': + full_name: 'Audacity 2.2.2' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Audacity 2.2.1' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,689 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,689 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,689 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,689 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:51:19,689 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,689 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,705 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: + + + +autohotkey: + '1.1.29.01': + full_name: 'AutoHotkey 1.1.29.01' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.27.06': + full_name: 'AutoHotkey 1.1.27.06' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.24.00': + full_name: 'AutoHotkey 1.1.24.00' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.22.09': + full_name: 'AutoHotkey 1.1.22.09' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,705 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,705 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,705 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,705 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,705 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:51:19,705 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,705 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,721 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: + +autoit: + + '3.3.14.5': + full_name: 'AutoIt v3.3.14.5' + installer: 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\AutoIt3\Uninstall.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,721 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,721 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,721 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,721 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:51:19,721 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,721 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,736 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +autopsy: + '4.3.0': + full_name: 'Autopsy' + + installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,736 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,736 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,736 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,736 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:51:19,736 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,736 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,736 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +awscli: + latest: + + full_name: 'AWS Command Line Interface' + installer: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + uninstaller: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,736 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,752 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,752 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,752 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:51:19,752 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,752 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,752 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +# due to winrepo installer limitations you need to manually download the exe from +# https://go.microsoft.com/fwlink/?linkid=2049975 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... + + +azuredatastudio: + '1.3.9': + full_name: 'Azure Data Studio' +# installer: 'salt://win/repo-ng/azuredatastudio/azuredatastudio-windows-setup-1.3.9.exe' + installer: 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe' + uninstaller: 'C:\Program Files\Azure Data Studio\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,752 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,752 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,767 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,767 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,767 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:51:19,767 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,767 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,767 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +#the provider only offers the download of the latest version + + + +bandizip: + '6.21': + full_name: 'Bandizip' + installer: 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE' + install_flags: '/S' + uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,767 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,767 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,767 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,783 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:51:19,783 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,783 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,783 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +# just 32-bit x86 installer available + + + +belarc-advisor: + '8.6': + full_name: 'Belarc Advisor' + installer: 'http://downloads.belarc.com/advisor/advisorinstaller.exe' + install_flags: '/s' + uninstaller: '%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\Uninstall.exe' + uninstall_flags: '/s "%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\INSTALL.LOG"' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,783 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,783 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,783 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,783 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,799 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:51:19,799 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,799 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,799 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +bginfo4x: + '3.3.6': + full_name: 'BGINFO4X for Windows 3.3.6' + installer: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + uninstaller: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,799 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,799 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,799 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,799 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,799 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:51:19,799 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,815 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.016025304794311523 +2020-03-06 10:51:19,815 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +# source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe +bitnami-nginxstack: + '1.8.0-0': + full_name: 'Bitnami Nginx Stack' + installer: 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe' + install_flags: '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"' + uninstaller: 'C:\Bitnami\nginxstack-1.8.0-0\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,815 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,815 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,815 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,815 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:51:19,815 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,815 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,831 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +bitvise: + + '8.32': + full_name: 'Bitvise SSH Server 8.32 (remove only)' + installer: 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe' + install_flags: '-acceptEULA -defaultInstance -startService' + uninstaller: '%ProgramFiles%\Bitvise SSH Server\uninst.exe' + uninstall_flags: '"Bitvise SSH Server" -unat' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:19,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,831 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,831 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,831 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,831 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:51:19,831 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,831 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,831 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +blender: + '2.78': + full_name: 'Blender' + + installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,846 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,846 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,846 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:51:19,846 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,846 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +bootracer: + '6.50.0.450': + full_name: 'BootRacer' + installer: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + uninstaller: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# download zip archive manually and unpack msi to slat master winrepo-ng directory + +2020-03-06 10:51:19,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,862 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,862 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,862 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:51:19,862 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,862 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,862 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: + +bulkrenameutility: + + '3.0.0.1': + + full_name: 'Bulk Rename Utility 3.0.0.1 (64-bit)' + + installer: 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\Bulk Rename Utility\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:19,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,862 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,878 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,878 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,878 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:51:19,878 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,878 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,878 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +# just 32-bit x86 installer available + + + +bulk_extractor: + + '1.5.5': + full_name: 'Bulk Extractor 1.5.5' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.5\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Bulk Extractor 1.5.1' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.1\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Bulk Extractor 1.5.0' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.0\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,878 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,893 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.015202760696411133 +2020-03-06 10:51:19,893 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,893 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,893 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:51:19,893 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,893 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,893 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: + +ccleaner-slim: + + '5.60': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup560_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.59': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup559_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.58': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup558_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup557_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,909 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.01571178436279297 +2020-03-06 10:51:19,909 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,909 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,909 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:51:19,909 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,909 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,909 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: + +ccleaner: + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup557.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.44': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup544.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:19,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,925 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.015868186950683594 +2020-03-06 10:51:19,925 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,925 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,925 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:51:19,925 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,925 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,925 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +cdburnerxp: + '4.5.6.5931': + full_name: 'CDBurnerXP' + installer: 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\CDBurnerXP\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,925 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,925 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,941 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,941 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,941 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:51:19,941 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,941 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,941 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +# just 32-bit x86 installer available + + + +cdroller: + '10.0': + full_name: 'CDRoller version 10.0' + installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe' + install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"' + uninstaller: '%PROGRAMFILES(x86)%\CDRoller\unins000.exe' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,941 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,941 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,956 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,956 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,956 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:51:19,956 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,956 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,956 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +check-mk-agent-msi: + + '1.5.0.3268': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2940': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2857': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8.1521': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8p26': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p5': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6.185': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p16': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p14': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p13': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p12': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:19,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,973 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.016465425491333008 +2020-03-06 10:51:19,973 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,973 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,973 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:51:19,973 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,973 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,973 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +check-mk-agent: + 'Not Found': + full_name: 'Check_MK Agent 1.2.8b4' + + installer: 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe' + + uninstaller: '%ProgramFiles%\check_mk\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:19,973 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,988 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.015044689178466797 +2020-03-06 10:51:19,988 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:19,988 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:19,988 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:51:19,988 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:19,988 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:19,988 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +chrome-rdp: + latest: + full_name: 'Chrome Remote Desktop Host' + installer: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:19,988 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:19,988 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:19,988 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,003 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,003 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:51:20,003 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,003 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,003 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +chrome: + latest: + full_name: 'Google Chrome' + installer: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:20,003 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,003 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,003 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,003 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,003 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:51:20,003 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,020 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.01665639877319336 +2020-03-06 10:51:20,020 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +clamav: + '0.99.1': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + '0.98.7': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + +2020-03-06 10:51:20,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) +2020-03-06 10:51:20,020 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,020 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,020 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,020 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:51:20,020 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,020 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,036 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +# just 32-bit x86 installer available + + + +clamwin: + '0.98.7': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.6': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.5': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,036 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,036 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,036 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,036 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:51:20,036 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,036 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,036 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +classicshell: + '4.2.4': + full_name: 'Classic Shell' + installer: 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe' + install_flags: '/passive' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,050 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,050 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,050 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,050 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:51:20,050 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,050 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,050 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +# just 32-bit x86 installer available + + + +clink: + '0.4.8': + full_name: 'Clink v0.4.8' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.8\clink_uninstall_0.4.8.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.7': + full_name: 'Clink v0.4.7' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.7\clink_uninstall_0.4.7.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.6': + full_name: 'Clink v0.4.6' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.6\clink_uninstall_0.4.6.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.4': + full_name: 'Clink v0.4.4' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.4\clink_uninstall_0.4.4.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# https://mridgers.github.io/clink/ + +2020-03-06 10:51:20,066 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,066 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,066 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,066 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,066 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:51:20,066 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,066 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,086 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +conemu: + '11.160.5290': + + full_name: 'ConEmu 160529.x64' + install_flags: '/p:x64,adm /quiet /norestart' + uninstall_flags: '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart' + + installer: 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,086 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,086 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,086 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,086 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:51:20,086 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,086 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,086 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +cpu-z: + + '1.86': + full_name: 'CPUID CPU-Z 1.86' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.85': + full_name: 'CPUID CPU-Z 1.85' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.84': + full_name: 'CPUID CPU-Z 1.84' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.83': + full_name: 'CPUID CPU-Z 1.83' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.82': + full_name: 'CPUID CPU-Z 1.82' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.81': + full_name: 'CPUID CPU-Z 1.81' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.80': + full_name: 'CPUID CPU-Z 1.80' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.79': + full_name: 'CPUID CPU-Z 1.79' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.78': + full_name: 'CPUID CPU-Z 1.78' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.77': + full_name: 'CPUID CPU-Z 1.77' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.76': + full_name: 'CPUID CPU-Z 1.76' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.75': + full_name: 'CPUID CPU-Z 1.75' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.74': + full_name: 'CPUID CPU-Z 1.74' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.73': + full_name: 'CPUID CPU-Z 1.73' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.72.1': + full_name: 'CPUID CPU-Z 1.72.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.71.1': + full_name: 'CPUID CPU-Z 1.71.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.70': + full_name: 'CPUID CPU-Z 1.70' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.69': + full_name: 'CPUID CPU-Z 1.69' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.68': + full_name: 'CPUID CPU-Z 1.68' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.67': + full_name: 'CPUID CPU-Z 1.67' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.66': + full_name: 'CPUID CPU-Z 1.66' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.65': + full_name: 'CPUID CPU-Z 1.65' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,102 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,102 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,102 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,102 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,102 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:51:20,102 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,118 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.016040325164794922 +2020-03-06 10:51:20,118 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +curl: + '7.46.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.45.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.44.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.43.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# You need to download the win64 msi from website (Captcha protected) and place in your winrepo-ng on master +# http://www.confusedbycode.com/curl/#downloads +# Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, +# so you might not be calling the right 'curl' + +2020-03-06 10:51:20,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,118 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,118 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,118 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,118 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:51:20,134 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,134 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,134 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +cyberduck-cli: + '1.0.0.0': + full_name: 'Cyberduck CLI' + installer: 'http://dist.duck.sh/duck-5.0.3.20504.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ALLUSERSPROFILE%\Package Cache\{d7e97b39-df55-4b65-84b3-c24d1041948b}\duck-5.0.3.20504.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,134 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,134 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,134 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,150 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:51:20,150 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,150 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,150 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +# just 32-bit x86 installer available + + + + +cyberduck-msi: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:51:20,150 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,150 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,150 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,150 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,166 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:51:20,166 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,166 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,166 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +# just 32-bit x86 installer available + + + + +cyberduck: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:20,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,166 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,166 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,166 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,182 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:51:20,182 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,182 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,182 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +# just 32-bit x86 installer available + + + +defraggler: + '2.20': + full_name: 'Defraggler' + installer: 'https://download.piriform.com/dfsetup220.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '2.18.945': + full_name: 'Defraggler 2.18' + installer: 'https://download.piriform.com/dfsetup218.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,182 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,182 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,182 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,182 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:51:20,197 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,197 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,197 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +dotnet: + '4.6.01590': + full_name: 'Microsoft .NET Framework 4.6.2' + installer: 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01590\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.01055': + full_name: 'Microsoft .NET Framework 4.6.1' + installer: 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01055\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.00081': + full_name: 'Microsoft .NET Framework 4.6' + installer: 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.00081\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.5.51209': + full_name: 'Microsoft .NET Framework 4.5.2' + installer: 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.5.51209\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,197 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,197 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,197 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,197 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:51:20,213 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,213 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,213 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +# just 32-bit x86 installer available + + + + + + + + +dropbox: + '69.4.102': + full_name: 'Dropbox' + installer: 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe' + install_flags: '/NOLAUNCH' + uninstaller: '%PROGRAMFILES(x86)%\Dropbox\Client\DropboxUninstaller.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,213 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,213 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,213 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,213 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:51:20,229 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,229 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,229 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +duplicati: + '1.3.4': + + full_name: 'Duplicati (x64)' + installer: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + uninstaller: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + refresh: False + cache_dir: False + use_scheduler: False + +2020-03-06 10:51:20,229 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) +2020-03-06 10:51:20,229 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,229 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,229 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,229 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:51:20,229 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,229 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,246 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +dvdstyler: + 'Not Found': + full_name: 'DVDStyler v2.9.6' + + installer: 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\DVDStyler\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,246 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,246 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,246 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,246 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,246 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:51:20,246 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,246 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,264 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +echo-desktop: + '3.0.4': + full_name: + Echo Desktop + installer: + https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe + install_flags: + /S + uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" + uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" + +2020-03-06 10:51:20,264 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) +2020-03-06 10:51:20,264 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,264 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,264 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,264 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:51:20,264 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,277 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.013418912887573242 +2020-03-06 10:51:20,277 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +eea: +# '5.0.2260.1': +# full_name: 'ESET Endpoint Antivirus' +# +# installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# +# install_flags: '/qn ALLUSERS=1 /norestart' +# uninstall_flags: '/qn /norestart' +# msiexec: True +# locale: en_US +# reboot: False +# cache_dir: True +# use_scheduler: True + '6.3.2016.0': + full_name: 'ESET Endpoint Antivirus' + + installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + cache_dir: True + use_scheduler: True +# +# download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ +# for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB + +2020-03-06 10:51:20,277 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) +2020-03-06 10:51:20,277 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,277 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,277 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,277 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:51:20,277 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,277 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,277 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +emet: + '5.5': + full_name: 'EMET 5.5' + installer: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + install_flags: 'ALLUSERS=1 /quiet /qn /norestart' + uninstaller: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:20,292 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,292 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,292 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,292 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,292 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:51:20,292 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,292 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,292 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +# just 32-bit x86 installer available + + + +# Source: https://www.emsisoft.com/en/ +emsisoft-anti-malware: + '9.0': + full_name: 'Emsisoft Anti-Malware' + installer: 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Emsisoft Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,292 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,308 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.015587806701660156 +2020-03-06 10:51:20,308 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,308 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,308 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:51:20,308 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,308 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,308 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: + + +eraser: + + '6.2.2986': + full_name: 'Eraser 6.2.0.2986' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '6.2.2983': + full_name: 'Eraser 6.2.0.2983' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,308 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,324 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.015900373458862305 +2020-03-06 10:51:20,324 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,324 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,324 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:51:20,324 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,324 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,324 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +evernote: + '6.9.7.6770': + full_name: 'Evernote v. 6.9.7' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.9.6.6729': + full_name: 'Evernote v. 6.9.6' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.5.4.4720': + full_name: 'Evernote v. 6.5.4' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,324 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,324 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,324 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,340 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,340 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:51:20,340 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,340 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,340 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +# just 32-bit x86 installer available + + + +fiddler: + '5.0.20181.14850': + full_name: 'Fiddler' + installer: 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe' + install_flags: '/S /D=%ProgramFiles(x86)%\Fiddler' + uninstaller: '%ProgramFiles(x86)%\Fiddler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,340 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,340 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,340 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,340 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,355 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:51:20,355 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,355 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,355 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +# just 32-bit x86 installer available + + + +# Source: http://filehippo.com/download_update_checker/ +filehippo-app-manager: + '2.0': + full_name: 'FileHippo App Manager' + installer: 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\FileHippo.com\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download manually and place on master salt://win/repo-ng/filehippo-app-manager + +2020-03-06 10:51:20,355 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,355 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,355 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,355 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,355 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:51:20,355 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,371 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.01595616340637207 +2020-03-06 10:51:20,371 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: + + +filezilla: + + '3.47.1': + full_name: 'FileZilla Client 3.47.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.47.0': + full_name: 'FileZilla Client 3.47.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.3': + full_name: 'FileZilla Client 3.46.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.2': + full_name: 'FileZilla Client 3.46.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.1': + full_name: 'FileZilla Client 3.46.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.0': + full_name: 'FileZilla Client 3.46.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.1': + full_name: 'FileZilla Client 3.45.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.0': + full_name: 'FileZilla Client 3.45.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.2': + full_name: 'FileZilla Client 3.44.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.1': + full_name: 'FileZilla Client 3.44.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.0': + full_name: 'FileZilla Client 3.44.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.43.0': + full_name: 'FileZilla Client 3.43.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.1': + full_name: 'FileZilla Client 3.42.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.0': + full_name: 'FileZilla Client 3.42.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.2': + full_name: 'FileZilla Client 3.41.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.1': + full_name: 'FileZilla Client 3.41.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.0': + full_name: 'FileZilla Client 3.41.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.40.0': + full_name: 'FileZilla Client 3.40.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.39.0': + full_name: 'FileZilla Client 3.39.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.1': + full_name: 'FileZilla Client 3.38.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.0': + full_name: 'FileZilla Client 3.38.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.4': + full_name: 'FileZilla Client 3.37.4' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.3': + full_name: 'FileZilla Client 3.37.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.1': + full_name: 'FileZilla Client 3.37.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.0': + full_name: 'FileZilla Client 3.37.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.36.0': + full_name: 'FileZilla Client 3.36.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.2': + full_name: 'FileZilla Client 3.35.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.1': + full_name: 'FileZilla Client 3.35.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.0': + full_name: 'FileZilla Client 3.35.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.34.0': + full_name: 'FileZilla Client 3.34.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.33.0': + full_name: 'FileZilla Client 3.33.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.32.0': + full_name: 'FileZilla Client 3.32.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.31.0': + full_name: 'FileZilla Client 3.31.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.30.0': + full_name: 'FileZilla Client 3.30.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.29.0': + full_name: 'FileZilla Client 3.29.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.28.0': + full_name: 'FileZilla Client 3.28.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.1': + full_name: 'FileZilla Client 3.27.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0.1': + full_name: 'FileZilla Client 3.27.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0': + full_name: 'FileZilla Client 3.27.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.2': + full_name: 'FileZilla Client 3.26.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.1': + full_name: 'FileZilla Client 3.26.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.0': + full_name: 'FileZilla Client 3.26.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.2': + full_name: 'FileZilla Client 3.25.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.1': + full_name: 'FileZilla Client 3.25.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.0': + full_name: 'FileZilla Client 3.25.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.1': + full_name: 'FileZilla Client 3.24.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.0': + full_name: 'FileZilla Client 3.24.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.2': + full_name: 'FileZilla Client 3.23.0.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.1': + full_name: 'FileZilla Client 3.23.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0': + full_name: 'FileZilla Client 3.23.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.2': + full_name: 'FileZilla Client 3.22.2.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.1': + full_name: 'FileZilla Client 3.22.2.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2': + full_name: 'FileZilla Client 3.22.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.1': + full_name: 'FileZilla Client 3.22.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.0': + full_name: 'FileZilla Client 3.22.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.21.0': + full_name: 'FileZilla Client 3.21.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.1': + full_name: 'FileZilla Client 3.20.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.0': + full_name: 'FileZilla Client 3.20.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.19.0': + full_name: 'FileZilla Client 3.19.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.18.0': + full_name: 'FileZilla Client 3.18.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0.1': + full_name: 'FileZilla Client 3.17.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0': + full_name: 'FileZilla Client 3.17.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.1': + full_name: 'FileZilla Client 3.16.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.0': + full_name: 'FileZilla Client 3.16.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,390 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.019016027450561523 +2020-03-06 10:51:20,390 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,390 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,402 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:51:20,402 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,402 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,402 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +firefox-esr_x64: + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,420 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,420 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.018050670623779297 +2020-03-06 10:51:20,420 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,420 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,434 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:51:20,434 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,434 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,434 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +firefox-esr_x86: + + + + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.8.0': + full_name: 'Mozilla Firefox 38.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.1': + full_name: 'Mozilla Firefox 38.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.0': + full_name: 'Mozilla Firefox 38.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.1': + full_name: 'Mozilla Firefox 38.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Firefox 38.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.2': + full_name: 'Mozilla Firefox 38.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.1': + full_name: 'Mozilla Firefox 38.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Firefox 38.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Firefox 38.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Firefox 38.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.1': + full_name: 'Mozilla Firefox 38.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,449 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,449 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,466 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,466 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,466 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:51:20,466 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,466 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,483 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +firefox_x64: + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,502 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.018712282180786133 +2020-03-06 10:51:20,502 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,502 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,502 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:51:20,502 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,515 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.012537002563476562 +2020-03-06 10:51:20,515 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +firefox_x86: + + + + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.2': + full_name: 'Mozilla Firefox 41.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.1': + full_name: 'Mozilla Firefox 41.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0': + full_name: 'Mozilla Firefox 41.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.3': + full_name: 'Mozilla Firefox 40.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.2': + full_name: 'Mozilla Firefox 40.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0': + full_name: 'Mozilla Firefox 40.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0.3': + full_name: 'Mozilla Firefox 39.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0': + full_name: 'Mozilla Firefox 39.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.6': + full_name: 'Mozilla Firefox 38.0.6 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.5': + full_name: 'Mozilla Firefox 38.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.1': + full_name: 'Mozilla Firefox 38.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0': + full_name: 'Mozilla Firefox 38.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.2': + full_name: 'Mozilla Firefox 37.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.1': + full_name: 'Mozilla Firefox 37.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0': + full_name: 'Mozilla Firefox 37.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.4': + full_name: 'Mozilla Firefox 36.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.3': + full_name: 'Mozilla Firefox 36.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.1': + full_name: 'Mozilla Firefox 36.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0': + full_name: 'Mozilla Firefox 36.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0.1': + full_name: 'Mozilla Firefox 35.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0': + full_name: 'Mozilla Firefox 35.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0.5': + full_name: 'Mozilla Firefox 34.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0': + full_name: 'Mozilla Firefox 34.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1.1': + full_name: 'Mozilla Firefox 33.1.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1': + full_name: 'Mozilla Firefox 33.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.3': + full_name: 'Mozilla Firefox 33.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.2': + full_name: 'Mozilla Firefox 33.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.1': + full_name: 'Mozilla Firefox 33.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0': + full_name: 'Mozilla Firefox 33.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.3': + full_name: 'Mozilla Firefox 32.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.2': + full_name: 'Mozilla Firefox 32.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.1': + full_name: 'Mozilla Firefox 32.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0': + full_name: 'Mozilla Firefox 32.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '31.0': + full_name: 'Mozilla Firefox 31.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '30.0': + full_name: 'Mozilla Firefox 30.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '29.0.1': + full_name: 'Mozilla Firefox 29.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,551 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.036524295806884766 +2020-03-06 10:51:20,551 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,551 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,551 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:51:20,551 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,551 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,567 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +# just 32-bit x86 installer available + + + + +gedit: + '2.30.1': + full_name: gedit 2.30.1 + installer: https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\gedit\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,567 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,567 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,567 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,567 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:51:20,567 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,567 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,582 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +# just 32-bit x86 installer available +# Gimp installs into %ProgramFiles on either cpu arch +gimp: + + '2.10.4': + full_name: 'GIMP 2.10.4' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.22': + full_name: 'GIMP 2.8.22' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.16': + full_name: 'GIMP 2.8.16' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.14': + full_name: 'GIMP 2.8.14' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + +2020-03-06 10:51:20,582 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) +2020-03-06 10:51:20,582 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,582 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,582 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,582 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:51:20,582 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,582 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,582 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +git-extensions: + '2.48.05': + full_name: 'Git Extensions 2.48.05' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.48.03': + full_name: 'Git Extensions 2.48.03' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:20,582 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,598 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.015229225158691406 +2020-03-06 10:51:20,598 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,598 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,598 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:51:20,598 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,614 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.016578197479248047 +2020-03-06 10:51:20,614 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git + + + + + + + +git: + + + + + + + + + + '2.23.0.windows.1': + full_name: Git version 2.23.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.22.0.windows.1': + full_name: Git version 2.22.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.21.0': + full_name: Git version 2.21.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.1': + full_name: Git version 2.20.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.0': + full_name: Git version 2.20.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.2': + full_name: Git version 2.19.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.1': + full_name: Git version 2.19.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.0': + full_name: Git version 2.19.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.18.0': + full_name: Git version 2.18.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.1.2': + full_name: Git version 2.17.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.0': + full_name: Git version 2.17.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.3': + full_name: Git version 2.16.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.2': + full_name: Git version 2.16.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.0.2': + full_name: Git version 2.16.0.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.15.0': + full_name: Git version 2.15.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.14.2': + full_name: Git version 2.14.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.3': + full_name: Git version 2.13.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.1.2': + full_name: Git version 2.13.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.2': + full_name: Git version 2.12.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.1': + full_name: Git version 2.12.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0.3': + full_name: Git version 2.11.0.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0': + full_name: Git version 2.11.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.2': + full_name: Git version 2.10.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.1': + full_name: Git version 2.10.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.0': + full_name: Git version 2.10.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.9.0': + full_name: Git version 2.9.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.4': + full_name: Git version 2.8.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.3': + full_name: Git version 2.8.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.2': + full_name: Git version 2.8.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.1': + full_name: Git version 2.8.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.2': + full_name: Git version 2.7.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.1': + full_name: Git version 2.7.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.0': + full_name: Git version 2.7.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.4': + full_name: Git version 2.6.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.2': + full_name: Git version 2.6.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.3': + full_name: Git version 2.5.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.2.2': + full_name: Git version 2.5.2.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.0': + full_name: Git version 2.5.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + +msysgit: + '1.9.5-preview20150319': + full_name: 'Git version 1.9.5-preview20150319' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART ' + msiexec: False + locale: en_US + reboot: False + '1.9.5-preview20141217': + full_name: 'Git version 1.9.5-preview20141217' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + '1.9.4-preview20140815': + full_name: 'Git version 1.9.4-preview20140815' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe' + install_flags: '/VERYSILENT /NOREBOOT' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NOREBOOT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,629 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,629 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015164375305175781 +2020-03-06 10:51:20,629 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,629 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,629 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:51:20,644 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,644 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,644 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +# just 32-bit x86 installer available + + + +glarysoft-absolute-uninstaller: + '5.3.1.23': + full_name: 'Absolute Uninstaller 5.3.1.23' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '5.3.1.21': + full_name: 'Absolute Uninstaller 5.3.1.21' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,644 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,660 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,660 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,660 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:51:20,660 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,660 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,676 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +# just 32-bit x86 installer available + + + +gnucash: + '2.6.5': + full_name: 'GnuCash 2.6.5' + installer: 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe' + install_flags: '/SILENT' + uninstaller: '%ProgramFiles(x86)%\gnucash\uninstall\gnucash\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,676 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,676 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,676 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,676 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,676 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:51:20,676 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,692 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.01651597023010254 +2020-03-06 10:51:20,692 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +# "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. +# See https://golang.org/ + + + + + +# Hint: the versionWithTrailingZero is required, because golang sets the version field in Windows to e.g. 1.14.0 or 1.13.0 if 1.14 or 1.13 is installed. +# If we dont do that the version can not be removed anymore via saltstack. + +golang: + + + '1.2.2': + + full_name: 'Go Programming Language amd64 go1.2.2' + installer: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.0': + + full_name: 'Go Programming Language amd64 go1.3' + installer: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.1': + + full_name: 'Go Programming Language amd64 go1.3.1' + installer: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.2': + + full_name: 'Go Programming Language amd64 go1.3.2' + installer: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.3': + + full_name: 'Go Programming Language amd64 go1.3.3' + installer: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.0': + + full_name: 'Go Programming Language amd64 go1.4' + installer: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.1': + + full_name: 'Go Programming Language amd64 go1.4.1' + installer: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.2': + + full_name: 'Go Programming Language amd64 go1.4.2' + installer: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.3': + + full_name: 'Go Programming Language amd64 go1.4.3' + installer: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.0': + + full_name: 'Go Programming Language amd64 go1.5' + installer: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.1': + + full_name: 'Go Programming Language amd64 go1.5.1' + installer: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.2': + + full_name: 'Go Programming Language amd64 go1.5.2' + installer: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.3': + + full_name: 'Go Programming Language amd64 go1.5.3' + installer: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.4': + + full_name: 'Go Programming Language amd64 go1.5.4' + installer: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.0': + + full_name: 'Go Programming Language amd64 go1.6' + installer: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.1': + + full_name: 'Go Programming Language amd64 go1.6.1' + installer: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.2': + + full_name: 'Go Programming Language amd64 go1.6.2' + installer: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.3': + + full_name: 'Go Programming Language amd64 go1.6.3' + installer: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.4': + + full_name: 'Go Programming Language amd64 go1.6.4' + installer: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.0': + + full_name: 'Go Programming Language amd64 go1.7' + installer: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.1': + + full_name: 'Go Programming Language amd64 go1.7.1' + installer: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.2': + + full_name: 'Go Programming Language amd64 go1.7.2' + installer: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.3': + + full_name: 'Go Programming Language amd64 go1.7.3' + installer: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.4': + + full_name: 'Go Programming Language amd64 go1.7.4' + installer: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.5': + + full_name: 'Go Programming Language amd64 go1.7.5' + installer: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.6': + + full_name: 'Go Programming Language amd64 go1.7.6' + installer: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.0': + + full_name: 'Go Programming Language amd64 go1.8' + installer: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.1': + + full_name: 'Go Programming Language amd64 go1.8.1' + installer: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.2': + + full_name: 'Go Programming Language amd64 go1.8.2' + installer: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.3': + + full_name: 'Go Programming Language amd64 go1.8.3' + installer: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.4': + + full_name: 'Go Programming Language amd64 go1.8.4' + installer: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.5': + + full_name: 'Go Programming Language amd64 go1.8.5' + installer: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.6': + + full_name: 'Go Programming Language amd64 go1.8.6' + installer: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.7': + + full_name: 'Go Programming Language amd64 go1.8.7' + installer: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.0': + + full_name: 'Go Programming Language amd64 go1.9' + installer: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.1': + + full_name: 'Go Programming Language amd64 go1.9.1' + installer: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.2': + + full_name: 'Go Programming Language amd64 go1.9.2' + installer: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.3': + + full_name: 'Go Programming Language amd64 go1.9.3' + installer: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.4': + + full_name: 'Go Programming Language amd64 go1.9.4' + installer: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + + full_name: 'Go Programming Language amd64 go1.9.5' + installer: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.6': + + full_name: 'Go Programming Language amd64 go1.9.6' + installer: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.7': + + full_name: 'Go Programming Language amd64 go1.9.7' + installer: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.0': + + full_name: 'Go Programming Language amd64 go1.10' + installer: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.1': + + full_name: 'Go Programming Language amd64 go1.10.1' + installer: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.2': + + full_name: 'Go Programming Language amd64 go1.10.2' + installer: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.3': + + full_name: 'Go Programming Language amd64 go1.10.3' + installer: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.4': + + full_name: 'Go Programming Language amd64 go1.10.4' + installer: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.5': + + full_name: 'Go Programming Language amd64 go1.10.5' + installer: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.6': + + full_name: 'Go Programming Language amd64 go1.10.6' + installer: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.7': + + full_name: 'Go Programming Language amd64 go1.10.7' + installer: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.8': + + full_name: 'Go Programming Language amd64 go1.10.8' + installer: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.0': + + full_name: 'Go Programming Language amd64 go1.11' + installer: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.1': + + full_name: 'Go Programming Language amd64 go1.11.1' + installer: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.2': + + full_name: 'Go Programming Language amd64 go1.11.2' + installer: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.3': + + full_name: 'Go Programming Language amd64 go1.11.3' + installer: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.4': + + full_name: 'Go Programming Language amd64 go1.11.4' + installer: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.5': + + full_name: 'Go Programming Language amd64 go1.11.5' + installer: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.6': + + full_name: 'Go Programming Language amd64 go1.11.6' + installer: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.7': + + full_name: 'Go Programming Language amd64 go1.11.7' + installer: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.8': + + full_name: 'Go Programming Language amd64 go1.11.8' + installer: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.9': + + full_name: 'Go Programming Language amd64 go1.11.9' + installer: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.10': + + full_name: 'Go Programming Language amd64 go1.11.10' + installer: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.11': + + full_name: 'Go Programming Language amd64 go1.11.11' + installer: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.12': + + full_name: 'Go Programming Language amd64 go1.11.12' + installer: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.13': + + full_name: 'Go Programming Language amd64 go1.11.13' + installer: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.0': + + full_name: 'Go Programming Language amd64 go1.12' + installer: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.1': + + full_name: 'Go Programming Language amd64 go1.12.1' + installer: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.2': + + full_name: 'Go Programming Language amd64 go1.12.2' + installer: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.3': + + full_name: 'Go Programming Language amd64 go1.12.3' + installer: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.4': + + full_name: 'Go Programming Language amd64 go1.12.4' + installer: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.5': + + full_name: 'Go Programming Language amd64 go1.12.5' + installer: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.6': + + full_name: 'Go Programming Language amd64 go1.12.6' + installer: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.7': + + full_name: 'Go Programming Language amd64 go1.12.7' + installer: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.8': + + full_name: 'Go Programming Language amd64 go1.12.8' + installer: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.9': + + full_name: 'Go Programming Language amd64 go1.12.9' + installer: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.10': + + full_name: 'Go Programming Language amd64 go1.12.10' + installer: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.11': + + full_name: 'Go Programming Language amd64 go1.12.11' + installer: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.12': + + full_name: 'Go Programming Language amd64 go1.12.12' + installer: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.13': + + full_name: 'Go Programming Language amd64 go1.12.13' + installer: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.14': + + full_name: 'Go Programming Language amd64 go1.12.14' + installer: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.15': + + full_name: 'Go Programming Language amd64 go1.12.15' + installer: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.16': + + full_name: 'Go Programming Language amd64 go1.12.16' + installer: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.17': + + full_name: 'Go Programming Language amd64 go1.12.17' + installer: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.0': + + full_name: 'Go Programming Language amd64 go1.13' + installer: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.1': + + full_name: 'Go Programming Language amd64 go1.13.1' + installer: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.2': + + full_name: 'Go Programming Language amd64 go1.13.2' + installer: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.3': + + full_name: 'Go Programming Language amd64 go1.13.3' + installer: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.4': + + full_name: 'Go Programming Language amd64 go1.13.4' + installer: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.5': + + full_name: 'Go Programming Language amd64 go1.13.5' + installer: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.6': + + full_name: 'Go Programming Language amd64 go1.13.6' + installer: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.7': + + full_name: 'Go Programming Language amd64 go1.13.7' + installer: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.8': + + full_name: 'Go Programming Language amd64 go1.13.8' + installer: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.14.0': + + full_name: 'Go Programming Language amd64 go1.14' + installer: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:20,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,724 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.031972646713256836 +2020-03-06 10:51:20,724 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,724 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,724 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:51:20,724 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,740 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.015828371047973633 +2020-03-06 10:51:20,740 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +goodsync: + '9.9.46.6': + full_name: 'GoodSync' + installer: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:20,740 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,740 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,740 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,740 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,740 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:51:20,740 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,756 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.01554250717163086 +2020-03-06 10:51:20,756 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +# just 32-bit x86 installer available + + + +gow: + 'Not Found': + full_name: 'Gow' + installer: 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Gow\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + # Gow - GNU on Windows - The lightweight alternative to Cygwin + # https://github.com/bmatzelle/gow/wiki + +2020-03-06 10:51:20,756 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,756 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,756 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,756 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,756 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:51:20,771 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,771 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,771 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +# just 32-bit x86 installer available + + + +gpg4win-light: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream +# Here are work around instructions under Issue #113 in the meantime +# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 +# + +2020-03-06 10:51:20,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,771 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,787 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,787 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,787 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:51:20,787 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,787 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,787 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +# just 32-bit x86 installer available + + + +gpg4win-vanilla: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,805 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,805 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,805 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,805 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,805 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:51:20,805 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,822 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.017762184143066406 +2020-03-06 10:51:20,822 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: + + +graylog-collector-sidecar: + + '0.1.6': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.5': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.4': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.3': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.2': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.1': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.0': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:20,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,822 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,838 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:51:20,838 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,838 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,838 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +grepwin: + '1.6.682': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.673': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.661': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.646': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:20,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,854 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.015396833419799805 +2020-03-06 10:51:20,854 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,854 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,854 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:51:20,854 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,854 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,854 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +# just 32-bit x86 installer available + + + +gvim: + 'Not Found': + full_name: 'Vim 8.0.3' + installer: 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Vim\vim80\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,869 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,869 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,869 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,869 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:51:20,869 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,885 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.015877962112426758 +2020-03-06 10:51:20,885 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +# Source: https://handbrake.fr +handbrake: + '0.10.5': + full_name: 'Handbrake 0.10.5' + + installer: 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Handbrake\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,885 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,885 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,900 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,900 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:51:20,900 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,900 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,900 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +hipchat: + + + + '4.0.1650': + installer: 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe' + full_name: 'HipChat' + install_flags: '/sp /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Atlassian\Hipchat4\unins000.exe' + uninstall_flags: '/sp /verysilent' + msiexec: False + reboot: False + +2020-03-06 10:51:20,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:51:20,900 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,916 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,932 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,932 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:51:20,932 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,932 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,932 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +hostsfileeditor: + '1.2.0': + + full_name: 'Hosts File Editor' + installer: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + uninstaller: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:20,932 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,948 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.015745878219604492 +2020-03-06 10:51:20,948 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,948 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,948 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:51:20,948 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,948 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,963 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: + +hwinfo: + '5.70': + + full_name: 'HWiNFO64 Version 5.70' + installer: 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe' + uninstaller: '%PROGRAMFILES%\HWiNFO64\unins000.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,963 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,963 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,963 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,963 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:51:20,963 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,963 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,979 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +ice: + '3.6.1.2': + full_name: 'Ice 3.6.1.2' + installer: 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi' + uninstaller: '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:20,979 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,979 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,979 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,979 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,979 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:51:20,979 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,979 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:20,996 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +# just 32-bit x86 installer available + + + +icecast: + '2.4.2': + full_name: 'Icecast' + installer: 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Icecast\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:20,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:20,996 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:20,996 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:20,996 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:20,996 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:51:20,996 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:20,996 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,012 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +icloud: + '7.3.0.20': + full_name: iCloud + installer: 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,012 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,012 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,012 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,012 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:51:21,012 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,028 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.015957117080688477 +2020-03-06 10:51:21,028 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +iismediaservices: + '4.1.0938.454': + full_name: 'IIS Media Services 4.1' + + installer: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '4.0.0938.54': + full_name: 'IIS Media Services 4.0' + + installer: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '2.0.1': + full_name: 'IIS Media Services 2.0' + + installer: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,028 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,028 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,028 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,028 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,044 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:51:21,044 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,044 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,044 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +influx-capacitor: + '1.0.89': + full_name: 'Influx Capacitor' + installer: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + install_flags: '/q' + uninstaller: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + uninstall_flags: '/q' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,044 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,044 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,059 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,059 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:51:21,059 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,059 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,059 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +inkscape: + '0.91': + full_name: 'Inkscape 0.91' + + installer: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + uninstaller: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,059 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,059 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,059 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,075 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,075 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:51:21,075 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,075 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,075 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +# just 32-bit x86 installer available + + + +intellij-community: + + '14.1.4': + full_name: 'IntelliJ IDEAS Community Edition 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:21,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,091 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.015659332275390625 +2020-03-06 10:51:21,091 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,091 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,091 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:51:21,091 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,106 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.01534128189086914 +2020-03-06 10:51:21,106 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +# just 32-bit x86 installer available + + + +intellij-ultimate: + + '14.1.4': + full_name: 'IntelliJ IDEAS Ultimate 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:21,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,106 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,106 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,106 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,122 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:51:21,122 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,122 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,122 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +internet-evidence-finder: + '6.2.3.0001': + full_name: 'Internet Evidence Finder' + installer: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,122 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,122 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,122 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,138 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,138 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:51:21,138 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,138 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,138 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +irfanview-plugins: + '4.42': + + full_name: 'Irfanview Plugins 4.40' + installer: 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe' + # download manually from: http://www.irfanview.info/files/irfanview_plugins_x64_442_setup.exe and place on master + + install_flags: '/silent' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,138 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,154 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,154 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,154 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:51:21,154 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,154 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,154 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +irfanview: + '4.51': + + full_name: 'IrfanView 64 (remove only)' + installer: 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe' + # download manually from: http://www.irfanview.info/files/iview451_x64_setup.exe and place on master + + install_flags: '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0' + uninstaller: '%ProgramFiles%\irfanview\iv_uninstall.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False +# install_flags +# folder: destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used +# silent: silent install - no prompts +# desktop: create desktop shortcut; 0 = no, 1 = yes (default: 0) +# thumbs: create desktop shortcut for thumbnails; 0 = no, 1 = yes (default: 0) +# group: create group in Start Menu; 0 = no, 1 = yes (default: 0) +# allusers: desktop/group links are for all users; 0 = current user, 1 = all users +# assoc: if used, set file associations; 0 = none, 1 = images only, 2 = select all (default: 0) +# assocallusers: if used, set associations for all users (Windows XP only) +# ini: if used, set custom INI file folder (system environment variables are allowed) + +2020-03-06 10:51:21,154 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,154 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,169 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,169 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,169 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:51:21,169 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,169 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,169 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +isapirewrite-lite: + '3.1.0112': + full_name: 'Helicon ISAPI_Rewrite 3 Lite' + + installer: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + uninstaller: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,184 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.015670299530029297 +2020-03-06 10:51:21,184 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,184 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,184 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:51:21,184 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,184 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,184 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +itunes: + '12.8.0.150': + full_name: 'iTunes' + + installer: 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe' + uninstall_flags: | + '/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} & + msiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} & + msiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} & + msiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} & + msiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} & + msiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} & + exit 0' + # the above uninstalls: + # Bonjour64 v. 3.1.0.1 {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} + # Apple Software Update v. 2.6.0.1 {A30EA700-5515-48F0-88B0-9E99DC356B88} + # Apple Mobile Device Support (64-bit) v. 11.4.1.46 {C29B636B-9015-4ED1-A12F-6375A337F23B} + # Apple Application Support (32-bit) v. 6.6 {C56BA005-F02C-461B-ACA5-A0CE3E32578F} + # Apple Application Support (64-bit) v. 6.6 {D745E014-74DD-43A3-98DF-E7D38164B681} + # iTunes v. 12.8.0.150 {36F365B3-05C2-455D-9D96-B73829DE046D} + + install_flags: '/quiet /qn ALLUSERS=1 /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,184 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,200 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.015423297882080078 +2020-03-06 10:51:21,200 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,200 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,200 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:51:21,220 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,220 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,220 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way +# to find manual download links for any version use: +# http://www.java.com/en/download/manual.jsp +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + +jdk8: + '8.0.1440.1': + + full_name: 'Java SE Development Kit 8 Update 144 (64-bit)' + installer: salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe + + install_flags: '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"' + uninstall_flags: '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,220 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,220 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,220 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,220 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,220 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:51:21,220 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,236 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.015540361404418945 +2020-03-06 10:51:21,236 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +jre: + '7.0.790': + + full_name: 'Java 7 Update 79 (64-bit)' + installer: 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/s REBOOT=Suppress SPONSORS=0' + msiexec: False + locale: en_US + reboot: False + # due to winrepo installer limitations you need to manually download the exe from + # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 + # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way + +2020-03-06 10:51:21,236 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,236 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,236 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,257 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,257 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:51:21,257 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,257 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,257 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://www.java.com/en/download/manual.jsp +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + + + +jre8: + + + + '8.0.2010.9': + + full_name: 'Java 8 Update 201 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2110.9': + + full_name: 'Java 8 Update 211 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2210.9': + + full_name: 'Java 8 Update 221 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2310.9': + + full_name: 'Java 8 Update 231 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2410.7': + + full_name: 'Java 8 Update 241 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:21,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,273 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,273 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,273 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,273 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:51:21,273 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,289 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,289 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +jungledisk-server-management: + '3.23.0.2': + full_name: 'Jungle Disk Server Management' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-management64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,289 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,289 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,289 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,289 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,289 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:51:21,289 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,289 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,304 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +jungledisk-server: + '3.23.0.2': + full_name: 'Jungle Disk Server' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,304 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,304 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,304 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,304 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:51:21,304 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,304 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,320 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +jungledisk-workgroup: + '3.23.0.2': + full_name: 'Jungle Disk Workgroup' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,320 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,320 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,320 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,320 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:51:21,320 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,320 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,335 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +kdiff3: + 'Not Found': + full_name: 'KDiff3 (remove only)' + + installer: 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe' + + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\KDiff3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,335 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,335 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,335 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,335 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:51:21,335 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,352 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.016863346099853516 +2020-03-06 10:51:21,352 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +# Keepass 2.x installation from https://keepass.info/ +# to keep the versioning in the format of "2..minor", two seperate version arrays are created. + + + +# Hint: Version 2.24 is the first version that provides a msi-package, all versions before had a -Setup.exe + + +keepass-2x: + + + '2.24.0': + full_name: 'KeePass 2.24' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.25.0': + full_name: 'KeePass 2.25' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.26.0': + full_name: 'KeePass 2.26' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.27.0': + full_name: 'KeePass 2.27' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.28.0': + full_name: 'KeePass 2.28' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.29.0': + full_name: 'KeePass 2.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.30.0': + full_name: 'KeePass 2.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.31.0': + full_name: 'KeePass 2.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.32.0': + full_name: 'KeePass 2.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.33.0': + full_name: 'KeePass 2.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.34.0': + full_name: 'KeePass 2.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.35.0': + full_name: 'KeePass 2.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.36.0': + full_name: 'KeePass 2.36' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.37.0': + full_name: 'KeePass 2.37' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.38.0': + full_name: 'KeePass 2.38' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.0': + full_name: 'KeePass 2.39' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.40.0': + full_name: 'KeePass 2.40' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.41.0': + full_name: 'KeePass 2.41' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.0': + full_name: 'KeePass 2.42' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.43.0': + full_name: 'KeePass 2.43' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.44.0': + full_name: 'KeePass 2.44' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.1': + full_name: 'KeePass 2.39.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.1': + full_name: 'KeePass 2.42.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,368 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0153656005859375 +2020-03-06 10:51:21,368 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,368 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,368 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:51:21,368 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,368 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,383 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +keepass: + '1.35.0': + full_name: 'KeePass 1.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.34.0': + full_name: 'KeePass 1.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.33.0': + full_name: 'KeePass 1.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.32.0': + full_name: 'KeePass 1.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.31.0': + full_name: 'KeePass 1.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.30.0': + full_name: 'KeePass 1.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.29.0': + full_name: 'KeePass 1.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,383 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,383 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,383 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,383 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:51:21,383 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,399 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.015793323516845703 +2020-03-06 10:51:21,399 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +# just 32-bit x86 installer available + + + +lastpass: + 'Not Found': + full_name: 'LastPass (uninstall only)' + + installer: 'https://lastpass.eu/sync/lastpass_x64.exe' + + install_flags: '-si --userinstallie --userinstallff --userinstallchrome' + uninstaller: '%PROGRAMFILES(x86)%\LastPass\lastpass.exe' + uninstall_flags: '-sb' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,399 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,399 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,399 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,399 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,399 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:51:21,414 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,414 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,414 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +# NOTE: If the lazarus installation directory exists the installation will +# pop up a dialog box. This will cause the minion to hang because it +# is waiting for the user to click continue on a dialog box that will +# never be seen. So, before running this, make sure the lazarus +# installation directory is not present. +# If doing an upgrade that means you'll have to do something like the +# following: +# pkg.remove lazarus +# file.remove c:\lazarus +# pkg.install lazarus + + +lazarus: + + '1.8.0': + full_name: Lazarus 1.8.0 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + '1.6.4': + full_name: Lazarus 1.6.4 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + +2020-03-06 10:51:21,414 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) +2020-03-06 10:51:21,414 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,414 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,430 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,430 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:51:21,430 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,430 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,430 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +libreoffice: + + '5.3.5.2': + full_name: 'LibreOffice 5.3.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.3.6.1': + full_name: 'LibreOffice 5.3.6.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.6.2': + full_name: 'LibreOffice 5.4.6.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.7.2': + full_name: 'LibreOffice 5.4.7.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.0.5.2': + full_name: 'LibreOffice 6.0.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.2.7.1': + full_name: 'LibreOffice 6.2.7.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:21,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,446 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.015888452529907227 +2020-03-06 10:51:21,446 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,446 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,446 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:51:21,446 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,446 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,446 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +logparser: + '2.2.10': + full_name: 'Log Parser 2.2' + installer: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,461 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.014984130859375 +2020-03-06 10:51:21,461 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,461 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,461 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:51:21,461 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,461 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,476 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +# just 32-bit x86 installer available + + + +maas360bootanalyzer: + '1.0.0': + full_name: 'MaaS360 Boot Analyzer v 1.0.0' + installer: 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe' + + install_flags: | + '/S & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v UninstallString /d "C:\Program Files (x86)\BootAnalyzer\Uninstall.exe" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" & + exit 0' + + uninstaller: '%PROGRAMFILES(x86)%\MaaS360\BootAnalyzer\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory + +2020-03-06 10:51:21,476 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,476 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,476 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,476 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,476 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:51:21,476 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,492 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.016074180603027344 +2020-03-06 10:51:21,492 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.malwarebytes.org +malwarebytes: + '3.5.1.2522': + full_name: 'Malwarebytes Anti-Malware version 2.0.4.1028' + installer: 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Malwarebytes Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: Falsea + +2020-03-06 10:51:21,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) +2020-03-06 10:51:21,492 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,492 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,492 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,492 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:51:21,492 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,524 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.031330108642578125 +2020-03-06 10:51:21,524 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +#MariaDB https://downloads.mariadb.org/mariadb/+releases/ +#only stable versions are listed + + + + + + + + +mariadb: + + + '10.0.38.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.37.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.36.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.35.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.34.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.33.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.32.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.29.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.28.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.27.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.26.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.25.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.23.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.19.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.18.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.17.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.16.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.2.22.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.21.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.20.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.19.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.18.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.16.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.15.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.14.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.13.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.12.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.11.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.10.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.9.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.8.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.6.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '5.5.63.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.62.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.61.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.60.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.59.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.58.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.57.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.56.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.55.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.54.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.53.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.52.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.51.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.50.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.49.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.48.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.47.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.1.38.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.37.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.36.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.35.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.34.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.33.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.32.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.31.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.30.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.29.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.28.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.27.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.26.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.25.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.24.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.23.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.22.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.21.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.19.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.18.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.17.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.16.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.14.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.13.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.12.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.11.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.10.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.9.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.8.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:51:21,539 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:51:21,555 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.031058311462402344 +2020-03-06 10:51:21,555 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,555 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,555 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:51:21,555 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,570 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.01577162742614746 +2020-03-06 10:51:21,570 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +mercurial: + '3.1.1': + + full_name: 'Mercurial 3.1.1 (x64)' + installer: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + uninstaller: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,570 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,570 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,570 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,570 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:51:21,570 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,595 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0240478515625 +2020-03-06 10:51:21,595 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +messageanalyzer: + '4.0.7551.0': + full_name: 'Microsoft Message Analyzer' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi' + + install_flags: '/quiet /norestart' + uninstaller: '{1CC02C23-8FCD-487E-860C-311EC0A0C933}' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,595 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,595 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,595 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,610 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:51:21,610 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,610 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,610 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +microsoft-build-tools: + '14.0.23107': + + full_name: 'Microsoft Build Tools 14.0 (amd64)' + uninstall_flags: '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart' + + installer: 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe' + install_flags: '/Q /NoRestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,610 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,610 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,626 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,626 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:51:21,626 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,626 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,626 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +mikogo: + '5.3.0': + full_name: 'Mikogo' + installer: 'https://download.mikogo4.com/mikogo-starter.exe' + install_flags: '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0' + uninstaller: '%AppData%\Mikogo\remover.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,626 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,626 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,642 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,642 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,642 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:51:21,642 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,642 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,642 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +miktex-basic: + '2.9': + full_name: 'MiKTeX 2.9' + + installer: 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe' + + install_flags: '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\MiKTeX 2.9\"' + uninstaller: 'cmd' + uninstall_flags: | + '/c del /Q /F /S "%ProgramFiles%\MiKTeX 2.9\" & + reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MiKTeX 2.9" /f & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,658 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,658 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,658 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,658 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,658 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:51:21,658 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,658 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,658 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +mongodb: + '3.3.5': + full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6': + full_name: 'MongoDB 3.2.6 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,658 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,673 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.015236616134643555 +2020-03-06 10:51:21,673 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,673 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,673 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:51:21,673 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,673 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,673 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +ms-mbsa: + '2.3.2211': + + installer: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + uninstaller: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + + full_name: 'Microsoft Baseline Security Analyzer 2.3' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:21,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,673 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,689 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,689 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,689 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:51:21,689 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,689 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,689 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +ms-vcpp-2005-atl-redist_x64: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,689 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,689 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,704 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,704 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:51:21,704 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,704 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,704 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +ms-vcpp-2005-atl-redist_x86: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,704 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,704 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,704 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,704 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:51:21,704 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,720 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0157926082611084 +2020-03-06 10:51:21,720 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +ms-vcpp-2005-redist_x64: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,720 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,720 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,720 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,720 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:51:21,720 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,720 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,720 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +ms-vcpp-2005-redist_x86: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,736 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.015908002853393555 +2020-03-06 10:51:21,736 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,736 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,736 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:51:21,736 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,736 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,736 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +ms-vcpp-2005-sp1-mfc-redist_x64: + '8.0.61000': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,736 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,751 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,751 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,751 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:51:21,751 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,751 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,751 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +ms-vcpp-2005-sp1-mfc-redist_x86: + '8.0.61001': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,751 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,767 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,767 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,767 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:51:21,767 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,767 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,767 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +ms-vcpp-2005-sp1-redist_x64: + '8.0.59192': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,767 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,767 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,783 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,783 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:51:21,783 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,783 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,783 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +ms-vcpp-2005-sp1-redist_x86: + '8.0.59193': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,783 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,783 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,783 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,799 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,799 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:51:21,799 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,799 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,799 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +ms-vcpp-2008-redist_x64: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' + installer: 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,799 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,799 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,799 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,799 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,815 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:51:21,815 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,815 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,815 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +ms-vcpp-2008-redist_x86: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' + installer: 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,815 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,815 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,815 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,815 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:51:21,830 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,830 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,830 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +ms-vcpp-2008-sp1-atl-redist_x64: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,830 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,830 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,830 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,830 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,830 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:51:21,830 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.015911340713500977 +2020-03-06 10:51:21,846 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +ms-vcpp-2008-sp1-atl-redist_x86: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,846 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,846 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,846 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:51:21,846 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,862 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +ms-vcpp-2008-sp1-mfc-redist_x64: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,862 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,862 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,862 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,862 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:51:21,862 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,862 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,862 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +ms-vcpp-2008-sp1-mfc-redist_x86: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,877 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,877 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,877 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,877 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:51:21,877 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,877 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,877 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +ms-vcpp-2010-sp1-mfc-redist_x64: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,893 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.015707015991210938 +2020-03-06 10:51:21,893 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,893 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,893 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:51:21,893 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,893 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,893 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +ms-vcpp-2010-sp1-mfc-redist_x86: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,893 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,893 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,909 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,909 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:51:21,909 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,909 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,909 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +ms-vcpp-2012-redist_x64: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ProgramData%\Package Cache\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\vcredist_x64.exe' + uninstall_flags: '/quiet /uninstall /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,909 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,909 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,909 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,924 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:51:21,924 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,924 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,924 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +ms-vcpp-2012-redist_x86: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: '"%ProgramData%\Package Cache\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\vcredist_x86.exe"' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,924 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,924 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,924 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,924 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:51:21,924 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,940 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.015834569931030273 +2020-03-06 10:51:21,940 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +ms-vcpp-2013-redist_x64: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,940 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,940 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,940 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,940 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:51:21,940 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,956 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.015506505966186523 +2020-03-06 10:51:21,956 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +ms-vcpp-2013-redist_x86: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:21,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,956 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,956 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,956 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,956 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:51:21,956 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,972 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.016115188598632812 +2020-03-06 10:51:21,972 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +ms-vcpp-2015-build-tools: + '14.0.25420.1': + full_name: 'Microsoft Visual C++ Build Tools' + installer: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + install_flags: '/Q /Silent /NoRestart' + uninstaller: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + uninstall_flags: '/Q /U /Silent /NoRestart' + locale: en_US + reboot: False + +2020-03-06 10:51:21,972 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,972 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,972 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,972 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:21,972 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:51:21,987 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:21,987 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:21,987 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +ms-vcpp-2015-redist_x64: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} + # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} + +2020-03-06 10:51:21,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:21,987 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:21,987 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:21,987 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,003 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:51:22,003 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,003 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,003 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +ms-vcpp-2015-redist_x86: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} + +2020-03-06 10:51:22,003 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,003 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,003 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,003 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,018 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:51:22,018 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,018 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,018 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +ms-vcpp-2017-redist_x64: + '14.20.27508.1': + full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + '14.20.27508': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,018 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,018 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,018 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,018 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:51:22,034 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,034 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.015644073486328125 +2020-03-06 10:51:22,034 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +ms-vcpp-2017-redist_x86: + '14.11.25325.0': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' + installer: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,034 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,034 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,034 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,034 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:51:22,034 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,049 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.015384912490844727 +2020-03-06 10:51:22,049 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: + + + + +mucommander: + + '0.9.2': + full_name: 'muCommander (remove only)' + installer: 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe' + uninstaller: '%PROGRAMFILES(x86)%\muCommander\uninstaller.exe' + install_flags: '/S' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:51:22,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,049 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,049 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,066 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,066 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:51:22,066 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,066 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,066 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +mysql-essential: + '5.1.73': + full_name: 'MySQL Server 5.1' + + installer: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:22,066 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,066 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,081 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,081 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,081 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:51:22,081 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,081 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,081 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +mysql-installer-community: + '1.4.3.0': + full_name: 'MySQL Installer - Community' + installer: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Read for MySQL Server 5.6.23.0 Community installation instructions: +# https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html +# https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html + +2020-03-06 10:51:22,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,081 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,097 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,097 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,097 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:51:22,097 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,097 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,097 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +mysql-workbench-community: + + '8.0.15': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.14': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.13': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + +2020-03-06 10:51:22,097 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,097 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,112 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,112 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,112 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:51:22,112 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,112 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,112 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +never10: + '1.3': + full_name: 'Never 10 (GRC)' + installer: 'https://www.grc.com/files/never10.exe' + install_flags: 'update delete disable' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False +# download it from https://www.grc.com/never10.htm + +2020-03-06 10:51:22,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,112 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,112 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,127 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,127 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:51:22,127 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,127 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,127 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +# Please note that per +# https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows +# the MSI uninstall does not remove files or settings, +# and the service must be stopped beforehand. +# +# So this uninstall is not going to work. + +newrelic-infra: + + '1.0.279': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.292': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.296': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.301': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.311': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.316': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.323': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.336': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.338': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.341': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.673': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.677': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.682': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.690': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.703': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,127 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,143 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,143 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,143 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:51:22,143 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,143 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,143 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +nextcloud-client: + + '2.2.3.4': + full_name: 'Nextcloud Client 2.2.3.4' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.2.4.2': + full_name: 'Nextcloud Client 2.2.4.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.1.8': + full_name: 'Nextcloud Client 2.3.1.8' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.2.1': + full_name: 'Nextcloud Client 2.3.2.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.3.1': + full_name: 'Nextcloud Client 2.3.3.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.0': + full_name: 'Nextcloud Client 2.5.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.1': + full_name: 'Nextcloud Client 2.5.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.2': + full_name: 'Nextcloud Client 2.5.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.3': + full_name: 'Nextcloud Client 2.5.3' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.6.0': + full_name: 'Nextcloud Client 2.6.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:51:22,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,159 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,159 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,159 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,159 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:51:22,159 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,159 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,175 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: + + +# just 32-bit x86 installer available + + + +nmap: + + '7.70': + full_name: 'Nmap 7.70' + installer: 'https://nmap.org/dist/nmap-7.70-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '7.60': + full_name: 'Nmap 7.60' + installer: 'https://nmap.org/dist/nmap-7.60-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,175 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,175 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,175 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,175 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,175 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:51:22,175 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,191 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.015467166900634766 +2020-03-06 10:51:22,191 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +node.js-lts: + + '12.13.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.17.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.11.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.9.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,191 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,191 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,191 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,191 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,206 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:51:22,206 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,206 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,206 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +node.js: + + '13.1.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.6.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '11.14.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '9.11.2': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + uninstaller: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.10.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,206 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,222 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,222 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,222 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:51:22,222 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,222 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,222 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +nomacs: + + '3.8.0': + full_name: 'nomacs - Image Lounge' + installer: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,222 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,222 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,222 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,237 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,237 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:51:22,237 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,237 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,237 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +# just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. + + + +npp: + + + '7.7.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.9': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.8': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.5': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.4.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +# the 64-bit installer is available from: +# https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe + +2020-03-06 10:51:22,285 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,303 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.06514525413513184 +2020-03-06 10:51:22,303 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,303 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,303 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:51:22,312 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,312 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,312 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +nsclient: + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2039': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2029': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1046': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1044': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.0062': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.23': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.19': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.143': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.88': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,328 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.016776561737060547 +2020-03-06 10:51:22,328 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,328 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,328 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:51:22,328 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,328 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,346 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +# Define versions + + +nsis: + + + '3.0b2': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0b1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.51': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.50': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.49': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.48': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.47': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.46': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.03': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02.1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.01': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:22,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,346 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,346 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,359 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,359 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:51:22,359 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,359 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,359 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +# Install Meinberg NTP daemon for Windows +# Note: To do a silent installation, this installer needs a setup file named +# setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. +# The file is documented at +# https://www.meinberg.de/german/sw/readme-ntpinstaller.htm#unattended + + + +ntp: + + '4.2.8p13': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p12': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p11': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,359 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,359 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,375 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,375 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:51:22,375 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,375 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,375 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: + + + +nunit-console: + + + '3.7.0': + full_name: 'NUnit Console 3.7.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.8.0': + full_name: 'NUnit Console 3.8.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.9.0': + full_name: 'NUnit Console 3.9.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:51:22,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:51:22,390 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,390 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,390 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,390 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:51:22,390 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,390 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,390 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +nxlog: + '2.10.2150': + full_name: 'NXLog-CE' + installer: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:22,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,390 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,406 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,406 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,406 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:51:22,406 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,406 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,406 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +octopus-tentacle: + 'latest': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://octopus.com/downloads/latest/OctopusTentacle64' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://octopus.com/downloads/latest/OctopusTentacle64' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.17': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.16': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,422 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,422 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,422 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,422 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,422 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:51:22,422 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,422 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,422 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +# Source: http://openlp.org/ +# just 32-bit x86 installer available + + + + +openlp: + + '2.4.6': + full_name: 'OpenLP 2.4.6' + installer: 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'OpenLP 2.2.1' + installer: 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,437 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,437 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,437 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,437 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:51:22,437 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,437 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,437 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +openoffice: + '4.1.2': + full_name: 'OpenOffice 4.1.2' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart' + msiexec: False + locale: en_US + reboot: False + '4.1.1': + full_name: 'OpenOffice 4.1.1' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart' + msiexec: False + locale: en_US + reboot: False +# +# for other languages replace the two occurrences of 'en-US' +# in the download URL with your local two or four letter code below: +# +# 'el', 'en-GB', 'es', 'eu', 'ca', +# 'ca-XR', 'ca-XV', 'cs', 'ru', 'zh-CN', +# 'zh-TW', 'vi', 'ta', 'th', 'tr', 'sk', +# 'sl', 'sr', 'sv', 'pl', 'pt', 'pt-BR', +# 'nb', 'nl', 'lt', 'km', 'ko', 'ja', +# 'it', 'he', 'hi', 'hu', 'gd', 'gl', +# 'fi', 'fr', 'da', 'de', 'bg', 'ast' +# + +2020-03-06 10:51:22,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,437 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,453 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,453 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,453 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:51:22,453 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,453 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,470 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +openvpn: + +# Combined installer since v2.4+ so no arch needed + + '2.4.7-I607-Win10': + full_name: 'OpenVPN 2.4.7-I607-Win10 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.6-I602': + full_name: 'OpenVPN 2.4.6-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.5-I601': + full_name: 'OpenVPN 2.4.5-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.4-I601': + full_name: 'OpenVPN 2.4.4-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I602': + full_name: 'OpenVPN 2.4.3-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I601': + full_name: 'OpenVPN 2.4.3-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + + '2.3.17-I601': + full_name: 'OpenVPN 2.3.17-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.12-I601': + full_name: 'OpenVPN 2.3.12-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.11-I601': + full_name: 'OpenVPN 2.3.11-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.10-I603': + full_name: 'OpenVPN 2.3.10-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.8-I601': + full_name: 'OpenVPN 2.3.8-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.6-I601': + full_name: 'OpenVPN 2.3.6-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# https://chocolatey.org/packages/openvpn +# Install with the following options: +# /SELECTSHORTCUTS=1 - create the start menu shortcuts +# /SELECTOPENVPN=1 - OpenVPN itself +# /SELECTSERVICE=1 - install the OpenVPN service +# /SELECTTAP=1 - install the TAP device driver +# /SELECTOPENVPNGUI=1 - install the default OpenVPN GUI +# /SELECTASSOCIATIONS=1 - associate with .ovpn files +# /SELECTOPENSSLUTILITIES=1 - install the utilities for generating public-private key pairs +# /SELECTEASYRSA=1 - install the RSA X509 certificate management scripts +# /SELECTPATH=1 - add openvpn.exe in PATH +# /SELECTOPENSSLDLLS=1 - dependencies - OpenSSL DLL's +# /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's +# /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's + +2020-03-06 10:51:22,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,470 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,470 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,470 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,470 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:51:22,484 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,484 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,484 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +# Performant endpoint visibility https://osquery.io/ + + + +osquery: + + '3.3.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.3.0': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.6': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.4': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '2.11.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:51:22,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:51:22,484 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,484 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,484 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,500 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:51:22,500 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,500 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,500 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +# just 32-bit x86 installer available + + + + + + + + + +ossec-agent: + + + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:22,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,516 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.016315460205078125 +2020-03-06 10:51:22,516 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,516 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,516 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:51:22,516 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,516 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,531 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +owncloud: + + + + + '2.2.4.6408': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2.6192': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1.6146': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0.6076': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.1.1.5837': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,531 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,531 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,531 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,531 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:51:22,531 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,531 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,531 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +pandoc: + '1.17.0.2': + full_name: 'Pandoc 1.17.0.2' + installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:22,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,547 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.016081809997558594 +2020-03-06 10:51:22,547 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,547 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,547 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:51:22,547 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,547 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,547 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +parallels-client-15: + '15.0.3869': + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + uninstaller: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# The latest RAS clients can be downloaded for FREE from: +# https://www.parallels.com/uk/products/ras/download/links/ + +2020-03-06 10:51:22,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,562 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.015053749084472656 +2020-03-06 10:51:22,562 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,562 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,562 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:51:22,562 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,562 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,562 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +pass4win: + '1.2.3.7': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '1.2.1.9': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,578 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,578 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,578 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,578 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:51:22,578 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,578 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,578 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +passware-kit-agent: + '13.1.7657': + full_name: 'Passware Kit Agent (64-bit)' + installer: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:22,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,594 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.015738487243652344 +2020-03-06 10:51:22,594 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,594 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,594 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:51:22,594 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,594 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,594 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +passware-kit-forensic: + '13.1.7657': + full_name: 'Passware Kit Forensic (64-bit)' + installer: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:22,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,594 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,594 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,610 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,610 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:51:22,610 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,610 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,610 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +# Source: https://patchmypc.net/ +patchmypc-free: + '3.0.1.1': + full_name: 'PatchMyPC' + installer: 'https://patchmypc.net/freeupdater/PatchMyPC.exe' + install_flags: | + ' & cmd /c taskkill /F /IM PatchMyPC.exe & + xcopy /q /c /r /y "c:\salt\var\cache\salt\minion\extrn_files\base\patchmypc.net\freeupdater\PatchMyPC.exe" "%SystemRoot%" & + exit 0' + uninstaller: 'cmd' + uninstall_flags: | + '/c taskkill /F /IM PatchMyPC.exe & + del /q /f "%SystemRoot%"\PatchMyPC.exe & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,610 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,610 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,610 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,610 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:51:22,626 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,626 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,626 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +pdf24creator: + + '8.8.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.5.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +# Source: https://en.pdf24.org/ +# Packagin info Source: https://chocolatey.org/packages/pdf24 + +2020-03-06 10:51:22,626 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,626 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,626 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,626 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,641 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:51:22,641 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,641 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,641 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +# just 32-bit x86 installer available + + + +pdfcreator: + '2.5.0': + full_name: 'PDFCreator' + installer: 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe' + install_flags: '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-' + uninstaller: '%ProgramFiles(x86)%\PDFCreator\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,641 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,641 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,641 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,657 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:51:22,657 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,657 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,657 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +peazip: + '6.0.0': + + full_name: 'PeaZip 6.0.0 (WIN64)' + installer: 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\PeaZip\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,657 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,657 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,657 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,657 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:51:22,657 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,673 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.01593804359436035 +2020-03-06 10:51:22,673 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: + + + + +pgadmin4: + + '2.1': + full_name: 'pgAdmin 4 version 2.1' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0': + full_name: 'pgAdmin 4 version 2.0' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6': + full_name: 'pgAdmin 4 version 1.6' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v1\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,673 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,673 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,673 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,688 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:51:22,688 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,688 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,688 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +pgina: + '3.1.8.0': + full_name: 'pGina v3.1.8.0' + installer: 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe' + install_flags: '/silent ' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,688 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,688 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,688 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,688 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:51:22,688 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,704 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.01593327522277832 +2020-03-06 10:51:22,704 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: + +# just 32-bit x86 installer available + + + +pidgin: + + '2.12.0': + full_name: 'Pidgin' + installer: 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Pidgin\pidgin-uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,704 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,704 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,704 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,704 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:51:22,719 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,719 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,719 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +# Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: +# salt mid pkg.install postgresql version='"9.6"' + + + +postgresql: + '9.6': + full_name: 'PostgreSQL 9.6 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.6\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.5': + full_name: 'PostgreSQL 9.5 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.5\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.4': + full_name: 'PostgreSQL 9.4 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.4\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.3': + full_name: 'PostgreSQL 9.3 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.3\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + + +2020-03-06 10:51:22,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:51:22,719 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,719 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,719 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,735 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:51:22,735 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,735 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,735 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +### NOTE: You must accept the PowerBI Desktop EULA by setting the +### Pillar key `powerbi:desktop:accept_eula` to `True` in order to +### install this package. You can find a copy of the EULA at +### https://powerbi.microsoft.com/en-us/desktop-eula/. + +powerbi-desktop: + ## version 4.0.1 - https://www.microsoft.com/en-us/download/details.aspx?id=45331 + '2.59.5135.421': &powerbi-desktop + full_name: + "Microsoft PowerBI Desktop (x64)" + installer: &msi401 + "https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi" + install_flags: &flags + /qn + /norestart + ACCEPT_EULA=0 + uninstaller: *msi401 + uninstall_flags: *flags + msiexec: True + reboot: False + +2020-03-06 10:51:22,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:51:22,735 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,735 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,751 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,751 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:51:22,751 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,751 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,751 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +#PowerShell Core https://github.com/PowerShell/PowerShell + + + +powershell-core: + + '6.1.3.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.2.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.1.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.0.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.0.5.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:51:22,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:51:22,751 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,766 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,766 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,766 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:51:22,766 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,766 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,766 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +# Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems +# WMI Exporter: https://github.com/martinlindhe/wmi_exporter +# Prometheus Monitoring: https://prometheus.io/ + +prometheus-wmi-exporter: + + '0.9.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.7.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.6.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.5.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.4': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,782 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,782 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,782 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,782 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:51:22,782 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,798 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.01574563980102539 +2020-03-06 10:51:22,798 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +putty: + + '0.73.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + + full_name: 'PuTTY release 0.73 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.72.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + + full_name: 'PuTTY release 0.72 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.71.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + + full_name: 'PuTTY release 0.71 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.70.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + + full_name: 'PuTTY release 0.70 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.69.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + + full_name: 'PuTTY release 0.69 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.68.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + + full_name: 'PuTTY release 0.68 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + + + '0.67': + full_name: 'PuTTY release 0.67' + installer: 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.66': + full_name: 'PuTTY release 0.66' + installer: 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.65': + full_name: 'PuTTY release 0.65' + installer: 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.64': + full_name: 'PuTTY release 0.64' + installer: 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,814 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.015839576721191406 +2020-03-06 10:51:22,814 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,814 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,814 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:51:22,814 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,814 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,814 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +python2_x64: + + + + + '2.7.1150': + full_name: 'Python 2.7.1 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,829 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,829 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,829 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,829 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:51:22,829 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.01655411720275879 +2020-03-06 10:51:22,846 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +python2_x86: + + + + + '2.7.1150': + full_name: 'Python 2.7.1' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,846 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,846 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,846 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,861 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:51:22,861 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,861 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,861 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: + + +python3_x64: + + '3.8.150.0': + full_name: 'Python 3.8.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.4150.0': + full_name: 'Python 3.7.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,861 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,877 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.01621532440185547 +2020-03-06 10:51:22,877 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,877 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,877 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:51:22,877 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,877 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,894 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: + + +python3_x86: + + '3.7.4150.0': + full_name: 'Python 3.7.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:22,894 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,894 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,894 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,894 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,894 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:51:22,908 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,908 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,908 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +qemu: + '2018.05.19': + full_name: 'QEMU' + installer: 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe' + uninstaller: '%PROGRAMFILES%\qemu\qemu-uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,908 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,908 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,908 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,908 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:51:22,924 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,924 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,924 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: + + + + +queueexplorerpro: + '4.1.5': + full_name: 'QueueExplorer Professional 4.1.5' + installer: 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\QueueExplorer Professional\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:22,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,924 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,924 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,924 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,924 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:51:22,939 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,939 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,939 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +quicktime: + '7.79.80.95': + full_name: 'QuickTime 7' + #installer: 'https://secure-appldnld.apple.com/quicktime/031-27600-20150820-F20FB1EF-6710-46BD-99B3-7DCF1253B310/QuickTimeInstaller.exe' + installer: 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe' + + uninstall_flags: | + '/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart & + msiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart & + msiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart & + msiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart & + exit 0' + + install_flags: '/quiet /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + # the above uninstalls: + # Apple Software Update v. 2.1.4.131 {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} + # Apple Application Support v. 4.1.2 {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} + # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} + # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} + +2020-03-06 10:51:22,939 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,939 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,939 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,939 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,939 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:51:22,939 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,955 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.015346288681030273 +2020-03-06 10:51:22,955 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: + +rabbitmq: + + '3.6.9': + full_name: 'RabbitMQ Server 3.6.9' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.7.7': + full_name: 'RabbitMQ Server 3.7.7' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:22,955 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,955 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,955 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,955 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,955 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:51:22,955 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,955 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,971 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +rakudo-star_x86: + '1.0.0': + full_name: 'Rakudo Star 2016.01' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:22,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,971 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:22,971 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,971 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,971 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:51:22,971 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,971 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:22,971 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +rakudo-star_x64: + '1.0.0': + full_name: 'Rakudo Star 2016.04' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:22,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:22,986 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.015541553497314453 +2020-03-06 10:51:22,986 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:22,986 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:22,986 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:51:22,986 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:22,986 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,002 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +rasclient: + + '16': + + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + uninstaller: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,002 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,002 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,002 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,002 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:51:23,002 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,002 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,002 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +rdcman: + '2.7.14060': + full_name: 'Remote Desktop Connection Manager' + installer: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,017 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,017 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,017 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,017 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:51:23,017 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,017 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,033 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: + + +rocketchat: + + '2.13.1': + full_name: 'Rocket.Chat+ 2.13.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.13.0': + full_name: 'Rocket.Chat+ 2.13.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.12.0': + full_name: 'Rocket.Chat+ 2.12.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.5': + full_name: 'Rocket.Chat+ 2.10.5' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.4': + full_name: 'Rocket.Chat+ 2.10.4' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.3': + full_name: 'Rocket.Chat+ 2.10.3' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.2': + full_name: 'Rocket.Chat+ 2.10.2' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.1': + full_name: 'Rocket.Chat+ 2.10.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.9.0': + full_name: 'Rocket.Chat+ 2.9.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,033 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,033 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,033 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,033 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,033 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:51:23,033 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,033 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,050 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +rubyinstaller_x64: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,050 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,050 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,050 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,050 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:51:23,050 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,065 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.015293598175048828 +2020-03-06 10:51:23,065 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +rubyinstaller_x86: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '1.9.3-p551': + full_name: 'Ruby 1.9.3-p551' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby193\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,065 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,065 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,065 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,065 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:51:23,065 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,080 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.01463007926940918 +2020-03-06 10:51:23,080 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Salt added support for Py3 with 2017.7.0. As a result, the package names have +# changed to denote the Python version included with the install. So add new +# versions of the 2017.7 branch here. Versions from older branches will be +# added below. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion: + + '3000': + full_name: 'Salt Minion 3000' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Add versions from older branches here: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + '2016.11.10': + full_name: 'Salt Minion 2016.11.10' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.9': + full_name: 'Salt Minion 2016.11.9' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.8': + full_name: 'Salt Minion 2016.11.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.7': + full_name: 'Salt Minion 2016.11.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.6': + full_name: 'Salt Minion 2016.11.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.5': + full_name: 'Salt Minion 2016.11.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.4': + full_name: 'Salt Minion 2016.11.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.3': + full_name: 'Salt Minion 2016.11.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.2': + full_name: 'Salt Minion 2016.11.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.1': + full_name: 'Salt Minion 2016.11.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.0': + full_name: 'Salt Minion 2016.11.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:51:23,080 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:51:23,098 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.017674922943115234 +2020-03-06 10:51:23,098 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,098 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,098 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:51:23,098 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,114 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.016500473022460938 +2020-03-06 10:51:23,114 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion-py3: + + '3000': + full_name: 'Salt Minion 3000 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:51:23,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:51:23,114 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,114 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,127 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,127 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:51:23,127 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,127 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,127 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +sandboxie: + '4.20': + + full_name: 'Sandboxie 4.20 (64-bit)' + installer: 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe' + uninstaller: 'C:\Windows\Installer\SandboxieInstall64.exe' + + install_flags: '/S' + uninstall_flags: '/remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,127 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,127 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,127 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,143 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:51:23,143 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,143 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,143 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +scaleout: + latest: + + full_name: 'ScaleOut StateServer x64 Edition' + installer: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + uninstaller: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,143 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,143 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,143 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,143 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:51:23,143 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,158 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.015413761138916016 +2020-03-06 10:51:23,158 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +# just 32-bit x86 installer available + + + +secunia.psi: + '3.0.0.10004': + full_name: 'Secunia PSI' + installer: 'http://secunia.com/PSISetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Secunia\PSI\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,158 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,158 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,158 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,158 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,158 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:51:23,158 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,175 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.016234874725341797 +2020-03-06 10:51:23,175 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: + + + + + + +sensu: + + '1.4.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.28.4': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.5': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.25.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,175 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,175 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,190 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,190 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,190 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:51:23,190 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,190 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,190 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +sharpdevelop: + '5.1.5134': + full_name: 'SharpDevelop 5.1 RC' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '4.4.9749': + full_name: 'SharpDevelop 4.4' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6466': + full_name: 'SharpDevelop 3.2.1' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.2.2648': + full_name: 'SharpDevelop 2.2' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,190 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,190 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,206 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,206 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:51:23,206 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,206 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,206 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +# just 32-bit x86 installer available + + + +skitch: + '2.3.2.176': + full_name: 'Skitch' + installer: 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe' + install_flags: '--mode unattended' + uninstaller: '%ProgramFiles(x86)%\Evernote\Skitch\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,206 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,206 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,206 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,206 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:51:23,221 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,221 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,221 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +skype-msi: + '7.41.101': + full_name: 'Skypeâ„¢ 7.41' + installer: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.151': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.103': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# you can always get latest msi from: +# http://www.skype.com/go/getskype-msi (but version number keeps increasing) +# +# for explanation of silent switches read: +# http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 +# you can also check microsite http://skype.techygeekshome.info/ + +2020-03-06 10:51:23,221 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,221 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,221 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,221 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,221 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:51:23,221 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,238 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.016688823699951172 +2020-03-06 10:51:23,238 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +# just 32-bit x86 installer available + + + + +skype: + '8.31': + full_name: 'Skype version 8.31' + installer: 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe' + install_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\Microsoft\Skype for Desktop\unins000.exe' + uninstall_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,238 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,238 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,238 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,238 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,238 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:51:23,238 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,253 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.014474153518676758 +2020-03-06 10:51:23,253 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +#MSI machine-wide deployment package +#The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. +#It is multi-client-capable, meaning that it can be used by multiple users on one machine, +#keeping their profiles separately in %ROAMINGAPPDATA%. Using this method, Slack will not receive automatic updates. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-machine-msi: + + '3.3.7.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.6.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,253 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,253 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,253 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,253 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,253 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:51:23,253 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,268 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.01585531234741211 +2020-03-06 10:51:23,268 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +#MSI for per-user deployment package +#The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. +#The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-user-msi: + latest: + full_name: 'Slack Machine-Wide Installer' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,268 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,268 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,268 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,268 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:51:23,268 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,284 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.016103029251098633 +2020-03-06 10:51:23,284 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +slack: + 3.4.0: + full_name: Slack + installer: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + install_flags: '/qn /norestart' + uninstaller: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:51:23,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:51:23,284 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,284 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,284 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,284 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:51:23,284 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,284 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,299 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +# just 32-bit x86 installer available + + + +smartmontools: + '6.4 2015-06-04 r4109 (sf-6.4-1)': + full_name: 'smartmontools' + installer: 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\smartmontools\uninst-smartmontools.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,299 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,299 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,299 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,299 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,299 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:51:23,299 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,299 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,299 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +# just 32-bit x86 installer available + + + +snmptools: + 'Not Found': + full_name: 'SnmpTools 2' + installer: 'https://erwan.labalec.fr/snmptools/snmptools32.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\SnmpTools\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,299 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,315 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.015545368194580078 +2020-03-06 10:51:23,315 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,315 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,315 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:51:23,315 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,315 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,315 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: + +soapui: + + '5.4.0': + full_name: 'SoapUI 5.4.0 5.4.0' + + installer: 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe' + + install_flags: '-q' + uninstaller: '%ProgramFiles%\SmartBear\SoapUI-5.4.0\uninstall.exe' + uninstall_flags: '-q' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,331 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.015748262405395508 +2020-03-06 10:51:23,331 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,331 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,331 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:51:23,331 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,331 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,331 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +# just 32-bit x86 installer available + + + +# Source: http://software.informer.com/ +software-informer: + 'Not Found': + full_name: 'Software Informer' + installer: 'https://files.informer.com/siinst.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + uninstaller: '%ProgramFiles(x86)%\Software Informer\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,346 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.015586614608764648 +2020-03-06 10:51:23,346 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,346 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,346 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:51:23,346 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,346 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,346 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +sourcetree: + + '2.3.1.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.4.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.11.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.2.5': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0.20.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.10.23.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + + + '1.9.13.7': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.9.20': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.6.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.8.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.7.0.32509': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6.25': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.5.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.4.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.3.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.2.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.1.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.0.8': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '0.9.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,362 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,362 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,362 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,362 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:51:23,362 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,362 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,379 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +# just 32-bit x86 installer available + + + +spybot-anti-beacon: + '1.6': + full_name: 'Spybot Anti-Beacon' + installer: 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot Anti-Beacon\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,379 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,379 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,379 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,379 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,379 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:51:23,379 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,379 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,394 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.safer-networking.org/ +spybot: + '2.4': + full_name: 'Spybot - Search & Destroy' + installer: 'http://spybotupdates.com/files/spybot-2.4.exe' + install_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot - Search & Destroy 2\unins000.exe' + uninstall_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + msiexec: False + locale: en_US + reboot: False +# alternative download URLs +# http://www.spybotupdates.biz/files/spybot-2.4.exe +# http://spybot-mirror.com/files/spybot-2.4.exe + +2020-03-06 10:51:23,394 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,394 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,394 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,394 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,394 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:51:23,394 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,394 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,409 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +sscserv-free: + + '3.6.1': + full_name: 'SSC Serv 3.6.1 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '3.5.0': + full_name: 'SSC Serv 3.5.0 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,409 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,409 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,409 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,409 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:51:23,409 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,409 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,425 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +steam: + latest: + full_name: 'Steam' + installer: 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe' + install_flags: '/S' + uninstaller: + "C:\\Program Files (x86)\\Steam\\uninstaller.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:51:23,425 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,425 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,425 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,425 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,425 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:51:23,425 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,425 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,440 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +stellarium: + '0.16.1': + full_name: 'Stellarium 0.16.1' + + installer: 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe' + + install_flags: '/silent' + uninstaller: '%ProgramFiles%\Stellarium\unins000.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,440 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,440 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,440 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,440 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:51:23,440 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,440 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,455 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +strawberryperl_x64: + + '5.26.1001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,455 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,455 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,455 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,455 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:51:23,455 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,455 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,455 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +strawberryperl_x86: + + '5.26.1001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,471 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,471 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,471 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,471 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:51:23,471 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,471 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,471 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +# just 32-bit x86 installer available + + + +stunnel: + '5.30': + full_name: 'stunnel installed for AllUsers' + installer: 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\stunnel\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,471 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,487 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,487 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,487 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:51:23,487 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,487 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,487 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +subinacl: + '5.2.3790.1164': + full_name: 'Windows Resource Kit Tools - SubInAcl.exe' + installer: 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,487 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,487 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,503 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,503 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:51:23,503 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,503 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,503 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: + + + +sumatrapdf: + '3.1.2': + full_name: 'SumatraPDF' + installer: 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe' + install_flags: '/s /opt' + uninstaller: '%ProgramFiles%\SumatraPDF\uninstall.exe' + uninstall_flags: '/s' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,503 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,503 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,503 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,518 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:51:23,518 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,518 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,518 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +svn: + '1.8.13': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.8.11': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,518 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,518 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,518 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,518 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:51:23,518 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,534 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.016088008880615234 +2020-03-06 10:51:23,534 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer: + latest: + full_name: 'TeamViewer 14' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,534 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,534 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,534 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,534 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:51:23,534 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,551 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.016588449478149414 +2020-03-06 10:51:23,551 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer_host: + latest: + full_name: 'TeamViewer 14 Host' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,551 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,551 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,551 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,551 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,551 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:51:23,551 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,551 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,569 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +# just 32-bit x86 installer available + + + +teracopy: + 'Not Found': + full_name: 'TeraCopy 2.3' + installer: 'http://storage.googleapis.com/codesector/teracopy.exe' + install_flags: | + '/SP- /verysilent /suppressmsgboxes /norestart & + reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeraCopy_is1 /v DisplayVersion /d 2.3 & + exit 0' + uninstaller: '%ProgramFiles(x86)%\TeraCopy\unins000.exe' + uninstall_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,569 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,569 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,569 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,569 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,569 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:51:23,569 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,569 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,569 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +# just 32-bit x86 installer available + + + +texmaker: + 'Not Found': + full_name: 'Texmaker' + installer: 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Texmaker\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,569 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,569 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,587 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,587 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,587 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:51:23,587 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,587 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,587 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: + +texniccenter: + '2.02 Stable': + full_name: 'TeXnicCenter Version 2.02 Stable' + + installer: 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES%\TeXnicCenter\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,587 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,587 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,587 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,587 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,607 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:51:23,607 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,607 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,607 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +# just 32-bit x86 installer available + + + +texstudio: + '2.10.8': + full_name: 'TeXstudio 2.10.8' + installer: 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXstudio\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,607 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,607 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,607 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,607 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:51:23,607 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,607 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,627 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +# just 32-bit x86 installer available + + + +texworks: + '0.6.1': + full_name: 'TeXworks 0.6.1' + installer: 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXworks\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,627 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,627 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,627 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,627 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:51:23,627 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,627 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,647 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +# just 32-bit x86 installer available + + + +thunderbird: + + '60.6.1': + full_name: 'Mozilla Thunderbird 60.6.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Thunderbird 60.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.3': + full_name: 'Mozilla Thunderbird 60.5.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Thunderbird 60.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Thunderbird 60.5.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Thunderbird 60.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Thunderbird 60.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.3': + full_name: 'Mozilla Thunderbird 60.3.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.2': + full_name: 'Mozilla Thunderbird 60.3.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.1': + full_name: 'Mozilla Thunderbird 60.3.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Thunderbird 60.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Thunderbird 60.2.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Thunderbird 60.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.1': + full_name: 'Mozilla Thunderbird 52.9.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Thunderbird 52.9.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Thunderbird 52.8.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Thunderbird 52.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Thunderbird 52.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Thunderbird 52.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Thunderbird 45.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Thunderbird 45.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Thunderbird 38.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Thunderbird 38.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Thunderbird 38.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Thunderbird 38.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.0': + full_name: 'Mozilla Thunderbird 38.2.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.1.0': + full_name: 'Mozilla Thunderbird 38.1.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,647 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,647 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,647 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,647 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:51:23,647 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,669 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.022125959396362305 +2020-03-06 10:51:23,669 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +tightvnc: + + + '2.8.27.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.23.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.11.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.8.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.5.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.2.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.7.10.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,669 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,669 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,669 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,669 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,669 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:51:23,669 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,669 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,669 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +todotxt.net: + 'Not Found': + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + full_name: 'todotxt.net v3.2.0.0' + installer: 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Hughesoft\todotxt.net\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,688 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,688 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,688 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,688 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:51:23,688 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,688 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,688 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +todour: + '2.03': + full_name: 'Todour version 2.03' + installer: 'https://nerdur.com/Todour-2.03.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Todour\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,688 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,688 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,708 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,708 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:51:23,708 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,708 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,708 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +# just 32-bit x86 installer available + + + +# Source: http://wiki.bazaar.canonical.com/ +tortoise-bzr: + '2.5.1-1': + full_name: 'Bazaar 2.5.1' + installer: 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Bazaar\uninst000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,708 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,708 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,708 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,724 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:51:23,724 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,724 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,724 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +# Source: https://tortoisegit.org/ +tortoise-git: + + '2.8.0.0': + + full_name: 'TortoiseGit 2.8.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.7.0.0': + + full_name: 'TortoiseGit 2.7.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.6.0.0': + + full_name: 'TortoiseGit 2.6.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.5.0.0': + + full_name: 'TortoiseGit 2.5.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.4.0.0': + + full_name: 'TortoiseGit 2.4.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.3.0.0': + + full_name: 'TortoiseGit 2.3.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0.0': + + full_name: 'TortoiseGit 2.2.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0.0': + + full_name: 'TortoiseGit 2.1.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0.0': + + full_name: 'TortoiseGit 2.0.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.16.0': + + full_name: 'TortoiseGit 1.8.16.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.15.0': + + full_name: 'TortoiseGit 1.8.15.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.14.0': + + full_name: 'TortoiseGit 1.8.14.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.13.0': + + full_name: 'TortoiseGit 1.8.13.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,739 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0154266357421875 +2020-03-06 10:51:23,739 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,739 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,739 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:51:23,739 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,739 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,739 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +# Source: http://tortoisehg.bitbucket.org/ +tortoise-hg: + '3.6.2': + + full_name: 'TortoiseHg 3.6.2 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.3.0': + + full_name: 'TortoiseHg 3.3.0 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# Need to download from source site above, so it will append proper aws key credentials +# place downloaded msi in master's win_repo-ng + +2020-03-06 10:51:23,739 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,755 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.015522241592407227 +2020-03-06 10:51:23,755 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,755 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,755 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:51:23,755 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,755 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,755 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +# Source: http://tortoisesvn.net/ +tortoise-svn: + '1.9.27285': + + full_name: 'TortoiseSVN 1.9.4.27285 (64 bit)' + installer: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + uninstaller: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,755 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,772 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,772 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,772 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:51:23,772 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,772 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,772 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +# just 32-bit x86 installer available + + + +truecrypt: + '7.1a': + full_name: 'TrueCrypt 7.1a' + installer: 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Truecrypt\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,772 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,772 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,787 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,787 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:51:23,787 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,787 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,787 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +ultradefrag: + '7.0.2': + full_name: 'Ultra Defragmenter' + + installer: 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe' + + install_flags: '/S /FULL=1' + uninstaller: '%ProgramFiles%\UltraDefrag\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,787 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,787 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,787 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,802 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,802 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:51:23,802 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,802 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,802 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +urlrewrite: + '7.2.1952': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.2.1980': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,802 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,818 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,818 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,818 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:51:23,818 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,818 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,818 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +usbdlm: + '5.2.7.0': + + full_name: 'USB Drive Letter Manager (x64)' + installer: http://www.uwe-sieber.de/files/usbdlm_x64.msi + uninstaller: http://www.uwe-sieber.de/files/usbdlm_x64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,818 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,818 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,834 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,834 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:51:23,834 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,834 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,834 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +vagrant: + + + '2.2.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.8': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:23,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,850 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,850 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,866 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,866 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:51:23,866 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,866 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,866 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +vcforpython27: + '9.0.1.30729': + full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' + installer: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:23,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,866 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,866 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,866 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,866 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:51:23,882 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,882 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,882 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: + + + + +vcxsrv: + + '1.20.0.0': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.19.6.4': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,882 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,882 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,897 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,897 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:51:23,897 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,897 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,897 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: + + +verysleepy: + '0.90': + full_name: 'Very Sleepy CS version 0.90' + installer: 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe' + uninstaller: '%ProgramFiles%\Very Sleepy CS\unins000.exe' + install_flags: '/SP- /NORESTART /SILENT' + uninstall_flags: '/SILENT' + cache_dir: True + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,897 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,897 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,897 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,897 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:51:23,913 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,913 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,913 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +veyon: + + '4.0.7': + full_name: 'Veyon 4.0.7' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.0.6': + full_name: 'Veyon 4.0.6' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,913 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,913 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,913 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,913 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:51:23,929 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,929 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,946 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +# Version 5.1 and older are no longer supported by Oracle +# https://www.virtualbox.org/wiki/Download_Old_Builds + + + +virtualbox: + + '6.0.4': + full_name: 'Oracle VM VirtualBox 6.0.4' + installer: 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.2.26': + full_name: 'Oracle VM VirtualBox 5.2.26' + installer: 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.1.38': + full_name: 'Oracle VM VirtualBox 5.1.38' + installer: 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.0.40': + full_name: 'Oracle VM VirtualBox 5.0.40' + installer: 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart' + + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,946 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,946 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,946 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,946 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:51:23,946 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,946 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,963 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: + + + + +viscosity: + + '1.7.14.1595': + full_name: Viscosity 1.7.14 (1595) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.7.12.1581': + full_name: Viscosity 1.7.12 (1581) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.6.8.1477': + full_name: Viscosity 1.6.8 (1477) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + +2020-03-06 10:51:23,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:51:23,963 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,963 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,963 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,963 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:51:23,963 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,963 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,978 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +#Vivaldi is a Chromium-based browser +#https://vivaldi.com + + + +vivaldi: + latest: + full_name: 'Vivaldi' + + installer: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + uninstaller: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + + install_flags: '--vivaldi-silent --do-not-launch-chrome --system-level' + uninstall_flags: '--uninstall --force-uninstall --system-level --vivaldi' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:23,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,978 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,978 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,978 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,978 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:51:23,978 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:23,978 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:23,994 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +vlc: + + '3.0.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.5': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.4': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:23,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:23,994 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:23,994 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:23,994 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:23,994 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:51:24,008 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,008 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,008 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +vs-community: + 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) + full_name: + Visual Studio Community 2017 + installer: + https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe + install_flags: + --quiet + --norestart + --wait + uninstaller: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe" + uninstall_flags: + /uninstall + --force + --quiet + --norestart + reboot: False + +2020-03-06 10:51:24,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,008 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,008 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,008 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,008 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:51:24,024 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,024 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,024 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +# due to winrepo installer limitations you need to manually download x86 + x64 System installer from +# https://code.visualstudio.com/Download +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... + + + +vscode: + + '1.36.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.36.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.37.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.37.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.38.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.38.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.2': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.2.exe' + installer: 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:24,024 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,024 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,024 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,040 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,040 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:51:24,040 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,040 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,040 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +vsee: + '15.0.0.707': + full_name: 'VSee' + installer: 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe' + install_flags: '-no_autorun' + uninstaller: '%AppData%\VSeeInstall\vseeUninstall.exe' + uninstall_flags: '-no_confirm' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,040 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,040 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,040 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,040 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,040 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:51:24,040 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,056 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.015624284744262695 +2020-03-06 10:51:24,056 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +vs_remotetools_2017: + latest: + full_name: 'Remote Tools for Visual Studio 2017' + + installer: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + uninstaller: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + arch: x64 + + install_flags: '/install /passive /quiet' + uninstall_flags: '/uninstall /passive /quiet' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,056 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,056 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,056 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,056 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,056 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:51:24,056 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,056 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,056 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +wamp-server-3: + '3.1.3': + + full_name: 'Wampserver64 3.1.3' + installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe' + uninstaller: 'c:\wamp64\uninstall_services.bat' + uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,071 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,071 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,071 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,071 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:51:24,071 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,071 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,071 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: + + +wamp-stack: + + '7.1.27-1': + full_name: 'Bitnami WAMP Stack 7.1.27-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-7.1.27-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + '5.6.40-1': + full_name: 'Bitnami WAMP Stack 5.6.40-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-5.6.40-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:24,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,086 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,086 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,086 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,086 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:51:24,086 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,086 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,086 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +webdeploy: + '3.1237.1764': + full_name: 'Microsoft Web Deploy 3.5' + + installer: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:24,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,102 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.016124725341796875 +2020-03-06 10:51:24,102 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,102 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,102 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:51:24,102 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,102 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,102 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +webplatforminstaller: + '5.0.50430.0': + full_name: 'Microsoft Web Platform Installer 5.0' + + installer: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:24,102 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,102 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,119 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,119 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,119 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:51:24,119 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,119 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,119 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +# Source: http://winappmanager.herokuapp.com/ + + + +win-app-manager: + '15.01.11': + full_name: 'WinAppManager' + installer: 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinApp Manager\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,119 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,119 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,134 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,134 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:51:24,134 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,134 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,134 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: + + + +windirstat: + 'Not Found': + full_name: 'WinDirStat 1.1.2' + installer: 'http://download01.windirstat.info/windirstat1_1_2_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\WinDirStat\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,134 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,134 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,134 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,149 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:51:24,149 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,149 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,149 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +winhttpcertcfg: + '5.2.3790.1060': + full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' + installer: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:51:24,149 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,149 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,149 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,149 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,149 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:51:24,149 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,166 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.016893625259399414 +2020-03-06 10:51:24,166 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: + + + + +winmerge: + + '2.16.0': + full_name: 'WinMerge 2.16.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.14.0': + full_name: 'WinMerge 2.14.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:24,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,166 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,166 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,166 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,166 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:51:24,166 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,180 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.014569520950317383 +2020-03-06 10:51:24,180 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +winmtr: + + '0.92': + + full_name: 'WinMTR_x64 0.92' + installer: 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe' + uninstaller: 'c:\utl\uninstall-winmtr_x64.exe' + + install_flags: '/D="c:\utl" /SILENT /NORESTART' + uninstall_flags: 'c:\utl\SSEun.dat /SILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +# download exe from winmtr.net +# create two installers using http://www.ssesetup.com/ + +2020-03-06 10:51:24,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,180 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,180 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,180 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,180 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:51:24,180 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,180 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,196 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +winpcap: + '4.1.0.2980': + full_name: 'WinPcap 4.1.3' + installer: 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\WinPcap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,196 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,196 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,196 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,196 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,196 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:51:24,196 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,196 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,213 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +#if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) + + +winrar: + + + '5.70.0': + + full_name: 'WinRAR 5.70 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-570.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.61.0': + + full_name: 'WinRAR 5.61 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-561.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:51:24,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,213 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,213 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,213 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,213 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:51:24,213 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,213 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,230 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: + + + +winscp: + + '5.17': + full_name: 'WinSCP 5.17' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.9': + full_name: 'WinSCP 5.15.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.7': + full_name: 'WinSCP 5.15.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.5': + full_name: 'WinSCP 5.15.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.4': + full_name: 'WinSCP 5.15.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.3': + full_name: 'WinSCP 5.15.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.2': + full_name: 'WinSCP 5.15.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.1': + full_name: 'WinSCP 5.15.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15': + full_name: 'WinSCP 5.15' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.9': + full_name: 'WinSCP 5.13.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.8': + full_name: 'WinSCP 5.13.8' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.7': + full_name: 'WinSCP 5.13.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.6': + full_name: 'WinSCP 5.13.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.5': + full_name: 'WinSCP 5.13.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.4': + full_name: 'WinSCP 5.13.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.3': + full_name: 'WinSCP 5.13.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.2': + full_name: 'WinSCP 5.13.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.1': + full_name: 'WinSCP 5.13.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13': + full_name: 'WinSCP 5.13' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.3': + full_name: 'WinSCP 5.11.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.2': + full_name: 'WinSCP 5.11.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.1': + full_name: 'WinSCP 5.11.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.6': + full_name: 'WinSCP 5.9.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.2': + full_name: 'WinSCP 5.9.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.1': + full_name: 'WinSCP 5.9.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9': + full_name: 'WinSCP 5.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:24,230 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,230 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,245 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,245 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,245 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:51:24,245 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,245 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,265 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +wireshark: + + '3.0.4': + + full_name: 'Wireshark 3.0.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + + full_name: 'Wireshark 3.0.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + + full_name: 'Wireshark 3.0.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + + full_name: 'Wireshark 3.0.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + + full_name: 'Wireshark 3.0.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.6': + + full_name: 'Wireshark 2.6.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.5': + + full_name: 'Wireshark 2.6.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.4': + + full_name: 'Wireshark 2.6.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.3': + + full_name: 'Wireshark 2.6.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.2': + + full_name: 'Wireshark 2.6.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.1': + + full_name: 'Wireshark 2.6.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.0': + + full_name: 'Wireshark 2.6.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.12': + + full_name: 'Wireshark 2.4.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.11': + + full_name: 'Wireshark 2.4.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.10': + + full_name: 'Wireshark 2.4.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.9': + + full_name: 'Wireshark 2.4.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.8': + + full_name: 'Wireshark 2.4.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.7': + + full_name: 'Wireshark 2.4.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.6': + + full_name: 'Wireshark 2.4.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.5': + + full_name: 'Wireshark 2.4.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.4': + + full_name: 'Wireshark 2.4.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.3': + + full_name: 'Wireshark 2.4.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.2': + + full_name: 'Wireshark 2.4.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.1': + + full_name: 'Wireshark 2.4.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.0': + + full_name: 'Wireshark 2.4.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.17': + + full_name: 'Wireshark 2.2.17 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.16': + + full_name: 'Wireshark 2.2.16 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.15': + + full_name: 'Wireshark 2.2.15 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.14': + + full_name: 'Wireshark 2.2.14 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.13': + + full_name: 'Wireshark 2.2.13 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.12': + + full_name: 'Wireshark 2.2.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.11': + + full_name: 'Wireshark 2.2.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.10': + + full_name: 'Wireshark 2.2.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.9': + + full_name: 'Wireshark 2.2.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + + full_name: 'Wireshark 2.2.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.7': + + full_name: 'Wireshark 2.2.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + + full_name: 'Wireshark 2.2.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.5': + + full_name: 'Wireshark 2.2.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + + full_name: 'Wireshark 2.2.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.3': + + full_name: 'Wireshark 2.2.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2': + + full_name: 'Wireshark 2.2.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + + full_name: 'Wireshark 2.2.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0': + + full_name: 'Wireshark 2.2.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:24,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,265 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,279 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,279 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,279 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:51:24,279 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,279 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,279 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +# source: http://www.kls-soft.com/wscc/ +wscc: + '2.5.0.4': + full_name: 'WSCC 2.5.0.4' + installer: 'http://www.kls-soft.com/downloads/wscc_setup.exe' + install_flags: '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + + uninstaller: '%PROGRAMFILES(x86)%\WSCC\unins000.exe' + + uninstall_flags: '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,279 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,279 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,279 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,296 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,296 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:51:24,296 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,296 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,296 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +# Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 +# https://github.com/zeffy/wufuc + + + + + + +wufuc: + + '1.0.1.201': + full_name: 'wufuc' + installer: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:51:24,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,296 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,310 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,310 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,310 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:51:24,310 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,310 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,310 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +xampp: + '7.2.6.0': + full_name: 'XAMPP 7.2.6' + installer: 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe' + install_flags: '--mode unattended' + uninstaller: 'c:\xampp\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,310 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,310 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,310 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,310 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,326 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:51:24,326 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,326 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,326 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +# just 32-bit x86 installer available + + + +# http://www.straightrunning.com/XmingNotes/setupcmdline.htm +xming: + '6.9.0.31': + full_name: 'Xming 6.9.0.31' + installer: 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe' + install_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + uninstaller: '%ProgramFiles(x86)%\Xming\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:51:24,326 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,326 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,326 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,326 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,342 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:51:24,342 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,342 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,342 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: + + +yubikey-manager: + + '1.1.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.2': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + +2020-03-06 10:51:24,342 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,342 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,342 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,359 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,359 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:51:24,359 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,359 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,359 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +yubikey-personalization-tool: + '3.1.24': + full_name: 'YubiKey Personalization Tool' + installer: 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe' + install_flags: '/S' + uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:51:24,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,359 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,374 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,374 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,374 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:51:24,374 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,374 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,390 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '4.0.9.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.10.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.11.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.12.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.13.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.14.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.15.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.16.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.2.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.5.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.6.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:51:24,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,390 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,390 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,390 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,390 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:51:24,405 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,405 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,405 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: + +zoom: + latest: + full_name: 'Zoom' + installer: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:51:24,405 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:51:24,405 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,405 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,405 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,405 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:51:24,405 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,405 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,421 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +# Software Definition File for Elasticsearch Auditbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +auditbeat: + + '7.3.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:51:24,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,421 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,421 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,421 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,421 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:51:24,421 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,421 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,436 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +chocolatey: + latest: + full_name: 'Chocolatey' + installer: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd' + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd' + cache_dir: True + +# this software also has it's own salt execution module, which you might prefer to use, see +# http://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html +# for usage examples see +# https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 + + +2020-03-06 10:51:24,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,436 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,436 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,436 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,436 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:51:24,436 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,436 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,453 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: + + + + +erlang: + + '19.3': + full_name: 'Erlang OTP 19 (8.3)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"' + uninstaller: '%ProgramFiles%\erl8.3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '21.0.1': + full_name: 'Erlang OTP 21 (10.0.1)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"' + uninstaller: '%ProgramFiles%\erl10.0.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:51:24,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:51:24,453 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,453 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,453 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,453 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:51:24,453 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,453 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,468 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +# Software Definition File for Elasticsearch Filebeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +filebeat: + + '7.3.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:51:24,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,468 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,468 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,468 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,468 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:51:24,468 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,468 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,485 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +# Software Definition File for Elasticsearch Functionbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +functionbeat: + + '7.3.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:51:24,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,485 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,485 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,485 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,485 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:51:24,485 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,501 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.016120195388793945 +2020-03-06 10:51:24,501 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +# just 32-bit x86 installer available + + + + +gpg4win: + + 3.1.7: + full_name: 'Gpg4win (3.1.7)' + installer: 'http://files.gpg4win.org/gpg4win-3.1.7.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.3: + full_name: 'Gpg4win (3.0.3)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.0: + full_name: 'Gpg4win (3.0.0)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.4: + full_name: 'Gpg4win (2.3.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.3: + full_name: 'Gpg4win (2.3.3)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.2: + full_name: 'Gpg4win (2.3.2)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.2.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.1: + full_name: 'Gpg4win (2.3.1)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.1.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.0: + full_name: 'Gpg4win (2.3.0)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.2.4: + full_name: 'Gpg4win (2.2.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.2.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + +2020-03-06 10:51:24,501 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:51:24,501 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,501 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,501 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,501 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:51:24,515 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,515 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,515 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +# Software Definition File for Elasticsearch Heartbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +heartbeat: + + '7.3.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:51:24,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,515 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,515 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,515 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,515 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:51:24,530 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,530 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,530 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +# Software Definition File for Elasticsearch Metricbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +metricbeat: + + '7.3.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:51:24,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,530 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,530 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,530 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,547 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:51:24,547 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,547 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,547 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +# Software Definition File for Elasticsearch Packetbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +packetbeat: + + '7.3.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:51:24,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,547 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,547 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,562 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,562 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:51:24,562 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,562 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,562 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: + + + + + +pycharm-pro: + + 191.6605.12: + installer: 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe' + full_name: 'JetBrains Pycharm 2019.1.1' + install_flags: '/S /CONFIG=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\silent.config' + cache_file: salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config + uninstaller: '%ProgramFiles(x86)%\JetBrains\PyCharm 2019.1.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + reboot: False + + +2020-03-06 10:51:24,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:51:24,562 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,562 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,578 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,578 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:51:24,578 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,578 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,578 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +# just 32-bit x86 installer available + + + +stayawake: + + '1.0': + full_name: 'StayAwake' + installer: 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd' + install_flags: '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"' + uninstaller: '%PROGRAMFILES(x86)%\StayAwake\uninstall.exe' + uninstall_flags: '/S' + + +2020-03-06 10:51:24,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) +2020-03-06 10:51:24,578 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,578 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,593 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,593 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:51:24,593 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,593 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,593 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +# Software Definition File for Elasticsearch Winlogbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +winlogbeat: + + '7.3.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:51:24,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,593 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,593 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,609 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,609 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:51:24,609 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,609 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,609 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +############################################################# +# Windows +############################################################# +# + + +2020-03-06 10:51:24,629 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +{} +2020-03-06 10:51:24,629 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,629 [salt.loaded.int.module.win_pkg:1213][DEBUG ][4652] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:51:24,629 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:24,629 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:24,629 [salt.template :59 ][DEBUG ][4652] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:51:24,629 [salt.utils.jinja :85 ][DEBUG ][4652] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:51:24,629 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:51:24,644 [salt.template :120 ][DEBUG ][4652] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +# only 32-bit (x86) installer available + + + +zipinstaller: + '1.21': + full_name: 'ZipInstaller' + installer: 'salt://win/repo-ng/zipinstaller/zipinst.exe' + + install_flags: '/i zipinst_x64.zip' + + uninstaller: 'zipinst.exe' + uninstall_flags: '/uninst "c:\utl\uninst1~.nsu"' + msiexec: False + locale: en_US + reboot: False + cache_dir: True +# Description: +# This is a 32-bit zip archive program installer that installes directly from zip archives and creates shortcuts and un-install entries +# automatically, exactly as defined in a simple '~zipinst~.zic' if it finds it inside the zip archive. +# +# All it takes is calling up 'zipinst.exe /i .zip' that contains a file called '~zipinst~.zic', which itself is in *.ini file +# format and contains, directives about where it should install etc. +# +# Source: +# http://www.nirsoft.net/utils/zipinst.html +# http://www.nirsoft.net/utils/zipinst.exe +# http://www.nirsoft.net/utils/zipinst.zip (need to add '~zipinst~.zic' to it) +# you have to insert the '~zipinst~.zic' file into the 'zipinst.zip' file +# and place the resulting zipinst.zip into the 'salt://win/repo-ng/zipinstaller/' on your master +# as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache +# + +2020-03-06 10:51:24,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][4652] Results of YAML rendering: +OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) +2020-03-06 10:51:24,644 [salt.template :26 ][PROFILE ][4652] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:51:24,644 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:51:24,668 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:51:24,695 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: Volume in drive C is Windows 10 + Volume Serial Number is 9CEF-DD68 + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + +03/06/2020 01:51 PM . +03/06/2020 01:51 PM .. +03/06/2020 01:51 PM 927 7zip.sls +03/06/2020 01:51 PM 723 activeperl_x64.sls +03/06/2020 01:51 PM 973 activeperl_x86.sls +03/06/2020 01:51 PM 798 adobeair.sls +03/06/2020 01:51 PM 956 adobereader-dc-classic.sls +03/06/2020 01:51 PM 851 adobereader-xi.sls +03/06/2020 01:51 PM 830 adobereader.sls +03/06/2020 01:51 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:51 PM 775 adv-ip-scanner.sls +03/06/2020 01:51 PM 787 adv-port-scanner.sls +03/06/2020 01:51 PM 769 advancedlogging.sls +03/06/2020 01:51 PM 373 anydesk-msi.sls +03/06/2020 01:51 PM 597 anydesk.sls +03/06/2020 01:51 PM 803 applicationrequestrouting.sls +03/06/2020 01:51 PM 370 aspnet-mvc1.sls +03/06/2020 01:51 PM 439 atom.sls +03/06/2020 01:51 PM 655 audacity.sls +03/06/2020 01:51 PM auditbeat +03/06/2020 01:51 PM 1,768 autohotkey.sls +03/06/2020 01:51 PM 611 autoit.sls +03/06/2020 01:51 PM 670 autopsy.sls +03/06/2020 01:51 PM 659 awscli.sls +03/06/2020 01:51 PM 799 azuredatastudio.sls +03/06/2020 01:51 PM 422 bandizip.sls +03/06/2020 01:51 PM 563 belarc-advisor.sls +03/06/2020 01:51 PM 367 bginfo4x.sls +03/06/2020 01:51 PM 547 bitnami-nginxstack.sls +03/06/2020 01:51 PM 568 bitvise.sls +03/06/2020 01:51 PM 777 blender.sls +03/06/2020 01:51 PM 395 bootracer.sls +03/06/2020 01:51 PM 664 bulkrenameutility.sls +03/06/2020 01:51 PM 661 bulk_extractor.sls +03/06/2020 01:51 PM 476 ccleaner-slim.sls +03/06/2020 01:51 PM 445 ccleaner.sls +03/06/2020 01:51 PM 606 cdburnerxp.sls +03/06/2020 01:51 PM 594 cdroller.sls +03/06/2020 01:51 PM 658 check-mk-agent-msi.sls +03/06/2020 01:51 PM 451 check-mk-agent.sls +03/06/2020 01:51 PM chocolatey +03/06/2020 01:51 PM 394 chrome-rdp.sls +03/06/2020 01:51 PM 375 chrome.sls +03/06/2020 01:51 PM 1,296 clamav.sls +03/06/2020 01:51 PM 1,200 clamwin.sls +03/06/2020 01:51 PM 500 classicshell.sls +03/06/2020 01:51 PM 1,521 clink.sls +03/06/2020 01:51 PM 617 conemu.sls +03/06/2020 01:51 PM 687 cpu-z.sls +03/06/2020 01:51 PM 2,833 curl.sls +03/06/2020 01:51 PM 374 cyberduck-cli.sls +03/06/2020 01:51 PM 616 cyberduck-msi.sls +03/06/2020 01:51 PM 639 cyberduck.sls +03/06/2020 01:51 PM 751 defraggler.sls +03/06/2020 01:51 PM 2,637 dotnet.sls +03/06/2020 01:51 PM 643 dropbox.sls +03/06/2020 01:51 PM 683 duplicati.sls +03/06/2020 01:51 PM 712 dvdstyler.sls +03/06/2020 01:51 PM 737 echo-desktop.sls +03/06/2020 01:51 PM 1,327 eea.sls +03/06/2020 01:51 PM 423 emet.sls +03/06/2020 01:51 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:51 PM 721 eraser.sls +03/06/2020 01:51 PM erlang +03/06/2020 01:51 PM 982 evernote.sls +03/06/2020 01:51 PM 531 fiddler.sls +03/06/2020 01:51 PM filebeat +03/06/2020 01:51 PM 660 filehippo-app-manager.sls +03/06/2020 01:51 PM 1,271 filezilla.sls +03/06/2020 01:51 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:51 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:51 PM 1,365 firefox_x64.sls +03/06/2020 01:51 PM 1,870 firefox_x86.sls +03/06/2020 01:51 PM functionbeat +03/06/2020 01:51 PM 552 gedit.sls +03/06/2020 01:51 PM 822 gimp.sls +03/06/2020 01:51 PM 953 git-extensions.sls +03/06/2020 01:51 PM 3,855 git.sls +03/06/2020 01:51 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:51 PM 563 gnucash.sls +03/06/2020 01:51 PM 2,152 golang.sls +03/06/2020 01:51 PM 320 goodsync.sls +03/06/2020 01:51 PM 601 gow.sls +03/06/2020 01:51 PM gpg4win +03/06/2020 01:51 PM 847 gpg4win-light.sls +03/06/2020 01:51 PM 621 gpg4win-vanilla.sls +03/06/2020 01:51 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:51 PM 2,661 grepwin.sls +03/06/2020 01:51 PM 505 gvim.sls +03/06/2020 01:51 PM 622 handbrake.sls +03/06/2020 01:51 PM heartbeat +03/06/2020 01:51 PM 503 hipchat.sls +03/06/2020 01:51 PM 771 hostsfileeditor.sls +03/06/2020 01:51 PM 623 hwinfo.sls +03/06/2020 01:51 PM 339 ice.sls +03/06/2020 01:51 PM 493 icecast.sls +03/06/2020 01:51 PM 377 icloud.sls +03/06/2020 01:51 PM 2,197 iismediaservices.sls +03/06/2020 01:51 PM 358 influx-capacitor.sls +03/06/2020 01:51 PM 644 inkscape.sls +03/06/2020 01:51 PM 646 intellij-community.sls +03/06/2020 01:51 PM 618 intellij-ultimate.sls +03/06/2020 01:51 PM 360 internet-evidence-finder.sls +03/06/2020 01:51 PM 702 irfanview-plugins.sls +03/06/2020 01:51 PM 1,610 irfanview.sls +03/06/2020 01:51 PM 697 isapirewrite-lite.sls +03/06/2020 01:51 PM 2,602 itunes.sls +03/06/2020 01:51 PM 1,279 jdk8.sls +03/06/2020 01:51 PM 1,200 jre.sls +03/06/2020 01:51 PM 1,480 jre8.sls +03/06/2020 01:51 PM 995 jungledisk-server-management.sls +03/06/2020 01:51 PM 891 jungledisk-server.sls +03/06/2020 01:51 PM 921 jungledisk-workgroup.sls +03/06/2020 01:51 PM 518 kdiff3.sls +03/06/2020 01:51 PM 1,091 keepass-2x.sls +03/06/2020 01:51 PM 2,655 keepass.sls +03/06/2020 01:51 PM 673 lastpass.sls +03/06/2020 01:51 PM 1,329 lazarus.sls +03/06/2020 01:51 PM 951 libreoffice.sls +03/06/2020 01:51 PM 419 logparser.sls +03/06/2020 01:51 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:51 PM 722 malwarebytes.sls +03/06/2020 01:51 PM 1,884 mariadb.sls +03/06/2020 01:51 PM 653 mercurial.sls +03/06/2020 01:51 PM 649 messageanalyzer.sls +03/06/2020 01:51 PM metricbeat +03/06/2020 01:51 PM 603 microsoft-build-tools.sls +03/06/2020 01:51 PM 317 mikogo.sls +03/06/2020 01:51 PM 766 miktex-basic.sls +03/06/2020 01:51 PM 787 mongodb.sls +03/06/2020 01:51 PM 831 ms-mbsa.sls +03/06/2020 01:51 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:51 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:51 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:51 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:51 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:51 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:51 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:51 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:51 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:51 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:51 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:51 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:51 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:51 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:51 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:51 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:51 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:51 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:51 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:51 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:51 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:51 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:51 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:51 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:51 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:51 PM 585 mucommander.sls +03/06/2020 01:51 PM 638 mysql-essential.sls +03/06/2020 01:51 PM 632 mysql-installer-community.sls +03/06/2020 01:51 PM 639 mysql-workbench.sls +03/06/2020 01:51 PM 298 never10.sls +03/06/2020 01:51 PM 929 newrelic-infra.sls +03/06/2020 01:51 PM 526 nextcloud-client.sls +03/06/2020 01:51 PM 584 nmap.sls +03/06/2020 01:51 PM 709 node.js-lts.sls +03/06/2020 01:51 PM 733 node.js.sls +03/06/2020 01:51 PM 368 nomacs.sls +03/06/2020 01:51 PM 985 npp.sls +03/06/2020 01:51 PM 1,252 nsclient.sls +03/06/2020 01:51 PM 826 nsis.sls +03/06/2020 01:51 PM 902 ntp.sls +03/06/2020 01:51 PM 793 nunit-console.sls +03/06/2020 01:51 PM 363 nxlog.sls +03/06/2020 01:51 PM 1,081 octopus-tentacle.sls +03/06/2020 01:51 PM 678 openlp.sls +03/06/2020 01:51 PM 1,192 openoffice.sls +03/06/2020 01:51 PM 2,130 openvpn.sls +03/06/2020 01:51 PM 587 osquery.sls +03/06/2020 01:51 PM 878 ossec-agent.sls +03/06/2020 01:51 PM 590 owncloud.sls +03/06/2020 01:51 PM packetbeat +03/06/2020 01:51 PM 400 pandoc.sls +03/06/2020 01:51 PM 814 parallels-client-15.sls +03/06/2020 01:51 PM 1,709 pass4win.sls +03/06/2020 01:51 PM 378 passware-kit-agent.sls +03/06/2020 01:51 PM 416 passware-kit-forensic.sls +03/06/2020 01:51 PM 656 patchmypc-free.sls +03/06/2020 01:51 PM 638 pdf24creator.sls +03/06/2020 01:51 PM 567 pdfcreator.sls +03/06/2020 01:51 PM 611 peazip.sls +03/06/2020 01:51 PM 812 pgadmin4.sls +03/06/2020 01:51 PM 235 pgina.sls +03/06/2020 01:51 PM 617 pidgin.sls +03/06/2020 01:51 PM 1,898 postgresql.sls +03/06/2020 01:51 PM 997 powerbi-desktop.sls +03/06/2020 01:51 PM 864 powershell-core.sls +03/06/2020 01:51 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:51 PM 1,488 putty.sls +03/06/2020 01:51 PM pycharm-pro +03/06/2020 01:51 PM 567 python2_x64.sls +03/06/2020 01:51 PM 526 python2_x86.sls +03/06/2020 01:51 PM 1,540 python3_x64.sls +03/06/2020 01:51 PM 1,435 python3_x86.sls +03/06/2020 01:51 PM 449 qemu.sls +03/06/2020 01:51 PM 562 queueexplorerpro.sls +03/06/2020 01:51 PM 1,542 quicktime.sls +03/06/2020 01:51 PM 495 rabbitmq.sls +03/06/2020 01:51 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:51 PM 375 rakudo-star_x64.sls +03/06/2020 01:51 PM 888 rasclient.sls +03/06/2020 01:51 PM 444 rdcman.sls +03/06/2020 01:51 PM 609 rocketchat.sls +03/06/2020 01:51 PM 526 rubyinstaller_x64.sls +03/06/2020 01:51 PM 551 rubyinstaller_x86.sls +03/06/2020 01:51 PM 3,719 salt-minion-py2.sls +03/06/2020 01:51 PM 2,050 salt-minion-py3.sls +03/06/2020 01:51 PM 562 sandboxie.sls +03/06/2020 01:51 PM 581 scaleout.sls +03/06/2020 01:51 PM 476 secunia.psi.sls +03/06/2020 01:51 PM 1,190 sensu.sls +03/06/2020 01:51 PM 1,827 sharpdevelop.sls +03/06/2020 01:51 PM 539 skitch.sls +03/06/2020 01:51 PM 1,533 skype-msi.sls +03/06/2020 01:51 PM 708 skype.sls +03/06/2020 01:51 PM 1,244 slack-machine-msi.sls +03/06/2020 01:51 PM 1,023 slack-user-msi.sls +03/06/2020 01:51 PM 329 slack.sls +03/06/2020 01:51 PM 591 smartmontools.sls +03/06/2020 01:51 PM 556 snmptools.sls +03/06/2020 01:51 PM 653 soapui.sls +03/06/2020 01:51 PM 623 software-informer.sls +03/06/2020 01:51 PM 1,039 sourcetree.sls +03/06/2020 01:51 PM 591 spybot-anti-beacon.sls +03/06/2020 01:51 PM 765 spybot.sls +03/06/2020 01:51 PM 664 sscserv-free.sls +03/06/2020 01:51 PM stayawake +03/06/2020 01:51 PM 443 steam.sls +03/06/2020 01:51 PM 658 stellarium.sls +03/06/2020 01:51 PM 540 strawberryperl_x64.sls +03/06/2020 01:51 PM 531 strawberryperl_x86.sls +03/06/2020 01:51 PM 521 stunnel.sls +03/06/2020 01:51 PM 398 subinacl.sls +03/06/2020 01:51 PM 467 sumatrapdf.sls +03/06/2020 01:51 PM 769 svn.sls +03/06/2020 01:51 PM 534 teamviewer.sls +03/06/2020 01:51 PM 549 teamviewer_host.sls +03/06/2020 01:51 PM 749 teracopy.sls +03/06/2020 01:51 PM 491 texmaker.sls +03/06/2020 01:51 PM 709 texniccenter.sls +03/06/2020 01:51 PM 639 texstudio.sls +03/06/2020 01:51 PM 643 texworks.sls +03/06/2020 01:51 PM 937 thunderbird.sls +03/06/2020 01:51 PM 1,014 tightvnc.sls +03/06/2020 01:51 PM 623 todotxt.net.sls +03/06/2020 01:51 PM 551 todour.sls +03/06/2020 01:51 PM 630 tortoise-bzr.sls +03/06/2020 01:51 PM 983 tortoise-git.sls +03/06/2020 01:51 PM 1,367 tortoise-hg.sls +03/06/2020 01:51 PM 897 tortoise-svn.sls +03/06/2020 01:51 PM 503 truecrypt.sls +03/06/2020 01:51 PM 662 ultradefrag.sls +03/06/2020 01:51 PM 1,598 urlrewrite.sls +03/06/2020 01:51 PM 560 usbdlm.sls +03/06/2020 01:51 PM 1,361 vagrant.sls +03/06/2020 01:51 PM 479 vcforpython27.sls +03/06/2020 01:51 PM 820 vcxsrv.sls +03/06/2020 01:51 PM 434 verysleepy.sls +03/06/2020 01:51 PM 611 veyon.sls +03/06/2020 01:51 PM 2,570 virtualbox.sls +03/06/2020 01:51 PM 794 viscosity.sls +03/06/2020 01:51 PM 657 vivaldi.sls +03/06/2020 01:51 PM 739 vlc.sls +03/06/2020 01:51 PM 713 vs-community.sls +03/06/2020 01:51 PM 1,388 vscode.sls +03/06/2020 01:51 PM 325 vsee.sls +03/06/2020 01:51 PM 640 vs_remotetools_2017.sls +03/06/2020 01:51 PM 835 wamp-server-3.sls +03/06/2020 01:51 PM 585 wamp-stack.sls +03/06/2020 01:51 PM 775 webdeploy.sls +03/06/2020 01:51 PM 842 webplatforminstaller.sls +03/06/2020 01:51 PM 610 win-app-manager.sls +03/06/2020 01:51 PM 467 windirstat.sls +03/06/2020 01:51 PM 468 winhttpcertcfg.sls +03/06/2020 01:51 PM winlogbeat +03/06/2020 01:51 PM 618 winmerge.sls +03/06/2020 01:51 PM 737 winmtr.sls +03/06/2020 01:51 PM 288 winpcap.sls +03/06/2020 01:51 PM 825 winrar.sls +03/06/2020 01:51 PM 828 winscp.sls +03/06/2020 01:51 PM 1,136 wireshark.sls +03/06/2020 01:51 PM wmi_provider +03/06/2020 01:51 PM 539 wscc.sls +03/06/2020 01:51 PM 726 wufuc.sls +03/06/2020 01:51 PM 352 xampp.sls +03/06/2020 01:51 PM 649 xming.sls +03/06/2020 01:51 PM 621 yubikey-manager.sls +03/06/2020 01:51 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:51 PM 1,119 zabbix-agent.sls +03/06/2020 01:51 PM zipinstaller +03/06/2020 01:51 PM 278 zoom.sls + 284 File(s) 232,192 bytes + 16 Dir(s) 47,676,604,416 bytes free +2020-03-06 10:51:24,695 [salt.state :938 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:51:24,695 [salt.state :320 ][INFO ][4652] {'pkg.refresh_db': {'success': 298, 'total': 298, 'failed': 0}} +2020-03-06 10:51:24,695 [salt.state :1997][INFO ][4652] Completed state [pkg.refresh_db] at time 10:51:24.695198 (duration_in_ms=8444.762) +2020-03-06 10:51:24,716 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:51:24,716 [salt.state :1819][INFO ][4652] Running state [7zip] at time 10:51:24.716957 +2020-03-06 10:51:24,716 [salt.state :1852][INFO ][4652] Executing state pkg.installed for [7zip] +2020-03-06 10:51:24,716 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:51:24,716 [salt.loaded.int.module.win_pkg:802 ][INFO ][4652] Refresh skipped, age of winrepo metadata in seconds (0.07198691368103027) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:51:24,739 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.071987) +2020-03-06 10:51:24,821 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,851 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,851 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,851 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,851 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:51:24,870 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:51:24,887 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:51:24,887 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.242507) +2020-03-06 10:51:24,902 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,902 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,902 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,902 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,902 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:24,934 [salt.utils.http :234 ][DEBUG ][4652] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:51:24,934 [salt.utils.http :235 ][DEBUG ][4652] Using backend: tornado +2020-03-06 10:51:28,384 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:51:28,803 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.158766) +2020-03-06 10:51:28,803 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,803 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,803 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,803 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,818 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:51:28,839 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.194933) +2020-03-06 10:51:28,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,852 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:28,871 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:51:28,871 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:51:28,885 [salt.state :320 ][INFO ][4652] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 10:51:28,885 [salt.state :1000][DEBUG ][4652] Refreshing modules... +2020-03-06 10:51:28,885 [salt.state :966 ][INFO ][4652] Loading fresh modules for state activity +2020-03-06 10:51:28,953 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:28,953 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:28,953 [salt.state :1997][INFO ][4652] Completed state [7zip] at time 10:51:28.953523 (duration_in_ms=4236.566) +2020-03-06 10:51:28,964 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded config.option +2020-03-06 10:51:28,964 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pkg.install +2020-03-06 10:51:28,964 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pkg.installed +2020-03-06 10:51:28,964 [salt.state :1819][INFO ][4652] Running state [kdiff3] at time 10:51:28.964273 +2020-03-06 10:51:28,964 [salt.state :1852][INFO ][4652] Executing state pkg.installed for [kdiff3] +2020-03-06 10:51:29,385 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt.secret_key, ret: _|- +2020-03-06 10:51:29,385 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt:secret_key, ret: _|- +2020-03-06 10:51:29,576 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet.api_key, ret: _|- +2020-03-06 10:51:29,594 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet:api_key, ret: _|- +2020-03-06 10:51:29,801 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded reg.read_value +2020-03-06 10:51:29,895 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops.api_key, ret: _|- +2020-03-06 10:51:29,909 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops:api_key, ret: _|- +2020-03-06 10:51:35,470 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded platform.is_windows +2020-03-06 10:51:35,470 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded path.which +2020-03-06 10:51:35,502 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:51:35,502 [salt.loaded.int.module.win_pkg:802 ][INFO ][4652] Refresh skipped, age of winrepo metadata in seconds (10.857348918914795) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:51:35,517 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:10.857349) +2020-03-06 10:51:35,517 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,517 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,517 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,517 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,517 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,517 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,533 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,553 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:51:35,569 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:51:35,569 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:51:35,587 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:10.942399) +2020-03-06 10:51:35,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,599 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,615 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:35,615 [salt.utils.http :234 ][DEBUG ][4652] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:51:35,615 [salt.utils.http :235 ][DEBUG ][4652] Using backend: tornado +2020-03-06 10:51:38,969 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:51:39,565 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:14.920372) +2020-03-06 10:51:39,565 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,565 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,565 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,565 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,580 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,598 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:51:39,598 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:14.953546) +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,631 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,631 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,631 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,631 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,631 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:39,631 [salt.state :320 ][INFO ][4652] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:51:39,631 [salt.state :1000][DEBUG ][4652] Refreshing modules... +2020-03-06 10:51:39,650 [salt.state :966 ][INFO ][4652] Loading fresh modules for state activity +2020-03-06 10:51:39,734 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:51:39,734 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:51:39,734 [salt.state :1997][INFO ][4652] Completed state [kdiff3] at time 10:51:39.734691 (duration_in_ms=10770.418) +2020-03-06 10:51:39,749 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded config.option +2020-03-06 10:51:39,749 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pkg.install +2020-03-06 10:51:39,749 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pkg.installed +2020-03-06 10:51:39,749 [salt.state :1819][INFO ][4652] Running state [git] at time 10:51:39.749826 +2020-03-06 10:51:39,749 [salt.state :1852][INFO ][4652] Executing state pkg.installed for [git] +2020-03-06 10:51:40,305 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt.secret_key, ret: _|- +2020-03-06 10:51:40,305 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt:secret_key, ret: _|- +2020-03-06 10:51:40,575 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet.api_key, ret: _|- +2020-03-06 10:51:40,575 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet:api_key, ret: _|- +2020-03-06 10:51:40,782 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded reg.read_value +2020-03-06 10:51:40,891 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops.api_key, ret: _|- +2020-03-06 10:51:40,891 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops:api_key, ret: _|- +2020-03-06 10:51:46,214 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded platform.is_windows +2020-03-06 10:51:46,214 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded path.which +2020-03-06 10:51:46,259 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:51:46,259 [salt.loaded.int.module.win_pkg:802 ][INFO ][4652] Refresh skipped, age of winrepo metadata in seconds (21.614184379577637) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:51:46,259 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.614184) +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,259 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,307 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:51:46,321 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:51:46,338 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:51:46,338 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.693751) +2020-03-06 10:51:46,338 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,352 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:51:46,366 [salt.utils.http :234 ][DEBUG ][4652] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:51:46,366 [salt.utils.http :235 ][DEBUG ][4652] Using backend: tornado +2020-03-06 10:51:52,641 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:52:09,488 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:44.843263) +2020-03-06 10:52:09,488 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,519 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,519 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,519 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,519 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,519 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,519 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,519 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,537 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:52:09,537 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4652] Using existing pkg metadata db for saltenv 'base' (age is 0:00:44.892910) +2020-03-06 10:52:09,558 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,558 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,558 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,558 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,558 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,558 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4652] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:52:09,573 [salt.state :320 ][INFO ][4652] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' + +2020-03-06 10:52:09,588 [salt.state :1000][DEBUG ][4652] Refreshing modules... +2020-03-06 10:52:09,622 [salt.state :966 ][INFO ][4652] Loading fresh modules for state activity +2020-03-06 10:52:09,703 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded jinja.render +2020-03-06 10:52:09,703 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded yaml.render +2020-03-06 10:52:09,703 [salt.state :1997][INFO ][4652] Completed state [git] at time 10:52:09.703331 (duration_in_ms=29953.505) +2020-03-06 10:52:09,715 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded config.option +2020-03-06 10:52:09,715 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded module.run +2020-03-06 10:52:09,715 [salt.state :1819][INFO ][4652] Running state [windows_environment.refresh.path] at time 10:52:09.715994 +2020-03-06 10:52:09,715 [salt.state :1852][INFO ][4652] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:52:09,715 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded windows_environment.refresh +2020-03-06 10:52:09,715 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cmd.run +2020-03-06 10:52:09,715 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:52:09,746 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:52:09,746 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4652] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:52:09,746 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded environ.get +2020-03-06 10:52:09,746 [py.warnings :919 ][WARNING ][4652] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 10:52:09,762 [py.warnings :919 ][WARNING ][4652] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 10:52:09,762 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded event.fire +2020-03-06 10:52:09,762 [salt.utils.event :322 ][DEBUG ][4652] SaltEvent PUB socket URI: 4510 +2020-03-06 10:52:09,762 [salt.utils.event :323 ][DEBUG ][4652] SaltEvent PULL socket URI: 4511 +2020-03-06 10:52:09,762 [salt.utils.event :737 ][DEBUG ][4652] Sending event: tag = environ_setenv; data = {'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'clear_all': False, 'permanent': False, '_stamp': '2020-03-06T18:52:09.762484', 'false_unsets': False} +2020-03-06 10:52:09,762 [salt.transport.ipc:364 ][DEBUG ][4652] Closing IPCMessageClient instance +2020-03-06 10:52:09,762 [salt.state :320 ][INFO ][4652] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:52:09,762 [salt.state :1997][INFO ][4652] Completed state [windows_environment.refresh.path] at time 10:52:09.762484 (duration_in_ms=46.49) +2020-03-06 10:52:09,762 [salt.state :1819][INFO ][4652] Running state [chocolatey.bootstrap] at time 10:52:09.762484 +2020-03-06 10:52:09,762 [salt.state :1852][INFO ][4652] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:52:10,704 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt.secret_key, ret: _|- +2020-03-06 10:52:10,704 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: ifttt:secret_key, ret: _|- +2020-03-06 10:52:11,164 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet.api_key, ret: _|- +2020-03-06 10:52:11,179 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: pushbullet:api_key, ret: _|- +2020-03-06 10:52:11,592 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded reg.read_value +2020-03-06 10:52:11,730 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops.api_key, ret: _|- +2020-03-06 10:52:11,730 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: victorops:api_key, ret: _|- +2020-03-06 10:52:19,486 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded platform.is_windows +2020-03-06 10:52:19,486 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded path.which +2020-03-06 10:52:19,535 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:52:19,617 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded apache.config +2020-03-06 10:52:19,617 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded apache.a2enconf +2020-03-06 10:52:19,617 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded apache.a2ensite +2020-03-06 10:52:19,635 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:52:19,635 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:52:19,649 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:52:19,649 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:52:19,649 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:52:19,649 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:52:19,649 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:52:19,649 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:52:19,672 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_asg.exists +2020-03-06 10:52:19,672 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cfn.exists +2020-03-06 10:52:19,672 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:52:19,672 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:52:19,672 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:52:19,672 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:52:19,672 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:52:19,699 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:52:19,699 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_dynamodb.exists +2020-03-06 10:52:19,699 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_ec2.get_key +2020-03-06 10:52:19,699 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elasticache.exists +2020-03-06 10:52:19,699 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:52:19,699 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elb.exists +2020-03-06 10:52:19,699 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_iam.get_user +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_iam.role_exists +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_iot.policy_exists +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_kinesis.exists +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_kms.describe_key +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_lambda.function_exists +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_asg.exists +2020-03-06 10:52:19,714 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_rds.exists +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_route53.get_record +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_secgroup.exists +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_sns.exists +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_sqs.exists +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded boto_vpc.exists +2020-03-06 10:52:19,730 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded bower.list +2020-03-06 10:52:19,746 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded chef.client +2020-03-06 10:52:19,746 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cimc.get_system_info +2020-03-06 10:52:19,746 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded cisconso.set_data_value +2020-03-06 10:52:19,746 [salt.loader :1577][DEBUG ][4652] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:52:19,762 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded ddns.update +2020-03-06 10:52:19,762 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded chassis.cmd +2020-03-06 10:52:19,782 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:52:19,820 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:52:19,836 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:52:19,853 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:52:20,234 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded esxi.cmd +2020-03-06 10:52:20,251 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:20,282 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: git version 2.23.0.windows.1 +2020-03-06 10:52:20,297 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded github.list_users +2020-03-06 10:52:20,297 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded glanceng.image_get +2020-03-06 10:52:20,313 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded elasticsearch.exists +2020-03-06 10:52:20,313 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: grafana_version, ret: _|- +2020-03-06 10:52:20,313 [salt.loaded.int.module.config:398 ][DEBUG ][4652] key: grafana_version, ret: _|- +2020-03-06 10:52:20,330 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded icinga2.generate_ticket +2020-03-06 10:52:20,330 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded ifttt.trigger_event +2020-03-06 10:52:20,344 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:52:20,376 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:52:20,392 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:52:20,413 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:52:20,440 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:52:20,456 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:52:20,487 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:52:20,487 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.domain_get +2020-03-06 10:52:20,487 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:52:20,487 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.group_get +2020-03-06 10:52:20,504 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.project_get +2020-03-06 10:52:20,504 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.role_get +2020-03-06 10:52:20,504 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.role_grant +2020-03-06 10:52:20,504 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.service_get +2020-03-06 10:52:20,504 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded keystoneng.user_get +2020-03-06 10:52:20,520 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:52:20,538 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:52:20,569 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:52:20,586 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:52:20,617 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:52:20,633 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:52:20,633 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:52:20,633 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:52:20,647 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:52:20,647 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded lxd.version +2020-03-06 10:52:20,647 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded memcached.status +2020-03-06 10:52:20,647 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mongodb.db_exists +2020-03-06 10:52:20,647 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mongodb.user_exists +2020-03-06 10:52:20,663 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:52:20,663 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:52:20,663 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:52:20,663 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded mssql.version +2020-03-06 10:52:20,679 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_networks +2020-03-06 10:52:20,679 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_subnets +2020-03-06 10:52:20,694 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_subnets +2020-03-06 10:52:20,694 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded neutronng.list_subnets +2020-03-06 10:52:20,694 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded npm.list +2020-03-06 10:52:20,694 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nxos.cmd +2020-03-06 10:52:20,726 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:52:20,742 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:52:20,758 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded panos.commit +2020-03-06 10:52:20,758 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pdbedit.create +2020-03-06 10:52:20,758 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded pecl.list +2020-03-06 10:52:20,807 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:52:20,807 [salt.loader :1577][DEBUG ][4652] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:52:20,807 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.cluster_exists +2020-03-06 10:52:20,807 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.user_exists +2020-03-06 10:52:20,807 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.create_extension +2020-03-06 10:52:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.group_create +2020-03-06 10:52:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.datadir_init +2020-03-06 10:52:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.language_create +2020-03-06 10:52:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.privileges_grant +2020-03-06 10:52:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.schema_exists +2020-03-06 10:52:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.tablespace_exists +2020-03-06 10:52:20,822 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded postgres.user_exists +2020-03-06 10:52:20,870 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:52:20,885 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded selinux.getenforce +2020-03-06 10:52:20,885 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded splunk.list_users +2020-03-06 10:52:20,885 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded splunk_search.get +2020-03-06 10:52:20,917 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:52:20,933 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded tomcat.status +2020-03-06 10:52:20,933 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded vagrant.version +2020-03-06 10:52:20,933 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded victorops.create_event +2020-03-06 10:52:20,949 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded win_iis.create_site +2020-03-06 10:52:20,949 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded win_servermanager.install +2020-03-06 10:52:20,965 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:52:20,965 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded wordpress.show_plugin +2020-03-06 10:52:20,965 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded x509.get_pem_entry +2020-03-06 10:52:20,965 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded xmpp.send_msg +2020-03-06 10:52:20,981 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded zk_concurrency.lock +2020-03-06 10:52:20,981 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded zonecfg.create +2020-03-06 10:52:20,981 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded zookeeper.create +2020-03-06 10:52:20,997 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:52:21,012 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:52:21,217 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:52:21,232 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4652] retcode: 1 +2020-03-06 10:52:21,232 [salt.state :915 ][DEBUG ][4652] Last command return code: 1 +2020-03-06 10:52:21,232 [salt.utils.http :234 ][DEBUG ][4652] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:52:21,232 [salt.utils.http :235 ][DEBUG ][4652] Using backend: tornado +2020-03-06 10:52:21,506 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:27,503 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\header.bmp... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\SplashScreen.bmp... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\watermark.bmp... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\DisplayIcon.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Print.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate1.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate2.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate3.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate4.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate5.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate6.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate7.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Rotate8.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Save.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\Setup.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\stop.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\SysReqMet.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\SysReqNotMet.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Graphics\warn.ico... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1033\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1042\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1041\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1037\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1025\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1035\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1030\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1044\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1043\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1040\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1029\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1031\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1036\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1032\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1038\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\2052\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1028\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\3076\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1055\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1053\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\3082\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\2070\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1046\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1049\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1045\LocalizedData.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Client\Parameterinfo.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Extended\Parameterinfo.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\ParameterInfo.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Strings.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\UiInfo.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Client\UiInfo.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Extended\UiInfo.xml... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\SetupUi.xsd... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\DHtmlHeader.html... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1033\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1025\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1028\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1030\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1031\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1029\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1036\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1035\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1032\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1038\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1037\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1040\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1041\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1042\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1044\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1043\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1046\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1045\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1055\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1053\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\2052\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1049\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\3082\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\2070\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\3076\eula.rtf... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\Setup.exe... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\SetupUtility.exe... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\SetupEngine.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1025\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1033\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1029\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1030\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1035\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1031\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1036\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1032\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1028\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\2052\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\3076\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1042\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1041\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1037\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1044\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1053\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1055\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1040\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1045\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1046\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1049\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1038\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\2070\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\3082\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\1043\SetupResources.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\SetupUi.dll... +Preparing: C:\bf33aa7cf0ca4eb474e65df7e356a1de\sqmapi.dll... +2020-03-06 10:52:27,503 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:52:32,765 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: Getting latest version of the Chocolatey package for download. +Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +Downloading 7-Zip commandline tool prior to extraction. +Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +Installing chocolatey on this machine +Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. +Restricting write permissions to Administrators +We are setting up the Chocolatey package repository. +The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + +Creating Chocolatey folders if they do not already exist. + +WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. +chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. +PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +WARNING: Not setting tab completion: Profile file does not exist at +'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +Chocolatey (choco.exe) is now ready. +You can call choco from anywhere, command line or powershell by typing choco. +Run choco /? for a list of functions. +You may need to shut down and restart powershell and/or consoles + first prior to using choco. +Ensuring chocolatey commands are on the path +Ensuring chocolatey.nupkg is in the lib folder +2020-03-06 10:52:32,783 [salt.state :320 ][INFO ][4652] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:52:32,783 [salt.state :1997][INFO ][4652] Completed state [chocolatey.bootstrap] at time 10:52:32.783094 (duration_in_ms=23020.61) +2020-03-06 10:52:32,783 [salt.state :1819][INFO ][4652] Running state [windirstat] at time 10:52:32.783094 +2020-03-06 10:52:32,783 [salt.state :1852][INFO ][4652] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:52:32,783 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:34,032 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: chocolatey|0.10.15 +2020-03-06 10:52:34,048 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:34,867 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: 0.10.15 +2020-03-06 10:52:34,867 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4652] output: 0.10.15 +2020-03-06 10:52:34,885 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:38,506 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:52:38,506 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:39,806 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:52:39,806 [salt.state :320 ][INFO ][4652] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 10:52:39,821 [salt.state :1997][INFO ][4652] Completed state [windirstat] at time 10:52:39.821944 (duration_in_ms=7038.85) +2020-03-06 10:52:39,821 [salt.state :1819][INFO ][4652] Running state [notepadplusplus] at time 10:52:39.821944 +2020-03-06 10:52:39,821 [salt.state :1852][INFO ][4652] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:52:39,821 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:41,207 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:52:41,222 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:50,436 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +notepadplusplus +By installing you accept licenses for the packages. + +chocolatey-core.extension v1.3.5.1 [Approved] +chocolatey-core.extension package files install completed. Performing other installation steps. + Installed/updated chocolatey-core extensions. + The install of chocolatey-core.extension was successful. + Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' + +notepadplusplus.install v7.8.5 +notepadplusplus.install package files install completed. Performing other installation steps. +Installing 64-bit notepadplusplus.install... +notepadplusplus.install has been installed. +notepadplusplus.install installed to 'C:\Program Files\Notepad++' +Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program files\notepad++\notepad++.exe'. + notepadplusplus.install may be able to be automatically uninstalled. + The install of notepadplusplus.install was successful. + Software installed as 'exe', install location is likely default. + +notepadplusplus v7.8.5 [Approved] +notepadplusplus package files install completed. Performing other installation steps. + The install of notepadplusplus was successful. + Software install location not explicitly set, could be in package or + default install location if installer. + +Chocolatey installed 3/3 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:52:50,436 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:51,357 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +windirstat|1.1.2.20161210 +2020-03-06 10:52:51,357 [salt.state :320 ][INFO ][4652] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:52:51,357 [salt.state :1997][INFO ][4652] Completed state [notepadplusplus] at time 10:52:51.357920 (duration_in_ms=11535.976) +2020-03-06 10:52:51,357 [salt.state :1819][INFO ][4652] Running state [TelnetClient] at time 10:52:51.357920 +2020-03-06 10:52:51,357 [salt.state :1852][INFO ][4652] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:52:51,373 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:52:51,373 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:52:53,290 [salt.state :889 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:52:53,309 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:54,316 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.17134.1 + +Image Version: 10.0.17134.285 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17134.1 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:52:54,316 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4652] output: +Deployment Image Servicing and Management tool +Version: 10.0.17134.1 + +Image Version: 10.0.17134.285 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17134.1 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:52:54,316 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:55,095 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:52:56,264 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4652] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.17134.1 + +Image Version: 10.0.17134.285 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17134.1 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:52:56,280 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4652] output: +Deployment Image Servicing and Management tool +Version: 10.0.17134.1 + +Image Version: 10.0.17134.285 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17134.1 + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : SNMP +State : Disabled + +Feature Name : WMISnmpProvider +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : RasRip +State : Disabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : ScanManagementConsole +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : RasCMAK +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : Microsoft-Windows-NetFx-VCRedist-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-PrintToPDFServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Printing-XPSServices-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:52:56,280 [salt.state :320 ][INFO ][4652] {'retcode': 0, 'feature': {'new': 'TelnetClient'}, 'stderr': '', 'stdout': '', 'pid': 1248} +2020-03-06 10:52:56,280 [salt.state :1997][INFO ][4652] Completed state [TelnetClient] at time 10:52:56.280612 (duration_in_ms=4922.692) +2020-03-06 10:52:56,280 [salt.state :1819][INFO ][4652] Running state [windows.module.system.reboot] at time 10:52:56.280612 +2020-03-06 10:52:56,280 [salt.state :1852][INFO ][4652] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:52:56,296 [salt.utils.lazy :107 ][DEBUG ][4652] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:52:56,296 [salt.loaded.int.module.cmdmod:397 ][INFO ][4652] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:52:56,486 [salt.state :889 ][DEBUG ][4652] Last command return code: 0 +2020-03-06 10:52:56,486 [salt.loaded.int.module.win_system:1413][DEBUG ][4652] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:52:56,486 [salt.loaded.int.module.win_system:1348][DEBUG ][4652] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:52:56,486 [salt.loaded.int.module.win_system:1348][DEBUG ][4652] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:52:56,486 [salt.loaded.int.module.win_system:1387][DEBUG ][4652] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:52:56,486 [salt.loaded.int.module.win_system:1273][DEBUG ][4652] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:52:56,517 [salt.state :320 ][INFO ][4652] {'system.reboot': True} +2020-03-06 10:52:56,517 [salt.state :1997][INFO ][4652] Completed state [windows.module.system.reboot] at time 10:52:56.517370 (duration_in_ms=236.758) +2020-03-06 10:52:56,532 [salt.state :2801][DEBUG ][4652] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2239507273264 does not exist, no need to cleanup +2020-03-06 10:52:56,532 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded state.check_result +2020-03-06 10:52:56,549 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded highstate.output +2020-03-06 10:52:56,564 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,564 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,564 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,580 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,580 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,580 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,580 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,596 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,596 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,596 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,611 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,611 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,611 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,642 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,642 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,658 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,658 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,674 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,674 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,691 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,691 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,691 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,691 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 10:52:56,706 [salt.utils.lazy :104 ][DEBUG ][4652] LazyLoaded nested.output +2020-03-06 13:53:01,984 [salt.loader :747 ][DEBUG ][6216] Grains refresh requested. Refreshing grains. +2020-03-06 13:53:01,984 [salt.config :2190][DEBUG ][6216] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:53:01,984 [salt.config :2334][DEBUG ][6216] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:53:01,984 [salt.config :2190][DEBUG ][6216] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-201923-windows-10-1809.kitchen.log b/test/results/py3-201923-windows-10-1809.kitchen.log new file mode 100644 index 0000000..9244d4c --- /dev/null +++ b/test/results/py3-201923-windows-10-1809.kitchen.log @@ -0,0 +1,1036 @@ +I, [2020-03-06T13:44:26.912193 #21351] INFO -- py3-201923-windows-10-1809: -----> Cleaning up any prior instances of +I, [2020-03-06T13:44:26.912390 #21351] INFO -- py3-201923-windows-10-1809: -----> Destroying ... +I, [2020-03-06T13:44:26.913704 #21351] INFO -- py3-201923-windows-10-1809: Finished destroying (0m0.00s). +I, [2020-03-06T13:44:26.914894 #21351] INFO -- py3-201923-windows-10-1809: -----> Testing +I, [2020-03-06T13:44:26.915273 #21351] INFO -- py3-201923-windows-10-1809: -----> Creating ... +I, [2020-03-06T13:44:33.135377 #21351] INFO -- py3-201923-windows-10-1809: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:44:34.124479 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Cloning VM... +I, [2020-03-06T13:44:34.593024 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:44:34.825050 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Checking if box 'StefanScherer/windows_10' version '2019.05.15' is up to date... +I, [2020-03-06T13:44:35.780294 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1809-4a86be33-9c43-4d65-acbd-22c24aa53156 +I, [2020-03-06T13:44:39.402317 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:44:39.551585 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:44:39.552083 #21351] INFO -- py3-201923-windows-10-1809: default: Adapter 1: nat +I, [2020-03-06T13:44:39.728794 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Forwarding ports... +I, [2020-03-06T13:44:39.896893 #21351] INFO -- py3-201923-windows-10-1809: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:44:39.897323 #21351] INFO -- py3-201923-windows-10-1809: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:44:39.898193 #21351] INFO -- py3-201923-windows-10-1809: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:44:39.898718 #21351] INFO -- py3-201923-windows-10-1809: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:44:40.459049 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:44:41.855522 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Booting VM... +I, [2020-03-06T13:44:44.788422 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:44:46.660505 #21351] INFO -- py3-201923-windows-10-1809: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:44:46.660703 #21351] INFO -- py3-201923-windows-10-1809: default: WinRM username: vagrant +I, [2020-03-06T13:44:46.661074 #21351] INFO -- py3-201923-windows-10-1809: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:44:46.661555 #21351] INFO -- py3-201923-windows-10-1809: default: WinRM transport: negotiate +I, [2020-03-06T13:45:09.233916 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Machine booted and ready! +I, [2020-03-06T13:45:09.271619 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:45:09.562127 #21351] INFO -- py3-201923-windows-10-1809: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T13:45:09.562270 #21351] INFO -- py3-201923-windows-10-1809: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T13:45:09.562332 #21351] INFO -- py3-201923-windows-10-1809: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T13:45:09.562368 #21351] INFO -- py3-201923-windows-10-1809: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T13:45:09.562458 #21351] INFO -- py3-201923-windows-10-1809: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T13:45:09.562503 #21351] INFO -- py3-201923-windows-10-1809: default: your host and reload your VM. +I, [2020-03-06T13:45:09.562550 #21351] INFO -- py3-201923-windows-10-1809: default: +I, [2020-03-06T13:45:09.562613 #21351] INFO -- py3-201923-windows-10-1809: default: Guest Additions Version: 5.2.30 +I, [2020-03-06T13:45:09.562666 #21351] INFO -- py3-201923-windows-10-1809: default: VirtualBox Version: 6.1 +I, [2020-03-06T13:45:10.448243 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Mounting shared folders... +I, [2020-03-06T13:45:10.450505 #21351] INFO -- py3-201923-windows-10-1809: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:45:19.385144 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:45:34.200065 #21351] INFO -- py3-201923-windows-10-1809: [WinRM] Established +I, [2020-03-06T13:45:34.200212 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:34.225677 #21351] INFO -- py3-201923-windows-10-1809: Vagrant instance created. +I, [2020-03-06T13:45:34.228476 #21351] INFO -- py3-201923-windows-10-1809: Finished creating (1m7.31s). +I, [2020-03-06T13:45:34.228783 #21351] INFO -- py3-201923-windows-10-1809: -----> Converging ... +I, [2020-03-06T13:45:34.232060 #21351] INFO -- py3-201923-windows-10-1809: Preparing files for transfer +I, [2020-03-06T13:45:34.232294 #21351] INFO -- py3-201923-windows-10-1809: Preparing salt-minion +I, [2020-03-06T13:45:34.238560 #21351] INFO -- py3-201923-windows-10-1809: Preparing pillars into /srv/pillar +I, [2020-03-06T13:45:34.238698 #21351] INFO -- py3-201923-windows-10-1809: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:45:34.243783 #21351] INFO -- py3-201923-windows-10-1809: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:45:34.442055 #21351] INFO -- py3-201923-windows-10-1809: Preparing state_top +I, [2020-03-06T13:45:34.443848 #21351] INFO -- py3-201923-windows-10-1809: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:45:35.520092 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:35.525572 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:35.526384 #21351] INFO -- py3-201923-windows-10-1809: Directory: C:\ +I, [2020-03-06T13:45:35.526957 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:35.527678 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:35.528409 #21351] INFO -- py3-201923-windows-10-1809: Mode LastWriteTime Length Name +I, [2020-03-06T13:45:35.529105 #21351] INFO -- py3-201923-windows-10-1809: ---- ------------- ------ ---- +I, [2020-03-06T13:45:35.529763 #21351] INFO -- py3-201923-windows-10-1809: d----- 3/6/2020 10:45 AM temp +I, [2020-03-06T13:45:36.375390 #21351] INFO -- py3-201923-windows-10-1809: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe +I, [2020-03-06T13:45:39.704160 #21351] INFO -- py3-201923-windows-10-1809: Installing Salt minion +I, [2020-03-06T13:45:52.094832 #21351] INFO -- py3-201923-windows-10-1809: Starting the Salt minion service +I, [2020-03-06T13:45:52.095342 #21351] INFO -- py3-201923-windows-10-1809: Salt minion successfully installed +I, [2020-03-06T13:45:53.561399 #21351] INFO -- py3-201923-windows-10-1809: You asked for latest and you have 2019.2.3 installed, sweet! +I, [2020-03-06T13:45:53.561852 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:53.562373 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:54.586624 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:54.587149 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:54.587648 #21351] INFO -- py3-201923-windows-10-1809: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:45:54.588076 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:54.588431 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:54.588911 #21351] INFO -- py3-201923-windows-10-1809: Mode LastWriteTime Length Name +I, [2020-03-06T13:45:54.589461 #21351] INFO -- py3-201923-windows-10-1809: ---- ------------- ------ ---- +I, [2020-03-06T13:45:54.589947 #21351] INFO -- py3-201923-windows-10-1809: d----- 3/6/2020 10:45 AM kitchen +I, [2020-03-06T13:45:54.590360 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:54.590791 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:45:54.619473 #21351] INFO -- py3-201923-windows-10-1809: Transferring files to +I, [2020-03-06T13:46:25.662386 #21351] INFO -- py3-201923-windows-10-1809: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:46:25.662747 #21351] INFO -- py3-201923-windows-10-1809: At line:1 char:131 +I, [2020-03-06T13:46:25.663179 #21351] INFO -- py3-201923-windows-10-1809: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:46:25.663627 #21351] INFO -- py3-201923-windows-10-1809: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:46:25.664022 #21351] INFO -- py3-201923-windows-10-1809: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:46:25.664416 #21351] INFO -- py3-201923-windows-10-1809: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:46:25.664726 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:46:25.665011 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:46:25.665339 #21351] INFO -- py3-201923-windows-10-1809: Traceback (most recent call last): +I, [2020-03-06T13:46:25.665672 #21351] INFO -- py3-201923-windows-10-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:46:25.665993 #21351] INFO -- py3-201923-windows-10-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:46:25.666339 #21351] INFO -- py3-201923-windows-10-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:46:25.666641 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:46:25.666976 #21351] INFO -- py3-201923-windows-10-1809: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:46:25.667270 #21351] INFO -- py3-201923-windows-10-1809: Traceback (most recent call last): +I, [2020-03-06T13:46:25.667620 #21351] INFO -- py3-201923-windows-10-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:46:25.667982 #21351] INFO -- py3-201923-windows-10-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:46:25.668274 #21351] INFO -- py3-201923-windows-10-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:46:25.668550 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:47:10.719039 #21351] INFO -- py3-201923-windows-10-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:47:10.719463 #21351] INFO -- py3-201923-windows-10-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:47:10.719877 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:47:10.720234 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:47:10.720656 #21351] INFO -- py3-201923-windows-10-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:47:10.721001 #21351] INFO -- py3-201923-windows-10-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:47:10.721304 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:47:10.721613 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.095360 #21351] INFO -- py3-201923-windows-10-1809: local: +I, [2020-03-06T13:48:01.095891 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.096399 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:48:01.096833 #21351] INFO -- py3-201923-windows-10-1809: Function: system.hostname +I, [2020-03-06T13:48:01.097242 #21351] INFO -- py3-201923-windows-10-1809: Name: saltstack1 +I, [2020-03-06T13:48:01.098788 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.100956 #21351] INFO -- py3-201923-windows-10-1809: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:48:01.102588 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:07.125270 +I, [2020-03-06T13:48:01.103632 #21351] INFO -- py3-201923-windows-10-1809: Duration: 108.786 ms +I, [2020-03-06T13:48:01.104483 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.105262 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.106093 #21351] INFO -- py3-201923-windows-10-1809: hostname: +I, [2020-03-06T13:48:01.106960 #21351] INFO -- py3-201923-windows-10-1809: saltstack1 +I, [2020-03-06T13:48:01.107822 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.108650 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:48:01.109447 #21351] INFO -- py3-201923-windows-10-1809: Function: system.computer_desc +I, [2020-03-06T13:48:01.110799 #21351] INFO -- py3-201923-windows-10-1809: Name: Saltstack Computer Description +I, [2020-03-06T13:48:01.112228 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.113625 #21351] INFO -- py3-201923-windows-10-1809: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:48:01.115063 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:07.234056 +I, [2020-03-06T13:48:01.116752 #21351] INFO -- py3-201923-windows-10-1809: Duration: 2656.551 ms +I, [2020-03-06T13:48:01.118367 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.119855 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.121486 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.123072 #21351] INFO -- py3-201923-windows-10-1809: Saltstack Computer Description +I, [2020-03-06T13:48:01.124186 #21351] INFO -- py3-201923-windows-10-1809: old: +I, [2020-03-06T13:48:01.125531 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.127468 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:48:01.128459 #21351] INFO -- py3-201923-windows-10-1809: Function: timezone.system +I, [2020-03-06T13:48:01.129266 #21351] INFO -- py3-201923-windows-10-1809: Name: America/New_York +I, [2020-03-06T13:48:01.129996 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.131571 #21351] INFO -- py3-201923-windows-10-1809: Comment: Set timezone America/New_York +I, [2020-03-06T13:48:01.132180 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:09.921513 +I, [2020-03-06T13:48:01.133707 #21351] INFO -- py3-201923-windows-10-1809: Duration: 16.717 ms +I, [2020-03-06T13:48:01.135145 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.135892 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.137245 #21351] INFO -- py3-201923-windows-10-1809: timezone: +I, [2020-03-06T13:48:01.138668 #21351] INFO -- py3-201923-windows-10-1809: America/New_York +I, [2020-03-06T13:48:01.139904 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.141312 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.module.environ.items +I, [2020-03-06T13:48:01.142758 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.143959 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.145380 #21351] INFO -- py3-201923-windows-10-1809: Comment: environ.items: Success +I, [2020-03-06T13:48:01.146844 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:09.938230 +I, [2020-03-06T13:48:01.148351 #21351] INFO -- py3-201923-windows-10-1809: Duration: 14.887 ms +I, [2020-03-06T13:48:01.149433 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.150352 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.151619 #21351] INFO -- py3-201923-windows-10-1809: environ.items: +I, [2020-03-06T13:48:01.152385 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.153450 #21351] INFO -- py3-201923-windows-10-1809: ALLUSERSPROFILE: +I, [2020-03-06T13:48:01.154626 #21351] INFO -- py3-201923-windows-10-1809: C:\ProgramData +I, [2020-03-06T13:48:01.155577 #21351] INFO -- py3-201923-windows-10-1809: APPDATA: +I, [2020-03-06T13:48:01.156437 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:48:01.161773 #21351] INFO -- py3-201923-windows-10-1809: COMMONPROGRAMFILES: +I, [2020-03-06T13:48:01.162326 #21351] INFO -- py3-201923-windows-10-1809: C:\Program Files\Common Files +I, [2020-03-06T13:48:01.162765 #21351] INFO -- py3-201923-windows-10-1809: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:48:01.163206 #21351] INFO -- py3-201923-windows-10-1809: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:48:01.163635 #21351] INFO -- py3-201923-windows-10-1809: COMMONPROGRAMW6432: +I, [2020-03-06T13:48:01.164604 #21351] INFO -- py3-201923-windows-10-1809: C:\Program Files\Common Files +I, [2020-03-06T13:48:01.165210 #21351] INFO -- py3-201923-windows-10-1809: COMPUTERNAME: +I, [2020-03-06T13:48:01.165848 #21351] INFO -- py3-201923-windows-10-1809: VAGRANT-10 +I, [2020-03-06T13:48:01.166353 #21351] INFO -- py3-201923-windows-10-1809: COMSPEC: +I, [2020-03-06T13:48:01.166822 #21351] INFO -- py3-201923-windows-10-1809: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:48:01.167220 #21351] INFO -- py3-201923-windows-10-1809: DRIVERDATA: +I, [2020-03-06T13:48:01.167651 #21351] INFO -- py3-201923-windows-10-1809: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T13:48:01.168073 #21351] INFO -- py3-201923-windows-10-1809: HOMEDRIVE: +I, [2020-03-06T13:48:01.168542 #21351] INFO -- py3-201923-windows-10-1809: C: +I, [2020-03-06T13:48:01.169092 #21351] INFO -- py3-201923-windows-10-1809: HOMEPATH: +I, [2020-03-06T13:48:01.169635 #21351] INFO -- py3-201923-windows-10-1809: \Users\vagrant +I, [2020-03-06T13:48:01.170101 #21351] INFO -- py3-201923-windows-10-1809: LOCALAPPDATA: +I, [2020-03-06T13:48:01.170555 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:48:01.170997 #21351] INFO -- py3-201923-windows-10-1809: LOGONSERVER: +I, [2020-03-06T13:48:01.171393 #21351] INFO -- py3-201923-windows-10-1809: \\VAGRANT-10 +I, [2020-03-06T13:48:01.171840 #21351] INFO -- py3-201923-windows-10-1809: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:48:01.172342 #21351] INFO -- py3-201923-windows-10-1809: 2 +I, [2020-03-06T13:48:01.172797 #21351] INFO -- py3-201923-windows-10-1809: ONEDRIVE: +I, [2020-03-06T13:48:01.173304 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:48:01.173704 #21351] INFO -- py3-201923-windows-10-1809: OS: +I, [2020-03-06T13:48:01.174133 #21351] INFO -- py3-201923-windows-10-1809: Windows_NT +I, [2020-03-06T13:48:01.174554 #21351] INFO -- py3-201923-windows-10-1809: PATH: +I, [2020-03-06T13:48:01.175052 #21351] INFO -- py3-201923-windows-10-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:48:01.175572 #21351] INFO -- py3-201923-windows-10-1809: PATHEXT: +I, [2020-03-06T13:48:01.176079 #21351] INFO -- py3-201923-windows-10-1809: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:48:01.176550 #21351] INFO -- py3-201923-windows-10-1809: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:48:01.177041 #21351] INFO -- py3-201923-windows-10-1809: AMD64 +I, [2020-03-06T13:48:01.177477 #21351] INFO -- py3-201923-windows-10-1809: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:48:01.177898 #21351] INFO -- py3-201923-windows-10-1809: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:48:01.178390 #21351] INFO -- py3-201923-windows-10-1809: PROCESSOR_LEVEL: +I, [2020-03-06T13:48:01.178897 #21351] INFO -- py3-201923-windows-10-1809: 6 +I, [2020-03-06T13:48:01.179392 #21351] INFO -- py3-201923-windows-10-1809: PROCESSOR_REVISION: +I, [2020-03-06T13:48:01.179838 #21351] INFO -- py3-201923-windows-10-1809: 8e0c +I, [2020-03-06T13:48:01.180361 #21351] INFO -- py3-201923-windows-10-1809: PROGRAMDATA: +I, [2020-03-06T13:48:01.180795 #21351] INFO -- py3-201923-windows-10-1809: C:\ProgramData +I, [2020-03-06T13:48:01.181264 #21351] INFO -- py3-201923-windows-10-1809: PROGRAMFILES: +I, [2020-03-06T13:48:01.181709 #21351] INFO -- py3-201923-windows-10-1809: C:\Program Files +I, [2020-03-06T13:48:01.182108 #21351] INFO -- py3-201923-windows-10-1809: PROGRAMFILES(X86): +I, [2020-03-06T13:48:01.182509 #21351] INFO -- py3-201923-windows-10-1809: C:\Program Files (x86) +I, [2020-03-06T13:48:01.182959 #21351] INFO -- py3-201923-windows-10-1809: PROGRAMW6432: +I, [2020-03-06T13:48:01.183483 #21351] INFO -- py3-201923-windows-10-1809: C:\Program Files +I, [2020-03-06T13:48:01.183977 #21351] INFO -- py3-201923-windows-10-1809: PROMPT: +I, [2020-03-06T13:48:01.184480 #21351] INFO -- py3-201923-windows-10-1809: $P$G +I, [2020-03-06T13:48:01.184962 #21351] INFO -- py3-201923-windows-10-1809: PSMODULEPATH: +I, [2020-03-06T13:48:01.185494 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:48:01.186004 #21351] INFO -- py3-201923-windows-10-1809: PUBLIC: +I, [2020-03-06T13:48:01.186475 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\Public +I, [2020-03-06T13:48:01.186929 #21351] INFO -- py3-201923-windows-10-1809: PYTHON: +I, [2020-03-06T13:48:01.187409 #21351] INFO -- py3-201923-windows-10-1809: C:\salt\bin\python.exe +I, [2020-03-06T13:48:01.187888 #21351] INFO -- py3-201923-windows-10-1809: SALTDIR: +I, [2020-03-06T13:48:01.188352 #21351] INFO -- py3-201923-windows-10-1809: C:\salt +I, [2020-03-06T13:48:01.188762 #21351] INFO -- py3-201923-windows-10-1809: SCRIPT: +I, [2020-03-06T13:48:01.189165 #21351] INFO -- py3-201923-windows-10-1809: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:48:01.189604 #21351] INFO -- py3-201923-windows-10-1809: SYSTEMDRIVE: +I, [2020-03-06T13:48:01.190049 #21351] INFO -- py3-201923-windows-10-1809: C: +I, [2020-03-06T13:48:01.190476 #21351] INFO -- py3-201923-windows-10-1809: SYSTEMROOT: +I, [2020-03-06T13:48:01.190968 #21351] INFO -- py3-201923-windows-10-1809: C:\Windows +I, [2020-03-06T13:48:01.191465 #21351] INFO -- py3-201923-windows-10-1809: TEMP: +I, [2020-03-06T13:48:01.191984 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:48:01.192429 #21351] INFO -- py3-201923-windows-10-1809: TMP: +I, [2020-03-06T13:48:01.192876 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:48:01.193294 #21351] INFO -- py3-201923-windows-10-1809: USERDOMAIN: +I, [2020-03-06T13:48:01.193758 #21351] INFO -- py3-201923-windows-10-1809: VAGRANT-10 +I, [2020-03-06T13:48:01.194173 #21351] INFO -- py3-201923-windows-10-1809: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:48:01.194642 #21351] INFO -- py3-201923-windows-10-1809: VAGRANT-10 +I, [2020-03-06T13:48:01.195095 #21351] INFO -- py3-201923-windows-10-1809: USERNAME: +I, [2020-03-06T13:48:01.195517 #21351] INFO -- py3-201923-windows-10-1809: vagrant +I, [2020-03-06T13:48:01.196085 #21351] INFO -- py3-201923-windows-10-1809: USERPROFILE: +I, [2020-03-06T13:48:01.196639 #21351] INFO -- py3-201923-windows-10-1809: C:\Users\vagrant +I, [2020-03-06T13:48:01.197158 #21351] INFO -- py3-201923-windows-10-1809: WINDIR: +I, [2020-03-06T13:48:01.197607 #21351] INFO -- py3-201923-windows-10-1809: C:\Windows +I, [2020-03-06T13:48:01.198039 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.198426 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.module.user.current +I, [2020-03-06T13:48:01.198876 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.199307 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.199726 #21351] INFO -- py3-201923-windows-10-1809: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:48:01.200199 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:09.953117 +I, [2020-03-06T13:48:01.200639 #21351] INFO -- py3-201923-windows-10-1809: Duration: 16.421 ms +I, [2020-03-06T13:48:01.201053 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.201569 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.202026 #21351] INFO -- py3-201923-windows-10-1809: user.current: +I, [2020-03-06T13:48:01.202431 #21351] INFO -- py3-201923-windows-10-1809: VAGRANT-10\vagrant +I, [2020-03-06T13:48:01.202813 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.203198 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.module.status.uptime +I, [2020-03-06T13:48:01.203595 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.203981 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.204444 #21351] INFO -- py3-201923-windows-10-1809: Comment: status.uptime: 0:01:21.984242 +I, [2020-03-06T13:48:01.204964 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:09.969538 +I, [2020-03-06T13:48:01.205448 #21351] INFO -- py3-201923-windows-10-1809: Duration: 30.56 ms +I, [2020-03-06T13:48:01.206171 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.206814 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.207391 #21351] INFO -- py3-201923-windows-10-1809: status.uptime: +I, [2020-03-06T13:48:01.207991 #21351] INFO -- py3-201923-windows-10-1809: 0:01:21.984242 +I, [2020-03-06T13:48:01.208560 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.209134 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:48:01.209696 #21351] INFO -- py3-201923-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:48:01.210289 #21351] INFO -- py3-201923-windows-10-1809: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers +I, [2020-03-06T13:48:01.210778 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.211160 #21351] INFO -- py3-201923-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:48:01.211576 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:10.000098 +I, [2020-03-06T13:48:01.211946 #21351] INFO -- py3-201923-windows-10-1809: Duration: 1702.608 ms +I, [2020-03-06T13:48:01.212341 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.212763 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.213180 #21351] INFO -- py3-201923-windows-10-1809: pid: +I, [2020-03-06T13:48:01.213644 #21351] INFO -- py3-201923-windows-10-1809: 3276 +I, [2020-03-06T13:48:01.214060 #21351] INFO -- py3-201923-windows-10-1809: retcode: +I, [2020-03-06T13:48:01.214503 #21351] INFO -- py3-201923-windows-10-1809: 0 +I, [2020-03-06T13:48:01.214904 #21351] INFO -- py3-201923-windows-10-1809: stderr: +I, [2020-03-06T13:48:01.215330 #21351] INFO -- py3-201923-windows-10-1809: stdout: +I, [2020-03-06T13:48:01.215774 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.216326 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:48:01.216819 #21351] INFO -- py3-201923-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:48:01.217286 #21351] INFO -- py3-201923-windows-10-1809: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers +I, [2020-03-06T13:48:01.217708 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.218181 #21351] INFO -- py3-201923-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:48:01.218642 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:11.702706 +I, [2020-03-06T13:48:01.219117 #21351] INFO -- py3-201923-windows-10-1809: Duration: 1265.732 ms +I, [2020-03-06T13:48:01.219589 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.220074 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.220537 #21351] INFO -- py3-201923-windows-10-1809: pid: +I, [2020-03-06T13:48:01.220946 #21351] INFO -- py3-201923-windows-10-1809: 1308 +I, [2020-03-06T13:48:01.221341 #21351] INFO -- py3-201923-windows-10-1809: retcode: +I, [2020-03-06T13:48:01.221698 #21351] INFO -- py3-201923-windows-10-1809: 0 +I, [2020-03-06T13:48:01.227283 #21351] INFO -- py3-201923-windows-10-1809: stderr: +I, [2020-03-06T13:48:01.228085 #21351] INFO -- py3-201923-windows-10-1809: stdout: +I, [2020-03-06T13:48:01.228659 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.229215 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:48:01.229703 #21351] INFO -- py3-201923-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:48:01.230214 #21351] INFO -- py3-201923-windows-10-1809: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers +I, [2020-03-06T13:48:01.230690 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.231215 #21351] INFO -- py3-201923-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:48:01.231718 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:12.968438 +I, [2020-03-06T13:48:01.232204 #21351] INFO -- py3-201923-windows-10-1809: Duration: 1437.781 ms +I, [2020-03-06T13:48:01.232662 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.233156 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.233630 #21351] INFO -- py3-201923-windows-10-1809: pid: +I, [2020-03-06T13:48:01.234129 #21351] INFO -- py3-201923-windows-10-1809: 6592 +I, [2020-03-06T13:48:01.234793 #21351] INFO -- py3-201923-windows-10-1809: retcode: +I, [2020-03-06T13:48:01.235243 #21351] INFO -- py3-201923-windows-10-1809: 0 +I, [2020-03-06T13:48:01.235733 #21351] INFO -- py3-201923-windows-10-1809: stderr: +I, [2020-03-06T13:48:01.236228 #21351] INFO -- py3-201923-windows-10-1809: stdout: +I, [2020-03-06T13:48:01.236850 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.237447 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:48:01.238013 #21351] INFO -- py3-201923-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:48:01.238510 #21351] INFO -- py3-201923-windows-10-1809: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers +I, [2020-03-06T13:48:01.239035 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.239719 #21351] INFO -- py3-201923-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:48:01.240298 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:14.406219 +I, [2020-03-06T13:48:01.240830 #21351] INFO -- py3-201923-windows-10-1809: Duration: 1405.942 ms +I, [2020-03-06T13:48:01.241595 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.242227 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.242838 #21351] INFO -- py3-201923-windows-10-1809: pid: +I, [2020-03-06T13:48:01.243351 #21351] INFO -- py3-201923-windows-10-1809: 2812 +I, [2020-03-06T13:48:01.243879 #21351] INFO -- py3-201923-windows-10-1809: retcode: +I, [2020-03-06T13:48:01.244386 #21351] INFO -- py3-201923-windows-10-1809: 0 +I, [2020-03-06T13:48:01.244962 #21351] INFO -- py3-201923-windows-10-1809: stderr: +I, [2020-03-06T13:48:01.245455 #21351] INFO -- py3-201923-windows-10-1809: stdout: +I, [2020-03-06T13:48:01.245954 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.246475 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal +I, [2020-03-06T13:48:01.246909 #21351] INFO -- py3-201923-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:48:01.247391 #21351] INFO -- py3-201923-windows-10-1809: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers +I, [2020-03-06T13:48:01.247817 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.248228 #21351] INFO -- py3-201923-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:48:01.248742 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:15.812161 +I, [2020-03-06T13:48:01.249226 #21351] INFO -- py3-201923-windows-10-1809: Duration: 1296.868 ms +I, [2020-03-06T13:48:01.249800 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.250293 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.250731 #21351] INFO -- py3-201923-windows-10-1809: pid: +I, [2020-03-06T13:48:01.251112 #21351] INFO -- py3-201923-windows-10-1809: 3048 +I, [2020-03-06T13:48:01.251541 #21351] INFO -- py3-201923-windows-10-1809: retcode: +I, [2020-03-06T13:48:01.251983 #21351] INFO -- py3-201923-windows-10-1809: 0 +I, [2020-03-06T13:48:01.252610 #21351] INFO -- py3-201923-windows-10-1809: stderr: +I, [2020-03-06T13:48:01.253053 #21351] INFO -- py3-201923-windows-10-1809: stdout: +I, [2020-03-06T13:48:01.253709 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.254509 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:48:01.255077 #21351] INFO -- py3-201923-windows-10-1809: Function: reg.present +I, [2020-03-06T13:48:01.255644 #21351] INFO -- py3-201923-windows-10-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:48:01.256173 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.256659 #21351] INFO -- py3-201923-windows-10-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:48:01.257332 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:17.124623 +I, [2020-03-06T13:48:01.257943 #21351] INFO -- py3-201923-windows-10-1809: Duration: 7812.745 ms +I, [2020-03-06T13:48:01.258661 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.259255 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.259882 #21351] INFO -- py3-201923-windows-10-1809: reg: +I, [2020-03-06T13:48:01.260368 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.260767 #21351] INFO -- py3-201923-windows-10-1809: Added: +I, [2020-03-06T13:48:01.261291 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.261802 #21351] INFO -- py3-201923-windows-10-1809: Entry: +I, [2020-03-06T13:48:01.262364 #21351] INFO -- py3-201923-windows-10-1809: SystemDefaultTlsVersions +I, [2020-03-06T13:48:01.262886 #21351] INFO -- py3-201923-windows-10-1809: Inheritance: +I, [2020-03-06T13:48:01.263388 #21351] INFO -- py3-201923-windows-10-1809: True +I, [2020-03-06T13:48:01.263779 #21351] INFO -- py3-201923-windows-10-1809: Key: +I, [2020-03-06T13:48:01.264162 #21351] INFO -- py3-201923-windows-10-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:48:01.264666 #21351] INFO -- py3-201923-windows-10-1809: Owner: +I, [2020-03-06T13:48:01.265093 #21351] INFO -- py3-201923-windows-10-1809: None +I, [2020-03-06T13:48:01.265472 #21351] INFO -- py3-201923-windows-10-1809: Perms: +I, [2020-03-06T13:48:01.265861 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.266230 #21351] INFO -- py3-201923-windows-10-1809: Deny: +I, [2020-03-06T13:48:01.266574 #21351] INFO -- py3-201923-windows-10-1809: None +I, [2020-03-06T13:48:01.267068 #21351] INFO -- py3-201923-windows-10-1809: Grant: +I, [2020-03-06T13:48:01.267480 #21351] INFO -- py3-201923-windows-10-1809: None +I, [2020-03-06T13:48:01.267874 #21351] INFO -- py3-201923-windows-10-1809: Value: +I, [2020-03-06T13:48:01.268275 #21351] INFO -- py3-201923-windows-10-1809: 1 +I, [2020-03-06T13:48:01.268661 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.269089 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:48:01.269500 #21351] INFO -- py3-201923-windows-10-1809: Function: reg.present +I, [2020-03-06T13:48:01.269942 #21351] INFO -- py3-201923-windows-10-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:48:01.270316 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.270708 #21351] INFO -- py3-201923-windows-10-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:48:01.271222 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:24.937368 +I, [2020-03-06T13:48:01.271642 #21351] INFO -- py3-201923-windows-10-1809: Duration: 203.43 ms +I, [2020-03-06T13:48:01.272067 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.272407 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.272817 #21351] INFO -- py3-201923-windows-10-1809: reg: +I, [2020-03-06T13:48:01.273177 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.273584 #21351] INFO -- py3-201923-windows-10-1809: Added: +I, [2020-03-06T13:48:01.273997 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.274470 #21351] INFO -- py3-201923-windows-10-1809: Entry: +I, [2020-03-06T13:48:01.275032 #21351] INFO -- py3-201923-windows-10-1809: SystemDefaultTlsVersions +I, [2020-03-06T13:48:01.275515 #21351] INFO -- py3-201923-windows-10-1809: Inheritance: +I, [2020-03-06T13:48:01.276071 #21351] INFO -- py3-201923-windows-10-1809: True +I, [2020-03-06T13:48:01.276585 #21351] INFO -- py3-201923-windows-10-1809: Key: +I, [2020-03-06T13:48:01.277120 #21351] INFO -- py3-201923-windows-10-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:48:01.277614 #21351] INFO -- py3-201923-windows-10-1809: Owner: +I, [2020-03-06T13:48:01.278174 #21351] INFO -- py3-201923-windows-10-1809: None +I, [2020-03-06T13:48:01.278704 #21351] INFO -- py3-201923-windows-10-1809: Perms: +I, [2020-03-06T13:48:01.279244 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.279781 #21351] INFO -- py3-201923-windows-10-1809: Deny: +I, [2020-03-06T13:48:01.280274 #21351] INFO -- py3-201923-windows-10-1809: None +I, [2020-03-06T13:48:01.280716 #21351] INFO -- py3-201923-windows-10-1809: Grant: +I, [2020-03-06T13:48:01.281089 #21351] INFO -- py3-201923-windows-10-1809: None +I, [2020-03-06T13:48:01.281651 #21351] INFO -- py3-201923-windows-10-1809: Value: +I, [2020-03-06T13:48:01.282215 #21351] INFO -- py3-201923-windows-10-1809: 1 +I, [2020-03-06T13:48:01.282752 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.283267 #21351] INFO -- py3-201923-windows-10-1809: ID: manually.update_git_repo-ng +I, [2020-03-06T13:48:01.283812 #21351] INFO -- py3-201923-windows-10-1809: Function: archive.extracted +I, [2020-03-06T13:48:01.284337 #21351] INFO -- py3-201923-windows-10-1809: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:48:01.284852 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.285391 #21351] INFO -- py3-201923-windows-10-1809: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:48:01.285891 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:25.140798 +I, [2020-03-06T13:48:01.286387 #21351] INFO -- py3-201923-windows-10-1809: Duration: 858.833 ms +I, [2020-03-06T13:48:01.286800 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.287243 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.287700 #21351] INFO -- py3-201923-windows-10-1809: directories_created: +I, [2020-03-06T13:48:01.288147 #21351] INFO -- py3-201923-windows-10-1809: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:48:01.288527 #21351] INFO -- py3-201923-windows-10-1809: extracted_files: +I, [2020-03-06T13:48:01.288869 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ +I, [2020-03-06T13:48:01.289220 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:48:01.289568 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:48:01.289899 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:48:01.290274 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:48:01.294628 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:48:01.295348 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:48:01.295941 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:48:01.296445 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:48:01.296906 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:48:01.298138 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:48:01.298836 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:48:01.299444 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:48:01.300007 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:48:01.300612 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:48:01.301168 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:48:01.301736 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:48:01.302283 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:48:01.302792 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:48:01.303371 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:48:01.303935 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:48:01.304480 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:48:01.305013 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:48:01.305674 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:48:01.306134 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:48:01.306549 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:48:01.307114 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:48:01.307644 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:48:01.308224 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:48:01.308766 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:48:01.309271 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:48:01.309804 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:48:01.310365 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:48:01.310870 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:48:01.311431 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:48:01.312029 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:48:01.312504 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:48:01.312972 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:48:01.313412 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:48:01.313846 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:48:01.314317 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:48:01.314826 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:48:01.315298 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:48:01.315836 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:48:01.316353 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:48:01.316906 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:48:01.317422 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:48:01.317946 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:48:01.318432 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:48:01.318969 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:48:01.319494 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:48:01.320035 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:48:01.320527 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:48:01.321000 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:48:01.321412 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:48:01.321837 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:48:01.322255 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:48:01.322684 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:48:01.323122 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:48:01.323654 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:48:01.324124 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:48:01.324562 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:48:01.324972 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:48:01.325408 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:48:01.325854 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:48:01.326342 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:48:01.326828 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:48:01.327275 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:48:01.327708 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:48:01.328120 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:48:01.328571 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:48:01.328987 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:48:01.329515 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:48:01.330006 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:48:01.330498 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:48:01.330919 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:48:01.331361 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:48:01.331797 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:48:01.332242 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:48:01.332765 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:48:01.333230 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:48:01.333685 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:48:01.334103 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:48:01.334546 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:48:01.335085 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:48:01.335644 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:48:01.336221 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:48:01.336811 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:48:01.337368 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:48:01.337902 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:48:01.338467 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:48:01.339015 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:48:01.339642 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:48:01.340284 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:48:01.340889 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:48:01.341509 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:48:01.342048 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:48:01.342607 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:48:01.343158 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:48:01.343760 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:48:01.344382 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:48:01.344981 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:48:01.345575 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:48:01.346154 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:48:01.346682 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:48:01.347232 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:48:01.347769 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:48:01.348343 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:48:01.348915 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:48:01.349468 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:48:01.349930 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:48:01.350354 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:48:01.350787 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:48:01.351227 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:48:01.351665 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:48:01.352206 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:48:01.352691 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:48:01.353248 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:48:01.353770 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:48:01.354402 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:48:01.354918 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:48:01.355358 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:48:01.355800 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:48:01.356289 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:48:01.356891 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:48:01.357462 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:48:01.358049 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:48:01.358585 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:48:01.359127 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:48:01.359640 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:48:01.360168 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:48:01.364805 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:48:01.365418 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:48:01.365951 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:48:01.366443 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:48:01.366894 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:48:01.367298 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:48:01.367695 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:48:01.368068 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:48:01.368484 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:48:01.368994 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:48:01.369433 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:48:01.369949 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:48:01.370457 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:48:01.371091 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:48:01.371654 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:48:01.372164 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:48:01.372655 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:48:01.373158 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:48:01.373816 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:48:01.374463 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:48:01.375128 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:48:01.375737 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:48:01.376297 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:48:01.376745 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:48:01.377187 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:48:01.377665 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:48:01.378098 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:48:01.378572 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:48:01.379022 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:48:01.379576 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:48:01.380086 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:48:01.380545 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:48:01.380963 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:48:01.381474 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:48:01.381923 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:48:01.382446 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:48:01.382901 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:48:01.383338 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:48:01.383743 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:48:01.384712 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:48:01.385193 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:48:01.385590 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:48:01.385991 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:48:01.386435 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:48:01.386877 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:48:01.387293 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:48:01.387805 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:48:01.388320 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:48:01.388799 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:48:01.389282 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:48:01.389737 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:48:01.390199 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:48:01.390623 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:48:01.391086 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:48:01.391621 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:48:01.392119 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:48:01.392594 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:48:01.393087 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:48:01.393561 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:48:01.394116 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:48:01.394675 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:48:01.395231 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:48:01.395756 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:48:01.396414 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:48:01.396921 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:48:01.397344 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:48:01.397800 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:48:01.398266 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:48:01.398744 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:48:01.399185 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:48:01.399718 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:48:01.400179 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:48:01.400669 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:48:01.401111 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:48:01.401536 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:48:01.401954 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:48:01.402359 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:48:01.402783 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:48:01.403185 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:48:01.403622 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:48:01.404068 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:48:01.404496 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:48:01.405043 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:48:01.405507 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:48:01.405918 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:48:01.406339 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:48:01.406742 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:48:01.407114 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:48:01.407483 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:48:01.407960 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:48:01.408420 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:48:01.408965 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:48:01.409428 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:48:01.409895 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:48:01.410315 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:48:01.410787 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:48:01.411273 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:48:01.411819 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:48:01.412336 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:48:01.412849 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:48:01.413352 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:48:01.413796 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:48:01.414256 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:48:01.414684 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:48:01.415300 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:48:01.415730 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:48:01.416122 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:48:01.416569 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:48:01.417021 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:48:01.417453 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:48:01.417906 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:48:01.418463 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:48:01.418997 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:48:01.419597 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:48:01.420148 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:48:01.420712 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:48:01.421275 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:48:01.421783 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:48:01.422436 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:48:01.422920 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:48:01.423622 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:48:01.424289 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:48:01.424935 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:48:01.425544 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:48:01.431617 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:48:01.432286 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:48:01.433896 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:48:01.434658 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:48:01.435262 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:48:01.435849 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:48:01.436418 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:48:01.437003 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:48:01.437559 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:48:01.438033 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:48:01.438508 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:48:01.439003 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:48:01.439481 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:48:01.439969 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:48:01.440509 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:48:01.441083 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:48:01.441631 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:48:01.442214 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:48:01.442824 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:48:01.443378 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:48:01.443942 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:48:01.444480 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:48:01.445068 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:48:01.445637 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:48:01.446233 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:48:01.446766 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:48:01.447214 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:48:01.447660 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:48:01.448113 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:48:01.448595 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:48:01.449135 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:48:01.449631 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:48:01.450048 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:48:01.450483 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:48:01.450912 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:48:01.451350 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:48:01.451859 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:48:01.452396 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:48:01.452865 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:48:01.453295 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:48:01.453743 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:48:01.454205 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:48:01.454669 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:48:01.455240 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:48:01.455734 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:48:01.456236 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:48:01.456812 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:48:01.457383 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:48:01.457927 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:48:01.458479 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:48:01.459110 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:48:01.459751 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:48:01.460394 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:48:01.460948 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:48:01.461547 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:48:01.462105 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:48:01.462681 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:48:01.566449 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:48:01.566996 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:48:01.567562 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:48:01.568140 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:48:01.568739 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:48:01.569294 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:48:01.571122 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:48:01.572707 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:48:01.574493 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:48:01.576588 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:48:01.577519 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:48:01.578486 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:48:01.579289 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:48:01.580139 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:48:01.581449 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:48:01.582566 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:48:01.583537 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:48:01.584939 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:48:01.586432 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:48:01.587765 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:48:01.589319 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:48:01.590916 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:48:01.592606 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:48:01.595060 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:48:01.595578 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:48:01.596872 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:48:01.598430 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:48:01.600055 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:48:01.601462 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:48:01.602284 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:48:01.603126 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:48:01.603666 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:48:01.605223 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:48:01.606703 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:48:01.608136 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:48:01.609095 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:48:01.610420 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:48:01.612186 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:48:01.613121 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:48:01.613868 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:48:01.614925 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:48:01.616454 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:48:01.618326 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:48:01.620350 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:48:01.621711 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:48:01.623220 #21351] INFO -- py3-201923-windows-10-1809: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:48:01.624844 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.626112 #21351] INFO -- py3-201923-windows-10-1809: ID: rename-extract +I, [2020-03-06T13:48:01.627232 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.628022 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.629066 #21351] INFO -- py3-201923-windows-10-1809: Comment: file.rename: True +I, [2020-03-06T13:48:01.630060 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:25.999631 +I, [2020-03-06T13:48:01.631095 #21351] INFO -- py3-201923-windows-10-1809: Duration: 0.0 ms +I, [2020-03-06T13:48:01.636883 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.637471 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.638023 #21351] INFO -- py3-201923-windows-10-1809: file.rename: +I, [2020-03-06T13:48:01.638458 #21351] INFO -- py3-201923-windows-10-1809: True +I, [2020-03-06T13:48:01.638906 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.639422 #21351] INFO -- py3-201923-windows-10-1809: ID: pkg.refresh_db +I, [2020-03-06T13:48:01.639849 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.640197 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.640554 #21351] INFO -- py3-201923-windows-10-1809: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:48:01.640878 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:25.999631 +I, [2020-03-06T13:48:01.641231 #21351] INFO -- py3-201923-windows-10-1809: Duration: 7781.036 ms +I, [2020-03-06T13:48:01.641672 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.642218 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.642845 #21351] INFO -- py3-201923-windows-10-1809: pkg.refresh_db: +I, [2020-03-06T13:48:01.643444 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.643912 #21351] INFO -- py3-201923-windows-10-1809: failed: +I, [2020-03-06T13:48:01.644471 #21351] INFO -- py3-201923-windows-10-1809: 0 +I, [2020-03-06T13:48:01.644876 #21351] INFO -- py3-201923-windows-10-1809: success: +I, [2020-03-06T13:48:01.645327 #21351] INFO -- py3-201923-windows-10-1809: 298 +I, [2020-03-06T13:48:01.645873 #21351] INFO -- py3-201923-windows-10-1809: total: +I, [2020-03-06T13:48:01.646459 #21351] INFO -- py3-201923-windows-10-1809: 298 +I, [2020-03-06T13:48:01.646981 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.647510 #21351] INFO -- py3-201923-windows-10-1809: ID: 7zip +I, [2020-03-06T13:48:01.647930 #21351] INFO -- py3-201923-windows-10-1809: Function: pkg.installed +I, [2020-03-06T13:48:01.648524 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.649060 #21351] INFO -- py3-201923-windows-10-1809: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:48:01.649620 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:33.799029 +I, [2020-03-06T13:48:01.650160 #21351] INFO -- py3-201923-windows-10-1809: Duration: 5404.121 ms +I, [2020-03-06T13:48:01.650627 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.651064 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.651488 #21351] INFO -- py3-201923-windows-10-1809: 7zip: +I, [2020-03-06T13:48:01.651943 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.652477 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.652933 #21351] INFO -- py3-201923-windows-10-1809: 18.06.00.0 +I, [2020-03-06T13:48:01.653454 #21351] INFO -- py3-201923-windows-10-1809: old: +I, [2020-03-06T13:48:01.653908 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.654377 #21351] INFO -- py3-201923-windows-10-1809: ID: git +I, [2020-03-06T13:48:01.654813 #21351] INFO -- py3-201923-windows-10-1809: Function: pkg.installed +I, [2020-03-06T13:48:01.655324 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.655769 #21351] INFO -- py3-201923-windows-10-1809: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:48:01.656256 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:39.218291 +I, [2020-03-06T13:48:01.656707 #21351] INFO -- py3-201923-windows-10-1809: Duration: 20344.55 ms +I, [2020-03-06T13:48:01.657141 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.657546 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.657956 #21351] INFO -- py3-201923-windows-10-1809: git: +I, [2020-03-06T13:48:01.658347 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.658749 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.659147 #21351] INFO -- py3-201923-windows-10-1809: 2.23.0.windows.1 +I, [2020-03-06T13:48:01.659543 #21351] INFO -- py3-201923-windows-10-1809: old: +I, [2020-03-06T13:48:01.659989 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.660533 #21351] INFO -- py3-201923-windows-10-1809: ID: kdiff3 +I, [2020-03-06T13:48:01.661036 #21351] INFO -- py3-201923-windows-10-1809: Function: pkg.installed +I, [2020-03-06T13:48:01.661478 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.661903 #21351] INFO -- py3-201923-windows-10-1809: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:48:01.662286 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:46:59.593244 +I, [2020-03-06T13:48:01.662670 #21351] INFO -- py3-201923-windows-10-1809: Duration: 10567.353 ms +I, [2020-03-06T13:48:01.663069 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.663468 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.663884 #21351] INFO -- py3-201923-windows-10-1809: kdiff3: +I, [2020-03-06T13:48:01.664309 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.664852 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.665424 #21351] INFO -- py3-201923-windows-10-1809: Not Found +I, [2020-03-06T13:48:01.665980 #21351] INFO -- py3-201923-windows-10-1809: old: +I, [2020-03-06T13:48:01.666478 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.667026 #21351] INFO -- py3-201923-windows-10-1809: ID: windows_environment.refresh.path +I, [2020-03-06T13:48:01.667552 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.668081 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.668594 #21351] INFO -- py3-201923-windows-10-1809: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:48:01.669118 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:47:10.160597 +I, [2020-03-06T13:48:01.669610 #21351] INFO -- py3-201923-windows-10-1809: Duration: 44.374 ms +I, [2020-03-06T13:48:01.670118 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.670607 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.671167 #21351] INFO -- py3-201923-windows-10-1809: windows_environment.refresh: +I, [2020-03-06T13:48:01.671731 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.672264 #21351] INFO -- py3-201923-windows-10-1809: PATH: +I, [2020-03-06T13:48:01.672980 #21351] INFO -- py3-201923-windows-10-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:48:01.673620 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.674065 #21351] INFO -- py3-201923-windows-10-1809: ID: chocolatey.bootstrap +I, [2020-03-06T13:48:01.674675 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.675228 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.675722 #21351] INFO -- py3-201923-windows-10-1809: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:48:01.676224 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.676789 #21351] INFO -- py3-201923-windows-10-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:48:01.677144 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.677546 #21351] INFO -- py3-201923-windows-10-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:48:01.677851 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.678221 #21351] INFO -- py3-201923-windows-10-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:48:01.678619 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.679069 #21351] INFO -- py3-201923-windows-10-1809: Installing chocolatey on this machine +I, [2020-03-06T13:48:01.679506 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.680042 #21351] INFO -- py3-201923-windows-10-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:48:01.680615 #21351] INFO -- py3-201923-windows-10-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:48:01.681013 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.681513 #21351] INFO -- py3-201923-windows-10-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:48:01.682069 #21351] INFO -- py3-201923-windows-10-1809: before you can use choco. +I, [2020-03-06T13:48:01.682661 #21351] INFO -- py3-201923-windows-10-1809: Restricting write permissions to Administrators +I, [2020-03-06T13:48:01.683077 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.683496 #21351] INFO -- py3-201923-windows-10-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:48:01.683834 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.684273 #21351] INFO -- py3-201923-windows-10-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:48:01.684693 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.685114 #21351] INFO -- py3-201923-windows-10-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:48:01.685606 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.686139 #21351] INFO -- py3-201923-windows-10-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:48:01.686519 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.686930 #21351] INFO -- py3-201923-windows-10-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:48:01.687265 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.687645 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.688006 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.688387 #21351] INFO -- py3-201923-windows-10-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:48:01.688764 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.689317 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.689790 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.690293 #21351] INFO -- py3-201923-windows-10-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:48:01.690734 #21351] INFO -- py3-201923-windows-10-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:48:01.691184 #21351] INFO -- py3-201923-windows-10-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:48:01.691606 #21351] INFO -- py3-201923-windows-10-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:48:01.692070 #21351] INFO -- py3-201923-windows-10-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:48:01.692557 #21351] INFO -- py3-201923-windows-10-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:48:01.692999 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.693424 #21351] INFO -- py3-201923-windows-10-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:48:01.693836 #21351] INFO -- py3-201923-windows-10-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:48:01.694221 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.694663 #21351] INFO -- py3-201923-windows-10-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:48:01.695130 #21351] INFO -- py3-201923-windows-10-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:48:01.695556 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.696111 #21351] INFO -- py3-201923-windows-10-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:48:01.696591 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.697140 #21351] INFO -- py3-201923-windows-10-1809: Run choco /? for a list of functions. +I, [2020-03-06T13:48:01.697597 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.698138 #21351] INFO -- py3-201923-windows-10-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:48:01.698628 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.699188 #21351] INFO -- py3-201923-windows-10-1809: first prior to using choco. +I, [2020-03-06T13:48:01.699664 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.700229 #21351] INFO -- py3-201923-windows-10-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:48:01.700703 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.701245 #21351] INFO -- py3-201923-windows-10-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:48:01.701757 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:47:10.204971 +I, [2020-03-06T13:48:01.702267 #21351] INFO -- py3-201923-windows-10-1809: Duration: 20966.777 ms +I, [2020-03-06T13:48:01.702760 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.703199 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.703664 #21351] INFO -- py3-201923-windows-10-1809: chocolatey.bootstrap: +I, [2020-03-06T13:48:01.704204 #21351] INFO -- py3-201923-windows-10-1809: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:48:01.704726 #21351] INFO -- py3-201923-windows-10-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:48:01.705219 #21351] INFO -- py3-201923-windows-10-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:48:01.711101 #21351] INFO -- py3-201923-windows-10-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:48:01.711772 #21351] INFO -- py3-201923-windows-10-1809: Installing chocolatey on this machine +I, [2020-03-06T13:48:01.712306 #21351] INFO -- py3-201923-windows-10-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:48:01.712909 #21351] INFO -- py3-201923-windows-10-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:48:01.713492 #21351] INFO -- py3-201923-windows-10-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:48:01.714120 #21351] INFO -- py3-201923-windows-10-1809: before you can use choco. +I, [2020-03-06T13:48:01.714749 #21351] INFO -- py3-201923-windows-10-1809: Restricting write permissions to Administrators +I, [2020-03-06T13:48:01.715365 #21351] INFO -- py3-201923-windows-10-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:48:01.715997 #21351] INFO -- py3-201923-windows-10-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:48:01.716623 #21351] INFO -- py3-201923-windows-10-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:48:01.717220 #21351] INFO -- py3-201923-windows-10-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:48:01.717862 #21351] INFO -- py3-201923-windows-10-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:48:01.718414 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.718929 #21351] INFO -- py3-201923-windows-10-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:48:01.719400 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.719842 #21351] INFO -- py3-201923-windows-10-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:48:01.720361 #21351] INFO -- py3-201923-windows-10-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:48:01.720956 #21351] INFO -- py3-201923-windows-10-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:48:01.721529 #21351] INFO -- py3-201923-windows-10-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:48:01.722118 #21351] INFO -- py3-201923-windows-10-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:48:01.722673 #21351] INFO -- py3-201923-windows-10-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:48:01.723154 #21351] INFO -- py3-201923-windows-10-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:48:01.723625 #21351] INFO -- py3-201923-windows-10-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:48:01.724098 #21351] INFO -- py3-201923-windows-10-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:48:01.724554 #21351] INFO -- py3-201923-windows-10-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:48:01.725006 #21351] INFO -- py3-201923-windows-10-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:48:01.725506 #21351] INFO -- py3-201923-windows-10-1809: Run choco /? for a list of functions. +I, [2020-03-06T13:48:01.726043 #21351] INFO -- py3-201923-windows-10-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:48:01.726552 #21351] INFO -- py3-201923-windows-10-1809: first prior to using choco. +I, [2020-03-06T13:48:01.727067 #21351] INFO -- py3-201923-windows-10-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:48:01.727570 #21351] INFO -- py3-201923-windows-10-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:48:01.728069 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.728530 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:48:01.729087 #21351] INFO -- py3-201923-windows-10-1809: Function: chocolatey.installed +I, [2020-03-06T13:48:01.729681 #21351] INFO -- py3-201923-windows-10-1809: Name: notepadplusplus +I, [2020-03-06T13:48:01.730307 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.730957 #21351] INFO -- py3-201923-windows-10-1809: Comment: +I, [2020-03-06T13:48:01.731649 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:47:31.171748 +I, [2020-03-06T13:48:01.732341 #21351] INFO -- py3-201923-windows-10-1809: Duration: 15874.571 ms +I, [2020-03-06T13:48:01.732984 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.733609 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.734146 #21351] INFO -- py3-201923-windows-10-1809: notepadplusplus: +I, [2020-03-06T13:48:01.734658 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.735149 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.735618 #21351] INFO -- py3-201923-windows-10-1809: - 7.8.5 +I, [2020-03-06T13:48:01.736104 #21351] INFO -- py3-201923-windows-10-1809: old: +I, [2020-03-06T13:48:01.736677 #21351] INFO -- py3-201923-windows-10-1809: notepadplusplus.install: +I, [2020-03-06T13:48:01.737104 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.737640 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.738110 #21351] INFO -- py3-201923-windows-10-1809: - 7.8.5 +I, [2020-03-06T13:48:01.738580 #21351] INFO -- py3-201923-windows-10-1809: old: +I, [2020-03-06T13:48:01.739064 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.739458 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:48:01.739917 #21351] INFO -- py3-201923-windows-10-1809: Function: chocolatey.installed +I, [2020-03-06T13:48:01.740352 #21351] INFO -- py3-201923-windows-10-1809: Name: windirstat +I, [2020-03-06T13:48:01.740806 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.741249 #21351] INFO -- py3-201923-windows-10-1809: Comment: +I, [2020-03-06T13:48:01.741688 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:47:47.062061 +I, [2020-03-06T13:48:01.742105 #21351] INFO -- py3-201923-windows-10-1809: Duration: 6437.4 ms +I, [2020-03-06T13:48:01.742492 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.742895 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.743302 #21351] INFO -- py3-201923-windows-10-1809: windirstat: +I, [2020-03-06T13:48:01.743739 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.744204 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.744648 #21351] INFO -- py3-201923-windows-10-1809: - 1.1.2.20161210 +I, [2020-03-06T13:48:01.745049 #21351] INFO -- py3-201923-windows-10-1809: old: +I, [2020-03-06T13:48:01.745464 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.745973 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:48:01.746422 #21351] INFO -- py3-201923-windows-10-1809: Function: dism.feature_installed +I, [2020-03-06T13:48:01.746934 #21351] INFO -- py3-201923-windows-10-1809: Name: TelnetClient +I, [2020-03-06T13:48:01.747347 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.747778 #21351] INFO -- py3-201923-windows-10-1809: Comment: Installed TelnetClient +I, [2020-03-06T13:48:01.748197 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:47:53.499461 +I, [2020-03-06T13:48:01.748610 #21351] INFO -- py3-201923-windows-10-1809: Duration: 6876.319 ms +I, [2020-03-06T13:48:01.749031 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.749441 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.749864 #21351] INFO -- py3-201923-windows-10-1809: feature: +I, [2020-03-06T13:48:01.750296 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.750727 #21351] INFO -- py3-201923-windows-10-1809: new: +I, [2020-03-06T13:48:01.751102 #21351] INFO -- py3-201923-windows-10-1809: TelnetClient +I, [2020-03-06T13:48:01.751465 #21351] INFO -- py3-201923-windows-10-1809: pid: +I, [2020-03-06T13:48:01.751833 #21351] INFO -- py3-201923-windows-10-1809: 3768 +I, [2020-03-06T13:48:01.752179 #21351] INFO -- py3-201923-windows-10-1809: retcode: +I, [2020-03-06T13:48:01.752549 #21351] INFO -- py3-201923-windows-10-1809: 0 +I, [2020-03-06T13:48:01.752943 #21351] INFO -- py3-201923-windows-10-1809: stderr: +I, [2020-03-06T13:48:01.753296 #21351] INFO -- py3-201923-windows-10-1809: stdout: +I, [2020-03-06T13:48:01.753684 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.754087 #21351] INFO -- py3-201923-windows-10-1809: ID: windows.module.system.reboot +I, [2020-03-06T13:48:01.754525 #21351] INFO -- py3-201923-windows-10-1809: Function: module.run +I, [2020-03-06T13:48:01.754869 #21351] INFO -- py3-201923-windows-10-1809: Result: True +I, [2020-03-06T13:48:01.755217 #21351] INFO -- py3-201923-windows-10-1809: Comment: system.reboot: True +I, [2020-03-06T13:48:01.755581 #21351] INFO -- py3-201923-windows-10-1809: Started: 10:48:00.375780 +I, [2020-03-06T13:48:01.755920 #21351] INFO -- py3-201923-windows-10-1809: Duration: 248.859 ms +I, [2020-03-06T13:48:01.756264 #21351] INFO -- py3-201923-windows-10-1809: Changes: +I, [2020-03-06T13:48:01.756668 #21351] INFO -- py3-201923-windows-10-1809: ---------- +I, [2020-03-06T13:48:01.757025 #21351] INFO -- py3-201923-windows-10-1809: system.reboot: +I, [2020-03-06T13:48:01.757441 #21351] INFO -- py3-201923-windows-10-1809: True +I, [2020-03-06T13:48:01.757811 #21351] INFO -- py3-201923-windows-10-1809: +I, [2020-03-06T13:48:01.758221 #21351] INFO -- py3-201923-windows-10-1809: Summary for local +I, [2020-03-06T13:48:01.758614 #21351] INFO -- py3-201923-windows-10-1809: ------------- +I, [2020-03-06T13:48:01.758950 #21351] INFO -- py3-201923-windows-10-1809: Succeeded: 25 (changed=25) +I, [2020-03-06T13:48:01.759432 #21351] INFO -- py3-201923-windows-10-1809: Failed: 0 +I, [2020-03-06T13:48:01.759936 #21351] INFO -- py3-201923-windows-10-1809: ------------- +I, [2020-03-06T13:48:01.760451 #21351] INFO -- py3-201923-windows-10-1809: Total states run: 25 +I, [2020-03-06T13:48:01.760953 #21351] INFO -- py3-201923-windows-10-1809: Total run time: 113.373 s +I, [2020-03-06T13:48:01.795903 #21351] INFO -- py3-201923-windows-10-1809: Downloading files from +I, [2020-03-06T13:48:01.975574 #21351] INFO -- py3-201923-windows-10-1809: Finished converging (2m27.74s). +I, [2020-03-06T13:48:01.975780 #21351] INFO -- py3-201923-windows-10-1809: -----> Setting up ... +I, [2020-03-06T13:48:01.978623 #21351] INFO -- py3-201923-windows-10-1809: Finished setting up (0m0.00s). +I, [2020-03-06T13:48:01.978818 #21351] INFO -- py3-201923-windows-10-1809: -----> Verifying ... +I, [2020-03-06T13:48:03.179044 #21351] INFO -- py3-201923-windows-10-1809: Loaded default +I, [2020-03-06T13:48:54.210328 #21351] INFO -- py3-201923-windows-10-1809: Finished verifying (0m52.22s). +I, [2020-03-06T13:48:54.210498 #21351] INFO -- py3-201923-windows-10-1809: Finished testing (4m27.30s). +I, [2020-03-06T13:48:54.211962 #21351] INFO -- py3-201923-windows-10-1809: -----> Destroying ... +I, [2020-03-06T13:49:03.979563 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:49:05.577487 #21351] INFO -- py3-201923-windows-10-1809: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:49:06.263145 #21351] INFO -- py3-201923-windows-10-1809: Vagrant instance destroyed. +I, [2020-03-06T13:49:06.264467 #21351] INFO -- py3-201923-windows-10-1809: Finished destroying (0m12.05s). diff --git a/test/results/py3-201923-windows-10-1809.log b/test/results/py3-201923-windows-10-1809.log new file mode 100644 index 0000000..a338f0a --- /dev/null +++ b/test/results/py3-201923-windows-10-1809.log @@ -0,0 +1,1093 @@ +Fri Mar 6 13:44:08 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +Author: Peter Mudd +Date: Fri Mar 6 12:43:24 2020 -0500 + + feat: support saltstack 3000 +CURRENT BRANCH COMMIT ID +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +CURRENT RELEASE TAG +v1.0.0 +-----> Starting Test Kitchen (v2.3.4) +-----> Cleaning up any prior instances of +-----> Destroying ... + Finished destroying (0m0.00s). +-----> Testing +-----> Creating ... + Bringing machine 'default' up with 'virtualbox' provider... + ==> default: Cloning VM... + ==> default: Matching MAC address for NAT networking... + ==> default: Checking if box 'StefanScherer/windows_10' version '2019.05.15' is up to date... + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1809-4a86be33-9c43-4d65-acbd-22c24aa53156 + ==> default: Clearing any previously set network interfaces... + ==> default: Preparing network interfaces based on configuration... + default: Adapter 1: nat + ==> default: Forwarding ports... + default: 3389 (guest) => 3389 (host) (adapter 1) + default: 5985 (guest) => 55985 (host) (adapter 1) + default: 5986 (guest) => 55986 (host) (adapter 1) + default: 22 (guest) => 2222 (host) (adapter 1) + ==> default: Running 'pre-boot' VM customizations... + ==> default: Booting VM... + ==> default: Waiting for machine to boot. This may take a few minutes... + default: WinRM address: 127.0.0.1:55985 + default: WinRM username: vagrant + default: WinRM execution_time_limit: PT2H + default: WinRM transport: negotiate + ==> default: Machine booted and ready! + ==> default: Checking for guest additions in VM... + default: The guest additions on this VM do not match the installed version of + default: VirtualBox! In most cases this is fine, but in rare cases it can + default: prevent things such as shared folders from working properly. If you see + default: shared folder errors, please make sure the guest additions within the + default: virtual machine match the version of VirtualBox you have installed on + default: your host and reload your VM. + default: + default: Guest Additions Version: 5.2.30 + default: VirtualBox Version: 6.1 + ==> default: Mounting shared folders... + default: /results => /mnt/c/tmp/results + ==> default: Machine not provisioned because `--no-provision` is specified. + [WinRM] Established + + Vagrant instance created. + Finished creating (1m7.31s). +-----> Converging ... + Preparing files for transfer + Preparing salt-minion + Preparing pillars into /srv/pillar + pillars-from-files is deprecated in favor of pillars_from_files + Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula + Preparing state_top + Preparing scripts into /etc/salt/scripts + + + Directory: C:\ + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:45 AM temp + Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + Installing Salt minion + Starting the Salt minion service + Salt minion successfully installed + You asked for latest and you have 2019.2.3 installed, sweet! + + + + + Directory: C:\Users\vagrant\AppData\Local\Temp + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:45 AM kitchen + + + Transferring files to + c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + At line:1 char:131 + + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException + + FullyQualifiedErrorId : NativeCommandError + + + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + + + local: + ---------- + ID: windows.state.system.hostname.saltstack1 + Function: system.hostname + Name: saltstack1 + Result: True + Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot + Started: 10:46:07.125270 + Duration: 108.786 ms + Changes: + ---------- + hostname: + saltstack1 + ---------- + ID: windows.state.system.computer_desc.description + Function: system.computer_desc + Name: Saltstack Computer Description + Result: True + Comment: Computer description successfully changed to 'Saltstack Computer Description' + Started: 10:46:07.234056 + Duration: 2656.551 ms + Changes: + ---------- + new: + Saltstack Computer Description + old: + ---------- + ID: windows.state.timezone.system.America/New_York + Function: timezone.system + Name: America/New_York + Result: True + Comment: Set timezone America/New_York + Started: 10:46:09.921513 + Duration: 16.717 ms + Changes: + ---------- + timezone: + America/New_York + ---------- + ID: windows.module.environ.items + Function: module.run + Result: True + Comment: environ.items: Success + Started: 10:46:09.938230 + Duration: 14.887 ms + Changes: + ---------- + environ.items: + ---------- + ALLUSERSPROFILE: + C:\ProgramData + APPDATA: + C:\Users\vagrant\AppData\Roaming + COMMONPROGRAMFILES: + C:\Program Files\Common Files + COMMONPROGRAMFILES(X86): + C:\Program Files (x86)\Common Files + COMMONPROGRAMW6432: + C:\Program Files\Common Files + COMPUTERNAME: + VAGRANT-10 + COMSPEC: + C:\Windows\system32\cmd.exe + DRIVERDATA: + C:\Windows\System32\Drivers\DriverData + HOMEDRIVE: + C: + HOMEPATH: + \Users\vagrant + LOCALAPPDATA: + C:\Users\vagrant\AppData\Local + LOGONSERVER: + \\VAGRANT-10 + NUMBER_OF_PROCESSORS: + 2 + ONEDRIVE: + C:\Users\vagrant\OneDrive + OS: + Windows_NT + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 + PATHEXT: + .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL + PROCESSOR_ARCHITECTURE: + AMD64 + PROCESSOR_IDENTIFIER: + Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_LEVEL: + 6 + PROCESSOR_REVISION: + 8e0c + PROGRAMDATA: + C:\ProgramData + PROGRAMFILES: + C:\Program Files + PROGRAMFILES(X86): + C:\Program Files (x86) + PROGRAMW6432: + C:\Program Files + PROMPT: + $P$G + PSMODULEPATH: + C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules + PUBLIC: + C:\Users\Public + PYTHON: + C:\salt\bin\python.exe + SALTDIR: + C:\salt + SCRIPT: + C:\salt\bin\Scripts\salt-call + SYSTEMDRIVE: + C: + SYSTEMROOT: + C:\Windows + TEMP: + C:\Users\vagrant\AppData\Local\Temp + TMP: + C:\Users\vagrant\AppData\Local\Temp + USERDOMAIN: + VAGRANT-10 + USERDOMAIN_ROAMINGPROFILE: + VAGRANT-10 + USERNAME: + vagrant + USERPROFILE: + C:\Users\vagrant + WINDIR: + C:\Windows + ---------- + ID: windows.module.user.current + Function: module.run + Result: True + Comment: user.current: VAGRANT-10\vagrant + Started: 10:46:09.953117 + Duration: 16.421 ms + Changes: + ---------- + user.current: + VAGRANT-10\vagrant + ---------- + ID: windows.module.status.uptime + Function: module.run + Result: True + Comment: status.uptime: 0:01:21.984242 + Started: 10:46:09.969538 + Duration: 30.56 ms + Changes: + ---------- + status.uptime: + 0:01:21.984242 + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection + Function: cmd.run + Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run + Started: 10:46:10.000098 + Duration: 1702.608 ms + Changes: + ---------- + pid: + 3276 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet + Function: cmd.run + Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run + Started: 10:46:11.702706 + Duration: 1265.732 ms + Changes: + ---------- + pid: + 1308 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run + Started: 10:46:12.968438 + Duration: 1437.781 ms + Changes: + ---------- + pid: + 6592 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run + Started: 10:46:14.406219 + Duration: 1405.942 ms + Changes: + ---------- + pid: + 2812 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal + Function: cmd.run + Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run + Started: 10:46:15.812161 + Duration: 1296.868 ms + Changes: + ---------- + pid: + 3048 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:46:17.124623 + Duration: 7812.745 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:46:24.937368 + Duration: 203.43 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: manually.update_git_repo-ng + Function: archive.extracted + Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + Result: True + Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs + Started: 10:46:25.140798 + Duration: 858.833 ms + Changes: + ---------- + directories_created: + - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ + extracted_files: + - salt-winrepo-ng-master/ + - salt-winrepo-ng-master/.gitignore + - salt-winrepo-ng-master/.travis.yml + - salt-winrepo-ng-master/.travis/ + - salt-winrepo-ng-master/.travis/requirements.txt + - salt-winrepo-ng-master/.travis/tests.py + - salt-winrepo-ng-master/7zip.sls + - salt-winrepo-ng-master/LICENSE + - salt-winrepo-ng-master/README.md + - salt-winrepo-ng-master/_config.yml + - salt-winrepo-ng-master/activeperl_x64.sls + - salt-winrepo-ng-master/activeperl_x86.sls + - salt-winrepo-ng-master/adobeair.sls + - salt-winrepo-ng-master/adobereader-dc-classic.sls + - salt-winrepo-ng-master/adobereader-xi.sls + - salt-winrepo-ng-master/adobereader.sls + - salt-winrepo-ng-master/adobeshockwaveplayer.sls + - salt-winrepo-ng-master/adv-ip-scanner.sls + - salt-winrepo-ng-master/adv-port-scanner.sls + - salt-winrepo-ng-master/advancedlogging.sls + - salt-winrepo-ng-master/anydesk-msi.sls + - salt-winrepo-ng-master/anydesk.sls + - salt-winrepo-ng-master/applicationrequestrouting.sls + - salt-winrepo-ng-master/aspnet-mvc1.sls + - salt-winrepo-ng-master/atom.sls + - salt-winrepo-ng-master/audacity.sls + - salt-winrepo-ng-master/auditbeat/ + - salt-winrepo-ng-master/auditbeat/init.sls + - salt-winrepo-ng-master/auditbeat/install.cmd + - salt-winrepo-ng-master/auditbeat/install.ps1 + - salt-winrepo-ng-master/auditbeat/remove.cmd + - salt-winrepo-ng-master/autohotkey.sls + - salt-winrepo-ng-master/autoit.sls + - salt-winrepo-ng-master/autopsy.sls + - salt-winrepo-ng-master/awscli.sls + - salt-winrepo-ng-master/azuredatastudio.sls + - salt-winrepo-ng-master/bandizip.sls + - salt-winrepo-ng-master/belarc-advisor.sls + - salt-winrepo-ng-master/bginfo4x.sls + - salt-winrepo-ng-master/bitnami-nginxstack.sls + - salt-winrepo-ng-master/bitvise.sls + - salt-winrepo-ng-master/blender.sls + - salt-winrepo-ng-master/bootracer.sls + - salt-winrepo-ng-master/bulk_extractor.sls + - salt-winrepo-ng-master/bulkrenameutility.sls + - salt-winrepo-ng-master/ccleaner-slim.sls + - salt-winrepo-ng-master/ccleaner.sls + - salt-winrepo-ng-master/cdburnerxp.sls + - salt-winrepo-ng-master/cdroller.sls + - salt-winrepo-ng-master/check-mk-agent-msi.sls + - salt-winrepo-ng-master/check-mk-agent.sls + - salt-winrepo-ng-master/chocolatey/ + - salt-winrepo-ng-master/chocolatey/init.sls + - salt-winrepo-ng-master/chocolatey/install.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.ps1 + - salt-winrepo-ng-master/chrome-rdp.sls + - salt-winrepo-ng-master/chrome.sls + - salt-winrepo-ng-master/clamav.sls + - salt-winrepo-ng-master/clamwin.sls + - salt-winrepo-ng-master/classicshell.sls + - salt-winrepo-ng-master/clink.sls + - salt-winrepo-ng-master/conemu.sls + - salt-winrepo-ng-master/cpu-z.sls + - salt-winrepo-ng-master/curl.sls + - salt-winrepo-ng-master/cyberduck-cli.sls + - salt-winrepo-ng-master/cyberduck-msi.sls + - salt-winrepo-ng-master/cyberduck.sls + - salt-winrepo-ng-master/defraggler.sls + - salt-winrepo-ng-master/docs/ + - salt-winrepo-ng-master/docs/ReadMe.md + - salt-winrepo-ng-master/dotnet.sls + - salt-winrepo-ng-master/dropbox.sls + - salt-winrepo-ng-master/duplicati.sls + - salt-winrepo-ng-master/dvdstyler.sls + - salt-winrepo-ng-master/echo-desktop.sls + - salt-winrepo-ng-master/eea.sls + - salt-winrepo-ng-master/emet.sls + - salt-winrepo-ng-master/emsisoft-anti-malware.sls + - salt-winrepo-ng-master/eraser.sls + - salt-winrepo-ng-master/erlang/ + - salt-winrepo-ng-master/erlang/init.sls + - salt-winrepo-ng-master/erlang/install.cmd + - salt-winrepo-ng-master/evernote.sls + - salt-winrepo-ng-master/fiddler.sls + - salt-winrepo-ng-master/filebeat/ + - salt-winrepo-ng-master/filebeat/init.sls + - salt-winrepo-ng-master/filebeat/install.cmd + - salt-winrepo-ng-master/filebeat/install.ps1 + - salt-winrepo-ng-master/filebeat/remove.cmd + - salt-winrepo-ng-master/filehippo-app-manager.sls + - salt-winrepo-ng-master/filezilla.sls + - salt-winrepo-ng-master/firefox-esr_x64.sls + - salt-winrepo-ng-master/firefox-esr_x86.sls + - salt-winrepo-ng-master/firefox_x64.sls + - salt-winrepo-ng-master/firefox_x86.sls + - salt-winrepo-ng-master/functionbeat/ + - salt-winrepo-ng-master/functionbeat/init.sls + - salt-winrepo-ng-master/functionbeat/install.cmd + - salt-winrepo-ng-master/functionbeat/install.ps1 + - salt-winrepo-ng-master/functionbeat/remove.cmd + - salt-winrepo-ng-master/gedit.sls + - salt-winrepo-ng-master/gimp.sls + - salt-winrepo-ng-master/git-extensions.sls + - salt-winrepo-ng-master/git.sls + - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls + - salt-winrepo-ng-master/gnucash.sls + - salt-winrepo-ng-master/golang.sls + - salt-winrepo-ng-master/goodsync.sls + - salt-winrepo-ng-master/gow.sls + - salt-winrepo-ng-master/gpg4win-light.sls + - salt-winrepo-ng-master/gpg4win-vanilla.sls + - salt-winrepo-ng-master/gpg4win/ + - salt-winrepo-ng-master/gpg4win/init.sls + - salt-winrepo-ng-master/gpg4win/silent.ini + - salt-winrepo-ng-master/graylog-collector-sidecar.sls + - salt-winrepo-ng-master/grepwin.sls + - salt-winrepo-ng-master/gvim.sls + - salt-winrepo-ng-master/handbrake.sls + - salt-winrepo-ng-master/heartbeat/ + - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp + - salt-winrepo-ng-master/heartbeat/init.sls + - salt-winrepo-ng-master/heartbeat/install.cmd + - salt-winrepo-ng-master/heartbeat/install.ps1 + - salt-winrepo-ng-master/heartbeat/remove.cmd + - salt-winrepo-ng-master/hipchat.sls + - salt-winrepo-ng-master/hostsfileeditor.sls + - salt-winrepo-ng-master/hwinfo.sls + - salt-winrepo-ng-master/ice.sls + - salt-winrepo-ng-master/icecast.sls + - salt-winrepo-ng-master/icloud.sls + - salt-winrepo-ng-master/iismediaservices.sls + - salt-winrepo-ng-master/influx-capacitor.sls + - salt-winrepo-ng-master/inkscape.sls + - salt-winrepo-ng-master/intellij-community.sls + - salt-winrepo-ng-master/intellij-ultimate.sls + - salt-winrepo-ng-master/internet-evidence-finder.sls + - salt-winrepo-ng-master/irfanview-plugins.sls + - salt-winrepo-ng-master/irfanview.sls + - salt-winrepo-ng-master/isapirewrite-lite.sls + - salt-winrepo-ng-master/itunes.sls + - salt-winrepo-ng-master/jdk8.sls + - salt-winrepo-ng-master/jre.sls + - salt-winrepo-ng-master/jre8.sls + - salt-winrepo-ng-master/jungledisk-server-management.sls + - salt-winrepo-ng-master/jungledisk-server.sls + - salt-winrepo-ng-master/jungledisk-workgroup.sls + - salt-winrepo-ng-master/kdiff3.sls + - salt-winrepo-ng-master/keepass-2x.sls + - salt-winrepo-ng-master/keepass.sls + - salt-winrepo-ng-master/lastpass.sls + - salt-winrepo-ng-master/lazarus.sls + - salt-winrepo-ng-master/libreoffice.sls + - salt-winrepo-ng-master/logparser.sls + - salt-winrepo-ng-master/maas360bootanalyzer.sls + - salt-winrepo-ng-master/malwarebytes.sls + - salt-winrepo-ng-master/mariadb.sls + - salt-winrepo-ng-master/mercurial.sls + - salt-winrepo-ng-master/messageanalyzer.sls + - salt-winrepo-ng-master/metricbeat/ + - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp + - salt-winrepo-ng-master/metricbeat/init.sls + - salt-winrepo-ng-master/metricbeat/install.cmd + - salt-winrepo-ng-master/metricbeat/install.ps1 + - salt-winrepo-ng-master/metricbeat/remove.cmd + - salt-winrepo-ng-master/microsoft-build-tools.sls + - salt-winrepo-ng-master/mikogo.sls + - salt-winrepo-ng-master/miktex-basic.sls + - salt-winrepo-ng-master/mongodb.sls + - salt-winrepo-ng-master/ms-mbsa.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls + - salt-winrepo-ng-master/mucommander.sls + - salt-winrepo-ng-master/mysql-essential.sls + - salt-winrepo-ng-master/mysql-installer-community.sls + - salt-winrepo-ng-master/mysql-workbench.sls + - salt-winrepo-ng-master/never10.sls + - salt-winrepo-ng-master/newrelic-infra.sls + - salt-winrepo-ng-master/nextcloud-client.sls + - salt-winrepo-ng-master/nmap.sls + - salt-winrepo-ng-master/node.js-lts.sls + - salt-winrepo-ng-master/node.js.sls + - salt-winrepo-ng-master/nomacs.sls + - salt-winrepo-ng-master/npp.sls + - salt-winrepo-ng-master/nsclient.sls + - salt-winrepo-ng-master/nsis.sls + - salt-winrepo-ng-master/ntp.sls + - salt-winrepo-ng-master/nunit-console.sls + - salt-winrepo-ng-master/nxlog.sls + - salt-winrepo-ng-master/octopus-tentacle.sls + - salt-winrepo-ng-master/openlp.sls + - salt-winrepo-ng-master/openoffice.sls + - salt-winrepo-ng-master/openvpn.sls + - salt-winrepo-ng-master/osquery.sls + - salt-winrepo-ng-master/ossec-agent.sls + - salt-winrepo-ng-master/owncloud.sls + - salt-winrepo-ng-master/packetbeat/ + - salt-winrepo-ng-master/packetbeat/init.sls + - salt-winrepo-ng-master/packetbeat/install.cmd + - salt-winrepo-ng-master/packetbeat/install.ps1 + - salt-winrepo-ng-master/packetbeat/remove.cmd + - salt-winrepo-ng-master/pandoc.sls + - salt-winrepo-ng-master/parallels-client-15.sls + - salt-winrepo-ng-master/pass4win.sls + - salt-winrepo-ng-master/passware-kit-agent.sls + - salt-winrepo-ng-master/passware-kit-forensic.sls + - salt-winrepo-ng-master/patchmypc-free.sls + - salt-winrepo-ng-master/pdf24creator.sls + - salt-winrepo-ng-master/pdfcreator.sls + - salt-winrepo-ng-master/peazip.sls + - salt-winrepo-ng-master/pgadmin4.sls + - salt-winrepo-ng-master/pgina.sls + - salt-winrepo-ng-master/pidgin.sls + - salt-winrepo-ng-master/postgresql.sls + - salt-winrepo-ng-master/powerbi-desktop.sls + - salt-winrepo-ng-master/powershell-core.sls + - salt-winrepo-ng-master/prometheus-wmi-exporter.sls + - salt-winrepo-ng-master/putty.sls + - salt-winrepo-ng-master/pycharm-pro/ + - salt-winrepo-ng-master/pycharm-pro/init.sls + - salt-winrepo-ng-master/pycharm-pro/silent.config + - salt-winrepo-ng-master/python2_x64.sls + - salt-winrepo-ng-master/python2_x86.sls + - salt-winrepo-ng-master/python3_x64.sls + - salt-winrepo-ng-master/python3_x86.sls + - salt-winrepo-ng-master/qemu.sls + - salt-winrepo-ng-master/queueexplorerpro.sls + - salt-winrepo-ng-master/quicktime.sls + - salt-winrepo-ng-master/rabbitmq.sls + - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls + - salt-winrepo-ng-master/rakudo-star_x64.sls + - salt-winrepo-ng-master/rasclient.sls + - salt-winrepo-ng-master/rdcman.sls + - salt-winrepo-ng-master/rocketchat.sls + - salt-winrepo-ng-master/rubyinstaller_x64.sls + - salt-winrepo-ng-master/rubyinstaller_x86.sls + - salt-winrepo-ng-master/salt-minion-py2.sls + - salt-winrepo-ng-master/salt-minion-py3.sls + - salt-winrepo-ng-master/sandboxie.sls + - salt-winrepo-ng-master/scaleout.sls + - salt-winrepo-ng-master/secunia.psi.sls + - salt-winrepo-ng-master/sensu.sls + - salt-winrepo-ng-master/sharpdevelop.sls + - salt-winrepo-ng-master/skitch.sls + - salt-winrepo-ng-master/skype-msi.sls + - salt-winrepo-ng-master/skype.sls + - salt-winrepo-ng-master/slack-machine-msi.sls + - salt-winrepo-ng-master/slack-user-msi.sls + - salt-winrepo-ng-master/slack.sls + - salt-winrepo-ng-master/smartmontools.sls + - salt-winrepo-ng-master/snmptools.sls + - salt-winrepo-ng-master/soapui.sls + - salt-winrepo-ng-master/software-informer.sls + - salt-winrepo-ng-master/sourcetree.sls + - salt-winrepo-ng-master/spybot-anti-beacon.sls + - salt-winrepo-ng-master/spybot.sls + - salt-winrepo-ng-master/sscserv-free.sls + - salt-winrepo-ng-master/stayawake/ + - salt-winrepo-ng-master/stayawake/init.sls + - salt-winrepo-ng-master/stayawake/install.cmd + - salt-winrepo-ng-master/steam.sls + - salt-winrepo-ng-master/stellarium.sls + - salt-winrepo-ng-master/strawberryperl_x64.sls + - salt-winrepo-ng-master/strawberryperl_x86.sls + - salt-winrepo-ng-master/stunnel.sls + - salt-winrepo-ng-master/subinacl.sls + - salt-winrepo-ng-master/sumatrapdf.sls + - salt-winrepo-ng-master/svn.sls + - salt-winrepo-ng-master/teamviewer.sls + - salt-winrepo-ng-master/teamviewer_host.sls + - salt-winrepo-ng-master/teracopy.sls + - salt-winrepo-ng-master/texmaker.sls + - salt-winrepo-ng-master/texniccenter.sls + - salt-winrepo-ng-master/texstudio.sls + - salt-winrepo-ng-master/texworks.sls + - salt-winrepo-ng-master/thunderbird.sls + - salt-winrepo-ng-master/tightvnc.sls + - salt-winrepo-ng-master/todotxt.net.sls + - salt-winrepo-ng-master/todour.sls + - salt-winrepo-ng-master/tortoise-bzr.sls + - salt-winrepo-ng-master/tortoise-git.sls + - salt-winrepo-ng-master/tortoise-hg.sls + - salt-winrepo-ng-master/tortoise-svn.sls + - salt-winrepo-ng-master/truecrypt.sls + - salt-winrepo-ng-master/ultradefrag.sls + - salt-winrepo-ng-master/urlrewrite.sls + - salt-winrepo-ng-master/usbdlm.sls + - salt-winrepo-ng-master/vagrant.sls + - salt-winrepo-ng-master/vcforpython27.sls + - salt-winrepo-ng-master/vcxsrv.sls + - salt-winrepo-ng-master/verysleepy.sls + - salt-winrepo-ng-master/veyon.sls + - salt-winrepo-ng-master/virtualbox.sls + - salt-winrepo-ng-master/viscosity.sls + - salt-winrepo-ng-master/vivaldi.sls + - salt-winrepo-ng-master/vlc.sls + - salt-winrepo-ng-master/vs-community.sls + - salt-winrepo-ng-master/vs_remotetools_2017.sls + - salt-winrepo-ng-master/vscode.sls + - salt-winrepo-ng-master/vsee.sls + - salt-winrepo-ng-master/wamp-server-3.sls + - salt-winrepo-ng-master/wamp-stack.sls + - salt-winrepo-ng-master/webdeploy.sls + - salt-winrepo-ng-master/webplatforminstaller.sls + - salt-winrepo-ng-master/win-app-manager.sls + - salt-winrepo-ng-master/windirstat.sls + - salt-winrepo-ng-master/winhttpcertcfg.sls + - salt-winrepo-ng-master/winlogbeat/ + - salt-winrepo-ng-master/winlogbeat/init.sls + - salt-winrepo-ng-master/winlogbeat/install.cmd + - salt-winrepo-ng-master/winlogbeat/install.ps1 + - salt-winrepo-ng-master/winlogbeat/remove.cmd + - salt-winrepo-ng-master/winmerge.sls + - salt-winrepo-ng-master/winmtr.sls + - salt-winrepo-ng-master/winpcap.sls + - salt-winrepo-ng-master/winrar.sls + - salt-winrepo-ng-master/winscp.sls + - salt-winrepo-ng-master/wireshark.sls + - salt-winrepo-ng-master/wmi_provider/ + - salt-winrepo-ng-master/wmi_provider/README.md + - salt-winrepo-ng-master/wmi_provider/answer.txt + - salt-winrepo-ng-master/wmi_provider/init.sls + - salt-winrepo-ng-master/wmi_provider/majsetup.reg + - salt-winrepo-ng-master/wscc.sls + - salt-winrepo-ng-master/wufuc.sls + - salt-winrepo-ng-master/xampp.sls + - salt-winrepo-ng-master/xming.sls + - salt-winrepo-ng-master/yubikey-manager.sls + - salt-winrepo-ng-master/yubikey-personalization-tool.sls + - salt-winrepo-ng-master/zabbix-agent.sls + - salt-winrepo-ng-master/zipinstaller/ + - salt-winrepo-ng-master/zipinstaller/init.sls + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic + - salt-winrepo-ng-master/zoom.sls + ---------- + ID: rename-extract + Function: module.run + Result: True + Comment: file.rename: True + Started: 10:46:25.999631 + Duration: 0.0 ms + Changes: + ---------- + file.rename: + True + ---------- + ID: pkg.refresh_db + Function: module.run + Result: True + Comment: check_cmd determined the state succeeded + Started: 10:46:25.999631 + Duration: 7781.036 ms + Changes: + ---------- + pkg.refresh_db: + ---------- + failed: + 0 + success: + 298 + total: + 298 + ---------- + ID: 7zip + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:46:33.799029 + Duration: 5404.121 ms + Changes: + ---------- + 7zip: + ---------- + new: + 18.06.00.0 + old: + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 10:46:39.218291 + Duration: 20344.55 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: + ---------- + ID: kdiff3 + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: kdiff3 + Started: 10:46:59.593244 + Duration: 10567.353 ms + Changes: + ---------- + kdiff3: + ---------- + new: + Not Found + old: + ---------- + ID: windows_environment.refresh.path + Function: module.run + Result: True + Comment: windows_environment.refresh: Success + Started: 10:47:10.160597 + Duration: 44.374 ms + Changes: + ---------- + windows_environment.refresh: + ---------- + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + ---------- + ID: chocolatey.bootstrap + Function: module.run + Result: True + Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. + + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + + Downloading 7-Zip commandline tool prior to extraction. + + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + + Installing chocolatey on this machine + + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + + We are setting up the Chocolatey package repository. + + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + + + Creating Chocolatey folders if they do not already exist. + + + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + + You can call choco from anywhere, command line or powershell by typing choco. + + Run choco /? for a list of functions. + + You may need to shut down and restart powershell and/or consoles + + first prior to using choco. + + Ensuring chocolatey commands are on the path + + Ensuring chocolatey.nupkg is in the lib folder + Started: 10:47:10.204971 + Duration: 20966.777 ms + Changes: + ---------- + chocolatey.bootstrap: + Getting latest version of the Chocolatey package for download. + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + Downloading 7-Zip commandline tool prior to extraction. + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + Installing chocolatey on this machine + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + We are setting up the Chocolatey package repository. + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + Creating Chocolatey folders if they do not already exist. + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + You can call choco from anywhere, command line or powershell by typing choco. + Run choco /? for a list of functions. + You may need to shut down and restart powershell and/or consoles + first prior to using choco. + Ensuring chocolatey commands are on the path + Ensuring chocolatey.nupkg is in the lib folder + ---------- + ID: windows.system.packages.chocolatey.notepadplusplus + Function: chocolatey.installed + Name: notepadplusplus + Result: True + Comment: + Started: 10:47:31.171748 + Duration: 15874.571 ms + Changes: + ---------- + notepadplusplus: + ---------- + new: + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 + old: + ---------- + ID: windows.system.packages.chocolatey.windirstat + Function: chocolatey.installed + Name: windirstat + Result: True + Comment: + Started: 10:47:47.062061 + Duration: 6437.4 ms + Changes: + ---------- + windirstat: + ---------- + new: + - 1.1.2.20161210 + old: + ---------- + ID: windows.system.desktop.optional_features.installed.TelnetClient + Function: dism.feature_installed + Name: TelnetClient + Result: True + Comment: Installed TelnetClient + Started: 10:47:53.499461 + Duration: 6876.319 ms + Changes: + ---------- + feature: + ---------- + new: + TelnetClient + pid: + 3768 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.module.system.reboot + Function: module.run + Result: True + Comment: system.reboot: True + Started: 10:48:00.375780 + Duration: 248.859 ms + Changes: + ---------- + system.reboot: + True + + Summary for local + ------------- + Succeeded: 25 (changed=25) + Failed: 0 + ------------- + Total states run: 25 + Total run time: 113.373 s + Downloading files from + Finished converging (2m27.74s). +-----> Setting up ... + Finished setting up (0m0.00s). +-----> Verifying ... + Loaded default +`execution expired`, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 +`execution expired`, target may be rebooting after highstate. Remaining retries: 18 +INFO: Got pillar from the target minion using WinRM. + +Profile: SaltStack Windows Formula (default) +Version: (not specified) +Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 + + ✔ Operating System: + ✔ windows_10_enterprise_evaluation should include "windows" + ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled + ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed + ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey + ✔ Chocolatey package notepadplusplus should be installed + ✔ Chocolatey package windirstat should be installed + ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" + ↺ Windows Features: salt.formula.windows.system.server.features + ↺ Skipped control due to only_if condition: only supported on servers + ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap + ✔ Command: `choco` should exist + ✔ Windows Timezone: salt.states.timezone.system + ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set + ✔ Windows Optional Features: salt.states.win_dism.feature_installed + ✔ Windows Optional Feature: `TelnetClient` should be installed + ✔ Windows Computer Hostname: salt.states.win_system.hostname + ✔ System Information hostname should cmp == "saltstack1" + ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" + ✔ Windows Computer Description: salt.states.win_system.computer_desc + ✔ Powershell stdout should match "Saltstack Computer Description" + ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed + ✔ System Package Git should be installed + ✔ System Package 7-Zip should be installed + ✔ System Package 7-Zip version should cmp == "18.06.00.0" + ✔ System Package KDiff3 should be installed + + +Profile Summary: 9 successful controls, 0 control failures, 1 control skipped +Test Summary: 19 successful, 0 failures, 1 skipped + Finished verifying (0m52.22s). + Finished testing (4m27.30s). +-----> Destroying ... + ==> default: Forcing shutdown of VM... + ==> default: Destroying VM and associated drives... + Vagrant instance destroyed. + Finished destroying (0m12.05s). +-----> Test Kitchen is finished. (4m51.54s) +KITCHEN TEST EXIT CODE +0 diff --git a/test/results/py3-201923-windows-10-1809.salt.log b/test/results/py3-201923-windows-10-1809.salt.log new file mode 100755 index 0000000..febcccd --- /dev/null +++ b/test/results/py3-201923-windows-10-1809.salt.log @@ -0,0 +1,30159 @@ +2020-03-06 10:45:58,344 [salt.loader :747 ][DEBUG ][6476] Grains refresh requested. Refreshing grains. +2020-03-06 10:45:58,344 [salt.config :2190][DEBUG ][6476] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:45:58,359 [salt.config :2334][DEBUG ][6476] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:45:58,359 [salt.config :2190][DEBUG ][6476] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:46:03,781 [salt.pillar :57 ][DEBUG ][6476] Determining pillar cache +2020-03-06 10:46:03,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:03,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:03,859 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:46:03,859 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:46:03,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015617847442626953 +2020-03-06 10:46:03,874 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:46:03,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:46:03,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:03,874 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded confirm_top.confirm_top +2020-03-06 10:46:03,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded compound_match.match +2020-03-06 10:46:03,890 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6476] compound_match: vagrant-10 ? * +2020-03-06 10:46:03,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded glob_match.match +2020-03-06 10:46:03,890 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6476] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:46:03,890 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:46:03,905 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:46:03,905 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:03,905 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 10:46:03,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 10:46:03,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015627384185791016 +2020-03-06 10:46:03,953 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:03,953 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:04,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded state.highstate +2020-03-06 10:46:04,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded direct_call.execute +2020-03-06 10:46:04,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded grains.get +2020-03-06 10:46:04,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded saltutil.is_running +2020-03-06 10:46:04,202 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded config.get +2020-03-06 10:46:04,219 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: test, ret: _|- +2020-03-06 10:46:04,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:04,531 [git.cmd :722 ][DEBUG ][6476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:46:04,562 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:04,562 [salt.fileserver :502 ][DEBUG ][6476] Updating roots fileserver cache +2020-03-06 10:46:04,609 [salt.state :736 ][DEBUG ][6476] Gathering pillar data for state run +2020-03-06 10:46:04,609 [salt.state :750 ][DEBUG ][6476] Finished gathering pillar data for state run +2020-03-06 10:46:04,624 [salt.state :966 ][INFO ][6476] Loading fresh modules for state activity +2020-03-06 10:46:04,659 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:04,659 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:04,667 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:46:04,671 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:46:04,671 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:46:04,671 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:04,671 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:46:04,671 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:46:04,671 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:04,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:04,702 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:04,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.04660844802856445 +2020-03-06 10:46:04,718 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:46:04,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:46:04,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:04,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded confirm_top.confirm_top +2020-03-06 10:46:04,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded compound_match.match +2020-03-06 10:46:04,718 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6476] compound_match: vagrant-10 ? * +2020-03-06 10:46:04,735 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded glob_match.match +2020-03-06 10:46:04,735 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6476] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:46:04,735 [salt.fileclient :1368][DEBUG ][6476] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:46:04,735 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded saltutil.sync_all +2020-03-06 10:46:04,735 [salt.loaded.int.module.saltutil:968 ][DEBUG ][6476] Syncing all +2020-03-06 10:46:04,735 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:46:04,766 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:04,780 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:04,780 [salt.utils.extmods:90 ][INFO ][6476] Syncing clouds for environment 'base' +2020-03-06 10:46:04,780 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_clouds, for base) +2020-03-06 10:46:04,780 [salt.fileclient :234 ][INFO ][6476] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:46:04,780 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:04,796 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:46:04,796 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:46:04,814 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:04,814 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:04,814 [salt.utils.extmods:90 ][INFO ][6476] Syncing beacons for environment 'base' +2020-03-06 10:46:04,814 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_beacons, for base) +2020-03-06 10:46:04,814 [salt.fileclient :234 ][INFO ][6476] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:46:04,833 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:04,833 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:46:04,833 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:46:04,858 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:04,858 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:04,858 [salt.utils.extmods:90 ][INFO ][6476] Syncing modules for environment 'base' +2020-03-06 10:46:04,858 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_modules, for base) +2020-03-06 10:46:04,858 [salt.fileclient :234 ][INFO ][6476] Caching directory '_modules/' for environment 'base' +2020-03-06 10:46:04,858 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:04,874 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:46:04,874 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:46:04,874 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:46:04,874 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:04,874 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:46:04,874 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:46:04,891 [salt.utils.extmods:119 ][INFO ][6476] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:46:04,891 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:46:04,891 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:04,915 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:04,915 [salt.utils.extmods:90 ][INFO ][6476] Syncing states for environment 'base' +2020-03-06 10:46:04,923 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_states, for base) +2020-03-06 10:46:04,923 [salt.fileclient :234 ][INFO ][6476] Caching directory '_states/' for environment 'base' +2020-03-06 10:46:04,923 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:04,923 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:46:04,923 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:46:04,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:04,952 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:04,952 [salt.utils.extmods:90 ][INFO ][6476] Syncing sdb for environment 'base' +2020-03-06 10:46:04,968 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_sdb, for base) +2020-03-06 10:46:04,968 [salt.fileclient :234 ][INFO ][6476] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:46:04,968 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:04,968 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:46:04,984 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:46:05,000 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,015 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,015 [salt.utils.extmods:90 ][INFO ][6476] Syncing grains for environment 'base' +2020-03-06 10:46:05,015 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_grains, for base) +2020-03-06 10:46:05,015 [salt.fileclient :234 ][INFO ][6476] Caching directory '_grains/' for environment 'base' +2020-03-06 10:46:05,015 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,015 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:46:05,015 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:46:05,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,046 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,046 [salt.utils.extmods:90 ][INFO ][6476] Syncing renderers for environment 'base' +2020-03-06 10:46:05,046 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_renderers, for base) +2020-03-06 10:46:05,046 [salt.fileclient :234 ][INFO ][6476] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:46:05,046 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,062 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:46:05,062 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:46:05,082 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,094 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,094 [salt.utils.extmods:90 ][INFO ][6476] Syncing returners for environment 'base' +2020-03-06 10:46:05,094 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_returners, for base) +2020-03-06 10:46:05,094 [salt.fileclient :234 ][INFO ][6476] Caching directory '_returners/' for environment 'base' +2020-03-06 10:46:05,094 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,094 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:46:05,094 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:46:05,125 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,141 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,141 [salt.utils.extmods:90 ][INFO ][6476] Syncing output for environment 'base' +2020-03-06 10:46:05,141 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_output, for base) +2020-03-06 10:46:05,141 [salt.fileclient :234 ][INFO ][6476] Caching directory '_output/' for environment 'base' +2020-03-06 10:46:05,141 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,141 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:46:05,141 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:46:05,172 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,172 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,172 [salt.utils.extmods:90 ][INFO ][6476] Syncing utils for environment 'base' +2020-03-06 10:46:05,172 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_utils, for base) +2020-03-06 10:46:05,187 [salt.fileclient :234 ][INFO ][6476] Caching directory '_utils/' for environment 'base' +2020-03-06 10:46:05,187 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,187 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:46:05,187 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:46:05,281 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,281 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,298 [salt.utils.extmods:90 ][INFO ][6476] Syncing log_handlers for environment 'base' +2020-03-06 10:46:05,298 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:46:05,313 [salt.fileclient :234 ][INFO ][6476] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:46:05,313 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,313 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:46:05,313 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:46:05,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,343 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,343 [salt.utils.extmods:90 ][INFO ][6476] Syncing proxy for environment 'base' +2020-03-06 10:46:05,343 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_proxy, for base) +2020-03-06 10:46:05,343 [salt.fileclient :234 ][INFO ][6476] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:46:05,343 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,358 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:46:05,358 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:46:05,388 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,390 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,390 [salt.utils.extmods:90 ][INFO ][6476] Syncing engines for environment 'base' +2020-03-06 10:46:05,390 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_engines, for base) +2020-03-06 10:46:05,390 [salt.fileclient :234 ][INFO ][6476] Caching directory '_engines/' for environment 'base' +2020-03-06 10:46:05,390 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,390 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:46:05,405 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:46:05,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,421 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,438 [salt.utils.extmods:90 ][INFO ][6476] Syncing thorium for environment 'base' +2020-03-06 10:46:05,438 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_thorium, for base) +2020-03-06 10:46:05,438 [salt.fileclient :234 ][INFO ][6476] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:46:05,438 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,438 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:46:05,438 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:46:05,454 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,468 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,468 [salt.utils.extmods:90 ][INFO ][6476] Syncing serializers for environment 'base' +2020-03-06 10:46:05,468 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_serializers, for base) +2020-03-06 10:46:05,468 [salt.fileclient :234 ][INFO ][6476] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:46:05,468 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,468 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:46:05,468 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:46:05,501 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,501 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,501 [salt.utils.extmods:90 ][INFO ][6476] Syncing matchers for environment 'base' +2020-03-06 10:46:05,512 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_matchers, for base) +2020-03-06 10:46:05,512 [salt.fileclient :234 ][INFO ][6476] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:46:05,512 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,515 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:46:05,515 [salt.utils.extmods:79 ][INFO ][6476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:46:05,534 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:05,546 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:05,546 [salt.utils.extmods:90 ][INFO ][6476] Syncing pillar for environment 'base' +2020-03-06 10:46:05,546 [salt.utils.extmods:94 ][INFO ][6476] Loading cache from salt://_pillar, for base) +2020-03-06 10:46:05,546 [salt.fileclient :234 ][INFO ][6476] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:46:05,546 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:05,546 [salt.utils.extmods:109 ][DEBUG ][6476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:46:05,546 [salt.state :1000][DEBUG ][6476] Refreshing modules... +2020-03-06 10:46:05,563 [salt.state :966 ][INFO ][6476] Loading fresh modules for state activity +2020-03-06 10:46:05,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:05,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:05,609 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:46:05,609 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:46:05,609 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:46:05,609 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:46:05,621 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,624 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:46:05,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:46:05,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:05,624 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,624 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,624 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:46:05,624 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,641 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:46:05,658 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,658 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,658 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,658 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,658 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:46:05,672 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:05,672 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:05,672 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:05,672 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,672 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:46:05,672 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:05,672 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:05,686 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:05,687 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,687 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:46:05,687 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:05,687 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:05,687 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:46:05,687 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,703 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:46:05,703 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:05,703 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:05,703 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:05,703 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,703 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:46:05,703 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:05,703 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:05,719 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:05,719 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,719 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:46:05,719 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded config.get +2020-03-06 10:46:05,736 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded grains.filter_by +2020-03-06 10:46:05,736 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.11145806312561035 +2020-03-06 10:46:05,736 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .states + - .modules + - .system +2020-03-06 10:46:05,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.states', '.modules', '.system'])]) +2020-03-06 10:46:05,736 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:05,736 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:46:05,747 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:46:05,747 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:46:05,749 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,749 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:46:05,749 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:46:05,749 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:05,749 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:46:05,749 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:46:05,749 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:46:05,749 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,767 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:46:05,798 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,798 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,818 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,818 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,818 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:05,818 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:05,831 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:05,847 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.0971231460571289 +2020-03-06 10:46:05,847 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.state.system.computer_desc.description: + system.computer_desc: + - name: Saltstack Computer Description + - require: + - windows.state.system.hostname.saltstack1 +windows.state.system.hostname.saltstack1: + system.hostname: + - name: saltstack1 +windows.state.timezone.system.America/New_York: + timezone.system: + - name: America/New_York + - utc: False + + + +2020-03-06 10:46:05,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) +2020-03-06 10:46:05,859 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:05,859 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:46:05,859 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:46:05,859 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:46:05,859 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,859 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:46:05,859 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:46:05,859 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:05,875 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:46:05,875 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:46:05,909 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,918 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,922 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,922 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:05,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:05,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:05,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:05,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:05,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:05,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:05,952 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:05,952 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:05,952 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:05,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.09351444244384766 +2020-03-06 10:46:05,952 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.module.environ.items: + module.run: + - environ.items: +windows.module.system.reboot: + module.run: + - system.reboot: + - timeout: 5 + - in_seconds: True + - only_on_pending_reboot: True + - wait_for_reboot: False + - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + - order: last +windows.module.user.current: + module.run: + - user.current: + - sam: True +windows.module.status.uptime: + module.run: + - status.uptime: + - human_readable: True + - require: + - windows.module.user.current + + +2020-03-06 10:46:05,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) +2020-03-06 10:46:05,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:05,968 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:46:05,968 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:46:05,968 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:46:05,968 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:46:05,968 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:05,968 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:46:05,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:46:05,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:05,984 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,984 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:05,984 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:05,984 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,009 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,009 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,016 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,049 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.08071660995483398 +2020-03-06 10:46:06,049 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +# sls: windows.system windows system +# slspath: windows/system windows system +# sls: os_windows.desktop.features os_windows features +# slspath: os_windows/desktop os_windows desktop +include: + # - .settings + # + # - .dsc + # + - .packages + - .server + - .desktop + + +2020-03-06 10:46:06,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.packages', '.server', '.desktop'])]) +2020-03-06 10:46:06,049 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,049 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:46:06,049 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:46:06,049 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:46:06,049 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:46:06,049 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,063 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:46:06,063 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:46:06,063 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,063 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,063 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .providers + - .appx + - .powershell + - .saltstack + - .chocolatey +2020-03-06 10:46:06,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) +2020-03-06 10:46:06,063 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,063 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:46:06,078 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:46:06,078 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:46:06,078 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:46:06,078 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,078 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:46:06,078 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:46:06,078 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,078 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .remove-provisioned-apps + +2020-03-06 10:46:06,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.remove-provisioned-apps'])]) +2020-03-06 10:46:06,094 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.015645265579223633 +2020-03-06 10:46:06,094 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:46:06,094 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:46:06,094 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:46:06,094 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,094 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:46:06,094 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:46:06,094 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,094 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,094 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .removed + +2020-03-06 10:46:06,109 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.removed'])]) +2020-03-06 10:46:06,109 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,109 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:46:06,109 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:46:06,109 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:46:06,109 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,109 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:46:06,109 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:46:06,109 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,126 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,126 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,140 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,140 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,140 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,140 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,157 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,157 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,157 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,157 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,157 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,170 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,171 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,171 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.061896562576293945 +2020-03-06 10:46:06,171 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + + + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection: + cmd.run: + - name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet: + cmd.run: + - name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal: + cmd.run: + - name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}" + + + + + + + +2020-03-06 10:46:06,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) +2020-03-06 10:46:06,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.016422748565673828 +2020-03-06 10:46:06,187 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:46:06,187 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:46:06,187 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:46:06,187 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:46:06,187 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,187 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:46:06,187 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:46:06,202 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,202 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .modules + - .framework + +2020-03-06 10:46:06,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.framework'])]) +2020-03-06 10:46:06,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,202 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:46:06,202 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:46:06,202 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:46:06,202 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:46:06,202 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,218 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:46:06,218 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:46:06,218 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,218 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .v4_5 + +2020-03-06 10:46:06,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.v4_5'])]) +2020-03-06 10:46:06,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,218 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:46:06,234 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:46:06,234 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:46:06,234 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:46:06,234 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,234 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:46:06,234 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:46:06,234 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,252 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.018726348876953125 +2020-03-06 10:46:06,252 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .tls1_2 + +2020-03-06 10:46:06,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.tls1_2'])]) +2020-03-06 10:46:06,252 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,252 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:46:06,252 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:46:06,252 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:46:06,252 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,265 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:46:06,265 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:46:06,265 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,265 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,265 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,281 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,281 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,281 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,297 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,297 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,297 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,297 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,297 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,297 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,312 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,312 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,312 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.0463099479675293 +2020-03-06 10:46:06,312 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +# https://docs.microsoft.com/en-us/security/solving-tls1-problem +# https://blog.pauby.com/post/force-powershell-to-use-tls-1-2/ +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:64 +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:32 +# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - use_32bit_registry: true + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} +2020-03-06 10:46:06,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) +2020-03-06 10:46:06,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,333 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:46:06,333 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:46:06,333 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:46:06,333 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:46:06,333 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,343 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:46:06,343 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:46:06,343 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,343 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:46:06,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:46:06,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,343 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:46:06,343 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:46:06,343 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:46:06,358 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,358 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:46:06,358 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:46:06,358 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,358 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:46:06,358 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:46:06,358 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:46:06,374 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,374 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:46:06,374 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,374 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,390 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,390 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,405 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,405 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,405 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,405 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,405 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,405 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,421 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,421 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,421 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,421 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,438 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:46:06,438 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:46:06,438 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:46:06,438 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,438 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:46:06,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pkg.version +2020-03-06 10:46:06,531 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][6476] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:46:06,531 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][6476] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:46:06,531 [salt.loaded.int.module.win_pkg:935 ][INFO ][6476] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:46:06,531 [salt.loaded.int.module.win_pkg:954 ][INFO ][6476] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:46:06,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cp.cache_dir +2020-03-06 10:46:06,563 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded roots.envs +2020-03-06 10:46:06,563 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:46:06,563 [salt.fileclient :234 ][INFO ][6476] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:46:06,576 [salt.fileserver :159 ][DEBUG ][6476] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:46:06,577 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded reg.list_keys +2020-03-06 10:46:06,577 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,593 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,593 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,593 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,593 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,593 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,593 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,609 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.2504692077636719 +2020-03-06 10:46:06,609 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +include: + - .windows_software_repository +7zip: + pkg.installed: + - refresh_minion_env_path: False + - version: 18.06.00.0 + - require: + - pkg.refresh_db +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db +windows_environment.refresh.path: + module.run: + - windows_environment.refresh: + - onchanges: + + - pkg: git +2020-03-06 10:46:06,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:46:06,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.014966726303100586 +2020-03-06 10:46:06,624 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:46:06,624 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:46:06,624 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:46:06,624 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,624 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:46:06,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:46:06,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,642 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.064722) +2020-03-06 10:46:06,642 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,642 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,642 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,642 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,654 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:06,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.030808210372924805 +2020-03-06 10:46:06,655 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +manually.update_git_repo-ng: + archive.extracted: + - name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + - source: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip + - skip_verify: True + - if_missing: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + +rename-extract: + module.run: + - file.rename: + - src: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng-master + - dst: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + - onchanges: + - manually.update_git_repo-ng + - onchanges_in: + - pkg.refresh_db + +pkg.refresh_db: + module.run: + - pkg.refresh_db: + - failhard: False + - check_cmd: + - dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + + - retry: + attempts: 10 + until: True + interval: 5 +2020-03-06 10:46:06,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) +2020-03-06 10:46:06,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,671 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:46:06,671 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:46:06,671 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:46:06,671 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:46:06,671 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,671 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:46:06,671 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:46:06,671 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,686 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,687 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:46:06,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:46:06,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,687 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:46:06,687 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:46:06,687 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:46:06,687 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,687 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:46:06,687 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:46:06,687 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,702 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,702 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,727 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,732 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,749 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,749 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,749 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,749 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,749 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06295013427734375 +2020-03-06 10:46:06,765 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .bootstrap +windows.system.packages.chocolatey.notepadplusplus: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: notepadplusplus + +windows.system.packages.chocolatey.windirstat: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: windirstat + - version: 1.1.2.20161210 + +2020-03-06 10:46:06,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) +2020-03-06 10:46:06,765 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,765 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:46:06,765 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:46:06,765 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:46:06,765 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,780 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:46:06,780 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:46:06,780 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,780 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,780 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,801 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,801 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,808 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,811 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,812 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,827 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.04688405990600586 +2020-03-06 10:46:06,827 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +chocolatey.bootstrap: + module.run: + - chocolatey.bootstrap: + - unless: "where.exe chocolatey" + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + +2020-03-06 10:46:06,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) +2020-03-06 10:46:06,827 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,827 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:46:06,843 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:46:06,843 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:46:06,843 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:46:06,843 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,843 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:46:06,843 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:46:06,843 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,843 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,843 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .features + +2020-03-06 10:46:06,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.features'])]) +2020-03-06 10:46:06,843 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,859 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:46:06,859 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:46:06,859 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:46:06,859 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:46:06,859 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,859 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:46:06,859 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:46:06,859 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,859 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,859 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:46:06,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:46:06,876 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,876 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:46:06,876 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:46:06,876 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:46:06,876 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,876 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:46:06,876 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:46:06,876 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,891 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:46:06,891 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:46:06,891 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:46:06,891 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,891 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:46:06,891 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,907 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:06,907 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,923 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:06,923 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,923 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:06,923 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,923 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:06,935 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:06,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:06,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:06,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.061719655990600586 +2020-03-06 10:46:06,955 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +2020-03-06 10:46:06,955 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +{} +2020-03-06 10:46:06,955 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,955 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:46:06,955 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:46:06,955 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:46:06,965 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:46:06,965 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,968 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:46:06,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:46:06,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,968 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .packages + - .optional_features + +2020-03-06 10:46:06,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.optional_features'])]) +2020-03-06 10:46:06,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,968 [salt.fileclient :1072][DEBUG ][6476] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:46:06,983 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:46:06,983 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:46:06,983 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:46:06,983 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,983 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:46:06,983 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:46:06,983 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,983 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:06,983 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .feature_installed + +2020-03-06 10:46:06,983 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('include', ['.feature_installed'])]) +2020-03-06 10:46:06,983 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:06,999 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:46:06,999 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:46:06,999 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:46:06,999 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:06,999 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:46:06,999 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:46:06,999 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:06,999 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:46:06,999 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:46:07,015 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:46:07,015 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:07,015 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:46:07,015 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:07,015 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:46:07,031 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:07,031 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:46:07,031 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:07,049 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:46:07,049 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:07,049 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:46:07,049 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:07,049 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:46:07,049 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:07,061 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:46:07,062 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:07,062 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:46:07,062 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:46:07,062 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:46:07,078 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:46:07,078 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:07,078 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:46:07,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.07829093933105469 +2020-03-06 10:46:07,078 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.system.desktop.optional_features.installed.TelnetClient: + dism.feature_installed: + - name: TelnetClient + - onlyif: > + powershell -command "if ((Get-WindowsOptionalFeature -online | + Where-Object {($_.FeatureName -eq 'TelnetClient') + -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" + +2020-03-06 10:46:07,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) +2020-03-06 10:46:07,093 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0004601478576660156 +2020-03-06 10:46:07,093 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cmd.run +2020-03-06 10:46:07,125 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded system.get_computer_desc +2020-03-06 10:46:07,125 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded system.computer_desc +2020-03-06 10:46:07,125 [salt.state :1819][INFO ][6476] Running state [saltstack1] at time 10:46:07.125270 +2020-03-06 10:46:07,125 [salt.state :1852][INFO ][6476] Executing state system.hostname for [saltstack1] +2020-03-06 10:46:07,125 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:46:07,140 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: vagrant-10 +2020-03-06 10:46:07,140 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6476] output: vagrant-10 +2020-03-06 10:46:07,140 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:46:07,156 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: vagrant-10 +2020-03-06 10:46:07,156 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6476] output: vagrant-10 +2020-03-06 10:46:07,156 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:46:07,234 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:46:07,234 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6476] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:46:07,234 [salt.state :320 ][INFO ][6476] {'hostname': 'saltstack1'} +2020-03-06 10:46:07,234 [salt.state :1997][INFO ][6476] Completed state [saltstack1] at time 10:46:07.234056 (duration_in_ms=108.786) +2020-03-06 10:46:07,234 [salt.state :1819][INFO ][6476] Running state [Saltstack Computer Description] at time 10:46:07.234056 +2020-03-06 10:46:07,234 [salt.state :1852][INFO ][6476] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:46:09,890 [salt.state :320 ][INFO ][6476] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 10:46:09,890 [salt.state :1997][INFO ][6476] Completed state [Saltstack Computer Description] at time 10:46:09.890607 (duration_in_ms=2656.551) +2020-03-06 10:46:09,905 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded platform.is_windows +2020-03-06 10:46:09,905 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded path.which +2020-03-06 10:46:09,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded timezone.get_zone +2020-03-06 10:46:09,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded timezone.system +2020-03-06 10:46:09,921 [salt.state :1819][INFO ][6476] Running state [America/New_York] at time 10:46:09.921513 +2020-03-06 10:46:09,921 [salt.state :1852][INFO ][6476] Executing state timezone.system for [America/New_York] +2020-03-06 10:46:09,921 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:46:09,938 [salt.state :320 ][INFO ][6476] {'timezone': 'America/New_York'} +2020-03-06 10:46:09,938 [salt.state :1997][INFO ][6476] Completed state [America/New_York] at time 10:46:09.938230 (duration_in_ms=16.717) +2020-03-06 10:46:09,938 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded module.run +2020-03-06 10:46:09,938 [salt.state :1819][INFO ][6476] Running state [windows.module.environ.items] at time 10:46:09.938230 +2020-03-06 10:46:09,953 [salt.state :1852][INFO ][6476] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:46:09,953 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded environ.items +2020-03-06 10:46:09,953 [salt.state :320 ][INFO ][6476] {'environ.items': {'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PROGRAMFILES': 'C:\\Program Files', 'PROCESSOR_LEVEL': '6', 'USERNAME': 'vagrant', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'SYSTEMDRIVE': 'C:', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'USERDOMAIN': 'VAGRANT-10', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'HOMEDRIVE': 'C:', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'NUMBER_OF_PROCESSORS': '2', 'OS': 'Windows_NT', 'PUBLIC': 'C:\\Users\\Public', 'PROCESSOR_REVISION': '8e0c', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'PROGRAMDATA': 'C:\\ProgramData', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'SALTDIR': 'C:\\salt', 'PROMPT': '$P$G', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'USERPROFILE': 'C:\\Users\\vagrant', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'SYSTEMROOT': 'C:\\Windows', 'HOMEPATH': '\\Users\\vagrant', 'PROGRAMW6432': 'C:\\Program Files', 'WINDIR': 'C:\\Windows', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'COMPUTERNAME': 'VAGRANT-10', 'LOGONSERVER': '\\\\VAGRANT-10', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files'}} +2020-03-06 10:46:09,953 [salt.state :1997][INFO ][6476] Completed state [windows.module.environ.items] at time 10:46:09.953117 (duration_in_ms=14.887) +2020-03-06 10:46:09,953 [salt.state :1819][INFO ][6476] Running state [windows.module.user.current] at time 10:46:09.953117 +2020-03-06 10:46:09,953 [salt.state :1852][INFO ][6476] Executing state module.run for [windows.module.user.current] +2020-03-06 10:46:09,969 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded user.current +2020-03-06 10:46:09,969 [salt.state :320 ][INFO ][6476] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:46:09,969 [salt.state :1997][INFO ][6476] Completed state [windows.module.user.current] at time 10:46:09.969538 (duration_in_ms=16.421) +2020-03-06 10:46:09,969 [salt.state :1819][INFO ][6476] Running state [windows.module.status.uptime] at time 10:46:09.969538 +2020-03-06 10:46:09,969 [salt.state :1852][INFO ][6476] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:46:09,984 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded status.uptime +2020-03-06 10:46:09,984 [salt.state :320 ][INFO ][6476] {'status.uptime': '0:01:21.984242'} +2020-03-06 10:46:10,000 [salt.state :1997][INFO ][6476] Completed state [windows.module.status.uptime] at time 10:46:10.000098 (duration_in_ms=30.56) +2020-03-06 10:46:10,000 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cmd.run +2020-03-06 10:46:10,000 [salt.state :1819][INFO ][6476] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:46:10.000098 +2020-03-06 10:46:10,000 [salt.state :1852][INFO ][6476] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] +2020-03-06 10:46:10,000 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:10,469 [salt.loaded.int.states.cmd:343 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:10,469 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:11,702 [salt.state :320 ][INFO ][6476] {'stderr': '', 'stdout': '', 'pid': 3276, 'retcode': 0} +2020-03-06 10:46:11,702 [salt.state :1997][INFO ][6476] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:46:11.702706 (duration_in_ms=1702.608) +2020-03-06 10:46:11,702 [salt.state :1819][INFO ][6476] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:46:11.702706 +2020-03-06 10:46:11,702 [salt.state :1852][INFO ][6476] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] +2020-03-06 10:46:11,702 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:12,124 [salt.loaded.int.states.cmd:343 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:12,124 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:12,952 [salt.state :320 ][INFO ][6476] {'stderr': '', 'stdout': '', 'pid': 1308, 'retcode': 0} +2020-03-06 10:46:12,968 [salt.state :1997][INFO ][6476] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:46:12.968438 (duration_in_ms=1265.732) +2020-03-06 10:46:12,968 [salt.state :1819][INFO ][6476] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:46:12.968438 +2020-03-06 10:46:12,968 [salt.state :1852][INFO ][6476] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] +2020-03-06 10:46:12,968 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:13,390 [salt.loaded.int.states.cmd:343 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:13,390 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:14,406 [salt.state :320 ][INFO ][6476] {'stderr': '', 'stdout': '', 'pid': 6592, 'retcode': 0} +2020-03-06 10:46:14,406 [salt.state :1997][INFO ][6476] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:46:14.406219 (duration_in_ms=1437.781) +2020-03-06 10:46:14,406 [salt.state :1819][INFO ][6476] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:46:14.406219 +2020-03-06 10:46:14,406 [salt.state :1852][INFO ][6476] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] +2020-03-06 10:46:14,406 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:14,859 [salt.loaded.int.states.cmd:343 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:14,859 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:15,812 [salt.state :320 ][INFO ][6476] {'stderr': '', 'stdout': '', 'pid': 2812, 'retcode': 0} +2020-03-06 10:46:15,812 [salt.state :1997][INFO ][6476] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:46:15.812161 (duration_in_ms=1405.942) +2020-03-06 10:46:15,812 [salt.state :1819][INFO ][6476] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:46:15.812161 +2020-03-06 10:46:15,812 [salt.state :1852][INFO ][6476] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] +2020-03-06 10:46:15,812 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:16,265 [salt.loaded.int.states.cmd:343 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:16,265 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:17,109 [salt.state :320 ][INFO ][6476] {'stderr': '', 'stdout': '', 'pid': 3048, 'retcode': 0} +2020-03-06 10:46:17,109 [salt.state :1997][INFO ][6476] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:46:17.109029 (duration_in_ms=1296.868) +2020-03-06 10:46:17,109 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded reg.present +2020-03-06 10:46:17,124 [salt.state :1819][INFO ][6476] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:46:17.124623 +2020-03-06 10:46:17,124 [salt.state :1852][INFO ][6476] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:46:17,921 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:46:17,921 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:46:18,421 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:46:18,421 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:46:18,812 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops.api_key, ret: _|- +2020-03-06 10:46:18,812 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops:api_key, ret: _|- +2020-03-06 10:46:22,611 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:46:22,611 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded apache.a2enconf +2020-03-06 10:46:22,611 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded apache.a2enmod +2020-03-06 10:46:22,611 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded apache.a2ensite +2020-03-06 10:46:22,645 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:46:22,645 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:46:22,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:46:22,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:46:22,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:46:22,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:46:22,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:46:22,704 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:46:22,704 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_asg.exists +2020-03-06 10:46:22,716 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cfn.exists +2020-03-06 10:46:22,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:46:22,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:46:22,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:46:22,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:46:22,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:46:22,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:46:22,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_dynamodb.exists +2020-03-06 10:46:22,751 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_ec2.get_key +2020-03-06 10:46:22,751 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elasticache.exists +2020-03-06 10:46:22,751 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:46:22,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elb.exists +2020-03-06 10:46:22,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:46:22,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_iam.get_user +2020-03-06 10:46:22,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_iam.role_exists +2020-03-06 10:46:22,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_iot.policy_exists +2020-03-06 10:46:22,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_kinesis.exists +2020-03-06 10:46:22,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_kms.describe_key +2020-03-06 10:46:22,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_lambda.function_exists +2020-03-06 10:46:22,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_asg.exists +2020-03-06 10:46:22,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_rds.exists +2020-03-06 10:46:22,829 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_route53.get_record +2020-03-06 10:46:22,829 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:46:22,829 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:46:22,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_secgroup.exists +2020-03-06 10:46:22,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_sns.exists +2020-03-06 10:46:22,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_sqs.exists +2020-03-06 10:46:22,860 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_vpc.exists +2020-03-06 10:46:22,860 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded bower.list +2020-03-06 10:46:22,860 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded chef.client +2020-03-06 10:46:22,876 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cimc.get_system_info +2020-03-06 10:46:22,876 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cisconso.set_data_value +2020-03-06 10:46:22,876 [salt.loader :1577][DEBUG ][6476] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:46:22,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded ddns.update +2020-03-06 10:46:22,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded chassis.cmd +2020-03-06 10:46:22,906 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:46:22,937 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:46:22,955 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:46:22,968 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:46:23,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded esxi.cmd +2020-03-06 10:46:23,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded git.version +2020-03-06 10:46:23,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded github.list_users +2020-03-06 10:46:23,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded glanceng.image_get +2020-03-06 10:46:23,238 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded elasticsearch.exists +2020-03-06 10:46:23,266 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: grafana_version, ret: _|- +2020-03-06 10:46:23,266 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: grafana_version, ret: _|- +2020-03-06 10:46:23,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded icinga2.generate_ticket +2020-03-06 10:46:23,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded ifttt.trigger_event +2020-03-06 10:46:23,296 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:46:23,312 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:46:23,330 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:46:23,344 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:46:23,359 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:46:23,375 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:46:23,405 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:46:23,405 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.domain_get +2020-03-06 10:46:23,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:46:23,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.group_get +2020-03-06 10:46:23,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.project_get +2020-03-06 10:46:23,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.role_get +2020-03-06 10:46:23,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.role_grant +2020-03-06 10:46:23,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.service_get +2020-03-06 10:46:23,437 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.user_get +2020-03-06 10:46:23,454 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:46:23,468 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:46:23,484 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:46:23,499 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:46:23,515 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:46:23,547 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:46:23,547 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:46:23,547 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:46:23,559 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:46:23,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:46:23,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded memcached.status +2020-03-06 10:46:23,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mongodb.db_exists +2020-03-06 10:46:23,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mongodb.user_exists +2020-03-06 10:46:23,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:46:23,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:46:23,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:46:23,592 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:46:23,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_networks +2020-03-06 10:46:23,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_subnets +2020-03-06 10:46:23,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_subnets +2020-03-06 10:46:23,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_subnets +2020-03-06 10:46:23,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded npm.list +2020-03-06 10:46:23,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nxos.cmd +2020-03-06 10:46:23,655 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:46:23,672 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:46:23,688 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded panos.commit +2020-03-06 10:46:23,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pdbedit.create +2020-03-06 10:46:23,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pecl.list +2020-03-06 10:46:24,046 [pip.vcs :60 ][DEBUG ][6476] Registered VCS backend: git +2020-03-06 10:46:24,109 [pip.vcs :60 ][DEBUG ][6476] Registered VCS backend: hg +2020-03-06 10:46:24,140 [pip.pep425tags :79 ][DEBUG ][6476] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:46:24,140 [pip.pep425tags :79 ][DEBUG ][6476] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:46:24,140 [pip.pep425tags :79 ][DEBUG ][6476] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:46:24,140 [pip.pep425tags :79 ][DEBUG ][6476] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:46:24,343 [pip.vcs :60 ][DEBUG ][6476] Registered VCS backend: svn +2020-03-06 10:46:24,343 [pip.vcs :60 ][DEBUG ][6476] Registered VCS backend: bzr +2020-03-06 10:46:24,453 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:46:24,453 [salt.loader :1577][DEBUG ][6476] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:46:24,453 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.cluster_exists +2020-03-06 10:46:24,453 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.user_exists +2020-03-06 10:46:24,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.create_extension +2020-03-06 10:46:24,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.group_create +2020-03-06 10:46:24,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.datadir_init +2020-03-06 10:46:24,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.language_create +2020-03-06 10:46:24,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.privileges_grant +2020-03-06 10:46:24,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.schema_exists +2020-03-06 10:46:24,483 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.tablespace_exists +2020-03-06 10:46:24,483 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.user_exists +2020-03-06 10:46:24,531 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:46:24,547 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded selinux.getenforce +2020-03-06 10:46:24,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded splunk.list_users +2020-03-06 10:46:24,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded splunk_search.get +2020-03-06 10:46:24,596 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:46:24,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded tomcat.status +2020-03-06 10:46:24,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded vagrant.version +2020-03-06 10:46:24,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded victorops.create_event +2020-03-06 10:46:24,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded win_iis.create_site +2020-03-06 10:46:24,656 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded win_servermanager.install +2020-03-06 10:46:24,656 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:46:24,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded wordpress.show_plugin +2020-03-06 10:46:24,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded x509.get_pem_entry +2020-03-06 10:46:24,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded xmpp.send_msg +2020-03-06 10:46:24,703 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded zk_concurrency.lock +2020-03-06 10:46:24,719 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded zonecfg.create +2020-03-06 10:46:24,719 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded zookeeper.create +2020-03-06 10:46:24,741 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:46:24,751 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:46:24,905 [salt.state :889 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:24,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded dacl.check_perms +2020-03-06 10:46:24,921 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6476] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:46:24,936 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6476] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:46:24,937 [salt.state :320 ][INFO ][6476] {'reg': {'Added': {'Value': 1, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions', 'Perms': {'Grant': None, 'Deny': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True}}} +2020-03-06 10:46:24,937 [salt.state :1997][INFO ][6476] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:46:24.937368 (duration_in_ms=7812.745) +2020-03-06 10:46:24,937 [salt.state :1819][INFO ][6476] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:46:24.937368 +2020-03-06 10:46:24,937 [salt.state :1852][INFO ][6476] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:46:24,953 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:46:24,953 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:46:25,124 [salt.state :889 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:25,140 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6476] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:46:25,140 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6476] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:46:25,140 [salt.state :320 ][INFO ][6476] {'reg': {'Added': {'Value': 1, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions', 'Perms': {'Grant': None, 'Deny': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True}}} +2020-03-06 10:46:25,140 [salt.state :1997][INFO ][6476] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:46:25.140798 (duration_in_ms=203.43) +2020-03-06 10:46:25,140 [salt.state :1819][INFO ][6476] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:46:25.140798 +2020-03-06 10:46:25,140 [salt.state :1852][INFO ][6476] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:46:25,140 [salt.utils.http :234 ][DEBUG ][6476] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:46:25,140 [salt.utils.http :235 ][DEBUG ][6476] Using backend: tornado +2020-03-06 10:46:25,687 [salt.loaded.int.states.archive:976 ][DEBUG ][6476] file.cached: {'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'result': True, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip'} +2020-03-06 10:46:25,687 [salt.loaded.int.states.archive:91 ][DEBUG ][6476] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:46:25,687 [salt.loaded.int.states.archive:996 ][DEBUG ][6476] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:46:25,734 [salt.loaded.int.module.win_file:1463][DEBUG ][6476] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:46:25,751 [salt.loaded.int.module.win_file:1463][DEBUG ][6476] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:46:25,751 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6476] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:46:25,763 [salt.loaded.int.states.archive:1247][DEBUG ][6476] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:46:25,999 [salt.loaded.int.states.archive:1543][DEBUG ][6476] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:46:25,999 [salt.state :320 ][INFO ][6476] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} +2020-03-06 10:46:25,999 [salt.state :1997][INFO ][6476] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:46:25.999631 (duration_in_ms=858.833) +2020-03-06 10:46:25,999 [salt.state :1819][INFO ][6476] Running state [rename-extract] at time 10:46:25.999631 +2020-03-06 10:46:25,999 [salt.state :1852][INFO ][6476] Executing state module.run for [rename-extract] +2020-03-06 10:46:25,999 [salt.state :320 ][INFO ][6476] {'file.rename': True} +2020-03-06 10:46:25,999 [salt.state :1997][INFO ][6476] Completed state [rename-extract] at time 10:46:25.999631 (duration_in_ms=0.0) +2020-03-06 10:46:25,999 [salt.state :1819][INFO ][6476] Running state [pkg.refresh_db] at time 10:46:25.999631 +2020-03-06 10:46:25,999 [salt.state :1852][INFO ][6476] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:46:26,015 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][6476] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:19.421820) +2020-03-06 10:46:26,015 [salt.loaded.int.module.win_pkg:935 ][INFO ][6476] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:46:26,015 [salt.loaded.int.module.win_pkg:954 ][INFO ][6476] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:46:26,015 [salt.fileclient :234 ][INFO ][6476] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:46:26,265 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:46:26,265 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:46:26,265 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:46:26,265 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,280 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:46:26,280 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:46:26,280 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:46:26,280 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:46:26,280 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,296 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:46:26,296 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:46:26,296 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:46:26,296 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:46:26,296 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,296 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:46:26,312 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:46:26,312 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:46:26,312 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:46:26,312 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,312 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:46:26,312 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:46:26,327 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:46:26,327 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:46:26,327 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,327 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:46:26,327 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:46:26,327 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:46:26,327 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:46:26,343 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,343 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:46:26,343 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:46:26,343 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:46:26,343 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:46:26,343 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,359 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:46:26,359 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:46:26,359 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:46:26,359 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:46:26,359 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,359 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:46:26,374 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:46:26,374 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:46:26,374 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:46:26,374 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,374 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:46:26,374 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:46:26,374 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:46:26,390 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:46:26,390 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,390 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:46:26,390 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:46:26,390 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:46:26,390 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:46:26,390 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,406 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:46:26,406 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:46:26,406 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:46:26,406 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:46:26,406 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,421 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:46:26,421 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:46:26,421 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:46:26,421 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:46:26,421 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,421 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:46:26,437 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:46:26,437 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:46:26,437 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:46:26,437 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,437 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:46:26,437 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:46:26,453 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:46:26,453 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:46:26,453 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,453 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:46:26,453 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:46:26,453 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:46:26,453 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:46:26,468 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,468 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:46:26,468 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:46:26,468 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:46:26,468 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:46:26,468 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,485 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:46:26,485 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:46:26,485 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:46:26,485 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:46:26,485 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,485 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:46:26,485 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:46:26,485 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:46:26,500 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:46:26,500 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,500 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:46:26,500 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:46:26,500 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:46:26,500 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:46:26,500 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,515 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:46:26,515 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:46:26,515 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:46:26,515 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:46:26,515 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,515 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:46:26,515 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:46:26,531 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:46:26,531 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:46:26,531 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,531 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:46:26,531 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:46:26,531 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:46:26,531 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:46:26,531 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,546 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:46:26,546 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:46:26,546 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:46:26,546 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:46:26,546 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,546 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,562 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:46:26,562 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,577 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:46:26,577 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:46:26,577 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:46:26,577 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:46:26,577 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,577 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,593 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:46:26,593 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,609 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:46:26,609 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:46:26,609 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:46:26,609 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:46:26,609 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,609 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:46:26,609 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:46:26,625 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:46:26,625 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:46:26,625 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,625 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:46:26,625 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:46:26,625 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:46:26,625 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:46:26,625 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,640 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:46:26,640 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:46:26,640 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:46:26,640 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:46:26,640 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,640 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:46:26,640 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:46:26,656 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:46:26,656 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:46:26,656 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,656 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:46:26,656 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:46:26,656 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:46:26,656 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:46:26,656 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,671 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:46:26,671 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:46:26,671 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:46:26,671 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:46:26,671 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,671 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:46:26,686 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:46:26,687 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:46:26,687 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:46:26,687 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,687 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:46:26,687 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:46:26,687 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:46:26,687 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:46:26,687 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,702 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:46:26,702 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:46:26,702 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:46:26,702 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:46:26,702 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,702 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:46:26,702 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:46:26,718 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:46:26,718 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:46:26,718 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,718 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:46:26,718 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:46:26,718 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:46:26,718 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:46:26,718 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,734 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:46:26,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:46:26,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:46:26,734 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:46:26,734 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,734 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:46:26,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:46:26,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:46:26,750 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:46:26,750 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,750 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:46:26,750 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:46:26,750 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:46:26,750 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:46:26,750 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,765 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:46:26,765 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:46:26,765 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:46:26,765 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:46:26,765 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,765 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:46:26,765 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:46:26,780 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:46:26,780 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:46:26,780 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,780 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:46:26,780 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:46:26,780 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:46:26,780 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:46:26,796 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,796 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:46:26,796 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:46:26,796 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:46:26,796 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:46:26,796 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,796 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,812 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:46:26,812 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,827 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:46:26,827 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:46:26,827 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:46:26,827 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:46:26,827 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,827 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,843 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:46:26,843 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,859 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:46:26,859 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:46:26,859 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:46:26,859 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:46:26,859 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,859 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:46:26,859 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:46:26,859 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:46:26,859 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:46:26,875 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,875 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:46:26,875 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:46:26,875 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:46:26,875 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:46:26,875 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,875 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:46:26,891 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:46:26,891 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:46:26,891 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:46:26,891 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,891 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:46:26,891 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:46:26,891 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:46:26,891 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:46:26,906 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,906 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:46:26,906 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:46:26,906 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:46:26,906 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:46:26,906 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,906 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,921 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:46:26,921 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,937 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:46:26,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:46:26,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:46:26,937 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:46:26,937 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,937 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:46:26,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:46:26,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:46:26,953 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:46:26,953 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,953 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:46:26,953 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:46:26,953 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:46:26,953 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:46:26,953 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,968 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:46:26,968 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:46:26,968 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:46:26,968 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:46:26,968 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,968 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:46:26,968 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:46:26,968 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:46:26,968 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:46:26,983 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,983 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:46:26,983 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:46:26,983 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:46:26,983 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:46:26,983 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:26,983 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,000 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:46:27,000 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,018 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:46:27,018 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:46:27,018 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:46:27,018 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:46:27,018 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,018 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,031 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:46:27,031 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,047 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:46:27,047 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:46:27,047 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:46:27,047 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:46:27,047 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,047 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:46:27,047 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:46:27,064 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:46:27,064 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:46:27,064 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,064 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:46:27,064 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:46:27,064 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:46:27,064 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:46:27,064 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,077 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:46:27,077 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:46:27,077 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:46:27,077 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:46:27,077 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,077 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:46:27,077 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:46:27,077 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:46:27,077 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:46:27,093 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,093 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:46:27,093 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:46:27,093 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:46:27,093 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:46:27,093 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,093 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:46:27,093 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:46:27,109 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:46:27,109 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:46:27,109 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,109 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:46:27,109 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:46:27,109 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:46:27,109 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:46:27,109 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,126 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:46:27,126 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:46:27,126 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:46:27,126 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:46:27,126 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,140 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:46:27,140 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:46:27,140 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:46:27,140 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:46:27,140 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,140 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:46:27,155 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:46:27,155 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:46:27,155 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:46:27,155 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,155 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:46:27,155 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:46:27,171 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:46:27,171 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:46:27,171 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,171 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:46:27,171 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:46:27,186 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:46:27,186 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:46:27,186 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,186 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:46:27,186 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:46:27,186 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:46:27,186 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:46:27,202 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,202 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:46:27,202 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:46:27,202 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:46:27,202 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:46:27,202 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,218 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:46:27,218 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:46:27,218 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:46:27,218 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:46:27,218 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,218 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:46:27,234 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:46:27,234 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:46:27,234 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:46:27,234 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,234 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:46:27,234 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:46:27,250 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:46:27,250 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:46:27,250 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,250 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:46:27,250 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:46:27,250 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:46:27,250 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:46:27,250 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,265 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:46:27,265 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:46:27,265 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:46:27,265 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:46:27,265 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,281 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:46:27,281 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:46:27,281 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:46:27,281 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:46:27,281 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,281 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:46:27,296 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:46:27,296 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:46:27,296 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:46:27,296 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,296 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:46:27,296 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:46:27,296 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:46:27,296 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:46:27,312 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,312 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:46:27,312 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:46:27,312 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:46:27,312 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:46:27,312 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,327 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:46:27,327 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:46:27,327 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:46:27,327 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:46:27,327 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,327 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:46:27,343 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:46:27,343 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:46:27,343 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:46:27,343 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,343 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:46:27,343 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:46:27,343 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:46:27,358 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:46:27,358 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,358 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:46:27,358 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:46:27,358 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:46:27,358 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:46:27,358 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,376 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:46:27,376 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:46:27,376 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:46:27,376 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:46:27,376 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,376 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:46:27,376 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:46:27,392 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:46:27,392 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:46:27,392 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,392 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:46:27,392 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:46:27,392 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:46:27,392 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:46:27,392 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,407 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:46:27,407 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:46:27,407 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:46:27,407 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:46:27,407 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,407 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:46:27,423 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:46:27,423 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:46:27,423 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:46:27,423 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,423 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:46:27,423 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:46:27,423 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:46:27,439 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:46:27,439 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,439 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:46:27,439 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:46:27,439 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:46:27,439 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:46:27,439 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,454 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:46:27,454 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:46:27,454 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:46:27,454 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:46:27,454 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,454 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:46:27,470 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:46:27,470 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:46:27,470 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:46:27,470 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,470 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:46:27,470 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:46:27,484 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:46:27,484 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:46:27,484 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,484 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:46:27,484 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:46:27,484 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:46:27,484 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:46:27,499 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,499 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:46:27,499 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:46:27,499 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:46:27,499 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:46:27,499 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,515 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:46:27,515 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:46:27,515 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:46:27,515 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:46:27,515 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,515 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,530 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:46:27,530 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,548 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:46:27,548 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:46:27,548 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:46:27,548 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:46:27,548 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,564 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:46:27,564 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:46:27,564 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:46:27,564 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:46:27,564 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,564 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:46:27,579 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:46:27,579 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:46:27,579 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:46:27,579 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,579 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:46:27,579 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:46:27,579 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:46:27,594 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:46:27,594 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,594 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:46:27,594 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:46:27,594 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:46:27,594 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:46:27,594 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,609 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:46:27,609 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:46:27,609 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:46:27,609 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:46:27,609 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,624 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:46:27,624 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:46:27,624 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:46:27,624 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:46:27,624 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,639 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:46:27,640 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:46:27,640 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:46:27,640 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:46:27,640 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,640 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:46:27,656 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:46:27,656 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:46:27,656 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:46:27,656 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,656 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:46:27,656 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:46:27,671 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:46:27,671 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:46:27,671 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,671 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:46:27,671 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:46:27,671 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:46:27,687 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:46:27,687 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,687 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:46:27,687 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:46:27,687 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:46:27,687 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:46:27,687 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,702 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:46:27,702 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:46:27,702 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:46:27,702 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:46:27,702 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,719 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:46:27,719 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:46:27,719 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:46:27,719 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:46:27,719 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,719 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:46:27,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:46:27,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:46:27,734 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:46:27,734 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,750 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:46:27,750 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:46:27,750 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:46:27,750 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:46:27,750 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,774 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:46:27,774 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:46:27,780 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:46:27,780 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:46:27,780 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,780 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:46:27,780 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:46:27,780 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:46:27,780 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:46:27,796 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,796 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:46:27,796 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,796 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,796 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,796 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,813 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,813 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,813 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,813 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,813 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,829 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,829 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:46:27,829 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:46:27,829 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:46:27,829 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,845 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:46:27,845 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:46:27,845 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:46:27,845 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:46:27,845 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,860 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:46:27,860 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:46:27,860 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:46:27,860 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:46:27,860 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,860 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:46:27,876 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:46:27,876 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:46:27,876 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:46:27,876 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,876 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:46:27,876 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:46:27,890 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:46:27,890 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:46:27,890 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,890 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:46:27,890 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:46:27,890 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:46:27,905 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:46:27,905 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,905 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:46:27,905 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,905 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,905 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,905 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,921 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:46:27,921 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,921 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,921 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,921 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,921 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:46:27,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:46:27,937 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:46:27,937 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,937 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:46:27,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,953 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,953 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,953 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,953 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:46:27,953 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:46:27,953 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:46:27,953 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:46:27,953 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,968 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:46:27,968 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:46:27,968 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:46:27,968 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:46:27,968 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,968 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:46:27,983 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:46:27,983 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:46:27,983 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:46:27,983 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,983 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:46:27,983 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:46:27,983 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:46:27,999 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:46:27,999 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:27,999 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:46:27,999 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:46:27,999 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:46:27,999 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:46:27,999 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,015 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:46:28,015 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:46:28,015 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:46:28,015 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:46:28,015 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,015 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:46:28,015 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:46:28,031 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:46:28,031 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:46:28,031 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,031 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:46:28,031 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:46:28,031 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:46:28,031 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:46:28,031 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,047 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:46:28,047 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:46:28,047 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:46:28,047 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:46:28,047 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,047 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,062 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:46:28,062 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,078 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:46:28,078 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:46:28,078 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:46:28,078 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:46:28,078 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,078 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:46:28,078 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:46:28,093 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:46:28,093 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:46:28,093 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,093 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:46:28,093 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:46:28,093 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:46:28,093 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:46:28,093 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,109 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:46:28,109 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:46:28,109 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:46:28,109 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:46:28,109 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,109 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,124 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:46:28,124 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,140 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:46:28,140 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:46:28,140 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:46:28,140 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:46:28,140 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,140 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,156 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:46:28,156 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,171 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:46:28,171 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:46:28,171 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:46:28,171 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:46:28,171 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,171 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:46:28,171 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:46:28,171 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:46:28,187 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:46:28,187 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,187 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:46:28,187 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:46:28,187 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:46:28,187 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:46:28,187 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,202 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:46:28,202 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:46:28,202 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:46:28,202 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:46:28,202 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,202 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:46:28,202 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:46:28,202 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:46:28,218 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:46:28,218 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,218 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:46:28,218 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:46:28,218 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:46:28,218 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:46:28,218 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,233 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,233 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:46:28,233 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,250 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:46:28,250 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:46:28,250 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:46:28,250 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:46:28,250 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,250 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,265 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:46:28,265 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,280 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:46:28,280 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:46:28,280 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:46:28,280 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:46:28,280 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,280 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:46:28,280 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:46:28,280 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:46:28,280 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:46:28,296 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,296 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:46:28,296 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:46:28,296 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:46:28,296 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:46:28,296 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,296 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,312 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:46:28,312 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,328 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:46:28,328 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:46:28,328 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:46:28,328 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:46:28,328 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,328 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:46:28,328 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:46:28,344 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:46:28,344 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:46:28,344 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,344 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:46:28,344 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:46:28,344 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:46:28,359 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:46:28,359 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,359 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:46:28,359 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:46:28,359 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:46:28,359 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:46:28,359 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,375 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:46:28,375 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:46:28,375 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:46:28,375 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:46:28,375 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,375 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:46:28,375 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:46:28,375 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:46:28,375 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:46:28,390 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,390 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:46:28,390 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:46:28,390 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:46:28,390 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:46:28,390 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,390 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,405 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:46:28,405 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,422 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:46:28,422 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:46:28,422 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:46:28,422 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:46:28,422 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,422 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:46:28,422 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:46:28,422 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:46:28,437 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:46:28,437 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,437 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:46:28,437 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:46:28,437 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:46:28,437 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:46:28,437 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,437 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,453 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:46:28,453 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,468 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:46:28,468 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:46:28,468 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:46:28,468 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:46:28,468 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,468 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:46:28,468 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:46:28,483 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:46:28,484 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:46:28,484 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,484 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:46:28,484 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:46:28,484 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:46:28,484 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:46:28,484 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,499 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,499 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:46:28,499 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,516 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:46:28,516 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:46:28,516 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:46:28,516 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:46:28,516 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,516 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:46:28,516 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:46:28,532 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:46:28,532 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:46:28,532 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,532 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:46:28,532 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:46:28,532 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:46:28,532 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:46:28,532 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,547 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:46:28,547 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:46:28,547 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:46:28,547 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:46:28,547 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,547 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:46:28,547 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:46:28,547 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:46:28,547 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:46:28,563 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,563 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:46:28,563 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:46:28,563 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:46:28,563 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:46:28,563 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,577 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,578 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:46:28,578 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,593 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:46:28,593 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:46:28,593 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:46:28,593 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:46:28,593 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,593 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:46:28,593 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:46:28,593 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:46:28,593 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:46:28,610 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,610 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:46:28,610 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:46:28,610 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:46:28,610 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:46:28,610 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,610 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,624 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:46:28,624 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,642 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:46:28,642 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:46:28,642 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:46:28,642 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:46:28,642 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,642 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:46:28,642 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:46:28,642 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:46:28,657 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:46:28,657 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,657 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:46:28,657 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:46:28,657 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:46:28,657 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:46:28,657 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,657 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,672 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:46:28,672 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,688 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:46:28,688 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:46:28,688 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:46:28,688 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:46:28,688 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,688 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:46:28,688 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:46:28,688 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:46:28,688 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:46:28,703 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,703 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:46:28,703 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:46:28,703 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:46:28,703 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:46:28,703 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,703 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,718 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:46:28,718 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,718 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,734 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:46:28,734 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,750 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:46:28,750 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:46:28,750 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:46:28,765 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:46:28,765 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,781 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:46:28,781 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:46:28,781 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:46:28,781 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:46:28,781 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,781 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,798 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:46:28,798 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,813 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:46:28,813 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:46:28,813 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:46:28,813 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:46:28,813 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,813 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:46:28,813 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:46:28,813 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:46:28,828 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:46:28,828 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,828 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:46:28,828 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:46:28,828 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:46:28,828 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:46:28,828 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,828 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:46:28,828 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:46:28,844 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:46:28,844 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:46:28,844 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,859 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:46:28,859 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:46:28,859 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:46:28,859 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:46:28,859 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,859 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:46:28,859 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:46:28,859 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:46:28,859 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:46:28,876 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,876 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:46:28,876 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:46:28,876 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:46:28,876 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:46:28,876 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,876 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,891 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:46:28,891 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,906 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:46:28,906 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:46:28,906 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:46:28,906 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:46:28,906 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,906 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:46:28,906 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:46:28,906 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:46:28,906 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:46:28,921 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,921 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:46:28,921 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:46:28,921 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:46:28,921 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:46:28,921 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,921 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:46:28,921 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:46:28,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:46:28,937 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:46:28,937 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,937 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:46:28,937 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:46:28,937 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:46:28,937 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:46:28,937 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,937 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,953 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:46:28,953 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,969 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:46:28,969 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:46:28,969 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:46:28,969 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:46:28,969 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,969 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:46:28,969 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:46:28,969 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:46:28,969 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:46:28,984 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,984 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:46:28,984 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:46:28,984 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:46:28,984 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:46:28,984 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:28,984 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:46:28,984 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:46:29,000 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:46:29,000 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:46:29,000 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,000 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:46:29,000 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:46:29,000 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:46:29,000 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:46:29,000 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,015 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,015 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:46:29,015 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,031 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,031 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:46:29,031 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,047 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:46:29,047 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:46:29,047 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:46:29,047 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:46:29,047 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,047 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:46:29,047 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:46:29,063 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:46:29,063 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:46:29,063 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,063 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:46:29,063 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:46:29,063 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:46:29,063 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:46:29,063 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,093 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,093 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:46:29,093 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,109 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:46:29,109 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:46:29,109 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:46:29,109 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:46:29,109 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,109 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,124 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:46:29,124 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,140 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:46:29,140 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:46:29,140 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:46:29,140 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:46:29,140 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,140 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:46:29,156 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:46:29,156 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:46:29,156 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:46:29,156 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,156 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:46:29,156 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:46:29,156 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:46:29,171 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:46:29,171 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,171 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:46:29,171 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:46:29,171 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:46:29,171 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:46:29,171 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,171 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,187 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:46:29,187 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,202 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,202 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:46:29,202 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,219 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,219 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:46:29,219 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,234 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:46:29,234 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:46:29,234 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:46:29,234 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:46:29,234 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,249 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:46:29,249 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:46:29,249 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:46:29,249 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:46:29,249 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,249 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:46:29,249 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:46:29,249 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:46:29,249 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:46:29,265 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,281 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:46:29,281 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:46:29,281 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:46:29,281 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:46:29,281 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,281 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:46:29,281 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:46:29,297 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:46:29,297 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:46:29,297 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,297 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:46:29,297 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:46:29,297 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:46:29,297 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:46:29,297 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,297 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,313 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:46:29,313 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,328 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,328 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:46:29,328 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,344 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:46:29,344 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:46:29,344 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:46:29,344 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:46:29,344 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,344 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:46:29,344 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:46:29,344 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:46:29,344 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:46:29,359 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,359 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:46:29,359 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:46:29,359 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:46:29,359 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:46:29,359 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,359 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:46:29,359 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:46:29,375 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:46:29,375 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:46:29,375 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,375 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:46:29,375 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:46:29,375 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:46:29,375 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:46:29,375 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,375 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,390 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:46:29,390 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,405 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,405 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:46:29,405 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,421 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,421 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:46:29,421 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,437 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,437 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:46:29,437 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,453 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,453 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:46:29,453 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,468 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:46:29,468 [salt.fileclient :1093][DEBUG ][6476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:46:29,468 [salt.fileclient :1101][DEBUG ][6476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:46:29,468 [salt.fileclient :1121][DEBUG ][6476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:46:29,468 [salt.fileclient :1149][DEBUG ][6476] No dest file found +2020-03-06 10:46:29,468 [salt.fileclient :1230][INFO ][6476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:46:29,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,485 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,485 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:46:29,485 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,485 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,497 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +7zip: + + + '16.04.00.0': + + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.03.00.0': + + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.02.00.0': + + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.00.00.0': + + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '19.00.00.0': + + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '18.06.00.0': + + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.05.00.0': + + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.03.00.0': + + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.01.00.0': + + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:46:29,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,500 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0026314258575439453 +2020-03-06 10:46:29,500 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,500 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,500 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:46:29,500 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,500 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,500 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +activeperl_x64: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.24.3': + full_name: 'ActivePerl 5.24.3 Build 2404 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.26.1': + full_name: 'ActivePerl 5.26.1 Build 2601 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.014670372009277344 +2020-03-06 10:46:29,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,515 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:46:29,515 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,515 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +activeperl_x86: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205' + + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0006072521209716797 +2020-03-06 10:46:29,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,531 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:46:29,531 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,531 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +adobeair: + latest: + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + '30.0.0.107': + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,531 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:46:29,546 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,546 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +# to understand what is meant by "classic" see +# http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html + +adobereader-dc-classic: + + + '20.006.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20049': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20047': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20036': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20099': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20098': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20091': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20069': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20064': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20081': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20071': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20063': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20055': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20040': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,561 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,561 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,561 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:46:29,561 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,561 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,561 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +adobereader-xi: + '11.0.10': + full_name: 'Adobe Reader XI (11.0.10)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '11.0.6': + full_name: 'Adobe Reader XI (11.0.06)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,561 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,561 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,561 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,561 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,561 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:46:29,561 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,577 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.016040563583374023 +2020-03-06 10:46:29,577 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +adobereader: + '10.1.4': + full_name: 'Adobe Reader X (10.1.4)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '9.5.0': + full_name: 'Adobe Reader 9.5.0' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,577 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,577 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,577 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,577 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:46:29,577 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,577 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,577 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +adobeshockwaveplayer: + latest: + full_name: 'Adobe Shockwave Player 12.2' + installer: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version + +2020-03-06 10:46:29,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,577 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,593 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:46:29,593 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,593 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: + + + +adv-ip-scanner: + + + '2.5.3784': + full_name: 'Advanced IP Scanner 2.5' + installer: 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-ip-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:46:29,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,609 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:46:29,609 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,609 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,609 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: + + + +adv-port-scanner: + + + '2.5.3680': + full_name: 'Advanced Port Scanner 2.5' + installer: 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-port-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:46:29,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,609 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:46:29,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,624 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +advancedlogging: + '1.0.0625.10': + full_name: 'IIS Advanced Logging 1.0' + + installer: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + uninstaller: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:46:29,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,640 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +# just 32-bit x86 msi package available + + + +anydesk-msi: + latest: + full_name: 'AnyDesk MSI' + installer: 'https://download.anydesk.com/AnyDesk.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.anydesk.com/AnyDesk.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,640 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:46:29,640 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,640 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +# just 32-bit x86 installer available + + + + + + + +anydesk: + latest: + full_name: 'AnyDesk' + installer: 'https://download.anydesk.com/AnyDesk.exe' + install_flags: '--install "%ProgramFiles(x86)%\AnyDesk" --start-with-win --silent --create-shortcut' + uninstaller: 'https://download.anydesk.com/AnyDesk.exe' + uninstall_flags: '--silent --remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.014963626861572266 +2020-03-06 10:46:29,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,655 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:46:29,655 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,655 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +applicationrequestrouting: + '3.0.1952': + full_name: 'Microsoft Application Request Routing 3.0' + + installer: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,671 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:46:29,671 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,671 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +aspnet-mvc1: + '1.0.0.0': + full_name: 'Microsoft ASP.NET MVC 1.0' + installer: 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi' + install_flags: '/qn /norestart' + uninstaller: '{A4394612-D02F-11DC-9BFF-D18556D89593}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,671 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:46:29,671 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,687 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: + +atom: + + '1.28.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.2': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.1': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.23.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,687 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:46:29,687 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,702 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: + + + + +audacity: + + '2.2.2': + full_name: 'Audacity 2.2.2' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Audacity 2.2.1' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,702 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,702 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,702 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:46:29,702 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,702 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,702 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: + + + +autohotkey: + '1.1.29.01': + full_name: 'AutoHotkey 1.1.29.01' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.27.06': + full_name: 'AutoHotkey 1.1.27.06' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.24.00': + full_name: 'AutoHotkey 1.1.24.00' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.22.09': + full_name: 'AutoHotkey 1.1.22.09' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,702 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.015917062759399414 +2020-03-06 10:46:29,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,718 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:46:29,718 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,718 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: + +autoit: + + '3.3.14.5': + full_name: 'AutoIt v3.3.14.5' + installer: 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\AutoIt3\Uninstall.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,733 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,733 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,733 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:46:29,733 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,733 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,733 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +autopsy: + '4.3.0': + full_name: 'Autopsy' + + installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,733 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,733 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,733 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,733 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,733 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:46:29,749 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,749 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,749 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +awscli: + latest: + + full_name: 'AWS Command Line Interface' + installer: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + uninstaller: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,749 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,749 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,749 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,749 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:46:29,749 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,749 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,765 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +# due to winrepo installer limitations you need to manually download the exe from +# https://go.microsoft.com/fwlink/?linkid=2049975 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... + + +azuredatastudio: + '1.3.9': + full_name: 'Azure Data Studio' +# installer: 'salt://win/repo-ng/azuredatastudio/azuredatastudio-windows-setup-1.3.9.exe' + installer: 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe' + uninstaller: 'C:\Program Files\Azure Data Studio\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,765 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,765 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:46:29,765 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,765 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,765 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +#the provider only offers the download of the latest version + + + +bandizip: + '6.21': + full_name: 'Bandizip' + installer: 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE' + install_flags: '/S' + uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,781 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0008418560028076172 +2020-03-06 10:46:29,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,781 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:46:29,781 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,781 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,781 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +# just 32-bit x86 installer available + + + +belarc-advisor: + '8.6': + full_name: 'Belarc Advisor' + installer: 'http://downloads.belarc.com/advisor/advisorinstaller.exe' + install_flags: '/s' + uninstaller: '%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\Uninstall.exe' + uninstall_flags: '/s "%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\INSTALL.LOG"' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,781 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,781 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,796 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:46:29,796 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,796 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,796 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +bginfo4x: + '3.3.6': + full_name: 'BGINFO4X for Windows 3.3.6' + installer: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + uninstaller: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,796 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,811 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:46:29,812 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,812 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +# source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe +bitnami-nginxstack: + '1.8.0-0': + full_name: 'Bitnami Nginx Stack' + installer: 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe' + install_flags: '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"' + uninstaller: 'C:\Bitnami\nginxstack-1.8.0-0\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,812 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:46:29,812 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,828 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +bitvise: + + '8.32': + full_name: 'Bitvise SSH Server 8.32 (remove only)' + installer: 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe' + install_flags: '-acceptEULA -defaultInstance -startService' + uninstaller: '%ProgramFiles%\Bitvise SSH Server\uninst.exe' + uninstall_flags: '"Bitvise SSH Server" -unat' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:29,828 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,828 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,828 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,828 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,828 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:46:29,828 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,828 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,828 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +blender: + '2.78': + full_name: 'Blender' + + installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,828 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,828 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,844 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,844 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,844 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:46:29,844 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,844 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,844 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +bootracer: + '6.50.0.450': + full_name: 'BootRacer' + installer: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + uninstaller: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# download zip archive manually and unpack msi to slat master winrepo-ng directory + +2020-03-06 10:46:29,844 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,844 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,844 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,858 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,858 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:46:29,858 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,858 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,858 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: + +bulkrenameutility: + + '3.0.0.1': + + full_name: 'Bulk Rename Utility 3.0.0.1 (64-bit)' + + installer: 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\Bulk Rename Utility\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:29,858 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,858 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,858 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,858 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,858 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:46:29,874 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,874 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +# just 32-bit x86 installer available + + + +bulk_extractor: + + '1.5.5': + full_name: 'Bulk Extractor 1.5.5' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.5\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Bulk Extractor 1.5.1' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.1\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Bulk Extractor 1.5.0' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.0\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,874 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,874 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,874 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:46:29,874 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.01616215705871582 +2020-03-06 10:46:29,890 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: + +ccleaner-slim: + + '5.60': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup560_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.59': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup559_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.58': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup558_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup557_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,890 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:46:29,906 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,906 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: + +ccleaner: + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup557.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.44': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup544.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:29,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,906 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,906 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,906 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:46:29,906 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,922 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +cdburnerxp: + '4.5.6.5931': + full_name: 'CDBurnerXP' + installer: 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\CDBurnerXP\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,922 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,922 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,922 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,922 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:46:29,922 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,922 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,936 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +# just 32-bit x86 installer available + + + +cdroller: + '10.0': + full_name: 'CDRoller version 10.0' + installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe' + install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"' + uninstaller: '%PROGRAMFILES(x86)%\CDRoller\unins000.exe' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,937 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:46:29,937 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,937 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +check-mk-agent-msi: + + '1.5.0.3268': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2940': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2857': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8.1521': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8p26': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p5': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6.185': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p16': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p14': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p13': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p12': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:29,954 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,954 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.01722121238708496 +2020-03-06 10:46:29,954 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,954 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,954 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:46:29,954 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,954 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,967 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +check-mk-agent: + 'Not Found': + full_name: 'Check_MK Agent 1.2.8b4' + + installer: 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe' + + uninstaller: '%ProgramFiles%\check_mk\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:29,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:46:29,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,968 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +chrome-rdp: + latest: + full_name: 'Chrome Remote Desktop Host' + installer: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,983 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,983 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:46:29,983 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,983 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:29,983 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +chrome: + latest: + full_name: 'Google Chrome' + installer: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:29,983 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:29,983 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:29,983 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:29,983 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:29,983 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:46:29,983 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:29,983 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,000 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +clamav: + '0.99.1': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + '0.98.7': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + +2020-03-06 10:46:30,000 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) +2020-03-06 10:46:30,000 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,000 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,000 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,000 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:46:30,000 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,000 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,000 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +# just 32-bit x86 installer available + + + +clamwin: + '0.98.7': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.6': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.5': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,014 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,015 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0011622905731201172 +2020-03-06 10:46:30,015 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,015 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,015 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:46:30,015 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,015 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,015 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +classicshell: + '4.2.4': + full_name: 'Classic Shell' + installer: 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe' + install_flags: '/passive' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,015 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,015 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,031 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,031 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:46:30,031 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,031 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,031 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +# just 32-bit x86 installer available + + + +clink: + '0.4.8': + full_name: 'Clink v0.4.8' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.8\clink_uninstall_0.4.8.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.7': + full_name: 'Clink v0.4.7' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.7\clink_uninstall_0.4.7.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.6': + full_name: 'Clink v0.4.6' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.6\clink_uninstall_0.4.6.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.4': + full_name: 'Clink v0.4.4' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.4\clink_uninstall_0.4.4.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# https://mridgers.github.io/clink/ + +2020-03-06 10:46:30,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,031 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,031 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,046 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:46:30,046 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,046 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +conemu: + '11.160.5290': + + full_name: 'ConEmu 160529.x64' + install_flags: '/p:x64,adm /quiet /norestart' + uninstall_flags: '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart' + + installer: 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,046 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:46:30,046 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,062 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.015436887741088867 +2020-03-06 10:46:30,062 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +cpu-z: + + '1.86': + full_name: 'CPUID CPU-Z 1.86' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.85': + full_name: 'CPUID CPU-Z 1.85' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.84': + full_name: 'CPUID CPU-Z 1.84' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.83': + full_name: 'CPUID CPU-Z 1.83' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.82': + full_name: 'CPUID CPU-Z 1.82' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.81': + full_name: 'CPUID CPU-Z 1.81' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.80': + full_name: 'CPUID CPU-Z 1.80' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.79': + full_name: 'CPUID CPU-Z 1.79' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.78': + full_name: 'CPUID CPU-Z 1.78' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.77': + full_name: 'CPUID CPU-Z 1.77' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.76': + full_name: 'CPUID CPU-Z 1.76' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.75': + full_name: 'CPUID CPU-Z 1.75' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.74': + full_name: 'CPUID CPU-Z 1.74' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.73': + full_name: 'CPUID CPU-Z 1.73' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.72.1': + full_name: 'CPUID CPU-Z 1.72.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.71.1': + full_name: 'CPUID CPU-Z 1.71.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.70': + full_name: 'CPUID CPU-Z 1.70' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.69': + full_name: 'CPUID CPU-Z 1.69' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.68': + full_name: 'CPUID CPU-Z 1.68' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.67': + full_name: 'CPUID CPU-Z 1.67' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.66': + full_name: 'CPUID CPU-Z 1.66' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.65': + full_name: 'CPUID CPU-Z 1.65' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,062 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,062 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,078 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,078 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:46:30,078 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,078 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +curl: + '7.46.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.45.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.44.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.43.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# You need to download the win64 msi from website (Captcha protected) and place in your winrepo-ng on master +# http://www.confusedbycode.com/curl/#downloads +# Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, +# so you might not be calling the right 'curl' + +2020-03-06 10:46:30,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,094 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,094 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,094 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:46:30,094 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,094 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,094 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +cyberduck-cli: + '1.0.0.0': + full_name: 'Cyberduck CLI' + installer: 'http://dist.duck.sh/duck-5.0.3.20504.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ALLUSERSPROFILE%\Package Cache\{d7e97b39-df55-4b65-84b3-c24d1041948b}\duck-5.0.3.20504.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,094 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,094 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,094 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,094 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,094 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:46:30,108 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,108 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,108 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +# just 32-bit x86 installer available + + + + +cyberduck-msi: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:46:30,108 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,108 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,108 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,108 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,108 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:46:30,124 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,124 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,124 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +# just 32-bit x86 installer available + + + + +cyberduck: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:30,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,124 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,124 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,124 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,124 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:46:30,140 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,140 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +# just 32-bit x86 installer available + + + +defraggler: + '2.20': + full_name: 'Defraggler' + installer: 'https://download.piriform.com/dfsetup220.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '2.18.945': + full_name: 'Defraggler 2.18' + installer: 'https://download.piriform.com/dfsetup218.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,140 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:46:30,140 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,156 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.015946388244628906 +2020-03-06 10:46:30,156 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +dotnet: + '4.6.01590': + full_name: 'Microsoft .NET Framework 4.6.2' + installer: 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01590\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.01055': + full_name: 'Microsoft .NET Framework 4.6.1' + installer: 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01055\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.00081': + full_name: 'Microsoft .NET Framework 4.6' + installer: 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.00081\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.5.51209': + full_name: 'Microsoft .NET Framework 4.5.2' + installer: 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.5.51209\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,156 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,156 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,156 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,156 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,156 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:46:30,156 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.014868497848510742 +2020-03-06 10:46:30,171 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +# just 32-bit x86 installer available + + + + + + + + +dropbox: + '69.4.102': + full_name: 'Dropbox' + installer: 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe' + install_flags: '/NOLAUNCH' + uninstaller: '%PROGRAMFILES(x86)%\Dropbox\Client\DropboxUninstaller.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,171 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:46:30,171 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,187 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +duplicati: + '1.3.4': + + full_name: 'Duplicati (x64)' + installer: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + uninstaller: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + refresh: False + cache_dir: False + use_scheduler: False + +2020-03-06 10:46:30,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) +2020-03-06 10:46:30,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,187 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:46:30,187 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,187 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +dvdstyler: + 'Not Found': + full_name: 'DVDStyler v2.9.6' + + installer: 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\DVDStyler\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,203 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,203 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,203 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:46:30,203 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,203 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,203 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +echo-desktop: + '3.0.4': + full_name: + Echo Desktop + installer: + https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe + install_flags: + /S + uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" + uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" + +2020-03-06 10:46:30,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) +2020-03-06 10:46:30,217 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.01412510871887207 +2020-03-06 10:46:30,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,218 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:46:30,218 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,218 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +eea: +# '5.0.2260.1': +# full_name: 'ESET Endpoint Antivirus' +# +# installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# +# install_flags: '/qn ALLUSERS=1 /norestart' +# uninstall_flags: '/qn /norestart' +# msiexec: True +# locale: en_US +# reboot: False +# cache_dir: True +# use_scheduler: True + '6.3.2016.0': + full_name: 'ESET Endpoint Antivirus' + + installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + cache_dir: True + use_scheduler: True +# +# download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ +# for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB + +2020-03-06 10:46:30,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) +2020-03-06 10:46:30,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,234 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:46:30,234 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,234 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +emet: + '5.5': + full_name: 'EMET 5.5' + installer: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + install_flags: 'ALLUSERS=1 /quiet /qn /norestart' + uninstaller: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,234 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,234 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,234 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:46:30,234 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,250 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.01562643051147461 +2020-03-06 10:46:30,250 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +# just 32-bit x86 installer available + + + +# Source: https://www.emsisoft.com/en/ +emsisoft-anti-malware: + '9.0': + full_name: 'Emsisoft Anti-Malware' + installer: 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Emsisoft Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,250 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,250 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,250 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,250 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:46:30,250 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,250 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,265 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: + + +eraser: + + '6.2.2986': + full_name: 'Eraser 6.2.0.2986' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '6.2.2983': + full_name: 'Eraser 6.2.0.2983' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,265 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,265 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:46:30,265 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,265 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,282 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +evernote: + '6.9.7.6770': + full_name: 'Evernote v. 6.9.7' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.9.6.6729': + full_name: 'Evernote v. 6.9.6' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.5.4.4720': + full_name: 'Evernote v. 6.5.4' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,282 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,282 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,282 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,282 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:46:30,282 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,282 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,295 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +# just 32-bit x86 installer available + + + +fiddler: + '5.0.20181.14850': + full_name: 'Fiddler' + installer: 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe' + install_flags: '/S /D=%ProgramFiles(x86)%\Fiddler' + uninstaller: '%ProgramFiles(x86)%\Fiddler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,296 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,296 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,296 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:46:30,296 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,296 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +# just 32-bit x86 installer available + + + +# Source: http://filehippo.com/download_update_checker/ +filehippo-app-manager: + '2.0': + full_name: 'FileHippo App Manager' + installer: 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\FileHippo.com\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download manually and place on master salt://win/repo-ng/filehippo-app-manager + +2020-03-06 10:46:30,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,312 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:46:30,312 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,312 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: + + +filezilla: + + '3.47.1': + full_name: 'FileZilla Client 3.47.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.47.0': + full_name: 'FileZilla Client 3.47.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.3': + full_name: 'FileZilla Client 3.46.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.2': + full_name: 'FileZilla Client 3.46.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.1': + full_name: 'FileZilla Client 3.46.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.0': + full_name: 'FileZilla Client 3.46.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.1': + full_name: 'FileZilla Client 3.45.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.0': + full_name: 'FileZilla Client 3.45.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.2': + full_name: 'FileZilla Client 3.44.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.1': + full_name: 'FileZilla Client 3.44.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.0': + full_name: 'FileZilla Client 3.44.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.43.0': + full_name: 'FileZilla Client 3.43.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.1': + full_name: 'FileZilla Client 3.42.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.0': + full_name: 'FileZilla Client 3.42.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.2': + full_name: 'FileZilla Client 3.41.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.1': + full_name: 'FileZilla Client 3.41.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.0': + full_name: 'FileZilla Client 3.41.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.40.0': + full_name: 'FileZilla Client 3.40.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.39.0': + full_name: 'FileZilla Client 3.39.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.1': + full_name: 'FileZilla Client 3.38.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.0': + full_name: 'FileZilla Client 3.38.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.4': + full_name: 'FileZilla Client 3.37.4' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.3': + full_name: 'FileZilla Client 3.37.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.1': + full_name: 'FileZilla Client 3.37.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.0': + full_name: 'FileZilla Client 3.37.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.36.0': + full_name: 'FileZilla Client 3.36.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.2': + full_name: 'FileZilla Client 3.35.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.1': + full_name: 'FileZilla Client 3.35.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.0': + full_name: 'FileZilla Client 3.35.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.34.0': + full_name: 'FileZilla Client 3.34.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.33.0': + full_name: 'FileZilla Client 3.33.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.32.0': + full_name: 'FileZilla Client 3.32.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.31.0': + full_name: 'FileZilla Client 3.31.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.30.0': + full_name: 'FileZilla Client 3.30.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.29.0': + full_name: 'FileZilla Client 3.29.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.28.0': + full_name: 'FileZilla Client 3.28.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.1': + full_name: 'FileZilla Client 3.27.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0.1': + full_name: 'FileZilla Client 3.27.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0': + full_name: 'FileZilla Client 3.27.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.2': + full_name: 'FileZilla Client 3.26.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.1': + full_name: 'FileZilla Client 3.26.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.0': + full_name: 'FileZilla Client 3.26.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.2': + full_name: 'FileZilla Client 3.25.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.1': + full_name: 'FileZilla Client 3.25.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.0': + full_name: 'FileZilla Client 3.25.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.1': + full_name: 'FileZilla Client 3.24.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.0': + full_name: 'FileZilla Client 3.24.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.2': + full_name: 'FileZilla Client 3.23.0.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.1': + full_name: 'FileZilla Client 3.23.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0': + full_name: 'FileZilla Client 3.23.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.2': + full_name: 'FileZilla Client 3.22.2.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.1': + full_name: 'FileZilla Client 3.22.2.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2': + full_name: 'FileZilla Client 3.22.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.1': + full_name: 'FileZilla Client 3.22.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.0': + full_name: 'FileZilla Client 3.22.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.21.0': + full_name: 'FileZilla Client 3.21.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.1': + full_name: 'FileZilla Client 3.20.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.0': + full_name: 'FileZilla Client 3.20.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.19.0': + full_name: 'FileZilla Client 3.19.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.18.0': + full_name: 'FileZilla Client 3.18.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0.1': + full_name: 'FileZilla Client 3.17.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0': + full_name: 'FileZilla Client 3.17.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.1': + full_name: 'FileZilla Client 3.16.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.0': + full_name: 'FileZilla Client 3.16.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,328 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,343 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:46:30,343 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,343 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +firefox-esr_x64: + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,359 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.015574455261230469 +2020-03-06 10:46:30,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,373 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,374 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:46:30,374 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,374 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,374 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +firefox-esr_x86: + + + + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.8.0': + full_name: 'Mozilla Firefox 38.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.1': + full_name: 'Mozilla Firefox 38.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.0': + full_name: 'Mozilla Firefox 38.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.1': + full_name: 'Mozilla Firefox 38.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Firefox 38.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.2': + full_name: 'Mozilla Firefox 38.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.1': + full_name: 'Mozilla Firefox 38.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Firefox 38.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Firefox 38.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Firefox 38.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.1': + full_name: 'Mozilla Firefox 38.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,391 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,391 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.016788959503173828 +2020-03-06 10:46:30,391 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,405 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,405 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:46:30,405 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,405 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,405 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +firefox_x64: + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.0008881092071533203 +2020-03-06 10:46:30,438 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,438 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,438 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:46:30,438 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,455 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.01652216911315918 +2020-03-06 10:46:30,455 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +firefox_x86: + + + + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.2': + full_name: 'Mozilla Firefox 41.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.1': + full_name: 'Mozilla Firefox 41.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0': + full_name: 'Mozilla Firefox 41.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.3': + full_name: 'Mozilla Firefox 40.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.2': + full_name: 'Mozilla Firefox 40.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0': + full_name: 'Mozilla Firefox 40.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0.3': + full_name: 'Mozilla Firefox 39.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0': + full_name: 'Mozilla Firefox 39.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.6': + full_name: 'Mozilla Firefox 38.0.6 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.5': + full_name: 'Mozilla Firefox 38.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.1': + full_name: 'Mozilla Firefox 38.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0': + full_name: 'Mozilla Firefox 38.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.2': + full_name: 'Mozilla Firefox 37.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.1': + full_name: 'Mozilla Firefox 37.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0': + full_name: 'Mozilla Firefox 37.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.4': + full_name: 'Mozilla Firefox 36.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.3': + full_name: 'Mozilla Firefox 36.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.1': + full_name: 'Mozilla Firefox 36.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0': + full_name: 'Mozilla Firefox 36.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0.1': + full_name: 'Mozilla Firefox 35.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0': + full_name: 'Mozilla Firefox 35.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0.5': + full_name: 'Mozilla Firefox 34.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0': + full_name: 'Mozilla Firefox 34.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1.1': + full_name: 'Mozilla Firefox 33.1.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1': + full_name: 'Mozilla Firefox 33.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.3': + full_name: 'Mozilla Firefox 33.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.2': + full_name: 'Mozilla Firefox 33.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.1': + full_name: 'Mozilla Firefox 33.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0': + full_name: 'Mozilla Firefox 33.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.3': + full_name: 'Mozilla Firefox 32.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.2': + full_name: 'Mozilla Firefox 32.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.1': + full_name: 'Mozilla Firefox 32.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0': + full_name: 'Mozilla Firefox 32.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '31.0': + full_name: 'Mozilla Firefox 31.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '30.0': + full_name: 'Mozilla Firefox 30.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '29.0.1': + full_name: 'Mozilla Firefox 29.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,482 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.027064800262451172 +2020-03-06 10:46:30,484 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,484 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,484 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:46:30,484 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,484 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,484 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +# just 32-bit x86 installer available + + + + +gedit: + '2.30.1': + full_name: gedit 2.30.1 + installer: https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\gedit\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,484 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,484 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,499 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,499 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:46:30,499 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,499 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,499 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +# just 32-bit x86 installer available +# Gimp installs into %ProgramFiles on either cpu arch +gimp: + + '2.10.4': + full_name: 'GIMP 2.10.4' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.22': + full_name: 'GIMP 2.8.22' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.16': + full_name: 'GIMP 2.8.16' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.14': + full_name: 'GIMP 2.8.14' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + +2020-03-06 10:46:30,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) +2020-03-06 10:46:30,499 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,499 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,499 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,499 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:46:30,499 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.01588296890258789 +2020-03-06 10:46:30,515 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +git-extensions: + '2.48.05': + full_name: 'Git Extensions 2.48.05' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.48.03': + full_name: 'Git Extensions 2.48.03' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,515 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:46:30,515 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,535 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.01985001564025879 +2020-03-06 10:46:30,535 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git + + + + + + + +git: + + + + + + + + + + '2.23.0.windows.1': + full_name: Git version 2.23.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.22.0.windows.1': + full_name: Git version 2.22.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.21.0': + full_name: Git version 2.21.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.1': + full_name: Git version 2.20.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.0': + full_name: Git version 2.20.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.2': + full_name: Git version 2.19.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.1': + full_name: Git version 2.19.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.0': + full_name: Git version 2.19.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.18.0': + full_name: Git version 2.18.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.1.2': + full_name: Git version 2.17.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.0': + full_name: Git version 2.17.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.3': + full_name: Git version 2.16.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.2': + full_name: Git version 2.16.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.0.2': + full_name: Git version 2.16.0.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.15.0': + full_name: Git version 2.15.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.14.2': + full_name: Git version 2.14.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.3': + full_name: Git version 2.13.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.1.2': + full_name: Git version 2.13.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.2': + full_name: Git version 2.12.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.1': + full_name: Git version 2.12.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0.3': + full_name: Git version 2.11.0.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0': + full_name: Git version 2.11.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.2': + full_name: Git version 2.10.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.1': + full_name: Git version 2.10.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.0': + full_name: Git version 2.10.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.9.0': + full_name: Git version 2.9.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.4': + full_name: Git version 2.8.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.3': + full_name: Git version 2.8.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.2': + full_name: Git version 2.8.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.1': + full_name: Git version 2.8.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.2': + full_name: Git version 2.7.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.1': + full_name: Git version 2.7.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.0': + full_name: Git version 2.7.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.4': + full_name: Git version 2.6.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.2': + full_name: Git version 2.6.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.3': + full_name: Git version 2.5.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.2.2': + full_name: Git version 2.5.2.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.0': + full_name: Git version 2.5.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + +msysgit: + '1.9.5-preview20150319': + full_name: 'Git version 1.9.5-preview20150319' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART ' + msiexec: False + locale: en_US + reboot: False + '1.9.5-preview20141217': + full_name: 'Git version 1.9.5-preview20141217' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + '1.9.4-preview20140815': + full_name: 'Git version 1.9.4-preview20140815' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe' + install_flags: '/VERYSILENT /NOREBOOT' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NOREBOOT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,542 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,548 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.013262510299682617 +2020-03-06 10:46:30,548 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,548 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,548 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:46:30,548 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,548 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,561 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +# just 32-bit x86 installer available + + + +glarysoft-absolute-uninstaller: + '5.3.1.23': + full_name: 'Absolute Uninstaller 5.3.1.23' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '5.3.1.21': + full_name: 'Absolute Uninstaller 5.3.1.21' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,561 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,561 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,561 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,561 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,561 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:46:30,561 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,561 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,561 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +# just 32-bit x86 installer available + + + +gnucash: + '2.6.5': + full_name: 'GnuCash 2.6.5' + installer: 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe' + install_flags: '/SILENT' + uninstaller: '%ProgramFiles(x86)%\gnucash\uninstall\gnucash\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,561 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,561 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,578 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:46:30,578 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,578 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,595 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +# "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. +# See https://golang.org/ + + + + + +# Hint: the versionWithTrailingZero is required, because golang sets the version field in Windows to e.g. 1.14.0 or 1.13.0 if 1.14 or 1.13 is installed. +# If we dont do that the version can not be removed anymore via saltstack. + +golang: + + + '1.2.2': + + full_name: 'Go Programming Language amd64 go1.2.2' + installer: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.0': + + full_name: 'Go Programming Language amd64 go1.3' + installer: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.1': + + full_name: 'Go Programming Language amd64 go1.3.1' + installer: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.2': + + full_name: 'Go Programming Language amd64 go1.3.2' + installer: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.3': + + full_name: 'Go Programming Language amd64 go1.3.3' + installer: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.0': + + full_name: 'Go Programming Language amd64 go1.4' + installer: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.1': + + full_name: 'Go Programming Language amd64 go1.4.1' + installer: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.2': + + full_name: 'Go Programming Language amd64 go1.4.2' + installer: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.3': + + full_name: 'Go Programming Language amd64 go1.4.3' + installer: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.0': + + full_name: 'Go Programming Language amd64 go1.5' + installer: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.1': + + full_name: 'Go Programming Language amd64 go1.5.1' + installer: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.2': + + full_name: 'Go Programming Language amd64 go1.5.2' + installer: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.3': + + full_name: 'Go Programming Language amd64 go1.5.3' + installer: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.4': + + full_name: 'Go Programming Language amd64 go1.5.4' + installer: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.0': + + full_name: 'Go Programming Language amd64 go1.6' + installer: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.1': + + full_name: 'Go Programming Language amd64 go1.6.1' + installer: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.2': + + full_name: 'Go Programming Language amd64 go1.6.2' + installer: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.3': + + full_name: 'Go Programming Language amd64 go1.6.3' + installer: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.4': + + full_name: 'Go Programming Language amd64 go1.6.4' + installer: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.0': + + full_name: 'Go Programming Language amd64 go1.7' + installer: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.1': + + full_name: 'Go Programming Language amd64 go1.7.1' + installer: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.2': + + full_name: 'Go Programming Language amd64 go1.7.2' + installer: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.3': + + full_name: 'Go Programming Language amd64 go1.7.3' + installer: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.4': + + full_name: 'Go Programming Language amd64 go1.7.4' + installer: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.5': + + full_name: 'Go Programming Language amd64 go1.7.5' + installer: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.6': + + full_name: 'Go Programming Language amd64 go1.7.6' + installer: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.0': + + full_name: 'Go Programming Language amd64 go1.8' + installer: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.1': + + full_name: 'Go Programming Language amd64 go1.8.1' + installer: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.2': + + full_name: 'Go Programming Language amd64 go1.8.2' + installer: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.3': + + full_name: 'Go Programming Language amd64 go1.8.3' + installer: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.4': + + full_name: 'Go Programming Language amd64 go1.8.4' + installer: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.5': + + full_name: 'Go Programming Language amd64 go1.8.5' + installer: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.6': + + full_name: 'Go Programming Language amd64 go1.8.6' + installer: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.7': + + full_name: 'Go Programming Language amd64 go1.8.7' + installer: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.0': + + full_name: 'Go Programming Language amd64 go1.9' + installer: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.1': + + full_name: 'Go Programming Language amd64 go1.9.1' + installer: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.2': + + full_name: 'Go Programming Language amd64 go1.9.2' + installer: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.3': + + full_name: 'Go Programming Language amd64 go1.9.3' + installer: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.4': + + full_name: 'Go Programming Language amd64 go1.9.4' + installer: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + + full_name: 'Go Programming Language amd64 go1.9.5' + installer: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.6': + + full_name: 'Go Programming Language amd64 go1.9.6' + installer: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.7': + + full_name: 'Go Programming Language amd64 go1.9.7' + installer: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.0': + + full_name: 'Go Programming Language amd64 go1.10' + installer: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.1': + + full_name: 'Go Programming Language amd64 go1.10.1' + installer: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.2': + + full_name: 'Go Programming Language amd64 go1.10.2' + installer: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.3': + + full_name: 'Go Programming Language amd64 go1.10.3' + installer: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.4': + + full_name: 'Go Programming Language amd64 go1.10.4' + installer: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.5': + + full_name: 'Go Programming Language amd64 go1.10.5' + installer: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.6': + + full_name: 'Go Programming Language amd64 go1.10.6' + installer: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.7': + + full_name: 'Go Programming Language amd64 go1.10.7' + installer: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.8': + + full_name: 'Go Programming Language amd64 go1.10.8' + installer: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.0': + + full_name: 'Go Programming Language amd64 go1.11' + installer: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.1': + + full_name: 'Go Programming Language amd64 go1.11.1' + installer: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.2': + + full_name: 'Go Programming Language amd64 go1.11.2' + installer: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.3': + + full_name: 'Go Programming Language amd64 go1.11.3' + installer: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.4': + + full_name: 'Go Programming Language amd64 go1.11.4' + installer: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.5': + + full_name: 'Go Programming Language amd64 go1.11.5' + installer: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.6': + + full_name: 'Go Programming Language amd64 go1.11.6' + installer: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.7': + + full_name: 'Go Programming Language amd64 go1.11.7' + installer: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.8': + + full_name: 'Go Programming Language amd64 go1.11.8' + installer: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.9': + + full_name: 'Go Programming Language amd64 go1.11.9' + installer: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.10': + + full_name: 'Go Programming Language amd64 go1.11.10' + installer: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.11': + + full_name: 'Go Programming Language amd64 go1.11.11' + installer: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.12': + + full_name: 'Go Programming Language amd64 go1.11.12' + installer: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.13': + + full_name: 'Go Programming Language amd64 go1.11.13' + installer: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.0': + + full_name: 'Go Programming Language amd64 go1.12' + installer: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.1': + + full_name: 'Go Programming Language amd64 go1.12.1' + installer: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.2': + + full_name: 'Go Programming Language amd64 go1.12.2' + installer: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.3': + + full_name: 'Go Programming Language amd64 go1.12.3' + installer: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.4': + + full_name: 'Go Programming Language amd64 go1.12.4' + installer: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.5': + + full_name: 'Go Programming Language amd64 go1.12.5' + installer: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.6': + + full_name: 'Go Programming Language amd64 go1.12.6' + installer: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.7': + + full_name: 'Go Programming Language amd64 go1.12.7' + installer: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.8': + + full_name: 'Go Programming Language amd64 go1.12.8' + installer: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.9': + + full_name: 'Go Programming Language amd64 go1.12.9' + installer: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.10': + + full_name: 'Go Programming Language amd64 go1.12.10' + installer: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.11': + + full_name: 'Go Programming Language amd64 go1.12.11' + installer: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.12': + + full_name: 'Go Programming Language amd64 go1.12.12' + installer: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.13': + + full_name: 'Go Programming Language amd64 go1.12.13' + installer: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.14': + + full_name: 'Go Programming Language amd64 go1.12.14' + installer: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.15': + + full_name: 'Go Programming Language amd64 go1.12.15' + installer: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.16': + + full_name: 'Go Programming Language amd64 go1.12.16' + installer: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.17': + + full_name: 'Go Programming Language amd64 go1.12.17' + installer: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.0': + + full_name: 'Go Programming Language amd64 go1.13' + installer: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.1': + + full_name: 'Go Programming Language amd64 go1.13.1' + installer: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.2': + + full_name: 'Go Programming Language amd64 go1.13.2' + installer: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.3': + + full_name: 'Go Programming Language amd64 go1.13.3' + installer: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.4': + + full_name: 'Go Programming Language amd64 go1.13.4' + installer: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.5': + + full_name: 'Go Programming Language amd64 go1.13.5' + installer: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.6': + + full_name: 'Go Programming Language amd64 go1.13.6' + installer: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.7': + + full_name: 'Go Programming Language amd64 go1.13.7' + installer: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.8': + + full_name: 'Go Programming Language amd64 go1.13.8' + installer: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.14.0': + + full_name: 'Go Programming Language amd64 go1.14' + installer: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:30,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,611 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.01593160629272461 +2020-03-06 10:46:30,611 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,611 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,611 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:46:30,611 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,611 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,623 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +goodsync: + '9.9.46.6': + full_name: 'GoodSync' + installer: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,623 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0013706684112548828 +2020-03-06 10:46:30,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:46:30,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,624 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +# just 32-bit x86 installer available + + + +gow: + 'Not Found': + full_name: 'Gow' + installer: 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Gow\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + # Gow - GNU on Windows - The lightweight alternative to Cygwin + # https://github.com/bmatzelle/gow/wiki + +2020-03-06 10:46:30,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,640 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:46:30,640 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,640 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +# just 32-bit x86 installer available + + + +gpg4win-light: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream +# Here are work around instructions under Issue #113 in the meantime +# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 +# + +2020-03-06 10:46:30,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,655 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:46:30,655 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,655 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +# just 32-bit x86 installer available + + + +gpg4win-vanilla: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,655 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:46:30,671 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,671 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: + + +graylog-collector-sidecar: + + '0.1.6': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.5': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.4': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.3': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.2': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.1': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.0': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,671 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:46:30,671 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.015870094299316406 +2020-03-06 10:46:30,687 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +grepwin: + '1.6.682': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.673': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.661': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.646': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,687 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:46:30,687 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,703 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.01562643051147461 +2020-03-06 10:46:30,703 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +# just 32-bit x86 installer available + + + +gvim: + 'Not Found': + full_name: 'Vim 8.0.3' + installer: 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Vim\vim80\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,703 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,703 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,703 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,703 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,703 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:46:30,703 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,703 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,703 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +# Source: https://handbrake.fr +handbrake: + '0.10.5': + full_name: 'Handbrake 0.10.5' + + installer: 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Handbrake\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0009922981262207031 +2020-03-06 10:46:30,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,718 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:46:30,718 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,718 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +hipchat: + + + + '4.0.1650': + installer: 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe' + full_name: 'HipChat' + install_flags: '/sp /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Atlassian\Hipchat4\unins000.exe' + uninstall_flags: '/sp /verysilent' + msiexec: False + reboot: False + +2020-03-06 10:46:30,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:46:30,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,718 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:46:30,734 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,734 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,734 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +hostsfileeditor: + '1.2.0': + + full_name: 'Hosts File Editor' + installer: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + uninstaller: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,734 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,734 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:46:30,734 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,734 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,734 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: + +hwinfo: + '5.70': + + full_name: 'HWiNFO64 Version 5.70' + installer: 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe' + uninstaller: '%PROGRAMFILES%\HWiNFO64\unins000.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,734 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,750 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:46:30,750 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,750 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,750 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +ice: + '3.6.1.2': + full_name: 'Ice 3.6.1.2' + installer: 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi' + uninstaller: '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,750 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,750 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,750 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:46:30,750 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,765 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.01523590087890625 +2020-03-06 10:46:30,765 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +# just 32-bit x86 installer available + + + +icecast: + '2.4.2': + full_name: 'Icecast' + installer: 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Icecast\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,765 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,765 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:46:30,765 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,780 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.015002727508544922 +2020-03-06 10:46:30,780 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +icloud: + '7.3.0.20': + full_name: iCloud + installer: 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,780 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,780 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,780 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,780 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:46:30,796 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,796 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,796 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +iismediaservices: + '4.1.0938.454': + full_name: 'IIS Media Services 4.1' + + installer: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '4.0.0938.54': + full_name: 'IIS Media Services 4.0' + + installer: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '2.0.1': + full_name: 'IIS Media Services 2.0' + + installer: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,796 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,796 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:46:30,796 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,796 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,796 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +influx-capacitor: + '1.0.89': + full_name: 'Influx Capacitor' + installer: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + install_flags: '/q' + uninstaller: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + uninstall_flags: '/q' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,815 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,815 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,815 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,815 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:46:30,815 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,815 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,815 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +inkscape: + '0.91': + full_name: 'Inkscape 0.91' + + installer: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + uninstaller: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,829 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.013138294219970703 +2020-03-06 10:46:30,829 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,829 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,829 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:46:30,829 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,829 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,829 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +# just 32-bit x86 installer available + + + +intellij-community: + + '14.1.4': + full_name: 'IntelliJ IDEAS Community Edition 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,829 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,829 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,846 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,846 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:46:30,846 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,846 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,846 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +# just 32-bit x86 installer available + + + +intellij-ultimate: + + '14.1.4': + full_name: 'IntelliJ IDEAS Ultimate 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:30,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,846 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,846 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,860 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,860 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:46:30,860 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,860 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,860 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +internet-evidence-finder: + '6.2.3.0001': + full_name: 'Internet Evidence Finder' + installer: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,860 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,860 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,860 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,860 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,860 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:46:30,860 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.014171123504638672 +2020-03-06 10:46:30,874 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +irfanview-plugins: + '4.42': + + full_name: 'Irfanview Plugins 4.40' + installer: 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe' + # download manually from: http://www.irfanview.info/files/irfanview_plugins_x64_442_setup.exe and place on master + + install_flags: '/silent' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,874 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,874 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,874 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:46:30,874 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,874 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +irfanview: + '4.51': + + full_name: 'IrfanView 64 (remove only)' + installer: 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe' + # download manually from: http://www.irfanview.info/files/iview451_x64_setup.exe and place on master + + install_flags: '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0' + uninstaller: '%ProgramFiles%\irfanview\iv_uninstall.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False +# install_flags +# folder: destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used +# silent: silent install - no prompts +# desktop: create desktop shortcut; 0 = no, 1 = yes (default: 0) +# thumbs: create desktop shortcut for thumbnails; 0 = no, 1 = yes (default: 0) +# group: create group in Start Menu; 0 = no, 1 = yes (default: 0) +# allusers: desktop/group links are for all users; 0 = current user, 1 = all users +# assoc: if used, set file associations; 0 = none, 1 = images only, 2 = select all (default: 0) +# assocallusers: if used, set associations for all users (Windows XP only) +# ini: if used, set custom INI file folder (system environment variables are allowed) + +2020-03-06 10:46:30,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.015738964080810547 +2020-03-06 10:46:30,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,890 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:46:30,890 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,890 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +isapirewrite-lite: + '3.1.0112': + full_name: 'Helicon ISAPI_Rewrite 3 Lite' + + installer: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + uninstaller: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:30,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,906 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:46:30,906 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,906 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +itunes: + '12.8.0.150': + full_name: 'iTunes' + + installer: 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe' + uninstall_flags: | + '/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} & + msiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} & + msiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} & + msiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} & + msiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} & + msiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} & + exit 0' + # the above uninstalls: + # Bonjour64 v. 3.1.0.1 {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} + # Apple Software Update v. 2.6.0.1 {A30EA700-5515-48F0-88B0-9E99DC356B88} + # Apple Mobile Device Support (64-bit) v. 11.4.1.46 {C29B636B-9015-4ED1-A12F-6375A337F23B} + # Apple Application Support (32-bit) v. 6.6 {C56BA005-F02C-461B-ACA5-A0CE3E32578F} + # Apple Application Support (64-bit) v. 6.6 {D745E014-74DD-43A3-98DF-E7D38164B681} + # iTunes v. 12.8.0.150 {36F365B3-05C2-455D-9D96-B73829DE046D} + + install_flags: '/quiet /qn ALLUSERS=1 /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,906 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,906 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,906 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:46:30,906 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.015151262283325195 +2020-03-06 10:46:30,921 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way +# to find manual download links for any version use: +# http://www.java.com/en/download/manual.jsp +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + +jdk8: + '8.0.1440.1': + + full_name: 'Java SE Development Kit 8 Update 144 (64-bit)' + installer: salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe + + install_flags: '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"' + uninstall_flags: '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,921 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:46:30,921 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,921 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +jre: + '7.0.790': + + full_name: 'Java 7 Update 79 (64-bit)' + installer: 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/s REBOOT=Suppress SPONSORS=0' + msiexec: False + locale: en_US + reboot: False + # due to winrepo installer limitations you need to manually download the exe from + # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 + # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way + +2020-03-06 10:46:30,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,937 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:46:30,937 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,937 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://www.java.com/en/download/manual.jsp +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + + + +jre8: + + + + '8.0.2010.9': + + full_name: 'Java 8 Update 201 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2110.9': + + full_name: 'Java 8 Update 211 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2210.9': + + full_name: 'Java 8 Update 221 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2310.9': + + full_name: 'Java 8 Update 231 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2410.7': + + full_name: 'Java 8 Update 241 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:30,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,952 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:46:30,952 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,952 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +jungledisk-server-management: + '3.23.0.2': + full_name: 'Jungle Disk Server Management' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-management64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:46:30,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,968 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +jungledisk-server: + '3.23.0.2': + full_name: 'Jungle Disk Server' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:46:30,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,968 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +jungledisk-workgroup: + '3.23.0.2': + full_name: 'Jungle Disk Workgroup' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,984 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,984 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,984 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:30,984 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:46:30,984 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:30,984 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:30,984 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +kdiff3: + 'Not Found': + full_name: 'KDiff3 (remove only)' + + installer: 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe' + + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\KDiff3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:30,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:30,984 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:30,984 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:30,984 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,000 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:46:31,000 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,000 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,000 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +# Keepass 2.x installation from https://keepass.info/ +# to keep the versioning in the format of "2..minor", two seperate version arrays are created. + + + +# Hint: Version 2.24 is the first version that provides a msi-package, all versions before had a -Setup.exe + + +keepass-2x: + + + '2.24.0': + full_name: 'KeePass 2.24' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.25.0': + full_name: 'KeePass 2.25' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.26.0': + full_name: 'KeePass 2.26' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.27.0': + full_name: 'KeePass 2.27' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.28.0': + full_name: 'KeePass 2.28' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.29.0': + full_name: 'KeePass 2.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.30.0': + full_name: 'KeePass 2.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.31.0': + full_name: 'KeePass 2.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.32.0': + full_name: 'KeePass 2.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.33.0': + full_name: 'KeePass 2.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.34.0': + full_name: 'KeePass 2.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.35.0': + full_name: 'KeePass 2.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.36.0': + full_name: 'KeePass 2.36' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.37.0': + full_name: 'KeePass 2.37' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.38.0': + full_name: 'KeePass 2.38' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.0': + full_name: 'KeePass 2.39' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.40.0': + full_name: 'KeePass 2.40' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.41.0': + full_name: 'KeePass 2.41' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.0': + full_name: 'KeePass 2.42' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.43.0': + full_name: 'KeePass 2.43' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.44.0': + full_name: 'KeePass 2.44' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.1': + full_name: 'KeePass 2.39.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.1': + full_name: 'KeePass 2.42.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,019 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,019 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0197293758392334 +2020-03-06 10:46:31,019 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,019 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,019 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:46:31,030 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,031 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0009176731109619141 +2020-03-06 10:46:31,031 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +keepass: + '1.35.0': + full_name: 'KeePass 1.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.34.0': + full_name: 'KeePass 1.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.33.0': + full_name: 'KeePass 1.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.32.0': + full_name: 'KeePass 1.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.31.0': + full_name: 'KeePass 1.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.30.0': + full_name: 'KeePass 1.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.29.0': + full_name: 'KeePass 1.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,031 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,031 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,031 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,031 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:46:31,031 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,031 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,031 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +# just 32-bit x86 installer available + + + +lastpass: + 'Not Found': + full_name: 'LastPass (uninstall only)' + + installer: 'https://lastpass.eu/sync/lastpass_x64.exe' + + install_flags: '-si --userinstallie --userinstallff --userinstallchrome' + uninstaller: '%PROGRAMFILES(x86)%\LastPass\lastpass.exe' + uninstall_flags: '-sb' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,046 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:46:31,046 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,046 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +# NOTE: If the lazarus installation directory exists the installation will +# pop up a dialog box. This will cause the minion to hang because it +# is waiting for the user to click continue on a dialog box that will +# never be seen. So, before running this, make sure the lazarus +# installation directory is not present. +# If doing an upgrade that means you'll have to do something like the +# following: +# pkg.remove lazarus +# file.remove c:\lazarus +# pkg.install lazarus + + +lazarus: + + '1.8.0': + full_name: Lazarus 1.8.0 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + '1.6.4': + full_name: Lazarus 1.6.4 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + +2020-03-06 10:46:31,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) +2020-03-06 10:46:31,062 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,062 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,062 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,062 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:46:31,062 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,062 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,062 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +libreoffice: + + '5.3.5.2': + full_name: 'LibreOffice 5.3.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.3.6.1': + full_name: 'LibreOffice 5.3.6.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.6.2': + full_name: 'LibreOffice 5.4.6.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.7.2': + full_name: 'LibreOffice 5.4.7.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.0.5.2': + full_name: 'LibreOffice 6.0.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.2.7.1': + full_name: 'LibreOffice 6.2.7.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:31,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.01629018783569336 +2020-03-06 10:46:31,078 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,078 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,078 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:46:31,078 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,078 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +logparser: + '2.2.10': + full_name: 'Log Parser 2.2' + installer: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,078 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,093 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,093 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:46:31,093 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,093 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,093 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +# just 32-bit x86 installer available + + + +maas360bootanalyzer: + '1.0.0': + full_name: 'MaaS360 Boot Analyzer v 1.0.0' + installer: 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe' + + install_flags: | + '/S & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v UninstallString /d "C:\Program Files (x86)\BootAnalyzer\Uninstall.exe" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" & + exit 0' + + uninstaller: '%PROGRAMFILES(x86)%\MaaS360\BootAnalyzer\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory + +2020-03-06 10:46:31,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,093 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,093 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,093 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,108 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:46:31,108 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,108 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,108 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.malwarebytes.org +malwarebytes: + '3.5.1.2522': + full_name: 'Malwarebytes Anti-Malware version 2.0.4.1028' + installer: 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Malwarebytes Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: Falsea + +2020-03-06 10:46:31,108 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) +2020-03-06 10:46:31,108 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,108 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,108 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,108 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:46:31,108 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.031569480895996094 +2020-03-06 10:46:31,140 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +#MariaDB https://downloads.mariadb.org/mariadb/+releases/ +#only stable versions are listed + + + + + + + + +mariadb: + + + '5.5.63.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.62.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.61.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.60.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.59.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.58.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.57.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.56.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.55.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.54.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.53.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.52.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.51.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.50.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.49.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.48.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.47.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.0.38.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.37.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.36.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.35.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.34.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.33.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.32.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.29.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.28.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.27.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.26.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.25.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.23.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.19.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.18.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.17.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.16.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.2.22.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.21.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.20.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.19.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.18.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.16.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.15.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.14.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.13.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.12.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.11.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.10.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.9.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.8.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.6.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.1.38.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.37.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.36.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.35.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.34.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.33.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.32.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.31.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.30.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.29.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.28.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.27.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.26.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.25.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.24.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.23.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.22.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.21.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.19.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.18.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.17.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.16.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.14.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.13.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.12.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.11.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.10.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.9.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.8.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:46:31,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:46:31,160 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.020388364791870117 +2020-03-06 10:46:31,160 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,167 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,167 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:46:31,167 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.003789663314819336 +2020-03-06 10:46:31,171 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +mercurial: + '3.1.1': + + full_name: 'Mercurial 3.1.1 (x64)' + installer: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + uninstaller: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,171 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:46:31,171 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,171 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +messageanalyzer: + '4.0.7551.0': + full_name: 'Microsoft Message Analyzer' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi' + + install_flags: '/quiet /norestart' + uninstaller: '{1CC02C23-8FCD-487E-860C-311EC0A0C933}' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,186 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0005409717559814453 +2020-03-06 10:46:31,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,187 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:46:31,187 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,187 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +microsoft-build-tools: + '14.0.23107': + + full_name: 'Microsoft Build Tools 14.0 (amd64)' + uninstall_flags: '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart' + + installer: 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe' + install_flags: '/Q /NoRestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,202 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,202 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:46:31,202 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,202 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +mikogo: + '5.3.0': + full_name: 'Mikogo' + installer: 'https://download.mikogo4.com/mikogo-starter.exe' + install_flags: '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0' + uninstaller: '%AppData%\Mikogo\remover.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,202 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,202 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,202 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:46:31,202 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,218 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +miktex-basic: + '2.9': + full_name: 'MiKTeX 2.9' + + installer: 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe' + + install_flags: '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\MiKTeX 2.9\"' + uninstaller: 'cmd' + uninstall_flags: | + '/c del /Q /F /S "%ProgramFiles%\MiKTeX 2.9\" & + reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MiKTeX 2.9" /f & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,218 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:46:31,218 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,218 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +mongodb: + '3.3.5': + full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6': + full_name: 'MongoDB 3.2.6 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,234 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:46:31,234 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,234 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +ms-mbsa: + '2.3.2211': + + installer: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + uninstaller: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + + full_name: 'Microsoft Baseline Security Analyzer 2.3' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,234 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,234 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,234 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:46:31,234 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,234 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +ms-vcpp-2005-atl-redist_x64: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,250 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0009138584136962891 +2020-03-06 10:46:31,250 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,250 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,250 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:46:31,250 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,250 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,250 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +ms-vcpp-2005-atl-redist_x86: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,250 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,250 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,265 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:46:31,265 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,265 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,265 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +ms-vcpp-2005-redist_x64: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,265 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,265 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:46:31,265 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,265 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,265 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +ms-vcpp-2005-redist_x86: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,280 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.015612602233886719 +2020-03-06 10:46:31,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,280 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:46:31,280 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,280 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,280 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +ms-vcpp-2005-sp1-mfc-redist_x64: + '8.0.61000': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,280 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,280 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,280 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:46:31,280 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,280 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,297 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +ms-vcpp-2005-sp1-mfc-redist_x86: + '8.0.61001': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,297 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,297 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,297 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,297 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,297 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:46:31,297 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,297 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,297 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +ms-vcpp-2005-sp1-redist_x64: + '8.0.59192': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,297 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,297 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,297 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,297 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,312 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:46:31,312 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,312 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +ms-vcpp-2005-sp1-redist_x86: + '8.0.59193': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,312 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:46:31,312 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,312 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +ms-vcpp-2008-redist_x64: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' + installer: 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,328 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,328 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,328 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:46:31,328 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,328 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,328 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +ms-vcpp-2008-redist_x86: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' + installer: 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,328 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,328 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,328 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,328 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:46:31,342 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0005993843078613281 +2020-03-06 10:46:31,343 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +ms-vcpp-2008-sp1-atl-redist_x64: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,343 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:46:31,343 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,343 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +ms-vcpp-2008-sp1-atl-redist_x86: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,359 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:46:31,359 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,359 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,359 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +ms-vcpp-2008-sp1-mfc-redist_x64: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,359 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,359 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:46:31,359 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,359 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,359 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +ms-vcpp-2008-sp1-mfc-redist_x86: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,374 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015382051467895508 +2020-03-06 10:46:31,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,374 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:46:31,374 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,374 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,374 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +ms-vcpp-2010-sp1-mfc-redist_x64: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,374 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,374 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:46:31,374 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,390 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.015753507614135742 +2020-03-06 10:46:31,390 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +ms-vcpp-2010-sp1-mfc-redist_x86: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,390 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,390 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:46:31,390 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,390 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,390 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +ms-vcpp-2012-redist_x64: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ProgramData%\Package Cache\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\vcredist_x64.exe' + uninstall_flags: '/quiet /uninstall /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,390 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,406 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,406 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:46:31,406 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,406 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,406 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +ms-vcpp-2012-redist_x86: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: '"%ProgramData%\Package Cache\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\vcredist_x86.exe"' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,406 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,406 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,406 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,406 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:46:31,421 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,421 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +ms-vcpp-2013-redist_x64: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,421 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:46:31,421 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,421 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +ms-vcpp-2013-redist_x86: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,436 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,436 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,436 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:46:31,436 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,436 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,436 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +ms-vcpp-2015-build-tools: + '14.0.25420.1': + full_name: 'Microsoft Visual C++ Build Tools' + installer: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + install_flags: '/Q /Silent /NoRestart' + uninstaller: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + uninstall_flags: '/Q /U /Silent /NoRestart' + locale: en_US + reboot: False + +2020-03-06 10:46:31,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,436 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,436 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,436 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,436 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:46:31,436 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.015738487243652344 +2020-03-06 10:46:31,452 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +ms-vcpp-2015-redist_x64: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} + # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} + +2020-03-06 10:46:31,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,452 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,452 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,452 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:46:31,452 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,452 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +ms-vcpp-2015-redist_x86: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} + +2020-03-06 10:46:31,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,468 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:46:31,468 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,468 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,468 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +ms-vcpp-2017-redist_x64: + '14.20.27508.1': + full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + '14.20.27508': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,468 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,468 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:46:31,483 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,483 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,483 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +ms-vcpp-2017-redist_x86: + '14.11.25325.0': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' + installer: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,483 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,483 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,483 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,483 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:46:31,483 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,483 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,500 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: + + + + +mucommander: + + '0.9.2': + full_name: 'muCommander (remove only)' + installer: 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe' + uninstaller: '%PROGRAMFILES(x86)%\muCommander\uninstaller.exe' + install_flags: '/S' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:46:31,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,500 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,500 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,500 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,500 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:46:31,500 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,500 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,500 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +mysql-essential: + '5.1.73': + full_name: 'MySQL Server 5.1' + + installer: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,500 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,515 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:46:31,515 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,515 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +mysql-installer-community: + '1.4.3.0': + full_name: 'MySQL Installer - Community' + installer: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Read for MySQL Server 5.6.23.0 Community installation instructions: +# https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html +# https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html + +2020-03-06 10:46:31,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,515 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:46:31,515 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,530 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.015378713607788086 +2020-03-06 10:46:31,530 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +mysql-workbench-community: + + '8.0.15': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.14': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.13': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + +2020-03-06 10:46:31,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,530 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,530 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,530 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,530 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:46:31,530 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,530 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,530 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +never10: + '1.3': + full_name: 'Never 10 (GRC)' + installer: 'https://www.grc.com/files/never10.exe' + install_flags: 'update delete disable' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False +# download it from https://www.grc.com/never10.htm + +2020-03-06 10:46:31,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,530 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,530 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,547 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,547 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:46:31,547 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,547 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,547 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +# Please note that per +# https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows +# the MSI uninstall does not remove files or settings, +# and the service must be stopped beforehand. +# +# So this uninstall is not going to work. + +newrelic-infra: + + '1.0.279': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.292': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.296': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.301': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.311': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.316': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.323': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.336': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.338': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.341': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.673': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.677': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.682': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.690': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.703': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:31,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,547 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,561 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,563 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,563 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:46:31,563 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,563 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,563 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +nextcloud-client: + + '2.2.3.4': + full_name: 'Nextcloud Client 2.2.3.4' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.2.4.2': + full_name: 'Nextcloud Client 2.2.4.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.1.8': + full_name: 'Nextcloud Client 2.3.1.8' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.2.1': + full_name: 'Nextcloud Client 2.3.2.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.3.1': + full_name: 'Nextcloud Client 2.3.3.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.0': + full_name: 'Nextcloud Client 2.5.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.1': + full_name: 'Nextcloud Client 2.5.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.2': + full_name: 'Nextcloud Client 2.5.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.3': + full_name: 'Nextcloud Client 2.5.3' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.6.0': + full_name: 'Nextcloud Client 2.6.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:46:31,563 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,563 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,563 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,577 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,577 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:46:31,577 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,577 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,577 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: + + +# just 32-bit x86 installer available + + + +nmap: + + '7.70': + full_name: 'Nmap 7.70' + installer: 'https://nmap.org/dist/nmap-7.70-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '7.60': + full_name: 'Nmap 7.60' + installer: 'https://nmap.org/dist/nmap-7.60-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:31,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,577 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,577 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,577 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,593 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:46:31,593 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,593 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +node.js-lts: + + '12.13.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.17.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.11.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.9.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:31,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,608 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:46:31,608 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,608 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,608 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +node.js: + + '13.1.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.6.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '11.14.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '9.11.2': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + uninstaller: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.10.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:31,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,608 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,608 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:46:31,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,624 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +nomacs: + + '3.8.0': + full_name: 'nomacs - Image Lounge' + installer: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:31,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:46:31,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,641 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.016962289810180664 +2020-03-06 10:46:31,641 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +# just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. + + + +npp: + + + '7.7.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.9': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.8': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.5': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.4.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +# the 64-bit installer is available from: +# https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe + +2020-03-06 10:46:31,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.045847415924072266 +2020-03-06 10:46:31,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,687 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:46:31,687 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,704 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.017594575881958008 +2020-03-06 10:46:31,704 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +nsclient: + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2039': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2029': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1046': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1044': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.0062': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.23': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.19': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.143': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.88': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:31,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,704 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,704 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,704 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,704 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:46:31,716 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0018584728240966797 +2020-03-06 10:46:31,718 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +# Define versions + + +nsis: + + + '3.03': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02.1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.01': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0b2': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0b1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.51': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.50': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.49': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.48': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.47': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.46': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:31,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,735 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:46:31,735 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,735 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,735 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +# Install Meinberg NTP daemon for Windows +# Note: To do a silent installation, this installer needs a setup file named +# setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. +# The file is documented at +# https://www.meinberg.de/german/sw/readme-ntpinstaller.htm#unattended + + + +ntp: + + '4.2.8p13': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p12': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p11': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:31,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,735 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,735 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,749 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,749 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:46:31,749 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,749 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,749 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: + + + +nunit-console: + + + '3.8.0': + full_name: 'NUnit Console 3.8.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.7.0': + full_name: 'NUnit Console 3.7.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.9.0': + full_name: 'NUnit Console 3.9.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:46:31,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:46:31,749 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,749 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,766 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,766 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:46:31,766 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,766 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,766 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +nxlog: + '2.10.2150': + full_name: 'NXLog-CE' + installer: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,766 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,766 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,766 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,766 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:46:31,781 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,781 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,781 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +octopus-tentacle: + 'latest': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://octopus.com/downloads/latest/OctopusTentacle64' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://octopus.com/downloads/latest/OctopusTentacle64' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.17': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.16': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:31,781 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,781 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,781 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:46:31,809 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0030760765075683594 +2020-03-06 10:46:31,812 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +# Source: http://openlp.org/ +# just 32-bit x86 installer available + + + + +openlp: + + '2.4.6': + full_name: 'OpenLP 2.4.6' + installer: 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'OpenLP 2.2.1' + installer: 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:31,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,812 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:46:31,812 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,828 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.016795635223388672 +2020-03-06 10:46:31,828 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +openoffice: + '4.1.2': + full_name: 'OpenOffice 4.1.2' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart' + msiexec: False + locale: en_US + reboot: False + '4.1.1': + full_name: 'OpenOffice 4.1.1' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart' + msiexec: False + locale: en_US + reboot: False +# +# for other languages replace the two occurrences of 'en-US' +# in the download URL with your local two or four letter code below: +# +# 'el', 'en-GB', 'es', 'eu', 'ca', +# 'ca-XR', 'ca-XV', 'cs', 'ru', 'zh-CN', +# 'zh-TW', 'vi', 'ta', 'th', 'tr', 'sk', +# 'sl', 'sr', 'sv', 'pl', 'pt', 'pt-BR', +# 'nb', 'nl', 'lt', 'km', 'ko', 'ja', +# 'it', 'he', 'hi', 'hu', 'gd', 'gl', +# 'fi', 'fr', 'da', 'de', 'bg', 'ast' +# + +2020-03-06 10:46:31,828 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,828 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,828 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,828 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,828 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:46:31,828 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,845 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.016620159149169922 +2020-03-06 10:46:31,845 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +openvpn: + +# Combined installer since v2.4+ so no arch needed + + '2.4.7-I607-Win10': + full_name: 'OpenVPN 2.4.7-I607-Win10 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.6-I602': + full_name: 'OpenVPN 2.4.6-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.5-I601': + full_name: 'OpenVPN 2.4.5-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.4-I601': + full_name: 'OpenVPN 2.4.4-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I602': + full_name: 'OpenVPN 2.4.3-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I601': + full_name: 'OpenVPN 2.4.3-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + + '2.3.17-I601': + full_name: 'OpenVPN 2.3.17-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.12-I601': + full_name: 'OpenVPN 2.3.12-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.11-I601': + full_name: 'OpenVPN 2.3.11-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.10-I603': + full_name: 'OpenVPN 2.3.10-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.8-I601': + full_name: 'OpenVPN 2.3.8-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.6-I601': + full_name: 'OpenVPN 2.3.6-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# https://chocolatey.org/packages/openvpn +# Install with the following options: +# /SELECTSHORTCUTS=1 - create the start menu shortcuts +# /SELECTOPENVPN=1 - OpenVPN itself +# /SELECTSERVICE=1 - install the OpenVPN service +# /SELECTTAP=1 - install the TAP device driver +# /SELECTOPENVPNGUI=1 - install the default OpenVPN GUI +# /SELECTASSOCIATIONS=1 - associate with .ovpn files +# /SELECTOPENSSLUTILITIES=1 - install the utilities for generating public-private key pairs +# /SELECTEASYRSA=1 - install the RSA X509 certificate management scripts +# /SELECTPATH=1 - add openvpn.exe in PATH +# /SELECTOPENSSLDLLS=1 - dependencies - OpenSSL DLL's +# /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's +# /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's + +2020-03-06 10:46:31,845 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,845 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,845 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,845 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,845 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:46:31,857 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,859 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0018663406372070312 +2020-03-06 10:46:31,859 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +# Performant endpoint visibility https://osquery.io/ + + + +osquery: + + '3.3.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.3.0': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.6': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.4': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '2.11.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:46:31,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:46:31,859 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,859 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,859 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,859 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:46:31,859 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,877 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.018654584884643555 +2020-03-06 10:46:31,877 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +# just 32-bit x86 installer available + + + + + + + + + +ossec-agent: + + + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:31,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,877 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,877 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,877 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,887 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:46:31,887 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0027801990509033203 +2020-03-06 10:46:31,890 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +owncloud: + + + + + '2.2.4.6408': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2.6192': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1.6146': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0.6076': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.1.1.5837': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:31,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,890 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:46:31,890 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,890 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +pandoc: + '1.17.0.2': + full_name: 'Pandoc 1.17.0.2' + installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,905 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,905 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,905 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,905 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:46:31,905 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,905 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,905 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +parallels-client-15: + '15.0.3869': + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + uninstaller: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# The latest RAS clients can be downloaded for FREE from: +# https://www.parallels.com/uk/products/ras/download/links/ + +2020-03-06 10:46:31,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,905 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,905 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,905 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,921 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:46:31,921 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,921 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +pass4win: + '1.2.3.7': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '1.2.1.9': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,921 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:46:31,921 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.016251802444458008 +2020-03-06 10:46:31,937 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +passware-kit-agent: + '13.1.7657': + full_name: 'Passware Kit Agent (64-bit)' + installer: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,937 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:46:31,937 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,937 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +passware-kit-forensic: + '13.1.7657': + full_name: 'Passware Kit Forensic (64-bit)' + installer: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:31,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.01501321792602539 +2020-03-06 10:46:31,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,952 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:46:31,952 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,952 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +# Source: https://patchmypc.net/ +patchmypc-free: + '3.0.1.1': + full_name: 'PatchMyPC' + installer: 'https://patchmypc.net/freeupdater/PatchMyPC.exe' + install_flags: | + ' & cmd /c taskkill /F /IM PatchMyPC.exe & + xcopy /q /c /r /y "c:\salt\var\cache\salt\minion\extrn_files\base\patchmypc.net\freeupdater\PatchMyPC.exe" "%SystemRoot%" & + exit 0' + uninstaller: 'cmd' + uninstall_flags: | + '/c taskkill /F /IM PatchMyPC.exe & + del /q /f "%SystemRoot%"\PatchMyPC.exe & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,952 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:46:31,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,968 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +pdf24creator: + + '8.8.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.5.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +# Source: https://en.pdf24.org/ +# Packagin info Source: https://chocolatey.org/packages/pdf24 + +2020-03-06 10:46:31,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:46:31,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,984 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.016334056854248047 +2020-03-06 10:46:31,984 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +# just 32-bit x86 installer available + + + +pdfcreator: + '2.5.0': + full_name: 'PDFCreator' + installer: 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe' + install_flags: '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-' + uninstaller: '%ProgramFiles(x86)%\PDFCreator\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,984 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,984 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,984 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,984 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:46:31,984 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,984 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:31,999 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +peazip: + '6.0.0': + + full_name: 'PeaZip 6.0.0 (WIN64)' + installer: 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\PeaZip\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:31,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:31,999 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:31,999 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:31,999 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:31,999 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:46:31,999 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:31,999 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,015 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: + + + + +pgadmin4: + + '2.1': + full_name: 'pgAdmin 4 version 2.1' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0': + full_name: 'pgAdmin 4 version 2.0' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6': + full_name: 'pgAdmin 4 version 1.6' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v1\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,015 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,015 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,015 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,015 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:46:32,015 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,015 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,015 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +pgina: + '3.1.8.0': + full_name: 'pGina v3.1.8.0' + installer: 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe' + install_flags: '/silent ' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,015 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,015 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,031 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,031 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:46:32,031 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,031 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,031 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: + +# just 32-bit x86 installer available + + + +pidgin: + + '2.12.0': + full_name: 'Pidgin' + installer: 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Pidgin\pidgin-uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,031 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,031 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,031 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,031 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:46:32,031 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.01534271240234375 +2020-03-06 10:46:32,046 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +# Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: +# salt mid pkg.install postgresql version='"9.6"' + + + +postgresql: + '9.6': + full_name: 'PostgreSQL 9.6 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.6\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.5': + full_name: 'PostgreSQL 9.5 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.5\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.4': + full_name: 'PostgreSQL 9.4 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.4\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.3': + full_name: 'PostgreSQL 9.3 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.3\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + + +2020-03-06 10:46:32,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:46:32,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,046 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:46:32,046 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,062 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.015717029571533203 +2020-03-06 10:46:32,062 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +### NOTE: You must accept the PowerBI Desktop EULA by setting the +### Pillar key `powerbi:desktop:accept_eula` to `True` in order to +### install this package. You can find a copy of the EULA at +### https://powerbi.microsoft.com/en-us/desktop-eula/. + +powerbi-desktop: + ## version 4.0.1 - https://www.microsoft.com/en-us/download/details.aspx?id=45331 + '2.59.5135.421': &powerbi-desktop + full_name: + "Microsoft PowerBI Desktop (x64)" + installer: &msi401 + "https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi" + install_flags: &flags + /qn + /norestart + ACCEPT_EULA=0 + uninstaller: *msi401 + uninstall_flags: *flags + msiexec: True + reboot: False + +2020-03-06 10:46:32,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:46:32,062 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,062 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,062 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,062 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:46:32,062 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,079 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.017566919326782227 +2020-03-06 10:46:32,079 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +#PowerShell Core https://github.com/PowerShell/PowerShell + + + +powershell-core: + + '6.1.3.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.2.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.1.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.0.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.0.5.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:46:32,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:46:32,079 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,079 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,079 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,079 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:46:32,079 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,093 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.013638019561767578 +2020-03-06 10:46:32,093 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +# Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems +# WMI Exporter: https://github.com/martinlindhe/wmi_exporter +# Prometheus Monitoring: https://prometheus.io/ + +prometheus-wmi-exporter: + + '0.9.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.7.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.6.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.5.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.4': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,093 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,093 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,093 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,107 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:46:32,107 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,109 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0021135807037353516 +2020-03-06 10:46:32,109 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +putty: + + '0.73.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + + full_name: 'PuTTY release 0.73 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.72.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + + full_name: 'PuTTY release 0.72 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.71.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + + full_name: 'PuTTY release 0.71 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.70.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + + full_name: 'PuTTY release 0.70 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.69.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + + full_name: 'PuTTY release 0.69 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.68.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + + full_name: 'PuTTY release 0.68 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + + + '0.67': + full_name: 'PuTTY release 0.67' + installer: 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.66': + full_name: 'PuTTY release 0.66' + installer: 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.65': + full_name: 'PuTTY release 0.65' + installer: 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.64': + full_name: 'PuTTY release 0.64' + installer: 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,109 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,109 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,109 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,125 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,125 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:46:32,125 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,125 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,125 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +python2_x64: + + + + + '2.7.1150': + full_name: 'Python 2.7.1 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,125 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,140 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:46:32,140 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,140 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +python2_x86: + + + + + '2.7.1150': + full_name: 'Python 2.7.1' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,155 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,155 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,155 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:46:32,155 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,155 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,155 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: + + +python3_x64: + + '3.8.150.0': + full_name: 'Python 3.8.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.4150.0': + full_name: 'Python 3.7.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.015548467636108398 +2020-03-06 10:46:32,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,171 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:46:32,171 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,187 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: + + +python3_x86: + + '3.7.4150.0': + full_name: 'Python 3.7.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,187 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:46:32,187 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.015124082565307617 +2020-03-06 10:46:32,202 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +qemu: + '2018.05.19': + full_name: 'QEMU' + installer: 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe' + uninstaller: '%PROGRAMFILES%\qemu\qemu-uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,202 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,202 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,202 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:46:32,202 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,202 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,202 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: + + + + +queueexplorerpro: + '4.1.5': + full_name: 'QueueExplorer Professional 4.1.5' + installer: 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\QueueExplorer Professional\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,217 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0008909702301025391 +2020-03-06 10:46:32,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,218 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:46:32,218 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,218 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +quicktime: + '7.79.80.95': + full_name: 'QuickTime 7' + #installer: 'https://secure-appldnld.apple.com/quicktime/031-27600-20150820-F20FB1EF-6710-46BD-99B3-7DCF1253B310/QuickTimeInstaller.exe' + installer: 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe' + + uninstall_flags: | + '/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart & + msiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart & + msiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart & + msiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart & + exit 0' + + install_flags: '/quiet /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + # the above uninstalls: + # Apple Software Update v. 2.1.4.131 {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} + # Apple Application Support v. 4.1.2 {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} + # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} + # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} + +2020-03-06 10:46:32,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,233 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.015267610549926758 +2020-03-06 10:46:32,233 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,233 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,233 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:46:32,233 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,233 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,233 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: + +rabbitmq: + + '3.6.9': + full_name: 'RabbitMQ Server 3.6.9' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.7.7': + full_name: 'RabbitMQ Server 3.7.7' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,233 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,249 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.01569509506225586 +2020-03-06 10:46:32,249 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,249 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,249 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:46:32,249 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,249 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,249 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +rakudo-star_x86: + '1.0.0': + full_name: 'Rakudo Star 2016.01' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,249 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,249 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,265 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:46:32,265 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,265 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,265 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +rakudo-star_x64: + '1.0.0': + full_name: 'Rakudo Star 2016.04' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,265 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,265 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:46:32,265 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,281 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.016474246978759766 +2020-03-06 10:46:32,281 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +rasclient: + + '16': + + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + uninstaller: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,281 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,281 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,281 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,281 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:46:32,281 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.014629840850830078 +2020-03-06 10:46:32,296 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +rdcman: + '2.7.14060': + full_name: 'Remote Desktop Connection Manager' + installer: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,296 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,296 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,296 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:46:32,296 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,296 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: + + +rocketchat: + + '2.13.1': + full_name: 'Rocket.Chat+ 2.13.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.13.0': + full_name: 'Rocket.Chat+ 2.13.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.12.0': + full_name: 'Rocket.Chat+ 2.12.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.5': + full_name: 'Rocket.Chat+ 2.10.5' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.4': + full_name: 'Rocket.Chat+ 2.10.4' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.3': + full_name: 'Rocket.Chat+ 2.10.3' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.2': + full_name: 'Rocket.Chat+ 2.10.2' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.1': + full_name: 'Rocket.Chat+ 2.10.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.9.0': + full_name: 'Rocket.Chat+ 2.9.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,324 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.02828669548034668 +2020-03-06 10:46:32,324 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,328 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,328 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:46:32,328 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,328 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,328 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +rubyinstaller_x64: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,328 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,328 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,328 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,328 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:46:32,328 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,346 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.017989397048950195 +2020-03-06 10:46:32,346 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +rubyinstaller_x86: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '1.9.3-p551': + full_name: 'Ruby 1.9.3-p551' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby193\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,346 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,346 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,346 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,346 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:46:32,358 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,358 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0005054473876953125 +2020-03-06 10:46:32,358 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Salt added support for Py3 with 2017.7.0. As a result, the package names have +# changed to denote the Python version included with the install. So add new +# versions of the 2017.7 branch here. Versions from older branches will be +# added below. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion: + + '3000': + full_name: 'Salt Minion 3000' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Add versions from older branches here: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + '2016.11.10': + full_name: 'Salt Minion 2016.11.10' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.9': + full_name: 'Salt Minion 2016.11.9' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.8': + full_name: 'Salt Minion 2016.11.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.7': + full_name: 'Salt Minion 2016.11.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.6': + full_name: 'Salt Minion 2016.11.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.5': + full_name: 'Salt Minion 2016.11.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.4': + full_name: 'Salt Minion 2016.11.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.3': + full_name: 'Salt Minion 2016.11.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.2': + full_name: 'Salt Minion 2016.11.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.1': + full_name: 'Salt Minion 2016.11.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.0': + full_name: 'Salt Minion 2016.11.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:46:32,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:46:32,376 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.017201662063598633 +2020-03-06 10:46:32,376 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,376 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,376 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:46:32,376 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,376 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,390 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion-py3: + + '3000': + full_name: 'Salt Minion 3000 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:46:32,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:46:32,390 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,390 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:46:32,390 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,406 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.01599407196044922 +2020-03-06 10:46:32,406 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +sandboxie: + '4.20': + + full_name: 'Sandboxie 4.20 (64-bit)' + installer: 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe' + uninstaller: 'C:\Windows\Installer\SandboxieInstall64.exe' + + install_flags: '/S' + uninstall_flags: '/remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,406 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,406 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,406 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,406 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:46:32,406 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,406 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,406 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +scaleout: + latest: + + full_name: 'ScaleOut StateServer x64 Edition' + installer: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + uninstaller: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.014771223068237305 +2020-03-06 10:46:32,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,421 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:46:32,421 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,421 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +# just 32-bit x86 installer available + + + +secunia.psi: + '3.0.0.10004': + full_name: 'Secunia PSI' + installer: 'http://secunia.com/PSISetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Secunia\PSI\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,436 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,436 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:46:32,436 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,436 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,436 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: + + + + + + +sensu: + + '1.4.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.28.4': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.5': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.25.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.015966176986694336 +2020-03-06 10:46:32,452 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,452 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,452 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:46:32,452 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,452 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +sharpdevelop: + '5.1.5134': + full_name: 'SharpDevelop 5.1 RC' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '4.4.9749': + full_name: 'SharpDevelop 4.4' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6466': + full_name: 'SharpDevelop 3.2.1' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.2.2648': + full_name: 'SharpDevelop 2.2' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,452 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,468 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:46:32,468 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,468 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,468 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +# just 32-bit x86 installer available + + + +skitch: + '2.3.2.176': + full_name: 'Skitch' + installer: 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe' + install_flags: '--mode unattended' + uninstaller: '%ProgramFiles(x86)%\Evernote\Skitch\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,468 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,468 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:46:32,468 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,484 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.015750408172607422 +2020-03-06 10:46:32,484 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +skype-msi: + '7.41.101': + full_name: 'Skypeâ„¢ 7.41' + installer: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.151': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.103': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# you can always get latest msi from: +# http://www.skype.com/go/getskype-msi (but version number keeps increasing) +# +# for explanation of silent switches read: +# http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 +# you can also check microsite http://skype.techygeekshome.info/ + +2020-03-06 10:46:32,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,484 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,484 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,484 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,484 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:46:32,484 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,484 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,499 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +# just 32-bit x86 installer available + + + + +skype: + '8.31': + full_name: 'Skype version 8.31' + installer: 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe' + install_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\Microsoft\Skype for Desktop\unins000.exe' + uninstall_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,499 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,499 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,499 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,499 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:46:32,499 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,499 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,499 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +#MSI machine-wide deployment package +#The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. +#It is multi-client-capable, meaning that it can be used by multiple users on one machine, +#keeping their profiles separately in %ROAMINGAPPDATA%. Using this method, Slack will not receive automatic updates. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-machine-msi: + + '3.3.7.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.6.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.01598668098449707 +2020-03-06 10:46:32,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,515 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:46:32,515 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,515 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +#MSI for per-user deployment package +#The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. +#The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-user-msi: + latest: + full_name: 'Slack Machine-Wide Installer' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,515 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,530 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,531 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:46:32,531 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,531 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +slack: + 3.4.0: + full_name: Slack + installer: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + install_flags: '/qn /norestart' + uninstaller: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:46:32,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:46:32,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,531 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:46:32,531 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,546 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +# just 32-bit x86 installer available + + + +smartmontools: + '6.4 2015-06-04 r4109 (sf-6.4-1)': + full_name: 'smartmontools' + installer: 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\smartmontools\uninst-smartmontools.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,546 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:46:32,546 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,546 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +# just 32-bit x86 installer available + + + +snmptools: + 'Not Found': + full_name: 'SnmpTools 2' + installer: 'https://erwan.labalec.fr/snmptools/snmptools32.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\SnmpTools\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,562 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:46:32,562 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,562 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,562 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: + +soapui: + + '5.4.0': + full_name: 'SoapUI 5.4.0 5.4.0' + + installer: 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe' + + install_flags: '-q' + uninstaller: '%ProgramFiles%\SmartBear\SoapUI-5.4.0\uninstall.exe' + uninstall_flags: '-q' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,562 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,578 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:46:32,578 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,578 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,578 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +# just 32-bit x86 installer available + + + +# Source: http://software.informer.com/ +software-informer: + 'Not Found': + full_name: 'Software Informer' + installer: 'https://files.informer.com/siinst.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + uninstaller: '%ProgramFiles(x86)%\Software Informer\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,578 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,592 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,592 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:46:32,593 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,593 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +sourcetree: + + '2.3.1.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.4.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.11.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.2.5': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0.20.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.10.23.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + + + '1.9.13.7': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.9.20': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.6.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.8.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.7.0.32509': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6.25': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.5.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.4.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.3.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.2.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.1.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.0.8': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '0.9.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,609 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:46:32,609 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,609 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,609 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +# just 32-bit x86 installer available + + + +spybot-anti-beacon: + '1.6': + full_name: 'Spybot Anti-Beacon' + installer: 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot Anti-Beacon\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,609 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:46:32,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,624 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.safer-networking.org/ +spybot: + '2.4': + full_name: 'Spybot - Search & Destroy' + installer: 'http://spybotupdates.com/files/spybot-2.4.exe' + install_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot - Search & Destroy 2\unins000.exe' + uninstall_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + msiexec: False + locale: en_US + reboot: False +# alternative download URLs +# http://www.spybotupdates.biz/files/spybot-2.4.exe +# http://spybot-mirror.com/files/spybot-2.4.exe + +2020-03-06 10:46:32,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:46:32,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.01633286476135254 +2020-03-06 10:46:32,640 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +sscserv-free: + + '3.6.1': + full_name: 'SSC Serv 3.6.1 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '3.5.0': + full_name: 'SSC Serv 3.5.0 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,640 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:46:32,640 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,656 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.015180349349975586 +2020-03-06 10:46:32,656 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +steam: + latest: + full_name: 'Steam' + installer: 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe' + install_flags: '/S' + uninstaller: + "C:\\Program Files (x86)\\Steam\\uninstaller.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:46:32,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,656 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,656 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,656 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,656 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:46:32,656 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,656 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,670 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +stellarium: + '0.16.1': + full_name: 'Stellarium 0.16.1' + + installer: 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe' + + install_flags: '/silent' + uninstaller: '%ProgramFiles%\Stellarium\unins000.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,671 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:46:32,671 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,671 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +strawberryperl_x64: + + '5.26.1001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,671 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,687 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:46:32,687 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,687 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +strawberryperl_x86: + + '5.26.1001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,687 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,703 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:46:32,703 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,703 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,703 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +# just 32-bit x86 installer available + + + +stunnel: + '5.30': + full_name: 'stunnel installed for AllUsers' + installer: 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\stunnel\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,703 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,703 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,703 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,703 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,703 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:46:32,703 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,719 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.015752792358398438 +2020-03-06 10:46:32,719 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +subinacl: + '5.2.3790.1164': + full_name: 'Windows Resource Kit Tools - SubInAcl.exe' + installer: 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,719 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,719 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,719 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,719 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:46:32,719 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,719 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,719 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: + + + +sumatrapdf: + '3.1.2': + full_name: 'SumatraPDF' + installer: 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe' + install_flags: '/s /opt' + uninstaller: '%ProgramFiles%\SumatraPDF\uninstall.exe' + uninstall_flags: '/s' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,734 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,734 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:46:32,734 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,734 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,734 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +svn: + '1.8.13': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.8.11': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,734 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,734 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,750 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:46:32,750 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,750 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,750 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer: + latest: + full_name: 'TeamViewer 14' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,750 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,750 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,750 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:46:32,765 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,765 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,765 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer_host: + latest: + full_name: 'TeamViewer 14 Host' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,765 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,765 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:46:32,781 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,781 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,781 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +# just 32-bit x86 installer available + + + +teracopy: + 'Not Found': + full_name: 'TeraCopy 2.3' + installer: 'http://storage.googleapis.com/codesector/teracopy.exe' + install_flags: | + '/SP- /verysilent /suppressmsgboxes /norestart & + reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeraCopy_is1 /v DisplayVersion /d 2.3 & + exit 0' + uninstaller: '%ProgramFiles(x86)%\TeraCopy\unins000.exe' + uninstall_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,781 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,781 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,781 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:46:32,781 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,796 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.015623331069946289 +2020-03-06 10:46:32,796 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +# just 32-bit x86 installer available + + + +texmaker: + 'Not Found': + full_name: 'Texmaker' + installer: 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Texmaker\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,796 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,796 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:46:32,796 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.015573978424072266 +2020-03-06 10:46:32,812 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: + +texniccenter: + '2.02 Stable': + full_name: 'TeXnicCenter Version 2.02 Stable' + + installer: 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES%\TeXnicCenter\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,812 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:46:32,812 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,812 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,827 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +# just 32-bit x86 installer available + + + +texstudio: + '2.10.8': + full_name: 'TeXstudio 2.10.8' + installer: 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXstudio\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,827 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,827 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:46:32,827 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,827 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,827 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +# just 32-bit x86 installer available + + + +texworks: + '0.6.1': + full_name: 'TeXworks 0.6.1' + installer: 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXworks\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,843 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.015433311462402344 +2020-03-06 10:46:32,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,843 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:46:32,843 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,843 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,843 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +# just 32-bit x86 installer available + + + +thunderbird: + + '60.6.1': + full_name: 'Mozilla Thunderbird 60.6.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Thunderbird 60.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.3': + full_name: 'Mozilla Thunderbird 60.5.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Thunderbird 60.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Thunderbird 60.5.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Thunderbird 60.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Thunderbird 60.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.3': + full_name: 'Mozilla Thunderbird 60.3.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.2': + full_name: 'Mozilla Thunderbird 60.3.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.1': + full_name: 'Mozilla Thunderbird 60.3.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Thunderbird 60.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Thunderbird 60.2.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Thunderbird 60.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.1': + full_name: 'Mozilla Thunderbird 52.9.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Thunderbird 52.9.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Thunderbird 52.8.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Thunderbird 52.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Thunderbird 52.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Thunderbird 52.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Thunderbird 45.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Thunderbird 45.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Thunderbird 38.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Thunderbird 38.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Thunderbird 38.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Thunderbird 38.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.0': + full_name: 'Mozilla Thunderbird 38.2.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.1.0': + full_name: 'Mozilla Thunderbird 38.1.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:32,858 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,858 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,858 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,858 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,858 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:46:32,858 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.01584625244140625 +2020-03-06 10:46:32,874 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +tightvnc: + + + '2.8.27.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.23.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.11.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.8.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.5.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.2.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.7.10.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,874 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,874 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,874 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,874 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:46:32,890 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,890 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +todotxt.net: + 'Not Found': + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + full_name: 'todotxt.net v3.2.0.0' + installer: 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Hughesoft\todotxt.net\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,890 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,890 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,890 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:46:32,890 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.016806602478027344 +2020-03-06 10:46:32,906 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +todour: + '2.03': + full_name: 'Todour version 2.03' + installer: 'https://nerdur.com/Todour-2.03.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Todour\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,906 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,906 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,906 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:46:32,906 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,906 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,921 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +# just 32-bit x86 installer available + + + +# Source: http://wiki.bazaar.canonical.com/ +tortoise-bzr: + '2.5.1-1': + full_name: 'Bazaar 2.5.1' + installer: 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Bazaar\uninst000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,921 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,921 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:46:32,921 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,921 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,921 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +# Source: https://tortoisegit.org/ +tortoise-git: + + '2.8.0.0': + + full_name: 'TortoiseGit 2.8.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.7.0.0': + + full_name: 'TortoiseGit 2.7.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.6.0.0': + + full_name: 'TortoiseGit 2.6.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.5.0.0': + + full_name: 'TortoiseGit 2.5.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.4.0.0': + + full_name: 'TortoiseGit 2.4.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.3.0.0': + + full_name: 'TortoiseGit 2.3.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0.0': + + full_name: 'TortoiseGit 2.2.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0.0': + + full_name: 'TortoiseGit 2.1.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0.0': + + full_name: 'TortoiseGit 2.0.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.16.0': + + full_name: 'TortoiseGit 1.8.16.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.15.0': + + full_name: 'TortoiseGit 1.8.15.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.14.0': + + full_name: 'TortoiseGit 1.8.14.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.13.0': + + full_name: 'TortoiseGit 1.8.13.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,937 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,937 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:46:32,937 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,937 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,937 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +# Source: http://tortoisehg.bitbucket.org/ +tortoise-hg: + '3.6.2': + + full_name: 'TortoiseHg 3.6.2 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.3.0': + + full_name: 'TortoiseHg 3.3.0 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# Need to download from source site above, so it will append proper aws key credentials +# place downloaded msi in master's win_repo-ng + +2020-03-06 10:46:32,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,952 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:46:32,952 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,952 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +# Source: http://tortoisesvn.net/ +tortoise-svn: + '1.9.27285': + + full_name: 'TortoiseSVN 1.9.4.27285 (64 bit)' + installer: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + uninstaller: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:32,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,952 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:46:32,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,968 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +# just 32-bit x86 installer available + + + +truecrypt: + '7.1a': + full_name: 'TrueCrypt 7.1a' + installer: 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Truecrypt\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,968 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,968 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:46:32,968 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,968 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,985 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +ultradefrag: + '7.0.2': + full_name: 'Ultra Defragmenter' + + installer: 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe' + + install_flags: '/S /FULL=1' + uninstaller: '%ProgramFiles%\UltraDefrag\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:32,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,985 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,985 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,985 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,985 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:46:32,985 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,985 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,999 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +urlrewrite: + '7.2.1952': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.2.1980': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,999 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:32,999 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:32,999 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:32,999 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:46:32,999 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:32,999 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:32,999 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +usbdlm: + '5.2.7.0': + + full_name: 'USB Drive Letter Manager (x64)' + installer: http://www.uwe-sieber.de/files/usbdlm_x64.msi + uninstaller: http://www.uwe-sieber.de/files/usbdlm_x64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:32,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:32,999 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,016 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,016 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,016 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:46:33,016 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,016 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,030 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +vagrant: + + + '2.2.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.8': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:33,030 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,030 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,030 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,030 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,046 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:46:33,046 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,046 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +vcforpython27: + '9.0.1.30729': + full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' + installer: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:33,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,046 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,046 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:46:33,046 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,046 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,064 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: + + + + +vcxsrv: + + '1.20.0.0': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.19.6.4': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,064 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,064 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,064 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,064 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,064 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:46:33,064 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,064 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,064 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: + + +verysleepy: + '0.90': + full_name: 'Very Sleepy CS version 0.90' + installer: 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe' + uninstaller: '%ProgramFiles%\Very Sleepy CS\unins000.exe' + install_flags: '/SP- /NORESTART /SILENT' + uninstall_flags: '/SILENT' + cache_dir: True + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,076 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,076 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,078 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,078 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,078 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:46:33,078 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,078 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,103 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +veyon: + + '4.0.7': + full_name: 'Veyon 4.0.7' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.0.6': + full_name: 'Veyon 4.0.6' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,103 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,103 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,109 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,109 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:46:33,109 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,109 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,124 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +# Version 5.1 and older are no longer supported by Oracle +# https://www.virtualbox.org/wiki/Download_Old_Builds + + + +virtualbox: + + '6.0.4': + full_name: 'Oracle VM VirtualBox 6.0.4' + installer: 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.2.26': + full_name: 'Oracle VM VirtualBox 5.2.26' + installer: 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.1.38': + full_name: 'Oracle VM VirtualBox 5.1.38' + installer: 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.0.40': + full_name: 'Oracle VM VirtualBox 5.0.40' + installer: 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart' + + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,124 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,124 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,124 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,124 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:46:33,124 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,124 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,139 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: + + + + +viscosity: + + '1.7.14.1595': + full_name: Viscosity 1.7.14 (1595) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.7.12.1581': + full_name: Viscosity 1.7.12 (1581) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.6.8.1477': + full_name: Viscosity 1.6.8 (1477) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + +2020-03-06 10:46:33,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:46:33,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,140 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:46:33,140 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,140 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +#Vivaldi is a Chromium-based browser +#https://vivaldi.com + + + +vivaldi: + latest: + full_name: 'Vivaldi' + + installer: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + uninstaller: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + + install_flags: '--vivaldi-silent --do-not-launch-chrome --system-level' + uninstall_flags: '--uninstall --force-uninstall --system-level --vivaldi' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,140 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,155 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,155 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,155 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:46:33,155 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,155 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,155 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +vlc: + + '3.0.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.5': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.4': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.01563286781311035 +2020-03-06 10:46:33,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,171 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,171 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:46:33,171 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,171 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,187 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +vs-community: + 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) + full_name: + Visual Studio Community 2017 + installer: + https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe + install_flags: + --quiet + --norestart + --wait + uninstaller: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe" + uninstall_flags: + /uninstall + --force + --quiet + --norestart + reboot: False + +2020-03-06 10:46:33,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,187 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,187 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:46:33,187 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,187 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,203 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +# due to winrepo installer limitations you need to manually download x86 + x64 System installer from +# https://code.visualstudio.com/Download +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... + + + +vscode: + + '1.36.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.36.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.37.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.37.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.38.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.38.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.2': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.2.exe' + installer: 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:33,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,203 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,203 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,203 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,203 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:46:33,203 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,203 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,203 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +vsee: + '15.0.0.707': + full_name: 'VSee' + installer: 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe' + install_flags: '-no_autorun' + uninstaller: '%AppData%\VSeeInstall\vseeUninstall.exe' + uninstall_flags: '-no_confirm' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,203 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,218 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:46:33,218 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,218 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +vs_remotetools_2017: + latest: + full_name: 'Remote Tools for Visual Studio 2017' + + installer: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + uninstaller: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + arch: x64 + + install_flags: '/install /passive /quiet' + uninstall_flags: '/uninstall /passive /quiet' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,218 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,218 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:46:33,234 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,234 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +wamp-server-3: + '3.1.3': + + full_name: 'Wampserver64 3.1.3' + installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe' + uninstaller: 'c:\wamp64\uninstall_services.bat' + uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,234 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,234 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,234 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:46:33,234 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,234 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,250 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: + + +wamp-stack: + + '7.1.27-1': + full_name: 'Bitnami WAMP Stack 7.1.27-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-7.1.27-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + '5.6.40-1': + full_name: 'Bitnami WAMP Stack 5.6.40-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-5.6.40-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,250 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,250 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,250 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,250 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:46:33,269 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,269 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,269 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +webdeploy: + '3.1237.1764': + full_name: 'Microsoft Web Deploy 3.5' + + installer: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:33,269 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,269 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,269 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,269 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,269 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:46:33,280 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,280 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,280 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +webplatforminstaller: + '5.0.50430.0': + full_name: 'Microsoft Web Platform Installer 5.0' + + installer: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:33,280 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,280 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,280 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,280 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:46:33,280 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,280 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,296 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +# Source: http://winappmanager.herokuapp.com/ + + + +win-app-manager: + '15.01.11': + full_name: 'WinAppManager' + installer: 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinApp Manager\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,296 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,296 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,296 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:46:33,296 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,296 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,296 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: + + + +windirstat: + 'Not Found': + full_name: 'WinDirStat 1.1.2' + installer: 'http://download01.windirstat.info/windirstat1_1_2_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\WinDirStat\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.015539407730102539 +2020-03-06 10:46:33,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,312 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:46:33,312 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,312 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +winhttpcertcfg: + '5.2.3790.1060': + full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' + installer: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:46:33,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,312 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,312 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,327 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:46:33,327 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,327 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,327 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: + + + + +winmerge: + + '2.16.0': + full_name: 'WinMerge 2.16.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.14.0': + full_name: 'WinMerge 2.14.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,327 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,327 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,327 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,327 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,327 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:46:33,343 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,343 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +winmtr: + + '0.92': + + full_name: 'WinMTR_x64 0.92' + installer: 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe' + uninstaller: 'c:\utl\uninstall-winmtr_x64.exe' + + install_flags: '/D="c:\utl" /SILENT /NORESTART' + uninstall_flags: 'c:\utl\SSEun.dat /SILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +# download exe from winmtr.net +# create two installers using http://www.ssesetup.com/ + +2020-03-06 10:46:33,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,343 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,343 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,343 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:46:33,343 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,358 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.015426158905029297 +2020-03-06 10:46:33,359 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +winpcap: + '4.1.0.2980': + full_name: 'WinPcap 4.1.3' + installer: 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\WinPcap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,359 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,359 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:46:33,359 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,359 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,374 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +#if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) + + +winrar: + + + '5.70.0': + + full_name: 'WinRAR 5.70 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-570.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.61.0': + + full_name: 'WinRAR 5.61 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-561.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:46:33,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,374 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,374 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:46:33,374 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,374 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,390 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: + + + +winscp: + + '5.17': + full_name: 'WinSCP 5.17' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.9': + full_name: 'WinSCP 5.15.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.7': + full_name: 'WinSCP 5.15.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.5': + full_name: 'WinSCP 5.15.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.4': + full_name: 'WinSCP 5.15.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.3': + full_name: 'WinSCP 5.15.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.2': + full_name: 'WinSCP 5.15.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.1': + full_name: 'WinSCP 5.15.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15': + full_name: 'WinSCP 5.15' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.9': + full_name: 'WinSCP 5.13.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.8': + full_name: 'WinSCP 5.13.8' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.7': + full_name: 'WinSCP 5.13.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.6': + full_name: 'WinSCP 5.13.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.5': + full_name: 'WinSCP 5.13.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.4': + full_name: 'WinSCP 5.13.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.3': + full_name: 'WinSCP 5.13.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.2': + full_name: 'WinSCP 5.13.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.1': + full_name: 'WinSCP 5.13.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13': + full_name: 'WinSCP 5.13' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.3': + full_name: 'WinSCP 5.11.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.2': + full_name: 'WinSCP 5.11.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.1': + full_name: 'WinSCP 5.11.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.6': + full_name: 'WinSCP 5.9.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.2': + full_name: 'WinSCP 5.9.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.1': + full_name: 'WinSCP 5.9.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9': + full_name: 'WinSCP 5.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,390 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,390 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:46:33,390 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,406 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.016328096389770508 +2020-03-06 10:46:33,406 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +wireshark: + + '3.0.4': + + full_name: 'Wireshark 3.0.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + + full_name: 'Wireshark 3.0.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + + full_name: 'Wireshark 3.0.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + + full_name: 'Wireshark 3.0.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + + full_name: 'Wireshark 3.0.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.6': + + full_name: 'Wireshark 2.6.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.5': + + full_name: 'Wireshark 2.6.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.4': + + full_name: 'Wireshark 2.6.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.3': + + full_name: 'Wireshark 2.6.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.2': + + full_name: 'Wireshark 2.6.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.1': + + full_name: 'Wireshark 2.6.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.0': + + full_name: 'Wireshark 2.6.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.12': + + full_name: 'Wireshark 2.4.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.11': + + full_name: 'Wireshark 2.4.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.10': + + full_name: 'Wireshark 2.4.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.9': + + full_name: 'Wireshark 2.4.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.8': + + full_name: 'Wireshark 2.4.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.7': + + full_name: 'Wireshark 2.4.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.6': + + full_name: 'Wireshark 2.4.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.5': + + full_name: 'Wireshark 2.4.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.4': + + full_name: 'Wireshark 2.4.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.3': + + full_name: 'Wireshark 2.4.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.2': + + full_name: 'Wireshark 2.4.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.1': + + full_name: 'Wireshark 2.4.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.0': + + full_name: 'Wireshark 2.4.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.17': + + full_name: 'Wireshark 2.2.17 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.16': + + full_name: 'Wireshark 2.2.16 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.15': + + full_name: 'Wireshark 2.2.15 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.14': + + full_name: 'Wireshark 2.2.14 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.13': + + full_name: 'Wireshark 2.2.13 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.12': + + full_name: 'Wireshark 2.2.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.11': + + full_name: 'Wireshark 2.2.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.10': + + full_name: 'Wireshark 2.2.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.9': + + full_name: 'Wireshark 2.2.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + + full_name: 'Wireshark 2.2.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.7': + + full_name: 'Wireshark 2.2.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + + full_name: 'Wireshark 2.2.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.5': + + full_name: 'Wireshark 2.2.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + + full_name: 'Wireshark 2.2.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.3': + + full_name: 'Wireshark 2.2.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2': + + full_name: 'Wireshark 2.2.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + + full_name: 'Wireshark 2.2.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0': + + full_name: 'Wireshark 2.2.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.015247344970703125 +2020-03-06 10:46:33,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,421 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:46:33,421 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,421 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +# source: http://www.kls-soft.com/wscc/ +wscc: + '2.5.0.4': + full_name: 'WSCC 2.5.0.4' + installer: 'http://www.kls-soft.com/downloads/wscc_setup.exe' + install_flags: '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + + uninstaller: '%PROGRAMFILES(x86)%\WSCC\unins000.exe' + + uninstall_flags: '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,421 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,437 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,437 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:46:33,437 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,437 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,437 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +# Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 +# https://github.com/zeffy/wufuc + + + + + + +wufuc: + + '1.0.1.201': + full_name: 'wufuc' + installer: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:46:33,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,437 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,437 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,437 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,452 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:46:33,452 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,452 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +xampp: + '7.2.6.0': + full_name: 'XAMPP 7.2.6' + installer: 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe' + install_flags: '--mode unattended' + uninstaller: 'c:\xampp\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,452 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,452 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,452 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:46:33,452 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,452 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,468 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +# just 32-bit x86 installer available + + + +# http://www.straightrunning.com/XmingNotes/setupcmdline.htm +xming: + '6.9.0.31': + full_name: 'Xming 6.9.0.31' + installer: 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe' + install_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + uninstaller: '%ProgramFiles(x86)%\Xming\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:46:33,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,468 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,468 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:46:33,468 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,468 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,468 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: + + +yubikey-manager: + + '1.1.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.2': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + +2020-03-06 10:46:33,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,484 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0008792877197265625 +2020-03-06 10:46:33,484 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,484 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,484 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:46:33,484 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,484 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,484 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +yubikey-personalization-tool: + '3.1.24': + full_name: 'YubiKey Personalization Tool' + installer: 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe' + install_flags: '/S' + uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:46:33,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,499 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,499 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,499 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,499 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:46:33,499 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,499 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,516 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.2.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.5.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.6.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.0.9.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.10.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.11.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.12.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.13.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.14.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.15.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.16.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:46:33,516 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,516 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,516 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,516 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,529 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:46:33,530 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0006129741668701172 +2020-03-06 10:46:33,531 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: + +zoom: + latest: + full_name: 'Zoom' + installer: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:46:33,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:46:33,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,531 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,531 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:46:33,531 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,531 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,531 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +# Software Definition File for Elasticsearch Auditbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +auditbeat: + + '7.3.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:46:33,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,546 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:46:33,546 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,546 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +chocolatey: + latest: + full_name: 'Chocolatey' + installer: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd' + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd' + cache_dir: True + +# this software also has it's own salt execution module, which you might prefer to use, see +# http://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html +# for usage examples see +# https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 + + +2020-03-06 10:46:33,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,546 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,562 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:46:33,562 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,562 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,578 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: + + + + +erlang: + + '19.3': + full_name: 'Erlang OTP 19 (8.3)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"' + uninstaller: '%ProgramFiles%\erl8.3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '21.0.1': + full_name: 'Erlang OTP 21 (10.0.1)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"' + uninstaller: '%ProgramFiles%\erl10.0.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:46:33,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:46:33,578 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,578 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,578 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:46:33,578 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,578 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,578 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +# Software Definition File for Elasticsearch Filebeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +filebeat: + + '7.3.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:46:33,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,593 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:46:33,593 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,593 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,593 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +# Software Definition File for Elasticsearch Functionbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +functionbeat: + + '7.3.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:46:33,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,609 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.015394210815429688 +2020-03-06 10:46:33,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,609 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,609 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:46:33,609 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,609 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,609 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +# just 32-bit x86 installer available + + + + +gpg4win: + + 3.1.7: + full_name: 'Gpg4win (3.1.7)' + installer: 'http://files.gpg4win.org/gpg4win-3.1.7.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.3: + full_name: 'Gpg4win (3.0.3)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.0: + full_name: 'Gpg4win (3.0.0)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.4: + full_name: 'Gpg4win (2.3.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.3: + full_name: 'Gpg4win (2.3.3)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.2: + full_name: 'Gpg4win (2.3.2)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.2.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.1: + full_name: 'Gpg4win (2.3.1)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.1.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.0: + full_name: 'Gpg4win (2.3.0)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.2.4: + full_name: 'Gpg4win (2.2.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.2.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + +2020-03-06 10:46:33,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:46:33,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,624 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:46:33,624 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,624 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,624 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +# Software Definition File for Elasticsearch Heartbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +heartbeat: + + '7.3.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:46:33,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,640 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,640 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:46:33,640 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,640 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +# Software Definition File for Elasticsearch Metricbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +metricbeat: + + '7.3.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:46:33,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,640 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,655 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:46:33,655 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,655 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +# Software Definition File for Elasticsearch Packetbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +packetbeat: + + '7.3.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:46:33,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,655 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,672 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,672 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:46:33,672 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,672 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,672 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: + + + + + +pycharm-pro: + + 191.6605.12: + installer: 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe' + full_name: 'JetBrains Pycharm 2019.1.1' + install_flags: '/S /CONFIG=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\silent.config' + cache_file: salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config + uninstaller: '%ProgramFiles(x86)%\JetBrains\PyCharm 2019.1.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + reboot: False + + +2020-03-06 10:46:33,672 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:46:33,672 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,672 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,686 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,686 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:46:33,686 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,686 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,686 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +# just 32-bit x86 installer available + + + +stayawake: + + '1.0': + full_name: 'StayAwake' + installer: 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd' + install_flags: '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"' + uninstaller: '%PROGRAMFILES(x86)%\StayAwake\uninstall.exe' + uninstall_flags: '/S' + + +2020-03-06 10:46:33,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) +2020-03-06 10:46:33,686 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,686 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,686 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,686 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:46:33,703 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,703 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,703 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +# Software Definition File for Elasticsearch Winlogbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +winlogbeat: + + '7.3.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:46:33,703 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,703 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,703 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,703 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,703 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:46:33,703 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.015913963317871094 +2020-03-06 10:46:33,718 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +############################################################# +# Windows +############################################################# +# + + +2020-03-06 10:46:33,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +{} +2020-03-06 10:46:33,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,718 [salt.loaded.int.module.win_pkg:1213][DEBUG ][6476] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:46:33,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:33,718 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:33,718 [salt.template :59 ][DEBUG ][6476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:46:33,718 [salt.utils.jinja :85 ][DEBUG ][6476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:46:33,718 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:46:33,735 [salt.template :120 ][DEBUG ][6476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +# only 32-bit (x86) installer available + + + +zipinstaller: + '1.21': + full_name: 'ZipInstaller' + installer: 'salt://win/repo-ng/zipinstaller/zipinst.exe' + + install_flags: '/i zipinst_x64.zip' + + uninstaller: 'zipinst.exe' + uninstall_flags: '/uninst "c:\utl\uninst1~.nsu"' + msiexec: False + locale: en_US + reboot: False + cache_dir: True +# Description: +# This is a 32-bit zip archive program installer that installes directly from zip archives and creates shortcuts and un-install entries +# automatically, exactly as defined in a simple '~zipinst~.zic' if it finds it inside the zip archive. +# +# All it takes is calling up 'zipinst.exe /i .zip' that contains a file called '~zipinst~.zic', which itself is in *.ini file +# format and contains, directives about where it should install etc. +# +# Source: +# http://www.nirsoft.net/utils/zipinst.html +# http://www.nirsoft.net/utils/zipinst.exe +# http://www.nirsoft.net/utils/zipinst.zip (need to add '~zipinst~.zic' to it) +# you have to insert the '~zipinst~.zic' file into the 'zipinst.zip' file +# and place the resulting zipinst.zip into the 'salt://win/repo-ng/zipinstaller/' on your master +# as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache +# + +2020-03-06 10:46:33,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][6476] Results of YAML rendering: +OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) +2020-03-06 10:46:33,735 [salt.template :26 ][PROFILE ][6476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:46:33,754 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:46:33,754 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:46:33,780 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: Volume in drive C is Windows 10 + Volume Serial Number is 9C77-B555 + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + +03/06/2020 01:46 PM . +03/06/2020 01:46 PM .. +03/06/2020 01:46 PM 927 7zip.sls +03/06/2020 01:46 PM 723 activeperl_x64.sls +03/06/2020 01:46 PM 973 activeperl_x86.sls +03/06/2020 01:46 PM 798 adobeair.sls +03/06/2020 01:46 PM 956 adobereader-dc-classic.sls +03/06/2020 01:46 PM 851 adobereader-xi.sls +03/06/2020 01:46 PM 830 adobereader.sls +03/06/2020 01:46 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:46 PM 775 adv-ip-scanner.sls +03/06/2020 01:46 PM 787 adv-port-scanner.sls +03/06/2020 01:46 PM 769 advancedlogging.sls +03/06/2020 01:46 PM 373 anydesk-msi.sls +03/06/2020 01:46 PM 597 anydesk.sls +03/06/2020 01:46 PM 803 applicationrequestrouting.sls +03/06/2020 01:46 PM 370 aspnet-mvc1.sls +03/06/2020 01:46 PM 439 atom.sls +03/06/2020 01:46 PM 655 audacity.sls +03/06/2020 01:46 PM auditbeat +03/06/2020 01:46 PM 1,768 autohotkey.sls +03/06/2020 01:46 PM 611 autoit.sls +03/06/2020 01:46 PM 670 autopsy.sls +03/06/2020 01:46 PM 659 awscli.sls +03/06/2020 01:46 PM 799 azuredatastudio.sls +03/06/2020 01:46 PM 422 bandizip.sls +03/06/2020 01:46 PM 563 belarc-advisor.sls +03/06/2020 01:46 PM 367 bginfo4x.sls +03/06/2020 01:46 PM 547 bitnami-nginxstack.sls +03/06/2020 01:46 PM 568 bitvise.sls +03/06/2020 01:46 PM 777 blender.sls +03/06/2020 01:46 PM 395 bootracer.sls +03/06/2020 01:46 PM 664 bulkrenameutility.sls +03/06/2020 01:46 PM 661 bulk_extractor.sls +03/06/2020 01:46 PM 476 ccleaner-slim.sls +03/06/2020 01:46 PM 445 ccleaner.sls +03/06/2020 01:46 PM 606 cdburnerxp.sls +03/06/2020 01:46 PM 594 cdroller.sls +03/06/2020 01:46 PM 658 check-mk-agent-msi.sls +03/06/2020 01:46 PM 451 check-mk-agent.sls +03/06/2020 01:46 PM chocolatey +03/06/2020 01:46 PM 394 chrome-rdp.sls +03/06/2020 01:46 PM 375 chrome.sls +03/06/2020 01:46 PM 1,296 clamav.sls +03/06/2020 01:46 PM 1,200 clamwin.sls +03/06/2020 01:46 PM 500 classicshell.sls +03/06/2020 01:46 PM 1,521 clink.sls +03/06/2020 01:46 PM 617 conemu.sls +03/06/2020 01:46 PM 687 cpu-z.sls +03/06/2020 01:46 PM 2,833 curl.sls +03/06/2020 01:46 PM 374 cyberduck-cli.sls +03/06/2020 01:46 PM 616 cyberduck-msi.sls +03/06/2020 01:46 PM 639 cyberduck.sls +03/06/2020 01:46 PM 751 defraggler.sls +03/06/2020 01:46 PM 2,637 dotnet.sls +03/06/2020 01:46 PM 643 dropbox.sls +03/06/2020 01:46 PM 683 duplicati.sls +03/06/2020 01:46 PM 712 dvdstyler.sls +03/06/2020 01:46 PM 737 echo-desktop.sls +03/06/2020 01:46 PM 1,327 eea.sls +03/06/2020 01:46 PM 423 emet.sls +03/06/2020 01:46 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:46 PM 721 eraser.sls +03/06/2020 01:46 PM erlang +03/06/2020 01:46 PM 982 evernote.sls +03/06/2020 01:46 PM 531 fiddler.sls +03/06/2020 01:46 PM filebeat +03/06/2020 01:46 PM 660 filehippo-app-manager.sls +03/06/2020 01:46 PM 1,271 filezilla.sls +03/06/2020 01:46 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:46 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:46 PM 1,365 firefox_x64.sls +03/06/2020 01:46 PM 1,870 firefox_x86.sls +03/06/2020 01:46 PM functionbeat +03/06/2020 01:46 PM 552 gedit.sls +03/06/2020 01:46 PM 822 gimp.sls +03/06/2020 01:46 PM 953 git-extensions.sls +03/06/2020 01:46 PM 3,855 git.sls +03/06/2020 01:46 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:46 PM 563 gnucash.sls +03/06/2020 01:46 PM 2,152 golang.sls +03/06/2020 01:46 PM 320 goodsync.sls +03/06/2020 01:46 PM 601 gow.sls +03/06/2020 01:46 PM gpg4win +03/06/2020 01:46 PM 847 gpg4win-light.sls +03/06/2020 01:46 PM 621 gpg4win-vanilla.sls +03/06/2020 01:46 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:46 PM 2,661 grepwin.sls +03/06/2020 01:46 PM 505 gvim.sls +03/06/2020 01:46 PM 622 handbrake.sls +03/06/2020 01:46 PM heartbeat +03/06/2020 01:46 PM 503 hipchat.sls +03/06/2020 01:46 PM 771 hostsfileeditor.sls +03/06/2020 01:46 PM 623 hwinfo.sls +03/06/2020 01:46 PM 339 ice.sls +03/06/2020 01:46 PM 493 icecast.sls +03/06/2020 01:46 PM 377 icloud.sls +03/06/2020 01:46 PM 2,197 iismediaservices.sls +03/06/2020 01:46 PM 358 influx-capacitor.sls +03/06/2020 01:46 PM 644 inkscape.sls +03/06/2020 01:46 PM 646 intellij-community.sls +03/06/2020 01:46 PM 618 intellij-ultimate.sls +03/06/2020 01:46 PM 360 internet-evidence-finder.sls +03/06/2020 01:46 PM 702 irfanview-plugins.sls +03/06/2020 01:46 PM 1,610 irfanview.sls +03/06/2020 01:46 PM 697 isapirewrite-lite.sls +03/06/2020 01:46 PM 2,602 itunes.sls +03/06/2020 01:46 PM 1,279 jdk8.sls +03/06/2020 01:46 PM 1,200 jre.sls +03/06/2020 01:46 PM 1,480 jre8.sls +03/06/2020 01:46 PM 995 jungledisk-server-management.sls +03/06/2020 01:46 PM 891 jungledisk-server.sls +03/06/2020 01:46 PM 921 jungledisk-workgroup.sls +03/06/2020 01:46 PM 518 kdiff3.sls +03/06/2020 01:46 PM 1,091 keepass-2x.sls +03/06/2020 01:46 PM 2,655 keepass.sls +03/06/2020 01:46 PM 673 lastpass.sls +03/06/2020 01:46 PM 1,329 lazarus.sls +03/06/2020 01:46 PM 951 libreoffice.sls +03/06/2020 01:46 PM 419 logparser.sls +03/06/2020 01:46 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:46 PM 722 malwarebytes.sls +03/06/2020 01:46 PM 1,884 mariadb.sls +03/06/2020 01:46 PM 653 mercurial.sls +03/06/2020 01:46 PM 649 messageanalyzer.sls +03/06/2020 01:46 PM metricbeat +03/06/2020 01:46 PM 603 microsoft-build-tools.sls +03/06/2020 01:46 PM 317 mikogo.sls +03/06/2020 01:46 PM 766 miktex-basic.sls +03/06/2020 01:46 PM 787 mongodb.sls +03/06/2020 01:46 PM 831 ms-mbsa.sls +03/06/2020 01:46 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:46 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:46 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:46 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:46 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:46 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:46 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:46 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:46 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:46 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:46 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:46 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:46 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:46 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:46 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:46 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:46 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:46 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:46 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:46 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:46 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:46 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:46 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:46 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:46 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:46 PM 585 mucommander.sls +03/06/2020 01:46 PM 638 mysql-essential.sls +03/06/2020 01:46 PM 632 mysql-installer-community.sls +03/06/2020 01:46 PM 639 mysql-workbench.sls +03/06/2020 01:46 PM 298 never10.sls +03/06/2020 01:46 PM 929 newrelic-infra.sls +03/06/2020 01:46 PM 526 nextcloud-client.sls +03/06/2020 01:46 PM 584 nmap.sls +03/06/2020 01:46 PM 709 node.js-lts.sls +03/06/2020 01:46 PM 733 node.js.sls +03/06/2020 01:46 PM 368 nomacs.sls +03/06/2020 01:46 PM 985 npp.sls +03/06/2020 01:46 PM 1,252 nsclient.sls +03/06/2020 01:46 PM 826 nsis.sls +03/06/2020 01:46 PM 902 ntp.sls +03/06/2020 01:46 PM 793 nunit-console.sls +03/06/2020 01:46 PM 363 nxlog.sls +03/06/2020 01:46 PM 1,081 octopus-tentacle.sls +03/06/2020 01:46 PM 678 openlp.sls +03/06/2020 01:46 PM 1,192 openoffice.sls +03/06/2020 01:46 PM 2,130 openvpn.sls +03/06/2020 01:46 PM 587 osquery.sls +03/06/2020 01:46 PM 878 ossec-agent.sls +03/06/2020 01:46 PM 590 owncloud.sls +03/06/2020 01:46 PM packetbeat +03/06/2020 01:46 PM 400 pandoc.sls +03/06/2020 01:46 PM 814 parallels-client-15.sls +03/06/2020 01:46 PM 1,709 pass4win.sls +03/06/2020 01:46 PM 378 passware-kit-agent.sls +03/06/2020 01:46 PM 416 passware-kit-forensic.sls +03/06/2020 01:46 PM 656 patchmypc-free.sls +03/06/2020 01:46 PM 638 pdf24creator.sls +03/06/2020 01:46 PM 567 pdfcreator.sls +03/06/2020 01:46 PM 611 peazip.sls +03/06/2020 01:46 PM 812 pgadmin4.sls +03/06/2020 01:46 PM 235 pgina.sls +03/06/2020 01:46 PM 617 pidgin.sls +03/06/2020 01:46 PM 1,898 postgresql.sls +03/06/2020 01:46 PM 997 powerbi-desktop.sls +03/06/2020 01:46 PM 864 powershell-core.sls +03/06/2020 01:46 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:46 PM 1,488 putty.sls +03/06/2020 01:46 PM pycharm-pro +03/06/2020 01:46 PM 567 python2_x64.sls +03/06/2020 01:46 PM 526 python2_x86.sls +03/06/2020 01:46 PM 1,540 python3_x64.sls +03/06/2020 01:46 PM 1,435 python3_x86.sls +03/06/2020 01:46 PM 449 qemu.sls +03/06/2020 01:46 PM 562 queueexplorerpro.sls +03/06/2020 01:46 PM 1,542 quicktime.sls +03/06/2020 01:46 PM 495 rabbitmq.sls +03/06/2020 01:46 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:46 PM 375 rakudo-star_x64.sls +03/06/2020 01:46 PM 888 rasclient.sls +03/06/2020 01:46 PM 444 rdcman.sls +03/06/2020 01:46 PM 609 rocketchat.sls +03/06/2020 01:46 PM 526 rubyinstaller_x64.sls +03/06/2020 01:46 PM 551 rubyinstaller_x86.sls +03/06/2020 01:46 PM 3,719 salt-minion-py2.sls +03/06/2020 01:46 PM 2,050 salt-minion-py3.sls +03/06/2020 01:46 PM 562 sandboxie.sls +03/06/2020 01:46 PM 581 scaleout.sls +03/06/2020 01:46 PM 476 secunia.psi.sls +03/06/2020 01:46 PM 1,190 sensu.sls +03/06/2020 01:46 PM 1,827 sharpdevelop.sls +03/06/2020 01:46 PM 539 skitch.sls +03/06/2020 01:46 PM 1,533 skype-msi.sls +03/06/2020 01:46 PM 708 skype.sls +03/06/2020 01:46 PM 1,244 slack-machine-msi.sls +03/06/2020 01:46 PM 1,023 slack-user-msi.sls +03/06/2020 01:46 PM 329 slack.sls +03/06/2020 01:46 PM 591 smartmontools.sls +03/06/2020 01:46 PM 556 snmptools.sls +03/06/2020 01:46 PM 653 soapui.sls +03/06/2020 01:46 PM 623 software-informer.sls +03/06/2020 01:46 PM 1,039 sourcetree.sls +03/06/2020 01:46 PM 591 spybot-anti-beacon.sls +03/06/2020 01:46 PM 765 spybot.sls +03/06/2020 01:46 PM 664 sscserv-free.sls +03/06/2020 01:46 PM stayawake +03/06/2020 01:46 PM 443 steam.sls +03/06/2020 01:46 PM 658 stellarium.sls +03/06/2020 01:46 PM 540 strawberryperl_x64.sls +03/06/2020 01:46 PM 531 strawberryperl_x86.sls +03/06/2020 01:46 PM 521 stunnel.sls +03/06/2020 01:46 PM 398 subinacl.sls +03/06/2020 01:46 PM 467 sumatrapdf.sls +03/06/2020 01:46 PM 769 svn.sls +03/06/2020 01:46 PM 534 teamviewer.sls +03/06/2020 01:46 PM 549 teamviewer_host.sls +03/06/2020 01:46 PM 749 teracopy.sls +03/06/2020 01:46 PM 491 texmaker.sls +03/06/2020 01:46 PM 709 texniccenter.sls +03/06/2020 01:46 PM 639 texstudio.sls +03/06/2020 01:46 PM 643 texworks.sls +03/06/2020 01:46 PM 937 thunderbird.sls +03/06/2020 01:46 PM 1,014 tightvnc.sls +03/06/2020 01:46 PM 623 todotxt.net.sls +03/06/2020 01:46 PM 551 todour.sls +03/06/2020 01:46 PM 630 tortoise-bzr.sls +03/06/2020 01:46 PM 983 tortoise-git.sls +03/06/2020 01:46 PM 1,367 tortoise-hg.sls +03/06/2020 01:46 PM 897 tortoise-svn.sls +03/06/2020 01:46 PM 503 truecrypt.sls +03/06/2020 01:46 PM 662 ultradefrag.sls +03/06/2020 01:46 PM 1,598 urlrewrite.sls +03/06/2020 01:46 PM 560 usbdlm.sls +03/06/2020 01:46 PM 1,361 vagrant.sls +03/06/2020 01:46 PM 479 vcforpython27.sls +03/06/2020 01:46 PM 820 vcxsrv.sls +03/06/2020 01:46 PM 434 verysleepy.sls +03/06/2020 01:46 PM 611 veyon.sls +03/06/2020 01:46 PM 2,570 virtualbox.sls +03/06/2020 01:46 PM 794 viscosity.sls +03/06/2020 01:46 PM 657 vivaldi.sls +03/06/2020 01:46 PM 739 vlc.sls +03/06/2020 01:46 PM 713 vs-community.sls +03/06/2020 01:46 PM 1,388 vscode.sls +03/06/2020 01:46 PM 325 vsee.sls +03/06/2020 01:46 PM 640 vs_remotetools_2017.sls +03/06/2020 01:46 PM 835 wamp-server-3.sls +03/06/2020 01:46 PM 585 wamp-stack.sls +03/06/2020 01:46 PM 775 webdeploy.sls +03/06/2020 01:46 PM 842 webplatforminstaller.sls +03/06/2020 01:46 PM 610 win-app-manager.sls +03/06/2020 01:46 PM 467 windirstat.sls +03/06/2020 01:46 PM 468 winhttpcertcfg.sls +03/06/2020 01:46 PM winlogbeat +03/06/2020 01:46 PM 618 winmerge.sls +03/06/2020 01:46 PM 737 winmtr.sls +03/06/2020 01:46 PM 288 winpcap.sls +03/06/2020 01:46 PM 825 winrar.sls +03/06/2020 01:46 PM 828 winscp.sls +03/06/2020 01:46 PM 1,136 wireshark.sls +03/06/2020 01:46 PM wmi_provider +03/06/2020 01:46 PM 539 wscc.sls +03/06/2020 01:46 PM 726 wufuc.sls +03/06/2020 01:46 PM 352 xampp.sls +03/06/2020 01:46 PM 649 xming.sls +03/06/2020 01:46 PM 621 yubikey-manager.sls +03/06/2020 01:46 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:46 PM 1,119 zabbix-agent.sls +03/06/2020 01:46 PM zipinstaller +03/06/2020 01:46 PM 278 zoom.sls + 284 File(s) 232,192 bytes + 16 Dir(s) 49,382,592,512 bytes free +2020-03-06 10:46:33,780 [salt.state :938 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:46:33,780 [salt.state :320 ][INFO ][6476] {'pkg.refresh_db': {'total': 298, 'failed': 0, 'success': 298}} +2020-03-06 10:46:33,780 [salt.state :1997][INFO ][6476] Completed state [pkg.refresh_db] at time 10:46:33.780667 (duration_in_ms=7781.036) +2020-03-06 10:46:33,799 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:46:33,799 [salt.state :1819][INFO ][6476] Running state [7zip] at time 10:46:33.799029 +2020-03-06 10:46:33,810 [salt.state :1852][INFO ][6476] Executing state pkg.installed for [7zip] +2020-03-06 10:46:33,812 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:46:33,812 [salt.loaded.int.module.win_pkg:802 ][INFO ][6476] Refresh skipped, age of winrepo metadata in seconds (0.07708263397216797) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:46:33,812 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.077083) +2020-03-06 10:46:33,890 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,911 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,911 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,911 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,911 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,911 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,918 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,921 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:46:33,940 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:46:33,953 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:46:33,953 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.217451) +2020-03-06 10:46:33,968 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,968 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,968 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,968 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,968 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,968 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,968 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:33,984 [salt.utils.http :234 ][DEBUG ][6476] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:46:33,984 [salt.utils.http :235 ][DEBUG ][6476] Using backend: tornado +2020-03-06 10:46:38,564 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:46:39,016 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:05.280630) +2020-03-06 10:46:39,016 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,033 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,046 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,046 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,046 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,046 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,046 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,062 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:46:39,062 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:05.326983) +2020-03-06 10:46:39,062 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:39,109 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:46:39,124 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:46:39,124 [salt.state :320 ][INFO ][6476] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 10:46:39,124 [salt.state :1000][DEBUG ][6476] Refreshing modules... +2020-03-06 10:46:39,155 [salt.state :966 ][INFO ][6476] Loading fresh modules for state activity +2020-03-06 10:46:39,203 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:39,203 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:39,203 [salt.state :1997][INFO ][6476] Completed state [7zip] at time 10:46:39.203150 (duration_in_ms=5404.121) +2020-03-06 10:46:39,203 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded config.option +2020-03-06 10:46:39,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pkg.install +2020-03-06 10:46:39,218 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pkg.installed +2020-03-06 10:46:39,218 [salt.state :1819][INFO ][6476] Running state [git] at time 10:46:39.218291 +2020-03-06 10:46:39,218 [salt.state :1852][INFO ][6476] Executing state pkg.installed for [git] +2020-03-06 10:46:39,671 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:46:39,671 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:46:39,827 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:46:39,827 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:46:39,952 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded reg.read_value +2020-03-06 10:46:40,046 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops.api_key, ret: _|- +2020-03-06 10:46:40,066 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops:api_key, ret: _|- +2020-03-06 10:46:44,220 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded platform.is_windows +2020-03-06 10:46:44,236 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded path.which +2020-03-06 10:46:44,261 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:46:44,265 [salt.loaded.int.module.win_pkg:802 ][INFO ][6476] Refresh skipped, age of winrepo metadata in seconds (10.529905080795288) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:46:44,265 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:10.529905) +2020-03-06 10:46:44,265 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,265 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,265 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,265 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,265 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,265 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,265 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,280 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:46:44,300 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:46:44,313 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:46:44,326 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:10.590854) +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:44,343 [salt.utils.http :234 ][DEBUG ][6476] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:46:44,343 [salt.utils.http :235 ][DEBUG ][6476] Using backend: tornado +2020-03-06 10:46:48,046 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:46:59,405 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:25.670195) +2020-03-06 10:46:59,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,441 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:46:59,441 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:25.706184) +2020-03-06 10:46:59,441 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,457 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,469 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,469 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,469 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,469 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,469 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:46:59,469 [salt.state :320 ][INFO ][6476] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' + +2020-03-06 10:46:59,469 [salt.state :1000][DEBUG ][6476] Refreshing modules... +2020-03-06 10:46:59,500 [salt.state :966 ][INFO ][6476] Loading fresh modules for state activity +2020-03-06 10:46:59,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:46:59,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:46:59,562 [salt.state :1997][INFO ][6476] Completed state [git] at time 10:46:59.562841 (duration_in_ms=20344.55) +2020-03-06 10:46:59,575 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded config.option +2020-03-06 10:46:59,584 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pkg.install +2020-03-06 10:46:59,593 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pkg.installed +2020-03-06 10:46:59,593 [salt.state :1819][INFO ][6476] Running state [kdiff3] at time 10:46:59.593244 +2020-03-06 10:46:59,593 [salt.state :1852][INFO ][6476] Executing state pkg.installed for [kdiff3] +2020-03-06 10:47:00,047 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:47:00,047 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:47:00,249 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:47:00,249 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:47:00,421 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded reg.read_value +2020-03-06 10:47:00,502 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops.api_key, ret: _|- +2020-03-06 10:47:00,522 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops:api_key, ret: _|- +2020-03-06 10:47:05,287 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded platform.is_windows +2020-03-06 10:47:05,292 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded path.which +2020-03-06 10:47:05,296 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:47:05,323 [salt.loaded.int.module.win_pkg:802 ][INFO ][6476] Refresh skipped, age of winrepo metadata in seconds (31.588277578353882) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:47:05,323 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:31.588278) +2020-03-06 10:47:05,327 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,327 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,327 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,327 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,327 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,327 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,360 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:47:05,377 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:47:05,390 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:47:05,390 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:31.654624) +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,405 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,420 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,421 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:05,421 [salt.utils.http :234 ][DEBUG ][6476] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:47:05,421 [salt.utils.http :235 ][DEBUG ][6476] Using backend: tornado +2020-03-06 10:47:09,577 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:47:10,000 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:36.264419) +2020-03-06 10:47:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,031 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:47:10,031 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:36.295516) +2020-03-06 10:47:10,031 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,048 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,062 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6476] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:47:10,062 [salt.state :320 ][INFO ][6476] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:47:10,062 [salt.state :1000][DEBUG ][6476] Refreshing modules... +2020-03-06 10:47:10,081 [salt.state :966 ][INFO ][6476] Loading fresh modules for state activity +2020-03-06 10:47:10,143 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded jinja.render +2020-03-06 10:47:10,160 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded yaml.render +2020-03-06 10:47:10,160 [salt.state :1997][INFO ][6476] Completed state [kdiff3] at time 10:47:10.160597 (duration_in_ms=10567.353) +2020-03-06 10:47:10,160 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded config.option +2020-03-06 10:47:10,160 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded module.run +2020-03-06 10:47:10,160 [salt.state :1819][INFO ][6476] Running state [windows_environment.refresh.path] at time 10:47:10.160597 +2020-03-06 10:47:10,160 [salt.state :1852][INFO ][6476] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:47:10,160 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded windows_environment.refresh +2020-03-06 10:47:10,173 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cmd.run +2020-03-06 10:47:10,173 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:47:10,173 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:47:10,189 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6476] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:47:10,189 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded environ.get +2020-03-06 10:47:10,189 [py.warnings :919 ][WARNING ][6476] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 10:47:10,189 [py.warnings :919 ][WARNING ][6476] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 10:47:10,189 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded event.fire +2020-03-06 10:47:10,189 [salt.utils.event :322 ][DEBUG ][6476] SaltEvent PUB socket URI: 4510 +2020-03-06 10:47:10,189 [salt.utils.event :323 ][DEBUG ][6476] SaltEvent PULL socket URI: 4511 +2020-03-06 10:47:10,189 [salt.utils.event :737 ][DEBUG ][6476] Sending event: tag = environ_setenv; data = {'permanent': False, 'clear_all': False, '_stamp': '2020-03-06T18:47:10.189588', 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'false_unsets': False} +2020-03-06 10:47:10,189 [salt.transport.ipc:364 ][DEBUG ][6476] Closing IPCMessageClient instance +2020-03-06 10:47:10,189 [salt.state :320 ][INFO ][6476] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:47:10,204 [salt.state :1997][INFO ][6476] Completed state [windows_environment.refresh.path] at time 10:47:10.204971 (duration_in_ms=44.374) +2020-03-06 10:47:10,204 [salt.state :1819][INFO ][6476] Running state [chocolatey.bootstrap] at time 10:47:10.204971 +2020-03-06 10:47:10,204 [salt.state :1852][INFO ][6476] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:47:10,641 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:47:10,656 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:47:10,939 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:47:10,939 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:47:11,140 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded reg.read_value +2020-03-06 10:47:11,237 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops.api_key, ret: _|- +2020-03-06 10:47:11,237 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: victorops:api_key, ret: _|- +2020-03-06 10:47:17,656 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded platform.is_windows +2020-03-06 10:47:17,656 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded path.which +2020-03-06 10:47:17,690 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:47:17,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded apache.config +2020-03-06 10:47:17,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded apache.a2enconf +2020-03-06 10:47:17,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded apache.a2ensite +2020-03-06 10:47:17,767 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:47:17,767 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:47:17,767 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:47:17,778 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_asg.exists +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cfn.exists +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:47:17,781 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_dynamodb.exists +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_ec2.get_key +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elasticache.exists +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elb.exists +2020-03-06 10:47:17,796 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_iam.get_user +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_iam.role_exists +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_iot.policy_exists +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_kinesis.exists +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_kms.describe_key +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_lambda.function_exists +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_asg.exists +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_rds.exists +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_route53.get_record +2020-03-06 10:47:17,812 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_secgroup.exists +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_sns.exists +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_sqs.exists +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded boto_vpc.exists +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded bower.list +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded chef.client +2020-03-06 10:47:17,827 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cimc.get_system_info +2020-03-06 10:47:17,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded cisconso.set_data_value +2020-03-06 10:47:17,843 [salt.loader :1577][DEBUG ][6476] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:47:17,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded ddns.update +2020-03-06 10:47:17,843 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded chassis.cmd +2020-03-06 10:47:17,859 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:47:17,877 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:47:17,893 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:47:17,906 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:47:18,078 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded esxi.cmd +2020-03-06 10:47:18,094 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:18,124 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: git version 2.23.0.windows.1 +2020-03-06 10:47:18,124 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded github.list_users +2020-03-06 10:47:18,124 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded glanceng.image_get +2020-03-06 10:47:18,124 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded elasticsearch.exists +2020-03-06 10:47:18,124 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: grafana_version, ret: _|- +2020-03-06 10:47:18,141 [salt.loaded.int.module.config:398 ][DEBUG ][6476] key: grafana_version, ret: _|- +2020-03-06 10:47:18,141 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded icinga2.generate_ticket +2020-03-06 10:47:18,141 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded ifttt.trigger_event +2020-03-06 10:47:18,157 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:47:18,173 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:47:18,187 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:47:18,205 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:47:18,218 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:47:18,234 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:47:18,249 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:47:18,249 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.domain_get +2020-03-06 10:47:18,249 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:47:18,249 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.group_get +2020-03-06 10:47:18,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.project_get +2020-03-06 10:47:18,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.role_get +2020-03-06 10:47:18,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.role_grant +2020-03-06 10:47:18,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.service_get +2020-03-06 10:47:18,265 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded keystoneng.user_get +2020-03-06 10:47:18,265 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:47:18,299 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:47:18,312 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:47:18,325 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:47:18,329 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:47:18,359 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:47:18,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:47:18,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:47:18,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:47:18,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded lxd.version +2020-03-06 10:47:18,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded memcached.status +2020-03-06 10:47:18,359 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mongodb.db_exists +2020-03-06 10:47:18,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mongodb.user_exists +2020-03-06 10:47:18,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:47:18,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:47:18,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:47:18,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded mssql.version +2020-03-06 10:47:18,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_networks +2020-03-06 10:47:18,374 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_subnets +2020-03-06 10:47:18,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_subnets +2020-03-06 10:47:18,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded neutronng.list_subnets +2020-03-06 10:47:18,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded npm.list +2020-03-06 10:47:18,390 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nxos.cmd +2020-03-06 10:47:18,411 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:47:18,424 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:47:18,424 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded panos.commit +2020-03-06 10:47:18,434 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pdbedit.create +2020-03-06 10:47:18,437 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded pecl.list +2020-03-06 10:47:18,437 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:47:18,463 [salt.loader :1577][DEBUG ][6476] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:47:18,463 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.cluster_exists +2020-03-06 10:47:18,463 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.user_exists +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.create_extension +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.group_create +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.datadir_init +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.language_create +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.privileges_grant +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.schema_exists +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.tablespace_exists +2020-03-06 10:47:18,468 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded postgres.user_exists +2020-03-06 10:47:18,487 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:47:18,504 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded selinux.getenforce +2020-03-06 10:47:18,512 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded splunk.list_users +2020-03-06 10:47:18,515 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded splunk_search.get +2020-03-06 10:47:18,534 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:47:18,534 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded tomcat.status +2020-03-06 10:47:18,534 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded vagrant.version +2020-03-06 10:47:18,543 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded victorops.create_event +2020-03-06 10:47:18,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded win_iis.create_site +2020-03-06 10:47:18,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded win_servermanager.install +2020-03-06 10:47:18,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:47:18,546 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded wordpress.show_plugin +2020-03-06 10:47:18,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded x509.get_pem_entry +2020-03-06 10:47:18,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded xmpp.send_msg +2020-03-06 10:47:18,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded zk_concurrency.lock +2020-03-06 10:47:18,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded zonecfg.create +2020-03-06 10:47:18,562 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded zookeeper.create +2020-03-06 10:47:18,578 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:47:18,578 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:47:18,765 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:47:18,765 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][6476] retcode: 1 +2020-03-06 10:47:18,765 [salt.state :915 ][DEBUG ][6476] Last command return code: 1 +2020-03-06 10:47:18,765 [salt.utils.http :234 ][DEBUG ][6476] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:47:18,765 [salt.utils.http :235 ][DEBUG ][6476] Using backend: tornado +2020-03-06 10:47:18,968 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:24,939 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: Preparing: C:\b5f90a34b17b26c7b849b37d244d\header.bmp... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\SplashScreen.bmp... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\watermark.bmp... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\DisplayIcon.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Print.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate1.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate2.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate3.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate4.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate5.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate6.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate7.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Rotate8.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Save.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\Setup.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\stop.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\SysReqMet.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\SysReqNotMet.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Graphics\warn.ico... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1033\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1042\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1041\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1037\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1025\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1035\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1030\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1044\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1043\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1040\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1029\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1031\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1036\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1032\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1038\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\2052\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1028\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\3076\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1055\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1053\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\3082\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\2070\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1046\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1049\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1045\LocalizedData.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Client\Parameterinfo.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Extended\Parameterinfo.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\ParameterInfo.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Strings.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\UiInfo.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Client\UiInfo.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Extended\UiInfo.xml... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\SetupUi.xsd... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\DHtmlHeader.html... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1033\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1025\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1028\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1030\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1031\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1029\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1036\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1035\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1032\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1038\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1037\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1040\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1041\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1042\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1044\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1043\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1046\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1045\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1055\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1053\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\2052\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1049\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\3082\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\2070\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\3076\eula.rtf... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\Setup.exe... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\SetupUtility.exe... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\SetupEngine.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1025\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1033\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1029\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1030\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1035\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1031\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1036\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1032\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1028\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\2052\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\3076\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1042\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1041\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1037\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1044\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1053\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1055\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1040\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1045\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1046\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1049\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1038\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\2070\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\3082\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\1043\SetupResources.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\SetupUi.dll... +Preparing: C:\b5f90a34b17b26c7b849b37d244d\sqmapi.dll... +2020-03-06 10:47:24,939 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:47:31,171 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: Getting latest version of the Chocolatey package for download. +Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +Downloading 7-Zip commandline tool prior to extraction. +Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +Installing chocolatey on this machine +Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. +Restricting write permissions to Administrators +We are setting up the Chocolatey package repository. +The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + +Creating Chocolatey folders if they do not already exist. + +WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. +chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. +PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +WARNING: Not setting tab completion: Profile file does not exist at +'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +Chocolatey (choco.exe) is now ready. +You can call choco from anywhere, command line or powershell by typing choco. +Run choco /? for a list of functions. +You may need to shut down and restart powershell and/or consoles + first prior to using choco. +Ensuring chocolatey commands are on the path +Ensuring chocolatey.nupkg is in the lib folder +2020-03-06 10:47:31,171 [salt.state :320 ][INFO ][6476] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:47:31,171 [salt.state :1997][INFO ][6476] Completed state [chocolatey.bootstrap] at time 10:47:31.171748 (duration_in_ms=20966.777) +2020-03-06 10:47:31,171 [salt.state :1819][INFO ][6476] Running state [notepadplusplus] at time 10:47:31.171748 +2020-03-06 10:47:31,171 [salt.state :1852][INFO ][6476] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:47:31,171 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:33,405 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: chocolatey|0.10.15 +2020-03-06 10:47:33,405 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:34,391 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: 0.10.15 +2020-03-06 10:47:34,391 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6476] output: 0.10.15 +2020-03-06 10:47:34,391 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:45,828 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +notepadplusplus +By installing you accept licenses for the packages. + +chocolatey-core.extension v1.3.5.1 [Approved] +chocolatey-core.extension package files install completed. Performing other installation steps. + Installed/updated chocolatey-core extensions. + The install of chocolatey-core.extension was successful. + Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' + +notepadplusplus.install v7.8.5 +notepadplusplus.install package files install completed. Performing other installation steps. +Installing 64-bit notepadplusplus.install... +notepadplusplus.install has been installed. +notepadplusplus.install installed to 'C:\Program Files\Notepad++' +Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program files\notepad++\notepad++.exe'. + notepadplusplus.install may be able to be automatically uninstalled. + The install of notepadplusplus.install was successful. + Software installed as 'exe', install location is likely default. + +notepadplusplus v7.8.5 [Approved] +notepadplusplus package files install completed. Performing other installation steps. + The install of notepadplusplus was successful. + Software install location not explicitly set, could be in package or + default install location if installer. + +Chocolatey installed 3/3 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:47:45,842 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:47,046 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:47:47,046 [salt.state :320 ][INFO ][6476] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:47:47,046 [salt.state :1997][INFO ][6476] Completed state [notepadplusplus] at time 10:47:47.046319 (duration_in_ms=15874.571) +2020-03-06 10:47:47,062 [salt.state :1819][INFO ][6476] Running state [windirstat] at time 10:47:47.062061 +2020-03-06 10:47:47,062 [salt.state :1852][INFO ][6476] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:47:47,062 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:48,390 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:47:48,390 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:52,282 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:47:52,282 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:53,499 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +windirstat|1.1.2.20161210 +2020-03-06 10:47:53,499 [salt.state :320 ][INFO ][6476] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 10:47:53,499 [salt.state :1997][INFO ][6476] Completed state [windirstat] at time 10:47:53.499461 (duration_in_ms=6437.4) +2020-03-06 10:47:53,499 [salt.state :1819][INFO ][6476] Running state [TelnetClient] at time 10:47:53.499461 +2020-03-06 10:47:53,499 [salt.state :1852][INFO ][6476] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:47:53,515 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:47:53,515 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:47:55,452 [salt.state :889 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:47:55,452 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:56,655 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.17763.1 + +Image Version: 10.0.17763.503 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17763.1 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:47:56,655 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6476] output: +Deployment Image Servicing and Management tool +Version: 10.0.17763.1 + +Image Version: 10.0.17763.503 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17763.1 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:47:56,655 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:47:57,625 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:48:00,375 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6476] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.17763.1 + +Image Version: 10.0.17763.503 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17763.1 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:48:00,375 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6476] output: +Deployment Image Servicing and Management tool +Version: 10.0.17763.1 + +Image Version: 10.0.17763.503 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.17763.1 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +The operation completed successfully. +2020-03-06 10:48:00,375 [salt.state :320 ][INFO ][6476] {'stderr': '', 'feature': {'new': 'TelnetClient'}, 'stdout': '', 'pid': 3768, 'retcode': 0} +2020-03-06 10:48:00,375 [salt.state :1997][INFO ][6476] Completed state [TelnetClient] at time 10:48:00.375780 (duration_in_ms=6876.319) +2020-03-06 10:48:00,375 [salt.state :1819][INFO ][6476] Running state [windows.module.system.reboot] at time 10:48:00.375780 +2020-03-06 10:48:00,375 [salt.state :1852][INFO ][6476] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:48:00,390 [salt.utils.lazy :107 ][DEBUG ][6476] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:48:00,390 [salt.loaded.int.module.cmdmod:397 ][INFO ][6476] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:48:00,593 [salt.state :889 ][DEBUG ][6476] Last command return code: 0 +2020-03-06 10:48:00,593 [salt.loaded.int.module.win_system:1413][DEBUG ][6476] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:48:00,593 [salt.loaded.int.module.win_system:1348][DEBUG ][6476] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:48:00,593 [salt.loaded.int.module.win_system:1348][DEBUG ][6476] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:48:00,593 [salt.loaded.int.module.win_system:1387][DEBUG ][6476] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:48:00,593 [salt.loaded.int.module.win_system:1273][DEBUG ][6476] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:48:00,624 [salt.state :320 ][INFO ][6476] {'system.reboot': True} +2020-03-06 10:48:00,624 [salt.state :1997][INFO ][6476] Completed state [windows.module.system.reboot] at time 10:48:00.624639 (duration_in_ms=248.859) +2020-03-06 10:48:00,624 [salt.state :2801][DEBUG ][6476] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1778798404440 does not exist, no need to cleanup +2020-03-06 10:48:00,624 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded state.check_result +2020-03-06 10:48:00,641 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded highstate.output +2020-03-06 10:48:00,641 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,655 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,671 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,687 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,702 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,733 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,733 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,733 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,750 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,765 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,780 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,780 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 10:48:00,780 [salt.utils.lazy :104 ][DEBUG ][6476] LazyLoaded nested.output +2020-03-06 13:48:07,218 [salt.loader :747 ][DEBUG ][5412] Grains refresh requested. Refreshing grains. +2020-03-06 13:48:07,218 [salt.config :2190][DEBUG ][5412] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:48:07,218 [salt.config :2334][DEBUG ][5412] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:48:07,234 [salt.config :2190][DEBUG ][5412] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-201923-windows-10-1903.kitchen.log b/test/results/py3-201923-windows-10-1903.kitchen.log new file mode 100644 index 0000000..e288a78 --- /dev/null +++ b/test/results/py3-201923-windows-10-1903.kitchen.log @@ -0,0 +1,1036 @@ +I, [2020-03-06T13:39:30.356817 #20761] INFO -- py3-201923-windows-10-1903: -----> Cleaning up any prior instances of +I, [2020-03-06T13:39:30.356998 #20761] INFO -- py3-201923-windows-10-1903: -----> Destroying ... +I, [2020-03-06T13:39:30.358325 #20761] INFO -- py3-201923-windows-10-1903: Finished destroying (0m0.00s). +I, [2020-03-06T13:39:30.359378 #20761] INFO -- py3-201923-windows-10-1903: -----> Testing +I, [2020-03-06T13:39:30.359678 #20761] INFO -- py3-201923-windows-10-1903: -----> Creating ... +I, [2020-03-06T13:39:35.727835 #20761] INFO -- py3-201923-windows-10-1903: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:39:36.669139 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Cloning VM... +I, [2020-03-06T13:39:37.106937 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:39:37.337109 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Checking if box 'StefanScherer/windows_10' version '2020.01.15' is up to date... +I, [2020-03-06T13:39:38.208729 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1903-af69d486-642f-4038-8272-01d15e5e4a8d +I, [2020-03-06T13:39:41.641226 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:39:41.771784 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:39:41.772247 #20761] INFO -- py3-201923-windows-10-1903: default: Adapter 1: nat +I, [2020-03-06T13:39:41.930161 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Forwarding ports... +I, [2020-03-06T13:39:42.076886 #20761] INFO -- py3-201923-windows-10-1903: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:39:42.077225 #20761] INFO -- py3-201923-windows-10-1903: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:39:42.077722 #20761] INFO -- py3-201923-windows-10-1903: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:39:42.078615 #20761] INFO -- py3-201923-windows-10-1903: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:39:42.579049 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:39:43.793514 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Booting VM... +I, [2020-03-06T13:39:46.625497 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:39:48.265819 #20761] INFO -- py3-201923-windows-10-1903: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:39:48.266045 #20761] INFO -- py3-201923-windows-10-1903: default: WinRM username: vagrant +I, [2020-03-06T13:39:48.266572 #20761] INFO -- py3-201923-windows-10-1903: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:39:48.266863 #20761] INFO -- py3-201923-windows-10-1903: default: WinRM transport: negotiate +I, [2020-03-06T13:40:10.069379 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Machine booted and ready! +I, [2020-03-06T13:40:10.091924 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:40:10.271899 #20761] INFO -- py3-201923-windows-10-1903: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T13:40:10.272012 #20761] INFO -- py3-201923-windows-10-1903: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T13:40:10.272053 #20761] INFO -- py3-201923-windows-10-1903: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T13:40:10.272096 #20761] INFO -- py3-201923-windows-10-1903: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T13:40:10.272187 #20761] INFO -- py3-201923-windows-10-1903: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T13:40:10.272231 #20761] INFO -- py3-201923-windows-10-1903: default: your host and reload your VM. +I, [2020-03-06T13:40:10.272301 #20761] INFO -- py3-201923-windows-10-1903: default: +I, [2020-03-06T13:40:10.272376 #20761] INFO -- py3-201923-windows-10-1903: default: Guest Additions Version: 6.0.10 +I, [2020-03-06T13:40:10.272449 #20761] INFO -- py3-201923-windows-10-1903: default: VirtualBox Version: 6.1 +I, [2020-03-06T13:40:11.144518 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Mounting shared folders... +I, [2020-03-06T13:40:11.146512 #20761] INFO -- py3-201923-windows-10-1903: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:40:17.998487 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:40:29.405980 #20761] INFO -- py3-201923-windows-10-1903: [WinRM] Established +I, [2020-03-06T13:40:29.406093 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:29.496617 #20761] INFO -- py3-201923-windows-10-1903: Vagrant instance created. +I, [2020-03-06T13:40:29.498531 #20761] INFO -- py3-201923-windows-10-1903: Finished creating (0m59.14s). +I, [2020-03-06T13:40:29.498767 #20761] INFO -- py3-201923-windows-10-1903: -----> Converging ... +I, [2020-03-06T13:40:29.501040 #20761] INFO -- py3-201923-windows-10-1903: Preparing files for transfer +I, [2020-03-06T13:40:29.501188 #20761] INFO -- py3-201923-windows-10-1903: Preparing salt-minion +I, [2020-03-06T13:40:29.506182 #20761] INFO -- py3-201923-windows-10-1903: Preparing pillars into /srv/pillar +I, [2020-03-06T13:40:29.506282 #20761] INFO -- py3-201923-windows-10-1903: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:40:29.509445 #20761] INFO -- py3-201923-windows-10-1903: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:40:29.662684 #20761] INFO -- py3-201923-windows-10-1903: Preparing state_top +I, [2020-03-06T13:40:29.664487 #20761] INFO -- py3-201923-windows-10-1903: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:40:30.602123 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:30.602679 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:30.603258 #20761] INFO -- py3-201923-windows-10-1903: Directory: C:\ +I, [2020-03-06T13:40:30.603749 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:30.604187 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:30.604681 #20761] INFO -- py3-201923-windows-10-1903: Mode LastWriteTime Length Name +I, [2020-03-06T13:40:30.605179 #20761] INFO -- py3-201923-windows-10-1903: ---- ------------- ------ ---- +I, [2020-03-06T13:40:30.605692 #20761] INFO -- py3-201923-windows-10-1903: d----- 3/6/2020 10:40 AM temp +I, [2020-03-06T13:40:31.555093 #20761] INFO -- py3-201923-windows-10-1903: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe +I, [2020-03-06T13:40:38.201876 #20761] INFO -- py3-201923-windows-10-1903: Installing Salt minion +I, [2020-03-06T13:40:50.713607 #20761] INFO -- py3-201923-windows-10-1903: Starting the Salt minion service +I, [2020-03-06T13:40:50.714240 #20761] INFO -- py3-201923-windows-10-1903: Salt minion successfully installed +I, [2020-03-06T13:40:52.053641 #20761] INFO -- py3-201923-windows-10-1903: You asked for latest and you have 2019.2.3 installed, sweet! +I, [2020-03-06T13:40:52.054046 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.054457 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.555799 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.556174 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.556699 #20761] INFO -- py3-201923-windows-10-1903: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:40:52.557135 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.557503 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.557981 #20761] INFO -- py3-201923-windows-10-1903: Mode LastWriteTime Length Name +I, [2020-03-06T13:40:52.558448 #20761] INFO -- py3-201923-windows-10-1903: ---- ------------- ------ ---- +I, [2020-03-06T13:40:52.558936 #20761] INFO -- py3-201923-windows-10-1903: d----- 3/6/2020 10:40 AM kitchen +I, [2020-03-06T13:40:52.559318 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.559674 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:40:52.572416 #20761] INFO -- py3-201923-windows-10-1903: Transferring files to +I, [2020-03-06T13:41:23.358803 #20761] INFO -- py3-201923-windows-10-1903: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:41:23.359310 #20761] INFO -- py3-201923-windows-10-1903: At line:1 char:131 +I, [2020-03-06T13:41:23.359991 #20761] INFO -- py3-201923-windows-10-1903: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:41:23.360434 #20761] INFO -- py3-201923-windows-10-1903: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:41:23.360867 #20761] INFO -- py3-201923-windows-10-1903: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:41:23.361302 #20761] INFO -- py3-201923-windows-10-1903: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:41:23.361601 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:41:23.361933 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:41:23.362258 #20761] INFO -- py3-201923-windows-10-1903: Traceback (most recent call last): +I, [2020-03-06T13:41:23.362581 #20761] INFO -- py3-201923-windows-10-1903: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:41:23.362924 #20761] INFO -- py3-201923-windows-10-1903: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:41:23.363278 #20761] INFO -- py3-201923-windows-10-1903: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:41:23.363585 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:41:23.363944 #20761] INFO -- py3-201923-windows-10-1903: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:41:23.364253 #20761] INFO -- py3-201923-windows-10-1903: Traceback (most recent call last): +I, [2020-03-06T13:41:23.364587 #20761] INFO -- py3-201923-windows-10-1903: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:41:23.364901 #20761] INFO -- py3-201923-windows-10-1903: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:41:23.365209 #20761] INFO -- py3-201923-windows-10-1903: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:41:23.365527 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:42:13.232232 #20761] INFO -- py3-201923-windows-10-1903: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:42:13.232752 #20761] INFO -- py3-201923-windows-10-1903: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:42:13.233204 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:42:13.233693 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:42:13.234338 #20761] INFO -- py3-201923-windows-10-1903: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:42:13.234990 #20761] INFO -- py3-201923-windows-10-1903: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:42:13.235405 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:42:13.235738 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:02.770575 #20761] INFO -- py3-201923-windows-10-1903: local: +I, [2020-03-06T13:43:02.771155 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.771703 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:43:02.772182 #20761] INFO -- py3-201923-windows-10-1903: Function: system.hostname +I, [2020-03-06T13:43:02.772614 #20761] INFO -- py3-201923-windows-10-1903: Name: saltstack1 +I, [2020-03-06T13:43:02.772924 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.773260 #20761] INFO -- py3-201923-windows-10-1903: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:43:02.773763 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:04.025952 +I, [2020-03-06T13:43:02.774227 #20761] INFO -- py3-201923-windows-10-1903: Duration: 90.324 ms +I, [2020-03-06T13:43:02.774622 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.775020 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.775437 #20761] INFO -- py3-201923-windows-10-1903: hostname: +I, [2020-03-06T13:43:02.775844 #20761] INFO -- py3-201923-windows-10-1903: saltstack1 +I, [2020-03-06T13:43:02.776243 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.776629 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:43:02.777131 #20761] INFO -- py3-201923-windows-10-1903: Function: system.computer_desc +I, [2020-03-06T13:43:02.777480 #20761] INFO -- py3-201923-windows-10-1903: Name: Saltstack Computer Description +I, [2020-03-06T13:43:02.777808 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.778136 #20761] INFO -- py3-201923-windows-10-1903: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:43:02.778472 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:04.116276 +I, [2020-03-06T13:43:02.778861 #20761] INFO -- py3-201923-windows-10-1903: Duration: 2704.202 ms +I, [2020-03-06T13:43:02.779318 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.779765 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.780278 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:02.780758 #20761] INFO -- py3-201923-windows-10-1903: Saltstack Computer Description +I, [2020-03-06T13:43:02.781242 #20761] INFO -- py3-201923-windows-10-1903: old: +I, [2020-03-06T13:43:02.781711 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.782213 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:43:02.782648 #20761] INFO -- py3-201923-windows-10-1903: Function: timezone.system +I, [2020-03-06T13:43:02.783070 #20761] INFO -- py3-201923-windows-10-1903: Name: America/New_York +I, [2020-03-06T13:43:02.783452 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.783897 #20761] INFO -- py3-201923-windows-10-1903: Comment: Set timezone America/New_York +I, [2020-03-06T13:43:02.784319 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:06.834966 +I, [2020-03-06T13:43:02.784718 #20761] INFO -- py3-201923-windows-10-1903: Duration: 15.8 ms +I, [2020-03-06T13:43:02.786649 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.788492 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.790082 #20761] INFO -- py3-201923-windows-10-1903: timezone: +I, [2020-03-06T13:43:02.791683 #20761] INFO -- py3-201923-windows-10-1903: America/New_York +I, [2020-03-06T13:43:02.792926 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.793966 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.module.environ.items +I, [2020-03-06T13:43:02.794919 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:02.795871 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.796808 #20761] INFO -- py3-201923-windows-10-1903: Comment: environ.items: Success +I, [2020-03-06T13:43:02.797728 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:06.866310 +I, [2020-03-06T13:43:02.798638 #20761] INFO -- py3-201923-windows-10-1903: Duration: 0.0 ms +I, [2020-03-06T13:43:02.799873 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.801148 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.802599 #20761] INFO -- py3-201923-windows-10-1903: environ.items: +I, [2020-03-06T13:43:02.803960 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.805443 #20761] INFO -- py3-201923-windows-10-1903: ALLUSERSPROFILE: +I, [2020-03-06T13:43:02.807445 #20761] INFO -- py3-201923-windows-10-1903: C:\ProgramData +I, [2020-03-06T13:43:02.809782 #20761] INFO -- py3-201923-windows-10-1903: APPDATA: +I, [2020-03-06T13:43:02.811720 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:43:02.813243 #20761] INFO -- py3-201923-windows-10-1903: COMMONPROGRAMFILES: +I, [2020-03-06T13:43:02.814632 #20761] INFO -- py3-201923-windows-10-1903: C:\Program Files\Common Files +I, [2020-03-06T13:43:02.816205 #20761] INFO -- py3-201923-windows-10-1903: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:43:02.816755 #20761] INFO -- py3-201923-windows-10-1903: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:43:02.817601 #20761] INFO -- py3-201923-windows-10-1903: COMMONPROGRAMW6432: +I, [2020-03-06T13:43:02.818497 #20761] INFO -- py3-201923-windows-10-1903: C:\Program Files\Common Files +I, [2020-03-06T13:43:02.819508 #20761] INFO -- py3-201923-windows-10-1903: COMPUTERNAME: +I, [2020-03-06T13:43:02.821391 #20761] INFO -- py3-201923-windows-10-1903: VAGRANT-10 +I, [2020-03-06T13:43:02.823329 #20761] INFO -- py3-201923-windows-10-1903: COMSPEC: +I, [2020-03-06T13:43:02.825077 #20761] INFO -- py3-201923-windows-10-1903: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:43:02.826397 #20761] INFO -- py3-201923-windows-10-1903: DRIVERDATA: +I, [2020-03-06T13:43:02.828183 #20761] INFO -- py3-201923-windows-10-1903: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T13:43:02.828862 #20761] INFO -- py3-201923-windows-10-1903: HOMEDRIVE: +I, [2020-03-06T13:43:02.832114 #20761] INFO -- py3-201923-windows-10-1903: C: +I, [2020-03-06T13:43:02.833662 #20761] INFO -- py3-201923-windows-10-1903: HOMEPATH: +I, [2020-03-06T13:43:02.835017 #20761] INFO -- py3-201923-windows-10-1903: \Users\vagrant +I, [2020-03-06T13:43:02.835505 #20761] INFO -- py3-201923-windows-10-1903: LOCALAPPDATA: +I, [2020-03-06T13:43:02.836711 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:43:02.838302 #20761] INFO -- py3-201923-windows-10-1903: LOGONSERVER: +I, [2020-03-06T13:43:02.839676 #20761] INFO -- py3-201923-windows-10-1903: \\VAGRANT-10 +I, [2020-03-06T13:43:02.840651 #20761] INFO -- py3-201923-windows-10-1903: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:43:02.841482 #20761] INFO -- py3-201923-windows-10-1903: 2 +I, [2020-03-06T13:43:02.841927 #20761] INFO -- py3-201923-windows-10-1903: ONEDRIVE: +I, [2020-03-06T13:43:02.842843 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:43:02.843637 #20761] INFO -- py3-201923-windows-10-1903: OS: +I, [2020-03-06T13:43:02.844583 #20761] INFO -- py3-201923-windows-10-1903: Windows_NT +I, [2020-03-06T13:43:02.845465 #20761] INFO -- py3-201923-windows-10-1903: PATH: +I, [2020-03-06T13:43:02.846297 #20761] INFO -- py3-201923-windows-10-1903: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:43:02.852021 #20761] INFO -- py3-201923-windows-10-1903: PATHEXT: +I, [2020-03-06T13:43:02.852622 #20761] INFO -- py3-201923-windows-10-1903: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:43:02.853147 #20761] INFO -- py3-201923-windows-10-1903: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:43:02.853559 #20761] INFO -- py3-201923-windows-10-1903: AMD64 +I, [2020-03-06T13:43:02.853883 #20761] INFO -- py3-201923-windows-10-1903: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:43:02.854293 #20761] INFO -- py3-201923-windows-10-1903: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:43:02.854744 #20761] INFO -- py3-201923-windows-10-1903: PROCESSOR_LEVEL: +I, [2020-03-06T13:43:02.855124 #20761] INFO -- py3-201923-windows-10-1903: 6 +I, [2020-03-06T13:43:02.855510 #20761] INFO -- py3-201923-windows-10-1903: PROCESSOR_REVISION: +I, [2020-03-06T13:43:02.855858 #20761] INFO -- py3-201923-windows-10-1903: 8e0c +I, [2020-03-06T13:43:02.856289 #20761] INFO -- py3-201923-windows-10-1903: PROGRAMDATA: +I, [2020-03-06T13:43:02.856667 #20761] INFO -- py3-201923-windows-10-1903: C:\ProgramData +I, [2020-03-06T13:43:02.857125 #20761] INFO -- py3-201923-windows-10-1903: PROGRAMFILES: +I, [2020-03-06T13:43:02.857567 #20761] INFO -- py3-201923-windows-10-1903: C:\Program Files +I, [2020-03-06T13:43:02.858079 #20761] INFO -- py3-201923-windows-10-1903: PROGRAMFILES(X86): +I, [2020-03-06T13:43:02.858523 #20761] INFO -- py3-201923-windows-10-1903: C:\Program Files (x86) +I, [2020-03-06T13:43:02.858922 #20761] INFO -- py3-201923-windows-10-1903: PROGRAMW6432: +I, [2020-03-06T13:43:02.859334 #20761] INFO -- py3-201923-windows-10-1903: C:\Program Files +I, [2020-03-06T13:43:02.859651 #20761] INFO -- py3-201923-windows-10-1903: PROMPT: +I, [2020-03-06T13:43:02.859976 #20761] INFO -- py3-201923-windows-10-1903: $P$G +I, [2020-03-06T13:43:02.860275 #20761] INFO -- py3-201923-windows-10-1903: PSMODULEPATH: +I, [2020-03-06T13:43:02.860618 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:43:02.860965 #20761] INFO -- py3-201923-windows-10-1903: PUBLIC: +I, [2020-03-06T13:43:02.861346 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\Public +I, [2020-03-06T13:43:02.861746 #20761] INFO -- py3-201923-windows-10-1903: PYTHON: +I, [2020-03-06T13:43:02.862125 #20761] INFO -- py3-201923-windows-10-1903: C:\salt\bin\python.exe +I, [2020-03-06T13:43:02.862427 #20761] INFO -- py3-201923-windows-10-1903: SALTDIR: +I, [2020-03-06T13:43:02.862795 #20761] INFO -- py3-201923-windows-10-1903: C:\salt +I, [2020-03-06T13:43:02.863227 #20761] INFO -- py3-201923-windows-10-1903: SCRIPT: +I, [2020-03-06T13:43:02.863667 #20761] INFO -- py3-201923-windows-10-1903: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:43:02.864119 #20761] INFO -- py3-201923-windows-10-1903: SYSTEMDRIVE: +I, [2020-03-06T13:43:02.864548 #20761] INFO -- py3-201923-windows-10-1903: C: +I, [2020-03-06T13:43:02.864989 #20761] INFO -- py3-201923-windows-10-1903: SYSTEMROOT: +I, [2020-03-06T13:43:02.865416 #20761] INFO -- py3-201923-windows-10-1903: C:\Windows +I, [2020-03-06T13:43:02.865873 #20761] INFO -- py3-201923-windows-10-1903: TEMP: +I, [2020-03-06T13:43:02.866314 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:43:02.866691 #20761] INFO -- py3-201923-windows-10-1903: TMP: +I, [2020-03-06T13:43:02.867018 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:43:02.867307 #20761] INFO -- py3-201923-windows-10-1903: USERDOMAIN: +I, [2020-03-06T13:43:02.867601 #20761] INFO -- py3-201923-windows-10-1903: VAGRANT-10 +I, [2020-03-06T13:43:02.867981 #20761] INFO -- py3-201923-windows-10-1903: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:43:02.868353 #20761] INFO -- py3-201923-windows-10-1903: VAGRANT-10 +I, [2020-03-06T13:43:02.868822 #20761] INFO -- py3-201923-windows-10-1903: USERNAME: +I, [2020-03-06T13:43:02.869272 #20761] INFO -- py3-201923-windows-10-1903: vagrant +I, [2020-03-06T13:43:02.869711 #20761] INFO -- py3-201923-windows-10-1903: USERPROFILE: +I, [2020-03-06T13:43:02.870165 #20761] INFO -- py3-201923-windows-10-1903: C:\Users\vagrant +I, [2020-03-06T13:43:02.870599 #20761] INFO -- py3-201923-windows-10-1903: WINDIR: +I, [2020-03-06T13:43:02.871058 #20761] INFO -- py3-201923-windows-10-1903: C:\Windows +I, [2020-03-06T13:43:02.871446 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.871789 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.module.user.current +I, [2020-03-06T13:43:02.872167 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:02.872483 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.872781 #20761] INFO -- py3-201923-windows-10-1903: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:43:02.873053 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:06.866310 +I, [2020-03-06T13:43:02.873321 #20761] INFO -- py3-201923-windows-10-1903: Duration: 16.183 ms +I, [2020-03-06T13:43:02.873676 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.874035 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.874418 #20761] INFO -- py3-201923-windows-10-1903: user.current: +I, [2020-03-06T13:43:02.874886 #20761] INFO -- py3-201923-windows-10-1903: VAGRANT-10\vagrant +I, [2020-03-06T13:43:02.875343 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.875796 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.module.status.uptime +I, [2020-03-06T13:43:02.876220 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:02.876663 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.877116 #20761] INFO -- py3-201923-windows-10-1903: Comment: status.uptime: 0:01:16.898124 +I, [2020-03-06T13:43:02.877618 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:06.882493 +I, [2020-03-06T13:43:02.878031 #20761] INFO -- py3-201923-windows-10-1903: Duration: 30.537 ms +I, [2020-03-06T13:43:02.878465 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.878896 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.879314 #20761] INFO -- py3-201923-windows-10-1903: status.uptime: +I, [2020-03-06T13:43:02.879730 #20761] INFO -- py3-201923-windows-10-1903: 0:01:16.898124 +I, [2020-03-06T13:43:02.880108 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.880504 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:43:02.880903 #20761] INFO -- py3-201923-windows-10-1903: Function: cmd.run +I, [2020-03-06T13:43:02.881279 #20761] INFO -- py3-201923-windows-10-1903: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers +I, [2020-03-06T13:43:02.881596 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.881906 #20761] INFO -- py3-201923-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:43:02.882215 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:06.913030 +I, [2020-03-06T13:43:02.882655 #20761] INFO -- py3-201923-windows-10-1903: Duration: 1751.62 ms +I, [2020-03-06T13:43:02.882960 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.883336 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.883758 #20761] INFO -- py3-201923-windows-10-1903: pid: +I, [2020-03-06T13:43:02.884069 #20761] INFO -- py3-201923-windows-10-1903: 4608 +I, [2020-03-06T13:43:02.884422 #20761] INFO -- py3-201923-windows-10-1903: retcode: +I, [2020-03-06T13:43:02.884723 #20761] INFO -- py3-201923-windows-10-1903: 0 +I, [2020-03-06T13:43:02.885031 #20761] INFO -- py3-201923-windows-10-1903: stderr: +I, [2020-03-06T13:43:02.885342 #20761] INFO -- py3-201923-windows-10-1903: stdout: +I, [2020-03-06T13:43:02.885621 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.885941 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:43:02.886350 #20761] INFO -- py3-201923-windows-10-1903: Function: cmd.run +I, [2020-03-06T13:43:02.886713 #20761] INFO -- py3-201923-windows-10-1903: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers +I, [2020-03-06T13:43:02.887016 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.887393 #20761] INFO -- py3-201923-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:43:02.887686 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:08.664650 +I, [2020-03-06T13:43:02.888044 #20761] INFO -- py3-201923-windows-10-1903: Duration: 1530.11 ms +I, [2020-03-06T13:43:02.888420 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.888752 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.889154 #20761] INFO -- py3-201923-windows-10-1903: pid: +I, [2020-03-06T13:43:02.889561 #20761] INFO -- py3-201923-windows-10-1903: 864 +I, [2020-03-06T13:43:02.889879 #20761] INFO -- py3-201923-windows-10-1903: retcode: +I, [2020-03-06T13:43:02.890194 #20761] INFO -- py3-201923-windows-10-1903: 0 +I, [2020-03-06T13:43:02.890553 #20761] INFO -- py3-201923-windows-10-1903: stderr: +I, [2020-03-06T13:43:02.890858 #20761] INFO -- py3-201923-windows-10-1903: stdout: +I, [2020-03-06T13:43:02.891231 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.891544 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:43:02.891881 #20761] INFO -- py3-201923-windows-10-1903: Function: cmd.run +I, [2020-03-06T13:43:02.892321 #20761] INFO -- py3-201923-windows-10-1903: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers +I, [2020-03-06T13:43:02.892618 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.892909 #20761] INFO -- py3-201923-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:43:02.893208 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:10.194760 +I, [2020-03-06T13:43:02.893495 #20761] INFO -- py3-201923-windows-10-1903: Duration: 1472.363 ms +I, [2020-03-06T13:43:02.893842 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.894154 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.894518 #20761] INFO -- py3-201923-windows-10-1903: pid: +I, [2020-03-06T13:43:02.894848 #20761] INFO -- py3-201923-windows-10-1903: 4456 +I, [2020-03-06T13:43:02.895211 #20761] INFO -- py3-201923-windows-10-1903: retcode: +I, [2020-03-06T13:43:02.895529 #20761] INFO -- py3-201923-windows-10-1903: 0 +I, [2020-03-06T13:43:02.895819 #20761] INFO -- py3-201923-windows-10-1903: stderr: +I, [2020-03-06T13:43:02.896118 #20761] INFO -- py3-201923-windows-10-1903: stdout: +I, [2020-03-06T13:43:02.896466 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.896798 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:43:02.897238 #20761] INFO -- py3-201923-windows-10-1903: Function: cmd.run +I, [2020-03-06T13:43:02.897611 #20761] INFO -- py3-201923-windows-10-1903: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers +I, [2020-03-06T13:43:02.897994 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.898339 #20761] INFO -- py3-201923-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:43:02.898673 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:11.667123 +I, [2020-03-06T13:43:02.899055 #20761] INFO -- py3-201923-windows-10-1903: Duration: 1606.025 ms +I, [2020-03-06T13:43:02.899350 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.899658 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.900069 #20761] INFO -- py3-201923-windows-10-1903: pid: +I, [2020-03-06T13:43:02.900396 #20761] INFO -- py3-201923-windows-10-1903: 6016 +I, [2020-03-06T13:43:02.900719 #20761] INFO -- py3-201923-windows-10-1903: retcode: +I, [2020-03-06T13:43:02.904913 #20761] INFO -- py3-201923-windows-10-1903: 0 +I, [2020-03-06T13:43:02.905503 #20761] INFO -- py3-201923-windows-10-1903: stderr: +I, [2020-03-06T13:43:02.905874 #20761] INFO -- py3-201923-windows-10-1903: stdout: +I, [2020-03-06T13:43:02.906187 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.906525 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal +I, [2020-03-06T13:43:02.906845 #20761] INFO -- py3-201923-windows-10-1903: Function: cmd.run +I, [2020-03-06T13:43:02.907260 #20761] INFO -- py3-201923-windows-10-1903: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers +I, [2020-03-06T13:43:02.907678 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.908125 #20761] INFO -- py3-201923-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:43:02.908475 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:13.273148 +I, [2020-03-06T13:43:02.908793 #20761] INFO -- py3-201923-windows-10-1903: Duration: 1562.132 ms +I, [2020-03-06T13:43:02.909151 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.909463 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.909790 #20761] INFO -- py3-201923-windows-10-1903: pid: +I, [2020-03-06T13:43:02.910106 #20761] INFO -- py3-201923-windows-10-1903: 1112 +I, [2020-03-06T13:43:02.910473 #20761] INFO -- py3-201923-windows-10-1903: retcode: +I, [2020-03-06T13:43:02.910798 #20761] INFO -- py3-201923-windows-10-1903: 0 +I, [2020-03-06T13:43:02.911094 #20761] INFO -- py3-201923-windows-10-1903: stderr: +I, [2020-03-06T13:43:02.911522 #20761] INFO -- py3-201923-windows-10-1903: stdout: +I, [2020-03-06T13:43:02.911886 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.912236 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:43:02.912546 #20761] INFO -- py3-201923-windows-10-1903: Function: reg.present +I, [2020-03-06T13:43:02.912880 #20761] INFO -- py3-201923-windows-10-1903: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:43:02.913289 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.913658 #20761] INFO -- py3-201923-windows-10-1903: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:43:02.914110 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:14.850757 +I, [2020-03-06T13:43:02.914460 #20761] INFO -- py3-201923-windows-10-1903: Duration: 7781.415 ms +I, [2020-03-06T13:43:02.914867 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.915175 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.915490 #20761] INFO -- py3-201923-windows-10-1903: reg: +I, [2020-03-06T13:43:02.915810 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.916111 #20761] INFO -- py3-201923-windows-10-1903: Added: +I, [2020-03-06T13:43:02.916443 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.916877 #20761] INFO -- py3-201923-windows-10-1903: Entry: +I, [2020-03-06T13:43:02.917232 #20761] INFO -- py3-201923-windows-10-1903: SystemDefaultTlsVersions +I, [2020-03-06T13:43:02.917599 #20761] INFO -- py3-201923-windows-10-1903: Inheritance: +I, [2020-03-06T13:43:02.917906 #20761] INFO -- py3-201923-windows-10-1903: True +I, [2020-03-06T13:43:02.918207 #20761] INFO -- py3-201923-windows-10-1903: Key: +I, [2020-03-06T13:43:02.918535 #20761] INFO -- py3-201923-windows-10-1903: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:43:02.918844 #20761] INFO -- py3-201923-windows-10-1903: Owner: +I, [2020-03-06T13:43:02.919153 #20761] INFO -- py3-201923-windows-10-1903: None +I, [2020-03-06T13:43:02.919585 #20761] INFO -- py3-201923-windows-10-1903: Perms: +I, [2020-03-06T13:43:02.919904 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.920262 #20761] INFO -- py3-201923-windows-10-1903: Deny: +I, [2020-03-06T13:43:02.920582 #20761] INFO -- py3-201923-windows-10-1903: None +I, [2020-03-06T13:43:02.920875 #20761] INFO -- py3-201923-windows-10-1903: Grant: +I, [2020-03-06T13:43:02.921194 #20761] INFO -- py3-201923-windows-10-1903: None +I, [2020-03-06T13:43:02.921509 #20761] INFO -- py3-201923-windows-10-1903: Value: +I, [2020-03-06T13:43:02.921811 #20761] INFO -- py3-201923-windows-10-1903: 1 +I, [2020-03-06T13:43:02.922218 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.922599 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:43:02.923335 #20761] INFO -- py3-201923-windows-10-1903: Function: reg.present +I, [2020-03-06T13:43:02.923706 #20761] INFO -- py3-201923-windows-10-1903: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:43:02.924048 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.924389 #20761] INFO -- py3-201923-windows-10-1903: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:43:02.924799 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:22.632172 +I, [2020-03-06T13:43:02.925115 #20761] INFO -- py3-201923-windows-10-1903: Duration: 218.284 ms +I, [2020-03-06T13:43:02.925490 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.925791 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.926151 #20761] INFO -- py3-201923-windows-10-1903: reg: +I, [2020-03-06T13:43:02.926598 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.926934 #20761] INFO -- py3-201923-windows-10-1903: Added: +I, [2020-03-06T13:43:02.927318 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.927733 #20761] INFO -- py3-201923-windows-10-1903: Entry: +I, [2020-03-06T13:43:02.928134 #20761] INFO -- py3-201923-windows-10-1903: SystemDefaultTlsVersions +I, [2020-03-06T13:43:02.928475 #20761] INFO -- py3-201923-windows-10-1903: Inheritance: +I, [2020-03-06T13:43:02.928782 #20761] INFO -- py3-201923-windows-10-1903: True +I, [2020-03-06T13:43:02.929152 #20761] INFO -- py3-201923-windows-10-1903: Key: +I, [2020-03-06T13:43:02.929561 #20761] INFO -- py3-201923-windows-10-1903: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:43:02.929880 #20761] INFO -- py3-201923-windows-10-1903: Owner: +I, [2020-03-06T13:43:02.930227 #20761] INFO -- py3-201923-windows-10-1903: None +I, [2020-03-06T13:43:02.930627 #20761] INFO -- py3-201923-windows-10-1903: Perms: +I, [2020-03-06T13:43:02.930958 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.931271 #20761] INFO -- py3-201923-windows-10-1903: Deny: +I, [2020-03-06T13:43:02.931562 #20761] INFO -- py3-201923-windows-10-1903: None +I, [2020-03-06T13:43:02.931882 #20761] INFO -- py3-201923-windows-10-1903: Grant: +I, [2020-03-06T13:43:02.932202 #20761] INFO -- py3-201923-windows-10-1903: None +I, [2020-03-06T13:43:02.932502 #20761] INFO -- py3-201923-windows-10-1903: Value: +I, [2020-03-06T13:43:02.932844 #20761] INFO -- py3-201923-windows-10-1903: 1 +I, [2020-03-06T13:43:02.933330 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.933812 #20761] INFO -- py3-201923-windows-10-1903: ID: manually.update_git_repo-ng +I, [2020-03-06T13:43:02.934314 #20761] INFO -- py3-201923-windows-10-1903: Function: archive.extracted +I, [2020-03-06T13:43:02.934702 #20761] INFO -- py3-201923-windows-10-1903: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:43:02.935205 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:02.935644 #20761] INFO -- py3-201923-windows-10-1903: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:43:02.936092 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:22.850456 +I, [2020-03-06T13:43:02.936523 #20761] INFO -- py3-201923-windows-10-1903: Duration: 750.232 ms +I, [2020-03-06T13:43:02.936894 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:02.937226 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:02.937542 #20761] INFO -- py3-201923-windows-10-1903: directories_created: +I, [2020-03-06T13:43:02.937869 #20761] INFO -- py3-201923-windows-10-1903: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:43:02.938228 #20761] INFO -- py3-201923-windows-10-1903: extracted_files: +I, [2020-03-06T13:43:02.938549 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ +I, [2020-03-06T13:43:02.938897 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:43:02.939343 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:43:02.939714 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:43:02.940051 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:43:02.940431 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:43:02.940842 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:43:02.941196 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:43:02.941621 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:43:02.942003 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:43:02.942443 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:43:02.942792 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:43:02.943124 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:43:02.943429 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:43:02.943778 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:43:02.944107 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:43:02.944484 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:43:02.944924 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:43:02.945281 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:43:02.945603 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:43:02.945930 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:43:02.946243 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:43:02.946613 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:43:02.946943 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:43:02.947242 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:43:02.947597 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:43:02.947981 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:43:02.948319 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:43:02.948689 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:43:02.949029 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:43:02.949335 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:43:02.949720 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:43:02.950053 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:43:02.950387 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:43:02.950834 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:43:02.951251 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:43:02.951714 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:43:02.952197 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:43:02.957827 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:43:02.958583 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:43:02.959162 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:43:02.959698 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:43:02.960195 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:43:02.960723 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:43:02.961224 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:43:02.961717 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:43:02.962174 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:43:02.962664 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:43:02.963156 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:43:02.963676 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:43:02.964171 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:43:02.964681 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:43:02.965183 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:43:02.965695 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:43:02.966244 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:43:02.966781 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:43:02.967271 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:43:02.967773 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:43:02.968258 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:43:02.968768 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:43:02.969243 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:43:02.969733 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:43:02.970215 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:43:02.970734 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:43:02.971232 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:43:02.971741 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:43:02.972221 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:43:02.972723 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:43:02.973205 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:43:02.973714 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:43:02.974212 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:43:02.974715 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:43:02.975222 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:43:02.975712 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:43:02.976224 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:43:02.976721 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:43:02.977221 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:43:02.977717 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:43:02.978229 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:43:02.978729 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:43:02.979230 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:43:02.979691 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:43:02.980183 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:43:02.980651 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:43:02.981153 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:43:02.981623 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:43:02.982118 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:43:02.982622 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:43:02.983142 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:43:02.983564 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:43:02.983986 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:43:02.984374 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:43:02.985246 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:43:02.985755 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:43:02.986268 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:43:02.986726 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:43:02.987214 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:43:02.987684 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:43:02.988170 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:43:02.988604 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:43:02.989034 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:43:02.989450 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:43:02.989879 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:43:02.990268 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:43:02.990673 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:43:02.991098 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:43:02.991492 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:43:02.991963 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:43:02.992460 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:43:02.992998 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:43:02.993482 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:43:02.993996 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:43:02.994488 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:43:02.995001 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:43:02.995515 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:43:02.996050 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:43:02.996556 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:43:02.997051 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:43:02.997533 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:43:02.998030 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:43:02.998512 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:43:02.999040 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:43:02.999538 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:43:03.000052 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:43:03.000546 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:43:03.001057 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:43:03.001476 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:43:03.001881 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:43:03.002266 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:43:03.002616 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:43:03.002942 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:43:03.003282 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:43:03.003700 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:43:03.004094 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:43:03.004472 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:43:03.004844 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:43:03.005226 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:43:03.005691 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:43:03.006074 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:43:03.006432 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:43:03.006758 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:43:03.007144 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:43:03.007567 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:43:03.007947 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:43:03.008435 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:43:03.008881 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:43:03.009362 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:43:03.009756 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:43:03.010126 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:43:03.010536 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:43:03.010935 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:43:03.011374 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:43:03.011792 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:43:03.012187 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:43:03.012592 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:43:03.012977 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:43:03.013402 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:43:03.013786 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:43:03.014193 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:43:03.014588 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:43:03.014988 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:43:03.015414 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:43:03.015847 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:43:03.016284 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:43:03.016677 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:43:03.017081 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:43:03.022274 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:43:03.023034 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:43:03.023611 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:43:03.024171 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:43:03.025737 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:43:03.026479 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:43:03.027092 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:43:03.027658 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:43:03.028237 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:43:03.028810 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:43:03.029373 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:43:03.029846 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:43:03.030322 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:43:03.030863 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:43:03.031313 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:43:03.031821 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:43:03.032346 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:43:03.032814 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:43:03.033226 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:43:03.033693 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:43:03.034163 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:43:03.034675 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:43:03.035176 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:43:03.035610 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:43:03.036030 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:43:03.036452 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:43:03.036947 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:43:03.037447 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:43:03.037967 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:43:03.038369 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:43:03.038799 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:43:03.039202 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:43:03.039650 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:43:03.040160 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:43:03.040721 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:43:03.041256 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:43:03.041788 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:43:03.042296 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:43:03.042893 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:43:03.043428 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:43:03.043992 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:43:03.044555 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:43:03.045090 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:43:03.045639 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:43:03.046141 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:43:03.046602 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:43:03.047086 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:43:03.047592 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:43:03.048058 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:43:03.048553 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:43:03.049024 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:43:03.049512 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:43:03.049986 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:43:03.050463 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:43:03.050923 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:43:03.051400 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:43:03.051886 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:43:03.052391 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:43:03.052856 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:43:03.053353 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:43:03.053822 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:43:03.054326 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:43:03.054812 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:43:03.055308 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:43:03.055782 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:43:03.056266 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:43:03.056742 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:43:03.057282 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:43:03.057829 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:43:03.058343 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:43:03.058819 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:43:03.059334 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:43:03.059843 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:43:03.060402 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:43:03.060923 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:43:03.061424 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:43:03.061899 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:43:03.062407 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:43:03.062942 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:43:03.063486 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:43:03.063969 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:43:03.064495 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:43:03.064996 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:43:03.065464 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:43:03.065924 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:43:03.066412 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:43:03.066908 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:43:03.067369 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:43:03.067788 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:43:03.068252 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:43:03.068716 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:43:03.069197 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:43:03.069724 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:43:03.070244 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:43:03.070727 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:43:03.071224 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:43:03.071710 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:43:03.072215 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:43:03.072616 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:43:03.073017 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:43:03.073441 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:43:03.073940 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:43:03.074423 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:43:03.074925 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:43:03.075403 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:43:03.075911 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:43:03.076406 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:43:03.076921 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:43:03.077404 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:43:03.077906 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:43:03.078383 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:43:03.078878 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:43:03.079353 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:43:03.079734 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:43:03.080174 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:43:03.080560 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:43:03.080881 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:43:03.081206 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:43:03.081547 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:43:03.081890 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:43:03.082249 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:43:03.082675 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:43:03.083018 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:43:03.083389 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:43:03.083732 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:43:03.084045 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:43:03.088261 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:43:03.088798 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:43:03.089294 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:43:03.089744 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:43:03.090125 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:43:03.090563 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:43:03.090914 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:43:03.091360 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:43:03.091751 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:43:03.092215 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:43:03.092747 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:43:03.093270 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:43:03.093804 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:43:03.094327 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:43:03.094844 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:43:03.095382 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:43:03.095906 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:43:03.096437 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:43:03.096935 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:43:03.097450 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:43:03.182726 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:43:03.183193 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:43:03.183638 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:43:03.184061 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:43:03.184456 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:43:03.184772 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:43:03.185108 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:43:03.185441 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:43:03.185815 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:43:03.186149 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:43:03.186539 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:43:03.186885 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:43:03.187213 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:43:03.187513 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:43:03.187864 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:43:03.192685 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:43:03.193286 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:43:03.193726 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:43:03.194155 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:43:03.194548 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:43:03.194966 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:43:03.195294 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:43:03.195623 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:43:03.196006 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:43:03.196333 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:43:03.196755 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:43:03.197100 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:43:03.197437 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:43:03.197770 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:43:03.198144 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:43:03.198498 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:43:03.198933 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:43:03.199272 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:43:03.199627 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:43:03.199938 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:43:03.200274 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:43:03.200607 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:43:03.200979 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:43:03.201438 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:43:03.201882 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:43:03.202217 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:43:03.202546 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:43:03.202881 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:43:03.203983 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:43:03.204470 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:43:03.204822 #20761] INFO -- py3-201923-windows-10-1903: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:43:03.205143 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.205515 #20761] INFO -- py3-201923-windows-10-1903: ID: rename-extract +I, [2020-03-06T13:43:03.205945 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:03.206357 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.206704 #20761] INFO -- py3-201923-windows-10-1903: Comment: file.rename: True +I, [2020-03-06T13:43:03.207006 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:23.600688 +I, [2020-03-06T13:43:03.207305 #20761] INFO -- py3-201923-windows-10-1903: Duration: 0.0 ms +I, [2020-03-06T13:43:03.207614 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.207996 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.208373 #20761] INFO -- py3-201923-windows-10-1903: file.rename: +I, [2020-03-06T13:43:03.208720 #20761] INFO -- py3-201923-windows-10-1903: True +I, [2020-03-06T13:43:03.209023 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.209341 #20761] INFO -- py3-201923-windows-10-1903: ID: pkg.refresh_db +I, [2020-03-06T13:43:03.209645 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:03.209932 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.210255 #20761] INFO -- py3-201923-windows-10-1903: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:43:03.210577 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:23.600688 +I, [2020-03-06T13:43:03.210956 #20761] INFO -- py3-201923-windows-10-1903: Duration: 6687.456 ms +I, [2020-03-06T13:43:03.211309 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.211611 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.211908 #20761] INFO -- py3-201923-windows-10-1903: pkg.refresh_db: +I, [2020-03-06T13:43:03.212243 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.212545 #20761] INFO -- py3-201923-windows-10-1903: failed: +I, [2020-03-06T13:43:03.212845 #20761] INFO -- py3-201923-windows-10-1903: 0 +I, [2020-03-06T13:43:03.213214 #20761] INFO -- py3-201923-windows-10-1903: success: +I, [2020-03-06T13:43:03.213565 #20761] INFO -- py3-201923-windows-10-1903: 298 +I, [2020-03-06T13:43:03.213873 #20761] INFO -- py3-201923-windows-10-1903: total: +I, [2020-03-06T13:43:03.214215 #20761] INFO -- py3-201923-windows-10-1903: 298 +I, [2020-03-06T13:43:03.214505 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.214798 #20761] INFO -- py3-201923-windows-10-1903: ID: kdiff3 +I, [2020-03-06T13:43:03.215125 #20761] INFO -- py3-201923-windows-10-1903: Function: pkg.installed +I, [2020-03-06T13:43:03.215508 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.215810 #20761] INFO -- py3-201923-windows-10-1903: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:43:03.216291 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:30.288144 +I, [2020-03-06T13:43:03.216638 #20761] INFO -- py3-201923-windows-10-1903: Duration: 4890.989 ms +I, [2020-03-06T13:43:03.216971 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.217323 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.217715 #20761] INFO -- py3-201923-windows-10-1903: kdiff3: +I, [2020-03-06T13:43:03.218143 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.218505 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:03.218842 #20761] INFO -- py3-201923-windows-10-1903: Not Found +I, [2020-03-06T13:43:03.219204 #20761] INFO -- py3-201923-windows-10-1903: old: +I, [2020-03-06T13:43:03.219534 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.219926 #20761] INFO -- py3-201923-windows-10-1903: ID: 7zip +I, [2020-03-06T13:43:03.220322 #20761] INFO -- py3-201923-windows-10-1903: Function: pkg.installed +I, [2020-03-06T13:43:03.220632 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.220964 #20761] INFO -- py3-201923-windows-10-1903: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:43:03.221287 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:35.194300 +I, [2020-03-06T13:43:03.221607 #20761] INFO -- py3-201923-windows-10-1903: Duration: 12469.067 ms +I, [2020-03-06T13:43:03.221946 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.222297 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.222654 #20761] INFO -- py3-201923-windows-10-1903: 7zip: +I, [2020-03-06T13:43:03.223020 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.223337 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:03.223653 #20761] INFO -- py3-201923-windows-10-1903: 18.06.00.0 +I, [2020-03-06T13:43:03.224025 #20761] INFO -- py3-201923-windows-10-1903: old: +I, [2020-03-06T13:43:03.224354 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.224732 #20761] INFO -- py3-201923-windows-10-1903: ID: git +I, [2020-03-06T13:43:03.225116 #20761] INFO -- py3-201923-windows-10-1903: Function: pkg.installed +I, [2020-03-06T13:43:03.225419 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.225751 #20761] INFO -- py3-201923-windows-10-1903: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:43:03.226104 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:41:47.678870 +I, [2020-03-06T13:43:03.226412 #20761] INFO -- py3-201923-windows-10-1903: Duration: 24953.167 ms +I, [2020-03-06T13:43:03.226830 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.227299 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.227751 #20761] INFO -- py3-201923-windows-10-1903: git: +I, [2020-03-06T13:43:03.228224 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.228675 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:03.229171 #20761] INFO -- py3-201923-windows-10-1903: 2.23.0.windows.1 +I, [2020-03-06T13:43:03.229649 #20761] INFO -- py3-201923-windows-10-1903: old: +I, [2020-03-06T13:43:03.230130 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.230607 #20761] INFO -- py3-201923-windows-10-1903: ID: windows_environment.refresh.path +I, [2020-03-06T13:43:03.231101 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:03.231542 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.232005 #20761] INFO -- py3-201923-windows-10-1903: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:43:03.232452 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:42:12.647805 +I, [2020-03-06T13:43:03.232905 #20761] INFO -- py3-201923-windows-10-1903: Duration: 78.043 ms +I, [2020-03-06T13:43:03.233349 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.233812 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.239919 #20761] INFO -- py3-201923-windows-10-1903: windows_environment.refresh: +I, [2020-03-06T13:43:03.240416 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.240861 #20761] INFO -- py3-201923-windows-10-1903: PATH: +I, [2020-03-06T13:43:03.241940 #20761] INFO -- py3-201923-windows-10-1903: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:43:03.242341 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.242706 #20761] INFO -- py3-201923-windows-10-1903: ID: chocolatey.bootstrap +I, [2020-03-06T13:43:03.243034 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:03.243392 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.243800 #20761] INFO -- py3-201923-windows-10-1903: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:43:03.244136 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.244495 #20761] INFO -- py3-201923-windows-10-1903: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:43:03.244809 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.245175 #20761] INFO -- py3-201923-windows-10-1903: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:43:03.245541 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.245975 #20761] INFO -- py3-201923-windows-10-1903: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:43:03.246331 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.246707 #20761] INFO -- py3-201923-windows-10-1903: Installing chocolatey on this machine +I, [2020-03-06T13:43:03.246997 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.247366 #20761] INFO -- py3-201923-windows-10-1903: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:43:03.247769 #20761] INFO -- py3-201923-windows-10-1903: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:43:03.248072 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.248490 #20761] INFO -- py3-201923-windows-10-1903: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:43:03.248830 #20761] INFO -- py3-201923-windows-10-1903: before you can use choco. +I, [2020-03-06T13:43:03.249187 #20761] INFO -- py3-201923-windows-10-1903: Restricting write permissions to Administrators +I, [2020-03-06T13:43:03.249496 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.249834 #20761] INFO -- py3-201923-windows-10-1903: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:43:03.250147 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.250545 #20761] INFO -- py3-201923-windows-10-1903: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:43:03.250896 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.251285 #20761] INFO -- py3-201923-windows-10-1903: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:43:03.251599 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.251937 #20761] INFO -- py3-201923-windows-10-1903: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:43:03.252294 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.252652 #20761] INFO -- py3-201923-windows-10-1903: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:43:03.253025 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.253400 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.253687 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.254025 #20761] INFO -- py3-201923-windows-10-1903: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:43:03.254337 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.254649 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.254944 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.255368 #20761] INFO -- py3-201923-windows-10-1903: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:43:03.255736 #20761] INFO -- py3-201923-windows-10-1903: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:43:03.256098 #20761] INFO -- py3-201923-windows-10-1903: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:43:03.256590 #20761] INFO -- py3-201923-windows-10-1903: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:43:03.257057 #20761] INFO -- py3-201923-windows-10-1903: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:43:03.257561 #20761] INFO -- py3-201923-windows-10-1903: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:43:03.257980 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.258528 #20761] INFO -- py3-201923-windows-10-1903: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:43:03.259058 #20761] INFO -- py3-201923-windows-10-1903: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:43:03.259472 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.259831 #20761] INFO -- py3-201923-windows-10-1903: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:43:03.260214 #20761] INFO -- py3-201923-windows-10-1903: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:43:03.260572 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.260929 #20761] INFO -- py3-201923-windows-10-1903: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:43:03.261324 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.261671 #20761] INFO -- py3-201923-windows-10-1903: Run choco /? for a list of functions. +I, [2020-03-06T13:43:03.262017 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.262351 #20761] INFO -- py3-201923-windows-10-1903: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:43:03.262645 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.263049 #20761] INFO -- py3-201923-windows-10-1903: first prior to using choco. +I, [2020-03-06T13:43:03.263358 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.263764 #20761] INFO -- py3-201923-windows-10-1903: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:43:03.264131 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.264470 #20761] INFO -- py3-201923-windows-10-1903: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:43:03.264989 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:42:12.725848 +I, [2020-03-06T13:43:03.265373 #20761] INFO -- py3-201923-windows-10-1903: Duration: 26375.7 ms +I, [2020-03-06T13:43:03.265733 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.266149 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.266502 #20761] INFO -- py3-201923-windows-10-1903: chocolatey.bootstrap: +I, [2020-03-06T13:43:03.266870 #20761] INFO -- py3-201923-windows-10-1903: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:43:03.267247 #20761] INFO -- py3-201923-windows-10-1903: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:43:03.267692 #20761] INFO -- py3-201923-windows-10-1903: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:43:03.268237 #20761] INFO -- py3-201923-windows-10-1903: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:43:03.268757 #20761] INFO -- py3-201923-windows-10-1903: Installing chocolatey on this machine +I, [2020-03-06T13:43:03.269273 #20761] INFO -- py3-201923-windows-10-1903: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:43:03.269807 #20761] INFO -- py3-201923-windows-10-1903: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:43:03.270309 #20761] INFO -- py3-201923-windows-10-1903: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:43:03.270809 #20761] INFO -- py3-201923-windows-10-1903: before you can use choco. +I, [2020-03-06T13:43:03.271287 #20761] INFO -- py3-201923-windows-10-1903: Restricting write permissions to Administrators +I, [2020-03-06T13:43:03.271804 #20761] INFO -- py3-201923-windows-10-1903: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:43:03.272310 #20761] INFO -- py3-201923-windows-10-1903: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:43:03.272829 #20761] INFO -- py3-201923-windows-10-1903: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:43:03.273328 #20761] INFO -- py3-201923-windows-10-1903: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:43:03.273844 #20761] INFO -- py3-201923-windows-10-1903: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:43:03.274312 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.274813 #20761] INFO -- py3-201923-windows-10-1903: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:43:03.275287 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.275802 #20761] INFO -- py3-201923-windows-10-1903: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:43:03.276304 #20761] INFO -- py3-201923-windows-10-1903: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:43:03.276819 #20761] INFO -- py3-201923-windows-10-1903: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:43:03.277253 #20761] INFO -- py3-201923-windows-10-1903: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:43:03.277613 #20761] INFO -- py3-201923-windows-10-1903: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:43:03.277964 #20761] INFO -- py3-201923-windows-10-1903: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:43:03.278317 #20761] INFO -- py3-201923-windows-10-1903: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:43:03.278684 #20761] INFO -- py3-201923-windows-10-1903: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:43:03.279080 #20761] INFO -- py3-201923-windows-10-1903: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:43:03.279437 #20761] INFO -- py3-201923-windows-10-1903: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:43:03.279761 #20761] INFO -- py3-201923-windows-10-1903: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:43:03.280100 #20761] INFO -- py3-201923-windows-10-1903: Run choco /? for a list of functions. +I, [2020-03-06T13:43:03.280442 #20761] INFO -- py3-201923-windows-10-1903: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:43:03.280753 #20761] INFO -- py3-201923-windows-10-1903: first prior to using choco. +I, [2020-03-06T13:43:03.281203 #20761] INFO -- py3-201923-windows-10-1903: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:43:03.281596 #20761] INFO -- py3-201923-windows-10-1903: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:43:03.281936 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.282314 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:43:03.282626 #20761] INFO -- py3-201923-windows-10-1903: Function: chocolatey.installed +I, [2020-03-06T13:43:03.282951 #20761] INFO -- py3-201923-windows-10-1903: Name: notepadplusplus +I, [2020-03-06T13:43:03.283276 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.283568 #20761] INFO -- py3-201923-windows-10-1903: Comment: +I, [2020-03-06T13:43:03.283895 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:42:39.101548 +I, [2020-03-06T13:43:03.288136 #20761] INFO -- py3-201923-windows-10-1903: Duration: 12014.798 ms +I, [2020-03-06T13:43:03.288612 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.289007 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.289339 #20761] INFO -- py3-201923-windows-10-1903: notepadplusplus: +I, [2020-03-06T13:43:03.289691 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.290041 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:03.290373 #20761] INFO -- py3-201923-windows-10-1903: - 7.8.5 +I, [2020-03-06T13:43:03.290774 #20761] INFO -- py3-201923-windows-10-1903: old: +I, [2020-03-06T13:43:03.291145 #20761] INFO -- py3-201923-windows-10-1903: notepadplusplus.install: +I, [2020-03-06T13:43:03.291523 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.291888 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:03.292238 #20761] INFO -- py3-201923-windows-10-1903: - 7.8.5 +I, [2020-03-06T13:43:03.292573 #20761] INFO -- py3-201923-windows-10-1903: old: +I, [2020-03-06T13:43:03.292913 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.293237 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:43:03.293669 #20761] INFO -- py3-201923-windows-10-1903: Function: chocolatey.installed +I, [2020-03-06T13:43:03.294082 #20761] INFO -- py3-201923-windows-10-1903: Name: windirstat +I, [2020-03-06T13:43:03.294405 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.294732 #20761] INFO -- py3-201923-windows-10-1903: Comment: +I, [2020-03-06T13:43:03.295070 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:42:51.116346 +I, [2020-03-06T13:43:03.295380 #20761] INFO -- py3-201923-windows-10-1903: Duration: 5015.586 ms +I, [2020-03-06T13:43:03.295762 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.296141 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.296518 #20761] INFO -- py3-201923-windows-10-1903: windirstat: +I, [2020-03-06T13:43:03.296858 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.297173 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:03.297517 #20761] INFO -- py3-201923-windows-10-1903: - 1.1.2.20161210 +I, [2020-03-06T13:43:03.297881 #20761] INFO -- py3-201923-windows-10-1903: old: +I, [2020-03-06T13:43:03.298233 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.298684 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:43:03.299145 #20761] INFO -- py3-201923-windows-10-1903: Function: dism.feature_installed +I, [2020-03-06T13:43:03.299506 #20761] INFO -- py3-201923-windows-10-1903: Name: TelnetClient +I, [2020-03-06T13:43:03.299851 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.300169 #20761] INFO -- py3-201923-windows-10-1903: Comment: Installed TelnetClient +I, [2020-03-06T13:43:03.300500 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:42:56.131932 +I, [2020-03-06T13:43:03.300863 #20761] INFO -- py3-201923-windows-10-1903: Duration: 6062.588 ms +I, [2020-03-06T13:43:03.301261 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.301662 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.302005 #20761] INFO -- py3-201923-windows-10-1903: feature: +I, [2020-03-06T13:43:03.302337 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.302669 #20761] INFO -- py3-201923-windows-10-1903: new: +I, [2020-03-06T13:43:03.302981 #20761] INFO -- py3-201923-windows-10-1903: TelnetClient +I, [2020-03-06T13:43:03.303303 #20761] INFO -- py3-201923-windows-10-1903: pid: +I, [2020-03-06T13:43:03.303658 #20761] INFO -- py3-201923-windows-10-1903: 4796 +I, [2020-03-06T13:43:03.304071 #20761] INFO -- py3-201923-windows-10-1903: retcode: +I, [2020-03-06T13:43:03.304451 #20761] INFO -- py3-201923-windows-10-1903: 0 +I, [2020-03-06T13:43:03.304801 #20761] INFO -- py3-201923-windows-10-1903: stderr: +I, [2020-03-06T13:43:03.305114 #20761] INFO -- py3-201923-windows-10-1903: stdout: +I, [2020-03-06T13:43:03.305435 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.305769 #20761] INFO -- py3-201923-windows-10-1903: ID: windows.module.system.reboot +I, [2020-03-06T13:43:03.306074 #20761] INFO -- py3-201923-windows-10-1903: Function: module.run +I, [2020-03-06T13:43:03.306435 #20761] INFO -- py3-201923-windows-10-1903: Result: True +I, [2020-03-06T13:43:03.306802 #20761] INFO -- py3-201923-windows-10-1903: Comment: system.reboot: True +I, [2020-03-06T13:43:03.307104 #20761] INFO -- py3-201923-windows-10-1903: Started: 10:43:02.194520 +I, [2020-03-06T13:43:03.307408 #20761] INFO -- py3-201923-windows-10-1903: Duration: 219.274 ms +I, [2020-03-06T13:43:03.307721 #20761] INFO -- py3-201923-windows-10-1903: Changes: +I, [2020-03-06T13:43:03.308022 #20761] INFO -- py3-201923-windows-10-1903: ---------- +I, [2020-03-06T13:43:03.308361 #20761] INFO -- py3-201923-windows-10-1903: system.reboot: +I, [2020-03-06T13:43:03.308743 #20761] INFO -- py3-201923-windows-10-1903: True +I, [2020-03-06T13:43:03.309093 #20761] INFO -- py3-201923-windows-10-1903: +I, [2020-03-06T13:43:03.309412 #20761] INFO -- py3-201923-windows-10-1903: Summary for local +I, [2020-03-06T13:43:03.309704 #20761] INFO -- py3-201923-windows-10-1903: ------------- +I, [2020-03-06T13:43:03.310003 #20761] INFO -- py3-201923-windows-10-1903: Succeeded: 25 (changed=25) +I, [2020-03-06T13:43:03.310324 #20761] INFO -- py3-201923-windows-10-1903: Failed: 0 +I, [2020-03-06T13:43:03.310638 #20761] INFO -- py3-201923-windows-10-1903: ------------- +I, [2020-03-06T13:43:03.311012 #20761] INFO -- py3-201923-windows-10-1903: Total states run: 25 +I, [2020-03-06T13:43:03.311339 #20761] INFO -- py3-201923-windows-10-1903: Total run time: 118.296 s +I, [2020-03-06T13:43:03.333483 #20761] INFO -- py3-201923-windows-10-1903: Downloading files from +I, [2020-03-06T13:43:03.480273 #20761] INFO -- py3-201923-windows-10-1903: Finished converging (2m33.98s). +I, [2020-03-06T13:43:03.480471 #20761] INFO -- py3-201923-windows-10-1903: -----> Setting up ... +I, [2020-03-06T13:43:03.483118 #20761] INFO -- py3-201923-windows-10-1903: Finished setting up (0m0.00s). +I, [2020-03-06T13:43:03.483357 #20761] INFO -- py3-201923-windows-10-1903: -----> Verifying ... +I, [2020-03-06T13:43:04.529992 #20761] INFO -- py3-201923-windows-10-1903: Loaded default +I, [2020-03-06T13:43:57.279632 #20761] INFO -- py3-201923-windows-10-1903: Finished verifying (0m53.79s). +I, [2020-03-06T13:43:57.279782 #20761] INFO -- py3-201923-windows-10-1903: Finished testing (4m26.92s). +I, [2020-03-06T13:43:57.281319 #20761] INFO -- py3-201923-windows-10-1903: -----> Destroying ... +I, [2020-03-06T13:44:05.778656 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:44:07.479302 #20761] INFO -- py3-201923-windows-10-1903: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:44:08.083481 #20761] INFO -- py3-201923-windows-10-1903: Vagrant instance destroyed. +I, [2020-03-06T13:44:08.084606 #20761] INFO -- py3-201923-windows-10-1903: Finished destroying (0m10.80s). diff --git a/test/results/py3-201923-windows-10-1903.log b/test/results/py3-201923-windows-10-1903.log new file mode 100644 index 0000000..c5210b8 --- /dev/null +++ b/test/results/py3-201923-windows-10-1903.log @@ -0,0 +1,1093 @@ +Fri Mar 6 13:39:12 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +Author: Peter Mudd +Date: Fri Mar 6 12:43:24 2020 -0500 + + feat: support saltstack 3000 +CURRENT BRANCH COMMIT ID +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +CURRENT RELEASE TAG +v1.0.0 +-----> Starting Test Kitchen (v2.3.4) +-----> Cleaning up any prior instances of +-----> Destroying ... + Finished destroying (0m0.00s). +-----> Testing +-----> Creating ... + Bringing machine 'default' up with 'virtualbox' provider... + ==> default: Cloning VM... + ==> default: Matching MAC address for NAT networking... + ==> default: Checking if box 'StefanScherer/windows_10' version '2020.01.15' is up to date... + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1903-af69d486-642f-4038-8272-01d15e5e4a8d + ==> default: Clearing any previously set network interfaces... + ==> default: Preparing network interfaces based on configuration... + default: Adapter 1: nat + ==> default: Forwarding ports... + default: 3389 (guest) => 3389 (host) (adapter 1) + default: 5985 (guest) => 55985 (host) (adapter 1) + default: 5986 (guest) => 55986 (host) (adapter 1) + default: 22 (guest) => 2222 (host) (adapter 1) + ==> default: Running 'pre-boot' VM customizations... + ==> default: Booting VM... + ==> default: Waiting for machine to boot. This may take a few minutes... + default: WinRM address: 127.0.0.1:55985 + default: WinRM username: vagrant + default: WinRM execution_time_limit: PT2H + default: WinRM transport: negotiate + ==> default: Machine booted and ready! + ==> default: Checking for guest additions in VM... + default: The guest additions on this VM do not match the installed version of + default: VirtualBox! In most cases this is fine, but in rare cases it can + default: prevent things such as shared folders from working properly. If you see + default: shared folder errors, please make sure the guest additions within the + default: virtual machine match the version of VirtualBox you have installed on + default: your host and reload your VM. + default: + default: Guest Additions Version: 6.0.10 + default: VirtualBox Version: 6.1 + ==> default: Mounting shared folders... + default: /results => /mnt/c/tmp/results + ==> default: Machine not provisioned because `--no-provision` is specified. + [WinRM] Established + + Vagrant instance created. + Finished creating (0m59.14s). +-----> Converging ... + Preparing files for transfer + Preparing salt-minion + Preparing pillars into /srv/pillar + pillars-from-files is deprecated in favor of pillars_from_files + Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula + Preparing state_top + Preparing scripts into /etc/salt/scripts + + + Directory: C:\ + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:40 AM temp + Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + Installing Salt minion + Starting the Salt minion service + Salt minion successfully installed + You asked for latest and you have 2019.2.3 installed, sweet! + + + + + Directory: C:\Users\vagrant\AppData\Local\Temp + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:40 AM kitchen + + + Transferring files to + c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + At line:1 char:131 + + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException + + FullyQualifiedErrorId : NativeCommandError + + + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + + + local: + ---------- + ID: windows.state.system.hostname.saltstack1 + Function: system.hostname + Name: saltstack1 + Result: True + Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot + Started: 10:41:04.025952 + Duration: 90.324 ms + Changes: + ---------- + hostname: + saltstack1 + ---------- + ID: windows.state.system.computer_desc.description + Function: system.computer_desc + Name: Saltstack Computer Description + Result: True + Comment: Computer description successfully changed to 'Saltstack Computer Description' + Started: 10:41:04.116276 + Duration: 2704.202 ms + Changes: + ---------- + new: + Saltstack Computer Description + old: + ---------- + ID: windows.state.timezone.system.America/New_York + Function: timezone.system + Name: America/New_York + Result: True + Comment: Set timezone America/New_York + Started: 10:41:06.834966 + Duration: 15.8 ms + Changes: + ---------- + timezone: + America/New_York + ---------- + ID: windows.module.environ.items + Function: module.run + Result: True + Comment: environ.items: Success + Started: 10:41:06.866310 + Duration: 0.0 ms + Changes: + ---------- + environ.items: + ---------- + ALLUSERSPROFILE: + C:\ProgramData + APPDATA: + C:\Users\vagrant\AppData\Roaming + COMMONPROGRAMFILES: + C:\Program Files\Common Files + COMMONPROGRAMFILES(X86): + C:\Program Files (x86)\Common Files + COMMONPROGRAMW6432: + C:\Program Files\Common Files + COMPUTERNAME: + VAGRANT-10 + COMSPEC: + C:\Windows\system32\cmd.exe + DRIVERDATA: + C:\Windows\System32\Drivers\DriverData + HOMEDRIVE: + C: + HOMEPATH: + \Users\vagrant + LOCALAPPDATA: + C:\Users\vagrant\AppData\Local + LOGONSERVER: + \\VAGRANT-10 + NUMBER_OF_PROCESSORS: + 2 + ONEDRIVE: + C:\Users\vagrant\OneDrive + OS: + Windows_NT + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 + PATHEXT: + .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL + PROCESSOR_ARCHITECTURE: + AMD64 + PROCESSOR_IDENTIFIER: + Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_LEVEL: + 6 + PROCESSOR_REVISION: + 8e0c + PROGRAMDATA: + C:\ProgramData + PROGRAMFILES: + C:\Program Files + PROGRAMFILES(X86): + C:\Program Files (x86) + PROGRAMW6432: + C:\Program Files + PROMPT: + $P$G + PSMODULEPATH: + C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules + PUBLIC: + C:\Users\Public + PYTHON: + C:\salt\bin\python.exe + SALTDIR: + C:\salt + SCRIPT: + C:\salt\bin\Scripts\salt-call + SYSTEMDRIVE: + C: + SYSTEMROOT: + C:\Windows + TEMP: + C:\Users\vagrant\AppData\Local\Temp + TMP: + C:\Users\vagrant\AppData\Local\Temp + USERDOMAIN: + VAGRANT-10 + USERDOMAIN_ROAMINGPROFILE: + VAGRANT-10 + USERNAME: + vagrant + USERPROFILE: + C:\Users\vagrant + WINDIR: + C:\Windows + ---------- + ID: windows.module.user.current + Function: module.run + Result: True + Comment: user.current: VAGRANT-10\vagrant + Started: 10:41:06.866310 + Duration: 16.183 ms + Changes: + ---------- + user.current: + VAGRANT-10\vagrant + ---------- + ID: windows.module.status.uptime + Function: module.run + Result: True + Comment: status.uptime: 0:01:16.898124 + Started: 10:41:06.882493 + Duration: 30.537 ms + Changes: + ---------- + status.uptime: + 0:01:16.898124 + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection + Function: cmd.run + Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run + Started: 10:41:06.913030 + Duration: 1751.62 ms + Changes: + ---------- + pid: + 4608 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet + Function: cmd.run + Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run + Started: 10:41:08.664650 + Duration: 1530.11 ms + Changes: + ---------- + pid: + 864 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run + Started: 10:41:10.194760 + Duration: 1472.363 ms + Changes: + ---------- + pid: + 4456 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run + Started: 10:41:11.667123 + Duration: 1606.025 ms + Changes: + ---------- + pid: + 6016 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal + Function: cmd.run + Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run + Started: 10:41:13.273148 + Duration: 1562.132 ms + Changes: + ---------- + pid: + 1112 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:41:14.850757 + Duration: 7781.415 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:41:22.632172 + Duration: 218.284 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: manually.update_git_repo-ng + Function: archive.extracted + Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + Result: True + Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs + Started: 10:41:22.850456 + Duration: 750.232 ms + Changes: + ---------- + directories_created: + - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ + extracted_files: + - salt-winrepo-ng-master/ + - salt-winrepo-ng-master/.gitignore + - salt-winrepo-ng-master/.travis.yml + - salt-winrepo-ng-master/.travis/ + - salt-winrepo-ng-master/.travis/requirements.txt + - salt-winrepo-ng-master/.travis/tests.py + - salt-winrepo-ng-master/7zip.sls + - salt-winrepo-ng-master/LICENSE + - salt-winrepo-ng-master/README.md + - salt-winrepo-ng-master/_config.yml + - salt-winrepo-ng-master/activeperl_x64.sls + - salt-winrepo-ng-master/activeperl_x86.sls + - salt-winrepo-ng-master/adobeair.sls + - salt-winrepo-ng-master/adobereader-dc-classic.sls + - salt-winrepo-ng-master/adobereader-xi.sls + - salt-winrepo-ng-master/adobereader.sls + - salt-winrepo-ng-master/adobeshockwaveplayer.sls + - salt-winrepo-ng-master/adv-ip-scanner.sls + - salt-winrepo-ng-master/adv-port-scanner.sls + - salt-winrepo-ng-master/advancedlogging.sls + - salt-winrepo-ng-master/anydesk-msi.sls + - salt-winrepo-ng-master/anydesk.sls + - salt-winrepo-ng-master/applicationrequestrouting.sls + - salt-winrepo-ng-master/aspnet-mvc1.sls + - salt-winrepo-ng-master/atom.sls + - salt-winrepo-ng-master/audacity.sls + - salt-winrepo-ng-master/auditbeat/ + - salt-winrepo-ng-master/auditbeat/init.sls + - salt-winrepo-ng-master/auditbeat/install.cmd + - salt-winrepo-ng-master/auditbeat/install.ps1 + - salt-winrepo-ng-master/auditbeat/remove.cmd + - salt-winrepo-ng-master/autohotkey.sls + - salt-winrepo-ng-master/autoit.sls + - salt-winrepo-ng-master/autopsy.sls + - salt-winrepo-ng-master/awscli.sls + - salt-winrepo-ng-master/azuredatastudio.sls + - salt-winrepo-ng-master/bandizip.sls + - salt-winrepo-ng-master/belarc-advisor.sls + - salt-winrepo-ng-master/bginfo4x.sls + - salt-winrepo-ng-master/bitnami-nginxstack.sls + - salt-winrepo-ng-master/bitvise.sls + - salt-winrepo-ng-master/blender.sls + - salt-winrepo-ng-master/bootracer.sls + - salt-winrepo-ng-master/bulk_extractor.sls + - salt-winrepo-ng-master/bulkrenameutility.sls + - salt-winrepo-ng-master/ccleaner-slim.sls + - salt-winrepo-ng-master/ccleaner.sls + - salt-winrepo-ng-master/cdburnerxp.sls + - salt-winrepo-ng-master/cdroller.sls + - salt-winrepo-ng-master/check-mk-agent-msi.sls + - salt-winrepo-ng-master/check-mk-agent.sls + - salt-winrepo-ng-master/chocolatey/ + - salt-winrepo-ng-master/chocolatey/init.sls + - salt-winrepo-ng-master/chocolatey/install.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.ps1 + - salt-winrepo-ng-master/chrome-rdp.sls + - salt-winrepo-ng-master/chrome.sls + - salt-winrepo-ng-master/clamav.sls + - salt-winrepo-ng-master/clamwin.sls + - salt-winrepo-ng-master/classicshell.sls + - salt-winrepo-ng-master/clink.sls + - salt-winrepo-ng-master/conemu.sls + - salt-winrepo-ng-master/cpu-z.sls + - salt-winrepo-ng-master/curl.sls + - salt-winrepo-ng-master/cyberduck-cli.sls + - salt-winrepo-ng-master/cyberduck-msi.sls + - salt-winrepo-ng-master/cyberduck.sls + - salt-winrepo-ng-master/defraggler.sls + - salt-winrepo-ng-master/docs/ + - salt-winrepo-ng-master/docs/ReadMe.md + - salt-winrepo-ng-master/dotnet.sls + - salt-winrepo-ng-master/dropbox.sls + - salt-winrepo-ng-master/duplicati.sls + - salt-winrepo-ng-master/dvdstyler.sls + - salt-winrepo-ng-master/echo-desktop.sls + - salt-winrepo-ng-master/eea.sls + - salt-winrepo-ng-master/emet.sls + - salt-winrepo-ng-master/emsisoft-anti-malware.sls + - salt-winrepo-ng-master/eraser.sls + - salt-winrepo-ng-master/erlang/ + - salt-winrepo-ng-master/erlang/init.sls + - salt-winrepo-ng-master/erlang/install.cmd + - salt-winrepo-ng-master/evernote.sls + - salt-winrepo-ng-master/fiddler.sls + - salt-winrepo-ng-master/filebeat/ + - salt-winrepo-ng-master/filebeat/init.sls + - salt-winrepo-ng-master/filebeat/install.cmd + - salt-winrepo-ng-master/filebeat/install.ps1 + - salt-winrepo-ng-master/filebeat/remove.cmd + - salt-winrepo-ng-master/filehippo-app-manager.sls + - salt-winrepo-ng-master/filezilla.sls + - salt-winrepo-ng-master/firefox-esr_x64.sls + - salt-winrepo-ng-master/firefox-esr_x86.sls + - salt-winrepo-ng-master/firefox_x64.sls + - salt-winrepo-ng-master/firefox_x86.sls + - salt-winrepo-ng-master/functionbeat/ + - salt-winrepo-ng-master/functionbeat/init.sls + - salt-winrepo-ng-master/functionbeat/install.cmd + - salt-winrepo-ng-master/functionbeat/install.ps1 + - salt-winrepo-ng-master/functionbeat/remove.cmd + - salt-winrepo-ng-master/gedit.sls + - salt-winrepo-ng-master/gimp.sls + - salt-winrepo-ng-master/git-extensions.sls + - salt-winrepo-ng-master/git.sls + - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls + - salt-winrepo-ng-master/gnucash.sls + - salt-winrepo-ng-master/golang.sls + - salt-winrepo-ng-master/goodsync.sls + - salt-winrepo-ng-master/gow.sls + - salt-winrepo-ng-master/gpg4win-light.sls + - salt-winrepo-ng-master/gpg4win-vanilla.sls + - salt-winrepo-ng-master/gpg4win/ + - salt-winrepo-ng-master/gpg4win/init.sls + - salt-winrepo-ng-master/gpg4win/silent.ini + - salt-winrepo-ng-master/graylog-collector-sidecar.sls + - salt-winrepo-ng-master/grepwin.sls + - salt-winrepo-ng-master/gvim.sls + - salt-winrepo-ng-master/handbrake.sls + - salt-winrepo-ng-master/heartbeat/ + - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp + - salt-winrepo-ng-master/heartbeat/init.sls + - salt-winrepo-ng-master/heartbeat/install.cmd + - salt-winrepo-ng-master/heartbeat/install.ps1 + - salt-winrepo-ng-master/heartbeat/remove.cmd + - salt-winrepo-ng-master/hipchat.sls + - salt-winrepo-ng-master/hostsfileeditor.sls + - salt-winrepo-ng-master/hwinfo.sls + - salt-winrepo-ng-master/ice.sls + - salt-winrepo-ng-master/icecast.sls + - salt-winrepo-ng-master/icloud.sls + - salt-winrepo-ng-master/iismediaservices.sls + - salt-winrepo-ng-master/influx-capacitor.sls + - salt-winrepo-ng-master/inkscape.sls + - salt-winrepo-ng-master/intellij-community.sls + - salt-winrepo-ng-master/intellij-ultimate.sls + - salt-winrepo-ng-master/internet-evidence-finder.sls + - salt-winrepo-ng-master/irfanview-plugins.sls + - salt-winrepo-ng-master/irfanview.sls + - salt-winrepo-ng-master/isapirewrite-lite.sls + - salt-winrepo-ng-master/itunes.sls + - salt-winrepo-ng-master/jdk8.sls + - salt-winrepo-ng-master/jre.sls + - salt-winrepo-ng-master/jre8.sls + - salt-winrepo-ng-master/jungledisk-server-management.sls + - salt-winrepo-ng-master/jungledisk-server.sls + - salt-winrepo-ng-master/jungledisk-workgroup.sls + - salt-winrepo-ng-master/kdiff3.sls + - salt-winrepo-ng-master/keepass-2x.sls + - salt-winrepo-ng-master/keepass.sls + - salt-winrepo-ng-master/lastpass.sls + - salt-winrepo-ng-master/lazarus.sls + - salt-winrepo-ng-master/libreoffice.sls + - salt-winrepo-ng-master/logparser.sls + - salt-winrepo-ng-master/maas360bootanalyzer.sls + - salt-winrepo-ng-master/malwarebytes.sls + - salt-winrepo-ng-master/mariadb.sls + - salt-winrepo-ng-master/mercurial.sls + - salt-winrepo-ng-master/messageanalyzer.sls + - salt-winrepo-ng-master/metricbeat/ + - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp + - salt-winrepo-ng-master/metricbeat/init.sls + - salt-winrepo-ng-master/metricbeat/install.cmd + - salt-winrepo-ng-master/metricbeat/install.ps1 + - salt-winrepo-ng-master/metricbeat/remove.cmd + - salt-winrepo-ng-master/microsoft-build-tools.sls + - salt-winrepo-ng-master/mikogo.sls + - salt-winrepo-ng-master/miktex-basic.sls + - salt-winrepo-ng-master/mongodb.sls + - salt-winrepo-ng-master/ms-mbsa.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls + - salt-winrepo-ng-master/mucommander.sls + - salt-winrepo-ng-master/mysql-essential.sls + - salt-winrepo-ng-master/mysql-installer-community.sls + - salt-winrepo-ng-master/mysql-workbench.sls + - salt-winrepo-ng-master/never10.sls + - salt-winrepo-ng-master/newrelic-infra.sls + - salt-winrepo-ng-master/nextcloud-client.sls + - salt-winrepo-ng-master/nmap.sls + - salt-winrepo-ng-master/node.js-lts.sls + - salt-winrepo-ng-master/node.js.sls + - salt-winrepo-ng-master/nomacs.sls + - salt-winrepo-ng-master/npp.sls + - salt-winrepo-ng-master/nsclient.sls + - salt-winrepo-ng-master/nsis.sls + - salt-winrepo-ng-master/ntp.sls + - salt-winrepo-ng-master/nunit-console.sls + - salt-winrepo-ng-master/nxlog.sls + - salt-winrepo-ng-master/octopus-tentacle.sls + - salt-winrepo-ng-master/openlp.sls + - salt-winrepo-ng-master/openoffice.sls + - salt-winrepo-ng-master/openvpn.sls + - salt-winrepo-ng-master/osquery.sls + - salt-winrepo-ng-master/ossec-agent.sls + - salt-winrepo-ng-master/owncloud.sls + - salt-winrepo-ng-master/packetbeat/ + - salt-winrepo-ng-master/packetbeat/init.sls + - salt-winrepo-ng-master/packetbeat/install.cmd + - salt-winrepo-ng-master/packetbeat/install.ps1 + - salt-winrepo-ng-master/packetbeat/remove.cmd + - salt-winrepo-ng-master/pandoc.sls + - salt-winrepo-ng-master/parallels-client-15.sls + - salt-winrepo-ng-master/pass4win.sls + - salt-winrepo-ng-master/passware-kit-agent.sls + - salt-winrepo-ng-master/passware-kit-forensic.sls + - salt-winrepo-ng-master/patchmypc-free.sls + - salt-winrepo-ng-master/pdf24creator.sls + - salt-winrepo-ng-master/pdfcreator.sls + - salt-winrepo-ng-master/peazip.sls + - salt-winrepo-ng-master/pgadmin4.sls + - salt-winrepo-ng-master/pgina.sls + - salt-winrepo-ng-master/pidgin.sls + - salt-winrepo-ng-master/postgresql.sls + - salt-winrepo-ng-master/powerbi-desktop.sls + - salt-winrepo-ng-master/powershell-core.sls + - salt-winrepo-ng-master/prometheus-wmi-exporter.sls + - salt-winrepo-ng-master/putty.sls + - salt-winrepo-ng-master/pycharm-pro/ + - salt-winrepo-ng-master/pycharm-pro/init.sls + - salt-winrepo-ng-master/pycharm-pro/silent.config + - salt-winrepo-ng-master/python2_x64.sls + - salt-winrepo-ng-master/python2_x86.sls + - salt-winrepo-ng-master/python3_x64.sls + - salt-winrepo-ng-master/python3_x86.sls + - salt-winrepo-ng-master/qemu.sls + - salt-winrepo-ng-master/queueexplorerpro.sls + - salt-winrepo-ng-master/quicktime.sls + - salt-winrepo-ng-master/rabbitmq.sls + - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls + - salt-winrepo-ng-master/rakudo-star_x64.sls + - salt-winrepo-ng-master/rasclient.sls + - salt-winrepo-ng-master/rdcman.sls + - salt-winrepo-ng-master/rocketchat.sls + - salt-winrepo-ng-master/rubyinstaller_x64.sls + - salt-winrepo-ng-master/rubyinstaller_x86.sls + - salt-winrepo-ng-master/salt-minion-py2.sls + - salt-winrepo-ng-master/salt-minion-py3.sls + - salt-winrepo-ng-master/sandboxie.sls + - salt-winrepo-ng-master/scaleout.sls + - salt-winrepo-ng-master/secunia.psi.sls + - salt-winrepo-ng-master/sensu.sls + - salt-winrepo-ng-master/sharpdevelop.sls + - salt-winrepo-ng-master/skitch.sls + - salt-winrepo-ng-master/skype-msi.sls + - salt-winrepo-ng-master/skype.sls + - salt-winrepo-ng-master/slack-machine-msi.sls + - salt-winrepo-ng-master/slack-user-msi.sls + - salt-winrepo-ng-master/slack.sls + - salt-winrepo-ng-master/smartmontools.sls + - salt-winrepo-ng-master/snmptools.sls + - salt-winrepo-ng-master/soapui.sls + - salt-winrepo-ng-master/software-informer.sls + - salt-winrepo-ng-master/sourcetree.sls + - salt-winrepo-ng-master/spybot-anti-beacon.sls + - salt-winrepo-ng-master/spybot.sls + - salt-winrepo-ng-master/sscserv-free.sls + - salt-winrepo-ng-master/stayawake/ + - salt-winrepo-ng-master/stayawake/init.sls + - salt-winrepo-ng-master/stayawake/install.cmd + - salt-winrepo-ng-master/steam.sls + - salt-winrepo-ng-master/stellarium.sls + - salt-winrepo-ng-master/strawberryperl_x64.sls + - salt-winrepo-ng-master/strawberryperl_x86.sls + - salt-winrepo-ng-master/stunnel.sls + - salt-winrepo-ng-master/subinacl.sls + - salt-winrepo-ng-master/sumatrapdf.sls + - salt-winrepo-ng-master/svn.sls + - salt-winrepo-ng-master/teamviewer.sls + - salt-winrepo-ng-master/teamviewer_host.sls + - salt-winrepo-ng-master/teracopy.sls + - salt-winrepo-ng-master/texmaker.sls + - salt-winrepo-ng-master/texniccenter.sls + - salt-winrepo-ng-master/texstudio.sls + - salt-winrepo-ng-master/texworks.sls + - salt-winrepo-ng-master/thunderbird.sls + - salt-winrepo-ng-master/tightvnc.sls + - salt-winrepo-ng-master/todotxt.net.sls + - salt-winrepo-ng-master/todour.sls + - salt-winrepo-ng-master/tortoise-bzr.sls + - salt-winrepo-ng-master/tortoise-git.sls + - salt-winrepo-ng-master/tortoise-hg.sls + - salt-winrepo-ng-master/tortoise-svn.sls + - salt-winrepo-ng-master/truecrypt.sls + - salt-winrepo-ng-master/ultradefrag.sls + - salt-winrepo-ng-master/urlrewrite.sls + - salt-winrepo-ng-master/usbdlm.sls + - salt-winrepo-ng-master/vagrant.sls + - salt-winrepo-ng-master/vcforpython27.sls + - salt-winrepo-ng-master/vcxsrv.sls + - salt-winrepo-ng-master/verysleepy.sls + - salt-winrepo-ng-master/veyon.sls + - salt-winrepo-ng-master/virtualbox.sls + - salt-winrepo-ng-master/viscosity.sls + - salt-winrepo-ng-master/vivaldi.sls + - salt-winrepo-ng-master/vlc.sls + - salt-winrepo-ng-master/vs-community.sls + - salt-winrepo-ng-master/vs_remotetools_2017.sls + - salt-winrepo-ng-master/vscode.sls + - salt-winrepo-ng-master/vsee.sls + - salt-winrepo-ng-master/wamp-server-3.sls + - salt-winrepo-ng-master/wamp-stack.sls + - salt-winrepo-ng-master/webdeploy.sls + - salt-winrepo-ng-master/webplatforminstaller.sls + - salt-winrepo-ng-master/win-app-manager.sls + - salt-winrepo-ng-master/windirstat.sls + - salt-winrepo-ng-master/winhttpcertcfg.sls + - salt-winrepo-ng-master/winlogbeat/ + - salt-winrepo-ng-master/winlogbeat/init.sls + - salt-winrepo-ng-master/winlogbeat/install.cmd + - salt-winrepo-ng-master/winlogbeat/install.ps1 + - salt-winrepo-ng-master/winlogbeat/remove.cmd + - salt-winrepo-ng-master/winmerge.sls + - salt-winrepo-ng-master/winmtr.sls + - salt-winrepo-ng-master/winpcap.sls + - salt-winrepo-ng-master/winrar.sls + - salt-winrepo-ng-master/winscp.sls + - salt-winrepo-ng-master/wireshark.sls + - salt-winrepo-ng-master/wmi_provider/ + - salt-winrepo-ng-master/wmi_provider/README.md + - salt-winrepo-ng-master/wmi_provider/answer.txt + - salt-winrepo-ng-master/wmi_provider/init.sls + - salt-winrepo-ng-master/wmi_provider/majsetup.reg + - salt-winrepo-ng-master/wscc.sls + - salt-winrepo-ng-master/wufuc.sls + - salt-winrepo-ng-master/xampp.sls + - salt-winrepo-ng-master/xming.sls + - salt-winrepo-ng-master/yubikey-manager.sls + - salt-winrepo-ng-master/yubikey-personalization-tool.sls + - salt-winrepo-ng-master/zabbix-agent.sls + - salt-winrepo-ng-master/zipinstaller/ + - salt-winrepo-ng-master/zipinstaller/init.sls + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic + - salt-winrepo-ng-master/zoom.sls + ---------- + ID: rename-extract + Function: module.run + Result: True + Comment: file.rename: True + Started: 10:41:23.600688 + Duration: 0.0 ms + Changes: + ---------- + file.rename: + True + ---------- + ID: pkg.refresh_db + Function: module.run + Result: True + Comment: check_cmd determined the state succeeded + Started: 10:41:23.600688 + Duration: 6687.456 ms + Changes: + ---------- + pkg.refresh_db: + ---------- + failed: + 0 + success: + 298 + total: + 298 + ---------- + ID: kdiff3 + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: kdiff3 + Started: 10:41:30.288144 + Duration: 4890.989 ms + Changes: + ---------- + kdiff3: + ---------- + new: + Not Found + old: + ---------- + ID: 7zip + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:41:35.194300 + Duration: 12469.067 ms + Changes: + ---------- + 7zip: + ---------- + new: + 18.06.00.0 + old: + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 10:41:47.678870 + Duration: 24953.167 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: + ---------- + ID: windows_environment.refresh.path + Function: module.run + Result: True + Comment: windows_environment.refresh: Success + Started: 10:42:12.647805 + Duration: 78.043 ms + Changes: + ---------- + windows_environment.refresh: + ---------- + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + ---------- + ID: chocolatey.bootstrap + Function: module.run + Result: True + Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. + + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + + Downloading 7-Zip commandline tool prior to extraction. + + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + + Installing chocolatey on this machine + + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + + We are setting up the Chocolatey package repository. + + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + + + Creating Chocolatey folders if they do not already exist. + + + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + + You can call choco from anywhere, command line or powershell by typing choco. + + Run choco /? for a list of functions. + + You may need to shut down and restart powershell and/or consoles + + first prior to using choco. + + Ensuring chocolatey commands are on the path + + Ensuring chocolatey.nupkg is in the lib folder + Started: 10:42:12.725848 + Duration: 26375.7 ms + Changes: + ---------- + chocolatey.bootstrap: + Getting latest version of the Chocolatey package for download. + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + Downloading 7-Zip commandline tool prior to extraction. + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + Installing chocolatey on this machine + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + We are setting up the Chocolatey package repository. + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + Creating Chocolatey folders if they do not already exist. + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + You can call choco from anywhere, command line or powershell by typing choco. + Run choco /? for a list of functions. + You may need to shut down and restart powershell and/or consoles + first prior to using choco. + Ensuring chocolatey commands are on the path + Ensuring chocolatey.nupkg is in the lib folder + ---------- + ID: windows.system.packages.chocolatey.notepadplusplus + Function: chocolatey.installed + Name: notepadplusplus + Result: True + Comment: + Started: 10:42:39.101548 + Duration: 12014.798 ms + Changes: + ---------- + notepadplusplus: + ---------- + new: + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 + old: + ---------- + ID: windows.system.packages.chocolatey.windirstat + Function: chocolatey.installed + Name: windirstat + Result: True + Comment: + Started: 10:42:51.116346 + Duration: 5015.586 ms + Changes: + ---------- + windirstat: + ---------- + new: + - 1.1.2.20161210 + old: + ---------- + ID: windows.system.desktop.optional_features.installed.TelnetClient + Function: dism.feature_installed + Name: TelnetClient + Result: True + Comment: Installed TelnetClient + Started: 10:42:56.131932 + Duration: 6062.588 ms + Changes: + ---------- + feature: + ---------- + new: + TelnetClient + pid: + 4796 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.module.system.reboot + Function: module.run + Result: True + Comment: system.reboot: True + Started: 10:43:02.194520 + Duration: 219.274 ms + Changes: + ---------- + system.reboot: + True + + Summary for local + ------------- + Succeeded: 25 (changed=25) + Failed: 0 + ------------- + Total states run: 25 + Total run time: 118.296 s + Downloading files from + Finished converging (2m33.98s). +-----> Setting up ... + Finished setting up (0m0.00s). +-----> Verifying ... + Loaded default +`execution expired`, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 +`execution expired`, target may be rebooting after highstate. Remaining retries: 18 +INFO: Got pillar from the target minion using WinRM. + +Profile: SaltStack Windows Formula (default) +Version: (not specified) +Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 + + ✔ Operating System: + ✔ windows_10_enterprise_evaluation should include "windows" + ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled + ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed + ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey + ✔ Chocolatey package notepadplusplus should be installed + ✔ Chocolatey package windirstat should be installed + ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" + ↺ Windows Features: salt.formula.windows.system.server.features + ↺ Skipped control due to only_if condition: only supported on servers + ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap + ✔ Command: `choco` should exist + ✔ Windows Timezone: salt.states.timezone.system + ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set + ✔ Windows Optional Features: salt.states.win_dism.feature_installed + ✔ Windows Optional Feature: `TelnetClient` should be installed + ✔ Windows Computer Hostname: salt.states.win_system.hostname + ✔ System Information hostname should cmp == "saltstack1" + ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" + ✔ Windows Computer Description: salt.states.win_system.computer_desc + ✔ Powershell stdout should match "Saltstack Computer Description" + ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed + ✔ System Package Git should be installed + ✔ System Package 7-Zip should be installed + ✔ System Package 7-Zip version should cmp == "18.06.00.0" + ✔ System Package KDiff3 should be installed + + +Profile Summary: 9 successful controls, 0 control failures, 1 control skipped +Test Summary: 19 successful, 0 failures, 1 skipped + Finished verifying (0m53.79s). + Finished testing (4m26.92s). +-----> Destroying ... + ==> default: Forcing shutdown of VM... + ==> default: Destroying VM and associated drives... + Vagrant instance destroyed. + Finished destroying (0m10.80s). +-----> Test Kitchen is finished. (4m49.50s) +KITCHEN TEST EXIT CODE +0 diff --git a/test/results/py3-201923-windows-10-1903.salt.log b/test/results/py3-201923-windows-10-1903.salt.log new file mode 100755 index 0000000..4b84a77 --- /dev/null +++ b/test/results/py3-201923-windows-10-1903.salt.log @@ -0,0 +1,30159 @@ +2020-03-06 10:40:56,194 [salt.loader :747 ][DEBUG ][5796] Grains refresh requested. Refreshing grains. +2020-03-06 10:40:56,194 [salt.config :2190][DEBUG ][5796] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:40:56,194 [salt.config :2334][DEBUG ][5796] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:40:56,211 [salt.config :2190][DEBUG ][5796] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:41:01,428 [salt.pillar :57 ][DEBUG ][5796] Determining pillar cache +2020-03-06 10:41:01,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:01,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:01,491 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:41:01,491 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:41:01,506 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015200614929199219 +2020-03-06 10:41:01,506 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:41:01,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:41:01,506 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:01,521 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded confirm_top.confirm_top +2020-03-06 10:41:01,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded compound_match.match +2020-03-06 10:41:01,522 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5796] compound_match: vagrant-10 ? * +2020-03-06 10:41:01,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded glob_match.match +2020-03-06 10:41:01,522 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5796] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:41:01,522 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:41:01,522 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:41:01,537 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.015142202377319336 +2020-03-06 10:41:01,537 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 10:41:01,537 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 10:41:01,537 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:01,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:01,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:01,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded state.highstate +2020-03-06 10:41:01,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded direct_call.execute +2020-03-06 10:41:01,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded grains.get +2020-03-06 10:41:01,741 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded saltutil.is_running +2020-03-06 10:41:01,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded config.get +2020-03-06 10:41:01,772 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: test, ret: _|- +2020-03-06 10:41:01,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,022 [git.cmd :722 ][DEBUG ][5796] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:41:02,038 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,038 [salt.fileserver :502 ][DEBUG ][5796] Updating roots fileserver cache +2020-03-06 10:41:02,085 [salt.state :736 ][DEBUG ][5796] Gathering pillar data for state run +2020-03-06 10:41:02,099 [salt.state :750 ][DEBUG ][5796] Finished gathering pillar data for state run +2020-03-06 10:41:02,100 [salt.state :966 ][INFO ][5796] Loading fresh modules for state activity +2020-03-06 10:41:02,117 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:02,131 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:02,131 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:41:02,131 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:41:02,131 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:41:02,131 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,131 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:41:02,147 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:41:02,147 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:02,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,169 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,169 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.02145099639892578 +2020-03-06 10:41:02,169 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:41:02,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:41:02,178 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0014290809631347656 +2020-03-06 10:41:02,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded confirm_top.confirm_top +2020-03-06 10:41:02,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded compound_match.match +2020-03-06 10:41:02,178 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5796] compound_match: vagrant-10 ? * +2020-03-06 10:41:02,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded glob_match.match +2020-03-06 10:41:02,178 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5796] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:41:02,178 [salt.fileclient :1368][DEBUG ][5796] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:41:02,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded saltutil.sync_all +2020-03-06 10:41:02,178 [salt.loaded.int.module.saltutil:968 ][DEBUG ][5796] Syncing all +2020-03-06 10:41:02,178 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:41:02,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,210 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,210 [salt.utils.extmods:90 ][INFO ][5796] Syncing clouds for environment 'base' +2020-03-06 10:41:02,225 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_clouds, for base) +2020-03-06 10:41:02,225 [salt.fileclient :234 ][INFO ][5796] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:41:02,225 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,225 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:41:02,225 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:41:02,241 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,241 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,241 [salt.utils.extmods:90 ][INFO ][5796] Syncing beacons for environment 'base' +2020-03-06 10:41:02,241 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_beacons, for base) +2020-03-06 10:41:02,256 [salt.fileclient :234 ][INFO ][5796] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:41:02,256 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,256 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:41:02,256 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:41:02,272 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,288 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,288 [salt.utils.extmods:90 ][INFO ][5796] Syncing modules for environment 'base' +2020-03-06 10:41:02,288 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_modules, for base) +2020-03-06 10:41:02,288 [salt.fileclient :234 ][INFO ][5796] Caching directory '_modules/' for environment 'base' +2020-03-06 10:41:02,288 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,288 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:41:02,288 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:41:02,288 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:41:02,288 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,304 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:41:02,304 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:41:02,304 [salt.utils.extmods:119 ][INFO ][5796] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:41:02,304 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:41:02,336 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,336 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,336 [salt.utils.extmods:90 ][INFO ][5796] Syncing states for environment 'base' +2020-03-06 10:41:02,336 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_states, for base) +2020-03-06 10:41:02,336 [salt.fileclient :234 ][INFO ][5796] Caching directory '_states/' for environment 'base' +2020-03-06 10:41:02,336 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,336 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:41:02,336 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:41:02,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,366 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,366 [salt.utils.extmods:90 ][INFO ][5796] Syncing sdb for environment 'base' +2020-03-06 10:41:02,366 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_sdb, for base) +2020-03-06 10:41:02,366 [salt.fileclient :234 ][INFO ][5796] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:41:02,366 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,366 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:41:02,366 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:41:02,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,399 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,399 [salt.utils.extmods:90 ][INFO ][5796] Syncing grains for environment 'base' +2020-03-06 10:41:02,399 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_grains, for base) +2020-03-06 10:41:02,399 [salt.fileclient :234 ][INFO ][5796] Caching directory '_grains/' for environment 'base' +2020-03-06 10:41:02,399 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,399 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:41:02,399 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:41:02,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,428 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,428 [salt.utils.extmods:90 ][INFO ][5796] Syncing renderers for environment 'base' +2020-03-06 10:41:02,428 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_renderers, for base) +2020-03-06 10:41:02,428 [salt.fileclient :234 ][INFO ][5796] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:41:02,428 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,428 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:41:02,428 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:41:02,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,460 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,460 [salt.utils.extmods:90 ][INFO ][5796] Syncing returners for environment 'base' +2020-03-06 10:41:02,460 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_returners, for base) +2020-03-06 10:41:02,460 [salt.fileclient :234 ][INFO ][5796] Caching directory '_returners/' for environment 'base' +2020-03-06 10:41:02,460 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,460 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:41:02,460 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:41:02,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,491 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,491 [salt.utils.extmods:90 ][INFO ][5796] Syncing output for environment 'base' +2020-03-06 10:41:02,491 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_output, for base) +2020-03-06 10:41:02,491 [salt.fileclient :234 ][INFO ][5796] Caching directory '_output/' for environment 'base' +2020-03-06 10:41:02,491 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,491 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:41:02,491 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:41:02,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,522 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,522 [salt.utils.extmods:90 ][INFO ][5796] Syncing utils for environment 'base' +2020-03-06 10:41:02,522 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_utils, for base) +2020-03-06 10:41:02,522 [salt.fileclient :234 ][INFO ][5796] Caching directory '_utils/' for environment 'base' +2020-03-06 10:41:02,522 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,522 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:41:02,522 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:41:02,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,538 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,555 [salt.utils.extmods:90 ][INFO ][5796] Syncing log_handlers for environment 'base' +2020-03-06 10:41:02,555 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:41:02,555 [salt.fileclient :234 ][INFO ][5796] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:41:02,555 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,555 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:41:02,555 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:41:02,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,585 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,585 [salt.utils.extmods:90 ][INFO ][5796] Syncing proxy for environment 'base' +2020-03-06 10:41:02,585 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_proxy, for base) +2020-03-06 10:41:02,585 [salt.fileclient :234 ][INFO ][5796] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:41:02,585 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,585 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:41:02,585 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:41:02,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,600 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,600 [salt.utils.extmods:90 ][INFO ][5796] Syncing engines for environment 'base' +2020-03-06 10:41:02,616 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_engines, for base) +2020-03-06 10:41:02,616 [salt.fileclient :234 ][INFO ][5796] Caching directory '_engines/' for environment 'base' +2020-03-06 10:41:02,616 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,616 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:41:02,616 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:41:02,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,632 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,632 [salt.utils.extmods:90 ][INFO ][5796] Syncing thorium for environment 'base' +2020-03-06 10:41:02,632 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_thorium, for base) +2020-03-06 10:41:02,647 [salt.fileclient :234 ][INFO ][5796] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:41:02,647 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,647 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:41:02,647 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:41:02,665 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,678 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,678 [salt.utils.extmods:90 ][INFO ][5796] Syncing serializers for environment 'base' +2020-03-06 10:41:02,678 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_serializers, for base) +2020-03-06 10:41:02,678 [salt.fileclient :234 ][INFO ][5796] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:41:02,678 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,678 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:41:02,678 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:41:02,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,710 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,710 [salt.utils.extmods:90 ][INFO ][5796] Syncing matchers for environment 'base' +2020-03-06 10:41:02,710 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_matchers, for base) +2020-03-06 10:41:02,710 [salt.fileclient :234 ][INFO ][5796] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:41:02,710 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,710 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:41:02,710 [salt.utils.extmods:79 ][INFO ][5796] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:41:02,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:02,725 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:02,741 [salt.utils.extmods:90 ][INFO ][5796] Syncing pillar for environment 'base' +2020-03-06 10:41:02,741 [salt.utils.extmods:94 ][INFO ][5796] Loading cache from salt://_pillar, for base) +2020-03-06 10:41:02,741 [salt.fileclient :234 ][INFO ][5796] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:41:02,741 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:02,741 [salt.utils.extmods:109 ][DEBUG ][5796] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:41:02,741 [salt.state :1000][DEBUG ][5796] Refreshing modules... +2020-03-06 10:41:02,756 [salt.state :966 ][INFO ][5796] Loading fresh modules for state activity +2020-03-06 10:41:02,772 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:02,797 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:02,797 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:41:02,800 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:41:02,800 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:41:02,800 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:41:02,800 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,804 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:41:02,804 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:41:02,804 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:02,804 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:02,804 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:02,804 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:41:02,819 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,819 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:41:02,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:02,835 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:02,835 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:41:02,835 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,835 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,851 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:02,851 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:41:02,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:02,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:02,866 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:41:02,866 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:41:02,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:02,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:02,866 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:02,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,882 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:41:02,882 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:02,882 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:02,882 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:02,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,882 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:41:02,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded config.get +2020-03-06 10:41:02,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded grains.filter_by +2020-03-06 10:41:02,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.09341144561767578 +2020-03-06 10:41:02,897 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .states + - .modules + - .system +2020-03-06 10:41:02,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.states', '.modules', '.system'])]) +2020-03-06 10:41:02,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:02,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:41:02,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:41:02,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:41:02,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,913 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:41:02,913 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:41:02,913 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:02,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:41:02,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:41:02,928 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:41:02,928 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:02,928 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:41:02,973 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:02,973 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:02,975 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:02,975 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:02,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,006 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,006 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.0930180549621582 +2020-03-06 10:41:03,006 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.state.system.computer_desc.description: + system.computer_desc: + - name: Saltstack Computer Description + - require: + - windows.state.system.hostname.saltstack1 +windows.state.system.hostname.saltstack1: + system.hostname: + - name: saltstack1 +windows.state.timezone.system.America/New_York: + timezone.system: + - name: America/New_York + - utc: False + + + +2020-03-06 10:41:03,006 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) +2020-03-06 10:41:03,006 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,006 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:41:03,022 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:41:03,022 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:41:03,022 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,022 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:41:03,022 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:41:03,022 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,022 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:41:03,022 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:41:03,069 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,069 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,084 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,084 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,084 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,084 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,084 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,084 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,084 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,099 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,100 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,100 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,100 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,100 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.07817673683166504 +2020-03-06 10:41:03,100 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.module.environ.items: + module.run: + - environ.items: +windows.module.system.reboot: + module.run: + - system.reboot: + - timeout: 5 + - in_seconds: True + - only_on_pending_reboot: True + - wait_for_reboot: False + - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + - order: last +windows.module.user.current: + module.run: + - user.current: + - sam: True +windows.module.status.uptime: + module.run: + - status.uptime: + - human_readable: True + - require: + - windows.module.user.current + + +2020-03-06 10:41:03,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) +2020-03-06 10:41:03,116 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.015547513961791992 +2020-03-06 10:41:03,116 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:41:03,116 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:41:03,116 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:41:03,116 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:41:03,116 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,116 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:41:03,116 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:41:03,116 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,132 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,132 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,163 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,163 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.04741239547729492 +2020-03-06 10:41:03,163 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +# sls: windows.system windows system +# slspath: windows/system windows system +# sls: os_windows.desktop.features os_windows features +# slspath: os_windows/desktop os_windows desktop +include: + # - .settings + # + # - .dsc + # + - .packages + - .server + - .desktop + + +2020-03-06 10:41:03,178 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.packages', '.server', '.desktop'])]) +2020-03-06 10:41:03,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0005834102630615234 +2020-03-06 10:41:03,179 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:41:03,179 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:41:03,179 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:41:03,179 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:41:03,179 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,179 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:41:03,179 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:41:03,179 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,179 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .providers + - .appx + - .powershell + - .saltstack + - .chocolatey +2020-03-06 10:41:03,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) +2020-03-06 10:41:03,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,179 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:41:03,195 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:41:03,195 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:41:03,195 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:41:03,195 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,195 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:41:03,195 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:41:03,195 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,195 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,195 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .remove-provisioned-apps + +2020-03-06 10:41:03,195 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.remove-provisioned-apps'])]) +2020-03-06 10:41:03,195 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,195 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:41:03,195 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:41:03,210 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:41:03,210 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,210 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:41:03,210 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:41:03,210 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,210 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .removed + +2020-03-06 10:41:03,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.removed'])]) +2020-03-06 10:41:03,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,210 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:41:03,210 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:41:03,210 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:41:03,210 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,225 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:41:03,225 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:41:03,225 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,225 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,225 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,241 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,241 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,241 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,272 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.046927690505981445 +2020-03-06 10:41:03,272 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + + + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection: + cmd.run: + - name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet: + cmd.run: + - name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal: + cmd.run: + - name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}" + + + + + + + +2020-03-06 10:41:03,272 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) +2020-03-06 10:41:03,272 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,272 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:41:03,272 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:41:03,272 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:41:03,272 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:41:03,272 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,288 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:41:03,288 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:41:03,288 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,288 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,288 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .modules + - .framework + +2020-03-06 10:41:03,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.framework'])]) +2020-03-06 10:41:03,288 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,288 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:41:03,288 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:41:03,288 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:41:03,288 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:41:03,288 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,304 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:41:03,304 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:41:03,304 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,304 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .v4_5 + +2020-03-06 10:41:03,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.v4_5'])]) +2020-03-06 10:41:03,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,304 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:41:03,304 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:41:03,304 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:41:03,304 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:41:03,304 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,319 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:41:03,319 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:41:03,319 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,319 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,319 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .tls1_2 + +2020-03-06 10:41:03,319 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.tls1_2'])]) +2020-03-06 10:41:03,319 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,319 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:41:03,319 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:41:03,319 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:41:03,319 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,319 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:41:03,319 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:41:03,319 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,335 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,335 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,350 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,350 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,366 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,366 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,366 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.04705238342285156 +2020-03-06 10:41:03,366 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +# https://docs.microsoft.com/en-us/security/solving-tls1-problem +# https://blog.pauby.com/post/force-powershell-to-use-tls-1-2/ +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:64 +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:32 +# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - use_32bit_registry: true + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} +2020-03-06 10:41:03,366 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) +2020-03-06 10:41:03,382 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.015633821487426758 +2020-03-06 10:41:03,382 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:41:03,382 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:41:03,382 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:41:03,382 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:41:03,382 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,382 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:41:03,382 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:41:03,382 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,382 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,382 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:41:03,382 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:41:03,398 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.01603984832763672 +2020-03-06 10:41:03,398 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:41:03,398 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:41:03,398 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:41:03,398 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,398 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:41:03,398 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:41:03,398 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,398 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:41:03,398 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:41:03,414 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:41:03,414 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,414 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:41:03,414 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,428 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,428 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,428 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,444 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,460 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,460 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:41:03,460 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:41:03,460 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:41:03,460 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,475 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:41:03,539 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pkg.version +2020-03-06 10:41:03,539 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][5796] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:41:03,539 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][5796] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:41:03,539 [salt.loaded.int.module.win_pkg:935 ][INFO ][5796] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:41:03,539 [salt.loaded.int.module.win_pkg:954 ][INFO ][5796] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:41:03,553 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cp.cache_dir +2020-03-06 10:41:03,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded roots.envs +2020-03-06 10:41:03,569 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:41:03,569 [salt.fileclient :234 ][INFO ][5796] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:41:03,569 [salt.fileserver :159 ][DEBUG ][5796] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:41:03,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded reg.list_keys +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,585 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,600 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,600 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,600 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,600 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.2027904987335205 +2020-03-06 10:41:03,600 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +include: + - .windows_software_repository +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db +7zip: + pkg.installed: + - refresh_minion_env_path: False + - version: 18.06.00.0 + - require: + - pkg.refresh_db +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db +windows_environment.refresh.path: + module.run: + - windows_environment.refresh: + - onchanges: + + - pkg: git +2020-03-06 10:41:03,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:41:03,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,600 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:41:03,600 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:41:03,600 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:41:03,600 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,600 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:41:03,600 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:41:03,600 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,618 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.048564) +2020-03-06 10:41:03,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:03,632 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.031371116638183594 +2020-03-06 10:41:03,632 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +manually.update_git_repo-ng: + archive.extracted: + - name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + - source: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip + - skip_verify: True + - if_missing: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + +rename-extract: + module.run: + - file.rename: + - src: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng-master + - dst: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + - onchanges: + - manually.update_git_repo-ng + - onchanges_in: + - pkg.refresh_db + +pkg.refresh_db: + module.run: + - pkg.refresh_db: + - failhard: False + - check_cmd: + - dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + + - retry: + attempts: 10 + until: True + interval: 5 +2020-03-06 10:41:03,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) +2020-03-06 10:41:03,632 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,632 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:41:03,647 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:41:03,647 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:41:03,647 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:41:03,647 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,647 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:41:03,647 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:41:03,647 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,647 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:41:03,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:41:03,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,647 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:41:03,647 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:41:03,647 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:41:03,647 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,665 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:41:03,665 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:41:03,665 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,665 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,665 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,679 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,679 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,679 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,694 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,709 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.04453754425048828 +2020-03-06 10:41:03,709 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .bootstrap +windows.system.packages.chocolatey.notepadplusplus: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: notepadplusplus + +windows.system.packages.chocolatey.windirstat: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: windirstat + - version: 1.1.2.20161210 + +2020-03-06 10:41:03,709 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) +2020-03-06 10:41:03,709 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,709 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:41:03,709 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:41:03,709 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:41:03,709 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,725 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:41:03,725 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:41:03,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,725 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,725 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,742 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,742 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,742 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,742 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,756 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.04713940620422363 +2020-03-06 10:41:03,772 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +chocolatey.bootstrap: + module.run: + - chocolatey.bootstrap: + - unless: "where.exe chocolatey" + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + +2020-03-06 10:41:03,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) +2020-03-06 10:41:03,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,772 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:41:03,772 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:41:03,772 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:41:03,772 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:41:03,772 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,787 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:41:03,787 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:41:03,788 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,788 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .features + +2020-03-06 10:41:03,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.features'])]) +2020-03-06 10:41:03,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,788 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:41:03,788 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:41:03,788 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:41:03,788 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:41:03,788 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,788 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:41:03,788 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:41:03,788 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,788 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:41:03,805 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:41:03,805 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,805 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:41:03,805 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:41:03,805 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:41:03,805 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,805 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:41:03,805 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:41:03,805 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,820 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:41:03,820 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:41:03,820 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:41:03,820 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,820 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:41:03,820 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,820 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,835 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.06046652793884277 +2020-03-06 10:41:03,866 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +2020-03-06 10:41:03,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +{} +2020-03-06 10:41:03,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,866 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:41:03,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:41:03,882 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:41:03,882 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:41:03,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,882 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:41:03,882 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:41:03,882 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,882 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .packages + - .optional_features + +2020-03-06 10:41:03,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.optional_features'])]) +2020-03-06 10:41:03,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,882 [salt.fileclient :1072][DEBUG ][5796] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:41:03,882 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:41:03,882 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:41:03,882 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:41:03,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,898 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:41:03,898 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:41:03,898 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,898 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:03,898 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .feature_installed + +2020-03-06 10:41:03,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('include', ['.feature_installed'])]) +2020-03-06 10:41:03,898 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,898 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:41:03,898 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:41:03,898 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:41:03,898 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,913 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:41:03,913 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:41:03,913 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:03,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:41:03,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:41:03,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:41:03,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,913 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:41:03,928 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,928 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:41:03,944 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,944 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:41:03,944 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,944 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:41:03,944 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,944 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:41:03,944 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,944 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:41:03,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:41:03,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:41:03,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:41:03,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:41:03,960 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:41:03,978 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:03,978 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:41:03,978 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.06511569023132324 +2020-03-06 10:41:03,978 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.system.desktop.optional_features.installed.TelnetClient: + dism.feature_installed: + - name: TelnetClient + - onlyif: > + powershell -command "if ((Get-WindowsOptionalFeature -online | + Where-Object {($_.FeatureName -eq 'TelnetClient') + -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" + +2020-03-06 10:41:03,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) +2020-03-06 10:41:03,978 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:03,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cmd.run +2020-03-06 10:41:04,025 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded system.get_computer_desc +2020-03-06 10:41:04,025 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded system.computer_desc +2020-03-06 10:41:04,025 [salt.state :1819][INFO ][5796] Running state [saltstack1] at time 10:41:04.025952 +2020-03-06 10:41:04,025 [salt.state :1852][INFO ][5796] Executing state system.hostname for [saltstack1] +2020-03-06 10:41:04,025 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:41:04,039 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: vagrant-10 +2020-03-06 10:41:04,039 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5796] output: vagrant-10 +2020-03-06 10:41:04,039 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:41:04,039 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: vagrant-10 +2020-03-06 10:41:04,039 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5796] output: vagrant-10 +2020-03-06 10:41:04,055 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:41:04,116 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:41:04,116 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5796] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:41:04,116 [salt.state :320 ][INFO ][5796] {'hostname': 'saltstack1'} +2020-03-06 10:41:04,116 [salt.state :1997][INFO ][5796] Completed state [saltstack1] at time 10:41:04.116276 (duration_in_ms=90.324) +2020-03-06 10:41:04,116 [salt.state :1819][INFO ][5796] Running state [Saltstack Computer Description] at time 10:41:04.116276 +2020-03-06 10:41:04,116 [salt.state :1852][INFO ][5796] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:41:06,820 [salt.state :320 ][INFO ][5796] {'old': '', 'new': 'Saltstack Computer Description'} +2020-03-06 10:41:06,820 [salt.state :1997][INFO ][5796] Completed state [Saltstack Computer Description] at time 10:41:06.820478 (duration_in_ms=2704.202) +2020-03-06 10:41:06,834 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded platform.is_windows +2020-03-06 10:41:06,834 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded path.which +2020-03-06 10:41:06,834 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded timezone.get_zone +2020-03-06 10:41:06,834 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded timezone.system +2020-03-06 10:41:06,834 [salt.state :1819][INFO ][5796] Running state [America/New_York] at time 10:41:06.834966 +2020-03-06 10:41:06,834 [salt.state :1852][INFO ][5796] Executing state timezone.system for [America/New_York] +2020-03-06 10:41:06,834 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:41:06,850 [salt.state :320 ][INFO ][5796] {'timezone': 'America/New_York'} +2020-03-06 10:41:06,850 [salt.state :1997][INFO ][5796] Completed state [America/New_York] at time 10:41:06.850766 (duration_in_ms=15.8) +2020-03-06 10:41:06,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded module.run +2020-03-06 10:41:06,866 [salt.state :1819][INFO ][5796] Running state [windows.module.environ.items] at time 10:41:06.866310 +2020-03-06 10:41:06,866 [salt.state :1852][INFO ][5796] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:41:06,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded environ.items +2020-03-06 10:41:06,866 [salt.state :320 ][INFO ][5796] {'environ.items': {'PROGRAMW6432': 'C:\\Program Files', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'SYSTEMDRIVE': 'C:', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'OS': 'Windows_NT', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'HOMEDRIVE': 'C:', 'SALTDIR': 'C:\\salt', 'PROCESSOR_REVISION': '8e0c', 'PROGRAMFILES': 'C:\\Program Files', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'PROGRAMDATA': 'C:\\ProgramData', 'PROMPT': '$P$G', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMPUTERNAME': 'VAGRANT-10', 'USERDOMAIN': 'VAGRANT-10', 'SYSTEMROOT': 'C:\\Windows', 'NUMBER_OF_PROCESSORS': '2', 'LOGONSERVER': '\\\\VAGRANT-10', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PUBLIC': 'C:\\Users\\Public', 'WINDIR': 'C:\\Windows', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'USERPROFILE': 'C:\\Users\\vagrant', 'HOMEPATH': '\\Users\\vagrant', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'USERNAME': 'vagrant', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10'}} +2020-03-06 10:41:06,866 [salt.state :1997][INFO ][5796] Completed state [windows.module.environ.items] at time 10:41:06.866310 (duration_in_ms=0.0) +2020-03-06 10:41:06,866 [salt.state :1819][INFO ][5796] Running state [windows.module.user.current] at time 10:41:06.866310 +2020-03-06 10:41:06,866 [salt.state :1852][INFO ][5796] Executing state module.run for [windows.module.user.current] +2020-03-06 10:41:06,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded user.current +2020-03-06 10:41:06,882 [salt.state :320 ][INFO ][5796] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:41:06,882 [salt.state :1997][INFO ][5796] Completed state [windows.module.user.current] at time 10:41:06.882493 (duration_in_ms=16.183) +2020-03-06 10:41:06,882 [salt.state :1819][INFO ][5796] Running state [windows.module.status.uptime] at time 10:41:06.882493 +2020-03-06 10:41:06,882 [salt.state :1852][INFO ][5796] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:41:06,898 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded status.uptime +2020-03-06 10:41:06,898 [salt.state :320 ][INFO ][5796] {'status.uptime': '0:01:16.898124'} +2020-03-06 10:41:06,913 [salt.state :1997][INFO ][5796] Completed state [windows.module.status.uptime] at time 10:41:06.913030 (duration_in_ms=30.537) +2020-03-06 10:41:06,913 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cmd.run +2020-03-06 10:41:06,913 [salt.state :1819][INFO ][5796] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:41:06.913030 +2020-03-06 10:41:06,913 [salt.state :1852][INFO ][5796] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] +2020-03-06 10:41:06,913 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:07,444 [salt.loaded.int.states.cmd:343 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:07,444 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:08,664 [salt.state :320 ][INFO ][5796] {'stdout': '', 'stderr': '', 'retcode': 0, 'pid': 4608} +2020-03-06 10:41:08,664 [salt.state :1997][INFO ][5796] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:41:08.664650 (duration_in_ms=1751.62) +2020-03-06 10:41:08,664 [salt.state :1819][INFO ][5796] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:41:08.664650 +2020-03-06 10:41:08,678 [salt.state :1852][INFO ][5796] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] +2020-03-06 10:41:08,678 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:09,194 [salt.loaded.int.states.cmd:343 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:09,194 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:10,194 [salt.state :320 ][INFO ][5796] {'stdout': '', 'stderr': '', 'retcode': 0, 'pid': 864} +2020-03-06 10:41:10,194 [salt.state :1997][INFO ][5796] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:41:10.194760 (duration_in_ms=1530.11) +2020-03-06 10:41:10,194 [salt.state :1819][INFO ][5796] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:41:10.194760 +2020-03-06 10:41:10,194 [salt.state :1852][INFO ][5796] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] +2020-03-06 10:41:10,194 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:10,631 [salt.loaded.int.states.cmd:343 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:10,631 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:11,667 [salt.state :320 ][INFO ][5796] {'stdout': '', 'stderr': '', 'retcode': 0, 'pid': 4456} +2020-03-06 10:41:11,667 [salt.state :1997][INFO ][5796] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:41:11.667123 (duration_in_ms=1472.363) +2020-03-06 10:41:11,667 [salt.state :1819][INFO ][5796] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:41:11.667123 +2020-03-06 10:41:11,667 [salt.state :1852][INFO ][5796] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] +2020-03-06 10:41:11,667 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:12,195 [salt.loaded.int.states.cmd:343 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:12,195 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:13,273 [salt.state :320 ][INFO ][5796] {'stdout': '', 'stderr': '', 'retcode': 0, 'pid': 6016} +2020-03-06 10:41:13,273 [salt.state :1997][INFO ][5796] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:41:13.273148 (duration_in_ms=1606.025) +2020-03-06 10:41:13,273 [salt.state :1819][INFO ][5796] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:41:13.273148 +2020-03-06 10:41:13,273 [salt.state :1852][INFO ][5796] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] +2020-03-06 10:41:13,273 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:13,741 [salt.loaded.int.states.cmd:343 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:13,741 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:14,835 [salt.state :320 ][INFO ][5796] {'stdout': '', 'stderr': '', 'retcode': 0, 'pid': 1112} +2020-03-06 10:41:14,835 [salt.state :1997][INFO ][5796] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:41:14.835280 (duration_in_ms=1562.132) +2020-03-06 10:41:14,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded reg.present +2020-03-06 10:41:14,850 [salt.state :1819][INFO ][5796] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:41:14.850757 +2020-03-06 10:41:14,850 [salt.state :1852][INFO ][5796] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:41:15,663 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt.secret_key, ret: _|- +2020-03-06 10:41:15,663 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt:secret_key, ret: _|- +2020-03-06 10:41:16,163 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet.api_key, ret: _|- +2020-03-06 10:41:16,163 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet:api_key, ret: _|- +2020-03-06 10:41:16,507 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops.api_key, ret: _|- +2020-03-06 10:41:16,507 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops:api_key, ret: _|- +2020-03-06 10:41:20,428 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:41:20,428 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded apache.a2enconf +2020-03-06 10:41:20,428 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded apache.a2enmod +2020-03-06 10:41:20,445 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded apache.a2ensite +2020-03-06 10:41:20,460 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:41:20,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:41:20,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:41:20,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:41:20,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:41:20,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:41:20,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:41:20,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:41:20,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_asg.exists +2020-03-06 10:41:20,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cfn.exists +2020-03-06 10:41:20,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:41:20,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:41:20,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:41:20,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:41:20,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:41:20,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:41:20,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_dynamodb.exists +2020-03-06 10:41:20,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_ec2.get_key +2020-03-06 10:41:20,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elasticache.exists +2020-03-06 10:41:20,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:41:20,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elb.exists +2020-03-06 10:41:20,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:41:20,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_iam.get_user +2020-03-06 10:41:20,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_iam.role_exists +2020-03-06 10:41:20,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_iot.policy_exists +2020-03-06 10:41:20,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_kinesis.exists +2020-03-06 10:41:20,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_kms.describe_key +2020-03-06 10:41:20,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_lambda.function_exists +2020-03-06 10:41:20,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_asg.exists +2020-03-06 10:41:20,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_rds.exists +2020-03-06 10:41:20,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_route53.get_record +2020-03-06 10:41:20,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:41:20,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:41:20,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_secgroup.exists +2020-03-06 10:41:20,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_sns.exists +2020-03-06 10:41:20,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_sqs.exists +2020-03-06 10:41:20,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_vpc.exists +2020-03-06 10:41:20,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded bower.list +2020-03-06 10:41:20,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded chef.client +2020-03-06 10:41:20,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cimc.get_system_info +2020-03-06 10:41:20,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cisconso.set_data_value +2020-03-06 10:41:20,694 [salt.loader :1577][DEBUG ][5796] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:41:20,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded ddns.update +2020-03-06 10:41:20,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded chassis.cmd +2020-03-06 10:41:20,725 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:41:20,741 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:41:20,757 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:41:20,772 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:41:20,959 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded esxi.cmd +2020-03-06 10:41:21,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded git.version +2020-03-06 10:41:21,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded github.list_users +2020-03-06 10:41:21,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded glanceng.image_get +2020-03-06 10:41:21,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded elasticsearch.exists +2020-03-06 10:41:21,053 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: grafana_version, ret: _|- +2020-03-06 10:41:21,053 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: grafana_version, ret: _|- +2020-03-06 10:41:21,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded icinga2.generate_ticket +2020-03-06 10:41:21,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded ifttt.trigger_event +2020-03-06 10:41:21,100 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:41:21,116 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:41:21,132 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:41:21,147 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:41:21,163 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:41:21,178 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:41:21,210 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:41:21,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.domain_get +2020-03-06 10:41:21,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:41:21,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.group_get +2020-03-06 10:41:21,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.project_get +2020-03-06 10:41:21,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.role_get +2020-03-06 10:41:21,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.role_grant +2020-03-06 10:41:21,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.service_get +2020-03-06 10:41:21,241 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.user_get +2020-03-06 10:41:21,256 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:41:21,272 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:41:21,288 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:41:21,304 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:41:21,319 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:41:21,335 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:41:21,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:41:21,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:41:21,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:41:21,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:41:21,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded memcached.status +2020-03-06 10:41:21,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mongodb.db_exists +2020-03-06 10:41:21,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mongodb.user_exists +2020-03-06 10:41:21,382 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:41:21,382 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:41:21,382 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:41:21,382 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:41:21,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_networks +2020-03-06 10:41:21,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_subnets +2020-03-06 10:41:21,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_subnets +2020-03-06 10:41:21,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_subnets +2020-03-06 10:41:21,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded npm.list +2020-03-06 10:41:21,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nxos.cmd +2020-03-06 10:41:21,445 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:41:21,460 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:41:21,476 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded panos.commit +2020-03-06 10:41:21,476 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pdbedit.create +2020-03-06 10:41:21,476 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pecl.list +2020-03-06 10:41:21,819 [pip.vcs :60 ][DEBUG ][5796] Registered VCS backend: git +2020-03-06 10:41:21,882 [pip.vcs :60 ][DEBUG ][5796] Registered VCS backend: hg +2020-03-06 10:41:21,897 [pip.pep425tags :79 ][DEBUG ][5796] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:41:21,897 [pip.pep425tags :79 ][DEBUG ][5796] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:41:21,912 [pip.pep425tags :79 ][DEBUG ][5796] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:41:21,912 [pip.pep425tags :79 ][DEBUG ][5796] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:41:22,069 [pip.vcs :60 ][DEBUG ][5796] Registered VCS backend: svn +2020-03-06 10:41:22,084 [pip.vcs :60 ][DEBUG ][5796] Registered VCS backend: bzr +2020-03-06 10:41:22,178 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:41:22,178 [salt.loader :1577][DEBUG ][5796] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:41:22,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.cluster_exists +2020-03-06 10:41:22,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.user_exists +2020-03-06 10:41:22,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.create_extension +2020-03-06 10:41:22,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.group_create +2020-03-06 10:41:22,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.datadir_init +2020-03-06 10:41:22,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.language_create +2020-03-06 10:41:22,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.privileges_grant +2020-03-06 10:41:22,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.schema_exists +2020-03-06 10:41:22,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.tablespace_exists +2020-03-06 10:41:22,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.user_exists +2020-03-06 10:41:22,241 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:41:22,257 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded selinux.getenforce +2020-03-06 10:41:22,272 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded splunk.list_users +2020-03-06 10:41:22,272 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded splunk_search.get +2020-03-06 10:41:22,309 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:41:22,319 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded tomcat.status +2020-03-06 10:41:22,319 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded vagrant.version +2020-03-06 10:41:22,319 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded victorops.create_event +2020-03-06 10:41:22,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded win_iis.create_site +2020-03-06 10:41:22,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded win_servermanager.install +2020-03-06 10:41:22,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:41:22,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded wordpress.show_plugin +2020-03-06 10:41:22,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded x509.get_pem_entry +2020-03-06 10:41:22,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded xmpp.send_msg +2020-03-06 10:41:22,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded zk_concurrency.lock +2020-03-06 10:41:22,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded zonecfg.create +2020-03-06 10:41:22,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded zookeeper.create +2020-03-06 10:41:22,429 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:41:22,429 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:41:22,616 [salt.state :889 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:22,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded dacl.check_perms +2020-03-06 10:41:22,632 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5796] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:41:22,632 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5796] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:41:22,632 [salt.state :320 ][INFO ][5796] {'reg': {'Added': {'Entry': 'SystemDefaultTlsVersions', 'Value': 1, 'Owner': None, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Perms': {'Grant': None, 'Deny': None}}}} +2020-03-06 10:41:22,632 [salt.state :1997][INFO ][5796] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:41:22.632172 (duration_in_ms=7781.415) +2020-03-06 10:41:22,632 [salt.state :1819][INFO ][5796] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:41:22.632172 +2020-03-06 10:41:22,632 [salt.state :1852][INFO ][5796] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:41:22,648 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:41:22,648 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:41:22,850 [salt.state :889 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:22,850 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5796] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:41:22,850 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5796] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:41:22,850 [salt.state :320 ][INFO ][5796] {'reg': {'Added': {'Entry': 'SystemDefaultTlsVersions', 'Value': 1, 'Owner': None, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Perms': {'Grant': None, 'Deny': None}}}} +2020-03-06 10:41:22,850 [salt.state :1997][INFO ][5796] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:41:22.850456 (duration_in_ms=218.284) +2020-03-06 10:41:22,850 [salt.state :1819][INFO ][5796] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:41:22.850456 +2020-03-06 10:41:22,850 [salt.state :1852][INFO ][5796] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:41:22,850 [salt.utils.http :234 ][DEBUG ][5796] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:41:22,850 [salt.utils.http :235 ][DEBUG ][5796] Using backend: tornado +2020-03-06 10:41:23,388 [salt.loaded.int.states.archive:976 ][DEBUG ][5796] file.cached: {'changes': {'hash': {'old': None, 'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36'}}, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip'} +2020-03-06 10:41:23,393 [salt.loaded.int.states.archive:91 ][DEBUG ][5796] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:41:23,393 [salt.loaded.int.states.archive:996 ][DEBUG ][5796] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:41:23,428 [salt.loaded.int.module.win_file:1463][DEBUG ][5796] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:41:23,428 [salt.loaded.int.module.win_file:1463][DEBUG ][5796] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:41:23,428 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5796] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:41:23,444 [salt.loaded.int.states.archive:1247][DEBUG ][5796] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:41:23,600 [salt.loaded.int.states.archive:1543][DEBUG ][5796] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:41:23,600 [salt.state :320 ][INFO ][5796] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} +2020-03-06 10:41:23,600 [salt.state :1997][INFO ][5796] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:41:23.600688 (duration_in_ms=750.232) +2020-03-06 10:41:23,600 [salt.state :1819][INFO ][5796] Running state [rename-extract] at time 10:41:23.600688 +2020-03-06 10:41:23,600 [salt.state :1852][INFO ][5796] Executing state module.run for [rename-extract] +2020-03-06 10:41:23,600 [salt.state :320 ][INFO ][5796] {'file.rename': True} +2020-03-06 10:41:23,600 [salt.state :1997][INFO ][5796] Completed state [rename-extract] at time 10:41:23.600688 (duration_in_ms=0.0) +2020-03-06 10:41:23,600 [salt.state :1819][INFO ][5796] Running state [pkg.refresh_db] at time 10:41:23.600688 +2020-03-06 10:41:23,600 [salt.state :1852][INFO ][5796] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:41:23,600 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][5796] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:20.031047) +2020-03-06 10:41:23,600 [salt.loaded.int.module.win_pkg:935 ][INFO ][5796] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:41:23,600 [salt.loaded.int.module.win_pkg:954 ][INFO ][5796] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:41:23,600 [salt.fileclient :234 ][INFO ][5796] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:41:23,741 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:41:23,741 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:41:23,757 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:41:23,757 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,757 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:41:23,757 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:41:23,757 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:41:23,757 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:41:23,757 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,773 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:41:23,773 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:41:23,773 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:41:23,773 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:41:23,773 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,773 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:41:23,773 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,788 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,788 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:41:23,788 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:41:23,804 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,804 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:41:23,804 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:41:23,804 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:41:23,804 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:41:23,804 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,804 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:41:23,804 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,819 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,819 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:41:23,819 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,835 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,835 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:41:23,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:41:23,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:41:23,851 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:41:23,851 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,851 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:41:23,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:41:23,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:41:23,851 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:41:23,851 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:41:23,866 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,882 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,882 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:41:23,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,898 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,898 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:41:23,898 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,913 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,913 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:41:23,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,928 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,928 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:41:23,928 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,928 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,944 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:41:23,944 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,944 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,960 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,960 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:41:23,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,976 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,976 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:41:23,976 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,991 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:23,991 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:41:23,991 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,008 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,008 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:41:24,008 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,008 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,024 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:41:24,024 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,039 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,039 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:41:24,039 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,039 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,054 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:41:24,054 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,070 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:41:24,070 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:41:24,070 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:41:24,070 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:41:24,070 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,070 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:41:24,070 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,085 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,085 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:41:24,085 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:41:24,100 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:41:24,100 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:41:24,100 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,100 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:41:24,100 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:41:24,100 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:41:24,100 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:41:24,100 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,100 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:41:24,115 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,116 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,116 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:41:24,116 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,132 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,132 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:41:24,132 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,147 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,147 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:41:24,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:41:24,163 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:41:24,163 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,163 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:41:24,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:41:24,163 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:41:24,163 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:41:24,163 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,163 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:41:24,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,178 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,178 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:41:24,178 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:41:24,195 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:41:24,195 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,195 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:41:24,195 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:41:24,195 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:41:24,195 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:41:24,195 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,195 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:41:24,195 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:41:24,210 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:41:24,210 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:41:24,210 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,210 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:41:24,210 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:41:24,210 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:41:24,210 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:41:24,210 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,210 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,225 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:41:24,225 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,225 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:41:24,242 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:41:24,242 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:41:24,242 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:41:24,242 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,242 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:41:24,242 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:41:24,242 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:41:24,242 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,257 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,257 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:41:24,257 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,273 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,273 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:41:24,273 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,290 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:41:24,290 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:41:24,290 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:41:24,290 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:41:24,290 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,290 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:41:24,290 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:41:24,290 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,304 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,304 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:41:24,304 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,322 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,322 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:41:24,322 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,337 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:41:24,337 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:41:24,337 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:41:24,337 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:41:24,337 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,337 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:41:24,337 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:41:24,337 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:41:24,337 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:41:24,351 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,351 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:41:24,351 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:41:24,351 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:41:24,351 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:41:24,351 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,351 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,366 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,366 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:41:24,366 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:41:24,384 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:41:24,384 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:41:24,384 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,384 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:41:24,384 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:41:24,384 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:41:24,384 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:41:24,384 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,384 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,399 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:41:24,399 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,413 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,413 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:41:24,413 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,428 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,428 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:41:24,428 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,428 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,445 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:41:24,445 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,445 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,461 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:41:24,461 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,475 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,475 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:41:24,475 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,491 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,491 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:41:24,491 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,507 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,507 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:41:24,507 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,522 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,522 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:41:24,522 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,538 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,538 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:41:24,538 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,553 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:41:24,553 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:41:24,553 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:41:24,553 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:41:24,553 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,553 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:41:24,553 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:41:24,553 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:41:24,570 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:41:24,570 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,570 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:41:24,570 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:41:24,570 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:41:24,570 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:41:24,570 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,570 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:41:24,570 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,585 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,585 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:41:24,585 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,600 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,600 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:41:24,600 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,616 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,616 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:41:24,616 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:41:24,631 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,631 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:41:24,631 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:41:24,631 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:41:24,631 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:41:24,631 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,631 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:41:24,631 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:41:24,631 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:41:24,647 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:41:24,647 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,647 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:41:24,647 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:41:24,647 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:41:24,647 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:41:24,647 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,663 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,663 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:41:24,663 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,679 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,679 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:41:24,679 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,694 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,694 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:41:24,694 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,709 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,709 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:41:24,709 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,725 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,725 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:41:24,725 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,741 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,741 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:41:24,741 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,757 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:41:24,757 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:41:24,757 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:41:24,757 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:41:24,757 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,757 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:41:24,757 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:41:24,757 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:41:24,757 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:41:24,772 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,772 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:41:24,772 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:41:24,772 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:41:24,772 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:41:24,772 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,772 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:41:24,772 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:41:24,772 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:41:24,788 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:41:24,788 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,788 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:41:24,788 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:41:24,788 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:41:24,788 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:41:24,788 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,803 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,803 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:41:24,803 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,820 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:41:24,820 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:41:24,820 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:41:24,820 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:41:24,820 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,820 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:41:24,820 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,820 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,835 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,835 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,835 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,835 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,835 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,835 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,835 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:41:24,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:41:24,851 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:41:24,851 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,851 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:41:24,851 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:41:24,851 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:41:24,851 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:41:24,851 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,851 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:41:24,866 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,882 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:41:24,882 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,882 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,898 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,898 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,898 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,913 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,929 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,929 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:41:24,929 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,945 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,945 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:41:24,945 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,960 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:41:24,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:41:24,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:41:24,960 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:41:24,960 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,975 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:41:24,975 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:41:24,975 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:41:24,975 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:41:24,975 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,975 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:41:24,975 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,991 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:24,991 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:41:24,991 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:41:25,009 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,009 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:41:25,009 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:41:25,009 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:41:25,009 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:41:25,009 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,009 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,023 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,023 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:41:25,023 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:41:25,039 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:41:25,039 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:41:25,039 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,039 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:41:25,039 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:41:25,039 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:41:25,039 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:41:25,039 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,039 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,054 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,054 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:41:25,054 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:41:25,070 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:41:25,070 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:41:25,070 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,070 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:41:25,070 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:41:25,070 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:41:25,070 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:41:25,070 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,070 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,085 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:41:25,085 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,085 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,101 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,101 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:41:25,101 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:41:25,117 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:41:25,117 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:41:25,117 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,117 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:41:25,117 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:41:25,117 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:41:25,117 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:41:25,117 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,117 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,133 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:41:25,133 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,147 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,147 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:41:25,147 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,163 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,163 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,163 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:41:25,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:41:25,180 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:41:25,180 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:41:25,180 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,194 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:41:25,194 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:41:25,194 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:41:25,194 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:41:25,194 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,194 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,210 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:41:25,210 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,226 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,226 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:41:25,226 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,243 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:41:25,243 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:41:25,243 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:41:25,243 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:41:25,243 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,243 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:41:25,243 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,256 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,256 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:41:25,256 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,277 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:41:25,277 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:41:25,277 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:41:25,277 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:41:25,277 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,287 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,288 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:41:25,288 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,304 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:41:25,304 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:41:25,304 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:41:25,304 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:41:25,304 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,304 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,320 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:41:25,320 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,335 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,335 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:41:25,335 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,335 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:41:25,353 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:41:25,353 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:41:25,353 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:41:25,353 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,353 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:41:25,353 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:41:25,353 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:41:25,353 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:41:25,367 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,367 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:41:25,367 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:41:25,367 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:41:25,367 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:41:25,367 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,367 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,381 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:41:25,381 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,397 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:41:25,397 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:41:25,397 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:41:25,397 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:41:25,397 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,397 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:41:25,413 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:41:25,413 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:41:25,413 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:41:25,413 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,413 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:41:25,413 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:41:25,413 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:41:25,428 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:41:25,429 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,429 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:41:25,429 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:41:25,429 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:41:25,429 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:41:25,429 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,444 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:41:25,444 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:41:25,444 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:41:25,444 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:41:25,444 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,444 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:41:25,444 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:41:25,444 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:41:25,444 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:41:25,459 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,459 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:41:25,459 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:41:25,459 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:41:25,459 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:41:25,459 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,459 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,476 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:41:25,476 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,491 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:41:25,491 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:41:25,491 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:41:25,491 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:41:25,491 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,491 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:41:25,491 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:41:25,491 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:41:25,491 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:41:25,508 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,508 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:41:25,508 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:41:25,508 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:41:25,508 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:41:25,508 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,522 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:41:25,522 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:41:25,522 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:41:25,522 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:41:25,522 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,522 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:41:25,522 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:41:25,522 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:41:25,538 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:41:25,538 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,538 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:41:25,538 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:41:25,538 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:41:25,538 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:41:25,538 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,555 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:41:25,555 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:41:25,555 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:41:25,555 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:41:25,555 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,555 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:41:25,569 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:41:25,569 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:41:25,569 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:41:25,569 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,569 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:41:25,569 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:41:25,569 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:41:25,569 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:41:25,585 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,585 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:41:25,585 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:41:25,585 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:41:25,585 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:41:25,585 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,601 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:41:25,601 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:41:25,601 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:41:25,601 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:41:25,616 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,616 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:41:25,616 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:41:25,616 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:41:25,616 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:41:25,616 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,616 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:41:25,632 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:41:25,632 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:41:25,632 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:41:25,632 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,632 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:41:25,632 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:41:25,632 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:41:25,647 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:41:25,647 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,647 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:41:25,647 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:41:25,647 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:41:25,647 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:41:25,647 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,647 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:41:25,663 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:41:25,663 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:41:25,663 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:41:25,663 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,680 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:41:25,680 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:41:25,680 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:41:25,680 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:41:25,680 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,695 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:41:25,695 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:41:25,695 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:41:25,695 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:41:25,695 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,695 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,709 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:41:25,709 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,725 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:41:25,725 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:41:25,725 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:41:25,725 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:41:25,725 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,725 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,742 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:41:25,742 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,757 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:41:25,757 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:41:25,757 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:41:25,757 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:41:25,757 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,757 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:41:25,773 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:41:25,773 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:41:25,773 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:41:25,773 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,773 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:41:25,789 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:41:25,789 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:41:25,789 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:41:25,789 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,789 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:41:25,789 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:41:25,789 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:41:25,789 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:41:25,803 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,803 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:41:25,803 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:41:25,803 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:41:25,803 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:41:25,803 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,821 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:41:25,821 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:41:25,821 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:41:25,821 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:41:25,821 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,835 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:41:25,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:41:25,835 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:41:25,835 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:41:25,835 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,835 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:41:25,835 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:41:25,850 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:41:25,850 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:41:25,850 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,850 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:41:25,850 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:41:25,850 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:41:25,850 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:41:25,850 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:41:25,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:41:25,866 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:41:25,866 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:41:25,866 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,866 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:41:25,866 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:41:25,881 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:41:25,881 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:41:25,881 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,881 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:41:25,881 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:41:25,881 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:41:25,881 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:41:25,881 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,898 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:41:25,898 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:41:25,898 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:41:25,898 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:41:25,898 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,898 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:41:25,898 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:41:25,898 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:41:25,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:41:25,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,913 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:41:25,913 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:41:25,913 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:41:25,913 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:41:25,913 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,929 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:41:25,929 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:41:25,929 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:41:25,929 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:41:25,929 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,929 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:41:25,929 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:41:25,946 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:41:25,946 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:41:25,946 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,946 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:41:25,946 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:41:25,946 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:41:25,946 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:41:25,946 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,960 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:41:25,960 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:41:25,960 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:41:25,960 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:41:25,960 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,975 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:41:25,975 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:41:25,975 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:41:25,975 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:41:25,975 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,975 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:41:25,975 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:41:25,975 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:41:25,992 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:41:25,992 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:25,992 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:41:25,992 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:41:25,992 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:41:25,992 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:41:25,992 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,007 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:41:26,007 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:41:26,007 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:41:26,007 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:41:26,007 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,007 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:41:26,007 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:41:26,022 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:41:26,022 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:41:26,022 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,022 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:41:26,022 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:41:26,022 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:41:26,022 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:41:26,022 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,038 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,038 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:41:26,038 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,054 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:41:26,054 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:41:26,054 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:41:26,054 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:41:26,054 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,054 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:41:26,054 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:41:26,054 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:41:26,070 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:41:26,070 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,070 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:41:26,070 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:41:26,070 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:41:26,070 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:41:26,070 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,070 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,086 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:41:26,086 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,102 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:41:26,102 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:41:26,102 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:41:26,102 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:41:26,102 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,102 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:41:26,102 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:41:26,102 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:41:26,117 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:41:26,117 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,117 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:41:26,117 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:41:26,117 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:41:26,117 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:41:26,117 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,132 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,132 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:41:26,132 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,148 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:41:26,148 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:41:26,148 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:41:26,148 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:41:26,148 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,148 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:41:26,148 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:41:26,148 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:41:26,163 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:41:26,163 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,163 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:41:26,163 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:41:26,163 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:41:26,163 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:41:26,163 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,163 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,178 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:41:26,178 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,195 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:41:26,195 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:41:26,195 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:41:26,195 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:41:26,195 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,195 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:41:26,195 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:41:26,195 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:41:26,195 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,209 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,209 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:41:26,209 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:41:26,227 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,227 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:41:26,227 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:41:26,227 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:41:26,227 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:41:26,227 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,227 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,242 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:41:26,242 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,256 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:41:26,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:41:26,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:41:26,256 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:41:26,256 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,256 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:41:26,256 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:41:26,256 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:41:26,272 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:41:26,272 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,272 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:41:26,272 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:41:26,272 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:41:26,272 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:41:26,272 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,272 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,288 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:41:26,288 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,305 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,305 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:41:26,305 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,320 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,320 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:41:26,320 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,336 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:41:26,336 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:41:26,336 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:41:26,336 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:41:26,336 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,336 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:41:26,336 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:41:26,351 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:41:26,351 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:41:26,351 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,351 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:41:26,351 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:41:26,351 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:41:26,351 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:41:26,351 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,351 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,367 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:41:26,367 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,383 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,383 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:41:26,383 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,398 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:41:26,398 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:41:26,398 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:41:26,398 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:41:26,398 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,398 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:41:26,398 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:41:26,398 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:41:26,398 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:41:26,414 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,414 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:41:26,414 [salt.fileclient :1093][DEBUG ][5796] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:41:26,414 [salt.fileclient :1101][DEBUG ][5796] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:41:26,414 [salt.fileclient :1121][DEBUG ][5796] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:41:26,414 [salt.fileclient :1149][DEBUG ][5796] No dest file found +2020-03-06 10:41:26,414 [salt.fileclient :1230][INFO ][5796] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:41:26,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,429 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:41:26,429 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,444 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.015076637268066406 +2020-03-06 10:41:26,444 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +7zip: + + + '18.06.00.0': + + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.05.00.0': + + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.03.00.0': + + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.01.00.0': + + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '16.04.00.0': + + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.03.00.0': + + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.02.00.0': + + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.00.00.0': + + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '19.00.00.0': + + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:41:26,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,444 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,444 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:41:26,444 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,460 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.015177488327026367 +2020-03-06 10:41:26,460 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +activeperl_x64: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.24.3': + full_name: 'ActivePerl 5.24.3 Build 2404 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.26.1': + full_name: 'ActivePerl 5.26.1 Build 2601 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,460 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,460 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:41:26,460 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,460 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,477 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +activeperl_x86: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205' + + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,477 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,477 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,477 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,477 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:41:26,477 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,477 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,477 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +adobeair: + latest: + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + '30.0.0.107': + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,477 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,491 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:41:26,491 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,491 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,491 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +# to understand what is meant by "classic" see +# http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html + +adobereader-dc-classic: + + + '20.006.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20049': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20047': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20036': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20099': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20098': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20091': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20069': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20064': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20081': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20071': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20063': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20055': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20040': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,491 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,491 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,509 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,509 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,509 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:41:26,509 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,509 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,509 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +adobereader-xi: + '11.0.10': + full_name: 'Adobe Reader XI (11.0.10)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '11.0.6': + full_name: 'Adobe Reader XI (11.0.06)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,509 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,509 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,509 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,523 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,523 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:41:26,523 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,523 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,523 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +adobereader: + '10.1.4': + full_name: 'Adobe Reader X (10.1.4)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '9.5.0': + full_name: 'Adobe Reader 9.5.0' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,523 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,523 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,523 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,523 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,523 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:41:26,523 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,523 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,538 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +adobeshockwaveplayer: + latest: + full_name: 'Adobe Shockwave Player 12.2' + installer: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version + +2020-03-06 10:41:26,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,538 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:41:26,538 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,538 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: + + + +adv-ip-scanner: + + + '2.5.3784': + full_name: 'Advanced IP Scanner 2.5' + installer: 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-ip-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:41:26,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,554 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,554 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,554 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:41:26,554 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,554 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,554 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: + + + +adv-port-scanner: + + + '2.5.3680': + full_name: 'Advanced Port Scanner 2.5' + installer: 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-port-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:41:26,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,570 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:41:26,570 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,570 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +advancedlogging: + '1.0.0625.10': + full_name: 'IIS Advanced Logging 1.0' + + installer: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + uninstaller: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,584 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,584 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,584 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:41:26,584 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,584 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,584 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +# just 32-bit x86 msi package available + + + +anydesk-msi: + latest: + full_name: 'AnyDesk MSI' + installer: 'https://download.anydesk.com/AnyDesk.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.anydesk.com/AnyDesk.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,584 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,584 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,584 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,584 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,584 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:41:26,584 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.015607833862304688 +2020-03-06 10:41:26,600 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +# just 32-bit x86 installer available + + + + + + + +anydesk: + latest: + full_name: 'AnyDesk' + installer: 'https://download.anydesk.com/AnyDesk.exe' + install_flags: '--install "%ProgramFiles(x86)%\AnyDesk" --start-with-win --silent --create-shortcut' + uninstaller: 'https://download.anydesk.com/AnyDesk.exe' + uninstall_flags: '--silent --remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,600 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:41:26,600 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,600 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +applicationrequestrouting: + '3.0.1952': + full_name: 'Microsoft Application Request Routing 3.0' + + installer: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,616 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:41:26,616 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,616 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +aspnet-mvc1: + '1.0.0.0': + full_name: 'Microsoft ASP.NET MVC 1.0' + installer: 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi' + install_flags: '/qn /norestart' + uninstaller: '{A4394612-D02F-11DC-9BFF-D18556D89593}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,616 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:41:26,616 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,631 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: + +atom: + + '1.28.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.2': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.1': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.23.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,632 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,632 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:41:26,632 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,632 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,632 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: + + + + +audacity: + + '2.2.2': + full_name: 'Audacity 2.2.2' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Audacity 2.2.1' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,632 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,647 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:41:26,647 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,647 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: + + + +autohotkey: + '1.1.29.01': + full_name: 'AutoHotkey 1.1.29.01' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.27.06': + full_name: 'AutoHotkey 1.1.27.06' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.24.00': + full_name: 'AutoHotkey 1.1.24.00' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.22.09': + full_name: 'AutoHotkey 1.1.22.09' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,663 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:41:26,663 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,663 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: + +autoit: + + '3.3.14.5': + full_name: 'AutoIt v3.3.14.5' + installer: 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\AutoIt3\Uninstall.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,663 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:41:26,679 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,679 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +autopsy: + '4.3.0': + full_name: 'Autopsy' + + installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,679 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:41:26,679 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,679 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +awscli: + latest: + + full_name: 'AWS Command Line Interface' + installer: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + uninstaller: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.015429019927978516 +2020-03-06 10:41:26,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,694 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:41:26,694 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,694 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +# due to winrepo installer limitations you need to manually download the exe from +# https://go.microsoft.com/fwlink/?linkid=2049975 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... + + +azuredatastudio: + '1.3.9': + full_name: 'Azure Data Studio' +# installer: 'salt://win/repo-ng/azuredatastudio/azuredatastudio-windows-setup-1.3.9.exe' + installer: 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe' + uninstaller: 'C:\Program Files\Azure Data Studio\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,694 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:41:26,710 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,710 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +#the provider only offers the download of the latest version + + + +bandizip: + '6.21': + full_name: 'Bandizip' + installer: 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE' + install_flags: '/S' + uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,710 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,710 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:41:26,710 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,710 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +# just 32-bit x86 installer available + + + +belarc-advisor: + '8.6': + full_name: 'Belarc Advisor' + installer: 'http://downloads.belarc.com/advisor/advisorinstaller.exe' + install_flags: '/s' + uninstaller: '%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\Uninstall.exe' + uninstall_flags: '/s "%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\INSTALL.LOG"' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.01534891128540039 +2020-03-06 10:41:26,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,725 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:41:26,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,725 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +bginfo4x: + '3.3.6': + full_name: 'BGINFO4X for Windows 3.3.6' + installer: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + uninstaller: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,725 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:41:26,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,742 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.016416311264038086 +2020-03-06 10:41:26,742 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +# source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe +bitnami-nginxstack: + '1.8.0-0': + full_name: 'Bitnami Nginx Stack' + installer: 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe' + install_flags: '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"' + uninstaller: 'C:\Bitnami\nginxstack-1.8.0-0\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,742 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,742 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,742 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,742 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:41:26,742 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,742 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,742 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +bitvise: + + '8.32': + full_name: 'Bitvise SSH Server 8.32 (remove only)' + installer: 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe' + install_flags: '-acceptEULA -defaultInstance -startService' + uninstaller: '%ProgramFiles%\Bitvise SSH Server\uninst.exe' + uninstall_flags: '"Bitvise SSH Server" -unat' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:26,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,742 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,742 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,757 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:41:26,757 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,757 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +blender: + '2.78': + full_name: 'Blender' + + installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,757 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,757 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:41:26,771 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0012140274047851562 +2020-03-06 10:41:26,772 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +bootracer: + '6.50.0.450': + full_name: 'BootRacer' + installer: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + uninstaller: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# download zip archive manually and unpack msi to slat master winrepo-ng directory + +2020-03-06 10:41:26,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,772 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,772 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,772 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:41:26,772 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,772 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: + +bulkrenameutility: + + '3.0.0.1': + + full_name: 'Bulk Rename Utility 3.0.0.1 (64-bit)' + + installer: 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\Bulk Rename Utility\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:26,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,788 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:41:26,788 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,788 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +# just 32-bit x86 installer available + + + +bulk_extractor: + + '1.5.5': + full_name: 'Bulk Extractor 1.5.5' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.5\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Bulk Extractor 1.5.1' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.1\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Bulk Extractor 1.5.0' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.0\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,804 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:41:26,804 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,804 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,804 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: + +ccleaner-slim: + + '5.60': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup560_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.59': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup559_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.58': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup558_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup557_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,804 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,804 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,819 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,819 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:41:26,819 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,819 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: + +ccleaner: + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup557.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.44': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup544.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,819 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,819 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,834 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:41:26,835 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,835 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +cdburnerxp: + '4.5.6.5931': + full_name: 'CDBurnerXP' + installer: 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\CDBurnerXP\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,835 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:41:26,835 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,851 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +# just 32-bit x86 installer available + + + +cdroller: + '10.0': + full_name: 'CDRoller version 10.0' + installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe' + install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"' + uninstaller: '%PROGRAMFILES(x86)%\CDRoller\unins000.exe' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,851 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,851 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,851 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,851 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,851 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:41:26,851 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,851 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,851 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +check-mk-agent-msi: + + '1.5.0.3268': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2940': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2857': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8.1521': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8p26': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p5': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6.185': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p16': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p14': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p13': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p12': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:26,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.01536250114440918 +2020-03-06 10:41:26,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,866 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:41:26,866 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,866 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +check-mk-agent: + 'Not Found': + full_name: 'Check_MK Agent 1.2.8b4' + + installer: 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe' + + uninstaller: '%ProgramFiles%\check_mk\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,882 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:41:26,882 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,882 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +chrome-rdp: + latest: + full_name: 'Chrome Remote Desktop Host' + installer: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,882 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:41:26,882 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.014994621276855469 +2020-03-06 10:41:26,897 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +chrome: + latest: + full_name: 'Google Chrome' + installer: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:26,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,897 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:41:26,897 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,897 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +clamav: + '0.99.1': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + '0.98.7': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + +2020-03-06 10:41:26,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) +2020-03-06 10:41:26,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,913 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,913 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:41:26,913 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,913 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,913 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +# just 32-bit x86 installer available + + + +clamwin: + '0.98.7': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.6': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.5': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,913 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,913 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,913 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,913 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:41:26,913 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,929 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.015863656997680664 +2020-03-06 10:41:26,929 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +classicshell: + '4.2.4': + full_name: 'Classic Shell' + installer: 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe' + install_flags: '/passive' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,929 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,929 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,929 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,929 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:41:26,929 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,929 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,929 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +# just 32-bit x86 installer available + + + +clink: + '0.4.8': + full_name: 'Clink v0.4.8' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.8\clink_uninstall_0.4.8.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.7': + full_name: 'Clink v0.4.7' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.7\clink_uninstall_0.4.7.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.6': + full_name: 'Clink v0.4.6' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.6\clink_uninstall_0.4.6.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.4': + full_name: 'Clink v0.4.4' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.4\clink_uninstall_0.4.4.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# https://mridgers.github.io/clink/ + +2020-03-06 10:41:26,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,944 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.014677762985229492 +2020-03-06 10:41:26,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,944 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:41:26,944 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,944 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,944 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +conemu: + '11.160.5290': + + full_name: 'ConEmu 160529.x64' + install_flags: '/p:x64,adm /quiet /norestart' + uninstall_flags: '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart' + + installer: 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,944 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,944 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,944 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:41:26,959 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,960 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0009195804595947266 +2020-03-06 10:41:26,960 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +cpu-z: + + '1.86': + full_name: 'CPUID CPU-Z 1.86' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.85': + full_name: 'CPUID CPU-Z 1.85' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.84': + full_name: 'CPUID CPU-Z 1.84' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.83': + full_name: 'CPUID CPU-Z 1.83' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.82': + full_name: 'CPUID CPU-Z 1.82' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.81': + full_name: 'CPUID CPU-Z 1.81' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.80': + full_name: 'CPUID CPU-Z 1.80' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.79': + full_name: 'CPUID CPU-Z 1.79' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.78': + full_name: 'CPUID CPU-Z 1.78' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.77': + full_name: 'CPUID CPU-Z 1.77' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.76': + full_name: 'CPUID CPU-Z 1.76' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.75': + full_name: 'CPUID CPU-Z 1.75' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.74': + full_name: 'CPUID CPU-Z 1.74' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.73': + full_name: 'CPUID CPU-Z 1.73' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.72.1': + full_name: 'CPUID CPU-Z 1.72.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.71.1': + full_name: 'CPUID CPU-Z 1.71.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.70': + full_name: 'CPUID CPU-Z 1.70' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.69': + full_name: 'CPUID CPU-Z 1.69' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.68': + full_name: 'CPUID CPU-Z 1.68' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.67': + full_name: 'CPUID CPU-Z 1.67' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.66': + full_name: 'CPUID CPU-Z 1.66' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.65': + full_name: 'CPUID CPU-Z 1.65' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:26,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,960 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,960 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,960 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,975 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:41:26,975 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,975 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +curl: + '7.46.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.45.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.44.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.43.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# You need to download the win64 msi from website (Captcha protected) and place in your winrepo-ng on master +# http://www.confusedbycode.com/curl/#downloads +# Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, +# so you might not be calling the right 'curl' + +2020-03-06 10:41:26,975 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,975 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:41:26,991 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,991 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +cyberduck-cli: + '1.0.0.0': + full_name: 'Cyberduck CLI' + installer: 'http://dist.duck.sh/duck-5.0.3.20504.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ALLUSERSPROFILE%\Package Cache\{d7e97b39-df55-4b65-84b3-c24d1041948b}\duck-5.0.3.20504.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:26,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:26,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:26,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:26,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:26,991 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:41:26,991 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:26,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:26,991 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +# just 32-bit x86 installer available + + + + +cyberduck-msi: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:41:27,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,007 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,007 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,007 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:41:27,007 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,007 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +# just 32-bit x86 installer available + + + + +cyberduck: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:27,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.015378713607788086 +2020-03-06 10:41:27,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,022 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:41:27,022 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,022 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +# just 32-bit x86 installer available + + + +defraggler: + '2.20': + full_name: 'Defraggler' + installer: 'https://download.piriform.com/dfsetup220.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '2.18.945': + full_name: 'Defraggler 2.18' + installer: 'https://download.piriform.com/dfsetup218.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,038 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:41:27,038 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,038 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +dotnet: + '4.6.01590': + full_name: 'Microsoft .NET Framework 4.6.2' + installer: 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01590\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.01055': + full_name: 'Microsoft .NET Framework 4.6.1' + installer: 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01055\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.00081': + full_name: 'Microsoft .NET Framework 4.6' + installer: 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.00081\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.5.51209': + full_name: 'Microsoft .NET Framework 4.5.2' + installer: 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.5.51209\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,038 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:41:27,053 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,053 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +# just 32-bit x86 installer available + + + + + + + + +dropbox: + '69.4.102': + full_name: 'Dropbox' + installer: 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe' + install_flags: '/NOLAUNCH' + uninstaller: '%PROGRAMFILES(x86)%\Dropbox\Client\DropboxUninstaller.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,053 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:41:27,053 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,069 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +duplicati: + '1.3.4': + + full_name: 'Duplicati (x64)' + installer: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + uninstaller: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + refresh: False + cache_dir: False + use_scheduler: False + +2020-03-06 10:41:27,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) +2020-03-06 10:41:27,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,069 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:41:27,069 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,069 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +dvdstyler: + 'Not Found': + full_name: 'DVDStyler v2.9.6' + + installer: 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\DVDStyler\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,084 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,085 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:41:27,085 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,085 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,085 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +echo-desktop: + '3.0.4': + full_name: + Echo Desktop + installer: + https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe + install_flags: + /S + uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" + uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" + +2020-03-06 10:41:27,085 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) +2020-03-06 10:41:27,085 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,101 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:41:27,101 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,101 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,101 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +eea: +# '5.0.2260.1': +# full_name: 'ESET Endpoint Antivirus' +# +# installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# +# install_flags: '/qn ALLUSERS=1 /norestart' +# uninstall_flags: '/qn /norestart' +# msiexec: True +# locale: en_US +# reboot: False +# cache_dir: True +# use_scheduler: True + '6.3.2016.0': + full_name: 'ESET Endpoint Antivirus' + + installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + cache_dir: True + use_scheduler: True +# +# download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ +# for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB + +2020-03-06 10:41:27,101 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) +2020-03-06 10:41:27,101 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,101 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,101 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,101 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:41:27,101 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,116 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.015129566192626953 +2020-03-06 10:41:27,116 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +emet: + '5.5': + full_name: 'EMET 5.5' + installer: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + install_flags: 'ALLUSERS=1 /quiet /qn /norestart' + uninstaller: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,132 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,132 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,132 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:41:27,132 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,132 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +# just 32-bit x86 installer available + + + +# Source: https://www.emsisoft.com/en/ +emsisoft-anti-malware: + '9.0': + full_name: 'Emsisoft Anti-Malware' + installer: 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Emsisoft Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,148 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,148 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,148 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,148 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:41:27,148 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,148 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,148 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: + + +eraser: + + '6.2.2986': + full_name: 'Eraser 6.2.0.2986' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '6.2.2983': + full_name: 'Eraser 6.2.0.2983' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,148 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,163 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:41:27,163 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,163 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +evernote: + '6.9.7.6770': + full_name: 'Evernote v. 6.9.7' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.9.6.6729': + full_name: 'Evernote v. 6.9.6' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.5.4.4720': + full_name: 'Evernote v. 6.5.4' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,163 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,163 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:41:27,163 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.01617884635925293 +2020-03-06 10:41:27,179 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +# just 32-bit x86 installer available + + + +fiddler: + '5.0.20181.14850': + full_name: 'Fiddler' + installer: 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe' + install_flags: '/S /D=%ProgramFiles(x86)%\Fiddler' + uninstaller: '%ProgramFiles(x86)%\Fiddler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,179 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:41:27,179 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,179 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +# just 32-bit x86 installer available + + + +# Source: http://filehippo.com/download_update_checker/ +filehippo-app-manager: + '2.0': + full_name: 'FileHippo App Manager' + installer: 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\FileHippo.com\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download manually and place on master salt://win/repo-ng/filehippo-app-manager + +2020-03-06 10:41:27,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,195 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,195 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,195 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:41:27,195 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,195 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,211 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: + + +filezilla: + + '3.47.1': + full_name: 'FileZilla Client 3.47.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.47.0': + full_name: 'FileZilla Client 3.47.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.3': + full_name: 'FileZilla Client 3.46.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.2': + full_name: 'FileZilla Client 3.46.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.1': + full_name: 'FileZilla Client 3.46.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.0': + full_name: 'FileZilla Client 3.46.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.1': + full_name: 'FileZilla Client 3.45.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.0': + full_name: 'FileZilla Client 3.45.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.2': + full_name: 'FileZilla Client 3.44.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.1': + full_name: 'FileZilla Client 3.44.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.0': + full_name: 'FileZilla Client 3.44.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.43.0': + full_name: 'FileZilla Client 3.43.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.1': + full_name: 'FileZilla Client 3.42.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.0': + full_name: 'FileZilla Client 3.42.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.2': + full_name: 'FileZilla Client 3.41.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.1': + full_name: 'FileZilla Client 3.41.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.0': + full_name: 'FileZilla Client 3.41.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.40.0': + full_name: 'FileZilla Client 3.40.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.39.0': + full_name: 'FileZilla Client 3.39.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.1': + full_name: 'FileZilla Client 3.38.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.0': + full_name: 'FileZilla Client 3.38.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.4': + full_name: 'FileZilla Client 3.37.4' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.3': + full_name: 'FileZilla Client 3.37.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.1': + full_name: 'FileZilla Client 3.37.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.0': + full_name: 'FileZilla Client 3.37.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.36.0': + full_name: 'FileZilla Client 3.36.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.2': + full_name: 'FileZilla Client 3.35.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.1': + full_name: 'FileZilla Client 3.35.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.0': + full_name: 'FileZilla Client 3.35.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.34.0': + full_name: 'FileZilla Client 3.34.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.33.0': + full_name: 'FileZilla Client 3.33.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.32.0': + full_name: 'FileZilla Client 3.32.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.31.0': + full_name: 'FileZilla Client 3.31.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.30.0': + full_name: 'FileZilla Client 3.30.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.29.0': + full_name: 'FileZilla Client 3.29.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.28.0': + full_name: 'FileZilla Client 3.28.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.1': + full_name: 'FileZilla Client 3.27.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0.1': + full_name: 'FileZilla Client 3.27.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0': + full_name: 'FileZilla Client 3.27.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.2': + full_name: 'FileZilla Client 3.26.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.1': + full_name: 'FileZilla Client 3.26.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.0': + full_name: 'FileZilla Client 3.26.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.2': + full_name: 'FileZilla Client 3.25.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.1': + full_name: 'FileZilla Client 3.25.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.0': + full_name: 'FileZilla Client 3.25.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.1': + full_name: 'FileZilla Client 3.24.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.0': + full_name: 'FileZilla Client 3.24.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.2': + full_name: 'FileZilla Client 3.23.0.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.1': + full_name: 'FileZilla Client 3.23.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0': + full_name: 'FileZilla Client 3.23.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.2': + full_name: 'FileZilla Client 3.22.2.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.1': + full_name: 'FileZilla Client 3.22.2.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2': + full_name: 'FileZilla Client 3.22.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.1': + full_name: 'FileZilla Client 3.22.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.0': + full_name: 'FileZilla Client 3.22.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.21.0': + full_name: 'FileZilla Client 3.21.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.1': + full_name: 'FileZilla Client 3.20.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.0': + full_name: 'FileZilla Client 3.20.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.19.0': + full_name: 'FileZilla Client 3.19.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.18.0': + full_name: 'FileZilla Client 3.18.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0.1': + full_name: 'FileZilla Client 3.17.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0': + full_name: 'FileZilla Client 3.17.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.1': + full_name: 'FileZilla Client 3.16.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.0': + full_name: 'FileZilla Client 3.16.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,211 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,211 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,228 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,228 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:41:27,228 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,228 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,228 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +firefox-esr_x64: + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,243 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,243 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.015496253967285156 +2020-03-06 10:41:27,243 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,243 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,259 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:41:27,259 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,259 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,259 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +firefox-esr_x86: + + + + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.8.0': + full_name: 'Mozilla Firefox 38.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.1': + full_name: 'Mozilla Firefox 38.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.0': + full_name: 'Mozilla Firefox 38.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.1': + full_name: 'Mozilla Firefox 38.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Firefox 38.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.2': + full_name: 'Mozilla Firefox 38.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.1': + full_name: 'Mozilla Firefox 38.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Firefox 38.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Firefox 38.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Firefox 38.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.1': + full_name: 'Mozilla Firefox 38.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,275 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,275 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.016667842864990234 +2020-03-06 10:41:27,275 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,275 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,293 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:41:27,293 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,293 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,293 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +firefox_x64: + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,323 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.017520666122436523 +2020-03-06 10:41:27,323 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,323 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,323 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:41:27,323 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,336 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.013677835464477539 +2020-03-06 10:41:27,336 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +firefox_x86: + + + + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.2': + full_name: 'Mozilla Firefox 41.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.1': + full_name: 'Mozilla Firefox 41.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0': + full_name: 'Mozilla Firefox 41.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.3': + full_name: 'Mozilla Firefox 40.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.2': + full_name: 'Mozilla Firefox 40.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0': + full_name: 'Mozilla Firefox 40.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0.3': + full_name: 'Mozilla Firefox 39.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0': + full_name: 'Mozilla Firefox 39.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.6': + full_name: 'Mozilla Firefox 38.0.6 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.5': + full_name: 'Mozilla Firefox 38.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.1': + full_name: 'Mozilla Firefox 38.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0': + full_name: 'Mozilla Firefox 38.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.2': + full_name: 'Mozilla Firefox 37.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.1': + full_name: 'Mozilla Firefox 37.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0': + full_name: 'Mozilla Firefox 37.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.4': + full_name: 'Mozilla Firefox 36.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.3': + full_name: 'Mozilla Firefox 36.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.1': + full_name: 'Mozilla Firefox 36.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0': + full_name: 'Mozilla Firefox 36.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0.1': + full_name: 'Mozilla Firefox 35.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0': + full_name: 'Mozilla Firefox 35.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0.5': + full_name: 'Mozilla Firefox 34.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0': + full_name: 'Mozilla Firefox 34.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1.1': + full_name: 'Mozilla Firefox 33.1.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1': + full_name: 'Mozilla Firefox 33.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.3': + full_name: 'Mozilla Firefox 33.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.2': + full_name: 'Mozilla Firefox 33.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.1': + full_name: 'Mozilla Firefox 33.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0': + full_name: 'Mozilla Firefox 33.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.3': + full_name: 'Mozilla Firefox 32.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.2': + full_name: 'Mozilla Firefox 32.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.1': + full_name: 'Mozilla Firefox 32.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0': + full_name: 'Mozilla Firefox 32.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '31.0': + full_name: 'Mozilla Firefox 31.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '30.0': + full_name: 'Mozilla Firefox 30.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '29.0.1': + full_name: 'Mozilla Firefox 29.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.029271364212036133 +2020-03-06 10:41:27,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,366 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:41:27,366 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,366 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +# just 32-bit x86 installer available + + + + +gedit: + '2.30.1': + full_name: gedit 2.30.1 + installer: https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\gedit\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,366 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,381 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:41:27,381 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,381 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,381 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +# just 32-bit x86 installer available +# Gimp installs into %ProgramFiles on either cpu arch +gimp: + + '2.10.4': + full_name: 'GIMP 2.10.4' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.22': + full_name: 'GIMP 2.8.22' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.16': + full_name: 'GIMP 2.8.16' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.14': + full_name: 'GIMP 2.8.14' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + +2020-03-06 10:41:27,381 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) +2020-03-06 10:41:27,381 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,381 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:41:27,381 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.015595436096191406 +2020-03-06 10:41:27,397 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +git-extensions: + '2.48.05': + full_name: 'Git Extensions 2.48.05' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.48.03': + full_name: 'Git Extensions 2.48.03' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,397 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,397 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:41:27,397 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,413 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.016089200973510742 +2020-03-06 10:41:27,413 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git + + + + + + + +git: + + + + + + + + + + '2.23.0.windows.1': + full_name: Git version 2.23.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.22.0.windows.1': + full_name: Git version 2.22.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.21.0': + full_name: Git version 2.21.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.1': + full_name: Git version 2.20.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.0': + full_name: Git version 2.20.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.2': + full_name: Git version 2.19.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.1': + full_name: Git version 2.19.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.0': + full_name: Git version 2.19.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.18.0': + full_name: Git version 2.18.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.1.2': + full_name: Git version 2.17.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.0': + full_name: Git version 2.17.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.3': + full_name: Git version 2.16.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.2': + full_name: Git version 2.16.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.0.2': + full_name: Git version 2.16.0.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.15.0': + full_name: Git version 2.15.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.14.2': + full_name: Git version 2.14.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.3': + full_name: Git version 2.13.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.1.2': + full_name: Git version 2.13.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.2': + full_name: Git version 2.12.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.1': + full_name: Git version 2.12.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0.3': + full_name: Git version 2.11.0.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0': + full_name: Git version 2.11.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.2': + full_name: Git version 2.10.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.1': + full_name: Git version 2.10.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.0': + full_name: Git version 2.10.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.9.0': + full_name: Git version 2.9.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.4': + full_name: Git version 2.8.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.3': + full_name: Git version 2.8.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.2': + full_name: Git version 2.8.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.1': + full_name: Git version 2.8.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.2': + full_name: Git version 2.7.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.1': + full_name: Git version 2.7.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.0': + full_name: Git version 2.7.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.4': + full_name: Git version 2.6.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.2': + full_name: Git version 2.6.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.3': + full_name: Git version 2.5.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.2.2': + full_name: Git version 2.5.2.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.0': + full_name: Git version 2.5.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + +msysgit: + '1.9.5-preview20150319': + full_name: 'Git version 1.9.5-preview20150319' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART ' + msiexec: False + locale: en_US + reboot: False + '1.9.5-preview20141217': + full_name: 'Git version 1.9.5-preview20141217' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + '1.9.4-preview20140815': + full_name: 'Git version 1.9.4-preview20140815' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe' + install_flags: '/VERYSILENT /NOREBOOT' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NOREBOOT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,428 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015386819839477539 +2020-03-06 10:41:27,428 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,428 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,428 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:41:27,428 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,428 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,428 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +# just 32-bit x86 installer available + + + +glarysoft-absolute-uninstaller: + '5.3.1.23': + full_name: 'Absolute Uninstaller 5.3.1.23' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '5.3.1.21': + full_name: 'Absolute Uninstaller 5.3.1.21' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,428 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,428 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,428 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,428 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,444 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:41:27,444 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,444 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,444 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +# just 32-bit x86 installer available + + + +gnucash: + '2.6.5': + full_name: 'GnuCash 2.6.5' + installer: 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe' + install_flags: '/SILENT' + uninstaller: '%ProgramFiles(x86)%\gnucash\uninstall\gnucash\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,444 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,444 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:41:27,444 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,460 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015630483627319336 +2020-03-06 10:41:27,460 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +# "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. +# See https://golang.org/ + + + + + +# Hint: the versionWithTrailingZero is required, because golang sets the version field in Windows to e.g. 1.14.0 or 1.13.0 if 1.14 or 1.13 is installed. +# If we dont do that the version can not be removed anymore via saltstack. + +golang: + + + '1.2.2': + + full_name: 'Go Programming Language amd64 go1.2.2' + installer: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.0': + + full_name: 'Go Programming Language amd64 go1.3' + installer: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.1': + + full_name: 'Go Programming Language amd64 go1.3.1' + installer: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.2': + + full_name: 'Go Programming Language amd64 go1.3.2' + installer: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.3': + + full_name: 'Go Programming Language amd64 go1.3.3' + installer: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.0': + + full_name: 'Go Programming Language amd64 go1.4' + installer: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.1': + + full_name: 'Go Programming Language amd64 go1.4.1' + installer: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.2': + + full_name: 'Go Programming Language amd64 go1.4.2' + installer: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.3': + + full_name: 'Go Programming Language amd64 go1.4.3' + installer: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.0': + + full_name: 'Go Programming Language amd64 go1.5' + installer: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.1': + + full_name: 'Go Programming Language amd64 go1.5.1' + installer: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.2': + + full_name: 'Go Programming Language amd64 go1.5.2' + installer: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.3': + + full_name: 'Go Programming Language amd64 go1.5.3' + installer: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.4': + + full_name: 'Go Programming Language amd64 go1.5.4' + installer: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.0': + + full_name: 'Go Programming Language amd64 go1.6' + installer: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.1': + + full_name: 'Go Programming Language amd64 go1.6.1' + installer: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.2': + + full_name: 'Go Programming Language amd64 go1.6.2' + installer: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.3': + + full_name: 'Go Programming Language amd64 go1.6.3' + installer: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.4': + + full_name: 'Go Programming Language amd64 go1.6.4' + installer: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.0': + + full_name: 'Go Programming Language amd64 go1.7' + installer: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.1': + + full_name: 'Go Programming Language amd64 go1.7.1' + installer: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.2': + + full_name: 'Go Programming Language amd64 go1.7.2' + installer: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.3': + + full_name: 'Go Programming Language amd64 go1.7.3' + installer: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.4': + + full_name: 'Go Programming Language amd64 go1.7.4' + installer: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.5': + + full_name: 'Go Programming Language amd64 go1.7.5' + installer: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.6': + + full_name: 'Go Programming Language amd64 go1.7.6' + installer: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.0': + + full_name: 'Go Programming Language amd64 go1.8' + installer: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.1': + + full_name: 'Go Programming Language amd64 go1.8.1' + installer: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.2': + + full_name: 'Go Programming Language amd64 go1.8.2' + installer: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.3': + + full_name: 'Go Programming Language amd64 go1.8.3' + installer: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.4': + + full_name: 'Go Programming Language amd64 go1.8.4' + installer: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.5': + + full_name: 'Go Programming Language amd64 go1.8.5' + installer: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.6': + + full_name: 'Go Programming Language amd64 go1.8.6' + installer: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.7': + + full_name: 'Go Programming Language amd64 go1.8.7' + installer: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.0': + + full_name: 'Go Programming Language amd64 go1.9' + installer: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.1': + + full_name: 'Go Programming Language amd64 go1.9.1' + installer: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.2': + + full_name: 'Go Programming Language amd64 go1.9.2' + installer: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.3': + + full_name: 'Go Programming Language amd64 go1.9.3' + installer: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.4': + + full_name: 'Go Programming Language amd64 go1.9.4' + installer: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + + full_name: 'Go Programming Language amd64 go1.9.5' + installer: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.6': + + full_name: 'Go Programming Language amd64 go1.9.6' + installer: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.7': + + full_name: 'Go Programming Language amd64 go1.9.7' + installer: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.0': + + full_name: 'Go Programming Language amd64 go1.10' + installer: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.1': + + full_name: 'Go Programming Language amd64 go1.10.1' + installer: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.2': + + full_name: 'Go Programming Language amd64 go1.10.2' + installer: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.3': + + full_name: 'Go Programming Language amd64 go1.10.3' + installer: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.4': + + full_name: 'Go Programming Language amd64 go1.10.4' + installer: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.5': + + full_name: 'Go Programming Language amd64 go1.10.5' + installer: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.6': + + full_name: 'Go Programming Language amd64 go1.10.6' + installer: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.7': + + full_name: 'Go Programming Language amd64 go1.10.7' + installer: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.8': + + full_name: 'Go Programming Language amd64 go1.10.8' + installer: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.0': + + full_name: 'Go Programming Language amd64 go1.11' + installer: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.1': + + full_name: 'Go Programming Language amd64 go1.11.1' + installer: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.2': + + full_name: 'Go Programming Language amd64 go1.11.2' + installer: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.3': + + full_name: 'Go Programming Language amd64 go1.11.3' + installer: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.4': + + full_name: 'Go Programming Language amd64 go1.11.4' + installer: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.5': + + full_name: 'Go Programming Language amd64 go1.11.5' + installer: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.6': + + full_name: 'Go Programming Language amd64 go1.11.6' + installer: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.7': + + full_name: 'Go Programming Language amd64 go1.11.7' + installer: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.8': + + full_name: 'Go Programming Language amd64 go1.11.8' + installer: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.9': + + full_name: 'Go Programming Language amd64 go1.11.9' + installer: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.10': + + full_name: 'Go Programming Language amd64 go1.11.10' + installer: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.11': + + full_name: 'Go Programming Language amd64 go1.11.11' + installer: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.12': + + full_name: 'Go Programming Language amd64 go1.11.12' + installer: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.13': + + full_name: 'Go Programming Language amd64 go1.11.13' + installer: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.0': + + full_name: 'Go Programming Language amd64 go1.12' + installer: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.1': + + full_name: 'Go Programming Language amd64 go1.12.1' + installer: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.2': + + full_name: 'Go Programming Language amd64 go1.12.2' + installer: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.3': + + full_name: 'Go Programming Language amd64 go1.12.3' + installer: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.4': + + full_name: 'Go Programming Language amd64 go1.12.4' + installer: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.5': + + full_name: 'Go Programming Language amd64 go1.12.5' + installer: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.6': + + full_name: 'Go Programming Language amd64 go1.12.6' + installer: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.7': + + full_name: 'Go Programming Language amd64 go1.12.7' + installer: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.8': + + full_name: 'Go Programming Language amd64 go1.12.8' + installer: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.9': + + full_name: 'Go Programming Language amd64 go1.12.9' + installer: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.10': + + full_name: 'Go Programming Language amd64 go1.12.10' + installer: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.11': + + full_name: 'Go Programming Language amd64 go1.12.11' + installer: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.12': + + full_name: 'Go Programming Language amd64 go1.12.12' + installer: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.13': + + full_name: 'Go Programming Language amd64 go1.12.13' + installer: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.14': + + full_name: 'Go Programming Language amd64 go1.12.14' + installer: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.15': + + full_name: 'Go Programming Language amd64 go1.12.15' + installer: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.16': + + full_name: 'Go Programming Language amd64 go1.12.16' + installer: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.17': + + full_name: 'Go Programming Language amd64 go1.12.17' + installer: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.0': + + full_name: 'Go Programming Language amd64 go1.13' + installer: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.1': + + full_name: 'Go Programming Language amd64 go1.13.1' + installer: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.2': + + full_name: 'Go Programming Language amd64 go1.13.2' + installer: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.3': + + full_name: 'Go Programming Language amd64 go1.13.3' + installer: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.4': + + full_name: 'Go Programming Language amd64 go1.13.4' + installer: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.5': + + full_name: 'Go Programming Language amd64 go1.13.5' + installer: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.6': + + full_name: 'Go Programming Language amd64 go1.13.6' + installer: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.7': + + full_name: 'Go Programming Language amd64 go1.13.7' + installer: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.8': + + full_name: 'Go Programming Language amd64 go1.13.8' + installer: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.14.0': + + full_name: 'Go Programming Language amd64 go1.14' + installer: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:27,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,475 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.01514291763305664 +2020-03-06 10:41:27,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,491 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:41:27,491 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,491 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,491 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +goodsync: + '9.9.46.6': + full_name: 'GoodSync' + installer: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,491 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,491 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,491 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:41:27,491 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,491 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,506 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +# just 32-bit x86 installer available + + + +gow: + 'Not Found': + full_name: 'Gow' + installer: 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Gow\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + # Gow - GNU on Windows - The lightweight alternative to Cygwin + # https://github.com/bmatzelle/gow/wiki + +2020-03-06 10:41:27,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,506 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,506 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,506 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,506 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:41:27,506 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,506 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,506 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +# just 32-bit x86 installer available + + + +gpg4win-light: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream +# Here are work around instructions under Issue #113 in the meantime +# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 +# + +2020-03-06 10:41:27,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,506 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,522 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:41:27,522 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,522 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,522 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +# just 32-bit x86 installer available + + + +gpg4win-vanilla: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,522 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,522 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,538 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:41:27,538 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,538 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: + + +graylog-collector-sidecar: + + '0.1.6': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.5': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.4': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.3': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.2': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.1': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.0': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,538 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:41:27,538 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,554 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.015836715698242188 +2020-03-06 10:41:27,554 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +grepwin: + '1.6.682': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.673': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.661': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.646': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,554 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,554 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,554 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,554 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,554 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:41:27,554 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,554 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,569 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +# just 32-bit x86 installer available + + + +gvim: + 'Not Found': + full_name: 'Vim 8.0.3' + installer: 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Vim\vim80\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,569 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,569 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,569 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:41:27,569 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,569 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,569 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +# Source: https://handbrake.fr +handbrake: + '0.10.5': + full_name: 'Handbrake 0.10.5' + + installer: 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Handbrake\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,569 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,569 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,585 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:41:27,585 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,585 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +hipchat: + + + + '4.0.1650': + installer: 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe' + full_name: 'HipChat' + install_flags: '/sp /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Atlassian\Hipchat4\unins000.exe' + uninstall_flags: '/sp /verysilent' + msiexec: False + reboot: False + +2020-03-06 10:41:27,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:41:27,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,585 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:41:27,585 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,585 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +hostsfileeditor: + '1.2.0': + + full_name: 'Hosts File Editor' + installer: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + uninstaller: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,600 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:41:27,600 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,600 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: + +hwinfo: + '5.70': + + full_name: 'HWiNFO64 Version 5.70' + installer: 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe' + uninstaller: '%PROGRAMFILES%\HWiNFO64\unins000.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,600 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:41:27,616 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,616 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +ice: + '3.6.1.2': + full_name: 'Ice 3.6.1.2' + installer: 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi' + uninstaller: '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,616 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:41:27,616 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,616 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +# just 32-bit x86 installer available + + + +icecast: + '2.4.2': + full_name: 'Icecast' + installer: 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Icecast\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,631 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.015148639678955078 +2020-03-06 10:41:27,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,631 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:41:27,631 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,631 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,631 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +icloud: + '7.3.0.20': + full_name: iCloud + installer: 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,631 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,631 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,631 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,631 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:41:27,631 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.01607203483581543 +2020-03-06 10:41:27,647 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +iismediaservices: + '4.1.0938.454': + full_name: 'IIS Media Services 4.1' + + installer: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '4.0.0938.54': + full_name: 'IIS Media Services 4.0' + + installer: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '2.0.1': + full_name: 'IIS Media Services 2.0' + + installer: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,647 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:41:27,647 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,647 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +influx-capacitor: + '1.0.89': + full_name: 'Influx Capacitor' + installer: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + install_flags: '/q' + uninstaller: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + uninstall_flags: '/q' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,662 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,663 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:41:27,663 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,663 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +inkscape: + '0.91': + full_name: 'Inkscape 0.91' + + installer: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + uninstaller: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,663 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:41:27,663 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.01511383056640625 +2020-03-06 10:41:27,679 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +# just 32-bit x86 installer available + + + +intellij-community: + + '14.1.4': + full_name: 'IntelliJ IDEAS Community Edition 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,679 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:41:27,679 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,679 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +# just 32-bit x86 installer available + + + +intellij-ultimate: + + '14.1.4': + full_name: 'IntelliJ IDEAS Ultimate 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:27,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0005710124969482422 +2020-03-06 10:41:27,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,694 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:41:27,694 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,694 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +internet-evidence-finder: + '6.2.3.0001': + full_name: 'Internet Evidence Finder' + installer: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,694 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:41:27,694 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.01619100570678711 +2020-03-06 10:41:27,710 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +irfanview-plugins: + '4.42': + + full_name: 'Irfanview Plugins 4.40' + installer: 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe' + # download manually from: http://www.irfanview.info/files/irfanview_plugins_x64_442_setup.exe and place on master + + install_flags: '/silent' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,710 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,710 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:41:27,710 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,710 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +irfanview: + '4.51': + + full_name: 'IrfanView 64 (remove only)' + installer: 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe' + # download manually from: http://www.irfanview.info/files/iview451_x64_setup.exe and place on master + + install_flags: '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0' + uninstaller: '%ProgramFiles%\irfanview\iv_uninstall.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False +# install_flags +# folder: destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used +# silent: silent install - no prompts +# desktop: create desktop shortcut; 0 = no, 1 = yes (default: 0) +# thumbs: create desktop shortcut for thumbnails; 0 = no, 1 = yes (default: 0) +# group: create group in Start Menu; 0 = no, 1 = yes (default: 0) +# allusers: desktop/group links are for all users; 0 = current user, 1 = all users +# assoc: if used, set file associations; 0 = none, 1 = images only, 2 = select all (default: 0) +# assocallusers: if used, set associations for all users (Windows XP only) +# ini: if used, set custom INI file folder (system environment variables are allowed) + +2020-03-06 10:41:27,710 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,725 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:41:27,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,725 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +isapirewrite-lite: + '3.1.0112': + full_name: 'Helicon ISAPI_Rewrite 3 Lite' + + installer: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + uninstaller: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,725 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:41:27,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,741 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.015897274017333984 +2020-03-06 10:41:27,741 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +itunes: + '12.8.0.150': + full_name: 'iTunes' + + installer: 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe' + uninstall_flags: | + '/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} & + msiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} & + msiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} & + msiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} & + msiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} & + msiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} & + exit 0' + # the above uninstalls: + # Bonjour64 v. 3.1.0.1 {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} + # Apple Software Update v. 2.6.0.1 {A30EA700-5515-48F0-88B0-9E99DC356B88} + # Apple Mobile Device Support (64-bit) v. 11.4.1.46 {C29B636B-9015-4ED1-A12F-6375A337F23B} + # Apple Application Support (32-bit) v. 6.6 {C56BA005-F02C-461B-ACA5-A0CE3E32578F} + # Apple Application Support (64-bit) v. 6.6 {D745E014-74DD-43A3-98DF-E7D38164B681} + # iTunes v. 12.8.0.150 {36F365B3-05C2-455D-9D96-B73829DE046D} + + install_flags: '/quiet /qn ALLUSERS=1 /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,741 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,741 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,741 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,741 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:41:27,741 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,741 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,741 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way +# to find manual download links for any version use: +# http://www.java.com/en/download/manual.jsp +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + +jdk8: + '8.0.1440.1': + + full_name: 'Java SE Development Kit 8 Update 144 (64-bit)' + installer: salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe + + install_flags: '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"' + uninstall_flags: '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,741 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,741 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,757 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:41:27,757 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,757 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +jre: + '7.0.790': + + full_name: 'Java 7 Update 79 (64-bit)' + installer: 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/s REBOOT=Suppress SPONSORS=0' + msiexec: False + locale: en_US + reboot: False + # due to winrepo installer limitations you need to manually download the exe from + # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 + # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way + +2020-03-06 10:41:27,757 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,757 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:41:27,757 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.015176057815551758 +2020-03-06 10:41:27,772 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://www.java.com/en/download/manual.jsp +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + + + +jre8: + + + + '8.0.2010.9': + + full_name: 'Java 8 Update 201 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2110.9': + + full_name: 'Java 8 Update 211 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2210.9': + + full_name: 'Java 8 Update 221 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2310.9': + + full_name: 'Java 8 Update 231 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2410.7': + + full_name: 'Java 8 Update 241 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:27,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,788 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:41:27,788 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,788 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +jungledisk-server-management: + '3.23.0.2': + full_name: 'Jungle Disk Server Management' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-management64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,803 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,803 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,803 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:41:27,803 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,803 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,803 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +jungledisk-server: + '3.23.0.2': + full_name: 'Jungle Disk Server' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,803 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,803 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,803 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,803 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,803 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:41:27,803 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.015610933303833008 +2020-03-06 10:41:27,819 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +jungledisk-workgroup: + '3.23.0.2': + full_name: 'Jungle Disk Workgroup' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,819 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,819 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,819 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:41:27,819 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,819 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +kdiff3: + 'Not Found': + full_name: 'KDiff3 (remove only)' + + installer: 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe' + + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\KDiff3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,835 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:41:27,835 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,850 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +# Keepass 2.x installation from https://keepass.info/ +# to keep the versioning in the format of "2..minor", two seperate version arrays are created. + + + +# Hint: Version 2.24 is the first version that provides a msi-package, all versions before had a -Setup.exe + + +keepass-2x: + + + '2.24.0': + full_name: 'KeePass 2.24' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.25.0': + full_name: 'KeePass 2.25' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.26.0': + full_name: 'KeePass 2.26' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.27.0': + full_name: 'KeePass 2.27' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.28.0': + full_name: 'KeePass 2.28' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.29.0': + full_name: 'KeePass 2.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.30.0': + full_name: 'KeePass 2.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.31.0': + full_name: 'KeePass 2.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.32.0': + full_name: 'KeePass 2.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.33.0': + full_name: 'KeePass 2.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.34.0': + full_name: 'KeePass 2.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.35.0': + full_name: 'KeePass 2.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.36.0': + full_name: 'KeePass 2.36' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.37.0': + full_name: 'KeePass 2.37' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.38.0': + full_name: 'KeePass 2.38' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.0': + full_name: 'KeePass 2.39' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.40.0': + full_name: 'KeePass 2.40' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.41.0': + full_name: 'KeePass 2.41' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.0': + full_name: 'KeePass 2.42' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.43.0': + full_name: 'KeePass 2.43' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.44.0': + full_name: 'KeePass 2.44' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.1': + full_name: 'KeePass 2.39.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.1': + full_name: 'KeePass 2.42.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,850 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,850 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:41:27,850 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,850 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,850 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +keepass: + '1.35.0': + full_name: 'KeePass 1.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.34.0': + full_name: 'KeePass 1.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.33.0': + full_name: 'KeePass 1.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.32.0': + full_name: 'KeePass 1.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.31.0': + full_name: 'KeePass 1.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.30.0': + full_name: 'KeePass 1.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.29.0': + full_name: 'KeePass 1.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,866 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:41:27,866 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,866 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +# just 32-bit x86 installer available + + + +lastpass: + 'Not Found': + full_name: 'LastPass (uninstall only)' + + installer: 'https://lastpass.eu/sync/lastpass_x64.exe' + + install_flags: '-si --userinstallie --userinstallff --userinstallchrome' + uninstaller: '%PROGRAMFILES(x86)%\LastPass\lastpass.exe' + uninstall_flags: '-sb' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:27,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,882 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:41:27,882 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,882 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +# NOTE: If the lazarus installation directory exists the installation will +# pop up a dialog box. This will cause the minion to hang because it +# is waiting for the user to click continue on a dialog box that will +# never be seen. So, before running this, make sure the lazarus +# installation directory is not present. +# If doing an upgrade that means you'll have to do something like the +# following: +# pkg.remove lazarus +# file.remove c:\lazarus +# pkg.install lazarus + + +lazarus: + + '1.8.0': + full_name: Lazarus 1.8.0 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + '1.6.4': + full_name: Lazarus 1.6.4 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + +2020-03-06 10:41:27,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) +2020-03-06 10:41:27,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,898 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,898 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:41:27,898 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,898 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,898 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +libreoffice: + + '5.3.5.2': + full_name: 'LibreOffice 5.3.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.3.6.1': + full_name: 'LibreOffice 5.3.6.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.6.2': + full_name: 'LibreOffice 5.4.6.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.7.2': + full_name: 'LibreOffice 5.4.7.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.0.5.2': + full_name: 'LibreOffice 6.0.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.2.7.1': + full_name: 'LibreOffice 6.2.7.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:27,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,898 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,898 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,898 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,913 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:41:27,913 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,913 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,913 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +logparser: + '2.2.10': + full_name: 'Log Parser 2.2' + installer: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,913 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,913 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,913 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,913 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:41:27,913 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,913 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,928 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +# just 32-bit x86 installer available + + + +maas360bootanalyzer: + '1.0.0': + full_name: 'MaaS360 Boot Analyzer v 1.0.0' + installer: 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe' + + install_flags: | + '/S & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v UninstallString /d "C:\Program Files (x86)\BootAnalyzer\Uninstall.exe" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" & + exit 0' + + uninstaller: '%PROGRAMFILES(x86)%\MaaS360\BootAnalyzer\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory + +2020-03-06 10:41:27,928 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,928 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,928 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,928 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,928 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:41:27,928 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,928 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,928 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.malwarebytes.org +malwarebytes: + '3.5.1.2522': + full_name: 'Malwarebytes Anti-Malware version 2.0.4.1028' + installer: 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Malwarebytes Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: Falsea + +2020-03-06 10:41:27,928 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) +2020-03-06 10:41:27,944 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.01563286781311035 +2020-03-06 10:41:27,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,944 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:41:27,944 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,963 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.01885509490966797 +2020-03-06 10:41:27,963 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +#MariaDB https://downloads.mariadb.org/mariadb/+releases/ +#only stable versions are listed + + + + + + + + +mariadb: + + + '5.5.63.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.62.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.61.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.60.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.59.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.58.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.57.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.56.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.55.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.54.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.53.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.52.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.51.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.50.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.49.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.48.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.47.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.1.38.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.37.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.36.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.35.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.34.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.33.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.32.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.31.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.30.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.29.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.28.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.27.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.26.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.25.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.24.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.23.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.22.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.21.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.19.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.18.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.17.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.16.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.14.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.13.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.12.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.11.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.10.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.9.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.8.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.0.38.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.37.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.36.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.35.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.34.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.33.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.32.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.29.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.28.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.27.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.26.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.25.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.23.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.19.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.18.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.17.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.16.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.2.22.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.21.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.20.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.19.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.18.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.16.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.15.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.14.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.13.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.12.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.11.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.10.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.9.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.8.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.6.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:41:27,977 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:41:27,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.028081893920898438 +2020-03-06 10:41:27,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:27,991 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:41:27,991 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:27,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:27,991 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +mercurial: + '3.1.1': + + full_name: 'Mercurial 3.1.1 (x64)' + installer: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + uninstaller: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:27,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:27,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:27,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:27,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,007 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:41:28,007 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,007 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +messageanalyzer: + '4.0.7551.0': + full_name: 'Microsoft Message Analyzer' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi' + + install_flags: '/quiet /norestart' + uninstaller: '{1CC02C23-8FCD-487E-860C-311EC0A0C933}' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,007 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,007 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,007 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:41:28,007 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,007 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +microsoft-build-tools: + '14.0.23107': + + full_name: 'Microsoft Build Tools 14.0 (amd64)' + uninstall_flags: '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart' + + installer: 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe' + install_flags: '/Q /NoRestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.01536107063293457 +2020-03-06 10:41:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,022 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:41:28,022 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,022 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +mikogo: + '5.3.0': + full_name: 'Mikogo' + installer: 'https://download.mikogo4.com/mikogo-starter.exe' + install_flags: '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0' + uninstaller: '%AppData%\Mikogo\remover.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,022 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:41:28,022 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,038 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +miktex-basic: + '2.9': + full_name: 'MiKTeX 2.9' + + installer: 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe' + + install_flags: '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\MiKTeX 2.9\"' + uninstaller: 'cmd' + uninstall_flags: | + '/c del /Q /F /S "%ProgramFiles%\MiKTeX 2.9\" & + reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MiKTeX 2.9" /f & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,038 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:41:28,038 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,038 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +mongodb: + '3.3.5': + full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6': + full_name: 'MongoDB 3.2.6 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,053 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:41:28,053 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,053 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +ms-mbsa: + '2.3.2211': + + installer: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + uninstaller: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + + full_name: 'Microsoft Baseline Security Analyzer 2.3' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,053 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:41:28,053 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,053 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +ms-vcpp-2005-atl-redist_x64: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,070 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,070 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,070 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:41:28,070 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,070 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,070 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +ms-vcpp-2005-atl-redist_x86: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,070 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,070 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,070 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,070 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,070 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:41:28,070 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,070 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,070 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +ms-vcpp-2005-redist_x64: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,070 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,084 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.014858484268188477 +2020-03-06 10:41:28,084 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,084 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,084 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:41:28,084 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,084 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,084 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +ms-vcpp-2005-redist_x86: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,084 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,084 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,084 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,084 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:41:28,084 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.015377998352050781 +2020-03-06 10:41:28,100 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +ms-vcpp-2005-sp1-mfc-redist_x64: + '8.0.61000': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,100 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:41:28,100 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,100 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +ms-vcpp-2005-sp1-mfc-redist_x86: + '8.0.61001': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,100 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:41:28,100 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,117 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.016620397567749023 +2020-03-06 10:41:28,117 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +ms-vcpp-2005-sp1-redist_x64: + '8.0.59192': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,117 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,117 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,117 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,117 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,117 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:41:28,117 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.01521611213684082 +2020-03-06 10:41:28,132 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +ms-vcpp-2005-sp1-redist_x86: + '8.0.59193': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,132 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,132 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,132 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:41:28,132 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,132 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +ms-vcpp-2008-redist_x64: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' + installer: 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,132 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,148 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,148 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:41:28,148 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,148 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,148 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +ms-vcpp-2008-redist_x86: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' + installer: 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,148 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,148 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,148 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,148 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:41:28,148 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,148 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,148 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +ms-vcpp-2008-sp1-atl-redist_x64: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,162 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.014940500259399414 +2020-03-06 10:41:28,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,163 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:41:28,163 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,163 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +ms-vcpp-2008-sp1-atl-redist_x86: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,163 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,163 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:41:28,163 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,163 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +ms-vcpp-2008-sp1-mfc-redist_x64: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,178 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,178 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,178 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:41:28,178 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,178 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,178 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +ms-vcpp-2008-sp1-mfc-redist_x86: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,178 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,178 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,178 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,178 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:41:28,178 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,178 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,194 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +ms-vcpp-2010-sp1-mfc-redist_x64: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,194 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,194 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:41:28,194 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,194 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,194 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +ms-vcpp-2010-sp1-mfc-redist_x86: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,194 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,194 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:41:28,209 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0004968643188476562 +2020-03-06 10:41:28,210 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +ms-vcpp-2012-redist_x64: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ProgramData%\Package Cache\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\vcredist_x64.exe' + uninstall_flags: '/quiet /uninstall /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,210 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:41:28,210 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,210 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +ms-vcpp-2012-redist_x86: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: '"%ProgramData%\Package Cache\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\vcredist_x86.exe"' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,226 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:41:28,226 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,226 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,226 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +ms-vcpp-2013-redist_x64: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,226 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,226 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:41:28,226 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,226 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,226 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +ms-vcpp-2013-redist_x86: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,226 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,241 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,241 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,241 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:41:28,241 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,241 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,241 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +ms-vcpp-2015-build-tools: + '14.0.25420.1': + full_name: 'Microsoft Visual C++ Build Tools' + installer: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + install_flags: '/Q /Silent /NoRestart' + uninstaller: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + uninstall_flags: '/Q /U /Silent /NoRestart' + locale: en_US + reboot: False + +2020-03-06 10:41:28,241 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,241 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,241 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,241 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,241 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:41:28,241 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,241 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,241 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +ms-vcpp-2015-redist_x64: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} + # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} + +2020-03-06 10:41:28,241 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,241 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,258 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,258 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,258 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:41:28,258 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,258 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,258 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +ms-vcpp-2015-redist_x86: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} + +2020-03-06 10:41:28,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,258 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,258 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,258 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,258 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:41:28,258 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,273 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0149993896484375 +2020-03-06 10:41:28,273 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +ms-vcpp-2017-redist_x64: + '14.20.27508.1': + full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + '14.20.27508': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,273 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,273 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,273 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,273 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:41:28,273 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,273 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,273 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +ms-vcpp-2017-redist_x86: + '14.11.25325.0': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' + installer: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,273 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,273 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,273 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,288 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:41:28,288 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,288 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,288 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: + + + + +mucommander: + + '0.9.2': + full_name: 'muCommander (remove only)' + installer: 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe' + uninstaller: '%PROGRAMFILES(x86)%\muCommander\uninstaller.exe' + install_flags: '/S' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:41:28,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,288 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,288 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,288 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,288 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:41:28,288 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.015958309173583984 +2020-03-06 10:41:28,304 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +mysql-essential: + '5.1.73': + full_name: 'MySQL Server 5.1' + + installer: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,304 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,304 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,304 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:41:28,304 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,304 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +mysql-installer-community: + '1.4.3.0': + full_name: 'MySQL Installer - Community' + installer: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Read for MySQL Server 5.6.23.0 Community installation instructions: +# https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html +# https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html + +2020-03-06 10:41:28,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,304 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,304 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,304 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:41:28,319 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,319 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,319 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +mysql-workbench-community: + + '8.0.15': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.14': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.13': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + +2020-03-06 10:41:28,319 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,319 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,319 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,319 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,319 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:41:28,319 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,319 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,319 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +never10: + '1.3': + full_name: 'Never 10 (GRC)' + installer: 'https://www.grc.com/files/never10.exe' + install_flags: 'update delete disable' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False +# download it from https://www.grc.com/never10.htm + +2020-03-06 10:41:28,319 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,319 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,335 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,335 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,335 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:41:28,335 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,335 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,335 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +# Please note that per +# https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows +# the MSI uninstall does not remove files or settings, +# and the service must be stopped beforehand. +# +# So this uninstall is not going to work. + +newrelic-infra: + + '1.0.279': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.292': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.296': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.301': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.311': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.316': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.323': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.336': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.338': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.341': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.673': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.677': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.682': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.690': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.703': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,335 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,335 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,350 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:41:28,350 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,350 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,350 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +nextcloud-client: + + '2.2.3.4': + full_name: 'Nextcloud Client 2.2.3.4' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.2.4.2': + full_name: 'Nextcloud Client 2.2.4.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.1.8': + full_name: 'Nextcloud Client 2.3.1.8' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.2.1': + full_name: 'Nextcloud Client 2.3.2.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.3.1': + full_name: 'Nextcloud Client 2.3.3.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.0': + full_name: 'Nextcloud Client 2.5.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.1': + full_name: 'Nextcloud Client 2.5.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.2': + full_name: 'Nextcloud Client 2.5.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.3': + full_name: 'Nextcloud Client 2.5.3' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.6.0': + full_name: 'Nextcloud Client 2.6.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:41:28,350 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,350 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,350 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,350 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:41:28,366 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0008294582366943359 +2020-03-06 10:41:28,366 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: + + +# just 32-bit x86 installer available + + + +nmap: + + '7.70': + full_name: 'Nmap 7.70' + installer: 'https://nmap.org/dist/nmap-7.70-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '7.60': + full_name: 'Nmap 7.60' + installer: 'https://nmap.org/dist/nmap-7.60-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,366 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,366 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:41:28,366 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,382 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.015456199645996094 +2020-03-06 10:41:28,382 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +node.js-lts: + + '12.13.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.17.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.11.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.9.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,382 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,382 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,382 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,382 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,382 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:41:28,382 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,382 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,397 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +node.js: + + '13.1.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.6.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '11.14.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '9.11.2': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + uninstaller: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.10.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,397 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,397 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:41:28,397 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,397 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +nomacs: + + '3.8.0': + full_name: 'nomacs - Image Lounge' + installer: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,412 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,412 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.00040459632873535156 +2020-03-06 10:41:28,412 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,412 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,412 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:41:28,412 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,412 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,412 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +# just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. + + + +npp: + + + '7.7.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.9': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.8': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.5': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.4.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +# the 64-bit installer is available from: +# https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe + +2020-03-06 10:41:28,459 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,459 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.04701113700866699 +2020-03-06 10:41:28,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,475 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:41:28,475 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,475 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,475 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +nsclient: + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2039': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2029': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1046': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1044': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.0062': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.23': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.19': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.143': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.88': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,491 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,491 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0009112358093261719 +2020-03-06 10:41:28,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,491 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:41:28,491 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,491 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,491 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +# Define versions + + +nsis: + + + '3.0b2': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0b1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.51': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.50': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.49': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.48': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.47': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.46': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.03': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02.1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.01': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:28,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,506 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,506 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,506 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,506 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:41:28,506 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,506 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,506 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +# Install Meinberg NTP daemon for Windows +# Note: To do a silent installation, this installer needs a setup file named +# setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. +# The file is documented at +# https://www.meinberg.de/german/sw/readme-ntpinstaller.htm#unattended + + + +ntp: + + '4.2.8p13': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p12': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p11': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,522 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,522 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,522 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:41:28,522 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,522 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,522 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: + + + +nunit-console: + + + '3.8.0': + full_name: 'NUnit Console 3.8.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.7.0': + full_name: 'NUnit Console 3.7.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.9.0': + full_name: 'NUnit Console 3.9.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:41:28,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:41:28,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,538 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:41:28,538 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,538 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +nxlog: + '2.10.2150': + full_name: 'NXLog-CE' + installer: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,538 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:41:28,553 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,553 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,553 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +octopus-tentacle: + 'latest': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://octopus.com/downloads/latest/OctopusTentacle64' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://octopus.com/downloads/latest/OctopusTentacle64' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.17': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.16': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,553 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,553 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,553 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,553 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,553 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:41:28,553 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.016783475875854492 +2020-03-06 10:41:28,570 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +# Source: http://openlp.org/ +# just 32-bit x86 installer available + + + + +openlp: + + '2.4.6': + full_name: 'OpenLP 2.4.6' + installer: 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'OpenLP 2.2.1' + installer: 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,570 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:41:28,570 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.014669418334960938 +2020-03-06 10:41:28,585 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +openoffice: + '4.1.2': + full_name: 'OpenOffice 4.1.2' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart' + msiexec: False + locale: en_US + reboot: False + '4.1.1': + full_name: 'OpenOffice 4.1.1' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart' + msiexec: False + locale: en_US + reboot: False +# +# for other languages replace the two occurrences of 'en-US' +# in the download URL with your local two or four letter code below: +# +# 'el', 'en-GB', 'es', 'eu', 'ca', +# 'ca-XR', 'ca-XV', 'cs', 'ru', 'zh-CN', +# 'zh-TW', 'vi', 'ta', 'th', 'tr', 'sk', +# 'sl', 'sr', 'sv', 'pl', 'pt', 'pt-BR', +# 'nb', 'nl', 'lt', 'km', 'ko', 'ja', +# 'it', 'he', 'hi', 'hu', 'gd', 'gl', +# 'fi', 'fr', 'da', 'de', 'bg', 'ast' +# + +2020-03-06 10:41:28,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,585 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:41:28,585 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.015627622604370117 +2020-03-06 10:41:28,600 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +openvpn: + +# Combined installer since v2.4+ so no arch needed + + '2.4.7-I607-Win10': + full_name: 'OpenVPN 2.4.7-I607-Win10 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.6-I602': + full_name: 'OpenVPN 2.4.6-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.5-I601': + full_name: 'OpenVPN 2.4.5-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.4-I601': + full_name: 'OpenVPN 2.4.4-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I602': + full_name: 'OpenVPN 2.4.3-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I601': + full_name: 'OpenVPN 2.4.3-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + + '2.3.17-I601': + full_name: 'OpenVPN 2.3.17-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.12-I601': + full_name: 'OpenVPN 2.3.12-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.11-I601': + full_name: 'OpenVPN 2.3.11-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.10-I603': + full_name: 'OpenVPN 2.3.10-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.8-I601': + full_name: 'OpenVPN 2.3.8-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.6-I601': + full_name: 'OpenVPN 2.3.6-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# https://chocolatey.org/packages/openvpn +# Install with the following options: +# /SELECTSHORTCUTS=1 - create the start menu shortcuts +# /SELECTOPENVPN=1 - OpenVPN itself +# /SELECTSERVICE=1 - install the OpenVPN service +# /SELECTTAP=1 - install the TAP device driver +# /SELECTOPENVPNGUI=1 - install the default OpenVPN GUI +# /SELECTASSOCIATIONS=1 - associate with .ovpn files +# /SELECTOPENSSLUTILITIES=1 - install the utilities for generating public-private key pairs +# /SELECTEASYRSA=1 - install the RSA X509 certificate management scripts +# /SELECTPATH=1 - add openvpn.exe in PATH +# /SELECTOPENSSLDLLS=1 - dependencies - OpenSSL DLL's +# /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's +# /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's + +2020-03-06 10:41:28,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,600 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,600 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,600 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:41:28,600 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,617 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.016045331954956055 +2020-03-06 10:41:28,617 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +# Performant endpoint visibility https://osquery.io/ + + + +osquery: + + '3.3.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.3.0': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.6': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.4': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '2.11.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:41:28,617 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:41:28,617 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,617 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,617 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,617 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:41:28,617 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,631 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.014679670333862305 +2020-03-06 10:41:28,631 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +# just 32-bit x86 installer available + + + + + + + + + +ossec-agent: + + + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:28,631 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,631 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,647 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:41:28,647 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,647 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +owncloud: + + + + + '2.2.4.6408': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2.6192': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1.6146': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0.6076': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.1.1.5837': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,647 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:41:28,663 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,663 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +pandoc: + '1.17.0.2': + full_name: 'Pandoc 1.17.0.2' + installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,663 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:41:28,663 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,663 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +parallels-client-15: + '15.0.3869': + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + uninstaller: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# The latest RAS clients can be downloaded for FREE from: +# https://www.parallels.com/uk/products/ras/download/links/ + +2020-03-06 10:41:28,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,679 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:41:28,679 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,679 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +pass4win: + '1.2.3.7': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '1.2.1.9': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,694 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:41:28,694 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,694 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +passware-kit-agent: + '13.1.7657': + full_name: 'Passware Kit Agent (64-bit)' + installer: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,694 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:41:28,694 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,694 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +passware-kit-forensic: + '13.1.7657': + full_name: 'Passware Kit Forensic (64-bit)' + installer: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,710 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:41:28,710 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,710 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +# Source: https://patchmypc.net/ +patchmypc-free: + '3.0.1.1': + full_name: 'PatchMyPC' + installer: 'https://patchmypc.net/freeupdater/PatchMyPC.exe' + install_flags: | + ' & cmd /c taskkill /F /IM PatchMyPC.exe & + xcopy /q /c /r /y "c:\salt\var\cache\salt\minion\extrn_files\base\patchmypc.net\freeupdater\PatchMyPC.exe" "%SystemRoot%" & + exit 0' + uninstaller: 'cmd' + uninstall_flags: | + '/c taskkill /F /IM PatchMyPC.exe & + del /q /f "%SystemRoot%"\PatchMyPC.exe & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,710 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,710 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:41:28,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,725 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +pdf24creator: + + '8.8.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.5.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +# Source: https://en.pdf24.org/ +# Packagin info Source: https://chocolatey.org/packages/pdf24 + +2020-03-06 10:41:28,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,741 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:41:28,741 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,741 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,741 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +# just 32-bit x86 installer available + + + +pdfcreator: + '2.5.0': + full_name: 'PDFCreator' + installer: 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe' + install_flags: '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-' + uninstaller: '%ProgramFiles(x86)%\PDFCreator\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,741 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,741 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,741 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,741 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:41:28,741 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,741 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,757 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +peazip: + '6.0.0': + + full_name: 'PeaZip 6.0.0 (WIN64)' + installer: 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\PeaZip\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,757 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,757 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:41:28,757 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,757 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: + + + + +pgadmin4: + + '2.1': + full_name: 'pgAdmin 4 version 2.1' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0': + full_name: 'pgAdmin 4 version 2.0' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6': + full_name: 'pgAdmin 4 version 1.6' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v1\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,757 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,773 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,773 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,773 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:41:28,773 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,773 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,773 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +pgina: + '3.1.8.0': + full_name: 'pGina v3.1.8.0' + installer: 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe' + install_flags: '/silent ' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,773 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,773 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,773 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,773 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:41:28,788 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,788 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: + +# just 32-bit x86 installer available + + + +pidgin: + + '2.12.0': + full_name: 'Pidgin' + installer: 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Pidgin\pidgin-uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,788 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:41:28,788 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,804 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.01579141616821289 +2020-03-06 10:41:28,804 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +# Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: +# salt mid pkg.install postgresql version='"9.6"' + + + +postgresql: + '9.6': + full_name: 'PostgreSQL 9.6 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.6\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.5': + full_name: 'PostgreSQL 9.5 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.5\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.4': + full_name: 'PostgreSQL 9.4 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.4\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.3': + full_name: 'PostgreSQL 9.3 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.3\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + + +2020-03-06 10:41:28,804 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:41:28,804 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,804 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:41:28,804 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,820 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.01610851287841797 +2020-03-06 10:41:28,820 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +### NOTE: You must accept the PowerBI Desktop EULA by setting the +### Pillar key `powerbi:desktop:accept_eula` to `True` in order to +### install this package. You can find a copy of the EULA at +### https://powerbi.microsoft.com/en-us/desktop-eula/. + +powerbi-desktop: + ## version 4.0.1 - https://www.microsoft.com/en-us/download/details.aspx?id=45331 + '2.59.5135.421': &powerbi-desktop + full_name: + "Microsoft PowerBI Desktop (x64)" + installer: &msi401 + "https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi" + install_flags: &flags + /qn + /norestart + ACCEPT_EULA=0 + uninstaller: *msi401 + uninstall_flags: *flags + msiexec: True + reboot: False + +2020-03-06 10:41:28,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:41:28,820 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,820 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,820 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,820 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:41:28,820 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.015144109725952148 +2020-03-06 10:41:28,835 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +#PowerShell Core https://github.com/PowerShell/PowerShell + + + +powershell-core: + + '6.1.3.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.2.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.1.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.0.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.0.5.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:41:28,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:41:28,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,835 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:41:28,835 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,850 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +# Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems +# WMI Exporter: https://github.com/martinlindhe/wmi_exporter +# Prometheus Monitoring: https://prometheus.io/ + +prometheus-wmi-exporter: + + '0.9.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.7.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.6.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.5.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.4': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,850 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,850 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:41:28,850 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.015781879425048828 +2020-03-06 10:41:28,866 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +putty: + + '0.73.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + + full_name: 'PuTTY release 0.73 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.72.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + + full_name: 'PuTTY release 0.72 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.71.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + + full_name: 'PuTTY release 0.71 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.70.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + + full_name: 'PuTTY release 0.70 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.69.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + + full_name: 'PuTTY release 0.69 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.68.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + + full_name: 'PuTTY release 0.68 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + + + '0.67': + full_name: 'PuTTY release 0.67' + installer: 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.66': + full_name: 'PuTTY release 0.66' + installer: 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.65': + full_name: 'PuTTY release 0.65' + installer: 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.64': + full_name: 'PuTTY release 0.64' + installer: 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,866 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:41:28,866 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,881 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.015397787094116211 +2020-03-06 10:41:28,881 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +python2_x64: + + + + + '2.7.1150': + full_name: 'Python 2.7.1 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,881 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,881 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,881 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,881 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,881 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:41:28,881 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015817880630493164 +2020-03-06 10:41:28,897 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +python2_x86: + + + + + '2.7.1150': + full_name: 'Python 2.7.1' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,897 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:41:28,897 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,914 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.01659989356994629 +2020-03-06 10:41:28,914 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: + + +python3_x64: + + '3.8.150.0': + full_name: 'Python 3.8.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.4150.0': + full_name: 'Python 3.7.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,914 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,914 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,914 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,914 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,928 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:41:28,928 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,928 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,928 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: + + +python3_x86: + + '3.7.4150.0': + full_name: 'Python 3.7.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:28,928 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,928 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,928 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,944 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:41:28,944 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,944 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,944 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +qemu: + '2018.05.19': + full_name: 'QEMU' + installer: 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe' + uninstaller: '%PROGRAMFILES%\qemu\qemu-uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,944 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,944 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,944 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,944 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:41:28,944 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,960 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.01533055305480957 +2020-03-06 10:41:28,960 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: + + + + +queueexplorerpro: + '4.1.5': + full_name: 'QueueExplorer Professional 4.1.5' + installer: 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\QueueExplorer Professional\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:28,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,960 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,960 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,960 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,960 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:41:28,960 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,960 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,960 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +quicktime: + '7.79.80.95': + full_name: 'QuickTime 7' + #installer: 'https://secure-appldnld.apple.com/quicktime/031-27600-20150820-F20FB1EF-6710-46BD-99B3-7DCF1253B310/QuickTimeInstaller.exe' + installer: 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe' + + uninstall_flags: | + '/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart & + msiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart & + msiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart & + msiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart & + exit 0' + + install_flags: '/quiet /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + # the above uninstalls: + # Apple Software Update v. 2.1.4.131 {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} + # Apple Application Support v. 4.1.2 {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} + # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} + # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} + +2020-03-06 10:41:28,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,960 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,960 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,975 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:41:28,975 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,975 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: + +rabbitmq: + + '3.6.9': + full_name: 'RabbitMQ Server 3.6.9' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.7.7': + full_name: 'RabbitMQ Server 3.7.7' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:28,975 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,975 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:41:28,975 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,990 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +rakudo-star_x86: + '1.0.0': + full_name: 'Rakudo Star 2016.01' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,991 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:41:28,991 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:28,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:28,991 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +rakudo-star_x64: + '1.0.0': + full_name: 'Rakudo Star 2016.04' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:28,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:28,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:28,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:28,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:28,991 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:41:28,991 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.015771865844726562 +2020-03-06 10:41:29,007 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +rasclient: + + '16': + + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + uninstaller: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,007 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,007 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,007 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:41:29,007 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,007 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +rdcman: + '2.7.14060': + full_name: 'Remote Desktop Connection Manager' + installer: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,022 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:41:29,022 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,022 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: + + +rocketchat: + + '2.13.1': + full_name: 'Rocket.Chat+ 2.13.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.13.0': + full_name: 'Rocket.Chat+ 2.13.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.12.0': + full_name: 'Rocket.Chat+ 2.12.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.5': + full_name: 'Rocket.Chat+ 2.10.5' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.4': + full_name: 'Rocket.Chat+ 2.10.4' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.3': + full_name: 'Rocket.Chat+ 2.10.3' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.2': + full_name: 'Rocket.Chat+ 2.10.2' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.1': + full_name: 'Rocket.Chat+ 2.10.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.9.0': + full_name: 'Rocket.Chat+ 2.9.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,022 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,038 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:41:29,038 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,038 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +rubyinstaller_x64: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,038 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:41:29,038 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.015480995178222656 +2020-03-06 10:41:29,053 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +rubyinstaller_x86: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '1.9.3-p551': + full_name: 'Ruby 1.9.3-p551' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby193\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,053 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:41:29,053 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.016048192977905273 +2020-03-06 10:41:29,069 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Salt added support for Py3 with 2017.7.0. As a result, the package names have +# changed to denote the Python version included with the install. So add new +# versions of the 2017.7 branch here. Versions from older branches will be +# added below. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion: + + '3000': + full_name: 'Salt Minion 3000' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Add versions from older branches here: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + '2016.11.10': + full_name: 'Salt Minion 2016.11.10' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.9': + full_name: 'Salt Minion 2016.11.9' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.8': + full_name: 'Salt Minion 2016.11.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.7': + full_name: 'Salt Minion 2016.11.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.6': + full_name: 'Salt Minion 2016.11.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.5': + full_name: 'Salt Minion 2016.11.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.4': + full_name: 'Salt Minion 2016.11.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.3': + full_name: 'Salt Minion 2016.11.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.2': + full_name: 'Salt Minion 2016.11.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.1': + full_name: 'Salt Minion 2016.11.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.0': + full_name: 'Salt Minion 2016.11.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:41:29,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:41:29,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,085 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:41:29,085 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,085 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,085 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion-py3: + + '3000': + full_name: 'Salt Minion 3000 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:41:29,085 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:41:29,085 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,100 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:41:29,100 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,100 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +sandboxie: + '4.20': + + full_name: 'Sandboxie 4.20 (64-bit)' + installer: 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe' + uninstaller: 'C:\Windows\Installer\SandboxieInstall64.exe' + + install_flags: '/S' + uninstall_flags: '/remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,100 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:41:29,100 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,117 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +scaleout: + latest: + + full_name: 'ScaleOut StateServer x64 Edition' + installer: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + uninstaller: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,117 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,117 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,117 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,117 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,117 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:41:29,117 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,117 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,117 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +# just 32-bit x86 installer available + + + +secunia.psi: + '3.0.0.10004': + full_name: 'Secunia PSI' + installer: 'http://secunia.com/PSISetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Secunia\PSI\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,117 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,117 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,117 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,131 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,131 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:41:29,131 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,131 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,131 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: + + + + + + +sensu: + + '1.4.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.28.4': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.5': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.25.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,131 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,147 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.015127420425415039 +2020-03-06 10:41:29,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,147 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:41:29,147 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,147 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,147 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +sharpdevelop: + '5.1.5134': + full_name: 'SharpDevelop 5.1 RC' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '4.4.9749': + full_name: 'SharpDevelop 4.4' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6466': + full_name: 'SharpDevelop 3.2.1' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.2.2648': + full_name: 'SharpDevelop 2.2' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,147 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,147 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,147 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:41:29,147 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,164 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.016672849655151367 +2020-03-06 10:41:29,164 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +# just 32-bit x86 installer available + + + +skitch: + '2.3.2.176': + full_name: 'Skitch' + installer: 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe' + install_flags: '--mode unattended' + uninstaller: '%ProgramFiles(x86)%\Evernote\Skitch\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,164 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,164 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,164 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,164 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,164 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:41:29,164 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,164 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,164 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +skype-msi: + '7.41.101': + full_name: 'Skypeâ„¢ 7.41' + installer: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.151': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.103': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# you can always get latest msi from: +# http://www.skype.com/go/getskype-msi (but version number keeps increasing) +# +# for explanation of silent switches read: +# http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 +# you can also check microsite http://skype.techygeekshome.info/ + +2020-03-06 10:41:29,164 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,164 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,164 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,164 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,164 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:41:29,164 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,181 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.017792940139770508 +2020-03-06 10:41:29,181 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +# just 32-bit x86 installer available + + + + +skype: + '8.31': + full_name: 'Skype version 8.31' + installer: 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe' + install_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\Microsoft\Skype for Desktop\unins000.exe' + uninstall_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,181 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,181 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,181 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,181 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:41:29,181 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,194 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.012954950332641602 +2020-03-06 10:41:29,194 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +#MSI machine-wide deployment package +#The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. +#It is multi-client-capable, meaning that it can be used by multiple users on one machine, +#keeping their profiles separately in %ROAMINGAPPDATA%. Using this method, Slack will not receive automatic updates. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-machine-msi: + + '3.3.7.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.6.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,209 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.014947891235351562 +2020-03-06 10:41:29,209 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,209 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,209 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:41:29,209 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,209 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,209 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +#MSI for per-user deployment package +#The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. +#The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-user-msi: + latest: + full_name: 'Slack Machine-Wide Installer' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,209 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,209 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,226 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:41:29,226 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,226 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,226 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +slack: + 3.4.0: + full_name: Slack + installer: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + install_flags: '/qn /norestart' + uninstaller: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:41:29,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:41:29,226 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,226 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,226 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:41:29,226 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,226 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,226 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +# just 32-bit x86 installer available + + + +smartmontools: + '6.4 2015-06-04 r4109 (sf-6.4-1)': + full_name: 'smartmontools' + installer: 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\smartmontools\uninst-smartmontools.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,243 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.017507553100585938 +2020-03-06 10:41:29,243 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,243 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,243 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:41:29,243 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,243 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,243 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +# just 32-bit x86 installer available + + + +snmptools: + 'Not Found': + full_name: 'SnmpTools 2' + installer: 'https://erwan.labalec.fr/snmptools/snmptools32.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\SnmpTools\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,243 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,243 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,243 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,243 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,243 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:41:29,243 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,262 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.018551111221313477 +2020-03-06 10:41:29,262 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: + +soapui: + + '5.4.0': + full_name: 'SoapUI 5.4.0 5.4.0' + + installer: 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe' + + install_flags: '-q' + uninstaller: '%ProgramFiles%\SmartBear\SoapUI-5.4.0\uninstall.exe' + uninstall_flags: '-q' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,262 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,262 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,262 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,262 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,262 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:41:29,273 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,273 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,273 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +# just 32-bit x86 installer available + + + +# Source: http://software.informer.com/ +software-informer: + 'Not Found': + full_name: 'Software Informer' + installer: 'https://files.informer.com/siinst.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + uninstaller: '%ProgramFiles(x86)%\Software Informer\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,273 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,273 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,273 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,273 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:41:29,273 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,273 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,273 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +sourcetree: + + '2.3.1.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.4.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.11.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.2.5': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0.20.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.10.23.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + + + '1.9.13.7': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.9.20': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.6.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.8.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.7.0.32509': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6.25': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.5.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.4.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.3.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.2.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.1.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.0.8': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '0.9.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,290 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,290 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,290 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,290 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,290 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:41:29,290 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.013714075088500977 +2020-03-06 10:41:29,304 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +# just 32-bit x86 installer available + + + +spybot-anti-beacon: + '1.6': + full_name: 'Spybot Anti-Beacon' + installer: 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot Anti-Beacon\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,304 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,304 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,304 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:41:29,304 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,304 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.safer-networking.org/ +spybot: + '2.4': + full_name: 'Spybot - Search & Destroy' + installer: 'http://spybotupdates.com/files/spybot-2.4.exe' + install_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot - Search & Destroy 2\unins000.exe' + uninstall_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + msiexec: False + locale: en_US + reboot: False +# alternative download URLs +# http://www.spybotupdates.biz/files/spybot-2.4.exe +# http://spybot-mirror.com/files/spybot-2.4.exe + +2020-03-06 10:41:29,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,304 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,320 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,320 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,320 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:41:29,320 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,320 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,320 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +sscserv-free: + + '3.6.1': + full_name: 'SSC Serv 3.6.1 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '3.5.0': + full_name: 'SSC Serv 3.5.0 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,320 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,320 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,320 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,320 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:41:29,334 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,335 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0004730224609375 +2020-03-06 10:41:29,335 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +steam: + latest: + full_name: 'Steam' + installer: 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe' + install_flags: '/S' + uninstaller: + "C:\\Program Files (x86)\\Steam\\uninstaller.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:41:29,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,335 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,335 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,335 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,335 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:41:29,335 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,335 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,335 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +stellarium: + '0.16.1': + full_name: 'Stellarium 0.16.1' + + installer: 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe' + + install_flags: '/silent' + uninstaller: '%ProgramFiles%\Stellarium\unins000.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,351 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.015956640243530273 +2020-03-06 10:41:29,351 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,351 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,351 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:41:29,351 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,351 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,351 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +strawberryperl_x64: + + '5.26.1001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,351 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,351 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,351 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,366 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:41:29,366 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,366 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +strawberryperl_x86: + + '5.26.1001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,366 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,366 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:41:29,366 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,366 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,366 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +# just 32-bit x86 installer available + + + +stunnel: + '5.30': + full_name: 'stunnel installed for AllUsers' + installer: 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\stunnel\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,381 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,381 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,381 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:41:29,381 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,381 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,381 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +subinacl: + '5.2.3790.1164': + full_name: 'Windows Resource Kit Tools - SubInAcl.exe' + installer: 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,381 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,381 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,381 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,381 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:41:29,381 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.016124486923217773 +2020-03-06 10:41:29,397 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: + + + +sumatrapdf: + '3.1.2': + full_name: 'SumatraPDF' + installer: 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe' + install_flags: '/s /opt' + uninstaller: '%ProgramFiles%\SumatraPDF\uninstall.exe' + uninstall_flags: '/s' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,397 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,397 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:41:29,397 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,397 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +svn: + '1.8.13': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.8.11': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,397 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,397 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,397 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,397 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:41:29,413 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,413 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,413 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer: + latest: + full_name: 'TeamViewer 14' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,413 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,413 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:41:29,413 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,413 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,429 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer_host: + latest: + full_name: 'TeamViewer 14 Host' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,429 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,429 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,429 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:41:29,429 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,429 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,429 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +# just 32-bit x86 installer available + + + +teracopy: + 'Not Found': + full_name: 'TeraCopy 2.3' + installer: 'http://storage.googleapis.com/codesector/teracopy.exe' + install_flags: | + '/SP- /verysilent /suppressmsgboxes /norestart & + reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeraCopy_is1 /v DisplayVersion /d 2.3 & + exit 0' + uninstaller: '%ProgramFiles(x86)%\TeraCopy\unins000.exe' + uninstall_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,429 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,429 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,444 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:41:29,444 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,444 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,444 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +# just 32-bit x86 installer available + + + +texmaker: + 'Not Found': + full_name: 'Texmaker' + installer: 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Texmaker\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,444 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,444 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:41:29,444 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,444 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,444 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: + +texniccenter: + '2.02 Stable': + full_name: 'TeXnicCenter Version 2.02 Stable' + + installer: 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES%\TeXnicCenter\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,459 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,460 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0007879734039306641 +2020-03-06 10:41:29,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,460 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:41:29,460 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,460 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,460 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +# just 32-bit x86 installer available + + + +texstudio: + '2.10.8': + full_name: 'TeXstudio 2.10.8' + installer: 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXstudio\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,460 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,460 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:41:29,460 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,475 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.015484094619750977 +2020-03-06 10:41:29,475 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +# just 32-bit x86 installer available + + + +texworks: + '0.6.1': + full_name: 'TeXworks 0.6.1' + installer: 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXworks\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,475 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,475 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:41:29,475 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,475 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,492 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +# just 32-bit x86 installer available + + + +thunderbird: + + '60.6.1': + full_name: 'Mozilla Thunderbird 60.6.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Thunderbird 60.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.3': + full_name: 'Mozilla Thunderbird 60.5.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Thunderbird 60.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Thunderbird 60.5.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Thunderbird 60.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Thunderbird 60.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.3': + full_name: 'Mozilla Thunderbird 60.3.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.2': + full_name: 'Mozilla Thunderbird 60.3.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.1': + full_name: 'Mozilla Thunderbird 60.3.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Thunderbird 60.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Thunderbird 60.2.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Thunderbird 60.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.1': + full_name: 'Mozilla Thunderbird 52.9.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Thunderbird 52.9.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Thunderbird 52.8.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Thunderbird 52.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Thunderbird 52.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Thunderbird 52.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Thunderbird 45.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Thunderbird 45.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Thunderbird 38.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Thunderbird 38.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Thunderbird 38.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Thunderbird 38.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.0': + full_name: 'Mozilla Thunderbird 38.2.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.1.0': + full_name: 'Mozilla Thunderbird 38.1.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,492 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,492 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,492 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,492 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:41:29,492 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,507 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.01551675796508789 +2020-03-06 10:41:29,507 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +tightvnc: + + + '2.8.27.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.23.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.11.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.8.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.5.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.2.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.7.10.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,507 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,507 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,507 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:41:29,507 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,523 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.01561737060546875 +2020-03-06 10:41:29,523 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +todotxt.net: + 'Not Found': + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + full_name: 'todotxt.net v3.2.0.0' + installer: 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Hughesoft\todotxt.net\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,523 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,523 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,523 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,523 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,523 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:41:29,523 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,523 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,523 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +todour: + '2.03': + full_name: 'Todour version 2.03' + installer: 'https://nerdur.com/Todour-2.03.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Todour\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,523 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,523 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,537 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,538 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:41:29,538 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,538 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +# just 32-bit x86 installer available + + + +# Source: http://wiki.bazaar.canonical.com/ +tortoise-bzr: + '2.5.1-1': + full_name: 'Bazaar 2.5.1' + installer: 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Bazaar\uninst000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,538 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,538 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,538 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:41:29,538 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,553 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.014663934707641602 +2020-03-06 10:41:29,553 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +# Source: https://tortoisegit.org/ +tortoise-git: + + '2.8.0.0': + + full_name: 'TortoiseGit 2.8.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.7.0.0': + + full_name: 'TortoiseGit 2.7.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.6.0.0': + + full_name: 'TortoiseGit 2.6.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.5.0.0': + + full_name: 'TortoiseGit 2.5.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.4.0.0': + + full_name: 'TortoiseGit 2.4.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.3.0.0': + + full_name: 'TortoiseGit 2.3.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0.0': + + full_name: 'TortoiseGit 2.2.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0.0': + + full_name: 'TortoiseGit 2.1.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0.0': + + full_name: 'TortoiseGit 2.0.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.16.0': + + full_name: 'TortoiseGit 1.8.16.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.15.0': + + full_name: 'TortoiseGit 1.8.15.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.14.0': + + full_name: 'TortoiseGit 1.8.14.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.13.0': + + full_name: 'TortoiseGit 1.8.13.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,553 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,553 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,553 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,553 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,553 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:41:29,553 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.01656484603881836 +2020-03-06 10:41:29,570 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +# Source: http://tortoisehg.bitbucket.org/ +tortoise-hg: + '3.6.2': + + full_name: 'TortoiseHg 3.6.2 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.3.0': + + full_name: 'TortoiseHg 3.3.0 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# Need to download from source site above, so it will append proper aws key credentials +# place downloaded msi in master's win_repo-ng + +2020-03-06 10:41:29,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,570 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,570 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:41:29,570 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,570 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +# Source: http://tortoisesvn.net/ +tortoise-svn: + '1.9.27285': + + full_name: 'TortoiseSVN 1.9.4.27285 (64 bit)' + installer: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + uninstaller: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,570 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,584 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,585 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:41:29,585 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,585 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +# just 32-bit x86 installer available + + + +truecrypt: + '7.1a': + full_name: 'TrueCrypt 7.1a' + installer: 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Truecrypt\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,585 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:41:29,585 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,585 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,601 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +ultradefrag: + '7.0.2': + full_name: 'Ultra Defragmenter' + + installer: 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe' + + install_flags: '/S /FULL=1' + uninstaller: '%ProgramFiles%\UltraDefrag\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,601 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,601 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:41:29,601 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,601 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,601 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +urlrewrite: + '7.2.1952': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.2.1980': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,601 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,616 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:41:29,616 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,616 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +usbdlm: + '5.2.7.0': + + full_name: 'USB Drive Letter Manager (x64)' + installer: http://www.uwe-sieber.de/files/usbdlm_x64.msi + uninstaller: http://www.uwe-sieber.de/files/usbdlm_x64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,616 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,616 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:41:29,616 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,632 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.01630997657775879 +2020-03-06 10:41:29,632 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +vagrant: + + + '2.2.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.8': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.014844894409179688 +2020-03-06 10:41:29,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,647 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:41:29,647 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,647 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +vcforpython27: + '9.0.1.30729': + full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' + installer: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,647 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,647 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:41:29,647 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.015992403030395508 +2020-03-06 10:41:29,663 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: + + + + +vcxsrv: + + '1.20.0.0': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.19.6.4': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,663 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:41:29,663 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,663 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,663 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: + + +verysleepy: + '0.90': + full_name: 'Very Sleepy CS version 0.90' + installer: 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe' + uninstaller: '%ProgramFiles%\Very Sleepy CS\unins000.exe' + install_flags: '/SP- /NORESTART /SILENT' + uninstall_flags: '/SILENT' + cache_dir: True + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,679 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:41:29,679 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,679 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +veyon: + + '4.0.7': + full_name: 'Veyon 4.0.7' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.0.6': + full_name: 'Veyon 4.0.6' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,679 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,694 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:41:29,694 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,694 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,694 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +# Version 5.1 and older are no longer supported by Oracle +# https://www.virtualbox.org/wiki/Download_Old_Builds + + + +virtualbox: + + '6.0.4': + full_name: 'Oracle VM VirtualBox 6.0.4' + installer: 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.2.26': + full_name: 'Oracle VM VirtualBox 5.2.26' + installer: 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.1.38': + full_name: 'Oracle VM VirtualBox 5.1.38' + installer: 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.0.40': + full_name: 'Oracle VM VirtualBox 5.0.40' + installer: 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart' + + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.01572394371032715 +2020-03-06 10:41:29,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,710 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:41:29,710 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,710 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: + + + + +viscosity: + + '1.7.14.1595': + full_name: Viscosity 1.7.14 (1595) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.7.12.1581': + full_name: Viscosity 1.7.12 (1581) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.6.8.1477': + full_name: Viscosity 1.6.8 (1477) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + +2020-03-06 10:41:29,710 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:41:29,710 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,725 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:41:29,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,725 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +#Vivaldi is a Chromium-based browser +#https://vivaldi.com + + + +vivaldi: + latest: + full_name: 'Vivaldi' + + installer: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + uninstaller: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + + install_flags: '--vivaldi-silent --do-not-launch-chrome --system-level' + uninstall_flags: '--uninstall --force-uninstall --system-level --vivaldi' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,725 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,725 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,725 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:41:29,725 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,742 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.016169071197509766 +2020-03-06 10:41:29,742 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +vlc: + + '3.0.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.5': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.4': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,742 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,742 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,742 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,742 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:41:29,742 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.015117645263671875 +2020-03-06 10:41:29,757 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +vs-community: + 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) + full_name: + Visual Studio Community 2017 + installer: + https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe + install_flags: + --quiet + --norestart + --wait + uninstaller: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe" + uninstall_flags: + /uninstall + --force + --quiet + --norestart + reboot: False + +2020-03-06 10:41:29,757 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,757 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:41:29,757 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,757 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,757 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +# due to winrepo installer limitations you need to manually download x86 + x64 System installer from +# https://code.visualstudio.com/Download +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... + + + +vscode: + + '1.36.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.36.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.37.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.37.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.38.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.38.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.2': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.2.exe' + installer: 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:29,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.015213727951049805 +2020-03-06 10:41:29,772 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,772 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,772 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:41:29,772 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,772 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +vsee: + '15.0.0.707': + full_name: 'VSee' + installer: 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe' + install_flags: '-no_autorun' + uninstaller: '%AppData%\VSeeInstall\vseeUninstall.exe' + uninstall_flags: '-no_confirm' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,772 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,772 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,772 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,772 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:41:29,787 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0005443096160888672 +2020-03-06 10:41:29,788 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +vs_remotetools_2017: + latest: + full_name: 'Remote Tools for Visual Studio 2017' + + installer: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + uninstaller: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + arch: x64 + + install_flags: '/install /passive /quiet' + uninstall_flags: '/uninstall /passive /quiet' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,788 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:41:29,788 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,788 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +wamp-server-3: + '3.1.3': + + full_name: 'Wampserver64 3.1.3' + installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe' + uninstaller: 'c:\wamp64\uninstall_services.bat' + uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,788 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,788 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,804 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:41:29,804 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,804 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,804 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: + + +wamp-stack: + + '7.1.27-1': + full_name: 'Bitnami WAMP Stack 7.1.27-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-7.1.27-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + '5.6.40-1': + full_name: 'Bitnami WAMP Stack 5.6.40-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-5.6.40-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,804 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,804 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,804 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,804 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:41:29,804 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.015260934829711914 +2020-03-06 10:41:29,819 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +webdeploy: + '3.1237.1764': + full_name: 'Microsoft Web Deploy 3.5' + + installer: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,819 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,819 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,819 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:41:29,819 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,819 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,819 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +webplatforminstaller: + '5.0.50430.0': + full_name: 'Microsoft Web Platform Installer 5.0' + + installer: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,835 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:41:29,835 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,835 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +# Source: http://winappmanager.herokuapp.com/ + + + +win-app-manager: + '15.01.11': + full_name: 'WinAppManager' + installer: 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinApp Manager\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,835 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,835 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,835 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:41:29,850 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,850 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,850 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: + + + +windirstat: + 'Not Found': + full_name: 'WinDirStat 1.1.2' + installer: 'http://download01.windirstat.info/windirstat1_1_2_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\WinDirStat\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,850 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,850 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:41:29,850 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,850 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,850 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +winhttpcertcfg: + '5.2.3790.1060': + full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' + installer: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:41:29,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,850 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,850 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,866 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:41:29,866 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,866 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: + + + + +winmerge: + + '2.16.0': + full_name: 'WinMerge 2.16.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.14.0': + full_name: 'WinMerge 2.14.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,866 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,866 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,866 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:41:29,866 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.015964031219482422 +2020-03-06 10:41:29,882 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +winmtr: + + '0.92': + + full_name: 'WinMTR_x64 0.92' + installer: 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe' + uninstaller: 'c:\utl\uninstall-winmtr_x64.exe' + + install_flags: '/D="c:\utl" /SILENT /NORESTART' + uninstall_flags: 'c:\utl\SSEun.dat /SILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +# download exe from winmtr.net +# create two installers using http://www.ssesetup.com/ + +2020-03-06 10:41:29,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,882 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,882 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:41:29,882 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,882 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +winpcap: + '4.1.0.2980': + full_name: 'WinPcap 4.1.3' + installer: 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\WinPcap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,882 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,897 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:41:29,897 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,897 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +#if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) + + +winrar: + + + '5.70.0': + + full_name: 'WinRAR 5.70 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-570.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.61.0': + + full_name: 'WinRAR 5.61 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-561.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:41:29,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,897 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,897 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,912 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:41:29,913 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,913 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,913 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: + + + +winscp: + + '5.17': + full_name: 'WinSCP 5.17' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.9': + full_name: 'WinSCP 5.15.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.7': + full_name: 'WinSCP 5.15.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.5': + full_name: 'WinSCP 5.15.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.4': + full_name: 'WinSCP 5.15.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.3': + full_name: 'WinSCP 5.15.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.2': + full_name: 'WinSCP 5.15.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.1': + full_name: 'WinSCP 5.15.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15': + full_name: 'WinSCP 5.15' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.9': + full_name: 'WinSCP 5.13.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.8': + full_name: 'WinSCP 5.13.8' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.7': + full_name: 'WinSCP 5.13.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.6': + full_name: 'WinSCP 5.13.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.5': + full_name: 'WinSCP 5.13.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.4': + full_name: 'WinSCP 5.13.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.3': + full_name: 'WinSCP 5.13.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.2': + full_name: 'WinSCP 5.13.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.1': + full_name: 'WinSCP 5.13.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13': + full_name: 'WinSCP 5.13' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.3': + full_name: 'WinSCP 5.11.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.2': + full_name: 'WinSCP 5.11.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.1': + full_name: 'WinSCP 5.11.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.6': + full_name: 'WinSCP 5.9.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.2': + full_name: 'WinSCP 5.9.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.1': + full_name: 'WinSCP 5.9.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9': + full_name: 'WinSCP 5.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,913 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,928 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,928 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,928 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:41:29,928 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,928 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,928 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +wireshark: + + '3.0.4': + + full_name: 'Wireshark 3.0.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + + full_name: 'Wireshark 3.0.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + + full_name: 'Wireshark 3.0.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + + full_name: 'Wireshark 3.0.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + + full_name: 'Wireshark 3.0.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.6': + + full_name: 'Wireshark 2.6.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.5': + + full_name: 'Wireshark 2.6.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.4': + + full_name: 'Wireshark 2.6.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.3': + + full_name: 'Wireshark 2.6.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.2': + + full_name: 'Wireshark 2.6.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.1': + + full_name: 'Wireshark 2.6.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.0': + + full_name: 'Wireshark 2.6.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.12': + + full_name: 'Wireshark 2.4.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.11': + + full_name: 'Wireshark 2.4.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.10': + + full_name: 'Wireshark 2.4.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.9': + + full_name: 'Wireshark 2.4.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.8': + + full_name: 'Wireshark 2.4.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.7': + + full_name: 'Wireshark 2.4.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.6': + + full_name: 'Wireshark 2.4.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.5': + + full_name: 'Wireshark 2.4.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.4': + + full_name: 'Wireshark 2.4.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.3': + + full_name: 'Wireshark 2.4.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.2': + + full_name: 'Wireshark 2.4.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.1': + + full_name: 'Wireshark 2.4.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.0': + + full_name: 'Wireshark 2.4.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.17': + + full_name: 'Wireshark 2.2.17 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.16': + + full_name: 'Wireshark 2.2.16 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.15': + + full_name: 'Wireshark 2.2.15 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.14': + + full_name: 'Wireshark 2.2.14 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.13': + + full_name: 'Wireshark 2.2.13 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.12': + + full_name: 'Wireshark 2.2.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.11': + + full_name: 'Wireshark 2.2.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.10': + + full_name: 'Wireshark 2.2.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.9': + + full_name: 'Wireshark 2.2.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + + full_name: 'Wireshark 2.2.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.7': + + full_name: 'Wireshark 2.2.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + + full_name: 'Wireshark 2.2.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.5': + + full_name: 'Wireshark 2.2.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + + full_name: 'Wireshark 2.2.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.3': + + full_name: 'Wireshark 2.2.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2': + + full_name: 'Wireshark 2.2.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + + full_name: 'Wireshark 2.2.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0': + + full_name: 'Wireshark 2.2.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:29,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,945 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.016112804412841797 +2020-03-06 10:41:29,945 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,945 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,945 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:41:29,945 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,945 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,945 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +# source: http://www.kls-soft.com/wscc/ +wscc: + '2.5.0.4': + full_name: 'WSCC 2.5.0.4' + installer: 'http://www.kls-soft.com/downloads/wscc_setup.exe' + install_flags: '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + + uninstaller: '%PROGRAMFILES(x86)%\WSCC\unins000.exe' + + uninstall_flags: '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,959 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.014844894409179688 +2020-03-06 10:41:29,959 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,959 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,959 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:41:29,959 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,959 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,959 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +# Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 +# https://github.com/zeffy/wufuc + + + + + + +wufuc: + + '1.0.1.201': + full_name: 'wufuc' + installer: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:41:29,959 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,959 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,959 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,975 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:41:29,975 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,975 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +xampp: + '7.2.6.0': + full_name: 'XAMPP 7.2.6' + installer: 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe' + install_flags: '--mode unattended' + uninstaller: 'c:\xampp\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,975 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,975 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,975 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:41:29,975 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,975 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +# just 32-bit x86 installer available + + + +# http://www.straightrunning.com/XmingNotes/setupcmdline.htm +xming: + '6.9.0.31': + full_name: 'Xming 6.9.0.31' + installer: 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe' + install_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + uninstaller: '%ProgramFiles(x86)%\Xming\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:41:29,975 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,975 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:29,991 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:41:29,991 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:29,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:29,991 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: + + +yubikey-manager: + + '1.1.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.2': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + +2020-03-06 10:41:29,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:41:29,991 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:29,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:29,991 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,007 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:41:30,007 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,007 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +yubikey-personalization-tool: + '3.1.24': + full_name: 'YubiKey Personalization Tool' + installer: 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe' + install_flags: '/S' + uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:41:30,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:41:30,007 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,007 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,023 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,023 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:41:30,023 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,023 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,023 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.2.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.5.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.6.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.0.9.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.10.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.11.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.12.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.13.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.14.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.15.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.16.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:41:30,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:30,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.015603065490722656 +2020-03-06 10:41:30,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,038 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:41:30,038 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,038 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: + +zoom: + latest: + full_name: 'Zoom' + installer: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:41:30,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:41:30,038 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,053 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:41:30,053 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,053 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +# Software Definition File for Elasticsearch Auditbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +auditbeat: + + '7.3.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:41:30,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,053 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,053 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,053 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:41:30,053 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.015224218368530273 +2020-03-06 10:41:30,069 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +chocolatey: + latest: + full_name: 'Chocolatey' + installer: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd' + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd' + cache_dir: True + +# this software also has it's own salt execution module, which you might prefer to use, see +# http://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html +# for usage examples see +# https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 + + +2020-03-06 10:41:30,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,069 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:41:30,069 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,069 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: + + + + +erlang: + + '19.3': + full_name: 'Erlang OTP 19 (8.3)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"' + uninstaller: '%ProgramFiles%\erl8.3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '21.0.1': + full_name: 'Erlang OTP 21 (10.0.1)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"' + uninstaller: '%ProgramFiles%\erl10.0.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:41:30,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:41:30,069 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,085 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:41:30,085 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,085 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,085 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +# Software Definition File for Elasticsearch Filebeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +filebeat: + + '7.3.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:41:30,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.015427827835083008 +2020-03-06 10:41:30,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,100 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,100 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:41:30,100 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,100 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,100 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +# Software Definition File for Elasticsearch Functionbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +functionbeat: + + '7.3.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:41:30,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,116 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,116 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,116 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,116 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:41:30,116 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,116 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,116 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +# just 32-bit x86 installer available + + + + +gpg4win: + + 3.1.7: + full_name: 'Gpg4win (3.1.7)' + installer: 'http://files.gpg4win.org/gpg4win-3.1.7.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.3: + full_name: 'Gpg4win (3.0.3)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.0: + full_name: 'Gpg4win (3.0.0)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.4: + full_name: 'Gpg4win (2.3.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.3: + full_name: 'Gpg4win (2.3.3)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.2: + full_name: 'Gpg4win (2.3.2)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.2.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.1: + full_name: 'Gpg4win (2.3.1)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.1.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.0: + full_name: 'Gpg4win (2.3.0)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.2.4: + full_name: 'Gpg4win (2.2.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.2.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + +2020-03-06 10:41:30,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:41:30,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.015447854995727539 +2020-03-06 10:41:30,132 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,132 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,132 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:41:30,132 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,132 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +# Software Definition File for Elasticsearch Heartbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +heartbeat: + + '7.3.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:41:30,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,132 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,147 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:41:30,147 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,147 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,147 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +# Software Definition File for Elasticsearch Metricbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +metricbeat: + + '7.3.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:41:30,147 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,147 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,147 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,163 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:41:30,163 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,163 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +# Software Definition File for Elasticsearch Packetbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +packetbeat: + + '7.3.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:41:30,163 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,163 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,163 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,163 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:41:30,163 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.015821218490600586 +2020-03-06 10:41:30,179 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: + + + + + +pycharm-pro: + + 191.6605.12: + installer: 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe' + full_name: 'JetBrains Pycharm 2019.1.1' + install_flags: '/S /CONFIG=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\silent.config' + cache_file: salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config + uninstaller: '%ProgramFiles(x86)%\JetBrains\PyCharm 2019.1.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + reboot: False + + +2020-03-06 10:41:30,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:41:30,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,179 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:41:30,179 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,179 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,179 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +# just 32-bit x86 installer available + + + +stayawake: + + '1.0': + full_name: 'StayAwake' + installer: 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd' + install_flags: '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"' + uninstaller: '%PROGRAMFILES(x86)%\StayAwake\uninstall.exe' + uninstall_flags: '/S' + + +2020-03-06 10:41:30,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) +2020-03-06 10:41:30,194 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,194 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:41:30,194 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,194 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,194 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +# Software Definition File for Elasticsearch Winlogbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +winlogbeat: + + '7.3.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:41:30,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,194 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,210 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:41:30,210 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:41:30,210 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +############################################################# +# Windows +############################################################# +# + + +2020-03-06 10:41:30,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +{} +2020-03-06 10:41:30,210 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,210 [salt.loaded.int.module.win_pkg:1213][DEBUG ][5796] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:41:30,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:30,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:30,210 [salt.template :59 ][DEBUG ][5796] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:41:30,210 [salt.utils.jinja :85 ][DEBUG ][5796] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:41:30,225 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.015087604522705078 +2020-03-06 10:41:30,225 [salt.template :120 ][DEBUG ][5796] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +# only 32-bit (x86) installer available + + + +zipinstaller: + '1.21': + full_name: 'ZipInstaller' + installer: 'salt://win/repo-ng/zipinstaller/zipinst.exe' + + install_flags: '/i zipinst_x64.zip' + + uninstaller: 'zipinst.exe' + uninstall_flags: '/uninst "c:\utl\uninst1~.nsu"' + msiexec: False + locale: en_US + reboot: False + cache_dir: True +# Description: +# This is a 32-bit zip archive program installer that installes directly from zip archives and creates shortcuts and un-install entries +# automatically, exactly as defined in a simple '~zipinst~.zic' if it finds it inside the zip archive. +# +# All it takes is calling up 'zipinst.exe /i .zip' that contains a file called '~zipinst~.zic', which itself is in *.ini file +# format and contains, directives about where it should install etc. +# +# Source: +# http://www.nirsoft.net/utils/zipinst.html +# http://www.nirsoft.net/utils/zipinst.exe +# http://www.nirsoft.net/utils/zipinst.zip (need to add '~zipinst~.zic' to it) +# you have to insert the '~zipinst~.zic' file into the 'zipinst.zip' file +# and place the resulting zipinst.zip into the 'salt://win/repo-ng/zipinstaller/' on your master +# as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache +# + +2020-03-06 10:41:30,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][5796] Results of YAML rendering: +OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) +2020-03-06 10:41:30,225 [salt.template :26 ][PROFILE ][5796] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:41:30,241 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:41:30,241 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:41:30,272 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: Volume in drive C is Windows 10 + Volume Serial Number is 9432-5789 + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + +03/06/2020 01:41 PM . +03/06/2020 01:41 PM .. +03/06/2020 01:41 PM 927 7zip.sls +03/06/2020 01:41 PM 723 activeperl_x64.sls +03/06/2020 01:41 PM 973 activeperl_x86.sls +03/06/2020 01:41 PM 798 adobeair.sls +03/06/2020 01:41 PM 956 adobereader-dc-classic.sls +03/06/2020 01:41 PM 851 adobereader-xi.sls +03/06/2020 01:41 PM 830 adobereader.sls +03/06/2020 01:41 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:41 PM 775 adv-ip-scanner.sls +03/06/2020 01:41 PM 787 adv-port-scanner.sls +03/06/2020 01:41 PM 769 advancedlogging.sls +03/06/2020 01:41 PM 373 anydesk-msi.sls +03/06/2020 01:41 PM 597 anydesk.sls +03/06/2020 01:41 PM 803 applicationrequestrouting.sls +03/06/2020 01:41 PM 370 aspnet-mvc1.sls +03/06/2020 01:41 PM 439 atom.sls +03/06/2020 01:41 PM 655 audacity.sls +03/06/2020 01:41 PM auditbeat +03/06/2020 01:41 PM 1,768 autohotkey.sls +03/06/2020 01:41 PM 611 autoit.sls +03/06/2020 01:41 PM 670 autopsy.sls +03/06/2020 01:41 PM 659 awscli.sls +03/06/2020 01:41 PM 799 azuredatastudio.sls +03/06/2020 01:41 PM 422 bandizip.sls +03/06/2020 01:41 PM 563 belarc-advisor.sls +03/06/2020 01:41 PM 367 bginfo4x.sls +03/06/2020 01:41 PM 547 bitnami-nginxstack.sls +03/06/2020 01:41 PM 568 bitvise.sls +03/06/2020 01:41 PM 777 blender.sls +03/06/2020 01:41 PM 395 bootracer.sls +03/06/2020 01:41 PM 664 bulkrenameutility.sls +03/06/2020 01:41 PM 661 bulk_extractor.sls +03/06/2020 01:41 PM 476 ccleaner-slim.sls +03/06/2020 01:41 PM 445 ccleaner.sls +03/06/2020 01:41 PM 606 cdburnerxp.sls +03/06/2020 01:41 PM 594 cdroller.sls +03/06/2020 01:41 PM 658 check-mk-agent-msi.sls +03/06/2020 01:41 PM 451 check-mk-agent.sls +03/06/2020 01:41 PM chocolatey +03/06/2020 01:41 PM 394 chrome-rdp.sls +03/06/2020 01:41 PM 375 chrome.sls +03/06/2020 01:41 PM 1,296 clamav.sls +03/06/2020 01:41 PM 1,200 clamwin.sls +03/06/2020 01:41 PM 500 classicshell.sls +03/06/2020 01:41 PM 1,521 clink.sls +03/06/2020 01:41 PM 617 conemu.sls +03/06/2020 01:41 PM 687 cpu-z.sls +03/06/2020 01:41 PM 2,833 curl.sls +03/06/2020 01:41 PM 374 cyberduck-cli.sls +03/06/2020 01:41 PM 616 cyberduck-msi.sls +03/06/2020 01:41 PM 639 cyberduck.sls +03/06/2020 01:41 PM 751 defraggler.sls +03/06/2020 01:41 PM 2,637 dotnet.sls +03/06/2020 01:41 PM 643 dropbox.sls +03/06/2020 01:41 PM 683 duplicati.sls +03/06/2020 01:41 PM 712 dvdstyler.sls +03/06/2020 01:41 PM 737 echo-desktop.sls +03/06/2020 01:41 PM 1,327 eea.sls +03/06/2020 01:41 PM 423 emet.sls +03/06/2020 01:41 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:41 PM 721 eraser.sls +03/06/2020 01:41 PM erlang +03/06/2020 01:41 PM 982 evernote.sls +03/06/2020 01:41 PM 531 fiddler.sls +03/06/2020 01:41 PM filebeat +03/06/2020 01:41 PM 660 filehippo-app-manager.sls +03/06/2020 01:41 PM 1,271 filezilla.sls +03/06/2020 01:41 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:41 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:41 PM 1,365 firefox_x64.sls +03/06/2020 01:41 PM 1,870 firefox_x86.sls +03/06/2020 01:41 PM functionbeat +03/06/2020 01:41 PM 552 gedit.sls +03/06/2020 01:41 PM 822 gimp.sls +03/06/2020 01:41 PM 953 git-extensions.sls +03/06/2020 01:41 PM 3,855 git.sls +03/06/2020 01:41 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:41 PM 563 gnucash.sls +03/06/2020 01:41 PM 2,152 golang.sls +03/06/2020 01:41 PM 320 goodsync.sls +03/06/2020 01:41 PM 601 gow.sls +03/06/2020 01:41 PM gpg4win +03/06/2020 01:41 PM 847 gpg4win-light.sls +03/06/2020 01:41 PM 621 gpg4win-vanilla.sls +03/06/2020 01:41 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:41 PM 2,661 grepwin.sls +03/06/2020 01:41 PM 505 gvim.sls +03/06/2020 01:41 PM 622 handbrake.sls +03/06/2020 01:41 PM heartbeat +03/06/2020 01:41 PM 503 hipchat.sls +03/06/2020 01:41 PM 771 hostsfileeditor.sls +03/06/2020 01:41 PM 623 hwinfo.sls +03/06/2020 01:41 PM 339 ice.sls +03/06/2020 01:41 PM 493 icecast.sls +03/06/2020 01:41 PM 377 icloud.sls +03/06/2020 01:41 PM 2,197 iismediaservices.sls +03/06/2020 01:41 PM 358 influx-capacitor.sls +03/06/2020 01:41 PM 644 inkscape.sls +03/06/2020 01:41 PM 646 intellij-community.sls +03/06/2020 01:41 PM 618 intellij-ultimate.sls +03/06/2020 01:41 PM 360 internet-evidence-finder.sls +03/06/2020 01:41 PM 702 irfanview-plugins.sls +03/06/2020 01:41 PM 1,610 irfanview.sls +03/06/2020 01:41 PM 697 isapirewrite-lite.sls +03/06/2020 01:41 PM 2,602 itunes.sls +03/06/2020 01:41 PM 1,279 jdk8.sls +03/06/2020 01:41 PM 1,200 jre.sls +03/06/2020 01:41 PM 1,480 jre8.sls +03/06/2020 01:41 PM 995 jungledisk-server-management.sls +03/06/2020 01:41 PM 891 jungledisk-server.sls +03/06/2020 01:41 PM 921 jungledisk-workgroup.sls +03/06/2020 01:41 PM 518 kdiff3.sls +03/06/2020 01:41 PM 1,091 keepass-2x.sls +03/06/2020 01:41 PM 2,655 keepass.sls +03/06/2020 01:41 PM 673 lastpass.sls +03/06/2020 01:41 PM 1,329 lazarus.sls +03/06/2020 01:41 PM 951 libreoffice.sls +03/06/2020 01:41 PM 419 logparser.sls +03/06/2020 01:41 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:41 PM 722 malwarebytes.sls +03/06/2020 01:41 PM 1,884 mariadb.sls +03/06/2020 01:41 PM 653 mercurial.sls +03/06/2020 01:41 PM 649 messageanalyzer.sls +03/06/2020 01:41 PM metricbeat +03/06/2020 01:41 PM 603 microsoft-build-tools.sls +03/06/2020 01:41 PM 317 mikogo.sls +03/06/2020 01:41 PM 766 miktex-basic.sls +03/06/2020 01:41 PM 787 mongodb.sls +03/06/2020 01:41 PM 831 ms-mbsa.sls +03/06/2020 01:41 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:41 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:41 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:41 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:41 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:41 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:41 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:41 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:41 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:41 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:41 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:41 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:41 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:41 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:41 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:41 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:41 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:41 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:41 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:41 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:41 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:41 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:41 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:41 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:41 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:41 PM 585 mucommander.sls +03/06/2020 01:41 PM 638 mysql-essential.sls +03/06/2020 01:41 PM 632 mysql-installer-community.sls +03/06/2020 01:41 PM 639 mysql-workbench.sls +03/06/2020 01:41 PM 298 never10.sls +03/06/2020 01:41 PM 929 newrelic-infra.sls +03/06/2020 01:41 PM 526 nextcloud-client.sls +03/06/2020 01:41 PM 584 nmap.sls +03/06/2020 01:41 PM 709 node.js-lts.sls +03/06/2020 01:41 PM 733 node.js.sls +03/06/2020 01:41 PM 368 nomacs.sls +03/06/2020 01:41 PM 985 npp.sls +03/06/2020 01:41 PM 1,252 nsclient.sls +03/06/2020 01:41 PM 826 nsis.sls +03/06/2020 01:41 PM 902 ntp.sls +03/06/2020 01:41 PM 793 nunit-console.sls +03/06/2020 01:41 PM 363 nxlog.sls +03/06/2020 01:41 PM 1,081 octopus-tentacle.sls +03/06/2020 01:41 PM 678 openlp.sls +03/06/2020 01:41 PM 1,192 openoffice.sls +03/06/2020 01:41 PM 2,130 openvpn.sls +03/06/2020 01:41 PM 587 osquery.sls +03/06/2020 01:41 PM 878 ossec-agent.sls +03/06/2020 01:41 PM 590 owncloud.sls +03/06/2020 01:41 PM packetbeat +03/06/2020 01:41 PM 400 pandoc.sls +03/06/2020 01:41 PM 814 parallels-client-15.sls +03/06/2020 01:41 PM 1,709 pass4win.sls +03/06/2020 01:41 PM 378 passware-kit-agent.sls +03/06/2020 01:41 PM 416 passware-kit-forensic.sls +03/06/2020 01:41 PM 656 patchmypc-free.sls +03/06/2020 01:41 PM 638 pdf24creator.sls +03/06/2020 01:41 PM 567 pdfcreator.sls +03/06/2020 01:41 PM 611 peazip.sls +03/06/2020 01:41 PM 812 pgadmin4.sls +03/06/2020 01:41 PM 235 pgina.sls +03/06/2020 01:41 PM 617 pidgin.sls +03/06/2020 01:41 PM 1,898 postgresql.sls +03/06/2020 01:41 PM 997 powerbi-desktop.sls +03/06/2020 01:41 PM 864 powershell-core.sls +03/06/2020 01:41 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:41 PM 1,488 putty.sls +03/06/2020 01:41 PM pycharm-pro +03/06/2020 01:41 PM 567 python2_x64.sls +03/06/2020 01:41 PM 526 python2_x86.sls +03/06/2020 01:41 PM 1,540 python3_x64.sls +03/06/2020 01:41 PM 1,435 python3_x86.sls +03/06/2020 01:41 PM 449 qemu.sls +03/06/2020 01:41 PM 562 queueexplorerpro.sls +03/06/2020 01:41 PM 1,542 quicktime.sls +03/06/2020 01:41 PM 495 rabbitmq.sls +03/06/2020 01:41 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:41 PM 375 rakudo-star_x64.sls +03/06/2020 01:41 PM 888 rasclient.sls +03/06/2020 01:41 PM 444 rdcman.sls +03/06/2020 01:41 PM 609 rocketchat.sls +03/06/2020 01:41 PM 526 rubyinstaller_x64.sls +03/06/2020 01:41 PM 551 rubyinstaller_x86.sls +03/06/2020 01:41 PM 3,719 salt-minion-py2.sls +03/06/2020 01:41 PM 2,050 salt-minion-py3.sls +03/06/2020 01:41 PM 562 sandboxie.sls +03/06/2020 01:41 PM 581 scaleout.sls +03/06/2020 01:41 PM 476 secunia.psi.sls +03/06/2020 01:41 PM 1,190 sensu.sls +03/06/2020 01:41 PM 1,827 sharpdevelop.sls +03/06/2020 01:41 PM 539 skitch.sls +03/06/2020 01:41 PM 1,533 skype-msi.sls +03/06/2020 01:41 PM 708 skype.sls +03/06/2020 01:41 PM 1,244 slack-machine-msi.sls +03/06/2020 01:41 PM 1,023 slack-user-msi.sls +03/06/2020 01:41 PM 329 slack.sls +03/06/2020 01:41 PM 591 smartmontools.sls +03/06/2020 01:41 PM 556 snmptools.sls +03/06/2020 01:41 PM 653 soapui.sls +03/06/2020 01:41 PM 623 software-informer.sls +03/06/2020 01:41 PM 1,039 sourcetree.sls +03/06/2020 01:41 PM 591 spybot-anti-beacon.sls +03/06/2020 01:41 PM 765 spybot.sls +03/06/2020 01:41 PM 664 sscserv-free.sls +03/06/2020 01:41 PM stayawake +03/06/2020 01:41 PM 443 steam.sls +03/06/2020 01:41 PM 658 stellarium.sls +03/06/2020 01:41 PM 540 strawberryperl_x64.sls +03/06/2020 01:41 PM 531 strawberryperl_x86.sls +03/06/2020 01:41 PM 521 stunnel.sls +03/06/2020 01:41 PM 398 subinacl.sls +03/06/2020 01:41 PM 467 sumatrapdf.sls +03/06/2020 01:41 PM 769 svn.sls +03/06/2020 01:41 PM 534 teamviewer.sls +03/06/2020 01:41 PM 549 teamviewer_host.sls +03/06/2020 01:41 PM 749 teracopy.sls +03/06/2020 01:41 PM 491 texmaker.sls +03/06/2020 01:41 PM 709 texniccenter.sls +03/06/2020 01:41 PM 639 texstudio.sls +03/06/2020 01:41 PM 643 texworks.sls +03/06/2020 01:41 PM 937 thunderbird.sls +03/06/2020 01:41 PM 1,014 tightvnc.sls +03/06/2020 01:41 PM 623 todotxt.net.sls +03/06/2020 01:41 PM 551 todour.sls +03/06/2020 01:41 PM 630 tortoise-bzr.sls +03/06/2020 01:41 PM 983 tortoise-git.sls +03/06/2020 01:41 PM 1,367 tortoise-hg.sls +03/06/2020 01:41 PM 897 tortoise-svn.sls +03/06/2020 01:41 PM 503 truecrypt.sls +03/06/2020 01:41 PM 662 ultradefrag.sls +03/06/2020 01:41 PM 1,598 urlrewrite.sls +03/06/2020 01:41 PM 560 usbdlm.sls +03/06/2020 01:41 PM 1,361 vagrant.sls +03/06/2020 01:41 PM 479 vcforpython27.sls +03/06/2020 01:41 PM 820 vcxsrv.sls +03/06/2020 01:41 PM 434 verysleepy.sls +03/06/2020 01:41 PM 611 veyon.sls +03/06/2020 01:41 PM 2,570 virtualbox.sls +03/06/2020 01:41 PM 794 viscosity.sls +03/06/2020 01:41 PM 657 vivaldi.sls +03/06/2020 01:41 PM 739 vlc.sls +03/06/2020 01:41 PM 713 vs-community.sls +03/06/2020 01:41 PM 1,388 vscode.sls +03/06/2020 01:41 PM 325 vsee.sls +03/06/2020 01:41 PM 640 vs_remotetools_2017.sls +03/06/2020 01:41 PM 835 wamp-server-3.sls +03/06/2020 01:41 PM 585 wamp-stack.sls +03/06/2020 01:41 PM 775 webdeploy.sls +03/06/2020 01:41 PM 842 webplatforminstaller.sls +03/06/2020 01:41 PM 610 win-app-manager.sls +03/06/2020 01:41 PM 467 windirstat.sls +03/06/2020 01:41 PM 468 winhttpcertcfg.sls +03/06/2020 01:41 PM winlogbeat +03/06/2020 01:41 PM 618 winmerge.sls +03/06/2020 01:41 PM 737 winmtr.sls +03/06/2020 01:41 PM 288 winpcap.sls +03/06/2020 01:41 PM 825 winrar.sls +03/06/2020 01:41 PM 828 winscp.sls +03/06/2020 01:41 PM 1,136 wireshark.sls +03/06/2020 01:41 PM wmi_provider +03/06/2020 01:41 PM 539 wscc.sls +03/06/2020 01:41 PM 726 wufuc.sls +03/06/2020 01:41 PM 352 xampp.sls +03/06/2020 01:41 PM 649 xming.sls +03/06/2020 01:41 PM 621 yubikey-manager.sls +03/06/2020 01:41 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:41 PM 1,119 zabbix-agent.sls +03/06/2020 01:41 PM zipinstaller +03/06/2020 01:41 PM 278 zoom.sls + 284 File(s) 232,192 bytes + 16 Dir(s) 41,601,548,288 bytes free +2020-03-06 10:41:30,272 [salt.state :938 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:41:30,287 [salt.state :320 ][INFO ][5796] {'pkg.refresh_db': {'failed': 0, 'success': 298, 'total': 298}} +2020-03-06 10:41:30,288 [salt.state :1997][INFO ][5796] Completed state [pkg.refresh_db] at time 10:41:30.288144 (duration_in_ms=6687.456) +2020-03-06 10:41:30,288 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:41:30,288 [salt.state :1819][INFO ][5796] Running state [kdiff3] at time 10:41:30.288144 +2020-03-06 10:41:30,288 [salt.state :1852][INFO ][5796] Executing state pkg.installed for [kdiff3] +2020-03-06 10:41:30,304 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:41:30,304 [salt.loaded.int.module.win_pkg:802 ][INFO ][5796] Refresh skipped, age of winrepo metadata in seconds (0.07848358154296875) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:41:30,304 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.078484) +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,412 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,413 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:41:30,431 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:41:30,448 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:41:30,448 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.222551) +2020-03-06 10:41:30,448 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,462 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:30,475 [salt.utils.http :234 ][DEBUG ][5796] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:41:30,475 [salt.utils.http :235 ][DEBUG ][5796] Using backend: tornado +2020-03-06 10:41:34,414 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:41:34,944 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.718733) +2020-03-06 10:41:34,944 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,961 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,961 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,961 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,961 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,961 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,961 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,961 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,975 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,975 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,975 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,975 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,975 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:34,975 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,007 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:41:35,007 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.781716) +2020-03-06 10:41:35,007 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,022 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,022 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,022 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,022 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,022 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,022 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,022 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,041 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,041 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,041 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,041 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,041 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,041 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:35,054 [salt.state :320 ][INFO ][5796] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:41:35,054 [salt.state :1000][DEBUG ][5796] Refreshing modules... +2020-03-06 10:41:35,084 [salt.state :966 ][INFO ][5796] Loading fresh modules for state activity +2020-03-06 10:41:35,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:35,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:35,179 [salt.state :1997][INFO ][5796] Completed state [kdiff3] at time 10:41:35.179133 (duration_in_ms=4890.989) +2020-03-06 10:41:35,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded config.option +2020-03-06 10:41:35,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pkg.install +2020-03-06 10:41:35,194 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pkg.installed +2020-03-06 10:41:35,194 [salt.state :1819][INFO ][5796] Running state [7zip] at time 10:41:35.194300 +2020-03-06 10:41:35,194 [salt.state :1852][INFO ][5796] Executing state pkg.installed for [7zip] +2020-03-06 10:41:35,928 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt.secret_key, ret: _|- +2020-03-06 10:41:35,928 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt:secret_key, ret: _|- +2020-03-06 10:41:36,257 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet.api_key, ret: _|- +2020-03-06 10:41:36,257 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet:api_key, ret: _|- +2020-03-06 10:41:36,513 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded reg.read_value +2020-03-06 10:41:36,636 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops.api_key, ret: _|- +2020-03-06 10:41:36,636 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops:api_key, ret: _|- +2020-03-06 10:41:43,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded platform.is_windows +2020-03-06 10:41:43,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded path.which +2020-03-06 10:41:43,553 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:41:43,553 [salt.loaded.int.module.win_pkg:802 ][INFO ][5796] Refresh skipped, age of winrepo metadata in seconds (13.32811188697815) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:41:43,553 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:13.328112) +2020-03-06 10:41:43,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,570 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,584 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,584 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,584 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,584 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:41:43,619 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:41:43,635 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:41:43,635 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:13.410096) +2020-03-06 10:41:43,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,649 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,663 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,663 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,663 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:43,663 [salt.utils.http :234 ][DEBUG ][5796] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:41:43,663 [salt.utils.http :235 ][DEBUG ][5796] Using backend: tornado +2020-03-06 10:41:47,101 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:41:47,523 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.297384) +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,523 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,538 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,538 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,538 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,538 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,538 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,538 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,538 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:41:47,554 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.328617) +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,554 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,569 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,569 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,569 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:47,569 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:41:47,585 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:41:47,585 [salt.state :320 ][INFO ][5796] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 10:41:47,585 [salt.state :1000][DEBUG ][5796] Refreshing modules... +2020-03-06 10:41:47,616 [salt.state :966 ][INFO ][5796] Loading fresh modules for state activity +2020-03-06 10:41:47,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:41:47,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:41:47,663 [salt.state :1997][INFO ][5796] Completed state [7zip] at time 10:41:47.663367 (duration_in_ms=12469.067) +2020-03-06 10:41:47,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded config.option +2020-03-06 10:41:47,678 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pkg.install +2020-03-06 10:41:47,678 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pkg.installed +2020-03-06 10:41:47,678 [salt.state :1819][INFO ][5796] Running state [git] at time 10:41:47.678870 +2020-03-06 10:41:47,678 [salt.state :1852][INFO ][5796] Executing state pkg.installed for [git] +2020-03-06 10:41:48,117 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt.secret_key, ret: _|- +2020-03-06 10:41:48,117 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt:secret_key, ret: _|- +2020-03-06 10:41:48,383 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet.api_key, ret: _|- +2020-03-06 10:41:48,383 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet:api_key, ret: _|- +2020-03-06 10:41:48,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded reg.read_value +2020-03-06 10:41:48,663 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops.api_key, ret: _|- +2020-03-06 10:41:48,678 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops:api_key, ret: _|- +2020-03-06 10:41:54,116 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded platform.is_windows +2020-03-06 10:41:54,134 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded path.which +2020-03-06 10:41:54,163 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:41:54,163 [salt.loaded.int.module.win_pkg:802 ][INFO ][5796] Refresh skipped, age of winrepo metadata in seconds (23.93722939491272) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:41:54,163 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:23.937229) +2020-03-06 10:41:54,163 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,163 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,163 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,163 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,194 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,194 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:41:54,210 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:41:54,226 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:41:54,226 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:24.000228) +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,256 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,256 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:41:54,256 [salt.utils.http :234 ][DEBUG ][5796] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:41:54,256 [salt.utils.http :235 ][DEBUG ][5796] Using backend: tornado +2020-03-06 10:41:57,741 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:42:12,319 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:42.094044) +2020-03-06 10:42:12,335 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,335 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,335 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,335 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,382 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:42:12,382 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5796] Using existing pkg metadata db for saltenv 'base' (age is 0:00:42.156735) +2020-03-06 10:42:12,382 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,399 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,399 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,399 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,399 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,399 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,399 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,413 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,429 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,429 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5796] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:42:12,429 [salt.state :320 ][INFO ][5796] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' + +2020-03-06 10:42:12,429 [salt.state :1000][DEBUG ][5796] Refreshing modules... +2020-03-06 10:42:12,491 [salt.state :966 ][INFO ][5796] Loading fresh modules for state activity +2020-03-06 10:42:12,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded jinja.render +2020-03-06 10:42:12,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded yaml.render +2020-03-06 10:42:12,632 [salt.state :1997][INFO ][5796] Completed state [git] at time 10:42:12.632037 (duration_in_ms=24953.167) +2020-03-06 10:42:12,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded config.option +2020-03-06 10:42:12,647 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded module.run +2020-03-06 10:42:12,647 [salt.state :1819][INFO ][5796] Running state [windows_environment.refresh.path] at time 10:42:12.647805 +2020-03-06 10:42:12,663 [salt.state :1852][INFO ][5796] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:42:12,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded windows_environment.refresh +2020-03-06 10:42:12,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cmd.run +2020-03-06 10:42:12,663 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:42:12,694 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:42:12,694 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5796] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:42:12,694 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded environ.get +2020-03-06 10:42:12,710 [py.warnings :919 ][WARNING ][5796] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 10:42:12,710 [py.warnings :919 ][WARNING ][5796] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 10:42:12,710 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded event.fire +2020-03-06 10:42:12,710 [salt.utils.event :322 ][DEBUG ][5796] SaltEvent PUB socket URI: 4510 +2020-03-06 10:42:12,710 [salt.utils.event :323 ][DEBUG ][5796] SaltEvent PULL socket URI: 4511 +2020-03-06 10:42:12,710 [salt.utils.event :737 ][DEBUG ][5796] Sending event: tag = environ_setenv; data = {'permanent': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'false_unsets': False, 'clear_all': False, '_stamp': '2020-03-06T18:42:12.710119'} +2020-03-06 10:42:12,710 [salt.transport.ipc:364 ][DEBUG ][5796] Closing IPCMessageClient instance +2020-03-06 10:42:12,725 [salt.state :320 ][INFO ][5796] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:42:12,725 [salt.state :1997][INFO ][5796] Completed state [windows_environment.refresh.path] at time 10:42:12.725848 (duration_in_ms=78.043) +2020-03-06 10:42:12,725 [salt.state :1819][INFO ][5796] Running state [chocolatey.bootstrap] at time 10:42:12.725848 +2020-03-06 10:42:12,725 [salt.state :1852][INFO ][5796] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:42:13,632 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt.secret_key, ret: _|- +2020-03-06 10:42:13,632 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: ifttt:secret_key, ret: _|- +2020-03-06 10:42:13,960 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet.api_key, ret: _|- +2020-03-06 10:42:13,960 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: pushbullet:api_key, ret: _|- +2020-03-06 10:42:14,261 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded reg.read_value +2020-03-06 10:42:14,414 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops.api_key, ret: _|- +2020-03-06 10:42:14,414 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: victorops:api_key, ret: _|- +2020-03-06 10:42:26,288 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded platform.is_windows +2020-03-06 10:42:26,288 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded path.which +2020-03-06 10:42:26,366 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:42:26,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded apache.config +2020-03-06 10:42:26,507 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded apache.a2enconf +2020-03-06 10:42:26,522 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded apache.a2ensite +2020-03-06 10:42:26,554 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:42:26,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:42:26,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:42:26,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:42:26,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:42:26,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:42:26,569 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:42:26,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:42:26,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_asg.exists +2020-03-06 10:42:26,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cfn.exists +2020-03-06 10:42:26,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:42:26,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:42:26,585 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:42:26,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:42:26,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:42:26,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:42:26,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_dynamodb.exists +2020-03-06 10:42:26,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_ec2.get_key +2020-03-06 10:42:26,601 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elasticache.exists +2020-03-06 10:42:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:42:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elb.exists +2020-03-06 10:42:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:42:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_iam.get_user +2020-03-06 10:42:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_iam.role_exists +2020-03-06 10:42:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_iot.policy_exists +2020-03-06 10:42:26,616 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_kinesis.exists +2020-03-06 10:42:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_kms.describe_key +2020-03-06 10:42:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_lambda.function_exists +2020-03-06 10:42:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_asg.exists +2020-03-06 10:42:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_rds.exists +2020-03-06 10:42:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_route53.get_record +2020-03-06 10:42:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:42:26,632 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:42:26,648 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_secgroup.exists +2020-03-06 10:42:26,648 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_sns.exists +2020-03-06 10:42:26,648 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_sqs.exists +2020-03-06 10:42:26,648 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded boto_vpc.exists +2020-03-06 10:42:26,648 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded bower.list +2020-03-06 10:42:26,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded chef.client +2020-03-06 10:42:26,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cimc.get_system_info +2020-03-06 10:42:26,663 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded cisconso.set_data_value +2020-03-06 10:42:26,663 [salt.loader :1577][DEBUG ][5796] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:42:26,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded ddns.update +2020-03-06 10:42:26,679 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded chassis.cmd +2020-03-06 10:42:26,710 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:42:26,741 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:42:26,772 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:42:26,819 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:42:27,382 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded esxi.cmd +2020-03-06 10:42:27,397 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:27,444 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: git version 2.23.0.windows.1 +2020-03-06 10:42:27,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded github.list_users +2020-03-06 10:42:27,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded glanceng.image_get +2020-03-06 10:42:27,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded elasticsearch.exists +2020-03-06 10:42:27,475 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: grafana_version, ret: _|- +2020-03-06 10:42:27,475 [salt.loaded.int.module.config:398 ][DEBUG ][5796] key: grafana_version, ret: _|- +2020-03-06 10:42:27,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded icinga2.generate_ticket +2020-03-06 10:42:27,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded ifttt.trigger_event +2020-03-06 10:42:27,538 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:42:27,570 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:42:27,601 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:42:27,647 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:42:27,679 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:42:27,710 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:42:27,757 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:42:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.domain_get +2020-03-06 10:42:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:42:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.group_get +2020-03-06 10:42:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.project_get +2020-03-06 10:42:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.role_get +2020-03-06 10:42:27,757 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.role_grant +2020-03-06 10:42:27,774 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.service_get +2020-03-06 10:42:27,774 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded keystoneng.user_get +2020-03-06 10:42:27,819 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:42:27,867 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:42:27,882 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:42:27,932 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:42:27,976 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:42:28,022 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:42:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:42:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:42:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:42:28,022 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded lxd.version +2020-03-06 10:42:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded memcached.status +2020-03-06 10:42:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mongodb.db_exists +2020-03-06 10:42:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mongodb.user_exists +2020-03-06 10:42:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:42:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:42:28,038 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:42:28,054 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded mssql.version +2020-03-06 10:42:28,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_networks +2020-03-06 10:42:28,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_subnets +2020-03-06 10:42:28,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_subnets +2020-03-06 10:42:28,069 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded neutronng.list_subnets +2020-03-06 10:42:28,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded npm.list +2020-03-06 10:42:28,085 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nxos.cmd +2020-03-06 10:42:28,132 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:42:28,164 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:42:28,164 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded panos.commit +2020-03-06 10:42:28,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pdbedit.create +2020-03-06 10:42:28,179 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded pecl.list +2020-03-06 10:42:28,210 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:42:28,210 [salt.loader :1577][DEBUG ][5796] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:42:28,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.cluster_exists +2020-03-06 10:42:28,210 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.user_exists +2020-03-06 10:42:28,225 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.create_extension +2020-03-06 10:42:28,225 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.group_create +2020-03-06 10:42:28,225 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.datadir_init +2020-03-06 10:42:28,225 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.language_create +2020-03-06 10:42:28,225 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.privileges_grant +2020-03-06 10:42:28,225 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.schema_exists +2020-03-06 10:42:28,225 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.tablespace_exists +2020-03-06 10:42:28,241 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded postgres.user_exists +2020-03-06 10:42:28,288 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:42:28,303 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded selinux.getenforce +2020-03-06 10:42:28,319 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded splunk.list_users +2020-03-06 10:42:28,319 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded splunk_search.get +2020-03-06 10:42:28,350 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:42:28,366 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded tomcat.status +2020-03-06 10:42:28,383 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded vagrant.version +2020-03-06 10:42:28,383 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded victorops.create_event +2020-03-06 10:42:28,399 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded win_iis.create_site +2020-03-06 10:42:28,399 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded win_servermanager.install +2020-03-06 10:42:28,399 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:42:28,414 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded wordpress.show_plugin +2020-03-06 10:42:28,414 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded x509.get_pem_entry +2020-03-06 10:42:28,414 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded xmpp.send_msg +2020-03-06 10:42:28,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded zk_concurrency.lock +2020-03-06 10:42:28,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded zonecfg.create +2020-03-06 10:42:28,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded zookeeper.create +2020-03-06 10:42:28,444 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:42:28,444 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:42:28,678 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:42:28,678 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][5796] retcode: 1 +2020-03-06 10:42:28,678 [salt.state :915 ][DEBUG ][5796] Last command return code: 1 +2020-03-06 10:42:28,678 [salt.utils.http :234 ][DEBUG ][5796] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:42:28,694 [salt.utils.http :235 ][DEBUG ][5796] Using backend: tornado +2020-03-06 10:42:28,882 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:35,194 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: Preparing: C:\b8db11ebb74dc6fd56\header.bmp... +Preparing: C:\b8db11ebb74dc6fd56\SplashScreen.bmp... +Preparing: C:\b8db11ebb74dc6fd56\watermark.bmp... +Preparing: C:\b8db11ebb74dc6fd56\DisplayIcon.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Print.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate1.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate2.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate3.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate4.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate5.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate6.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate7.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Rotate8.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Save.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\Setup.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\stop.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\SysReqMet.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\SysReqNotMet.ico... +Preparing: C:\b8db11ebb74dc6fd56\Graphics\warn.ico... +Preparing: C:\b8db11ebb74dc6fd56\1033\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1042\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1041\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1037\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1025\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1035\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1030\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1044\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1043\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1040\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1029\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1031\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1036\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1032\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1038\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\2052\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1028\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\3076\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1055\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1053\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\3082\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\2070\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1046\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1049\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\1045\LocalizedData.xml... +Preparing: C:\b8db11ebb74dc6fd56\Client\Parameterinfo.xml... +Preparing: C:\b8db11ebb74dc6fd56\Extended\Parameterinfo.xml... +Preparing: C:\b8db11ebb74dc6fd56\ParameterInfo.xml... +Preparing: C:\b8db11ebb74dc6fd56\Strings.xml... +Preparing: C:\b8db11ebb74dc6fd56\UiInfo.xml... +Preparing: C:\b8db11ebb74dc6fd56\Client\UiInfo.xml... +Preparing: C:\b8db11ebb74dc6fd56\Extended\UiInfo.xml... +Preparing: C:\b8db11ebb74dc6fd56\SetupUi.xsd... +Preparing: C:\b8db11ebb74dc6fd56\DHtmlHeader.html... +Preparing: C:\b8db11ebb74dc6fd56\1033\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1025\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1028\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1030\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1031\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1029\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1036\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1035\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1032\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1038\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1037\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1040\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1041\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1042\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1044\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1043\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1046\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1045\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1055\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1053\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\2052\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\1049\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\3082\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\2070\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\3076\eula.rtf... +Preparing: C:\b8db11ebb74dc6fd56\Setup.exe... +Preparing: C:\b8db11ebb74dc6fd56\SetupUtility.exe... +Preparing: C:\b8db11ebb74dc6fd56\SetupEngine.dll... +Preparing: C:\b8db11ebb74dc6fd56\1025\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1033\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1029\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1030\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1035\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1031\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1036\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1032\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1028\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\2052\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\3076\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1042\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1041\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1037\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1044\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1053\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1055\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1040\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1045\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1046\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1049\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1038\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\2070\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\3082\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\1043\SetupResources.dll... +Preparing: C:\b8db11ebb74dc6fd56\SetupUi.dll... +Preparing: C:\b8db11ebb74dc6fd56\sqmapi.dll... +2020-03-06 10:42:35,194 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:42:39,101 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: Getting latest version of the Chocolatey package for download. +Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +Downloading 7-Zip commandline tool prior to extraction. +Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +Installing chocolatey on this machine +Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. +Restricting write permissions to Administrators +We are setting up the Chocolatey package repository. +The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + +Creating Chocolatey folders if they do not already exist. + +WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. +chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. +PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +WARNING: Not setting tab completion: Profile file does not exist at +'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +Chocolatey (choco.exe) is now ready. +You can call choco from anywhere, command line or powershell by typing choco. +Run choco /? for a list of functions. +You may need to shut down and restart powershell and/or consoles + first prior to using choco. +Ensuring chocolatey commands are on the path +Ensuring chocolatey.nupkg is in the lib folder +2020-03-06 10:42:39,101 [salt.state :320 ][INFO ][5796] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:42:39,101 [salt.state :1997][INFO ][5796] Completed state [chocolatey.bootstrap] at time 10:42:39.101548 (duration_in_ms=26375.7) +2020-03-06 10:42:39,101 [salt.state :1819][INFO ][5796] Running state [notepadplusplus] at time 10:42:39.101548 +2020-03-06 10:42:39,101 [salt.state :1852][INFO ][5796] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:42:39,101 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:40,382 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: chocolatey|0.10.15 +2020-03-06 10:42:40,382 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:41,350 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: 0.10.15 +2020-03-06 10:42:41,350 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5796] output: 0.10.15 +2020-03-06 10:42:41,350 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:50,117 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +notepadplusplus +By installing you accept licenses for the packages. + +chocolatey-core.extension v1.3.5.1 [Approved] +chocolatey-core.extension package files install completed. Performing other installation steps. + Installed/updated chocolatey-core extensions. + The install of chocolatey-core.extension was successful. + Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' + +notepadplusplus.install v7.8.5 +notepadplusplus.install package files install completed. Performing other installation steps. +Installing 64-bit notepadplusplus.install... +notepadplusplus.install has been installed. +notepadplusplus.install installed to 'C:\Program Files\Notepad++' +Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program files\notepad++\notepad++.exe'. + notepadplusplus.install may be able to be automatically uninstalled. + The install of notepadplusplus.install was successful. + Software installed as 'exe', install location is likely default. + +notepadplusplus v7.8.5 [Approved] +notepadplusplus package files install completed. Performing other installation steps. + The install of notepadplusplus was successful. + Software install location not explicitly set, could be in package or + default install location if installer. + +Chocolatey installed 3/3 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:42:50,117 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:51,100 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:42:51,100 [salt.state :320 ][INFO ][5796] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:42:51,116 [salt.state :1997][INFO ][5796] Completed state [notepadplusplus] at time 10:42:51.116346 (duration_in_ms=12014.798) +2020-03-06 10:42:51,116 [salt.state :1819][INFO ][5796] Running state [windirstat] at time 10:42:51.116346 +2020-03-06 10:42:51,116 [salt.state :1852][INFO ][5796] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:42:51,116 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:52,085 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:42:52,085 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:55,210 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:42:55,226 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:56,131 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +windirstat|1.1.2.20161210 +2020-03-06 10:42:56,131 [salt.state :320 ][INFO ][5796] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 10:42:56,131 [salt.state :1997][INFO ][5796] Completed state [windirstat] at time 10:42:56.131932 (duration_in_ms=5015.586) +2020-03-06 10:42:56,131 [salt.state :1819][INFO ][5796] Running state [TelnetClient] at time 10:42:56.131932 +2020-03-06 10:42:56,131 [salt.state :1852][INFO ][5796] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:42:56,163 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:42:56,163 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:42:58,460 [salt.state :889 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:42:58,460 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:42:59,866 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18362.592 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.418 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +The operation completed successfully. +2020-03-06 10:42:59,866 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5796] output: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18362.592 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.418 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +The operation completed successfully. +2020-03-06 10:42:59,866 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:43:00,835 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:43:02,194 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5796] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18362.592 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.418 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +The operation completed successfully. +2020-03-06 10:43:02,194 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5796] output: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18362.592 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.418 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +The operation completed successfully. +2020-03-06 10:43:02,194 [salt.state :320 ][INFO ][5796] {'stdout': '', 'feature': {'new': 'TelnetClient'}, 'stderr': '', 'retcode': 0, 'pid': 4796} +2020-03-06 10:43:02,194 [salt.state :1997][INFO ][5796] Completed state [TelnetClient] at time 10:43:02.194520 (duration_in_ms=6062.588) +2020-03-06 10:43:02,194 [salt.state :1819][INFO ][5796] Running state [windows.module.system.reboot] at time 10:43:02.194520 +2020-03-06 10:43:02,194 [salt.state :1852][INFO ][5796] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:43:02,210 [salt.utils.lazy :107 ][DEBUG ][5796] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:43:02,210 [salt.loaded.int.module.cmdmod:397 ][INFO ][5796] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:43:02,382 [salt.state :889 ][DEBUG ][5796] Last command return code: 0 +2020-03-06 10:43:02,382 [salt.loaded.int.module.win_system:1413][DEBUG ][5796] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:43:02,382 [salt.loaded.int.module.win_system:1348][DEBUG ][5796] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:43:02,382 [salt.loaded.int.module.win_system:1348][DEBUG ][5796] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:43:02,382 [salt.loaded.int.module.win_system:1387][DEBUG ][5796] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:43:02,382 [salt.loaded.int.module.win_system:1273][DEBUG ][5796] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:43:02,413 [salt.state :320 ][INFO ][5796] {'system.reboot': True} +2020-03-06 10:43:02,413 [salt.state :1997][INFO ][5796] Completed state [windows.module.system.reboot] at time 10:43:02.413794 (duration_in_ms=219.274) +2020-03-06 10:43:02,413 [salt.state :2801][DEBUG ][5796] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\3113345286608 does not exist, no need to cleanup +2020-03-06 10:43:02,413 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded state.check_result +2020-03-06 10:43:02,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded highstate.output +2020-03-06 10:43:02,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,429 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,444 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,460 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,475 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,491 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 10:43:02,515 [salt.utils.lazy :104 ][DEBUG ][5796] LazyLoaded nested.output +2020-03-06 13:43:06,804 [salt.loader :747 ][DEBUG ][868] Grains refresh requested. Refreshing grains. +2020-03-06 13:43:06,804 [salt.config :2190][DEBUG ][868] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:43:06,804 [salt.config :2334][DEBUG ][868] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:43:06,804 [salt.config :2190][DEBUG ][868] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-201923-windows-10-1909.kitchen.log b/test/results/py3-201923-windows-10-1909.kitchen.log new file mode 100644 index 0000000..eeac1c8 --- /dev/null +++ b/test/results/py3-201923-windows-10-1909.kitchen.log @@ -0,0 +1,1028 @@ +I, [2020-03-06T13:32:29.869112 #20160] INFO -- py3-201923-windows-10-1909: -----> Cleaning up any prior instances of +I, [2020-03-06T13:32:29.869295 #20160] INFO -- py3-201923-windows-10-1909: -----> Destroying ... +I, [2020-03-06T13:32:29.870733 #20160] INFO -- py3-201923-windows-10-1909: Finished destroying (0m0.00s). +I, [2020-03-06T13:32:29.871773 #20160] INFO -- py3-201923-windows-10-1909: -----> Testing +I, [2020-03-06T13:32:29.872046 #20160] INFO -- py3-201923-windows-10-1909: -----> Creating ... +I, [2020-03-06T13:32:35.622086 #20160] INFO -- py3-201923-windows-10-1909: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:32:36.679821 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Cloning VM... +I, [2020-03-06T13:32:37.169341 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:32:37.421150 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Checking if box 'StefanScherer/windows_10' version '2020.02.12' is up to date... +I, [2020-03-06T13:32:38.421992 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1909-16e135b1-94a8-4dd1-b749-bf1c1e6456a3 +I, [2020-03-06T13:32:42.298888 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:32:42.439514 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:32:42.440024 #20160] INFO -- py3-201923-windows-10-1909: default: Adapter 1: nat +I, [2020-03-06T13:32:42.638478 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Forwarding ports... +I, [2020-03-06T13:32:42.836620 #20160] INFO -- py3-201923-windows-10-1909: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:32:42.837206 #20160] INFO -- py3-201923-windows-10-1909: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:32:42.837647 #20160] INFO -- py3-201923-windows-10-1909: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:32:42.838000 #20160] INFO -- py3-201923-windows-10-1909: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:32:43.414402 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:32:44.826340 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Booting VM... +I, [2020-03-06T13:32:47.695774 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:32:49.464451 #20160] INFO -- py3-201923-windows-10-1909: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:32:49.464634 #20160] INFO -- py3-201923-windows-10-1909: default: WinRM username: vagrant +I, [2020-03-06T13:32:49.465286 #20160] INFO -- py3-201923-windows-10-1909: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:32:49.465542 #20160] INFO -- py3-201923-windows-10-1909: default: WinRM transport: negotiate +I, [2020-03-06T13:33:13.715370 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Machine booted and ready! +I, [2020-03-06T13:33:13.746670 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:33:14.931827 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Mounting shared folders... +I, [2020-03-06T13:33:14.933127 #20160] INFO -- py3-201923-windows-10-1909: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:33:23.986570 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:33:37.078613 #20160] INFO -- py3-201923-windows-10-1909: [WinRM] Established +I, [2020-03-06T13:33:37.078732 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:33:37.144045 #20160] INFO -- py3-201923-windows-10-1909: Vagrant instance created. +I, [2020-03-06T13:33:37.146283 #20160] INFO -- py3-201923-windows-10-1909: Finished creating (1m7.27s). +I, [2020-03-06T13:33:37.146568 #20160] INFO -- py3-201923-windows-10-1909: -----> Converging ... +I, [2020-03-06T13:33:37.149232 #20160] INFO -- py3-201923-windows-10-1909: Preparing files for transfer +I, [2020-03-06T13:33:37.149388 #20160] INFO -- py3-201923-windows-10-1909: Preparing salt-minion +I, [2020-03-06T13:33:37.154454 #20160] INFO -- py3-201923-windows-10-1909: Preparing pillars into /srv/pillar +I, [2020-03-06T13:33:37.154598 #20160] INFO -- py3-201923-windows-10-1909: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:33:37.158251 #20160] INFO -- py3-201923-windows-10-1909: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:33:37.314157 #20160] INFO -- py3-201923-windows-10-1909: Preparing state_top +I, [2020-03-06T13:33:37.315931 #20160] INFO -- py3-201923-windows-10-1909: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:33:38.947633 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:33:38.948054 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:33:38.948529 #20160] INFO -- py3-201923-windows-10-1909: Directory: C:\ +I, [2020-03-06T13:33:38.948948 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:33:38.949400 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:33:38.949793 #20160] INFO -- py3-201923-windows-10-1909: Mode LastWriteTime Length Name +I, [2020-03-06T13:33:38.950490 #20160] INFO -- py3-201923-windows-10-1909: ---- ------------- ------ ---- +I, [2020-03-06T13:33:38.951334 #20160] INFO -- py3-201923-windows-10-1909: d----- 3/6/2020 10:33 AM temp +I, [2020-03-06T13:33:40.736722 #20160] INFO -- py3-201923-windows-10-1909: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe +I, [2020-03-06T13:33:49.672730 #20160] INFO -- py3-201923-windows-10-1909: Installing Salt minion +I, [2020-03-06T13:34:52.267370 #20160] INFO -- py3-201923-windows-10-1909: Starting the Salt minion service +I, [2020-03-06T13:34:52.267943 #20160] INFO -- py3-201923-windows-10-1909: Salt minion successfully installed +I, [2020-03-06T13:34:57.153589 #20160] INFO -- py3-201923-windows-10-1909: You asked for latest and you have 2019.2.3 installed, sweet! +I, [2020-03-06T13:34:57.154104 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.154574 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.819213 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.819784 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.820316 #20160] INFO -- py3-201923-windows-10-1909: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:34:57.820810 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.821274 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.821802 #20160] INFO -- py3-201923-windows-10-1909: Mode LastWriteTime Length Name +I, [2020-03-06T13:34:57.822530 #20160] INFO -- py3-201923-windows-10-1909: ---- ------------- ------ ---- +I, [2020-03-06T13:34:57.823150 #20160] INFO -- py3-201923-windows-10-1909: d----- 3/6/2020 10:34 AM kitchen +I, [2020-03-06T13:34:57.823618 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.824084 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:34:57.845500 #20160] INFO -- py3-201923-windows-10-1909: Transferring files to +I, [2020-03-06T13:35:45.780390 #20160] INFO -- py3-201923-windows-10-1909: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:35:45.781275 #20160] INFO -- py3-201923-windows-10-1909: At line:1 char:131 +I, [2020-03-06T13:35:45.781934 #20160] INFO -- py3-201923-windows-10-1909: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:35:45.782401 #20160] INFO -- py3-201923-windows-10-1909: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:35:45.782834 #20160] INFO -- py3-201923-windows-10-1909: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:35:45.783199 #20160] INFO -- py3-201923-windows-10-1909: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:35:45.783630 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:35:45.784023 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:35:45.784415 #20160] INFO -- py3-201923-windows-10-1909: Traceback (most recent call last): +I, [2020-03-06T13:35:45.784828 #20160] INFO -- py3-201923-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:35:45.785221 #20160] INFO -- py3-201923-windows-10-1909: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:35:45.785738 #20160] INFO -- py3-201923-windows-10-1909: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:35:45.786135 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:35:45.786573 #20160] INFO -- py3-201923-windows-10-1909: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:35:45.786977 #20160] INFO -- py3-201923-windows-10-1909: Traceback (most recent call last): +I, [2020-03-06T13:35:45.787431 #20160] INFO -- py3-201923-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:35:45.788018 #20160] INFO -- py3-201923-windows-10-1909: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:35:45.788510 #20160] INFO -- py3-201923-windows-10-1909: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:35:45.788898 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:36:57.884371 #20160] INFO -- py3-201923-windows-10-1909: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:36:57.884776 #20160] INFO -- py3-201923-windows-10-1909: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:36:57.885012 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:36:57.885438 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:36:57.885821 #20160] INFO -- py3-201923-windows-10-1909: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:36:57.886121 #20160] INFO -- py3-201923-windows-10-1909: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:36:57.886402 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:36:57.886722 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:52.772436 #20160] INFO -- py3-201923-windows-10-1909: local: +I, [2020-03-06T13:37:52.772872 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.773355 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:37:52.773772 #20160] INFO -- py3-201923-windows-10-1909: Function: system.hostname +I, [2020-03-06T13:37:52.774175 #20160] INFO -- py3-201923-windows-10-1909: Name: saltstack1 +I, [2020-03-06T13:37:52.774539 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.774839 #20160] INFO -- py3-201923-windows-10-1909: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:37:52.775122 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:14.978617 +I, [2020-03-06T13:37:52.775482 #20160] INFO -- py3-201923-windows-10-1909: Duration: 109.746 ms +I, [2020-03-06T13:37:52.775762 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.776045 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.776368 #20160] INFO -- py3-201923-windows-10-1909: hostname: +I, [2020-03-06T13:37:52.776707 #20160] INFO -- py3-201923-windows-10-1909: saltstack1 +I, [2020-03-06T13:37:52.777044 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.777357 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:37:52.777690 #20160] INFO -- py3-201923-windows-10-1909: Function: system.computer_desc +I, [2020-03-06T13:37:52.778045 #20160] INFO -- py3-201923-windows-10-1909: Name: Saltstack Computer Description +I, [2020-03-06T13:37:52.778421 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.778727 #20160] INFO -- py3-201923-windows-10-1909: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:37:52.779184 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:15.103874 +I, [2020-03-06T13:37:52.779708 #20160] INFO -- py3-201923-windows-10-1909: Duration: 3297.696 ms +I, [2020-03-06T13:37:52.780142 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.780564 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.780959 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:52.781393 #20160] INFO -- py3-201923-windows-10-1909: Saltstack Computer Description +I, [2020-03-06T13:37:52.782013 #20160] INFO -- py3-201923-windows-10-1909: old: +I, [2020-03-06T13:37:52.782502 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.782951 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:37:52.783405 #20160] INFO -- py3-201923-windows-10-1909: Function: timezone.system +I, [2020-03-06T13:37:52.783883 #20160] INFO -- py3-201923-windows-10-1909: Name: America/New_York +I, [2020-03-06T13:37:52.784321 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.784730 #20160] INFO -- py3-201923-windows-10-1909: Comment: Set timezone America/New_York +I, [2020-03-06T13:37:52.785149 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:18.432041 +I, [2020-03-06T13:37:52.785707 #20160] INFO -- py3-201923-windows-10-1909: Duration: 31.527 ms +I, [2020-03-06T13:37:52.786385 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.786875 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.787523 #20160] INFO -- py3-201923-windows-10-1909: timezone: +I, [2020-03-06T13:37:52.788115 #20160] INFO -- py3-201923-windows-10-1909: America/New_York +I, [2020-03-06T13:37:52.788597 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.789070 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.module.environ.items +I, [2020-03-06T13:37:52.789487 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:52.789855 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.790222 #20160] INFO -- py3-201923-windows-10-1909: Comment: environ.items: Success +I, [2020-03-06T13:37:52.790573 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:18.482077 +I, [2020-03-06T13:37:52.790944 #20160] INFO -- py3-201923-windows-10-1909: Duration: 14.65 ms +I, [2020-03-06T13:37:52.791344 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.791714 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.792081 #20160] INFO -- py3-201923-windows-10-1909: environ.items: +I, [2020-03-06T13:37:52.792432 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.792841 #20160] INFO -- py3-201923-windows-10-1909: ALLUSERSPROFILE: +I, [2020-03-06T13:37:52.793247 #20160] INFO -- py3-201923-windows-10-1909: C:\ProgramData +I, [2020-03-06T13:37:52.793610 #20160] INFO -- py3-201923-windows-10-1909: APPDATA: +I, [2020-03-06T13:37:52.793993 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:37:52.794351 #20160] INFO -- py3-201923-windows-10-1909: COMMONPROGRAMFILES: +I, [2020-03-06T13:37:52.794801 #20160] INFO -- py3-201923-windows-10-1909: C:\Program Files\Common Files +I, [2020-03-06T13:37:52.795272 #20160] INFO -- py3-201923-windows-10-1909: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:37:52.795722 #20160] INFO -- py3-201923-windows-10-1909: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:37:52.796180 #20160] INFO -- py3-201923-windows-10-1909: COMMONPROGRAMW6432: +I, [2020-03-06T13:37:52.796611 #20160] INFO -- py3-201923-windows-10-1909: C:\Program Files\Common Files +I, [2020-03-06T13:37:52.796992 #20160] INFO -- py3-201923-windows-10-1909: COMPUTERNAME: +I, [2020-03-06T13:37:52.797342 #20160] INFO -- py3-201923-windows-10-1909: VAGRANT-10 +I, [2020-03-06T13:37:52.797710 #20160] INFO -- py3-201923-windows-10-1909: COMSPEC: +I, [2020-03-06T13:37:52.798125 #20160] INFO -- py3-201923-windows-10-1909: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:37:52.798604 #20160] INFO -- py3-201923-windows-10-1909: DRIVERDATA: +I, [2020-03-06T13:37:52.799007 #20160] INFO -- py3-201923-windows-10-1909: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T13:37:52.799373 #20160] INFO -- py3-201923-windows-10-1909: HOMEDRIVE: +I, [2020-03-06T13:37:52.799742 #20160] INFO -- py3-201923-windows-10-1909: C: +I, [2020-03-06T13:37:52.800139 #20160] INFO -- py3-201923-windows-10-1909: HOMEPATH: +I, [2020-03-06T13:37:52.800500 #20160] INFO -- py3-201923-windows-10-1909: \Users\vagrant +I, [2020-03-06T13:37:52.800889 #20160] INFO -- py3-201923-windows-10-1909: LOCALAPPDATA: +I, [2020-03-06T13:37:52.801279 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:37:52.801679 #20160] INFO -- py3-201923-windows-10-1909: LOGONSERVER: +I, [2020-03-06T13:37:52.802025 #20160] INFO -- py3-201923-windows-10-1909: \\VAGRANT-10 +I, [2020-03-06T13:37:52.802511 #20160] INFO -- py3-201923-windows-10-1909: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:37:52.802988 #20160] INFO -- py3-201923-windows-10-1909: 2 +I, [2020-03-06T13:37:52.803426 #20160] INFO -- py3-201923-windows-10-1909: ONEDRIVE: +I, [2020-03-06T13:37:52.803892 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:37:52.804357 #20160] INFO -- py3-201923-windows-10-1909: OS: +I, [2020-03-06T13:37:52.804845 #20160] INFO -- py3-201923-windows-10-1909: Windows_NT +I, [2020-03-06T13:37:52.805303 #20160] INFO -- py3-201923-windows-10-1909: PATH: +I, [2020-03-06T13:37:52.805841 #20160] INFO -- py3-201923-windows-10-1909: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:37:52.806308 #20160] INFO -- py3-201923-windows-10-1909: PATHEXT: +I, [2020-03-06T13:37:52.806794 #20160] INFO -- py3-201923-windows-10-1909: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:37:52.807256 #20160] INFO -- py3-201923-windows-10-1909: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:37:52.807730 #20160] INFO -- py3-201923-windows-10-1909: AMD64 +I, [2020-03-06T13:37:52.808187 #20160] INFO -- py3-201923-windows-10-1909: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:37:52.808686 #20160] INFO -- py3-201923-windows-10-1909: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:37:52.809141 #20160] INFO -- py3-201923-windows-10-1909: PROCESSOR_LEVEL: +I, [2020-03-06T13:37:52.809605 #20160] INFO -- py3-201923-windows-10-1909: 6 +I, [2020-03-06T13:37:52.810064 #20160] INFO -- py3-201923-windows-10-1909: PROCESSOR_REVISION: +I, [2020-03-06T13:37:52.810539 #20160] INFO -- py3-201923-windows-10-1909: 8e0c +I, [2020-03-06T13:37:52.810985 #20160] INFO -- py3-201923-windows-10-1909: PROGRAMDATA: +I, [2020-03-06T13:37:52.811473 #20160] INFO -- py3-201923-windows-10-1909: C:\ProgramData +I, [2020-03-06T13:37:52.811951 #20160] INFO -- py3-201923-windows-10-1909: PROGRAMFILES: +I, [2020-03-06T13:37:52.812451 #20160] INFO -- py3-201923-windows-10-1909: C:\Program Files +I, [2020-03-06T13:37:52.812928 #20160] INFO -- py3-201923-windows-10-1909: PROGRAMFILES(X86): +I, [2020-03-06T13:37:52.813398 #20160] INFO -- py3-201923-windows-10-1909: C:\Program Files (x86) +I, [2020-03-06T13:37:52.813917 #20160] INFO -- py3-201923-windows-10-1909: PROGRAMW6432: +I, [2020-03-06T13:37:52.814419 #20160] INFO -- py3-201923-windows-10-1909: C:\Program Files +I, [2020-03-06T13:37:52.814893 #20160] INFO -- py3-201923-windows-10-1909: PROMPT: +I, [2020-03-06T13:37:52.815512 #20160] INFO -- py3-201923-windows-10-1909: $P$G +I, [2020-03-06T13:37:52.816050 #20160] INFO -- py3-201923-windows-10-1909: PSMODULEPATH: +I, [2020-03-06T13:37:52.816615 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:37:52.817117 #20160] INFO -- py3-201923-windows-10-1909: PUBLIC: +I, [2020-03-06T13:37:52.817655 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\Public +I, [2020-03-06T13:37:52.818099 #20160] INFO -- py3-201923-windows-10-1909: PYTHON: +I, [2020-03-06T13:37:52.818489 #20160] INFO -- py3-201923-windows-10-1909: C:\salt\bin\python.exe +I, [2020-03-06T13:37:52.818887 #20160] INFO -- py3-201923-windows-10-1909: SALTDIR: +I, [2020-03-06T13:37:52.819304 #20160] INFO -- py3-201923-windows-10-1909: C:\salt +I, [2020-03-06T13:37:52.819651 #20160] INFO -- py3-201923-windows-10-1909: SCRIPT: +I, [2020-03-06T13:37:52.820090 #20160] INFO -- py3-201923-windows-10-1909: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:37:52.820631 #20160] INFO -- py3-201923-windows-10-1909: SYSTEMDRIVE: +I, [2020-03-06T13:37:52.821088 #20160] INFO -- py3-201923-windows-10-1909: C: +I, [2020-03-06T13:37:52.821459 #20160] INFO -- py3-201923-windows-10-1909: SYSTEMROOT: +I, [2020-03-06T13:37:52.821823 #20160] INFO -- py3-201923-windows-10-1909: C:\Windows +I, [2020-03-06T13:37:52.822223 #20160] INFO -- py3-201923-windows-10-1909: TEMP: +I, [2020-03-06T13:37:52.822581 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:37:52.822947 #20160] INFO -- py3-201923-windows-10-1909: TMP: +I, [2020-03-06T13:37:52.823470 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:37:52.823917 #20160] INFO -- py3-201923-windows-10-1909: USERDOMAIN: +I, [2020-03-06T13:37:52.824409 #20160] INFO -- py3-201923-windows-10-1909: VAGRANT-10 +I, [2020-03-06T13:37:52.824979 #20160] INFO -- py3-201923-windows-10-1909: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:37:52.825524 #20160] INFO -- py3-201923-windows-10-1909: VAGRANT-10 +I, [2020-03-06T13:37:52.825944 #20160] INFO -- py3-201923-windows-10-1909: USERNAME: +I, [2020-03-06T13:37:52.826324 #20160] INFO -- py3-201923-windows-10-1909: vagrant +I, [2020-03-06T13:37:52.826692 #20160] INFO -- py3-201923-windows-10-1909: USERPROFILE: +I, [2020-03-06T13:37:52.827061 #20160] INFO -- py3-201923-windows-10-1909: C:\Users\vagrant +I, [2020-03-06T13:37:52.827397 #20160] INFO -- py3-201923-windows-10-1909: WINDIR: +I, [2020-03-06T13:37:52.827807 #20160] INFO -- py3-201923-windows-10-1909: C:\Windows +I, [2020-03-06T13:37:52.828250 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.828655 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.module.user.current +I, [2020-03-06T13:37:52.829147 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:52.829587 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.830124 #20160] INFO -- py3-201923-windows-10-1909: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:37:52.830517 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:18.496727 +I, [2020-03-06T13:37:52.830987 #20160] INFO -- py3-201923-windows-10-1909: Duration: 44.733 ms +I, [2020-03-06T13:37:52.831439 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.831900 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.832324 #20160] INFO -- py3-201923-windows-10-1909: user.current: +I, [2020-03-06T13:37:52.832781 #20160] INFO -- py3-201923-windows-10-1909: VAGRANT-10\vagrant +I, [2020-03-06T13:37:52.833171 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.833503 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.module.status.uptime +I, [2020-03-06T13:37:52.833844 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:52.834148 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.834470 #20160] INFO -- py3-201923-windows-10-1909: Comment: status.uptime: 0:02:27.620703 +I, [2020-03-06T13:37:52.834816 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:18.557105 +I, [2020-03-06T13:37:52.835142 #20160] INFO -- py3-201923-windows-10-1909: Duration: 63.598 ms +I, [2020-03-06T13:37:52.835490 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.835905 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.836306 #20160] INFO -- py3-201923-windows-10-1909: status.uptime: +I, [2020-03-06T13:37:52.836677 #20160] INFO -- py3-201923-windows-10-1909: 0:02:27.620703 +I, [2020-03-06T13:37:52.837083 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.837467 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:37:52.837823 #20160] INFO -- py3-201923-windows-10-1909: Function: cmd.run +I, [2020-03-06T13:37:52.838171 #20160] INFO -- py3-201923-windows-10-1909: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers +I, [2020-03-06T13:37:52.838513 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.838909 #20160] INFO -- py3-201923-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:37:52.839256 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:18.650929 +I, [2020-03-06T13:37:52.839597 #20160] INFO -- py3-201923-windows-10-1909: Duration: 2921.454 ms +I, [2020-03-06T13:37:52.839932 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.840350 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.840781 #20160] INFO -- py3-201923-windows-10-1909: pid: +I, [2020-03-06T13:37:52.841140 #20160] INFO -- py3-201923-windows-10-1909: 372 +I, [2020-03-06T13:37:52.841543 #20160] INFO -- py3-201923-windows-10-1909: retcode: +I, [2020-03-06T13:37:52.841929 #20160] INFO -- py3-201923-windows-10-1909: 0 +I, [2020-03-06T13:37:52.842349 #20160] INFO -- py3-201923-windows-10-1909: stderr: +I, [2020-03-06T13:37:52.842728 #20160] INFO -- py3-201923-windows-10-1909: stdout: +I, [2020-03-06T13:37:52.843079 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.843478 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:37:52.843902 #20160] INFO -- py3-201923-windows-10-1909: Function: cmd.run +I, [2020-03-06T13:37:52.844377 #20160] INFO -- py3-201923-windows-10-1909: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers +I, [2020-03-06T13:37:52.844870 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.845279 #20160] INFO -- py3-201923-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:37:52.845651 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:21.572383 +I, [2020-03-06T13:37:52.846015 #20160] INFO -- py3-201923-windows-10-1909: Duration: 2422.119 ms +I, [2020-03-06T13:37:52.846460 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.846893 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.847384 #20160] INFO -- py3-201923-windows-10-1909: pid: +I, [2020-03-06T13:37:52.847854 #20160] INFO -- py3-201923-windows-10-1909: 5972 +I, [2020-03-06T13:37:52.848336 #20160] INFO -- py3-201923-windows-10-1909: retcode: +I, [2020-03-06T13:37:52.848698 #20160] INFO -- py3-201923-windows-10-1909: 0 +I, [2020-03-06T13:37:52.849105 #20160] INFO -- py3-201923-windows-10-1909: stderr: +I, [2020-03-06T13:37:52.849490 #20160] INFO -- py3-201923-windows-10-1909: stdout: +I, [2020-03-06T13:37:52.849959 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.850424 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:37:52.850829 #20160] INFO -- py3-201923-windows-10-1909: Function: cmd.run +I, [2020-03-06T13:37:52.851229 #20160] INFO -- py3-201923-windows-10-1909: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers +I, [2020-03-06T13:37:52.851672 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.852080 #20160] INFO -- py3-201923-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:37:52.852456 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:23.994502 +I, [2020-03-06T13:37:52.852902 #20160] INFO -- py3-201923-windows-10-1909: Duration: 2094.215 ms +I, [2020-03-06T13:37:52.853322 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.853672 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.854085 #20160] INFO -- py3-201923-windows-10-1909: pid: +I, [2020-03-06T13:37:52.854526 #20160] INFO -- py3-201923-windows-10-1909: 7360 +I, [2020-03-06T13:37:52.854907 #20160] INFO -- py3-201923-windows-10-1909: retcode: +I, [2020-03-06T13:37:52.855343 #20160] INFO -- py3-201923-windows-10-1909: 0 +I, [2020-03-06T13:37:52.855737 #20160] INFO -- py3-201923-windows-10-1909: stderr: +I, [2020-03-06T13:37:52.856207 #20160] INFO -- py3-201923-windows-10-1909: stdout: +I, [2020-03-06T13:37:52.856629 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.857050 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:37:52.857390 #20160] INFO -- py3-201923-windows-10-1909: Function: cmd.run +I, [2020-03-06T13:37:52.857813 #20160] INFO -- py3-201923-windows-10-1909: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers +I, [2020-03-06T13:37:52.858235 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.858646 #20160] INFO -- py3-201923-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:37:52.859003 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:26.088717 +I, [2020-03-06T13:37:52.859338 #20160] INFO -- py3-201923-windows-10-1909: Duration: 1843.06 ms +I, [2020-03-06T13:37:52.859696 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.860182 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.860627 #20160] INFO -- py3-201923-windows-10-1909: pid: +I, [2020-03-06T13:37:52.861082 #20160] INFO -- py3-201923-windows-10-1909: 3948 +I, [2020-03-06T13:37:52.861455 #20160] INFO -- py3-201923-windows-10-1909: retcode: +I, [2020-03-06T13:37:52.861833 #20160] INFO -- py3-201923-windows-10-1909: 0 +I, [2020-03-06T13:37:52.862215 #20160] INFO -- py3-201923-windows-10-1909: stderr: +I, [2020-03-06T13:37:52.862595 #20160] INFO -- py3-201923-windows-10-1909: stdout: +I, [2020-03-06T13:37:52.863120 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.863522 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal +I, [2020-03-06T13:37:52.863880 #20160] INFO -- py3-201923-windows-10-1909: Function: cmd.run +I, [2020-03-06T13:37:52.864240 #20160] INFO -- py3-201923-windows-10-1909: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers +I, [2020-03-06T13:37:52.864667 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.865134 #20160] INFO -- py3-201923-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:37:52.865594 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:27.947124 +I, [2020-03-06T13:37:52.866002 #20160] INFO -- py3-201923-windows-10-1909: Duration: 2594.329 ms +I, [2020-03-06T13:37:52.866405 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.873166 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.873810 #20160] INFO -- py3-201923-windows-10-1909: pid: +I, [2020-03-06T13:37:52.874408 #20160] INFO -- py3-201923-windows-10-1909: 6604 +I, [2020-03-06T13:37:52.875016 #20160] INFO -- py3-201923-windows-10-1909: retcode: +I, [2020-03-06T13:37:52.875595 #20160] INFO -- py3-201923-windows-10-1909: 0 +I, [2020-03-06T13:37:52.876191 #20160] INFO -- py3-201923-windows-10-1909: stderr: +I, [2020-03-06T13:37:52.876736 #20160] INFO -- py3-201923-windows-10-1909: stdout: +I, [2020-03-06T13:37:52.877232 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.877789 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:37:52.878290 #20160] INFO -- py3-201923-windows-10-1909: Function: reg.present +I, [2020-03-06T13:37:52.878817 #20160] INFO -- py3-201923-windows-10-1909: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:37:52.879320 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.879864 #20160] INFO -- py3-201923-windows-10-1909: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:37:52.880351 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:30.556985 +I, [2020-03-06T13:37:52.880849 #20160] INFO -- py3-201923-windows-10-1909: Duration: 14452.939 ms +I, [2020-03-06T13:37:52.881317 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.881825 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.882335 #20160] INFO -- py3-201923-windows-10-1909: reg: +I, [2020-03-06T13:37:52.882853 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.883338 #20160] INFO -- py3-201923-windows-10-1909: Added: +I, [2020-03-06T13:37:52.883769 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.884129 #20160] INFO -- py3-201923-windows-10-1909: Entry: +I, [2020-03-06T13:37:52.884604 #20160] INFO -- py3-201923-windows-10-1909: SystemDefaultTlsVersions +I, [2020-03-06T13:37:52.884977 #20160] INFO -- py3-201923-windows-10-1909: Inheritance: +I, [2020-03-06T13:37:52.885316 #20160] INFO -- py3-201923-windows-10-1909: True +I, [2020-03-06T13:37:52.885626 #20160] INFO -- py3-201923-windows-10-1909: Key: +I, [2020-03-06T13:37:52.885997 #20160] INFO -- py3-201923-windows-10-1909: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:37:52.886332 #20160] INFO -- py3-201923-windows-10-1909: Owner: +I, [2020-03-06T13:37:52.886668 #20160] INFO -- py3-201923-windows-10-1909: None +I, [2020-03-06T13:37:52.887032 #20160] INFO -- py3-201923-windows-10-1909: Perms: +I, [2020-03-06T13:37:52.887409 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.887750 #20160] INFO -- py3-201923-windows-10-1909: Deny: +I, [2020-03-06T13:37:52.888101 #20160] INFO -- py3-201923-windows-10-1909: None +I, [2020-03-06T13:37:52.888465 #20160] INFO -- py3-201923-windows-10-1909: Grant: +I, [2020-03-06T13:37:52.888819 #20160] INFO -- py3-201923-windows-10-1909: None +I, [2020-03-06T13:37:52.889307 #20160] INFO -- py3-201923-windows-10-1909: Value: +I, [2020-03-06T13:37:52.889749 #20160] INFO -- py3-201923-windows-10-1909: 1 +I, [2020-03-06T13:37:52.890162 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.890566 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:37:52.891896 #20160] INFO -- py3-201923-windows-10-1909: Function: reg.present +I, [2020-03-06T13:37:52.892478 #20160] INFO -- py3-201923-windows-10-1909: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:37:52.892961 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.893389 #20160] INFO -- py3-201923-windows-10-1909: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:37:52.893767 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:45.025880 +I, [2020-03-06T13:37:52.894092 #20160] INFO -- py3-201923-windows-10-1909: Duration: 236.649 ms +I, [2020-03-06T13:37:52.894403 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.894750 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.895215 #20160] INFO -- py3-201923-windows-10-1909: reg: +I, [2020-03-06T13:37:52.895698 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.896201 #20160] INFO -- py3-201923-windows-10-1909: Added: +I, [2020-03-06T13:37:52.896647 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.897055 #20160] INFO -- py3-201923-windows-10-1909: Entry: +I, [2020-03-06T13:37:52.897450 #20160] INFO -- py3-201923-windows-10-1909: SystemDefaultTlsVersions +I, [2020-03-06T13:37:52.897955 #20160] INFO -- py3-201923-windows-10-1909: Inheritance: +I, [2020-03-06T13:37:52.898530 #20160] INFO -- py3-201923-windows-10-1909: True +I, [2020-03-06T13:37:52.899116 #20160] INFO -- py3-201923-windows-10-1909: Key: +I, [2020-03-06T13:37:52.899576 #20160] INFO -- py3-201923-windows-10-1909: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:37:52.899942 #20160] INFO -- py3-201923-windows-10-1909: Owner: +I, [2020-03-06T13:37:52.900276 #20160] INFO -- py3-201923-windows-10-1909: None +I, [2020-03-06T13:37:52.900645 #20160] INFO -- py3-201923-windows-10-1909: Perms: +I, [2020-03-06T13:37:52.900997 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.901356 #20160] INFO -- py3-201923-windows-10-1909: Deny: +I, [2020-03-06T13:37:52.901717 #20160] INFO -- py3-201923-windows-10-1909: None +I, [2020-03-06T13:37:52.902093 #20160] INFO -- py3-201923-windows-10-1909: Grant: +I, [2020-03-06T13:37:52.902440 #20160] INFO -- py3-201923-windows-10-1909: None +I, [2020-03-06T13:37:52.902804 #20160] INFO -- py3-201923-windows-10-1909: Value: +I, [2020-03-06T13:37:52.903230 #20160] INFO -- py3-201923-windows-10-1909: 1 +I, [2020-03-06T13:37:52.903615 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.904007 #20160] INFO -- py3-201923-windows-10-1909: ID: manually.update_git_repo-ng +I, [2020-03-06T13:37:52.904334 #20160] INFO -- py3-201923-windows-10-1909: Function: archive.extracted +I, [2020-03-06T13:37:52.904762 #20160] INFO -- py3-201923-windows-10-1909: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:37:52.905143 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:52.905632 #20160] INFO -- py3-201923-windows-10-1909: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:37:52.906018 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:45.262529 +I, [2020-03-06T13:37:52.906391 #20160] INFO -- py3-201923-windows-10-1909: Duration: 888.013 ms +I, [2020-03-06T13:37:52.906795 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:52.907231 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:52.907569 #20160] INFO -- py3-201923-windows-10-1909: directories_created: +I, [2020-03-06T13:37:52.907968 #20160] INFO -- py3-201923-windows-10-1909: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:37:52.908384 #20160] INFO -- py3-201923-windows-10-1909: extracted_files: +I, [2020-03-06T13:37:52.908839 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ +I, [2020-03-06T13:37:52.909238 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:37:52.909640 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:37:52.910054 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:37:52.910496 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:37:52.910962 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:37:52.911396 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:37:52.911847 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:37:52.912199 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:37:52.912578 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:37:52.912953 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:37:52.913406 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:37:52.913853 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:37:52.914274 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:37:52.914704 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:37:52.915051 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:37:52.915478 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:37:52.915897 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:37:52.916288 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:37:52.916645 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:37:52.916965 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:37:52.917410 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:37:52.917818 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:37:52.918275 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:37:52.918717 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:37:52.919138 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:37:52.919491 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:37:52.919814 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:37:52.920162 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:37:52.920504 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:37:52.920849 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:37:52.921208 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:37:52.921596 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:37:52.922031 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:37:52.922435 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:37:52.922759 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:37:52.923100 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:37:52.923437 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:37:52.923777 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:37:52.924145 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:37:52.924509 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:37:52.924863 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:37:52.925290 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:37:52.925640 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:37:52.925995 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:37:52.926334 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:37:52.926644 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:37:52.927122 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:37:52.927548 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:37:52.927912 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:37:52.928406 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:37:52.928793 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:37:52.929166 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:37:52.929489 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:37:52.929897 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:37:52.930325 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:37:52.930674 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:37:52.931179 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:37:52.931722 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:37:52.932249 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:37:52.932755 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:37:52.933322 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:37:52.933849 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:37:52.934384 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:37:52.934910 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:37:52.935442 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:37:52.935928 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:37:52.936431 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:37:52.936933 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:37:52.937456 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:37:52.937954 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:37:52.938489 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:37:52.939105 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:37:52.939623 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:37:52.940139 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:37:52.940652 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:37:52.941170 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:37:52.941686 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:37:52.942215 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:37:52.942699 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:37:52.943094 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:37:52.943428 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:37:52.943798 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:37:52.944163 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:37:52.944600 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:37:52.945046 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:37:52.945412 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:37:52.945752 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:37:52.946068 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:37:52.946378 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:37:52.946778 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:37:52.947123 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:37:52.947502 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:37:52.947950 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:37:52.948421 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:37:52.948900 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:37:52.949319 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:37:52.949748 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:37:52.950144 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:37:52.950564 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:37:52.951079 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:37:52.951472 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:37:52.951910 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:37:52.952271 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:37:52.952648 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:37:52.953002 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:37:52.953458 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:37:52.954000 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:37:52.954554 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:37:52.955104 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:37:52.955619 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:37:52.956168 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:37:52.956687 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:37:52.957194 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:37:52.957681 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:37:52.958073 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:37:52.958551 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:37:52.958882 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:37:52.959220 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:37:52.959574 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:37:52.959997 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:37:52.960476 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:37:52.960909 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:37:52.961240 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:37:52.961595 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:37:52.961937 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:37:52.962298 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:37:52.962690 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:37:52.963131 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:37:52.963586 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:37:52.963911 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:37:52.964251 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:37:52.964652 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:37:52.965043 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:37:52.965407 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:37:52.965850 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:37:52.966190 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:37:52.966584 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:37:52.966927 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:37:52.967349 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:37:52.967816 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:37:52.968246 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:37:52.968642 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:37:52.969101 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:37:52.969534 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:37:52.969938 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:37:52.970320 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:37:52.970686 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:37:52.971077 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:37:52.971541 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:37:52.972008 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:37:52.972526 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:37:52.972919 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:37:52.973341 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:37:52.973840 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:37:52.974321 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:37:52.974831 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:37:52.975225 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:37:52.975598 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:37:52.976033 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:37:52.976431 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:37:52.976784 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:37:52.977278 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:37:52.977666 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:37:52.978061 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:37:52.978416 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:37:52.978788 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:37:52.979257 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:37:52.979641 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:37:52.980051 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:37:52.980579 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:37:52.981121 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:37:52.981636 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:37:52.982141 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:37:52.982662 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:37:52.983193 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:37:52.983631 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:37:52.984048 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:37:52.984548 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:37:52.985049 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:37:52.985550 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:37:52.986046 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:37:52.994443 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:37:52.995142 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:37:52.995785 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:37:52.996404 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:37:52.996928 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:37:52.997374 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:37:52.997905 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:37:52.998462 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:37:52.999011 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:37:52.999552 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:37:53.000109 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:37:53.000667 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:37:53.001202 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:37:53.001730 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:37:53.002233 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:37:53.002764 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:37:53.003293 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:37:53.003795 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:37:53.004340 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:37:53.004810 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:37:53.005203 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:37:53.005668 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:37:53.006142 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:37:53.006669 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:37:53.007177 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:37:53.007721 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:37:53.008233 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:37:53.008801 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:37:53.009394 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:37:53.009957 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:37:53.010509 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:37:53.010926 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:37:53.011370 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:37:53.011800 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:37:53.012241 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:37:53.012648 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:37:53.013118 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:37:53.013592 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:37:53.013987 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:37:53.014357 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:37:53.014854 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:37:53.015305 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:37:53.015714 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:37:53.016198 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:37:53.016652 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:37:53.017078 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:37:53.017503 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:37:53.017941 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:37:53.018361 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:37:53.018881 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:37:53.019281 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:37:53.019759 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:37:53.020184 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:37:53.020617 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:37:53.021074 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:37:53.021589 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:37:53.022003 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:37:53.022488 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:37:53.022946 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:37:53.023406 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:37:53.023911 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:37:53.024396 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:37:53.024920 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:37:53.025486 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:37:53.025941 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:37:53.026401 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:37:53.026911 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:37:53.027467 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:37:53.027909 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:37:53.028404 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:37:53.028874 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:37:53.029415 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:37:53.029977 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:37:53.030538 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:37:53.031074 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:37:53.031689 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:37:53.032255 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:37:53.032826 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:37:53.033383 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:37:53.033908 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:37:53.034368 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:37:53.034791 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:37:53.035215 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:37:53.035616 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:37:53.036020 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:37:53.036520 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:37:53.036956 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:37:53.037442 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:37:53.037897 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:37:53.038338 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:37:53.038796 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:37:53.039229 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:37:53.039658 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:37:53.040207 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:37:53.040716 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:37:53.041215 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:37:53.041673 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:37:53.042149 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:37:53.042600 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:37:53.043072 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:37:53.043485 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:37:53.043913 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:37:53.044301 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:37:53.044719 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:37:53.045243 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:37:53.045710 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:37:53.046113 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:37:53.046522 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:37:53.046915 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:37:53.047319 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:37:53.047770 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:37:53.048220 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:37:53.048640 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:37:53.049070 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:37:53.049480 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:37:53.049973 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:37:53.050395 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:37:53.050842 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:37:53.051244 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:37:53.051652 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:37:53.052066 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:37:53.052493 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:37:53.052887 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:37:53.053254 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:37:53.053675 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:37:53.054040 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:37:53.054503 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:37:53.055051 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:37:53.055574 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:37:53.056111 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:37:53.145220 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:37:53.145716 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:37:53.146410 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:37:53.146894 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:37:53.147289 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:37:53.147669 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:37:53.148041 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:37:53.148407 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:37:53.148798 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:37:53.149145 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:37:53.149521 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:37:53.149905 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:37:53.150303 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:37:53.150722 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:37:53.151086 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:37:53.151431 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:37:53.151775 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:37:53.152094 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:37:53.152438 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:37:53.152804 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:37:53.153185 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:37:53.153646 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:37:53.154074 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:37:53.154447 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:37:53.154883 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:37:53.155234 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:37:53.155659 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:37:53.156026 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:37:53.156451 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:37:53.157021 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:37:53.157504 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:37:53.157888 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:37:53.158257 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:37:53.158649 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:37:53.158998 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:37:53.159434 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:37:53.159898 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:37:53.160262 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:37:53.160646 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:37:53.160992 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:37:53.161369 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:37:53.161805 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:37:53.162192 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:37:53.162638 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:37:53.163011 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:37:53.163354 #20160] INFO -- py3-201923-windows-10-1909: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:37:53.163725 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.164062 #20160] INFO -- py3-201923-windows-10-1909: ID: rename-extract +I, [2020-03-06T13:37:53.164411 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:53.164730 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.165066 #20160] INFO -- py3-201923-windows-10-1909: Comment: file.rename: True +I, [2020-03-06T13:37:53.165483 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:46.166543 +I, [2020-03-06T13:37:53.165854 #20160] INFO -- py3-201923-windows-10-1909: Duration: 0.0 ms +I, [2020-03-06T13:37:53.166202 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.166557 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.166886 #20160] INFO -- py3-201923-windows-10-1909: file.rename: +I, [2020-03-06T13:37:53.167244 #20160] INFO -- py3-201923-windows-10-1909: True +I, [2020-03-06T13:37:53.167587 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.174659 #20160] INFO -- py3-201923-windows-10-1909: ID: pkg.refresh_db +I, [2020-03-06T13:37:53.175161 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:53.175594 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.176051 #20160] INFO -- py3-201923-windows-10-1909: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:37:53.176426 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:46.166543 +I, [2020-03-06T13:37:53.176780 #20160] INFO -- py3-201923-windows-10-1909: Duration: 10329.756 ms +I, [2020-03-06T13:37:53.177128 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.177460 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.177867 #20160] INFO -- py3-201923-windows-10-1909: pkg.refresh_db: +I, [2020-03-06T13:37:53.178259 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.178649 #20160] INFO -- py3-201923-windows-10-1909: failed: +I, [2020-03-06T13:37:53.179110 #20160] INFO -- py3-201923-windows-10-1909: 0 +I, [2020-03-06T13:37:53.179499 #20160] INFO -- py3-201923-windows-10-1909: success: +I, [2020-03-06T13:37:53.179871 #20160] INFO -- py3-201923-windows-10-1909: 298 +I, [2020-03-06T13:37:53.180316 #20160] INFO -- py3-201923-windows-10-1909: total: +I, [2020-03-06T13:37:53.180677 #20160] INFO -- py3-201923-windows-10-1909: 298 +I, [2020-03-06T13:37:53.181138 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.181522 #20160] INFO -- py3-201923-windows-10-1909: ID: kdiff3 +I, [2020-03-06T13:37:53.181924 #20160] INFO -- py3-201923-windows-10-1909: Function: pkg.installed +I, [2020-03-06T13:37:53.182281 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.182637 #20160] INFO -- py3-201923-windows-10-1909: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:37:53.183028 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:35:56.528845 +I, [2020-03-06T13:37:53.183359 #20160] INFO -- py3-201923-windows-10-1909: Duration: 21201.336 ms +I, [2020-03-06T13:37:53.183864 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.184265 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.184635 #20160] INFO -- py3-201923-windows-10-1909: kdiff3: +I, [2020-03-06T13:37:53.184986 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.185365 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:53.185738 #20160] INFO -- py3-201923-windows-10-1909: Not Found +I, [2020-03-06T13:37:53.186179 #20160] INFO -- py3-201923-windows-10-1909: old: +I, [2020-03-06T13:37:53.186605 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.186984 #20160] INFO -- py3-201923-windows-10-1909: ID: git +I, [2020-03-06T13:37:53.187314 #20160] INFO -- py3-201923-windows-10-1909: Function: pkg.installed +I, [2020-03-06T13:37:53.187660 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.188014 #20160] INFO -- py3-201923-windows-10-1909: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:37:53.188336 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:36:17.744372 +I, [2020-03-06T13:37:53.188718 #20160] INFO -- py3-201923-windows-10-1909: Duration: 27985.052 ms +I, [2020-03-06T13:37:53.189124 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.189457 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.189798 #20160] INFO -- py3-201923-windows-10-1909: git: +I, [2020-03-06T13:37:53.190122 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.190451 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:53.190849 #20160] INFO -- py3-201923-windows-10-1909: 2.23.0.windows.1 +I, [2020-03-06T13:37:53.191230 #20160] INFO -- py3-201923-windows-10-1909: old: +I, [2020-03-06T13:37:53.191643 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.191984 #20160] INFO -- py3-201923-windows-10-1909: ID: 7zip +I, [2020-03-06T13:37:53.192303 #20160] INFO -- py3-201923-windows-10-1909: Function: pkg.installed +I, [2020-03-06T13:37:53.192652 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.192998 #20160] INFO -- py3-201923-windows-10-1909: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:37:53.193402 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:36:45.760307 +I, [2020-03-06T13:37:53.193788 #20160] INFO -- py3-201923-windows-10-1909: Duration: 11546.64 ms +I, [2020-03-06T13:37:53.194107 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.194479 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.194834 #20160] INFO -- py3-201923-windows-10-1909: 7zip: +I, [2020-03-06T13:37:53.195165 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.195540 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:53.195973 #20160] INFO -- py3-201923-windows-10-1909: 18.06.00.0 +I, [2020-03-06T13:37:53.196310 #20160] INFO -- py3-201923-windows-10-1909: old: +I, [2020-03-06T13:37:53.196783 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.197260 #20160] INFO -- py3-201923-windows-10-1909: ID: windows_environment.refresh.path +I, [2020-03-06T13:37:53.197779 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:53.198151 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.198568 #20160] INFO -- py3-201923-windows-10-1909: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:37:53.198983 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:36:57.322405 +I, [2020-03-06T13:37:53.199357 #20160] INFO -- py3-201923-windows-10-1909: Duration: 32.423 ms +I, [2020-03-06T13:37:53.199739 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.200063 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.200466 #20160] INFO -- py3-201923-windows-10-1909: windows_environment.refresh: +I, [2020-03-06T13:37:53.200830 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.201257 #20160] INFO -- py3-201923-windows-10-1909: PATH: +I, [2020-03-06T13:37:53.202602 #20160] INFO -- py3-201923-windows-10-1909: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:37:53.203031 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.203435 #20160] INFO -- py3-201923-windows-10-1909: ID: chocolatey.bootstrap +I, [2020-03-06T13:37:53.203895 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:53.204289 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.204658 #20160] INFO -- py3-201923-windows-10-1909: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:37:53.204946 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.205358 #20160] INFO -- py3-201923-windows-10-1909: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:37:53.205680 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.206022 #20160] INFO -- py3-201923-windows-10-1909: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:37:53.206415 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.206770 #20160] INFO -- py3-201923-windows-10-1909: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:37:53.207114 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.207465 #20160] INFO -- py3-201923-windows-10-1909: Installing chocolatey on this machine +I, [2020-03-06T13:37:53.207754 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.208117 #20160] INFO -- py3-201923-windows-10-1909: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:37:53.208480 #20160] INFO -- py3-201923-windows-10-1909: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:37:53.208767 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.209187 #20160] INFO -- py3-201923-windows-10-1909: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:37:53.209619 #20160] INFO -- py3-201923-windows-10-1909: before you can use choco. +I, [2020-03-06T13:37:53.209977 #20160] INFO -- py3-201923-windows-10-1909: Restricting write permissions to Administrators +I, [2020-03-06T13:37:53.210365 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.210783 #20160] INFO -- py3-201923-windows-10-1909: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:37:53.211190 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.211572 #20160] INFO -- py3-201923-windows-10-1909: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:37:53.211919 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.212422 #20160] INFO -- py3-201923-windows-10-1909: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:37:53.212800 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.213146 #20160] INFO -- py3-201923-windows-10-1909: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:37:53.213526 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.213995 #20160] INFO -- py3-201923-windows-10-1909: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:37:53.214315 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.214629 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.214925 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.215274 #20160] INFO -- py3-201923-windows-10-1909: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:37:53.215561 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.216024 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.216494 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.217015 #20160] INFO -- py3-201923-windows-10-1909: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:37:53.217552 #20160] INFO -- py3-201923-windows-10-1909: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:37:53.218067 #20160] INFO -- py3-201923-windows-10-1909: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:37:53.218615 #20160] INFO -- py3-201923-windows-10-1909: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:37:53.219089 #20160] INFO -- py3-201923-windows-10-1909: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:37:53.219483 #20160] INFO -- py3-201923-windows-10-1909: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:37:53.219862 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.220282 #20160] INFO -- py3-201923-windows-10-1909: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:37:53.220626 #20160] INFO -- py3-201923-windows-10-1909: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:37:53.220943 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.221298 #20160] INFO -- py3-201923-windows-10-1909: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:37:53.221705 #20160] INFO -- py3-201923-windows-10-1909: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:37:53.222118 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.222503 #20160] INFO -- py3-201923-windows-10-1909: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:37:53.222800 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.223141 #20160] INFO -- py3-201923-windows-10-1909: Run choco /? for a list of functions. +I, [2020-03-06T13:37:53.223430 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.223787 #20160] INFO -- py3-201923-windows-10-1909: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:37:53.224188 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.224549 #20160] INFO -- py3-201923-windows-10-1909: first prior to using choco. +I, [2020-03-06T13:37:53.224951 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.225286 #20160] INFO -- py3-201923-windows-10-1909: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:37:53.225586 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.225941 #20160] INFO -- py3-201923-windows-10-1909: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:37:53.226303 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:36:57.354828 +I, [2020-03-06T13:37:53.226700 #20160] INFO -- py3-201923-windows-10-1909: Duration: 24873.833 ms +I, [2020-03-06T13:37:53.227046 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.227363 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.227725 #20160] INFO -- py3-201923-windows-10-1909: chocolatey.bootstrap: +I, [2020-03-06T13:37:53.228087 #20160] INFO -- py3-201923-windows-10-1909: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:37:53.228509 #20160] INFO -- py3-201923-windows-10-1909: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:37:53.228894 #20160] INFO -- py3-201923-windows-10-1909: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:37:53.229285 #20160] INFO -- py3-201923-windows-10-1909: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:37:53.229654 #20160] INFO -- py3-201923-windows-10-1909: Installing chocolatey on this machine +I, [2020-03-06T13:37:53.230076 #20160] INFO -- py3-201923-windows-10-1909: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:37:53.230553 #20160] INFO -- py3-201923-windows-10-1909: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:37:53.230936 #20160] INFO -- py3-201923-windows-10-1909: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:37:53.231356 #20160] INFO -- py3-201923-windows-10-1909: before you can use choco. +I, [2020-03-06T13:37:53.231751 #20160] INFO -- py3-201923-windows-10-1909: Restricting write permissions to Administrators +I, [2020-03-06T13:37:53.232087 #20160] INFO -- py3-201923-windows-10-1909: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:37:53.232445 #20160] INFO -- py3-201923-windows-10-1909: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:37:53.232805 #20160] INFO -- py3-201923-windows-10-1909: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:37:53.233220 #20160] INFO -- py3-201923-windows-10-1909: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:37:53.233621 #20160] INFO -- py3-201923-windows-10-1909: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:37:53.234009 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.234351 #20160] INFO -- py3-201923-windows-10-1909: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:37:53.234715 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.235053 #20160] INFO -- py3-201923-windows-10-1909: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:37:53.235444 #20160] INFO -- py3-201923-windows-10-1909: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:37:53.235881 #20160] INFO -- py3-201923-windows-10-1909: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:37:53.236222 #20160] INFO -- py3-201923-windows-10-1909: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:37:53.236585 #20160] INFO -- py3-201923-windows-10-1909: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:37:53.237051 #20160] INFO -- py3-201923-windows-10-1909: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:37:53.237662 #20160] INFO -- py3-201923-windows-10-1909: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:37:53.238162 #20160] INFO -- py3-201923-windows-10-1909: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:37:53.238540 #20160] INFO -- py3-201923-windows-10-1909: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:37:53.238893 #20160] INFO -- py3-201923-windows-10-1909: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:37:53.239235 #20160] INFO -- py3-201923-windows-10-1909: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:37:53.239578 #20160] INFO -- py3-201923-windows-10-1909: Run choco /? for a list of functions. +I, [2020-03-06T13:37:53.239907 #20160] INFO -- py3-201923-windows-10-1909: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:37:53.240236 #20160] INFO -- py3-201923-windows-10-1909: first prior to using choco. +I, [2020-03-06T13:37:53.240575 #20160] INFO -- py3-201923-windows-10-1909: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:37:53.240909 #20160] INFO -- py3-201923-windows-10-1909: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:37:53.241237 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.241574 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:37:53.242004 #20160] INFO -- py3-201923-windows-10-1909: Function: chocolatey.installed +I, [2020-03-06T13:37:53.242477 #20160] INFO -- py3-201923-windows-10-1909: Name: windirstat +I, [2020-03-06T13:37:53.242840 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.243204 #20160] INFO -- py3-201923-windows-10-1909: Comment: +I, [2020-03-06T13:37:53.243574 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:37:22.228661 +I, [2020-03-06T13:37:53.243973 #20160] INFO -- py3-201923-windows-10-1909: Duration: 10343.689 ms +I, [2020-03-06T13:37:53.244319 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.244678 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.245074 #20160] INFO -- py3-201923-windows-10-1909: windirstat: +I, [2020-03-06T13:37:53.245418 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.245786 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:53.246186 #20160] INFO -- py3-201923-windows-10-1909: - 1.1.2.20161210 +I, [2020-03-06T13:37:53.246528 #20160] INFO -- py3-201923-windows-10-1909: old: +I, [2020-03-06T13:37:53.247023 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.247391 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:37:53.247746 #20160] INFO -- py3-201923-windows-10-1909: Function: chocolatey.installed +I, [2020-03-06T13:37:53.248087 #20160] INFO -- py3-201923-windows-10-1909: Name: notepadplusplus +I, [2020-03-06T13:37:53.248397 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.248705 #20160] INFO -- py3-201923-windows-10-1909: Comment: +I, [2020-03-06T13:37:53.249039 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:37:32.572350 +I, [2020-03-06T13:37:53.249349 #20160] INFO -- py3-201923-windows-10-1909: Duration: 12140.688 ms +I, [2020-03-06T13:37:53.249681 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.250015 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.250513 #20160] INFO -- py3-201923-windows-10-1909: notepadplusplus: +I, [2020-03-06T13:37:53.250976 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.251381 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:53.251832 #20160] INFO -- py3-201923-windows-10-1909: - 7.8.5 +I, [2020-03-06T13:37:53.252272 #20160] INFO -- py3-201923-windows-10-1909: old: +I, [2020-03-06T13:37:53.252776 #20160] INFO -- py3-201923-windows-10-1909: notepadplusplus.install: +I, [2020-03-06T13:37:53.253266 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.253719 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:53.254134 #20160] INFO -- py3-201923-windows-10-1909: - 7.8.5 +I, [2020-03-06T13:37:53.254519 #20160] INFO -- py3-201923-windows-10-1909: old: +I, [2020-03-06T13:37:53.254896 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.255334 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:37:53.255734 #20160] INFO -- py3-201923-windows-10-1909: Function: dism.feature_installed +I, [2020-03-06T13:37:53.256090 #20160] INFO -- py3-201923-windows-10-1909: Name: TelnetClient +I, [2020-03-06T13:37:53.256430 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.256829 #20160] INFO -- py3-201923-windows-10-1909: Comment: Installed TelnetClient +I, [2020-03-06T13:37:53.257182 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:37:44.713038 +I, [2020-03-06T13:37:53.257639 #20160] INFO -- py3-201923-windows-10-1909: Duration: 7281.244 ms +I, [2020-03-06T13:37:53.258142 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.258711 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.259102 #20160] INFO -- py3-201923-windows-10-1909: feature: +I, [2020-03-06T13:37:53.259485 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.259845 #20160] INFO -- py3-201923-windows-10-1909: new: +I, [2020-03-06T13:37:53.260171 #20160] INFO -- py3-201923-windows-10-1909: TelnetClient +I, [2020-03-06T13:37:53.260603 #20160] INFO -- py3-201923-windows-10-1909: pid: +I, [2020-03-06T13:37:53.261035 #20160] INFO -- py3-201923-windows-10-1909: 1328 +I, [2020-03-06T13:37:53.261423 #20160] INFO -- py3-201923-windows-10-1909: retcode: +I, [2020-03-06T13:37:53.261787 #20160] INFO -- py3-201923-windows-10-1909: 0 +I, [2020-03-06T13:37:53.262105 #20160] INFO -- py3-201923-windows-10-1909: stderr: +I, [2020-03-06T13:37:53.262454 #20160] INFO -- py3-201923-windows-10-1909: stdout: +I, [2020-03-06T13:37:53.262788 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.263189 #20160] INFO -- py3-201923-windows-10-1909: ID: windows.module.system.reboot +I, [2020-03-06T13:37:53.263640 #20160] INFO -- py3-201923-windows-10-1909: Function: module.run +I, [2020-03-06T13:37:53.263968 #20160] INFO -- py3-201923-windows-10-1909: Result: True +I, [2020-03-06T13:37:53.264284 #20160] INFO -- py3-201923-windows-10-1909: Comment: system.reboot: True +I, [2020-03-06T13:37:53.264632 #20160] INFO -- py3-201923-windows-10-1909: Started: 10:37:51.994282 +I, [2020-03-06T13:37:53.264945 #20160] INFO -- py3-201923-windows-10-1909: Duration: 297.114 ms +I, [2020-03-06T13:37:53.265253 #20160] INFO -- py3-201923-windows-10-1909: Changes: +I, [2020-03-06T13:37:53.265656 #20160] INFO -- py3-201923-windows-10-1909: ---------- +I, [2020-03-06T13:37:53.266000 #20160] INFO -- py3-201923-windows-10-1909: system.reboot: +I, [2020-03-06T13:37:53.266370 #20160] INFO -- py3-201923-windows-10-1909: True +I, [2020-03-06T13:37:53.266677 #20160] INFO -- py3-201923-windows-10-1909: +I, [2020-03-06T13:37:53.266979 #20160] INFO -- py3-201923-windows-10-1909: Summary for local +I, [2020-03-06T13:37:53.267275 #20160] INFO -- py3-201923-windows-10-1909: ------------- +I, [2020-03-06T13:37:53.267600 #20160] INFO -- py3-201923-windows-10-1909: Succeeded: 25 (changed=25) +I, [2020-03-06T13:37:53.267898 #20160] INFO -- py3-201923-windows-10-1909: Failed: 0 +I, [2020-03-06T13:37:53.268259 #20160] INFO -- py3-201923-windows-10-1909: ------------- +I, [2020-03-06T13:37:53.268630 #20160] INFO -- py3-201923-windows-10-1909: Total states run: 25 +I, [2020-03-06T13:37:53.268940 #20160] INFO -- py3-201923-windows-10-1909: Total run time: 157.047 s +I, [2020-03-06T13:37:53.296738 #20160] INFO -- py3-201923-windows-10-1909: Downloading files from +I, [2020-03-06T13:37:53.455737 #20160] INFO -- py3-201923-windows-10-1909: Finished converging (4m16.31s). +I, [2020-03-06T13:37:53.455921 #20160] INFO -- py3-201923-windows-10-1909: -----> Setting up ... +I, [2020-03-06T13:37:53.458333 #20160] INFO -- py3-201923-windows-10-1909: Finished setting up (0m0.00s). +I, [2020-03-06T13:37:53.458563 #20160] INFO -- py3-201923-windows-10-1909: -----> Verifying ... +I, [2020-03-06T13:37:54.795824 #20160] INFO -- py3-201923-windows-10-1909: Loaded default +I, [2020-03-06T13:37:59.689944 #20160] INFO -- py3-201923-windows-10-1909: [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). +I, [2020-03-06T13:38:59.405839 #20160] INFO -- py3-201923-windows-10-1909: Finished verifying (1m5.94s). +I, [2020-03-06T13:38:59.406029 #20160] INFO -- py3-201923-windows-10-1909: Finished testing (6m29.54s). +I, [2020-03-06T13:38:59.407751 #20160] INFO -- py3-201923-windows-10-1909: -----> Destroying ... +I, [2020-03-06T13:39:09.526863 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:39:11.190844 #20160] INFO -- py3-201923-windows-10-1909: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:39:12.066089 #20160] INFO -- py3-201923-windows-10-1909: Vagrant instance destroyed. +I, [2020-03-06T13:39:12.067161 #20160] INFO -- py3-201923-windows-10-1909: Finished destroying (0m12.66s). diff --git a/test/results/py3-201923-windows-10-1909.log b/test/results/py3-201923-windows-10-1909.log new file mode 100644 index 0000000..804ffa4 --- /dev/null +++ b/test/results/py3-201923-windows-10-1909.log @@ -0,0 +1,1087 @@ +Fri Mar 6 13:32:11 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +Author: Peter Mudd +Date: Fri Mar 6 12:43:24 2020 -0500 + + feat: support saltstack 3000 +CURRENT BRANCH COMMIT ID +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +CURRENT RELEASE TAG +v1.0.0 +-----> Starting Test Kitchen (v2.3.4) +-----> Cleaning up any prior instances of +-----> Destroying ... + Finished destroying (0m0.00s). +-----> Testing +-----> Creating ... + Bringing machine 'default' up with 'virtualbox' provider... + ==> default: Cloning VM... + ==> default: Matching MAC address for NAT networking... + ==> default: Checking if box 'StefanScherer/windows_10' version '2020.02.12' is up to date... + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-10-1909-16e135b1-94a8-4dd1-b749-bf1c1e6456a3 + ==> default: Clearing any previously set network interfaces... + ==> default: Preparing network interfaces based on configuration... + default: Adapter 1: nat + ==> default: Forwarding ports... + default: 3389 (guest) => 3389 (host) (adapter 1) + default: 5985 (guest) => 55985 (host) (adapter 1) + default: 5986 (guest) => 55986 (host) (adapter 1) + default: 22 (guest) => 2222 (host) (adapter 1) + ==> default: Running 'pre-boot' VM customizations... + ==> default: Booting VM... + ==> default: Waiting for machine to boot. This may take a few minutes... + default: WinRM address: 127.0.0.1:55985 + default: WinRM username: vagrant + default: WinRM execution_time_limit: PT2H + default: WinRM transport: negotiate + ==> default: Machine booted and ready! + ==> default: Checking for guest additions in VM... + ==> default: Mounting shared folders... + default: /results => /mnt/c/tmp/results + ==> default: Machine not provisioned because `--no-provision` is specified. + [WinRM] Established + + Vagrant instance created. + Finished creating (1m7.27s). +-----> Converging ... + Preparing files for transfer + Preparing salt-minion + Preparing pillars into /srv/pillar + pillars-from-files is deprecated in favor of pillars_from_files + Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula + Preparing state_top + Preparing scripts into /etc/salt/scripts + + + Directory: C:\ + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:33 AM temp + Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + Installing Salt minion + Starting the Salt minion service + Salt minion successfully installed + You asked for latest and you have 2019.2.3 installed, sweet! + + + + + Directory: C:\Users\vagrant\AppData\Local\Temp + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 10:34 AM kitchen + + + Transferring files to + c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + At line:1 char:131 + + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException + + FullyQualifiedErrorId : NativeCommandError + + + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + + + local: + ---------- + ID: windows.state.system.hostname.saltstack1 + Function: system.hostname + Name: saltstack1 + Result: True + Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot + Started: 10:35:14.978617 + Duration: 109.746 ms + Changes: + ---------- + hostname: + saltstack1 + ---------- + ID: windows.state.system.computer_desc.description + Function: system.computer_desc + Name: Saltstack Computer Description + Result: True + Comment: Computer description successfully changed to 'Saltstack Computer Description' + Started: 10:35:15.103874 + Duration: 3297.696 ms + Changes: + ---------- + new: + Saltstack Computer Description + old: + ---------- + ID: windows.state.timezone.system.America/New_York + Function: timezone.system + Name: America/New_York + Result: True + Comment: Set timezone America/New_York + Started: 10:35:18.432041 + Duration: 31.527 ms + Changes: + ---------- + timezone: + America/New_York + ---------- + ID: windows.module.environ.items + Function: module.run + Result: True + Comment: environ.items: Success + Started: 10:35:18.482077 + Duration: 14.65 ms + Changes: + ---------- + environ.items: + ---------- + ALLUSERSPROFILE: + C:\ProgramData + APPDATA: + C:\Users\vagrant\AppData\Roaming + COMMONPROGRAMFILES: + C:\Program Files\Common Files + COMMONPROGRAMFILES(X86): + C:\Program Files (x86)\Common Files + COMMONPROGRAMW6432: + C:\Program Files\Common Files + COMPUTERNAME: + VAGRANT-10 + COMSPEC: + C:\Windows\system32\cmd.exe + DRIVERDATA: + C:\Windows\System32\Drivers\DriverData + HOMEDRIVE: + C: + HOMEPATH: + \Users\vagrant + LOCALAPPDATA: + C:\Users\vagrant\AppData\Local + LOGONSERVER: + \\VAGRANT-10 + NUMBER_OF_PROCESSORS: + 2 + ONEDRIVE: + C:\Users\vagrant\OneDrive + OS: + Windows_NT + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 + PATHEXT: + .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL + PROCESSOR_ARCHITECTURE: + AMD64 + PROCESSOR_IDENTIFIER: + Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_LEVEL: + 6 + PROCESSOR_REVISION: + 8e0c + PROGRAMDATA: + C:\ProgramData + PROGRAMFILES: + C:\Program Files + PROGRAMFILES(X86): + C:\Program Files (x86) + PROGRAMW6432: + C:\Program Files + PROMPT: + $P$G + PSMODULEPATH: + C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules + PUBLIC: + C:\Users\Public + PYTHON: + C:\salt\bin\python.exe + SALTDIR: + C:\salt + SCRIPT: + C:\salt\bin\Scripts\salt-call + SYSTEMDRIVE: + C: + SYSTEMROOT: + C:\Windows + TEMP: + C:\Users\vagrant\AppData\Local\Temp + TMP: + C:\Users\vagrant\AppData\Local\Temp + USERDOMAIN: + VAGRANT-10 + USERDOMAIN_ROAMINGPROFILE: + VAGRANT-10 + USERNAME: + vagrant + USERPROFILE: + C:\Users\vagrant + WINDIR: + C:\Windows + ---------- + ID: windows.module.user.current + Function: module.run + Result: True + Comment: user.current: VAGRANT-10\vagrant + Started: 10:35:18.496727 + Duration: 44.733 ms + Changes: + ---------- + user.current: + VAGRANT-10\vagrant + ---------- + ID: windows.module.status.uptime + Function: module.run + Result: True + Comment: status.uptime: 0:02:27.620703 + Started: 10:35:18.557105 + Duration: 63.598 ms + Changes: + ---------- + status.uptime: + 0:02:27.620703 + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection + Function: cmd.run + Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run + Started: 10:35:18.650929 + Duration: 2921.454 ms + Changes: + ---------- + pid: + 372 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet + Function: cmd.run + Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run + Started: 10:35:21.572383 + Duration: 2422.119 ms + Changes: + ---------- + pid: + 5972 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run + Started: 10:35:23.994502 + Duration: 2094.215 ms + Changes: + ---------- + pid: + 7360 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo + Function: cmd.run + Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run + Started: 10:35:26.088717 + Duration: 1843.06 ms + Changes: + ---------- + pid: + 3948 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal + Function: cmd.run + Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers + Result: True + Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run + Started: 10:35:27.947124 + Duration: 2594.329 ms + Changes: + ---------- + pid: + 6604 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:35:30.556985 + Duration: 14452.939 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 10:35:45.025880 + Duration: 236.649 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: manually.update_git_repo-ng + Function: archive.extracted + Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + Result: True + Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs + Started: 10:35:45.262529 + Duration: 888.013 ms + Changes: + ---------- + directories_created: + - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ + extracted_files: + - salt-winrepo-ng-master/ + - salt-winrepo-ng-master/.gitignore + - salt-winrepo-ng-master/.travis.yml + - salt-winrepo-ng-master/.travis/ + - salt-winrepo-ng-master/.travis/requirements.txt + - salt-winrepo-ng-master/.travis/tests.py + - salt-winrepo-ng-master/7zip.sls + - salt-winrepo-ng-master/LICENSE + - salt-winrepo-ng-master/README.md + - salt-winrepo-ng-master/_config.yml + - salt-winrepo-ng-master/activeperl_x64.sls + - salt-winrepo-ng-master/activeperl_x86.sls + - salt-winrepo-ng-master/adobeair.sls + - salt-winrepo-ng-master/adobereader-dc-classic.sls + - salt-winrepo-ng-master/adobereader-xi.sls + - salt-winrepo-ng-master/adobereader.sls + - salt-winrepo-ng-master/adobeshockwaveplayer.sls + - salt-winrepo-ng-master/adv-ip-scanner.sls + - salt-winrepo-ng-master/adv-port-scanner.sls + - salt-winrepo-ng-master/advancedlogging.sls + - salt-winrepo-ng-master/anydesk-msi.sls + - salt-winrepo-ng-master/anydesk.sls + - salt-winrepo-ng-master/applicationrequestrouting.sls + - salt-winrepo-ng-master/aspnet-mvc1.sls + - salt-winrepo-ng-master/atom.sls + - salt-winrepo-ng-master/audacity.sls + - salt-winrepo-ng-master/auditbeat/ + - salt-winrepo-ng-master/auditbeat/init.sls + - salt-winrepo-ng-master/auditbeat/install.cmd + - salt-winrepo-ng-master/auditbeat/install.ps1 + - salt-winrepo-ng-master/auditbeat/remove.cmd + - salt-winrepo-ng-master/autohotkey.sls + - salt-winrepo-ng-master/autoit.sls + - salt-winrepo-ng-master/autopsy.sls + - salt-winrepo-ng-master/awscli.sls + - salt-winrepo-ng-master/azuredatastudio.sls + - salt-winrepo-ng-master/bandizip.sls + - salt-winrepo-ng-master/belarc-advisor.sls + - salt-winrepo-ng-master/bginfo4x.sls + - salt-winrepo-ng-master/bitnami-nginxstack.sls + - salt-winrepo-ng-master/bitvise.sls + - salt-winrepo-ng-master/blender.sls + - salt-winrepo-ng-master/bootracer.sls + - salt-winrepo-ng-master/bulk_extractor.sls + - salt-winrepo-ng-master/bulkrenameutility.sls + - salt-winrepo-ng-master/ccleaner-slim.sls + - salt-winrepo-ng-master/ccleaner.sls + - salt-winrepo-ng-master/cdburnerxp.sls + - salt-winrepo-ng-master/cdroller.sls + - salt-winrepo-ng-master/check-mk-agent-msi.sls + - salt-winrepo-ng-master/check-mk-agent.sls + - salt-winrepo-ng-master/chocolatey/ + - salt-winrepo-ng-master/chocolatey/init.sls + - salt-winrepo-ng-master/chocolatey/install.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.ps1 + - salt-winrepo-ng-master/chrome-rdp.sls + - salt-winrepo-ng-master/chrome.sls + - salt-winrepo-ng-master/clamav.sls + - salt-winrepo-ng-master/clamwin.sls + - salt-winrepo-ng-master/classicshell.sls + - salt-winrepo-ng-master/clink.sls + - salt-winrepo-ng-master/conemu.sls + - salt-winrepo-ng-master/cpu-z.sls + - salt-winrepo-ng-master/curl.sls + - salt-winrepo-ng-master/cyberduck-cli.sls + - salt-winrepo-ng-master/cyberduck-msi.sls + - salt-winrepo-ng-master/cyberduck.sls + - salt-winrepo-ng-master/defraggler.sls + - salt-winrepo-ng-master/docs/ + - salt-winrepo-ng-master/docs/ReadMe.md + - salt-winrepo-ng-master/dotnet.sls + - salt-winrepo-ng-master/dropbox.sls + - salt-winrepo-ng-master/duplicati.sls + - salt-winrepo-ng-master/dvdstyler.sls + - salt-winrepo-ng-master/echo-desktop.sls + - salt-winrepo-ng-master/eea.sls + - salt-winrepo-ng-master/emet.sls + - salt-winrepo-ng-master/emsisoft-anti-malware.sls + - salt-winrepo-ng-master/eraser.sls + - salt-winrepo-ng-master/erlang/ + - salt-winrepo-ng-master/erlang/init.sls + - salt-winrepo-ng-master/erlang/install.cmd + - salt-winrepo-ng-master/evernote.sls + - salt-winrepo-ng-master/fiddler.sls + - salt-winrepo-ng-master/filebeat/ + - salt-winrepo-ng-master/filebeat/init.sls + - salt-winrepo-ng-master/filebeat/install.cmd + - salt-winrepo-ng-master/filebeat/install.ps1 + - salt-winrepo-ng-master/filebeat/remove.cmd + - salt-winrepo-ng-master/filehippo-app-manager.sls + - salt-winrepo-ng-master/filezilla.sls + - salt-winrepo-ng-master/firefox-esr_x64.sls + - salt-winrepo-ng-master/firefox-esr_x86.sls + - salt-winrepo-ng-master/firefox_x64.sls + - salt-winrepo-ng-master/firefox_x86.sls + - salt-winrepo-ng-master/functionbeat/ + - salt-winrepo-ng-master/functionbeat/init.sls + - salt-winrepo-ng-master/functionbeat/install.cmd + - salt-winrepo-ng-master/functionbeat/install.ps1 + - salt-winrepo-ng-master/functionbeat/remove.cmd + - salt-winrepo-ng-master/gedit.sls + - salt-winrepo-ng-master/gimp.sls + - salt-winrepo-ng-master/git-extensions.sls + - salt-winrepo-ng-master/git.sls + - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls + - salt-winrepo-ng-master/gnucash.sls + - salt-winrepo-ng-master/golang.sls + - salt-winrepo-ng-master/goodsync.sls + - salt-winrepo-ng-master/gow.sls + - salt-winrepo-ng-master/gpg4win-light.sls + - salt-winrepo-ng-master/gpg4win-vanilla.sls + - salt-winrepo-ng-master/gpg4win/ + - salt-winrepo-ng-master/gpg4win/init.sls + - salt-winrepo-ng-master/gpg4win/silent.ini + - salt-winrepo-ng-master/graylog-collector-sidecar.sls + - salt-winrepo-ng-master/grepwin.sls + - salt-winrepo-ng-master/gvim.sls + - salt-winrepo-ng-master/handbrake.sls + - salt-winrepo-ng-master/heartbeat/ + - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp + - salt-winrepo-ng-master/heartbeat/init.sls + - salt-winrepo-ng-master/heartbeat/install.cmd + - salt-winrepo-ng-master/heartbeat/install.ps1 + - salt-winrepo-ng-master/heartbeat/remove.cmd + - salt-winrepo-ng-master/hipchat.sls + - salt-winrepo-ng-master/hostsfileeditor.sls + - salt-winrepo-ng-master/hwinfo.sls + - salt-winrepo-ng-master/ice.sls + - salt-winrepo-ng-master/icecast.sls + - salt-winrepo-ng-master/icloud.sls + - salt-winrepo-ng-master/iismediaservices.sls + - salt-winrepo-ng-master/influx-capacitor.sls + - salt-winrepo-ng-master/inkscape.sls + - salt-winrepo-ng-master/intellij-community.sls + - salt-winrepo-ng-master/intellij-ultimate.sls + - salt-winrepo-ng-master/internet-evidence-finder.sls + - salt-winrepo-ng-master/irfanview-plugins.sls + - salt-winrepo-ng-master/irfanview.sls + - salt-winrepo-ng-master/isapirewrite-lite.sls + - salt-winrepo-ng-master/itunes.sls + - salt-winrepo-ng-master/jdk8.sls + - salt-winrepo-ng-master/jre.sls + - salt-winrepo-ng-master/jre8.sls + - salt-winrepo-ng-master/jungledisk-server-management.sls + - salt-winrepo-ng-master/jungledisk-server.sls + - salt-winrepo-ng-master/jungledisk-workgroup.sls + - salt-winrepo-ng-master/kdiff3.sls + - salt-winrepo-ng-master/keepass-2x.sls + - salt-winrepo-ng-master/keepass.sls + - salt-winrepo-ng-master/lastpass.sls + - salt-winrepo-ng-master/lazarus.sls + - salt-winrepo-ng-master/libreoffice.sls + - salt-winrepo-ng-master/logparser.sls + - salt-winrepo-ng-master/maas360bootanalyzer.sls + - salt-winrepo-ng-master/malwarebytes.sls + - salt-winrepo-ng-master/mariadb.sls + - salt-winrepo-ng-master/mercurial.sls + - salt-winrepo-ng-master/messageanalyzer.sls + - salt-winrepo-ng-master/metricbeat/ + - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp + - salt-winrepo-ng-master/metricbeat/init.sls + - salt-winrepo-ng-master/metricbeat/install.cmd + - salt-winrepo-ng-master/metricbeat/install.ps1 + - salt-winrepo-ng-master/metricbeat/remove.cmd + - salt-winrepo-ng-master/microsoft-build-tools.sls + - salt-winrepo-ng-master/mikogo.sls + - salt-winrepo-ng-master/miktex-basic.sls + - salt-winrepo-ng-master/mongodb.sls + - salt-winrepo-ng-master/ms-mbsa.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls + - salt-winrepo-ng-master/mucommander.sls + - salt-winrepo-ng-master/mysql-essential.sls + - salt-winrepo-ng-master/mysql-installer-community.sls + - salt-winrepo-ng-master/mysql-workbench.sls + - salt-winrepo-ng-master/never10.sls + - salt-winrepo-ng-master/newrelic-infra.sls + - salt-winrepo-ng-master/nextcloud-client.sls + - salt-winrepo-ng-master/nmap.sls + - salt-winrepo-ng-master/node.js-lts.sls + - salt-winrepo-ng-master/node.js.sls + - salt-winrepo-ng-master/nomacs.sls + - salt-winrepo-ng-master/npp.sls + - salt-winrepo-ng-master/nsclient.sls + - salt-winrepo-ng-master/nsis.sls + - salt-winrepo-ng-master/ntp.sls + - salt-winrepo-ng-master/nunit-console.sls + - salt-winrepo-ng-master/nxlog.sls + - salt-winrepo-ng-master/octopus-tentacle.sls + - salt-winrepo-ng-master/openlp.sls + - salt-winrepo-ng-master/openoffice.sls + - salt-winrepo-ng-master/openvpn.sls + - salt-winrepo-ng-master/osquery.sls + - salt-winrepo-ng-master/ossec-agent.sls + - salt-winrepo-ng-master/owncloud.sls + - salt-winrepo-ng-master/packetbeat/ + - salt-winrepo-ng-master/packetbeat/init.sls + - salt-winrepo-ng-master/packetbeat/install.cmd + - salt-winrepo-ng-master/packetbeat/install.ps1 + - salt-winrepo-ng-master/packetbeat/remove.cmd + - salt-winrepo-ng-master/pandoc.sls + - salt-winrepo-ng-master/parallels-client-15.sls + - salt-winrepo-ng-master/pass4win.sls + - salt-winrepo-ng-master/passware-kit-agent.sls + - salt-winrepo-ng-master/passware-kit-forensic.sls + - salt-winrepo-ng-master/patchmypc-free.sls + - salt-winrepo-ng-master/pdf24creator.sls + - salt-winrepo-ng-master/pdfcreator.sls + - salt-winrepo-ng-master/peazip.sls + - salt-winrepo-ng-master/pgadmin4.sls + - salt-winrepo-ng-master/pgina.sls + - salt-winrepo-ng-master/pidgin.sls + - salt-winrepo-ng-master/postgresql.sls + - salt-winrepo-ng-master/powerbi-desktop.sls + - salt-winrepo-ng-master/powershell-core.sls + - salt-winrepo-ng-master/prometheus-wmi-exporter.sls + - salt-winrepo-ng-master/putty.sls + - salt-winrepo-ng-master/pycharm-pro/ + - salt-winrepo-ng-master/pycharm-pro/init.sls + - salt-winrepo-ng-master/pycharm-pro/silent.config + - salt-winrepo-ng-master/python2_x64.sls + - salt-winrepo-ng-master/python2_x86.sls + - salt-winrepo-ng-master/python3_x64.sls + - salt-winrepo-ng-master/python3_x86.sls + - salt-winrepo-ng-master/qemu.sls + - salt-winrepo-ng-master/queueexplorerpro.sls + - salt-winrepo-ng-master/quicktime.sls + - salt-winrepo-ng-master/rabbitmq.sls + - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls + - salt-winrepo-ng-master/rakudo-star_x64.sls + - salt-winrepo-ng-master/rasclient.sls + - salt-winrepo-ng-master/rdcman.sls + - salt-winrepo-ng-master/rocketchat.sls + - salt-winrepo-ng-master/rubyinstaller_x64.sls + - salt-winrepo-ng-master/rubyinstaller_x86.sls + - salt-winrepo-ng-master/salt-minion-py2.sls + - salt-winrepo-ng-master/salt-minion-py3.sls + - salt-winrepo-ng-master/sandboxie.sls + - salt-winrepo-ng-master/scaleout.sls + - salt-winrepo-ng-master/secunia.psi.sls + - salt-winrepo-ng-master/sensu.sls + - salt-winrepo-ng-master/sharpdevelop.sls + - salt-winrepo-ng-master/skitch.sls + - salt-winrepo-ng-master/skype-msi.sls + - salt-winrepo-ng-master/skype.sls + - salt-winrepo-ng-master/slack-machine-msi.sls + - salt-winrepo-ng-master/slack-user-msi.sls + - salt-winrepo-ng-master/slack.sls + - salt-winrepo-ng-master/smartmontools.sls + - salt-winrepo-ng-master/snmptools.sls + - salt-winrepo-ng-master/soapui.sls + - salt-winrepo-ng-master/software-informer.sls + - salt-winrepo-ng-master/sourcetree.sls + - salt-winrepo-ng-master/spybot-anti-beacon.sls + - salt-winrepo-ng-master/spybot.sls + - salt-winrepo-ng-master/sscserv-free.sls + - salt-winrepo-ng-master/stayawake/ + - salt-winrepo-ng-master/stayawake/init.sls + - salt-winrepo-ng-master/stayawake/install.cmd + - salt-winrepo-ng-master/steam.sls + - salt-winrepo-ng-master/stellarium.sls + - salt-winrepo-ng-master/strawberryperl_x64.sls + - salt-winrepo-ng-master/strawberryperl_x86.sls + - salt-winrepo-ng-master/stunnel.sls + - salt-winrepo-ng-master/subinacl.sls + - salt-winrepo-ng-master/sumatrapdf.sls + - salt-winrepo-ng-master/svn.sls + - salt-winrepo-ng-master/teamviewer.sls + - salt-winrepo-ng-master/teamviewer_host.sls + - salt-winrepo-ng-master/teracopy.sls + - salt-winrepo-ng-master/texmaker.sls + - salt-winrepo-ng-master/texniccenter.sls + - salt-winrepo-ng-master/texstudio.sls + - salt-winrepo-ng-master/texworks.sls + - salt-winrepo-ng-master/thunderbird.sls + - salt-winrepo-ng-master/tightvnc.sls + - salt-winrepo-ng-master/todotxt.net.sls + - salt-winrepo-ng-master/todour.sls + - salt-winrepo-ng-master/tortoise-bzr.sls + - salt-winrepo-ng-master/tortoise-git.sls + - salt-winrepo-ng-master/tortoise-hg.sls + - salt-winrepo-ng-master/tortoise-svn.sls + - salt-winrepo-ng-master/truecrypt.sls + - salt-winrepo-ng-master/ultradefrag.sls + - salt-winrepo-ng-master/urlrewrite.sls + - salt-winrepo-ng-master/usbdlm.sls + - salt-winrepo-ng-master/vagrant.sls + - salt-winrepo-ng-master/vcforpython27.sls + - salt-winrepo-ng-master/vcxsrv.sls + - salt-winrepo-ng-master/verysleepy.sls + - salt-winrepo-ng-master/veyon.sls + - salt-winrepo-ng-master/virtualbox.sls + - salt-winrepo-ng-master/viscosity.sls + - salt-winrepo-ng-master/vivaldi.sls + - salt-winrepo-ng-master/vlc.sls + - salt-winrepo-ng-master/vs-community.sls + - salt-winrepo-ng-master/vs_remotetools_2017.sls + - salt-winrepo-ng-master/vscode.sls + - salt-winrepo-ng-master/vsee.sls + - salt-winrepo-ng-master/wamp-server-3.sls + - salt-winrepo-ng-master/wamp-stack.sls + - salt-winrepo-ng-master/webdeploy.sls + - salt-winrepo-ng-master/webplatforminstaller.sls + - salt-winrepo-ng-master/win-app-manager.sls + - salt-winrepo-ng-master/windirstat.sls + - salt-winrepo-ng-master/winhttpcertcfg.sls + - salt-winrepo-ng-master/winlogbeat/ + - salt-winrepo-ng-master/winlogbeat/init.sls + - salt-winrepo-ng-master/winlogbeat/install.cmd + - salt-winrepo-ng-master/winlogbeat/install.ps1 + - salt-winrepo-ng-master/winlogbeat/remove.cmd + - salt-winrepo-ng-master/winmerge.sls + - salt-winrepo-ng-master/winmtr.sls + - salt-winrepo-ng-master/winpcap.sls + - salt-winrepo-ng-master/winrar.sls + - salt-winrepo-ng-master/winscp.sls + - salt-winrepo-ng-master/wireshark.sls + - salt-winrepo-ng-master/wmi_provider/ + - salt-winrepo-ng-master/wmi_provider/README.md + - salt-winrepo-ng-master/wmi_provider/answer.txt + - salt-winrepo-ng-master/wmi_provider/init.sls + - salt-winrepo-ng-master/wmi_provider/majsetup.reg + - salt-winrepo-ng-master/wscc.sls + - salt-winrepo-ng-master/wufuc.sls + - salt-winrepo-ng-master/xampp.sls + - salt-winrepo-ng-master/xming.sls + - salt-winrepo-ng-master/yubikey-manager.sls + - salt-winrepo-ng-master/yubikey-personalization-tool.sls + - salt-winrepo-ng-master/zabbix-agent.sls + - salt-winrepo-ng-master/zipinstaller/ + - salt-winrepo-ng-master/zipinstaller/init.sls + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic + - salt-winrepo-ng-master/zoom.sls + ---------- + ID: rename-extract + Function: module.run + Result: True + Comment: file.rename: True + Started: 10:35:46.166543 + Duration: 0.0 ms + Changes: + ---------- + file.rename: + True + ---------- + ID: pkg.refresh_db + Function: module.run + Result: True + Comment: check_cmd determined the state succeeded + Started: 10:35:46.166543 + Duration: 10329.756 ms + Changes: + ---------- + pkg.refresh_db: + ---------- + failed: + 0 + success: + 298 + total: + 298 + ---------- + ID: kdiff3 + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: kdiff3 + Started: 10:35:56.528845 + Duration: 21201.336 ms + Changes: + ---------- + kdiff3: + ---------- + new: + Not Found + old: + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 10:36:17.744372 + Duration: 27985.052 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: + ---------- + ID: 7zip + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:36:45.760307 + Duration: 11546.64 ms + Changes: + ---------- + 7zip: + ---------- + new: + 18.06.00.0 + old: + ---------- + ID: windows_environment.refresh.path + Function: module.run + Result: True + Comment: windows_environment.refresh: Success + Started: 10:36:57.322405 + Duration: 32.423 ms + Changes: + ---------- + windows_environment.refresh: + ---------- + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + ---------- + ID: chocolatey.bootstrap + Function: module.run + Result: True + Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. + + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + + Downloading 7-Zip commandline tool prior to extraction. + + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + + Installing chocolatey on this machine + + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + + We are setting up the Chocolatey package repository. + + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + + + Creating Chocolatey folders if they do not already exist. + + + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + + You can call choco from anywhere, command line or powershell by typing choco. + + Run choco /? for a list of functions. + + You may need to shut down and restart powershell and/or consoles + + first prior to using choco. + + Ensuring chocolatey commands are on the path + + Ensuring chocolatey.nupkg is in the lib folder + Started: 10:36:57.354828 + Duration: 24873.833 ms + Changes: + ---------- + chocolatey.bootstrap: + Getting latest version of the Chocolatey package for download. + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + Downloading 7-Zip commandline tool prior to extraction. + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + Installing chocolatey on this machine + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + We are setting up the Chocolatey package repository. + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + Creating Chocolatey folders if they do not already exist. + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + You can call choco from anywhere, command line or powershell by typing choco. + Run choco /? for a list of functions. + You may need to shut down and restart powershell and/or consoles + first prior to using choco. + Ensuring chocolatey commands are on the path + Ensuring chocolatey.nupkg is in the lib folder + ---------- + ID: windows.system.packages.chocolatey.windirstat + Function: chocolatey.installed + Name: windirstat + Result: True + Comment: + Started: 10:37:22.228661 + Duration: 10343.689 ms + Changes: + ---------- + windirstat: + ---------- + new: + - 1.1.2.20161210 + old: + ---------- + ID: windows.system.packages.chocolatey.notepadplusplus + Function: chocolatey.installed + Name: notepadplusplus + Result: True + Comment: + Started: 10:37:32.572350 + Duration: 12140.688 ms + Changes: + ---------- + notepadplusplus: + ---------- + new: + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 + old: + ---------- + ID: windows.system.desktop.optional_features.installed.TelnetClient + Function: dism.feature_installed + Name: TelnetClient + Result: True + Comment: Installed TelnetClient + Started: 10:37:44.713038 + Duration: 7281.244 ms + Changes: + ---------- + feature: + ---------- + new: + TelnetClient + pid: + 1328 + retcode: + 0 + stderr: + stdout: + ---------- + ID: windows.module.system.reboot + Function: module.run + Result: True + Comment: system.reboot: True + Started: 10:37:51.994282 + Duration: 297.114 ms + Changes: + ---------- + system.reboot: + True + + Summary for local + ------------- + Succeeded: 25 (changed=25) + Failed: 0 + ------------- + Total states run: 25 + Total run time: 157.047 s + Downloading files from + Finished converging (4m16.31s). +-----> Setting up ... + Finished setting up (0m0.00s). +-----> Verifying ... + Loaded default + [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). +`[WSMAN ERROR CODE: 995]: The I/O operation has been aborted because of either a thread exit or an application request. `, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 +`execution expired`, target may be rebooting after highstate. Remaining retries: 18 +`execution expired`, target may be rebooting after highstate. Remaining retries: 17 +`execution expired`, target may be rebooting after highstate. Remaining retries: 16 +INFO: Got pillar from the target minion using WinRM. + +Profile: SaltStack Windows Formula (default) +Version: (not specified) +Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 + + ✔ Operating System: + ✔ windows_10_enterprise_evaluation should include "windows" + ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled + ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed + ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey + ✔ Chocolatey package notepadplusplus should be installed + ✔ Chocolatey package windirstat should be installed + ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" + ↺ Windows Features: salt.formula.windows.system.server.features + ↺ Skipped control due to only_if condition: only supported on servers + ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap + ✔ Command: `choco` should exist + ✔ Windows Timezone: salt.states.timezone.system + ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set + ✔ Windows Optional Features: salt.states.win_dism.feature_installed + ✔ Windows Optional Feature: `TelnetClient` should be installed + ✔ Windows Computer Hostname: salt.states.win_system.hostname + ✔ System Information hostname should cmp == "saltstack1" + ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" + ✔ Windows Computer Description: salt.states.win_system.computer_desc + ✔ Powershell stdout should match "Saltstack Computer Description" + ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed + ✔ System Package Git should be installed + ✔ System Package 7-Zip should be installed + ✔ System Package 7-Zip version should cmp == "18.06.00.0" + ✔ System Package KDiff3 should be installed + + +Profile Summary: 9 successful controls, 0 control failures, 1 control skipped +Test Summary: 19 successful, 0 failures, 1 skipped + Finished verifying (1m5.94s). + Finished testing (6m29.54s). +-----> Destroying ... + ==> default: Forcing shutdown of VM... + ==> default: Destroying VM and associated drives... + Vagrant instance destroyed. + Finished destroying (0m12.66s). +-----> Test Kitchen is finished. (6m53.81s) +KITCHEN TEST EXIT CODE +0 diff --git a/test/results/py3-201923-windows-10-1909.salt.log b/test/results/py3-201923-windows-10-1909.salt.log new file mode 100755 index 0000000..aeb0442 --- /dev/null +++ b/test/results/py3-201923-windows-10-1909.salt.log @@ -0,0 +1,30155 @@ +2020-03-06 10:35:05,166 [salt.loader :747 ][DEBUG ][1872] Grains refresh requested. Refreshing grains. +2020-03-06 10:35:05,182 [salt.config :2190][DEBUG ][1872] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:35:05,182 [salt.config :2334][DEBUG ][1872] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:35:05,182 [salt.config :2190][DEBUG ][1872] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:35:10,073 [salt.pillar :57 ][DEBUG ][1872] Determining pillar cache +2020-03-06 10:35:10,120 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:10,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:10,166 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:35:10,166 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:35:10,183 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.016657590866088867 +2020-03-06 10:35:10,183 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:35:10,198 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:35:10,198 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:10,198 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded confirm_top.confirm_top +2020-03-06 10:35:10,198 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded compound_match.match +2020-03-06 10:35:10,198 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][1872] compound_match: vagrant-10 ? * +2020-03-06 10:35:10,212 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded glob_match.match +2020-03-06 10:35:10,212 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][1872] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:35:10,212 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:35:10,212 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:35:10,212 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:10,212 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 10:35:10,229 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 10:35:10,229 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0008392333984375 +2020-03-06 10:35:10,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:10,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:10,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded state.highstate +2020-03-06 10:35:10,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded direct_call.execute +2020-03-06 10:35:10,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded grains.get +2020-03-06 10:35:10,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded saltutil.is_running +2020-03-06 10:35:10,823 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded config.get +2020-03-06 10:35:10,838 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: test, ret: _|- +2020-03-06 10:35:10,869 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,416 [git.cmd :722 ][DEBUG ][1872] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:35:11,447 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,447 [salt.fileserver :502 ][DEBUG ][1872] Updating roots fileserver cache +2020-03-06 10:35:11,509 [salt.state :736 ][DEBUG ][1872] Gathering pillar data for state run +2020-03-06 10:35:11,509 [salt.state :750 ][DEBUG ][1872] Finished gathering pillar data for state run +2020-03-06 10:35:11,525 [salt.state :966 ][INFO ][1872] Loading fresh modules for state activity +2020-03-06 10:35:11,556 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:11,556 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:11,572 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:35:11,572 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:35:11,572 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:35:11,572 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:11,588 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:35:11,588 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:35:11,588 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:11,603 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,619 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.03156733512878418 +2020-03-06 10:35:11,619 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +--- +base: + "*": + - windows + +2020-03-06 10:35:11,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 10:35:11,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:11,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded confirm_top.confirm_top +2020-03-06 10:35:11,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded compound_match.match +2020-03-06 10:35:11,635 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][1872] compound_match: vagrant-10 ? * +2020-03-06 10:35:11,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded glob_match.match +2020-03-06 10:35:11,635 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][1872] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:35:11,635 [salt.fileclient :1368][DEBUG ][1872] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:35:11,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded saltutil.sync_all +2020-03-06 10:35:11,650 [salt.loaded.int.module.saltutil:968 ][DEBUG ][1872] Syncing all +2020-03-06 10:35:11,650 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:35:11,667 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,682 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,682 [salt.utils.extmods:90 ][INFO ][1872] Syncing clouds for environment 'base' +2020-03-06 10:35:11,682 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_clouds, for base) +2020-03-06 10:35:11,682 [salt.fileclient :234 ][INFO ][1872] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:35:11,682 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:11,697 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:35:11,697 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:35:11,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,728 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,728 [salt.utils.extmods:90 ][INFO ][1872] Syncing beacons for environment 'base' +2020-03-06 10:35:11,728 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_beacons, for base) +2020-03-06 10:35:11,728 [salt.fileclient :234 ][INFO ][1872] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:35:11,728 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:11,728 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:35:11,744 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:35:11,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,776 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,776 [salt.utils.extmods:90 ][INFO ][1872] Syncing modules for environment 'base' +2020-03-06 10:35:11,776 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_modules, for base) +2020-03-06 10:35:11,776 [salt.fileclient :234 ][INFO ][1872] Caching directory '_modules/' for environment 'base' +2020-03-06 10:35:11,776 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:11,792 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:35:11,792 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:35:11,792 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:35:11,792 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:11,807 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:35:11,807 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:35:11,807 [salt.utils.extmods:119 ][INFO ][1872] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:35:11,807 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:35:11,839 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,854 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,854 [salt.utils.extmods:90 ][INFO ][1872] Syncing states for environment 'base' +2020-03-06 10:35:11,854 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_states, for base) +2020-03-06 10:35:11,854 [salt.fileclient :234 ][INFO ][1872] Caching directory '_states/' for environment 'base' +2020-03-06 10:35:11,854 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:11,854 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:35:11,854 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:35:11,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,885 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,900 [salt.utils.extmods:90 ][INFO ][1872] Syncing sdb for environment 'base' +2020-03-06 10:35:11,900 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_sdb, for base) +2020-03-06 10:35:11,900 [salt.fileclient :234 ][INFO ][1872] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:35:11,900 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:11,900 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:35:11,900 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:35:11,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,932 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,958 [salt.utils.extmods:90 ][INFO ][1872] Syncing grains for environment 'base' +2020-03-06 10:35:11,958 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_grains, for base) +2020-03-06 10:35:11,958 [salt.fileclient :234 ][INFO ][1872] Caching directory '_grains/' for environment 'base' +2020-03-06 10:35:11,962 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:11,962 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:35:11,962 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:35:11,994 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:11,994 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:11,994 [salt.utils.extmods:90 ][INFO ][1872] Syncing renderers for environment 'base' +2020-03-06 10:35:12,019 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_renderers, for base) +2020-03-06 10:35:12,019 [salt.fileclient :234 ][INFO ][1872] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:35:12,019 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,019 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:35:12,025 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:35:12,056 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,056 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,056 [salt.utils.extmods:90 ][INFO ][1872] Syncing returners for environment 'base' +2020-03-06 10:35:12,056 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_returners, for base) +2020-03-06 10:35:12,056 [salt.fileclient :234 ][INFO ][1872] Caching directory '_returners/' for environment 'base' +2020-03-06 10:35:12,056 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,072 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:35:12,072 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:35:12,088 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,103 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,103 [salt.utils.extmods:90 ][INFO ][1872] Syncing output for environment 'base' +2020-03-06 10:35:12,103 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_output, for base) +2020-03-06 10:35:12,103 [salt.fileclient :234 ][INFO ][1872] Caching directory '_output/' for environment 'base' +2020-03-06 10:35:12,103 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,103 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:35:12,119 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:35:12,136 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,150 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,150 [salt.utils.extmods:90 ][INFO ][1872] Syncing utils for environment 'base' +2020-03-06 10:35:12,150 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_utils, for base) +2020-03-06 10:35:12,150 [salt.fileclient :234 ][INFO ][1872] Caching directory '_utils/' for environment 'base' +2020-03-06 10:35:12,150 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,166 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:35:12,166 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:35:12,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,197 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,197 [salt.utils.extmods:90 ][INFO ][1872] Syncing log_handlers for environment 'base' +2020-03-06 10:35:12,197 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:35:12,197 [salt.fileclient :234 ][INFO ][1872] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:35:12,197 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,197 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:35:12,213 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:35:12,229 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,244 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,244 [salt.utils.extmods:90 ][INFO ][1872] Syncing proxy for environment 'base' +2020-03-06 10:35:12,244 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_proxy, for base) +2020-03-06 10:35:12,244 [salt.fileclient :234 ][INFO ][1872] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:35:12,260 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,260 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:35:12,260 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:35:12,299 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,307 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,307 [salt.utils.extmods:90 ][INFO ][1872] Syncing engines for environment 'base' +2020-03-06 10:35:12,307 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_engines, for base) +2020-03-06 10:35:12,307 [salt.fileclient :234 ][INFO ][1872] Caching directory '_engines/' for environment 'base' +2020-03-06 10:35:12,307 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,307 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:35:12,307 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:35:12,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,338 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,338 [salt.utils.extmods:90 ][INFO ][1872] Syncing thorium for environment 'base' +2020-03-06 10:35:12,352 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_thorium, for base) +2020-03-06 10:35:12,353 [salt.fileclient :234 ][INFO ][1872] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:35:12,353 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,353 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:35:12,353 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:35:12,370 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,384 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,384 [salt.utils.extmods:90 ][INFO ][1872] Syncing serializers for environment 'base' +2020-03-06 10:35:12,384 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_serializers, for base) +2020-03-06 10:35:12,384 [salt.fileclient :234 ][INFO ][1872] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:35:12,384 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,384 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:35:12,384 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:35:12,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,432 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,432 [salt.utils.extmods:90 ][INFO ][1872] Syncing matchers for environment 'base' +2020-03-06 10:35:12,432 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_matchers, for base) +2020-03-06 10:35:12,432 [salt.fileclient :234 ][INFO ][1872] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:35:12,432 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,432 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:35:12,432 [salt.utils.extmods:79 ][INFO ][1872] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:35:12,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:12,463 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:12,463 [salt.utils.extmods:90 ][INFO ][1872] Syncing pillar for environment 'base' +2020-03-06 10:35:12,463 [salt.utils.extmods:94 ][INFO ][1872] Loading cache from salt://_pillar, for base) +2020-03-06 10:35:12,463 [salt.fileclient :234 ][INFO ][1872] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:35:12,463 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:12,478 [salt.utils.extmods:109 ][DEBUG ][1872] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:35:12,478 [salt.state :1000][DEBUG ][1872] Refreshing modules... +2020-03-06 10:35:12,496 [salt.state :966 ][INFO ][1872] Loading fresh modules for state activity +2020-03-06 10:35:12,526 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:12,541 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:12,541 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:35:12,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:35:12,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:35:12,541 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:35:12,541 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,541 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:35:12,556 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:35:12,556 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:12,556 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:12,556 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:12,556 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:35:12,556 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,576 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:35:12,588 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:12,588 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:12,588 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:35:12,588 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,603 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:35:12,603 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:12,603 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:12,619 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:12,619 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,619 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:35:12,635 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:12,635 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:12,635 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:12,635 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,651 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:35:12,651 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:12,651 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:12,651 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:35:12,651 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,681 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:35:12,681 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:12,681 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:12,681 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:12,681 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,701 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:35:12,701 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:12,701 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:12,701 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:12,701 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,715 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:35:12,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded config.get +2020-03-06 10:35:12,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded grains.filter_by +2020-03-06 10:35:12,729 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.1721055507659912 +2020-03-06 10:35:12,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .states + - .modules + - .system +2020-03-06 10:35:12,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.states', '.modules', '.system'])]) +2020-03-06 10:35:12,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:12,744 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:35:12,744 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:35:12,744 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:35:12,744 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,760 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:35:12,760 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:35:12,760 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:12,760 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:35:12,760 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:35:12,775 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:35:12,775 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:12,775 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:35:12,853 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:12,853 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:12,885 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:12,885 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:12,885 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:12,905 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:12,916 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:12,916 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:12,916 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:12,916 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:12,948 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:12,948 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:12,948 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:12,963 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:12,963 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.20308709144592285 +2020-03-06 10:35:12,963 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.state.system.computer_desc.description: + system.computer_desc: + - name: Saltstack Computer Description + - require: + - windows.state.system.hostname.saltstack1 +windows.state.system.hostname.saltstack1: + system.hostname: + - name: saltstack1 +windows.state.timezone.system.America/New_York: + timezone.system: + - name: America/New_York + - utc: False + + + +2020-03-06 10:35:12,979 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) +2020-03-06 10:35:12,979 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:12,979 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:35:12,979 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:35:12,979 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:35:12,979 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,007 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:35:13,009 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:35:13,010 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,025 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:35:13,025 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:35:13,119 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,119 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,150 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,150 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,150 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,150 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,166 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,166 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,166 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,166 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,166 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,166 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,182 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,182 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,197 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.18728303909301758 +2020-03-06 10:35:13,197 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.module.environ.items: + module.run: + - environ.items: +windows.module.system.reboot: + module.run: + - system.reboot: + - timeout: 5 + - in_seconds: True + - only_on_pending_reboot: True + - wait_for_reboot: False + - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + - order: last +windows.module.user.current: + module.run: + - user.current: + - sam: True +windows.module.status.uptime: + module.run: + - status.uptime: + - human_readable: True + - require: + - windows.module.user.current + + +2020-03-06 10:35:13,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) +2020-03-06 10:35:13,197 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,212 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:35:13,212 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:35:13,212 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:35:13,212 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:35:13,212 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,228 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:35:13,228 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:35:13,244 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,244 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,244 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,259 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,276 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,276 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,276 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,276 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,292 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,292 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,292 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,292 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,292 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,307 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,307 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.06242513656616211 +2020-03-06 10:35:13,307 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +# sls: windows.system windows system +# slspath: windows/system windows system +# sls: os_windows.desktop.features os_windows features +# slspath: os_windows/desktop os_windows desktop +include: + # - .settings + # + # - .dsc + # + - .packages + - .server + - .desktop + + +2020-03-06 10:35:13,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.packages', '.server', '.desktop'])]) +2020-03-06 10:35:13,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,322 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:35:13,322 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:35:13,322 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:35:13,322 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:35:13,322 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,338 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:35:13,338 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:35:13,353 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:13,353 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .providers + - .appx + - .powershell + - .saltstack + - .chocolatey +2020-03-06 10:35:13,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) +2020-03-06 10:35:13,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,353 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:35:13,353 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:35:13,369 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:35:13,369 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:35:13,369 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,369 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:35:13,369 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:35:13,369 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,384 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.01577448844909668 +2020-03-06 10:35:13,384 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .remove-provisioned-apps + +2020-03-06 10:35:13,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.remove-provisioned-apps'])]) +2020-03-06 10:35:13,384 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,400 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:35:13,400 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:35:13,400 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:35:13,400 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,416 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:35:13,416 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:35:13,416 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:13,416 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .removed + +2020-03-06 10:35:13,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.removed'])]) +2020-03-06 10:35:13,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,416 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:35:13,431 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:35:13,432 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:35:13,432 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,432 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:35:13,432 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:35:13,448 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,448 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,448 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,479 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,479 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,479 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,479 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,479 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,494 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,494 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,494 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.06217145919799805 +2020-03-06 10:35:13,510 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + + + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection: + cmd.run: + - name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet: + cmd.run: + - name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo: + cmd.run: + - name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}" + +windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal: + cmd.run: + - name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers + - shell: powershell + - onlyif: "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}" + + + + + + + +2020-03-06 10:35:13,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) +2020-03-06 10:35:13,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,510 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:35:13,525 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:35:13,525 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:35:13,525 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:35:13,525 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,541 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:35:13,541 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:35:13,541 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,541 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:13,541 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .modules + - .framework + +2020-03-06 10:35:13,541 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.framework'])]) +2020-03-06 10:35:13,541 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,557 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:35:13,557 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:35:13,557 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:35:13,557 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:35:13,557 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,557 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:35:13,572 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:35:13,572 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:13,572 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .v4_5 + +2020-03-06 10:35:13,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.v4_5'])]) +2020-03-06 10:35:13,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,572 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:35:13,587 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:35:13,587 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:35:13,587 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:35:13,587 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,619 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:35:13,619 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:35:13,619 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.015259504318237305 +2020-03-06 10:35:13,635 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .tls1_2 + +2020-03-06 10:35:13,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.tls1_2'])]) +2020-03-06 10:35:13,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,635 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:35:13,635 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:35:13,635 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:35:13,650 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,650 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:35:13,650 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:35:13,650 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,666 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.06313419342041016 +2020-03-06 10:35:13,713 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +# https://docs.microsoft.com/en-us/security/solving-tls1-problem +# https://blog.pauby.com/post/force-powershell-to-use-tls-1-2/ +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:64 +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:32 +# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - use_32bit_registry: true + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} +2020-03-06 10:35:13,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) +2020-03-06 10:35:13,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,713 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:35:13,728 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:35:13,728 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:35:13,728 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:35:13,728 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,728 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:35:13,744 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:35:13,744 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:13,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:35:13,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:35:13,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:13,760 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:35:13,760 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:35:13,760 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:35:13,760 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,760 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:35:13,760 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:35:13,760 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:13,776 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:35:13,776 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:35:13,776 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:35:13,776 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,792 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:35:13,792 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,814 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:13,822 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,822 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:13,822 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,822 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:13,839 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,839 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:13,839 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,839 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:13,839 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,839 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:13,854 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,854 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:13,870 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:35:13,870 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:35:13,870 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:35:13,870 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:13,870 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:35:14,213 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pkg.version +2020-03-06 10:35:14,213 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][1872] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:35:14,213 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][1872] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:35:14,213 [salt.loaded.int.module.win_pkg:935 ][INFO ][1872] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:35:14,213 [salt.loaded.int.module.win_pkg:954 ][INFO ][1872] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:35:14,228 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cp.cache_dir +2020-03-06 10:35:14,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded roots.envs +2020-03-06 10:35:14,260 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:35:14,260 [salt.fileclient :234 ][INFO ][1872] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:35:14,275 [salt.fileserver :159 ][DEBUG ][1872] Returning file list from cache: age=3 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:35:14,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded reg.list_keys +2020-03-06 10:35:14,291 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,291 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,306 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.5621397495269775 +2020-03-06 10:35:14,322 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +include: + - .windows_software_repository +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db +7zip: + pkg.installed: + - refresh_minion_env_path: False + - version: 18.06.00.0 + - require: + - pkg.refresh_db +windows_environment.refresh.path: + module.run: + - windows_environment.refresh: + - onchanges: + + - pkg: git +2020-03-06 10:35:14,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:35:14,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,322 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:35:14,322 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:35:14,322 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:35:14,322 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,338 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:35:14,338 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:35:14,338 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,338 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.062557) +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,354 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,369 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,369 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,369 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,369 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,369 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,369 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:14,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.031177520751953125 +2020-03-06 10:35:14,369 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +manually.update_git_repo-ng: + archive.extracted: + - name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + - source: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip + - skip_verify: True + - if_missing: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + +rename-extract: + module.run: + - file.rename: + - src: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng-master + - dst: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + - onchanges: + - manually.update_git_repo-ng + - onchanges_in: + - pkg.refresh_db + +pkg.refresh_db: + module.run: + - pkg.refresh_db: + - failhard: False + - check_cmd: + - dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + + - retry: + attempts: 10 + until: True + interval: 5 +2020-03-06 10:35:14,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) +2020-03-06 10:35:14,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,369 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:35:14,384 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:35:14,384 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:35:14,400 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:35:14,400 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,400 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:35:14,400 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:35:14,400 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,400 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:14,400 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:35:14,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:35:14,400 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,419 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:35:14,419 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:35:14,419 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:35:14,419 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,419 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:35:14,419 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:35:14,419 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,434 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,434 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,450 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,450 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,463 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,463 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,463 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,478 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,478 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,478 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,478 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,478 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.05919170379638672 +2020-03-06 10:35:14,494 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .bootstrap +windows.system.packages.chocolatey.windirstat: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: windirstat + - version: 1.1.2.20161210 + +windows.system.packages.chocolatey.notepadplusplus: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: notepadplusplus + +2020-03-06 10:35:14,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) +2020-03-06 10:35:14,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:35:14,494 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:35:14,494 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:35:14,494 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,509 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:35:14,509 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:35:14,509 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,509 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,509 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,525 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,525 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,556 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,556 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,556 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.046799421310424805 +2020-03-06 10:35:14,556 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +chocolatey.bootstrap: + module.run: + - chocolatey.bootstrap: + - unless: "where.exe chocolatey" + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + +2020-03-06 10:35:14,556 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) +2020-03-06 10:35:14,556 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,572 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:35:14,572 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:35:14,572 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:35:14,572 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:35:14,572 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,572 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:35:14,572 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:35:14,588 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:14,588 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .features + +2020-03-06 10:35:14,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.features'])]) +2020-03-06 10:35:14,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,588 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:35:14,588 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:35:14,588 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:35:14,588 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:35:14,588 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,603 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:35:14,603 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:35:14,603 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,603 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:14,603 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 10:35:14,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 10:35:14,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.015142679214477539 +2020-03-06 10:35:14,619 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:35:14,619 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:35:14,619 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:35:14,619 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,619 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:35:14,619 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:35:14,635 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,635 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:35:14,635 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:35:14,635 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:35:14,635 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,635 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:35:14,650 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,650 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,666 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,681 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,697 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.06231832504272461 +2020-03-06 10:35:14,697 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +2020-03-06 10:35:14,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +{} +2020-03-06 10:35:14,712 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,712 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:35:14,712 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:35:14,712 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:35:14,712 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:35:14,712 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,728 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:35:14,728 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:35:14,728 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:14,728 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .packages + - .optional_features + +2020-03-06 10:35:14,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.optional_features'])]) +2020-03-06 10:35:14,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,728 [salt.fileclient :1072][DEBUG ][1872] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:35:14,728 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:35:14,744 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:35:14,744 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:35:14,744 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,744 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:35:14,744 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:35:14,744 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:14,760 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .feature_installed + +2020-03-06 10:35:14,760 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('include', ['.feature_installed'])]) +2020-03-06 10:35:14,760 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,760 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:35:14,760 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:35:14,760 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:35:14,760 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,775 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:35:14,775 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:35:14,775 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:14,775 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:35:14,775 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:35:14,790 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:35:14,791 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,791 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:35:14,807 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,807 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:35:14,822 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,822 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:35:14,822 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,822 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:35:14,838 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,838 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:35:14,838 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,838 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:35:14,853 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,853 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:35:14,853 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,853 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:35:14,869 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:35:14,869 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:35:14,869 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:35:14,869 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:14,869 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:35:14,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.1093442440032959 +2020-03-06 10:35:14,885 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.system.desktop.optional_features.installed.TelnetClient: + dism.feature_installed: + - name: TelnetClient + - onlyif: > + powershell -command "if ((Get-WindowsOptionalFeature -online | + Where-Object {($_.FeatureName -eq 'TelnetClient') + -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" + +2020-03-06 10:35:14,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) +2020-03-06 10:35:14,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:14,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cmd.run +2020-03-06 10:35:14,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded system.get_computer_desc +2020-03-06 10:35:14,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded system.computer_desc +2020-03-06 10:35:14,978 [salt.state :1819][INFO ][1872] Running state [saltstack1] at time 10:35:14.978617 +2020-03-06 10:35:14,978 [salt.state :1852][INFO ][1872] Executing state system.hostname for [saltstack1] +2020-03-06 10:35:14,978 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:35:14,994 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: vagrant-10 +2020-03-06 10:35:14,994 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1872] output: vagrant-10 +2020-03-06 10:35:14,994 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:35:15,010 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: vagrant-10 +2020-03-06 10:35:15,010 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1872] output: vagrant-10 +2020-03-06 10:35:15,010 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:35:15,088 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:35:15,088 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1872] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 10:35:15,088 [salt.state :320 ][INFO ][1872] {'hostname': 'saltstack1'} +2020-03-06 10:35:15,088 [salt.state :1997][INFO ][1872] Completed state [saltstack1] at time 10:35:15.088363 (duration_in_ms=109.746) +2020-03-06 10:35:15,103 [salt.state :1819][INFO ][1872] Running state [Saltstack Computer Description] at time 10:35:15.103874 +2020-03-06 10:35:15,103 [salt.state :1852][INFO ][1872] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:35:18,401 [salt.state :320 ][INFO ][1872] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 10:35:18,401 [salt.state :1997][INFO ][1872] Completed state [Saltstack Computer Description] at time 10:35:18.401570 (duration_in_ms=3297.696) +2020-03-06 10:35:18,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded platform.is_windows +2020-03-06 10:35:18,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded path.which +2020-03-06 10:35:18,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded timezone.get_zone +2020-03-06 10:35:18,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded timezone.system +2020-03-06 10:35:18,432 [salt.state :1819][INFO ][1872] Running state [America/New_York] at time 10:35:18.432041 +2020-03-06 10:35:18,432 [salt.state :1852][INFO ][1872] Executing state timezone.system for [America/New_York] +2020-03-06 10:35:18,447 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:35:18,463 [salt.state :320 ][INFO ][1872] {'timezone': 'America/New_York'} +2020-03-06 10:35:18,463 [salt.state :1997][INFO ][1872] Completed state [America/New_York] at time 10:35:18.463568 (duration_in_ms=31.527) +2020-03-06 10:35:18,482 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded module.run +2020-03-06 10:35:18,482 [salt.state :1819][INFO ][1872] Running state [windows.module.environ.items] at time 10:35:18.482077 +2020-03-06 10:35:18,482 [salt.state :1852][INFO ][1872] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:35:18,496 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded environ.items +2020-03-06 10:35:18,496 [salt.state :320 ][INFO ][1872] {'environ.items': {'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PROGRAMW6432': 'C:\\Program Files', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'USERPROFILE': 'C:\\Users\\vagrant', 'COMPUTERNAME': 'VAGRANT-10', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'HOMEPATH': '\\Users\\vagrant', 'NUMBER_OF_PROCESSORS': '2', 'SYSTEMROOT': 'C:\\Windows', 'HOMEDRIVE': 'C:', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PROGRAMDATA': 'C:\\ProgramData', 'WINDIR': 'C:\\Windows', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'SALTDIR': 'C:\\salt', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PUBLIC': 'C:\\Users\\Public', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'USERDOMAIN': 'VAGRANT-10', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'LOGONSERVER': '\\\\VAGRANT-10', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'SYSTEMDRIVE': 'C:', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PROGRAMFILES': 'C:\\Program Files', 'OS': 'Windows_NT', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'PROMPT': '$P$G', 'PROCESSOR_REVISION': '8e0c', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'USERNAME': 'vagrant'}} +2020-03-06 10:35:18,496 [salt.state :1997][INFO ][1872] Completed state [windows.module.environ.items] at time 10:35:18.496727 (duration_in_ms=14.65) +2020-03-06 10:35:18,496 [salt.state :1819][INFO ][1872] Running state [windows.module.user.current] at time 10:35:18.496727 +2020-03-06 10:35:18,496 [salt.state :1852][INFO ][1872] Executing state module.run for [windows.module.user.current] +2020-03-06 10:35:18,541 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded user.current +2020-03-06 10:35:18,541 [salt.state :320 ][INFO ][1872] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:35:18,541 [salt.state :1997][INFO ][1872] Completed state [windows.module.user.current] at time 10:35:18.541460 (duration_in_ms=44.733) +2020-03-06 10:35:18,557 [salt.state :1819][INFO ][1872] Running state [windows.module.status.uptime] at time 10:35:18.557105 +2020-03-06 10:35:18,557 [salt.state :1852][INFO ][1872] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:35:18,620 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded status.uptime +2020-03-06 10:35:18,620 [salt.state :320 ][INFO ][1872] {'status.uptime': '0:02:27.620703'} +2020-03-06 10:35:18,620 [salt.state :1997][INFO ][1872] Completed state [windows.module.status.uptime] at time 10:35:18.620703 (duration_in_ms=63.598) +2020-03-06 10:35:18,650 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cmd.run +2020-03-06 10:35:18,650 [salt.state :1819][INFO ][1872] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:35:18.650929 +2020-03-06 10:35:18,650 [salt.state :1852][INFO ][1872] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] +2020-03-06 10:35:18,650 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:19,760 [salt.loaded.int.states.cmd:343 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:19,760 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:21,572 [salt.state :320 ][INFO ][1872] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 372} +2020-03-06 10:35:21,572 [salt.state :1997][INFO ][1872] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:35:21.572383 (duration_in_ms=2921.454) +2020-03-06 10:35:21,572 [salt.state :1819][INFO ][1872] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:35:21.572383 +2020-03-06 10:35:21,572 [salt.state :1852][INFO ][1872] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] +2020-03-06 10:35:21,572 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:22,431 [salt.loaded.int.states.cmd:343 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:22,431 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:23,994 [salt.state :320 ][INFO ][1872] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 5972} +2020-03-06 10:35:23,994 [salt.state :1997][INFO ][1872] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:35:23.994502 (duration_in_ms=2422.119) +2020-03-06 10:35:23,994 [salt.state :1819][INFO ][1872] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:35:23.994502 +2020-03-06 10:35:23,994 [salt.state :1852][INFO ][1872] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] +2020-03-06 10:35:23,994 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:24,650 [salt.loaded.int.states.cmd:343 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:24,650 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:26,088 [salt.state :320 ][INFO ][1872] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 7360} +2020-03-06 10:35:26,088 [salt.state :1997][INFO ][1872] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:35:26.088717 (duration_in_ms=2094.215) +2020-03-06 10:35:26,088 [salt.state :1819][INFO ][1872] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:35:26.088717 +2020-03-06 10:35:26,088 [salt.state :1852][INFO ][1872] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] +2020-03-06 10:35:26,088 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:26,698 [salt.loaded.int.states.cmd:343 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:26,698 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:27,931 [salt.state :320 ][INFO ][1872] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 3948} +2020-03-06 10:35:27,931 [salt.state :1997][INFO ][1872] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:35:27.931777 (duration_in_ms=1843.06) +2020-03-06 10:35:27,947 [salt.state :1819][INFO ][1872] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:35:27.947124 +2020-03-06 10:35:27,947 [salt.state :1852][INFO ][1872] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] +2020-03-06 10:35:27,947 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:28,713 [salt.loaded.int.states.cmd:343 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:28,729 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:30,541 [salt.state :320 ][INFO ][1872] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 6604} +2020-03-06 10:35:30,541 [salt.state :1997][INFO ][1872] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:35:30.541453 (duration_in_ms=2594.329) +2020-03-06 10:35:30,556 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded reg.present +2020-03-06 10:35:30,556 [salt.state :1819][INFO ][1872] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:35:30.556985 +2020-03-06 10:35:30,556 [salt.state :1852][INFO ][1872] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:35:32,917 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt.secret_key, ret: _|- +2020-03-06 10:35:32,931 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt:secret_key, ret: _|- +2020-03-06 10:35:34,478 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet.api_key, ret: _|- +2020-03-06 10:35:34,495 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet:api_key, ret: _|- +2020-03-06 10:35:35,229 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops.api_key, ret: _|- +2020-03-06 10:35:35,243 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops:api_key, ret: _|- +2020-03-06 10:35:40,072 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:35:40,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded apache.a2enconf +2020-03-06 10:35:40,089 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded apache.a2enmod +2020-03-06 10:35:40,089 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded apache.a2ensite +2020-03-06 10:35:40,136 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:35:40,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:35:40,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:35:40,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:35:40,244 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:35:40,265 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:35:40,275 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:35:40,292 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:35:40,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_asg.exists +2020-03-06 10:35:40,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cfn.exists +2020-03-06 10:35:40,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:35:40,340 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:35:40,340 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:35:40,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:35:40,371 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:35:40,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:35:40,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_dynamodb.exists +2020-03-06 10:35:40,401 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_ec2.get_key +2020-03-06 10:35:40,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elasticache.exists +2020-03-06 10:35:40,434 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:35:40,448 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elb.exists +2020-03-06 10:35:40,462 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:35:40,480 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_iam.get_user +2020-03-06 10:35:40,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_iam.role_exists +2020-03-06 10:35:40,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_iot.policy_exists +2020-03-06 10:35:40,509 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_kinesis.exists +2020-03-06 10:35:40,527 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_kms.describe_key +2020-03-06 10:35:40,543 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_lambda.function_exists +2020-03-06 10:35:40,556 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_asg.exists +2020-03-06 10:35:40,570 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_rds.exists +2020-03-06 10:35:40,572 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_route53.get_record +2020-03-06 10:35:40,589 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:35:40,605 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:35:40,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_secgroup.exists +2020-03-06 10:35:40,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_sns.exists +2020-03-06 10:35:40,636 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_sqs.exists +2020-03-06 10:35:40,653 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_vpc.exists +2020-03-06 10:35:40,668 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded bower.list +2020-03-06 10:35:40,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded chef.client +2020-03-06 10:35:40,714 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cimc.get_system_info +2020-03-06 10:35:40,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cisconso.set_data_value +2020-03-06 10:35:40,745 [salt.loader :1577][DEBUG ][1872] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:35:40,776 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded ddns.update +2020-03-06 10:35:40,791 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded chassis.cmd +2020-03-06 10:35:40,823 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:35:40,854 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:35:40,869 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:35:40,900 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:35:41,119 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded esxi.cmd +2020-03-06 10:35:41,228 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded git.version +2020-03-06 10:35:41,228 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded github.list_users +2020-03-06 10:35:41,261 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded glanceng.image_get +2020-03-06 10:35:41,275 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded elasticsearch.exists +2020-03-06 10:35:41,323 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: grafana_version, ret: _|- +2020-03-06 10:35:41,338 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: grafana_version, ret: _|- +2020-03-06 10:35:41,433 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded icinga2.generate_ticket +2020-03-06 10:35:41,433 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded ifttt.trigger_event +2020-03-06 10:35:41,462 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:35:41,478 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:35:41,495 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:35:41,510 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:35:41,541 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:35:41,557 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:35:41,651 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:35:41,667 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.domain_get +2020-03-06 10:35:41,667 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:35:41,681 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.group_get +2020-03-06 10:35:41,681 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.project_get +2020-03-06 10:35:41,698 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.role_get +2020-03-06 10:35:41,714 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.role_grant +2020-03-06 10:35:41,714 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.service_get +2020-03-06 10:35:41,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.user_get +2020-03-06 10:35:41,760 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:35:41,823 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:35:41,841 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:35:41,853 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:35:41,904 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:35:41,916 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:35:41,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:35:41,948 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:35:41,948 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:35:41,963 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:35:41,994 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded memcached.status +2020-03-06 10:35:42,026 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mongodb.db_exists +2020-03-06 10:35:42,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mongodb.user_exists +2020-03-06 10:35:42,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:35:42,058 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:35:42,058 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:35:42,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:35:42,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_networks +2020-03-06 10:35:42,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_subnets +2020-03-06 10:35:42,213 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_subnets +2020-03-06 10:35:42,230 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_subnets +2020-03-06 10:35:42,244 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded npm.list +2020-03-06 10:35:42,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nxos.cmd +2020-03-06 10:35:42,292 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:35:42,307 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:35:42,384 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded panos.commit +2020-03-06 10:35:42,402 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pdbedit.create +2020-03-06 10:35:42,402 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pecl.list +2020-03-06 10:35:43,041 [pip.vcs :60 ][DEBUG ][1872] Registered VCS backend: git +2020-03-06 10:35:43,291 [pip.vcs :60 ][DEBUG ][1872] Registered VCS backend: hg +2020-03-06 10:35:43,354 [pip.pep425tags :79 ][DEBUG ][1872] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:35:43,354 [pip.pep425tags :79 ][DEBUG ][1872] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:35:43,354 [pip.pep425tags :79 ][DEBUG ][1872] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:35:43,354 [pip.pep425tags :79 ][DEBUG ][1872] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:35:43,639 [pip.vcs :60 ][DEBUG ][1872] Registered VCS backend: svn +2020-03-06 10:35:43,651 [pip.vcs :60 ][DEBUG ][1872] Registered VCS backend: bzr +2020-03-06 10:35:43,916 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:35:43,916 [salt.loader :1577][DEBUG ][1872] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:35:43,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.cluster_exists +2020-03-06 10:35:43,949 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.user_exists +2020-03-06 10:35:43,949 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.create_extension +2020-03-06 10:35:43,963 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.group_create +2020-03-06 10:35:43,980 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.datadir_init +2020-03-06 10:35:43,980 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.language_create +2020-03-06 10:35:43,994 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.privileges_grant +2020-03-06 10:35:44,009 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.schema_exists +2020-03-06 10:35:44,009 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.tablespace_exists +2020-03-06 10:35:44,027 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.user_exists +2020-03-06 10:35:44,135 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:35:44,230 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded selinux.getenforce +2020-03-06 10:35:44,275 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded splunk.list_users +2020-03-06 10:35:44,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded splunk_search.get +2020-03-06 10:35:44,354 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:35:44,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded tomcat.status +2020-03-06 10:35:44,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded vagrant.version +2020-03-06 10:35:44,448 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded victorops.create_event +2020-03-06 10:35:44,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded win_iis.create_site +2020-03-06 10:35:44,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded win_servermanager.install +2020-03-06 10:35:44,603 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:35:44,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded wordpress.show_plugin +2020-03-06 10:35:44,651 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded x509.get_pem_entry +2020-03-06 10:35:44,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded xmpp.send_msg +2020-03-06 10:35:44,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded zk_concurrency.lock +2020-03-06 10:35:44,790 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded zonecfg.create +2020-03-06 10:35:44,791 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded zookeeper.create +2020-03-06 10:35:44,807 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:35:44,807 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:35:44,994 [salt.state :889 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:45,009 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded dacl.check_perms +2020-03-06 10:35:45,009 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][1872] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:35:45,009 [salt.loaded.int.utils.win_dacl:1186][ERROR ][1872] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:35:45,009 [salt.state :320 ][INFO ][1872] {'reg': {'Added': {'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Inheritance': True, 'Owner': None, 'Perms': {'Deny': None, 'Grant': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319'}}} +2020-03-06 10:35:45,009 [salt.state :1997][INFO ][1872] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:35:45.009924 (duration_in_ms=14452.939) +2020-03-06 10:35:45,025 [salt.state :1819][INFO ][1872] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:35:45.025880 +2020-03-06 10:35:45,025 [salt.state :1852][INFO ][1872] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:35:45,025 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:35:45,025 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:35:45,262 [salt.state :889 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:45,262 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][1872] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:35:45,262 [salt.loaded.int.utils.win_dacl:1186][ERROR ][1872] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 10:35:45,262 [salt.state :320 ][INFO ][1872] {'reg': {'Added': {'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Inheritance': True, 'Owner': None, 'Perms': {'Deny': None, 'Grant': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319'}}} +2020-03-06 10:35:45,262 [salt.state :1997][INFO ][1872] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:35:45.262529 (duration_in_ms=236.649) +2020-03-06 10:35:45,262 [salt.state :1819][INFO ][1872] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:35:45.262529 +2020-03-06 10:35:45,262 [salt.state :1852][INFO ][1872] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:35:45,275 [salt.utils.http :234 ][DEBUG ][1872] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:35:45,275 [salt.utils.http :235 ][DEBUG ][1872] Using backend: tornado +2020-03-06 10:35:45,824 [salt.loaded.int.states.archive:976 ][DEBUG ][1872] file.cached: {'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip'} +2020-03-06 10:35:45,824 [salt.loaded.int.states.archive:91 ][DEBUG ][1872] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:35:45,850 [salt.loaded.int.states.archive:996 ][DEBUG ][1872] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:35:45,895 [salt.loaded.int.module.win_file:1463][DEBUG ][1872] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:35:45,895 [salt.loaded.int.module.win_file:1463][DEBUG ][1872] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:35:45,902 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][1872] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:35:45,902 [salt.loaded.int.states.archive:1247][DEBUG ][1872] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:35:46,150 [salt.loaded.int.states.archive:1543][DEBUG ][1872] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:35:46,150 [salt.state :320 ][INFO ][1872] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} +2020-03-06 10:35:46,150 [salt.state :1997][INFO ][1872] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:35:46.150542 (duration_in_ms=888.013) +2020-03-06 10:35:46,166 [salt.state :1819][INFO ][1872] Running state [rename-extract] at time 10:35:46.166543 +2020-03-06 10:35:46,166 [salt.state :1852][INFO ][1872] Executing state module.run for [rename-extract] +2020-03-06 10:35:46,166 [salt.state :320 ][INFO ][1872] {'file.rename': True} +2020-03-06 10:35:46,166 [salt.state :1997][INFO ][1872] Completed state [rename-extract] at time 10:35:46.166543 (duration_in_ms=0.0) +2020-03-06 10:35:46,166 [salt.state :1819][INFO ][1872] Running state [pkg.refresh_db] at time 10:35:46.166543 +2020-03-06 10:35:46,166 [salt.state :1852][INFO ][1872] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:35:46,166 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][1872] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:31.890921) +2020-03-06 10:35:46,166 [salt.loaded.int.module.win_pkg:935 ][INFO ][1872] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:35:46,166 [salt.loaded.int.module.win_pkg:954 ][INFO ][1872] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:35:46,166 [salt.fileclient :234 ][INFO ][1872] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:35:46,339 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:35:46,339 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:35:46,339 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:35:46,339 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,352 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:35:46,353 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:35:46,353 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:35:46,353 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:35:46,353 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,353 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:35:46,369 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:35:46,369 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:35:46,369 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:35:46,369 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,385 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:35:46,385 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:35:46,385 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:35:46,385 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:35:46,385 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,400 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:35:46,400 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:35:46,400 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:35:46,400 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:35:46,400 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,416 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:35:46,416 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:35:46,416 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:35:46,416 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:35:46,432 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,432 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:35:46,432 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:35:46,432 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:35:46,447 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:35:46,447 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,447 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:35:46,447 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:35:46,447 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:35:46,463 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:35:46,463 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,463 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:35:46,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:35:46,478 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:35:46,478 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:35:46,478 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,478 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:35:46,478 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:35:46,478 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:35:46,494 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:35:46,494 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,494 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:35:46,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:35:46,510 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:35:46,510 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:35:46,510 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,510 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:35:46,510 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:35:46,525 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:35:46,525 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:35:46,525 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,525 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:35:46,525 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:35:46,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:35:46,541 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:35:46,541 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,541 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:35:46,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:35:46,557 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:35:46,557 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:35:46,557 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,557 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:35:46,557 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:35:46,572 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:35:46,572 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:35:46,572 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,572 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:35:46,587 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:35:46,587 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:35:46,587 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:35:46,587 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,587 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:35:46,604 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:35:46,604 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:35:46,604 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:35:46,604 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,604 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:35:46,619 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:35:46,619 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:35:46,619 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:35:46,619 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,619 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:35:46,634 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:35:46,634 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:35:46,634 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:35:46,634 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,634 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:35:46,650 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:35:46,650 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:35:46,650 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:35:46,650 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,650 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:35:46,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:35:46,666 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:35:46,666 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:35:46,666 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,666 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:35:46,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:35:46,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:35:46,682 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:35:46,682 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,682 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:35:46,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:35:46,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:35:46,697 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:35:46,697 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,697 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:35:46,713 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:35:46,713 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:35:46,713 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:35:46,713 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,713 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:35:46,729 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:35:46,729 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:35:46,729 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:35:46,729 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,729 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:35:46,744 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:35:46,744 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:35:46,744 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:35:46,744 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,744 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:35:46,759 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:35:46,759 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:35:46,759 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:35:46,759 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,759 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:35:46,775 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:35:46,775 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:35:46,775 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:35:46,791 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,791 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:35:46,807 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:35:46,807 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:35:46,807 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:35:46,807 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,807 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:35:46,823 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:35:46,823 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:35:46,823 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:35:46,823 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,823 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:35:46,838 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:35:46,838 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:35:46,838 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:35:46,838 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,838 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:35:46,854 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:35:46,854 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:35:46,854 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:35:46,854 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,854 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:35:46,869 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:35:46,869 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:35:46,869 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:35:46,869 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,869 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:35:46,886 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:35:46,886 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:35:46,886 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:35:46,886 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,886 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:35:46,900 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:35:46,900 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:35:46,900 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:35:46,900 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,900 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:35:46,916 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:35:46,916 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:35:46,916 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:35:46,916 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,916 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:35:46,932 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:35:46,932 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:35:46,932 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:35:46,932 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,947 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:35:46,947 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:35:46,947 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:35:46,947 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:35:46,947 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,963 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:35:46,963 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:35:46,963 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:35:46,963 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:35:46,963 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,978 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:35:46,978 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:35:46,978 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:35:46,978 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:35:46,978 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:46,994 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:35:46,994 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:35:46,994 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:35:47,009 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:35:47,009 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,009 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:35:47,009 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:35:47,009 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:35:47,026 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:35:47,026 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,026 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:35:47,026 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:35:47,026 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:35:47,041 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:35:47,041 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,041 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:35:47,041 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:35:47,056 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:35:47,056 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:35:47,056 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,056 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:35:47,072 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:35:47,072 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:35:47,072 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:35:47,072 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,072 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:35:47,088 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:35:47,088 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:35:47,088 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:35:47,088 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,088 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:35:47,104 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:35:47,104 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:35:47,104 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:35:47,104 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,104 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:35:47,119 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:35:47,119 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:35:47,119 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:35:47,119 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,119 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:35:47,135 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:35:47,135 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:35:47,135 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:35:47,135 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,135 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:35:47,150 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:35:47,150 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:35:47,150 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:35:47,150 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,150 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:35:47,166 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:35:47,166 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:35:47,166 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:35:47,166 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,187 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:35:47,187 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:35:47,187 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:35:47,197 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:35:47,197 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,197 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:35:47,197 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:35:47,213 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:35:47,213 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:35:47,213 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,213 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:35:47,213 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:35:47,229 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:35:47,229 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:35:47,229 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,229 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:35:47,244 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:35:47,244 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:35:47,244 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:35:47,244 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,244 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:35:47,262 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:35:47,262 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:35:47,262 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:35:47,262 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,262 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:35:47,275 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:35:47,275 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:35:47,275 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:35:47,275 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,275 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:35:47,291 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:35:47,291 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:35:47,291 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:35:47,291 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,291 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:35:47,307 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:35:47,307 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:35:47,307 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:35:47,307 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,307 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:35:47,322 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:35:47,322 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:35:47,322 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:35:47,322 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,322 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:35:47,338 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:35:47,338 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:35:47,338 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:35:47,338 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,353 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:35:47,353 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:35:47,353 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:35:47,353 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:35:47,353 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,370 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:35:47,370 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:35:47,370 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:35:47,370 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:35:47,370 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,370 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:35:47,387 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:35:47,387 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:35:47,387 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:35:47,387 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,402 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:35:47,402 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:35:47,402 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:35:47,402 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:35:47,402 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,419 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:35:47,419 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:35:47,419 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:35:47,419 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:35:47,419 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,434 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:35:47,434 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:35:47,434 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:35:47,434 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:35:47,447 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,447 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:35:47,447 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:35:47,447 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:35:47,463 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:35:47,463 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,463 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:35:47,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:35:47,463 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:35:47,479 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:35:47,479 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,479 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:35:47,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:35:47,494 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:35:47,494 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:35:47,494 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,494 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:35:47,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:35:47,511 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:35:47,511 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:35:47,511 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,511 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:35:47,526 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:35:47,526 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:35:47,526 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:35:47,526 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,526 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:35:47,542 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:35:47,542 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:35:47,542 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:35:47,542 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,542 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:35:47,556 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:35:47,556 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:35:47,556 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:35:47,556 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,556 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:35:47,572 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:35:47,572 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:35:47,572 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:35:47,572 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,572 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:35:47,588 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:35:47,588 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:35:47,588 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:35:47,588 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,588 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:35:47,603 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:35:47,603 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:35:47,603 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:35:47,603 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,619 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:35:47,619 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:35:47,619 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:35:47,619 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:35:47,619 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,635 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:35:47,635 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:35:47,635 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:35:47,635 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:35:47,635 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,651 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:35:47,651 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:35:47,651 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:35:47,651 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:35:47,651 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,666 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:35:47,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:35:47,666 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:35:47,666 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:35:47,666 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,683 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:35:47,683 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:35:47,683 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:35:47,696 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:35:47,697 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,697 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:35:47,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:35:47,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:35:47,697 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:35:47,697 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,714 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:35:47,714 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:35:47,714 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:35:47,728 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:35:47,728 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,728 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:35:47,728 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:35:47,728 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:35:47,745 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:35:47,745 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,745 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:35:47,745 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:35:47,759 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:35:47,759 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:35:47,759 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,759 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:35:47,775 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:35:47,775 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:35:47,775 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:35:47,775 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,775 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:35:47,792 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:35:47,792 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:35:47,792 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:35:47,792 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,792 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:35:47,807 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:35:47,807 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:35:47,807 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:35:47,807 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,807 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:35:47,822 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:35:47,822 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:35:47,822 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:35:47,822 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,822 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:35:47,837 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:35:47,837 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:35:47,837 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:35:47,837 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,837 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:35:47,854 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:35:47,854 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:35:47,854 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:35:47,854 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,869 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:35:47,869 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:35:47,869 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:35:47,869 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:35:47,869 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,885 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:35:47,885 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:35:47,885 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:35:47,885 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:35:47,885 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,900 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:35:47,900 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:35:47,900 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:35:47,900 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:35:47,900 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,916 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:35:47,916 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:35:47,916 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:35:47,916 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:35:47,931 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,931 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:35:47,931 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:35:47,931 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:35:47,931 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:35:47,931 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,948 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:35:47,948 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:35:47,948 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:35:47,963 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:35:47,963 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,963 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:35:47,963 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:35:47,963 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:35:47,963 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:35:47,979 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,979 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:35:47,979 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:35:47,979 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:35:47,994 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:35:47,994 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:47,994 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:35:47,994 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:35:47,994 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:35:48,010 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:35:48,010 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,010 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:35:48,010 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:35:48,025 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:35:48,025 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:35:48,025 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,025 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:35:48,025 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:35:48,041 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:35:48,041 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:35:48,041 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,041 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:35:48,057 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:35:48,057 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:35:48,057 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:35:48,057 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,057 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:35:48,072 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:35:48,072 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:35:48,072 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:35:48,072 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,072 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:35:48,088 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:35:48,088 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:35:48,088 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:35:48,088 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,088 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:35:48,103 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:35:48,103 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:35:48,103 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:35:48,103 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,119 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:35:48,119 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:35:48,119 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:35:48,119 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:35:48,119 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,135 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:35:48,135 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:35:48,135 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:35:48,135 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:35:48,135 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,150 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:35:48,150 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:35:48,150 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:35:48,150 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:35:48,150 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,166 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:35:48,166 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:35:48,166 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:35:48,166 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:35:48,166 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,184 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:35:48,184 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:35:48,184 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:35:48,184 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:35:48,184 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,200 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:35:48,200 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:35:48,200 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:35:48,213 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:35:48,213 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,213 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:35:48,213 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:35:48,229 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:35:48,229 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:35:48,229 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,229 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:35:48,244 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:35:48,244 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:35:48,244 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:35:48,244 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,244 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:35:48,260 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:35:48,260 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:35:48,275 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:35:48,275 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,275 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:35:48,275 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:35:48,275 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:35:48,293 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:35:48,293 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,293 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:35:48,293 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:35:48,293 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:35:48,309 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:35:48,309 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,309 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:35:48,324 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:35:48,324 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:35:48,324 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:35:48,324 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,324 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:35:48,338 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:35:48,338 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:35:48,338 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:35:48,338 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,338 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:35:48,357 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:35:48,357 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:35:48,357 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:35:48,357 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,357 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:35:48,371 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:35:48,371 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:35:48,371 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:35:48,371 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,386 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:35:48,386 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:35:48,386 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:35:48,386 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:35:48,386 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,402 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:35:48,402 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:35:48,402 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:35:48,402 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:35:48,402 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,418 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:35:48,418 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:35:48,418 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:35:48,418 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:35:48,418 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,433 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:35:48,433 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:35:48,433 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:35:48,433 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:35:48,433 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,448 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:35:48,448 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:35:48,448 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:35:48,448 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:35:48,448 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,464 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:35:48,464 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:35:48,464 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:35:48,464 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:35:48,464 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,480 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:35:48,480 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:35:48,480 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:35:48,480 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:35:48,480 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,494 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:35:48,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:35:48,494 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:35:48,494 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:35:48,494 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,510 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:35:48,510 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:35:48,510 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:35:48,525 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:35:48,525 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,525 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:35:48,525 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:35:48,540 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:35:48,541 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:35:48,541 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,541 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:35:48,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:35:48,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:35:48,557 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:35:48,557 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,557 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:35:48,557 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,573 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,573 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,573 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,573 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,573 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,588 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,588 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,588 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,588 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,604 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:35:48,604 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:35:48,604 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:35:48,604 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,604 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:35:48,619 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:35:48,619 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:35:48,619 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:35:48,619 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,619 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:35:48,635 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:35:48,635 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:35:48,635 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:35:48,635 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,635 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:35:48,650 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:35:48,650 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:35:48,650 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:35:48,650 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,650 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:35:48,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:35:48,666 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:35:48,666 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:35:48,666 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,666 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:35:48,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:35:48,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:35:48,682 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:35:48,682 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,697 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:35:48,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,697 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,697 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,713 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:35:48,713 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,713 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,713 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,713 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,728 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,728 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:35:48,728 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:35:48,728 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:35:48,728 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,744 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:35:48,744 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,744 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,744 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,759 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,759 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:35:48,759 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:35:48,759 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:35:48,759 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:35:48,775 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,775 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:35:48,775 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:35:48,791 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:35:48,791 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:35:48,791 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,791 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:35:48,791 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:35:48,807 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:35:48,807 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:35:48,807 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,807 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:35:48,822 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:35:48,822 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:35:48,822 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:35:48,822 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,822 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:35:48,838 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:35:48,838 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:35:48,838 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:35:48,838 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,838 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:35:48,854 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:35:48,854 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:35:48,854 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:35:48,854 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,869 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:35:48,869 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:35:48,869 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:35:48,869 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:35:48,869 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,884 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:35:48,884 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:35:48,884 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:35:48,884 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:35:48,884 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,900 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:35:48,900 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:35:48,900 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:35:48,900 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:35:48,916 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,916 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:35:48,916 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:35:48,916 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:35:48,932 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:35:48,932 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,932 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:35:48,932 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:35:48,948 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:35:48,948 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:35:48,948 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,948 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:35:48,964 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:35:48,964 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:35:48,964 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:35:48,964 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,964 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:35:48,978 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:35:48,978 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:35:48,978 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:35:48,978 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,978 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:35:48,995 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:35:48,995 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:35:48,995 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:35:48,995 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:48,995 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:35:49,011 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:35:49,011 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:35:49,011 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:35:49,011 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,011 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:35:49,027 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:35:49,027 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:35:49,027 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:35:49,027 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,027 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:35:49,041 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:35:49,041 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:35:49,041 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:35:49,041 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,041 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:35:49,059 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:35:49,059 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:35:49,059 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:35:49,059 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,059 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:35:49,074 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:35:49,074 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:35:49,074 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:35:49,074 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,088 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:35:49,088 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:35:49,088 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:35:49,088 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:35:49,088 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,104 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:35:49,104 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:35:49,104 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:35:49,104 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:35:49,104 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,119 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:35:49,119 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:35:49,119 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:35:49,119 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:35:49,119 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,135 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:35:49,135 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:35:49,135 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:35:49,135 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:35:49,135 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,150 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:35:49,150 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:35:49,150 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:35:49,150 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:35:49,165 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,166 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:35:49,166 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:35:49,166 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:35:49,166 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:35:49,181 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,181 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:35:49,181 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:35:49,181 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:35:49,197 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:35:49,197 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,197 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:35:49,197 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:35:49,213 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:35:49,213 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:35:49,213 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,213 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:35:49,229 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:35:49,229 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:35:49,229 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:35:49,229 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,229 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:35:49,229 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:35:49,246 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:35:49,246 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:35:49,246 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,246 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:35:49,262 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:35:49,262 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:35:49,262 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:35:49,262 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,262 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:35:49,276 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:35:49,276 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:35:49,276 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:35:49,276 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,276 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:35:49,293 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:35:49,293 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:35:49,293 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:35:49,293 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,293 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:35:49,308 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:35:49,308 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:35:49,308 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:35:49,308 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,308 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:35:49,322 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:35:49,322 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:35:49,322 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:35:49,322 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,338 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:35:49,338 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:35:49,338 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:35:49,338 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:35:49,338 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,354 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:35:49,354 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:35:49,354 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:35:49,354 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:35:49,354 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,369 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:35:49,369 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:35:49,369 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:35:49,369 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:35:49,369 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,385 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:35:49,385 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:35:49,385 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:35:49,385 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:35:49,385 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,401 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:35:49,417 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:35:49,417 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:35:49,417 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:35:49,417 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,417 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:35:49,434 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:35:49,434 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:35:49,434 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:35:49,434 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,434 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:35:49,448 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:35:49,448 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:35:49,448 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:35:49,448 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,448 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:35:49,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:35:49,463 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:35:49,463 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:35:49,463 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,463 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:35:49,478 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:35:49,478 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:35:49,478 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:35:49,478 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,478 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:35:49,495 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:35:49,495 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:35:49,495 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:35:49,495 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,495 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:35:49,510 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:35:49,510 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:35:49,510 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:35:49,510 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,510 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:35:49,526 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:35:49,526 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:35:49,526 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:35:49,526 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,526 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:35:49,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:35:49,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:35:49,541 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:35:49,541 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,541 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:35:49,558 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:35:49,558 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:35:49,558 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:35:49,558 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,558 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:35:49,572 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:35:49,572 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:35:49,572 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:35:49,572 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,572 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:35:49,587 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:35:49,587 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:35:49,587 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:35:49,587 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,603 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:35:49,603 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:35:49,603 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:35:49,603 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:35:49,603 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,619 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:35:49,619 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:35:49,619 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:35:49,619 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:35:49,619 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,634 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:35:49,634 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:35:49,634 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:35:49,634 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:35:49,634 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,650 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:35:49,650 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:35:49,650 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:35:49,650 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:35:49,650 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,666 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:35:49,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:35:49,666 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:35:49,666 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:35:49,666 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,681 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:35:49,681 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:35:49,681 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:35:49,681 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:35:49,681 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,697 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:35:49,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:35:49,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:35:49,697 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:35:49,697 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,713 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:35:49,713 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:35:49,713 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:35:49,713 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:35:49,713 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,728 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:35:49,728 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:35:49,728 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:35:49,728 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:35:49,744 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,744 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:35:49,744 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:35:49,744 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:35:49,744 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:35:49,744 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,760 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:35:49,760 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:35:49,760 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:35:49,760 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:35:49,760 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,775 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:35:49,775 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:35:49,775 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:35:49,775 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:35:49,791 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,791 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:35:49,791 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:35:49,806 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:35:49,806 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:35:49,806 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,806 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:35:49,806 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:35:49,823 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:35:49,823 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:35:49,823 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,823 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:35:49,838 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:35:49,838 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:35:49,838 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:35:49,838 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,838 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:35:49,838 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:35:49,854 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:35:49,854 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:35:49,854 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,854 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:35:49,869 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:35:49,869 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:35:49,869 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:35:49,869 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,869 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:35:49,885 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:35:49,885 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:35:49,885 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:35:49,885 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,885 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:35:49,901 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:35:49,901 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:35:49,901 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:35:49,901 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,901 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:35:49,918 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:35:49,918 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:35:49,918 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:35:49,937 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,937 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:35:49,949 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:35:49,949 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:35:49,949 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:35:49,949 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,949 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:35:49,963 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:35:49,963 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:35:49,963 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:35:49,963 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,963 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:35:49,978 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:35:49,978 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:35:49,978 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:35:49,978 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,978 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:35:49,994 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:35:49,994 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:35:49,994 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:35:49,994 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:49,994 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:35:50,010 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:35:50,010 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:35:50,010 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:35:50,010 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,010 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:35:50,025 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:35:50,025 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:35:50,025 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:35:50,025 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,025 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:35:50,041 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:35:50,041 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:35:50,041 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:35:50,041 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,041 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:35:50,057 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:35:50,057 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:35:50,057 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:35:50,057 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,072 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:35:50,072 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:35:50,072 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:35:50,072 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:35:50,072 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,088 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:35:50,088 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:35:50,088 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:35:50,088 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:35:50,088 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,104 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:35:50,104 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:35:50,104 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:35:50,104 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:35:50,104 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,119 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:35:50,119 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:35:50,119 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:35:50,119 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:35:50,119 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,134 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:35:50,134 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:35:50,134 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:35:50,134 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:35:50,134 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,150 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:35:50,150 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:35:50,150 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:35:50,150 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:35:50,150 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,168 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:35:50,168 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:35:50,168 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:35:50,168 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:35:50,168 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,184 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:35:50,184 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:35:50,184 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:35:50,184 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:35:50,184 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,198 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:35:50,198 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:35:50,198 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:35:50,198 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:35:50,198 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,213 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:35:50,213 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:35:50,213 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:35:50,213 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:35:50,213 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,229 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:35:50,229 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:35:50,229 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:35:50,229 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:35:50,229 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,244 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:35:50,244 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:35:50,244 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:35:50,244 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:35:50,259 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,259 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:35:50,259 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:35:50,259 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:35:50,259 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:35:50,275 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,275 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:35:50,275 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:35:50,275 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:35:50,275 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:35:50,291 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,291 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:35:50,291 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:35:50,291 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:35:50,307 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:35:50,307 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,307 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:35:50,307 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:35:50,307 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:35:50,322 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:35:50,322 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,322 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:35:50,322 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:35:50,337 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:35:50,337 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:35:50,337 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,337 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:35:50,337 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:35:50,353 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:35:50,353 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:35:50,353 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,353 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:35:50,353 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:35:50,369 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:35:50,369 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:35:50,369 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,369 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:35:50,369 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:35:50,386 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:35:50,386 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:35:50,386 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,386 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:35:50,402 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:35:50,402 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:35:50,402 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:35:50,402 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,402 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:35:50,417 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:35:50,417 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:35:50,417 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:35:50,417 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,432 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:35:50,432 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:35:50,432 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:35:50,450 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:35:50,450 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,450 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:35:50,463 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:35:50,463 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:35:50,463 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:35:50,463 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,463 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:35:50,479 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:35:50,479 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:35:50,479 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:35:50,479 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,479 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:35:50,494 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:35:50,494 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:35:50,494 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:35:50,494 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,494 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:35:50,509 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:35:50,509 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:35:50,509 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:35:50,509 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,509 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:35:50,525 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:35:50,525 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:35:50,525 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:35:50,525 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,525 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:35:50,541 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:35:50,541 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:35:50,541 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:35:50,541 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,541 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:35:50,556 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:35:50,556 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:35:50,556 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:35:50,556 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,556 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:35:50,572 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:35:50,572 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:35:50,572 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:35:50,572 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,572 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:35:50,589 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:35:50,589 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:35:50,589 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:35:50,589 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,589 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:35:50,603 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:35:50,603 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:35:50,603 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:35:50,603 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,603 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:35:50,619 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:35:50,619 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:35:50,619 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:35:50,619 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,635 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:35:50,635 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:35:50,635 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:35:50,635 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:35:50,635 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,650 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:35:50,650 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:35:50,650 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:35:50,650 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:35:50,650 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,666 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:35:50,666 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:35:50,666 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:35:50,666 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:35:50,666 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,682 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:35:50,682 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:35:50,682 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:35:50,682 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:35:50,682 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,697 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:35:50,697 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:35:50,697 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:35:50,713 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:35:50,713 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,713 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:35:50,713 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:35:50,729 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:35:50,729 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:35:50,729 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,729 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:35:50,744 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:35:50,744 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:35:50,744 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:35:50,744 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,744 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:35:50,760 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:35:50,760 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:35:50,760 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:35:50,760 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,760 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:35:50,775 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:35:50,775 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:35:50,775 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:35:50,775 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,775 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:35:50,791 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:35:50,791 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:35:50,791 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:35:50,791 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,791 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:35:50,806 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:35:50,806 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:35:50,806 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:35:50,806 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,822 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:35:50,822 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:35:50,822 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:35:50,822 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:35:50,822 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,822 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:35:50,840 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:35:50,840 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:35:50,840 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:35:50,840 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,860 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:35:50,871 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:35:50,871 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:35:50,871 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:35:50,871 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,871 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:35:50,871 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:35:50,888 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:35:50,888 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:35:50,888 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,888 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:35:50,903 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:35:50,903 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:35:50,903 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:35:50,903 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,903 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:35:50,918 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:35:50,918 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:35:50,918 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:35:50,918 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,918 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:35:50,931 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:35:50,931 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:35:50,931 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:35:50,931 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,947 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:35:50,947 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:35:50,947 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:35:50,947 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:35:50,947 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,963 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:35:50,963 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:35:50,963 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:35:50,963 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:35:50,963 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,978 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:35:50,978 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:35:50,978 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:35:50,978 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:35:50,978 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:50,994 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:35:50,994 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:35:50,994 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:35:50,994 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:35:50,994 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,010 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:35:51,010 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:35:51,010 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:35:51,010 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:35:51,010 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,025 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:35:51,025 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:35:51,025 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:35:51,025 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:35:51,025 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,041 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:35:51,041 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:35:51,041 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:35:51,041 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:35:51,056 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,056 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:35:51,056 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:35:51,056 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:35:51,072 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:35:51,072 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,072 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:35:51,072 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:35:51,072 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:35:51,072 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:35:51,088 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,088 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:35:51,088 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:35:51,088 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:35:51,104 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:35:51,104 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,104 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:35:51,104 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:35:51,119 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:35:51,119 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:35:51,119 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,119 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:35:51,119 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:35:51,135 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:35:51,135 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:35:51,135 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,135 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:35:51,159 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:35:51,166 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:35:51,166 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:35:51,166 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,166 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:35:51,182 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:35:51,182 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:35:51,182 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:35:51,182 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,182 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:35:51,198 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:35:51,198 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:35:51,198 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:35:51,198 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,198 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:35:51,212 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:35:51,212 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:35:51,212 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:35:51,212 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,212 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:35:51,229 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:35:51,229 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:35:51,229 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:35:51,229 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,229 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:35:51,244 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:35:51,244 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:35:51,244 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:35:51,244 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,244 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:35:51,260 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:35:51,260 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:35:51,260 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:35:51,260 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,260 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:35:51,276 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:35:51,276 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:35:51,276 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:35:51,276 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,276 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:35:51,291 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:35:51,291 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:35:51,291 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:35:51,291 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,291 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:35:51,307 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:35:51,307 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:35:51,307 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:35:51,307 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,307 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:35:51,322 [salt.fileclient :1093][DEBUG ][1872] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:35:51,322 [salt.fileclient :1101][DEBUG ][1872] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:35:51,322 [salt.fileclient :1121][DEBUG ][1872] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:35:51,322 [salt.fileclient :1149][DEBUG ][1872] No dest file found +2020-03-06 10:35:51,322 [salt.fileclient :1230][INFO ][1872] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:35:51,337 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,337 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,337 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:35:51,337 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,354 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.016553163528442383 +2020-03-06 10:35:51,354 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +7zip: + + + '16.04.00.0': + + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.03.00.0': + + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.02.00.0': + + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.00.00.0': + + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '18.06.00.0': + + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.05.00.0': + + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.03.00.0': + + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.01.00.0': + + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '19.00.00.0': + + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:35:51,354 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,354 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,354 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,354 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,354 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:35:51,369 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,369 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +activeperl_x64: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.24.3': + full_name: 'ActivePerl 5.24.3 Build 2404 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.26.1': + full_name: 'ActivePerl 5.26.1 Build 2601 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,384 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,384 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:35:51,384 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,384 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,384 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +activeperl_x86: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205' + + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,384 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,384 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,384 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,401 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:35:51,401 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,401 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,401 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +adobeair: + latest: + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + '30.0.0.107': + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,401 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,401 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,401 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,401 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,401 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:35:51,401 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.01592421531677246 +2020-03-06 10:35:51,416 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +# to understand what is meant by "classic" see +# http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html + +adobereader-dc-classic: + + + '20.006.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20049': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20047': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20036': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20099': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20098': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20091': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20069': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20064': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20081': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20071': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20063': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20055': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20040': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,416 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:35:51,431 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0005517005920410156 +2020-03-06 10:35:51,431 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +adobereader-xi: + '11.0.10': + full_name: 'Adobe Reader XI (11.0.10)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '11.0.6': + full_name: 'Adobe Reader XI (11.0.06)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,431 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:35:51,431 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,431 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +adobereader: + '10.1.4': + full_name: 'Adobe Reader X (10.1.4)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '9.5.0': + full_name: 'Adobe Reader 9.5.0' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,447 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:35:51,447 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,447 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,447 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +adobeshockwaveplayer: + latest: + full_name: 'Adobe Shockwave Player 12.2' + installer: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version + +2020-03-06 10:35:51,447 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,447 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,463 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:35:51,463 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,463 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,463 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: + + + +adv-ip-scanner: + + + '2.5.3784': + full_name: 'Advanced IP Scanner 2.5' + installer: 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-ip-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:35:51,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,463 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,478 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,478 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:35:51,478 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,478 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,478 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: + + + +adv-port-scanner: + + + '2.5.3680': + full_name: 'Advanced Port Scanner 2.5' + installer: 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-port-scanner.com +# a product of: www.radmin.com + +2020-03-06 10:35:51,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,478 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,478 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,478 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,494 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:35:51,494 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,494 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +advancedlogging: + '1.0.0625.10': + full_name: 'IIS Advanced Logging 1.0' + + installer: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + uninstaller: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,494 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:35:51,494 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.016169309616088867 +2020-03-06 10:35:51,510 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +# just 32-bit x86 msi package available + + + +anydesk-msi: + latest: + full_name: 'AnyDesk MSI' + installer: 'https://download.anydesk.com/AnyDesk.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.anydesk.com/AnyDesk.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,510 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:35:51,510 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,525 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +# just 32-bit x86 installer available + + + + + + + +anydesk: + latest: + full_name: 'AnyDesk' + installer: 'https://download.anydesk.com/AnyDesk.exe' + install_flags: '--install "%ProgramFiles(x86)%\AnyDesk" --start-with-win --silent --create-shortcut' + uninstaller: 'https://download.anydesk.com/AnyDesk.exe' + uninstall_flags: '--silent --remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,525 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,525 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:35:51,525 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,525 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,525 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +applicationrequestrouting: + '3.0.1952': + full_name: 'Microsoft Application Request Routing 3.0' + + installer: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,525 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,541 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,541 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,541 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:35:51,541 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,541 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,541 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +aspnet-mvc1: + '1.0.0.0': + full_name: 'Microsoft ASP.NET MVC 1.0' + installer: 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi' + install_flags: '/qn /norestart' + uninstaller: '{A4394612-D02F-11DC-9BFF-D18556D89593}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,541 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,557 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.015569448471069336 +2020-03-06 10:35:51,557 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,557 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,557 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:35:51,557 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.01564502716064453 +2020-03-06 10:35:51,572 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: + +atom: + + '1.28.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.2': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.1': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.23.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,572 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,572 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,572 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:35:51,588 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,603 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: + + + + +audacity: + + '2.2.2': + full_name: 'Audacity 2.2.2' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Audacity 2.2.1' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,603 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,603 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,620 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,635 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:35:51,635 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,651 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: + + + +autohotkey: + '1.1.29.01': + full_name: 'AutoHotkey 1.1.29.01' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.27.06': + full_name: 'AutoHotkey 1.1.27.06' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.24.00': + full_name: 'AutoHotkey 1.1.24.00' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.22.09': + full_name: 'AutoHotkey 1.1.22.09' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,651 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,651 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,651 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,651 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,651 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:35:51,651 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,666 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.014135360717773438 +2020-03-06 10:35:51,666 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: + +autoit: + + '3.3.14.5': + full_name: 'AutoIt v3.3.14.5' + installer: 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\AutoIt3\Uninstall.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,666 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,666 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:35:51,666 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,666 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,682 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +autopsy: + '4.3.0': + full_name: 'Autopsy' + + installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,682 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,682 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,682 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:35:51,682 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,682 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,696 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +awscli: + latest: + + full_name: 'AWS Command Line Interface' + installer: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + uninstaller: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,697 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,697 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,697 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:35:51,697 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0161130428314209 +2020-03-06 10:35:51,713 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +# due to winrepo installer limitations you need to manually download the exe from +# https://go.microsoft.com/fwlink/?linkid=2049975 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... + + +azuredatastudio: + '1.3.9': + full_name: 'Azure Data Studio' +# installer: 'salt://win/repo-ng/azuredatastudio/azuredatastudio-windows-setup-1.3.9.exe' + installer: 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe' + uninstaller: 'C:\Program Files\Azure Data Studio\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,713 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:35:51,728 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.015015840530395508 +2020-03-06 10:35:51,728 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +#the provider only offers the download of the latest version + + + +bandizip: + '6.21': + full_name: 'Bandizip' + installer: 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE' + install_flags: '/S' + uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,728 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:35:51,744 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +# just 32-bit x86 installer available + + + +belarc-advisor: + '8.6': + full_name: 'Belarc Advisor' + installer: 'http://downloads.belarc.com/advisor/advisorinstaller.exe' + install_flags: '/s' + uninstaller: '%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\Uninstall.exe' + uninstall_flags: '/s "%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\INSTALL.LOG"' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,759 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,759 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,759 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:35:51,759 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,759 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,759 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +bginfo4x: + '3.3.6': + full_name: 'BGINFO4X for Windows 3.3.6' + installer: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + uninstaller: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,759 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,759 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,775 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,775 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,775 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:35:51,775 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,775 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,775 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +# source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe +bitnami-nginxstack: + '1.8.0-0': + full_name: 'Bitnami Nginx Stack' + installer: 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe' + install_flags: '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"' + uninstaller: 'C:\Bitnami\nginxstack-1.8.0-0\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,775 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,775 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,792 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,792 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:35:51,792 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,807 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.014842987060546875 +2020-03-06 10:35:51,807 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +bitvise: + + '8.32': + full_name: 'Bitvise SSH Server 8.32 (remove only)' + installer: 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe' + install_flags: '-acceptEULA -defaultInstance -startService' + uninstaller: '%ProgramFiles%\Bitvise SSH Server\uninst.exe' + uninstall_flags: '"Bitvise SSH Server" -unat' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:51,807 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,807 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,807 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,807 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,807 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:35:51,807 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,822 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.015618085861206055 +2020-03-06 10:35:51,822 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +blender: + '2.78': + full_name: 'Blender' + + installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:51,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,822 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,822 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,822 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,822 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:35:51,838 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,838 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +bootracer: + '6.50.0.450': + full_name: 'BootRacer' + installer: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + uninstaller: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# download zip archive manually and unpack msi to slat master winrepo-ng directory + +2020-03-06 10:35:51,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,838 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:35:51,854 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,854 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: + +bulkrenameutility: + + '3.0.0.1': + + full_name: 'Bulk Rename Utility 3.0.0.1 (64-bit)' + + installer: 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\Bulk Rename Utility\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:51,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,869 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:35:51,869 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,869 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,869 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +# just 32-bit x86 installer available + + + +bulk_extractor: + + '1.5.5': + full_name: 'Bulk Extractor 1.5.5' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.5\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Bulk Extractor 1.5.1' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.1\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Bulk Extractor 1.5.0' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.0\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.015609502792358398 +2020-03-06 10:35:51,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,885 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:35:51,885 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,885 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: + +ccleaner-slim: + + '5.60': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup560_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.59': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup559_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.58': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup558_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup557_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,900 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,900 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,900 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,900 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:35:51,900 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,916 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.01612257957458496 +2020-03-06 10:35:51,916 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: + +ccleaner: + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup557.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.44': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup544.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:51,916 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,916 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,916 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,916 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,916 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:35:51,932 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,932 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,932 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +cdburnerxp: + '4.5.6.5931': + full_name: 'CDBurnerXP' + installer: 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\CDBurnerXP\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,932 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,932 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,947 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,947 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:35:51,963 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,963 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,963 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +# just 32-bit x86 installer available + + + +cdroller: + '10.0': + full_name: 'CDRoller version 10.0' + installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe' + install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"' + uninstaller: '%PROGRAMFILES(x86)%\CDRoller\unins000.exe' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:51,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,963 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:51,963 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,978 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:35:51,978 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:51,978 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:51,978 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +check-mk-agent-msi: + + '1.5.0.3268': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2940': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2857': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8.1521': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8p26': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p5': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6.185': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p16': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p14': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p13': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p12': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:51,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:51,994 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.015949487686157227 +2020-03-06 10:35:51,994 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:51,994 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:51,994 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:35:51,994 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,010 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.015660524368286133 +2020-03-06 10:35:52,010 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +check-mk-agent: + 'Not Found': + full_name: 'Check_MK Agent 1.2.8b4' + + installer: 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe' + + uninstaller: '%ProgramFiles%\check_mk\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,010 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,010 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,010 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,010 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,010 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:35:52,025 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,025 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,041 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +chrome-rdp: + latest: + full_name: 'Chrome Remote Desktop Host' + installer: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,041 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,056 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,056 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:35:52,056 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.015696048736572266 +2020-03-06 10:35:52,072 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +chrome: + latest: + full_name: 'Google Chrome' + installer: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,072 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:35:52,072 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,088 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.015856266021728516 +2020-03-06 10:35:52,088 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +clamav: + '0.99.1': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + '0.98.7': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + +2020-03-06 10:35:52,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) +2020-03-06 10:35:52,088 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,088 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,088 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,088 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:35:52,088 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.015215635299682617 +2020-03-06 10:35:52,103 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +# just 32-bit x86 installer available + + + +clamwin: + '0.98.7': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.6': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.5': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,103 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:35:52,119 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,119 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,119 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +classicshell: + '4.2.4': + full_name: 'Classic Shell' + installer: 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe' + install_flags: '/passive' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,119 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,119 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,119 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,119 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:35:52,119 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,135 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.016017675399780273 +2020-03-06 10:35:52,135 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +# just 32-bit x86 installer available + + + +clink: + '0.4.8': + full_name: 'Clink v0.4.8' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.8\clink_uninstall_0.4.8.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.7': + full_name: 'Clink v0.4.7' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.7\clink_uninstall_0.4.7.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.6': + full_name: 'Clink v0.4.6' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.6\clink_uninstall_0.4.6.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.4': + full_name: 'Clink v0.4.4' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.4\clink_uninstall_0.4.4.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# https://mridgers.github.io/clink/ + +2020-03-06 10:35:52,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,135 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,135 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,135 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,150 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:35:52,150 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,150 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,150 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +conemu: + '11.160.5290': + + full_name: 'ConEmu 160529.x64' + install_flags: '/p:x64,adm /quiet /norestart' + uninstall_flags: '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart' + + installer: 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,150 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,150 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,166 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:35:52,166 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,166 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,181 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +cpu-z: + + '1.86': + full_name: 'CPUID CPU-Z 1.86' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.85': + full_name: 'CPUID CPU-Z 1.85' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.84': + full_name: 'CPUID CPU-Z 1.84' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.83': + full_name: 'CPUID CPU-Z 1.83' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.82': + full_name: 'CPUID CPU-Z 1.82' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.81': + full_name: 'CPUID CPU-Z 1.81' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.80': + full_name: 'CPUID CPU-Z 1.80' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.79': + full_name: 'CPUID CPU-Z 1.79' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.78': + full_name: 'CPUID CPU-Z 1.78' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.77': + full_name: 'CPUID CPU-Z 1.77' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.76': + full_name: 'CPUID CPU-Z 1.76' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.75': + full_name: 'CPUID CPU-Z 1.75' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.74': + full_name: 'CPUID CPU-Z 1.74' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.73': + full_name: 'CPUID CPU-Z 1.73' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.72.1': + full_name: 'CPUID CPU-Z 1.72.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.71.1': + full_name: 'CPUID CPU-Z 1.71.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.70': + full_name: 'CPUID CPU-Z 1.70' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.69': + full_name: 'CPUID CPU-Z 1.69' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.68': + full_name: 'CPUID CPU-Z 1.68' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.67': + full_name: 'CPUID CPU-Z 1.67' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.66': + full_name: 'CPUID CPU-Z 1.66' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.65': + full_name: 'CPUID CPU-Z 1.65' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,181 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,181 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,181 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,181 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:35:52,181 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,197 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.015755414962768555 +2020-03-06 10:35:52,197 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +curl: + '7.46.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.45.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.44.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.43.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# You need to download the win64 msi from website (Captcha protected) and place in your winrepo-ng on master +# http://www.confusedbycode.com/curl/#downloads +# Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, +# so you might not be calling the right 'curl' + +2020-03-06 10:35:52,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,197 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,213 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:35:52,213 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,213 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,213 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +cyberduck-cli: + '1.0.0.0': + full_name: 'Cyberduck CLI' + installer: 'http://dist.duck.sh/duck-5.0.3.20504.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ALLUSERSPROFILE%\Package Cache\{d7e97b39-df55-4b65-84b3-c24d1041948b}\duck-5.0.3.20504.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,213 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,213 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,228 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,228 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:35:52,228 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,228 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,228 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +# just 32-bit x86 installer available + + + + +cyberduck-msi: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:35:52,228 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,228 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,244 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,244 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,244 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:35:52,244 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,259 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.015148639678955078 +2020-03-06 10:35:52,259 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +# just 32-bit x86 installer available + + + + +cyberduck: + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:52,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,259 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,259 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,259 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,259 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:35:52,259 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,275 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0158843994140625 +2020-03-06 10:35:52,275 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +# just 32-bit x86 installer available + + + +defraggler: + '2.20': + full_name: 'Defraggler' + installer: 'https://download.piriform.com/dfsetup220.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '2.18.945': + full_name: 'Defraggler 2.18' + installer: 'https://download.piriform.com/dfsetup218.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,275 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,275 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,275 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,275 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,275 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:35:52,275 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,292 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.016316890716552734 +2020-03-06 10:35:52,292 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +dotnet: + '4.6.01590': + full_name: 'Microsoft .NET Framework 4.6.2' + installer: 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01590\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.01055': + full_name: 'Microsoft .NET Framework 4.6.1' + installer: 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01055\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.00081': + full_name: 'Microsoft .NET Framework 4.6' + installer: 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.00081\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.5.51209': + full_name: 'Microsoft .NET Framework 4.5.2' + installer: 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.5.51209\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,292 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,292 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,292 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,292 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,292 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:35:52,306 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0007519721984863281 +2020-03-06 10:35:52,307 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +# just 32-bit x86 installer available + + + + + + + + +dropbox: + '69.4.102': + full_name: 'Dropbox' + installer: 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe' + install_flags: '/NOLAUNCH' + uninstaller: '%PROGRAMFILES(x86)%\Dropbox\Client\DropboxUninstaller.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,307 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,307 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:35:52,307 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.015191316604614258 +2020-03-06 10:35:52,322 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +duplicati: + '1.3.4': + + full_name: 'Duplicati (x64)' + installer: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + uninstaller: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + refresh: False + cache_dir: False + use_scheduler: False + +2020-03-06 10:35:52,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) +2020-03-06 10:35:52,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,322 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:35:52,322 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,338 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +dvdstyler: + 'Not Found': + full_name: 'DVDStyler v2.9.6' + + installer: 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\DVDStyler\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,338 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:35:52,338 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.015203237533569336 +2020-03-06 10:35:52,353 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +echo-desktop: + '3.0.4': + full_name: + Echo Desktop + installer: + https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe + install_flags: + /S + uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" + uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" + +2020-03-06 10:35:52,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) +2020-03-06 10:35:52,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,353 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:35:52,369 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,369 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +eea: +# '5.0.2260.1': +# full_name: 'ESET Endpoint Antivirus' +# +# installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# +# install_flags: '/qn ALLUSERS=1 /norestart' +# uninstall_flags: '/qn /norestart' +# msiexec: True +# locale: en_US +# reboot: False +# cache_dir: True +# use_scheduler: True + '6.3.2016.0': + full_name: 'ESET Endpoint Antivirus' + + installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + cache_dir: True + use_scheduler: True +# +# download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ +# for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB + +2020-03-06 10:35:52,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) +2020-03-06 10:35:52,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,384 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,385 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:35:52,385 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,385 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +emet: + '5.5': + full_name: 'EMET 5.5' + installer: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + install_flags: 'ALLUSERS=1 /quiet /qn /norestart' + uninstaller: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,385 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:35:52,385 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,400 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.015630006790161133 +2020-03-06 10:35:52,400 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +# just 32-bit x86 installer available + + + +# Source: https://www.emsisoft.com/en/ +emsisoft-anti-malware: + '9.0': + full_name: 'Emsisoft Anti-Malware' + installer: 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Emsisoft Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,400 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,400 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:35:52,400 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,417 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.016237974166870117 +2020-03-06 10:35:52,417 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: + + +eraser: + + '6.2.2986': + full_name: 'Eraser 6.2.0.2986' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '6.2.2983': + full_name: 'Eraser 6.2.0.2983' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,417 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,417 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,417 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,417 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,417 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:35:52,417 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.014892578125 +2020-03-06 10:35:52,431 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +evernote: + '6.9.7.6770': + full_name: 'Evernote v. 6.9.7' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.9.6.6729': + full_name: 'Evernote v. 6.9.6' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.5.4.4720': + full_name: 'Evernote v. 6.5.4' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,431 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:35:52,431 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,447 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +# just 32-bit x86 installer available + + + +fiddler: + '5.0.20181.14850': + full_name: 'Fiddler' + installer: 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe' + install_flags: '/S /D=%ProgramFiles(x86)%\Fiddler' + uninstaller: '%ProgramFiles(x86)%\Fiddler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,447 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,447 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,447 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:35:52,447 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,447 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,447 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +# just 32-bit x86 installer available + + + +# Source: http://filehippo.com/download_update_checker/ +filehippo-app-manager: + '2.0': + full_name: 'FileHippo App Manager' + installer: 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\FileHippo.com\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download manually and place on master salt://win/repo-ng/filehippo-app-manager + +2020-03-06 10:35:52,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,463 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,463 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:35:52,463 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,479 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.016408681869506836 +2020-03-06 10:35:52,479 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: + + +filezilla: + + '3.47.1': + full_name: 'FileZilla Client 3.47.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.47.0': + full_name: 'FileZilla Client 3.47.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.3': + full_name: 'FileZilla Client 3.46.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.2': + full_name: 'FileZilla Client 3.46.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.1': + full_name: 'FileZilla Client 3.46.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.0': + full_name: 'FileZilla Client 3.46.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.1': + full_name: 'FileZilla Client 3.45.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.0': + full_name: 'FileZilla Client 3.45.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.2': + full_name: 'FileZilla Client 3.44.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.1': + full_name: 'FileZilla Client 3.44.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.0': + full_name: 'FileZilla Client 3.44.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.43.0': + full_name: 'FileZilla Client 3.43.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.1': + full_name: 'FileZilla Client 3.42.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.0': + full_name: 'FileZilla Client 3.42.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.2': + full_name: 'FileZilla Client 3.41.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.1': + full_name: 'FileZilla Client 3.41.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.0': + full_name: 'FileZilla Client 3.41.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.40.0': + full_name: 'FileZilla Client 3.40.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.39.0': + full_name: 'FileZilla Client 3.39.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.1': + full_name: 'FileZilla Client 3.38.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.0': + full_name: 'FileZilla Client 3.38.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.4': + full_name: 'FileZilla Client 3.37.4' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.3': + full_name: 'FileZilla Client 3.37.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.1': + full_name: 'FileZilla Client 3.37.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.0': + full_name: 'FileZilla Client 3.37.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.36.0': + full_name: 'FileZilla Client 3.36.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.2': + full_name: 'FileZilla Client 3.35.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.1': + full_name: 'FileZilla Client 3.35.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.0': + full_name: 'FileZilla Client 3.35.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.34.0': + full_name: 'FileZilla Client 3.34.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.33.0': + full_name: 'FileZilla Client 3.33.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.32.0': + full_name: 'FileZilla Client 3.32.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.31.0': + full_name: 'FileZilla Client 3.31.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.30.0': + full_name: 'FileZilla Client 3.30.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.29.0': + full_name: 'FileZilla Client 3.29.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.28.0': + full_name: 'FileZilla Client 3.28.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.1': + full_name: 'FileZilla Client 3.27.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0.1': + full_name: 'FileZilla Client 3.27.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0': + full_name: 'FileZilla Client 3.27.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.2': + full_name: 'FileZilla Client 3.26.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.1': + full_name: 'FileZilla Client 3.26.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.0': + full_name: 'FileZilla Client 3.26.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.2': + full_name: 'FileZilla Client 3.25.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.1': + full_name: 'FileZilla Client 3.25.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.0': + full_name: 'FileZilla Client 3.25.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.1': + full_name: 'FileZilla Client 3.24.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.0': + full_name: 'FileZilla Client 3.24.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.2': + full_name: 'FileZilla Client 3.23.0.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.1': + full_name: 'FileZilla Client 3.23.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0': + full_name: 'FileZilla Client 3.23.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.2': + full_name: 'FileZilla Client 3.22.2.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.1': + full_name: 'FileZilla Client 3.22.2.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2': + full_name: 'FileZilla Client 3.22.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.1': + full_name: 'FileZilla Client 3.22.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.0': + full_name: 'FileZilla Client 3.22.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.21.0': + full_name: 'FileZilla Client 3.21.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.1': + full_name: 'FileZilla Client 3.20.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.0': + full_name: 'FileZilla Client 3.20.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.19.0': + full_name: 'FileZilla Client 3.19.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.18.0': + full_name: 'FileZilla Client 3.18.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0.1': + full_name: 'FileZilla Client 3.17.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0': + full_name: 'FileZilla Client 3.17.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.1': + full_name: 'FileZilla Client 3.16.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.0': + full_name: 'FileZilla Client 3.16.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,479 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.015076160430908203 +2020-03-06 10:35:52,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,494 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:35:52,494 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,510 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +firefox-esr_x64: + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,525 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:35:52,525 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,542 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,542 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +firefox-esr_x86: + + + + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.8.0': + full_name: 'Mozilla Firefox 38.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.1': + full_name: 'Mozilla Firefox 38.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.0': + full_name: 'Mozilla Firefox 38.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.1': + full_name: 'Mozilla Firefox 38.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Firefox 38.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.2': + full_name: 'Mozilla Firefox 38.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.1': + full_name: 'Mozilla Firefox 38.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Firefox 38.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Firefox 38.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Firefox 38.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.1': + full_name: 'Mozilla Firefox 38.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,542 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,557 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015069723129272461 +2020-03-06 10:35:52,557 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,557 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,557 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:35:52,557 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.015655994415283203 +2020-03-06 10:35:52,572 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +firefox_x64: + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.01607489585876465 +2020-03-06 10:35:52,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,588 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:35:52,603 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,620 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.0161893367767334 +2020-03-06 10:35:52,620 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +firefox_x86: + + + + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.2': + full_name: 'Mozilla Firefox 41.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.1': + full_name: 'Mozilla Firefox 41.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0': + full_name: 'Mozilla Firefox 41.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.3': + full_name: 'Mozilla Firefox 40.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.2': + full_name: 'Mozilla Firefox 40.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0': + full_name: 'Mozilla Firefox 40.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0.3': + full_name: 'Mozilla Firefox 39.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0': + full_name: 'Mozilla Firefox 39.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.6': + full_name: 'Mozilla Firefox 38.0.6 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.5': + full_name: 'Mozilla Firefox 38.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.1': + full_name: 'Mozilla Firefox 38.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0': + full_name: 'Mozilla Firefox 38.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.2': + full_name: 'Mozilla Firefox 37.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.1': + full_name: 'Mozilla Firefox 37.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0': + full_name: 'Mozilla Firefox 37.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.4': + full_name: 'Mozilla Firefox 36.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.3': + full_name: 'Mozilla Firefox 36.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.1': + full_name: 'Mozilla Firefox 36.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0': + full_name: 'Mozilla Firefox 36.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0.1': + full_name: 'Mozilla Firefox 35.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0': + full_name: 'Mozilla Firefox 35.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0.5': + full_name: 'Mozilla Firefox 34.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0': + full_name: 'Mozilla Firefox 34.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1.1': + full_name: 'Mozilla Firefox 33.1.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1': + full_name: 'Mozilla Firefox 33.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.3': + full_name: 'Mozilla Firefox 33.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.2': + full_name: 'Mozilla Firefox 33.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.1': + full_name: 'Mozilla Firefox 33.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0': + full_name: 'Mozilla Firefox 33.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.3': + full_name: 'Mozilla Firefox 32.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.2': + full_name: 'Mozilla Firefox 32.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.1': + full_name: 'Mozilla Firefox 32.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0': + full_name: 'Mozilla Firefox 32.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '31.0': + full_name: 'Mozilla Firefox 31.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '30.0': + full_name: 'Mozilla Firefox 30.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '29.0.1': + full_name: 'Mozilla Firefox 29.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.015134334564208984 +2020-03-06 10:35:52,650 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,650 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,650 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:35:52,650 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,650 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,666 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +# just 32-bit x86 installer available + + + + +gedit: + '2.30.1': + full_name: gedit 2.30.1 + installer: https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\gedit\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,666 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,666 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:35:52,666 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,666 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,681 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +# just 32-bit x86 installer available +# Gimp installs into %ProgramFiles on either cpu arch +gimp: + + '2.10.4': + full_name: 'GIMP 2.10.4' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.22': + full_name: 'GIMP 2.8.22' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.16': + full_name: 'GIMP 2.8.16' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.14': + full_name: 'GIMP 2.8.14' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + +2020-03-06 10:35:52,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) +2020-03-06 10:35:52,681 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,681 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,681 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,681 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:35:52,681 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,681 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,681 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +git-extensions: + '2.48.05': + full_name: 'Git Extensions 2.48.05' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.48.03': + full_name: 'Git Extensions 2.48.03' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,681 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,698 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,698 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,698 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:35:52,698 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,715 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.017104148864746094 +2020-03-06 10:35:52,715 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git + + + + + + + +git: + + + + + + + + + + '2.23.0.windows.1': + full_name: Git version 2.23.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.22.0.windows.1': + full_name: Git version 2.22.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.21.0': + full_name: Git version 2.21.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.1': + full_name: Git version 2.20.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.0': + full_name: Git version 2.20.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.2': + full_name: Git version 2.19.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.1': + full_name: Git version 2.19.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.0': + full_name: Git version 2.19.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.18.0': + full_name: Git version 2.18.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.1.2': + full_name: Git version 2.17.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.0': + full_name: Git version 2.17.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.3': + full_name: Git version 2.16.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.2': + full_name: Git version 2.16.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.0.2': + full_name: Git version 2.16.0.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.15.0': + full_name: Git version 2.15.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.14.2': + full_name: Git version 2.14.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.3': + full_name: Git version 2.13.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.1.2': + full_name: Git version 2.13.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.2': + full_name: Git version 2.12.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.1': + full_name: Git version 2.12.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0.3': + full_name: Git version 2.11.0.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0': + full_name: Git version 2.11.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.2': + full_name: Git version 2.10.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.1': + full_name: Git version 2.10.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.0': + full_name: Git version 2.10.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.9.0': + full_name: Git version 2.9.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.4': + full_name: Git version 2.8.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.3': + full_name: Git version 2.8.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.2': + full_name: Git version 2.8.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.1': + full_name: Git version 2.8.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.2': + full_name: Git version 2.7.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.1': + full_name: Git version 2.7.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.0': + full_name: Git version 2.7.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.4': + full_name: Git version 2.6.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.2': + full_name: Git version 2.6.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.3': + full_name: Git version 2.5.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.2.2': + full_name: Git version 2.5.2.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.0': + full_name: Git version 2.5.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + +msysgit: + '1.9.5-preview20150319': + full_name: 'Git version 1.9.5-preview20150319' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART ' + msiexec: False + locale: en_US + reboot: False + '1.9.5-preview20141217': + full_name: 'Git version 1.9.5-preview20141217' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + '1.9.4-preview20140815': + full_name: 'Git version 1.9.4-preview20140815' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe' + install_flags: '/VERYSILENT /NOREBOOT' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NOREBOOT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,715 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,715 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,728 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:35:52,728 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +# just 32-bit x86 installer available + + + +glarysoft-absolute-uninstaller: + '5.3.1.23': + full_name: 'Absolute Uninstaller 5.3.1.23' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '5.3.1.21': + full_name: 'Absolute Uninstaller 5.3.1.21' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,744 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:35:52,744 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +# just 32-bit x86 installer available + + + +gnucash: + '2.6.5': + full_name: 'GnuCash 2.6.5' + installer: 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe' + install_flags: '/SILENT' + uninstaller: '%ProgramFiles(x86)%\gnucash\uninstall\gnucash\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,760 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.015972137451171875 +2020-03-06 10:35:52,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,760 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:35:52,760 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,775 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015479803085327148 +2020-03-06 10:35:52,775 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +# "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. +# See https://golang.org/ + + + + + +# Hint: the versionWithTrailingZero is required, because golang sets the version field in Windows to e.g. 1.14.0 or 1.13.0 if 1.14 or 1.13 is installed. +# If we dont do that the version can not be removed anymore via saltstack. + +golang: + + + '1.2.2': + + full_name: 'Go Programming Language amd64 go1.2.2' + installer: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.0': + + full_name: 'Go Programming Language amd64 go1.3' + installer: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.1': + + full_name: 'Go Programming Language amd64 go1.3.1' + installer: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.2': + + full_name: 'Go Programming Language amd64 go1.3.2' + installer: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.3': + + full_name: 'Go Programming Language amd64 go1.3.3' + installer: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.0': + + full_name: 'Go Programming Language amd64 go1.4' + installer: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.1': + + full_name: 'Go Programming Language amd64 go1.4.1' + installer: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.2': + + full_name: 'Go Programming Language amd64 go1.4.2' + installer: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.3': + + full_name: 'Go Programming Language amd64 go1.4.3' + installer: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.0': + + full_name: 'Go Programming Language amd64 go1.5' + installer: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.1': + + full_name: 'Go Programming Language amd64 go1.5.1' + installer: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.2': + + full_name: 'Go Programming Language amd64 go1.5.2' + installer: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.3': + + full_name: 'Go Programming Language amd64 go1.5.3' + installer: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.4': + + full_name: 'Go Programming Language amd64 go1.5.4' + installer: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.0': + + full_name: 'Go Programming Language amd64 go1.6' + installer: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.1': + + full_name: 'Go Programming Language amd64 go1.6.1' + installer: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.2': + + full_name: 'Go Programming Language amd64 go1.6.2' + installer: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.3': + + full_name: 'Go Programming Language amd64 go1.6.3' + installer: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.4': + + full_name: 'Go Programming Language amd64 go1.6.4' + installer: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.0': + + full_name: 'Go Programming Language amd64 go1.7' + installer: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.1': + + full_name: 'Go Programming Language amd64 go1.7.1' + installer: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.2': + + full_name: 'Go Programming Language amd64 go1.7.2' + installer: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.3': + + full_name: 'Go Programming Language amd64 go1.7.3' + installer: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.4': + + full_name: 'Go Programming Language amd64 go1.7.4' + installer: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.5': + + full_name: 'Go Programming Language amd64 go1.7.5' + installer: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.6': + + full_name: 'Go Programming Language amd64 go1.7.6' + installer: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.0': + + full_name: 'Go Programming Language amd64 go1.8' + installer: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.1': + + full_name: 'Go Programming Language amd64 go1.8.1' + installer: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.2': + + full_name: 'Go Programming Language amd64 go1.8.2' + installer: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.3': + + full_name: 'Go Programming Language amd64 go1.8.3' + installer: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.4': + + full_name: 'Go Programming Language amd64 go1.8.4' + installer: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.5': + + full_name: 'Go Programming Language amd64 go1.8.5' + installer: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.6': + + full_name: 'Go Programming Language amd64 go1.8.6' + installer: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.7': + + full_name: 'Go Programming Language amd64 go1.8.7' + installer: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.0': + + full_name: 'Go Programming Language amd64 go1.9' + installer: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.1': + + full_name: 'Go Programming Language amd64 go1.9.1' + installer: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.2': + + full_name: 'Go Programming Language amd64 go1.9.2' + installer: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.3': + + full_name: 'Go Programming Language amd64 go1.9.3' + installer: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.4': + + full_name: 'Go Programming Language amd64 go1.9.4' + installer: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + + full_name: 'Go Programming Language amd64 go1.9.5' + installer: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.6': + + full_name: 'Go Programming Language amd64 go1.9.6' + installer: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.7': + + full_name: 'Go Programming Language amd64 go1.9.7' + installer: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.0': + + full_name: 'Go Programming Language amd64 go1.10' + installer: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.1': + + full_name: 'Go Programming Language amd64 go1.10.1' + installer: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.2': + + full_name: 'Go Programming Language amd64 go1.10.2' + installer: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.3': + + full_name: 'Go Programming Language amd64 go1.10.3' + installer: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.4': + + full_name: 'Go Programming Language amd64 go1.10.4' + installer: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.5': + + full_name: 'Go Programming Language amd64 go1.10.5' + installer: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.6': + + full_name: 'Go Programming Language amd64 go1.10.6' + installer: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.7': + + full_name: 'Go Programming Language amd64 go1.10.7' + installer: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.8': + + full_name: 'Go Programming Language amd64 go1.10.8' + installer: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.0': + + full_name: 'Go Programming Language amd64 go1.11' + installer: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.1': + + full_name: 'Go Programming Language amd64 go1.11.1' + installer: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.2': + + full_name: 'Go Programming Language amd64 go1.11.2' + installer: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.3': + + full_name: 'Go Programming Language amd64 go1.11.3' + installer: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.4': + + full_name: 'Go Programming Language amd64 go1.11.4' + installer: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.5': + + full_name: 'Go Programming Language amd64 go1.11.5' + installer: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.6': + + full_name: 'Go Programming Language amd64 go1.11.6' + installer: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.7': + + full_name: 'Go Programming Language amd64 go1.11.7' + installer: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.8': + + full_name: 'Go Programming Language amd64 go1.11.8' + installer: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.9': + + full_name: 'Go Programming Language amd64 go1.11.9' + installer: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.10': + + full_name: 'Go Programming Language amd64 go1.11.10' + installer: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.11': + + full_name: 'Go Programming Language amd64 go1.11.11' + installer: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.12': + + full_name: 'Go Programming Language amd64 go1.11.12' + installer: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.13': + + full_name: 'Go Programming Language amd64 go1.11.13' + installer: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.0': + + full_name: 'Go Programming Language amd64 go1.12' + installer: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.1': + + full_name: 'Go Programming Language amd64 go1.12.1' + installer: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.2': + + full_name: 'Go Programming Language amd64 go1.12.2' + installer: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.3': + + full_name: 'Go Programming Language amd64 go1.12.3' + installer: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.4': + + full_name: 'Go Programming Language amd64 go1.12.4' + installer: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.5': + + full_name: 'Go Programming Language amd64 go1.12.5' + installer: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.6': + + full_name: 'Go Programming Language amd64 go1.12.6' + installer: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.7': + + full_name: 'Go Programming Language amd64 go1.12.7' + installer: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.8': + + full_name: 'Go Programming Language amd64 go1.12.8' + installer: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.9': + + full_name: 'Go Programming Language amd64 go1.12.9' + installer: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.10': + + full_name: 'Go Programming Language amd64 go1.12.10' + installer: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.11': + + full_name: 'Go Programming Language amd64 go1.12.11' + installer: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.12': + + full_name: 'Go Programming Language amd64 go1.12.12' + installer: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.13': + + full_name: 'Go Programming Language amd64 go1.12.13' + installer: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.14': + + full_name: 'Go Programming Language amd64 go1.12.14' + installer: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.15': + + full_name: 'Go Programming Language amd64 go1.12.15' + installer: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.16': + + full_name: 'Go Programming Language amd64 go1.12.16' + installer: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.17': + + full_name: 'Go Programming Language amd64 go1.12.17' + installer: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.0': + + full_name: 'Go Programming Language amd64 go1.13' + installer: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.1': + + full_name: 'Go Programming Language amd64 go1.13.1' + installer: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.2': + + full_name: 'Go Programming Language amd64 go1.13.2' + installer: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.3': + + full_name: 'Go Programming Language amd64 go1.13.3' + installer: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.4': + + full_name: 'Go Programming Language amd64 go1.13.4' + installer: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.5': + + full_name: 'Go Programming Language amd64 go1.13.5' + installer: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.6': + + full_name: 'Go Programming Language amd64 go1.13.6' + installer: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.7': + + full_name: 'Go Programming Language amd64 go1.13.7' + installer: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.8': + + full_name: 'Go Programming Language amd64 go1.13.8' + installer: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.14.0': + + full_name: 'Go Programming Language amd64 go1.14' + installer: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:52,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,791 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.015591144561767578 +2020-03-06 10:35:52,791 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,806 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,806 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:35:52,806 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,806 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,806 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +goodsync: + '9.9.46.6': + full_name: 'GoodSync' + installer: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,806 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,806 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,806 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,822 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:35:52,822 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,822 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,822 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +# just 32-bit x86 installer available + + + +gow: + 'Not Found': + full_name: 'Gow' + installer: 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Gow\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + # Gow - GNU on Windows - The lightweight alternative to Cygwin + # https://github.com/bmatzelle/gow/wiki + +2020-03-06 10:35:52,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,822 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,822 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,822 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,822 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:35:52,822 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.01604461669921875 +2020-03-06 10:35:52,838 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +# just 32-bit x86 installer available + + + +gpg4win-light: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream +# Here are work around instructions under Issue #113 in the meantime +# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 +# + +2020-03-06 10:35:52,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,838 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:35:52,838 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,855 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.01665186882019043 +2020-03-06 10:35:52,855 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +# just 32-bit x86 installer available + + + +gpg4win-vanilla: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,855 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,855 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,855 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,855 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,855 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:35:52,872 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,872 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,872 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: + + +graylog-collector-sidecar: + + '0.1.6': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.5': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.4': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.3': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.2': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.1': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.0': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:52,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,872 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,872 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,886 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,886 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:35:52,886 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,886 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,886 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +grepwin: + '1.6.682': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.673': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.661': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.646': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,903 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,903 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,903 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,903 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,903 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:35:52,903 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,917 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,917 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +# just 32-bit x86 installer available + + + +gvim: + 'Not Found': + full_name: 'Vim 8.0.3' + installer: 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Vim\vim80\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,917 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,917 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,917 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,917 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,917 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:35:52,917 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,934 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.01709294319152832 +2020-03-06 10:35:52,934 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +# Source: https://handbrake.fr +handbrake: + '0.10.5': + full_name: 'Handbrake 0.10.5' + + installer: 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Handbrake\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,934 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,934 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,934 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,934 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:35:52,934 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,951 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.01756882667541504 +2020-03-06 10:35:52,951 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +hipchat: + + + + '4.0.1650': + installer: 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe' + full_name: 'HipChat' + install_flags: '/sp /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Atlassian\Hipchat4\unins000.exe' + uninstall_flags: '/sp /verysilent' + msiexec: False + reboot: False + +2020-03-06 10:35:52,951 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:35:52,951 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,951 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,951 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,951 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:35:52,965 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,965 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,965 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +hostsfileeditor: + '1.2.0': + + full_name: 'Hosts File Editor' + installer: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + uninstaller: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,965 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,965 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,965 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,965 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:35:52,980 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,980 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,980 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: + +hwinfo: + '5.70': + + full_name: 'HWiNFO64 Version 5.70' + installer: 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe' + uninstaller: '%PROGRAMFILES%\HWiNFO64\unins000.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:52,980 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,980 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,980 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,996 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,996 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:35:52,996 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:52,996 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:52,996 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +ice: + '3.6.1.2': + full_name: 'Ice 3.6.1.2' + installer: 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi' + uninstaller: '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:52,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:52,996 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:52,996 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:52,996 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:52,996 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:35:53,011 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,011 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,011 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +# just 32-bit x86 installer available + + + +icecast: + '2.4.2': + full_name: 'Icecast' + installer: 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Icecast\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,011 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,011 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,011 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,011 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,011 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:35:53,011 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,011 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,011 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +icloud: + '7.3.0.20': + full_name: iCloud + installer: 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,027 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,027 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,027 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,027 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,027 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:35:53,042 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,042 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,042 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +iismediaservices: + '4.1.0938.454': + full_name: 'IIS Media Services 4.1' + + installer: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '4.0.0938.54': + full_name: 'IIS Media Services 4.0' + + installer: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '2.0.1': + full_name: 'IIS Media Services 2.0' + + installer: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,042 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,042 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,042 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,042 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,042 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:35:53,042 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,058 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.016293048858642578 +2020-03-06 10:35:53,058 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +influx-capacitor: + '1.0.89': + full_name: 'Influx Capacitor' + installer: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + install_flags: '/q' + uninstaller: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + uninstall_flags: '/q' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,058 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,058 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,058 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,058 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,058 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:35:53,058 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,058 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,058 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +inkscape: + '0.91': + full_name: 'Inkscape 0.91' + + installer: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + uninstaller: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0007641315460205078 +2020-03-06 10:35:53,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,072 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:35:53,072 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,072 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +# just 32-bit x86 installer available + + + +intellij-community: + + '14.1.4': + full_name: 'IntelliJ IDEAS Community Edition 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:53,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,088 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,088 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,088 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:35:53,088 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,088 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,103 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +# just 32-bit x86 installer available + + + +intellij-ultimate: + + '14.1.4': + full_name: 'IntelliJ IDEAS Ultimate 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:53,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,103 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:35:53,103 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,103 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +internet-evidence-finder: + '6.2.3.0001': + full_name: 'Internet Evidence Finder' + installer: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,119 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,119 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,119 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,140 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:35:53,140 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,140 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,140 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +irfanview-plugins: + '4.42': + + full_name: 'Irfanview Plugins 4.40' + installer: 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe' + # download manually from: http://www.irfanview.info/files/irfanview_plugins_x64_442_setup.exe and place on master + + install_flags: '/silent' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,140 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,151 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:35:53,151 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,151 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,151 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +irfanview: + '4.51': + + full_name: 'IrfanView 64 (remove only)' + installer: 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe' + # download manually from: http://www.irfanview.info/files/iview451_x64_setup.exe and place on master + + install_flags: '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0' + uninstaller: '%ProgramFiles%\irfanview\iv_uninstall.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False +# install_flags +# folder: destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used +# silent: silent install - no prompts +# desktop: create desktop shortcut; 0 = no, 1 = yes (default: 0) +# thumbs: create desktop shortcut for thumbnails; 0 = no, 1 = yes (default: 0) +# group: create group in Start Menu; 0 = no, 1 = yes (default: 0) +# allusers: desktop/group links are for all users; 0 = current user, 1 = all users +# assoc: if used, set file associations; 0 = none, 1 = images only, 2 = select all (default: 0) +# assocallusers: if used, set associations for all users (Windows XP only) +# ini: if used, set custom INI file folder (system environment variables are allowed) + +2020-03-06 10:35:53,151 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,151 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,167 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:35:53,167 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,167 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,167 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +isapirewrite-lite: + '3.1.0112': + full_name: 'Helicon ISAPI_Rewrite 3 Lite' + + installer: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + uninstaller: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,167 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,167 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,167 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,167 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,167 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:35:53,184 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,184 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,197 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +itunes: + '12.8.0.150': + full_name: 'iTunes' + + installer: 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe' + uninstall_flags: | + '/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} & + msiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} & + msiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} & + msiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} & + msiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} & + msiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} & + exit 0' + # the above uninstalls: + # Bonjour64 v. 3.1.0.1 {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} + # Apple Software Update v. 2.6.0.1 {A30EA700-5515-48F0-88B0-9E99DC356B88} + # Apple Mobile Device Support (64-bit) v. 11.4.1.46 {C29B636B-9015-4ED1-A12F-6375A337F23B} + # Apple Application Support (32-bit) v. 6.6 {C56BA005-F02C-461B-ACA5-A0CE3E32578F} + # Apple Application Support (64-bit) v. 6.6 {D745E014-74DD-43A3-98DF-E7D38164B681} + # iTunes v. 12.8.0.150 {36F365B3-05C2-455D-9D96-B73829DE046D} + + install_flags: '/quiet /qn ALLUSERS=1 /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,197 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,197 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:35:53,197 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,213 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.016033172607421875 +2020-03-06 10:35:53,213 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way +# to find manual download links for any version use: +# http://www.java.com/en/download/manual.jsp +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + +jdk8: + '8.0.1440.1': + + full_name: 'Java SE Development Kit 8 Update 144 (64-bit)' + installer: salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe + + install_flags: '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"' + uninstall_flags: '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,213 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,213 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,213 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,213 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:35:53,213 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,213 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,228 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +jre: + '7.0.790': + + full_name: 'Java 7 Update 79 (64-bit)' + installer: 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/s REBOOT=Suppress SPONSORS=0' + msiexec: False + locale: en_US + reboot: False + # due to winrepo installer limitations you need to manually download the exe from + # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 + # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way + +2020-03-06 10:35:53,228 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,228 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,228 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,228 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,228 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:35:53,228 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,249 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.021111249923706055 +2020-03-06 10:35:53,249 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://www.java.com/en/download/manual.jsp +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + + + +jre8: + + + + '8.0.2010.9': + + full_name: 'Java 8 Update 201 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2110.9': + + full_name: 'Java 8 Update 211 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2210.9': + + full_name: 'Java 8 Update 221 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2310.9': + + full_name: 'Java 8 Update 231 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2410.7': + + full_name: 'Java 8 Update 241 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:53,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,260 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,260 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:35:53,260 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,260 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,260 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +jungledisk-server-management: + '3.23.0.2': + full_name: 'Jungle Disk Server Management' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-management64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,260 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,276 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:35:53,276 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,276 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,276 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +jungledisk-server: + '3.23.0.2': + full_name: 'Jungle Disk Server' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,276 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,276 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,291 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:35:53,291 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,291 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,291 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +jungledisk-workgroup: + '3.23.0.2': + full_name: 'Jungle Disk Workgroup' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,291 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,291 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:35:53,291 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0160977840423584 +2020-03-06 10:35:53,307 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +kdiff3: + 'Not Found': + full_name: 'KDiff3 (remove only)' + + installer: 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe' + + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\KDiff3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,307 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,307 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:35:53,307 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.015477180480957031 +2020-03-06 10:35:53,322 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +# Keepass 2.x installation from https://keepass.info/ +# to keep the versioning in the format of "2..minor", two seperate version arrays are created. + + + +# Hint: Version 2.24 is the first version that provides a msi-package, all versions before had a -Setup.exe + + +keepass-2x: + + + '2.24.0': + full_name: 'KeePass 2.24' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.25.0': + full_name: 'KeePass 2.25' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.26.0': + full_name: 'KeePass 2.26' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.27.0': + full_name: 'KeePass 2.27' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.28.0': + full_name: 'KeePass 2.28' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.29.0': + full_name: 'KeePass 2.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.30.0': + full_name: 'KeePass 2.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.31.0': + full_name: 'KeePass 2.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.32.0': + full_name: 'KeePass 2.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.33.0': + full_name: 'KeePass 2.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.34.0': + full_name: 'KeePass 2.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.35.0': + full_name: 'KeePass 2.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.36.0': + full_name: 'KeePass 2.36' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.37.0': + full_name: 'KeePass 2.37' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.38.0': + full_name: 'KeePass 2.38' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.0': + full_name: 'KeePass 2.39' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.40.0': + full_name: 'KeePass 2.40' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.41.0': + full_name: 'KeePass 2.41' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.0': + full_name: 'KeePass 2.42' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.43.0': + full_name: 'KeePass 2.43' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.44.0': + full_name: 'KeePass 2.44' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.1': + full_name: 'KeePass 2.39.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.1': + full_name: 'KeePass 2.42.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,338 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:35:53,338 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,338 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +keepass: + '1.35.0': + full_name: 'KeePass 1.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.34.0': + full_name: 'KeePass 1.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.33.0': + full_name: 'KeePass 1.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.32.0': + full_name: 'KeePass 1.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.31.0': + full_name: 'KeePass 1.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.30.0': + full_name: 'KeePass 1.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.29.0': + full_name: 'KeePass 1.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,338 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:35:53,353 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,353 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +# just 32-bit x86 installer available + + + +lastpass: + 'Not Found': + full_name: 'LastPass (uninstall only)' + + installer: 'https://lastpass.eu/sync/lastpass_x64.exe' + + install_flags: '-si --userinstallie --userinstallff --userinstallchrome' + uninstaller: '%PROGRAMFILES(x86)%\LastPass\lastpass.exe' + uninstall_flags: '-sb' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,353 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:35:53,353 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.015964984893798828 +2020-03-06 10:35:53,369 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +# NOTE: If the lazarus installation directory exists the installation will +# pop up a dialog box. This will cause the minion to hang because it +# is waiting for the user to click continue on a dialog box that will +# never be seen. So, before running this, make sure the lazarus +# installation directory is not present. +# If doing an upgrade that means you'll have to do something like the +# following: +# pkg.remove lazarus +# file.remove c:\lazarus +# pkg.install lazarus + + +lazarus: + + '1.8.0': + full_name: Lazarus 1.8.0 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + '1.6.4': + full_name: Lazarus 1.6.4 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + +2020-03-06 10:35:53,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) +2020-03-06 10:35:53,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,369 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:35:53,385 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,385 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +libreoffice: + + '5.3.5.2': + full_name: 'LibreOffice 5.3.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.3.6.1': + full_name: 'LibreOffice 5.3.6.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.6.2': + full_name: 'LibreOffice 5.4.6.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.7.2': + full_name: 'LibreOffice 5.4.7.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.0.5.2': + full_name: 'LibreOffice 6.0.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.2.7.1': + full_name: 'LibreOffice 6.2.7.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:53,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,400 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:35:53,400 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,400 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,400 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +logparser: + '2.2.10': + full_name: 'Log Parser 2.2' + installer: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,400 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,400 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:35:53,400 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.01618337631225586 +2020-03-06 10:35:53,416 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +# just 32-bit x86 installer available + + + +maas360bootanalyzer: + '1.0.0': + full_name: 'MaaS360 Boot Analyzer v 1.0.0' + installer: 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe' + + install_flags: | + '/S & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v UninstallString /d "C:\Program Files (x86)\BootAnalyzer\Uninstall.exe" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" & + exit 0' + + uninstaller: '%PROGRAMFILES(x86)%\MaaS360\BootAnalyzer\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory + +2020-03-06 10:35:53,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,416 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:35:53,416 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,432 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.015588521957397461 +2020-03-06 10:35:53,432 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.malwarebytes.org +malwarebytes: + '3.5.1.2522': + full_name: 'Malwarebytes Anti-Malware version 2.0.4.1028' + installer: 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Malwarebytes Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: Falsea + +2020-03-06 10:35:53,432 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) +2020-03-06 10:35:53,432 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,432 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:35:53,432 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,478 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.04673171043395996 +2020-03-06 10:35:53,478 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +#MariaDB https://downloads.mariadb.org/mariadb/+releases/ +#only stable versions are listed + + + + + + + + +mariadb: + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.1.38.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.37.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.36.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.35.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.34.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.33.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.32.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.31.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.30.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.29.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.28.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.27.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.26.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.25.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.24.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.23.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.22.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.21.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.19.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.18.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.17.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.16.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.14.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.13.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.12.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.11.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.10.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.9.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.8.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '5.5.63.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.62.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.61.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.60.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.59.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.58.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.57.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.56.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.55.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.54.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.53.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.52.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.51.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.50.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.49.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.48.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.47.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.0.38.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.37.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.36.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.35.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.34.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.33.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.32.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.29.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.28.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.27.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.26.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.25.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.23.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.19.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.18.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.17.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.16.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.2.22.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.21.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.20.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.19.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.18.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.16.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.15.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.14.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.13.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.12.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.11.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.10.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.9.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.8.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.6.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:35:53,495 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:35:53,495 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.016671180725097656 +2020-03-06 10:35:53,495 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,495 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,495 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:35:53,510 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,510 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +mercurial: + '3.1.1': + + full_name: 'Mercurial 3.1.1 (x64)' + installer: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + uninstaller: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,525 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:35:53,525 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,525 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,525 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +messageanalyzer: + '4.0.7551.0': + full_name: 'Microsoft Message Analyzer' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi' + + install_flags: '/quiet /norestart' + uninstaller: '{1CC02C23-8FCD-487E-860C-311EC0A0C933}' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,525 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,541 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,541 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,541 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:35:53,557 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,557 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,557 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +microsoft-build-tools: + '14.0.23107': + + full_name: 'Microsoft Build Tools 14.0 (amd64)' + uninstall_flags: '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart' + + installer: 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe' + install_flags: '/Q /NoRestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,557 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,557 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,557 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,557 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,557 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:35:53,573 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,573 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,573 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +mikogo: + '5.3.0': + full_name: 'Mikogo' + installer: 'https://download.mikogo4.com/mikogo-starter.exe' + install_flags: '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0' + uninstaller: '%AppData%\Mikogo\remover.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,573 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,573 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,573 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,573 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,573 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:35:53,588 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,588 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +miktex-basic: + '2.9': + full_name: 'MiKTeX 2.9' + + installer: 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe' + + install_flags: '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\MiKTeX 2.9\"' + uninstaller: 'cmd' + uninstall_flags: | + '/c del /Q /F /S "%ProgramFiles%\MiKTeX 2.9\" & + reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MiKTeX 2.9" /f & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,588 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:35:53,605 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,605 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,605 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +mongodb: + '3.3.5': + full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6': + full_name: 'MongoDB 3.2.6 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,605 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,605 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,605 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,605 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,605 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:35:53,619 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,619 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +ms-mbsa: + '2.3.2211': + + installer: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + uninstaller: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + + full_name: 'Microsoft Baseline Security Analyzer 2.3' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,619 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:35:53,635 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,635 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +ms-vcpp-2005-atl-redist_x64: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,635 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:35:53,651 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,651 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,651 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +ms-vcpp-2005-atl-redist_x86: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,651 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,651 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,651 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,651 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,651 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:35:53,651 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,651 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,651 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +ms-vcpp-2005-redist_x64: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,667 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,667 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,667 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,667 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,667 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:35:53,667 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,667 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,667 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +ms-vcpp-2005-redist_x86: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,667 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,667 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,667 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,683 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,683 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:35:53,683 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,683 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,683 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +ms-vcpp-2005-sp1-mfc-redist_x64: + '8.0.61000': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,683 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,683 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,683 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,699 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,699 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:35:53,699 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,699 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,699 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +ms-vcpp-2005-sp1-mfc-redist_x86: + '8.0.61001': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,699 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,699 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,699 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,699 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,699 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:35:53,713 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,713 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +ms-vcpp-2005-sp1-redist_x64: + '8.0.59192': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,713 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:35:53,713 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,713 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +ms-vcpp-2005-sp1-redist_x86: + '8.0.59193': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,729 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:35:53,729 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,729 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,729 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +ms-vcpp-2008-redist_x64: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' + installer: 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,729 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.015392541885375977 +2020-03-06 10:35:53,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,744 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:35:53,744 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +ms-vcpp-2008-redist_x86: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' + installer: 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,760 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:35:53,760 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,760 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,760 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +ms-vcpp-2008-sp1-atl-redist_x64: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,760 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,760 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,760 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:35:53,776 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,776 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,776 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +ms-vcpp-2008-sp1-atl-redist_x86: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,776 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,776 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,776 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,776 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,776 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:35:53,776 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,791 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.015438318252563477 +2020-03-06 10:35:53,791 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +ms-vcpp-2008-sp1-mfc-redist_x64: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,791 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,791 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,791 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,791 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:35:53,791 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,791 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,791 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +ms-vcpp-2008-sp1-mfc-redist_x86: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,807 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0008215904235839844 +2020-03-06 10:35:53,807 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,807 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,807 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:35:53,807 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,807 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,807 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +ms-vcpp-2010-sp1-mfc-redist_x64: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,807 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,807 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,823 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,823 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,823 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:35:53,823 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,823 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,823 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +ms-vcpp-2010-sp1-mfc-redist_x86: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,823 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,823 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,823 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,823 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,837 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:35:53,838 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,838 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +ms-vcpp-2012-redist_x64: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ProgramData%\Package Cache\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\vcredist_x64.exe' + uninstall_flags: '/quiet /uninstall /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,838 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:35:53,854 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,854 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +ms-vcpp-2012-redist_x86: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: '"%ProgramData%\Package Cache\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\vcredist_x86.exe"' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,854 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:35:53,854 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,869 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.014810562133789062 +2020-03-06 10:35:53,869 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +ms-vcpp-2013-redist_x64: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,869 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,869 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,869 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,869 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:35:53,869 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,869 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,869 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +ms-vcpp-2013-redist_x86: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,869 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,885 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:35:53,885 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,885 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +ms-vcpp-2015-build-tools: + '14.0.25420.1': + full_name: 'Microsoft Visual C++ Build Tools' + installer: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + install_flags: '/Q /Silent /NoRestart' + uninstaller: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + uninstall_flags: '/Q /U /Silent /NoRestart' + locale: en_US + reboot: False + +2020-03-06 10:35:53,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,885 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:35:53,900 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,900 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0006468296051025391 +2020-03-06 10:35:53,900 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +ms-vcpp-2015-redist_x64: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} + # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} + +2020-03-06 10:35:53,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,900 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,900 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,900 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,900 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:35:53,900 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,918 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.017566442489624023 +2020-03-06 10:35:53,918 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +ms-vcpp-2015-redist_x86: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} + +2020-03-06 10:35:53,918 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,918 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,918 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,918 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,918 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:35:53,918 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,918 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,932 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +ms-vcpp-2017-redist_x64: + '14.20.27508.1': + full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + '14.20.27508': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,932 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,932 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,932 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:35:53,932 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,932 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,932 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +ms-vcpp-2017-redist_x86: + '14.11.25325.0': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' + installer: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:53,932 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,932 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,948 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,948 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,948 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:35:53,948 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,948 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,948 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: + + + + +mucommander: + + '0.9.2': + full_name: 'muCommander (remove only)' + installer: 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe' + uninstaller: '%PROGRAMFILES(x86)%\muCommander\uninstaller.exe' + install_flags: '/S' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:35:53,948 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,948 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,948 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,964 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,964 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:35:53,964 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,964 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,964 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +mysql-essential: + '5.1.73': + full_name: 'MySQL Server 5.1' + + installer: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:53,964 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,964 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,964 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,964 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,964 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:35:53,980 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,980 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,980 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +mysql-installer-community: + '1.4.3.0': + full_name: 'MySQL Installer - Community' + installer: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Read for MySQL Server 5.6.23.0 Community installation instructions: +# https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html +# https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html + +2020-03-06 10:35:53,980 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,980 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,980 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,980 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,980 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:35:53,995 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:53,995 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:53,995 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +mysql-workbench-community: + + '8.0.15': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.14': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.13': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + +2020-03-06 10:35:53,995 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:53,995 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:53,995 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:53,995 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:53,995 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:35:54,012 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,012 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,012 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +never10: + '1.3': + full_name: 'Never 10 (GRC)' + installer: 'https://www.grc.com/files/never10.exe' + install_flags: 'update delete disable' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False +# download it from https://www.grc.com/never10.htm + +2020-03-06 10:35:54,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,012 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,012 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,012 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,012 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:35:54,012 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,027 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.015050649642944336 +2020-03-06 10:35:54,027 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +# Please note that per +# https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows +# the MSI uninstall does not remove files or settings, +# and the service must be stopped beforehand. +# +# So this uninstall is not going to work. + +newrelic-infra: + + '1.0.279': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.292': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.296': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.301': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.311': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.316': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.323': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.336': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.338': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.341': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.673': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.677': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.682': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.690': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.703': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,027 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,027 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,027 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,027 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,027 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:35:54,041 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,041 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,041 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +nextcloud-client: + + '2.2.3.4': + full_name: 'Nextcloud Client 2.2.3.4' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.2.4.2': + full_name: 'Nextcloud Client 2.2.4.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.1.8': + full_name: 'Nextcloud Client 2.3.1.8' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.2.1': + full_name: 'Nextcloud Client 2.3.2.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.3.1': + full_name: 'Nextcloud Client 2.3.3.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.0': + full_name: 'Nextcloud Client 2.5.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.1': + full_name: 'Nextcloud Client 2.5.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.2': + full_name: 'Nextcloud Client 2.5.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.3': + full_name: 'Nextcloud Client 2.5.3' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.6.0': + full_name: 'Nextcloud Client 2.6.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 10:35:54,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,041 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,041 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:35:54,041 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,057 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.016396760940551758 +2020-03-06 10:35:54,057 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: + + +# just 32-bit x86 installer available + + + +nmap: + + '7.70': + full_name: 'Nmap 7.70' + installer: 'https://nmap.org/dist/nmap-7.70-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '7.60': + full_name: 'Nmap 7.60' + installer: 'https://nmap.org/dist/nmap-7.60-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,057 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,057 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,057 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,057 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,057 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:35:54,057 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,074 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0164639949798584 +2020-03-06 10:35:54,074 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +node.js-lts: + + '12.13.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.17.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.11.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.9.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,074 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,074 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,074 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,074 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,074 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:35:54,074 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,089 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.015136957168579102 +2020-03-06 10:35:54,089 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +node.js: + + '13.1.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.6.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '11.14.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '9.11.2': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + uninstaller: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.10.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,089 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,089 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,089 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,089 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,089 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:35:54,103 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,103 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +nomacs: + + '3.8.0': + full_name: 'nomacs - Image Lounge' + installer: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,103 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:35:54,103 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,120 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.016424894332885742 +2020-03-06 10:35:54,120 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +# just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. + + + +npp: + + + '7.7.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.9': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.8': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.5': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.4.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +# the 64-bit installer is available from: +# https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe + +2020-03-06 10:35:54,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,166 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.04641580581665039 +2020-03-06 10:35:54,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,166 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:35:54,181 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,181 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,181 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +nsclient: + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2039': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2029': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1046': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1044': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.0062': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.23': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.19': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.143': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.88': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,181 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,197 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:35:54,197 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,197 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,197 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +# Define versions + + +nsis: + + + '2.51': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.50': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.49': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.48': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.47': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.46': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.03': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02.1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.01': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0b2': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0b1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:54,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,212 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.015627622604370117 +2020-03-06 10:35:54,212 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,212 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,212 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:35:54,212 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,212 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,212 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +# Install Meinberg NTP daemon for Windows +# Note: To do a silent installation, this installer needs a setup file named +# setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. +# The file is documented at +# https://www.meinberg.de/german/sw/readme-ntpinstaller.htm#unattended + + + +ntp: + + '4.2.8p13': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p12': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p11': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,228 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,229 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0009307861328125 +2020-03-06 10:35:54,229 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,229 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,229 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:35:54,229 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,244 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.01512002944946289 +2020-03-06 10:35:54,244 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: + + + +nunit-console: + + + '3.9.0': + full_name: 'NUnit Console 3.9.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.7.0': + full_name: 'NUnit Console 3.7.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.8.0': + full_name: 'NUnit Console 3.8.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 10:35:54,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:35:54,244 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,244 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,244 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,244 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:35:54,244 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,244 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,260 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +nxlog: + '2.10.2150': + full_name: 'NXLog-CE' + installer: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,260 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,260 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:35:54,260 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,276 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.016110897064208984 +2020-03-06 10:35:54,276 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +octopus-tentacle: + 'latest': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://octopus.com/downloads/latest/OctopusTentacle64' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://octopus.com/downloads/latest/OctopusTentacle64' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.17': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.16': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,276 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,276 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,276 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:35:54,276 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,291 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.014594078063964844 +2020-03-06 10:35:54,291 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +# Source: http://openlp.org/ +# just 32-bit x86 installer available + + + + +openlp: + + '2.4.6': + full_name: 'OpenLP 2.4.6' + installer: 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'OpenLP 2.2.1' + installer: 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,291 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,291 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:35:54,291 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,291 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,291 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +openoffice: + '4.1.2': + full_name: 'OpenOffice 4.1.2' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart' + msiexec: False + locale: en_US + reboot: False + '4.1.1': + full_name: 'OpenOffice 4.1.1' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart' + msiexec: False + locale: en_US + reboot: False +# +# for other languages replace the two occurrences of 'en-US' +# in the download URL with your local two or four letter code below: +# +# 'el', 'en-GB', 'es', 'eu', 'ca', +# 'ca-XR', 'ca-XV', 'cs', 'ru', 'zh-CN', +# 'zh-TW', 'vi', 'ta', 'th', 'tr', 'sk', +# 'sl', 'sr', 'sv', 'pl', 'pt', 'pt-BR', +# 'nb', 'nl', 'lt', 'km', 'ko', 'ja', +# 'it', 'he', 'hi', 'hu', 'gd', 'gl', +# 'fi', 'fr', 'da', 'de', 'bg', 'ast' +# + +2020-03-06 10:35:54,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,306 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.014966249465942383 +2020-03-06 10:35:54,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,307 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:35:54,307 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,322 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +openvpn: + +# Combined installer since v2.4+ so no arch needed + + '2.4.7-I607-Win10': + full_name: 'OpenVPN 2.4.7-I607-Win10 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.6-I602': + full_name: 'OpenVPN 2.4.6-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.5-I601': + full_name: 'OpenVPN 2.4.5-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.4-I601': + full_name: 'OpenVPN 2.4.4-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I602': + full_name: 'OpenVPN 2.4.3-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I601': + full_name: 'OpenVPN 2.4.3-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + + '2.3.17-I601': + full_name: 'OpenVPN 2.3.17-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.12-I601': + full_name: 'OpenVPN 2.3.12-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.11-I601': + full_name: 'OpenVPN 2.3.11-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.10-I603': + full_name: 'OpenVPN 2.3.10-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.8-I601': + full_name: 'OpenVPN 2.3.8-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.6-I601': + full_name: 'OpenVPN 2.3.6-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# https://chocolatey.org/packages/openvpn +# Install with the following options: +# /SELECTSHORTCUTS=1 - create the start menu shortcuts +# /SELECTOPENVPN=1 - OpenVPN itself +# /SELECTSERVICE=1 - install the OpenVPN service +# /SELECTTAP=1 - install the TAP device driver +# /SELECTOPENVPNGUI=1 - install the default OpenVPN GUI +# /SELECTASSOCIATIONS=1 - associate with .ovpn files +# /SELECTOPENSSLUTILITIES=1 - install the utilities for generating public-private key pairs +# /SELECTEASYRSA=1 - install the RSA X509 certificate management scripts +# /SELECTPATH=1 - add openvpn.exe in PATH +# /SELECTOPENSSLDLLS=1 - dependencies - OpenSSL DLL's +# /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's +# /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's + +2020-03-06 10:35:54,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,322 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:35:54,322 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,338 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +# Performant endpoint visibility https://osquery.io/ + + + +osquery: + + '3.3.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.3.0': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.6': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.4': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '2.11.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:35:54,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:35:54,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,338 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:35:54,338 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,355 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +# just 32-bit x86 installer available + + + + + + + + + +ossec-agent: + + + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:54,355 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,355 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,355 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,355 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,355 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:35:54,355 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,371 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.01627802848815918 +2020-03-06 10:35:54,371 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +owncloud: + + + + + '2.2.4.6408': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2.6192': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1.6146': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0.6076': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.1.1.5837': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,371 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,371 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,371 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,371 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,371 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:35:54,385 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,385 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +pandoc: + '1.17.0.2': + full_name: 'Pandoc 1.17.0.2' + installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,385 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:35:54,403 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,403 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,403 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +parallels-client-15: + '15.0.3869': + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + uninstaller: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# The latest RAS clients can be downloaded for FREE from: +# https://www.parallels.com/uk/products/ras/download/links/ + +2020-03-06 10:35:54,403 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,403 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,403 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,416 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:35:54,416 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,416 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +pass4win: + '1.2.3.7': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '1.2.1.9': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,431 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:35:54,431 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,431 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +passware-kit-agent: + '13.1.7657': + full_name: 'Passware Kit Agent (64-bit)' + installer: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,431 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:35:54,431 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,431 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +passware-kit-forensic: + '13.1.7657': + full_name: 'Passware Kit Forensic (64-bit)' + installer: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,448 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,448 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.016679048538208008 +2020-03-06 10:35:54,448 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,448 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,448 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:35:54,448 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,448 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,448 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +# Source: https://patchmypc.net/ +patchmypc-free: + '3.0.1.1': + full_name: 'PatchMyPC' + installer: 'https://patchmypc.net/freeupdater/PatchMyPC.exe' + install_flags: | + ' & cmd /c taskkill /F /IM PatchMyPC.exe & + xcopy /q /c /r /y "c:\salt\var\cache\salt\minion\extrn_files\base\patchmypc.net\freeupdater\PatchMyPC.exe" "%SystemRoot%" & + exit 0' + uninstaller: 'cmd' + uninstall_flags: | + '/c taskkill /F /IM PatchMyPC.exe & + del /q /f "%SystemRoot%"\PatchMyPC.exe & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,448 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,448 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,448 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,464 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:35:54,464 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,464 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,464 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +pdf24creator: + + '8.8.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.5.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +# Source: https://en.pdf24.org/ +# Packagin info Source: https://chocolatey.org/packages/pdf24 + +2020-03-06 10:35:54,464 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,464 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,478 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,478 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:35:54,478 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,478 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,478 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +# just 32-bit x86 installer available + + + +pdfcreator: + '2.5.0': + full_name: 'PDFCreator' + installer: 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe' + install_flags: '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-' + uninstaller: '%ProgramFiles(x86)%\PDFCreator\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,493 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.014933347702026367 +2020-03-06 10:35:54,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,494 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:35:54,494 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,494 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +peazip: + '6.0.0': + + full_name: 'PeaZip 6.0.0 (WIN64)' + installer: 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\PeaZip\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,510 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:35:54,510 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,510 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: + + + + +pgadmin4: + + '2.1': + full_name: 'pgAdmin 4 version 2.1' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0': + full_name: 'pgAdmin 4 version 2.0' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6': + full_name: 'pgAdmin 4 version 1.6' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v1\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,528 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.017572641372680664 +2020-03-06 10:35:54,528 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,528 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,528 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:35:54,528 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,528 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,528 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +pgina: + '3.1.8.0': + full_name: 'pGina v3.1.8.0' + installer: 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe' + install_flags: '/silent ' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,543 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,543 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,543 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,543 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,543 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:35:54,543 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,543 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,543 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: + +# just 32-bit x86 installer available + + + +pidgin: + + '2.12.0': + full_name: 'Pidgin' + installer: 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Pidgin\pidgin-uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,543 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,558 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.014405012130737305 +2020-03-06 10:35:54,558 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,558 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,558 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:35:54,558 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,558 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,558 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +# Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: +# salt mid pkg.install postgresql version='"9.6"' + + + +postgresql: + '9.6': + full_name: 'PostgreSQL 9.6 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.6\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.5': + full_name: 'PostgreSQL 9.5 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.5\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.4': + full_name: 'PostgreSQL 9.4 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.4\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.3': + full_name: 'PostgreSQL 9.3 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.3\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + + +2020-03-06 10:35:54,558 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:35:54,558 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,574 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,574 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,574 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:35:54,574 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,574 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,574 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +### NOTE: You must accept the PowerBI Desktop EULA by setting the +### Pillar key `powerbi:desktop:accept_eula` to `True` in order to +### install this package. You can find a copy of the EULA at +### https://powerbi.microsoft.com/en-us/desktop-eula/. + +powerbi-desktop: + ## version 4.0.1 - https://www.microsoft.com/en-us/download/details.aspx?id=45331 + '2.59.5135.421': &powerbi-desktop + full_name: + "Microsoft PowerBI Desktop (x64)" + installer: &msi401 + "https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi" + install_flags: &flags + /qn + /norestart + ACCEPT_EULA=0 + uninstaller: *msi401 + uninstall_flags: *flags + msiexec: True + reboot: False + +2020-03-06 10:35:54,574 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:35:54,574 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,590 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,590 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,590 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:35:54,590 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,590 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,606 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +#PowerShell Core https://github.com/PowerShell/PowerShell + + + +powershell-core: + + '6.1.3.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.2.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.1.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.0.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.0.5.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 10:35:54,606 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:35:54,606 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,606 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,606 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,606 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:35:54,606 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.013635396957397461 +2020-03-06 10:35:54,619 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +# Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems +# WMI Exporter: https://github.com/martinlindhe/wmi_exporter +# Prometheus Monitoring: https://prometheus.io/ + +prometheus-wmi-exporter: + + '0.9.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.7.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.6.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.5.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.4': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,619 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:35:54,635 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0010974407196044922 +2020-03-06 10:35:54,635 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +putty: + + '0.73.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + + full_name: 'PuTTY release 0.73 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.72.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + + full_name: 'PuTTY release 0.72 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.71.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + + full_name: 'PuTTY release 0.71 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.70.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + + full_name: 'PuTTY release 0.70 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.69.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + + full_name: 'PuTTY release 0.69 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.68.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + + full_name: 'PuTTY release 0.68 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + + + '0.67': + full_name: 'PuTTY release 0.67' + installer: 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.66': + full_name: 'PuTTY release 0.66' + installer: 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.65': + full_name: 'PuTTY release 0.65' + installer: 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.64': + full_name: 'PuTTY release 0.64' + installer: 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,651 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,651 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:35:54,651 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,651 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,651 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +python2_x64: + + + + + '2.7.1150': + full_name: 'Python 2.7.1 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,651 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,651 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,666 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:35:54,666 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,666 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,666 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +python2_x86: + + + + + '2.7.1150': + full_name: 'Python 2.7.1' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,681 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.01529073715209961 +2020-03-06 10:35:54,681 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,681 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,681 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:35:54,681 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,681 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,681 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: + + +python3_x64: + + '3.8.150.0': + full_name: 'Python 3.8.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.4150.0': + full_name: 'Python 3.7.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,697 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,697 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,697 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:35:54,697 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.016280174255371094 +2020-03-06 10:35:54,713 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: + + +python3_x86: + + '3.7.4150.0': + full_name: 'Python 3.7.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,713 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,713 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:35:54,713 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.015131473541259766 +2020-03-06 10:35:54,728 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +qemu: + '2018.05.19': + full_name: 'QEMU' + installer: 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe' + uninstaller: '%PROGRAMFILES%\qemu\qemu-uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,728 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:35:54,728 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,728 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: + + + + +queueexplorerpro: + '4.1.5': + full_name: 'QueueExplorer Professional 4.1.5' + installer: 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\QueueExplorer Professional\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.015657424926757812 +2020-03-06 10:35:54,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,744 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:35:54,744 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +quicktime: + '7.79.80.95': + full_name: 'QuickTime 7' + #installer: 'https://secure-appldnld.apple.com/quicktime/031-27600-20150820-F20FB1EF-6710-46BD-99B3-7DCF1253B310/QuickTimeInstaller.exe' + installer: 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe' + + uninstall_flags: | + '/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart & + msiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart & + msiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart & + msiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart & + exit 0' + + install_flags: '/quiet /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + # the above uninstalls: + # Apple Software Update v. 2.1.4.131 {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} + # Apple Application Support v. 4.1.2 {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} + # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} + # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} + +2020-03-06 10:35:54,763 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,763 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,763 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,763 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,763 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:35:54,763 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,763 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,775 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: + +rabbitmq: + + '3.6.9': + full_name: 'RabbitMQ Server 3.6.9' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.7.7': + full_name: 'RabbitMQ Server 3.7.7' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,775 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,775 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,775 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,775 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:35:54,791 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,791 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,791 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +rakudo-star_x86: + '1.0.0': + full_name: 'Rakudo Star 2016.01' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,791 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,791 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,791 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,791 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:35:54,791 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,807 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.016219615936279297 +2020-03-06 10:35:54,807 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +rakudo-star_x64: + '1.0.0': + full_name: 'Rakudo Star 2016.04' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,807 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,807 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,807 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,807 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,807 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:35:54,822 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,822 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,822 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +rasclient: + + '16': + + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + uninstaller: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,822 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,822 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,822 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,838 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:35:54,838 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,838 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +rdcman: + '2.7.14060': + full_name: 'Remote Desktop Connection Manager' + installer: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,838 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:35:54,838 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.01621699333190918 +2020-03-06 10:35:54,854 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: + + +rocketchat: + + '2.13.1': + full_name: 'Rocket.Chat+ 2.13.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.13.0': + full_name: 'Rocket.Chat+ 2.13.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.12.0': + full_name: 'Rocket.Chat+ 2.12.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.5': + full_name: 'Rocket.Chat+ 2.10.5' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.4': + full_name: 'Rocket.Chat+ 2.10.4' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.3': + full_name: 'Rocket.Chat+ 2.10.3' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.2': + full_name: 'Rocket.Chat+ 2.10.2' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.1': + full_name: 'Rocket.Chat+ 2.10.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.9.0': + full_name: 'Rocket.Chat+ 2.9.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,854 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:35:54,870 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,870 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,870 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +rubyinstaller_x64: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,870 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,870 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,870 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,870 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,883 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:35:54,885 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,885 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +rubyinstaller_x86: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '1.9.3-p551': + full_name: 'Ruby 1.9.3-p551' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby193\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:54,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,885 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:35:54,885 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,901 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.016525745391845703 +2020-03-06 10:35:54,901 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Salt added support for Py3 with 2017.7.0. As a result, the package names have +# changed to denote the Python version included with the install. So add new +# versions of the 2017.7 branch here. Versions from older branches will be +# added below. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion: + + '3000': + full_name: 'Salt Minion 3000' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Add versions from older branches here: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + '2016.11.10': + full_name: 'Salt Minion 2016.11.10' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.9': + full_name: 'Salt Minion 2016.11.9' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.8': + full_name: 'Salt Minion 2016.11.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.7': + full_name: 'Salt Minion 2016.11.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.6': + full_name: 'Salt Minion 2016.11.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.5': + full_name: 'Salt Minion 2016.11.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.4': + full_name: 'Salt Minion 2016.11.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.3': + full_name: 'Salt Minion 2016.11.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.2': + full_name: 'Salt Minion 2016.11.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.1': + full_name: 'Salt Minion 2016.11.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.0': + full_name: 'Salt Minion 2016.11.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:35:54,901 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:35:54,916 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.015111684799194336 +2020-03-06 10:35:54,916 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,916 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,916 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:35:54,916 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,916 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,916 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion-py3: + + '3000': + full_name: 'Salt Minion 3000 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 10:35:54,931 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 10:35:54,931 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,931 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,931 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,931 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:35:54,931 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,931 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,931 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +sandboxie: + '4.20': + + full_name: 'Sandboxie 4.20 (64-bit)' + installer: 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe' + uninstaller: 'C:\Windows\Installer\SandboxieInstall64.exe' + + install_flags: '/S' + uninstall_flags: '/remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,947 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,947 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,947 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,947 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:35:54,947 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,947 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,947 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +scaleout: + latest: + + full_name: 'ScaleOut StateServer x64 Edition' + installer: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + uninstaller: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:54,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,947 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,963 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,963 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,963 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:35:54,963 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,963 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:54,963 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +# just 32-bit x86 installer available + + + +secunia.psi: + '3.0.0.10004': + full_name: 'Secunia PSI' + installer: 'http://secunia.com/PSISetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Secunia\PSI\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:54,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,978 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.015246391296386719 +2020-03-06 10:35:54,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,978 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:35:54,978 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:54,995 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.01676774024963379 +2020-03-06 10:35:54,995 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: + + + + + + +sensu: + + '1.4.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.28.4': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.5': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.25.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:54,995 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:54,995 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:54,995 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:54,995 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:54,995 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:35:55,012 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,012 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,012 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +sharpdevelop: + '5.1.5134': + full_name: 'SharpDevelop 5.1 RC' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '4.4.9749': + full_name: 'SharpDevelop 4.4' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6466': + full_name: 'SharpDevelop 3.2.1' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.2.2648': + full_name: 'SharpDevelop 2.2' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,012 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,012 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,012 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,012 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:35:55,026 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,026 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,026 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +# just 32-bit x86 installer available + + + +skitch: + '2.3.2.176': + full_name: 'Skitch' + installer: 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe' + install_flags: '--mode unattended' + uninstaller: '%ProgramFiles(x86)%\Evernote\Skitch\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,026 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,026 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,026 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,026 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,042 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:35:55,042 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,042 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,042 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +skype-msi: + '7.41.101': + full_name: 'Skypeâ„¢ 7.41' + installer: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.151': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.103': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# you can always get latest msi from: +# http://www.skype.com/go/getskype-msi (but version number keeps increasing) +# +# for explanation of silent switches read: +# http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 +# you can also check microsite http://skype.techygeekshome.info/ + +2020-03-06 10:35:55,042 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,042 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,042 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,042 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,042 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:35:55,042 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,057 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.014653921127319336 +2020-03-06 10:35:55,057 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +# just 32-bit x86 installer available + + + + +skype: + '8.31': + full_name: 'Skype version 8.31' + installer: 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe' + install_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\Microsoft\Skype for Desktop\unins000.exe' + uninstall_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,057 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,057 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,057 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,057 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,072 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:35:55,072 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,072 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +#MSI machine-wide deployment package +#The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. +#It is multi-client-capable, meaning that it can be used by multiple users on one machine, +#keeping their profiles separately in %ROAMINGAPPDATA%. Using this method, Slack will not receive automatic updates. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-machine-msi: + + '3.3.7.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.6.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:55,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,072 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:35:55,072 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,090 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.017110347747802734 +2020-03-06 10:35:55,090 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +#MSI for per-user deployment package +#The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. +#The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-user-msi: + latest: + full_name: 'Slack Machine-Wide Installer' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,090 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,090 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,090 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,090 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,090 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:35:55,090 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,090 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,090 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +slack: + 3.4.0: + full_name: Slack + installer: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + install_flags: '/qn /norestart' + uninstaller: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:35:55,104 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:35:55,104 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,104 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,104 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,104 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:35:55,104 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,104 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,104 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +# just 32-bit x86 installer available + + + +smartmontools: + '6.4 2015-06-04 r4109 (sf-6.4-1)': + full_name: 'smartmontools' + installer: 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\smartmontools\uninst-smartmontools.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,104 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,104 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,104 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,104 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,121 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:35:55,121 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,137 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.01570749282836914 +2020-03-06 10:35:55,137 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +# just 32-bit x86 installer available + + + +snmptools: + 'Not Found': + full_name: 'SnmpTools 2' + installer: 'https://erwan.labalec.fr/snmptools/snmptools32.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\SnmpTools\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,151 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,151 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,151 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,151 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:35:55,151 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,151 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,151 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: + +soapui: + + '5.4.0': + full_name: 'SoapUI 5.4.0 5.4.0' + + installer: 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe' + + install_flags: '-q' + uninstaller: '%ProgramFiles%\SmartBear\SoapUI-5.4.0\uninstall.exe' + uninstall_flags: '-q' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,151 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,151 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,167 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,167 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,167 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:35:55,167 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,167 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,167 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +# just 32-bit x86 installer available + + + +# Source: http://software.informer.com/ +software-informer: + 'Not Found': + full_name: 'Software Informer' + installer: 'https://files.informer.com/siinst.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + uninstaller: '%ProgramFiles(x86)%\Software Informer\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,167 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,167 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,185 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,185 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,185 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:35:55,185 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,185 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,185 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +sourcetree: + + '2.3.1.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.4.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.11.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.2.5': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0.20.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.10.23.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + + + '1.9.13.7': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.9.20': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.6.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.8.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.7.0.32509': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6.25': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.5.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.4.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.3.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.2.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.1.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.0.8': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '0.9.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,198 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,198 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.01370382308959961 +2020-03-06 10:35:55,198 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,198 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,198 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:35:55,198 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,215 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.017113924026489258 +2020-03-06 10:35:55,215 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +# just 32-bit x86 installer available + + + +spybot-anti-beacon: + '1.6': + full_name: 'Spybot Anti-Beacon' + installer: 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot Anti-Beacon\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,215 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,215 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,215 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,215 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,215 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:35:55,215 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,229 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.013260602951049805 +2020-03-06 10:35:55,229 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.safer-networking.org/ +spybot: + '2.4': + full_name: 'Spybot - Search & Destroy' + installer: 'http://spybotupdates.com/files/spybot-2.4.exe' + install_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot - Search & Destroy 2\unins000.exe' + uninstall_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + msiexec: False + locale: en_US + reboot: False +# alternative download URLs +# http://www.spybotupdates.biz/files/spybot-2.4.exe +# http://spybot-mirror.com/files/spybot-2.4.exe + +2020-03-06 10:35:55,229 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,229 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,229 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,229 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,229 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:35:55,229 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,246 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.01743912696838379 +2020-03-06 10:35:55,246 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +sscserv-free: + + '3.6.1': + full_name: 'SSC Serv 3.6.1 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '3.5.0': + full_name: 'SSC Serv 3.5.0 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,246 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,246 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,260 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:35:55,260 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,260 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,260 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +steam: + latest: + full_name: 'Steam' + installer: 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe' + install_flags: '/S' + uninstaller: + "C:\\Program Files (x86)\\Steam\\uninstaller.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:35:55,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,260 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,260 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,278 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,278 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:35:55,278 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,278 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,278 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +stellarium: + '0.16.1': + full_name: 'Stellarium 0.16.1' + + installer: 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe' + + install_flags: '/silent' + uninstaller: '%ProgramFiles%\Stellarium\unins000.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,278 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,278 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,278 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,278 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:35:55,292 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,292 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,292 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +strawberryperl_x64: + + '5.26.1001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:55,292 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,292 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,292 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,292 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,292 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:35:55,306 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,306 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,306 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +strawberryperl_x86: + + '5.26.1001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:55,306 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,306 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,322 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:35:55,322 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,322 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +# just 32-bit x86 installer available + + + +stunnel: + '5.30': + full_name: 'stunnel installed for AllUsers' + installer: 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\stunnel\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,322 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,322 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:35:55,338 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,338 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +subinacl: + '5.2.3790.1164': + full_name: 'Windows Resource Kit Tools - SubInAcl.exe' + installer: 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,338 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,338 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:35:55,338 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,338 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,338 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: + + + +sumatrapdf: + '3.1.2': + full_name: 'SumatraPDF' + installer: 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe' + install_flags: '/s /opt' + uninstaller: '%ProgramFiles%\SumatraPDF\uninstall.exe' + uninstall_flags: '/s' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,353 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:35:55,353 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,369 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +svn: + '1.8.13': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.8.11': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,369 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:35:55,369 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.016072988510131836 +2020-03-06 10:35:55,385 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer: + latest: + full_name: 'TeamViewer 14' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,385 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:35:55,385 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,385 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,400 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer_host: + latest: + full_name: 'TeamViewer 14 Host' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,400 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,400 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:35:55,400 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.01618814468383789 +2020-03-06 10:35:55,416 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +# just 32-bit x86 installer available + + + +teracopy: + 'Not Found': + full_name: 'TeraCopy 2.3' + installer: 'http://storage.googleapis.com/codesector/teracopy.exe' + install_flags: | + '/SP- /verysilent /suppressmsgboxes /norestart & + reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeraCopy_is1 /v DisplayVersion /d 2.3 & + exit 0' + uninstaller: '%ProgramFiles(x86)%\TeraCopy\unins000.exe' + uninstall_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,416 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:35:55,416 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,416 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +# just 32-bit x86 installer available + + + +texmaker: + 'Not Found': + full_name: 'Texmaker' + installer: 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Texmaker\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,432 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0010428428649902344 +2020-03-06 10:35:55,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,432 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:35:55,432 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,432 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,432 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: + +texniccenter: + '2.02 Stable': + full_name: 'TeXnicCenter Version 2.02 Stable' + + installer: 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES%\TeXnicCenter\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,432 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,432 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,447 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:35:55,447 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,447 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,447 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +# just 32-bit x86 installer available + + + +texstudio: + '2.10.8': + full_name: 'TeXstudio 2.10.8' + installer: 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXstudio\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,447 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,447 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,447 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:35:55,464 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,464 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,464 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +# just 32-bit x86 installer available + + + +texworks: + '0.6.1': + full_name: 'TeXworks 0.6.1' + installer: 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXworks\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,464 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,464 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,464 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:35:55,478 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,478 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,478 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +# just 32-bit x86 installer available + + + +thunderbird: + + '60.6.1': + full_name: 'Mozilla Thunderbird 60.6.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Thunderbird 60.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.3': + full_name: 'Mozilla Thunderbird 60.5.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Thunderbird 60.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Thunderbird 60.5.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Thunderbird 60.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Thunderbird 60.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.3': + full_name: 'Mozilla Thunderbird 60.3.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.2': + full_name: 'Mozilla Thunderbird 60.3.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.1': + full_name: 'Mozilla Thunderbird 60.3.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Thunderbird 60.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Thunderbird 60.2.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Thunderbird 60.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.1': + full_name: 'Mozilla Thunderbird 52.9.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Thunderbird 52.9.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Thunderbird 52.8.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Thunderbird 52.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Thunderbird 52.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Thunderbird 52.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Thunderbird 45.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Thunderbird 45.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Thunderbird 38.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Thunderbird 38.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Thunderbird 38.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Thunderbird 38.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.0': + full_name: 'Mozilla Thunderbird 38.2.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.1.0': + full_name: 'Mozilla Thunderbird 38.1.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,478 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,494 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:35:55,494 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,494 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,494 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +tightvnc: + + + '2.8.27.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.23.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.11.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.8.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.5.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.2.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.7.10.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:55,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.015780210494995117 +2020-03-06 10:35:55,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,510 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:35:55,510 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,510 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +todotxt.net: + 'Not Found': + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + full_name: 'todotxt.net v3.2.0.0' + installer: 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Hughesoft\todotxt.net\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,510 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,525 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:35:55,525 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,525 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,525 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +todour: + '2.03': + full_name: 'Todour version 2.03' + installer: 'https://nerdur.com/Todour-2.03.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Todour\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,542 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.016758203506469727 +2020-03-06 10:35:55,542 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,542 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,542 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:35:55,542 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,542 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,542 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +# just 32-bit x86 installer available + + + +# Source: http://wiki.bazaar.canonical.com/ +tortoise-bzr: + '2.5.1-1': + full_name: 'Bazaar 2.5.1' + installer: 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Bazaar\uninst000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,542 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,542 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,556 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,556 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,556 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:35:55,556 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,556 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,556 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +# Source: https://tortoisegit.org/ +tortoise-git: + + '2.8.0.0': + + full_name: 'TortoiseGit 2.8.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.7.0.0': + + full_name: 'TortoiseGit 2.7.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.6.0.0': + + full_name: 'TortoiseGit 2.6.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.5.0.0': + + full_name: 'TortoiseGit 2.5.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.4.0.0': + + full_name: 'TortoiseGit 2.4.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.3.0.0': + + full_name: 'TortoiseGit 2.3.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0.0': + + full_name: 'TortoiseGit 2.2.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0.0': + + full_name: 'TortoiseGit 2.1.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0.0': + + full_name: 'TortoiseGit 2.0.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.16.0': + + full_name: 'TortoiseGit 1.8.16.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.15.0': + + full_name: 'TortoiseGit 1.8.15.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.14.0': + + full_name: 'TortoiseGit 1.8.14.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.13.0': + + full_name: 'TortoiseGit 1.8.13.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:55,556 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.016198396682739258 +2020-03-06 10:35:55,572 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,572 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,572 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:35:55,572 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,572 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +# Source: http://tortoisehg.bitbucket.org/ +tortoise-hg: + '3.6.2': + + full_name: 'TortoiseHg 3.6.2 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.3.0': + + full_name: 'TortoiseHg 3.3.0 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# Need to download from source site above, so it will append proper aws key credentials +# place downloaded msi in master's win_repo-ng + +2020-03-06 10:35:55,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,572 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,588 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:35:55,588 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,588 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +# Source: http://tortoisesvn.net/ +tortoise-svn: + '1.9.27285': + + full_name: 'TortoiseSVN 1.9.4.27285 (64 bit)' + installer: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + uninstaller: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:55,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,588 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,588 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,588 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:35:55,603 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,603 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,603 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +# just 32-bit x86 installer available + + + +truecrypt: + '7.1a': + full_name: 'TrueCrypt 7.1a' + installer: 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Truecrypt\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,603 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,603 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,603 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,603 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:35:55,619 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,619 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +ultradefrag: + '7.0.2': + full_name: 'Ultra Defragmenter' + + installer: 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe' + + install_flags: '/S /FULL=1' + uninstaller: '%ProgramFiles%\UltraDefrag\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,619 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,619 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,619 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:35:55,619 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.015491485595703125 +2020-03-06 10:35:55,635 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +urlrewrite: + '7.2.1952': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.2.1980': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,635 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,635 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:35:55,635 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,635 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,650 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +usbdlm: + '5.2.7.0': + + full_name: 'USB Drive Letter Manager (x64)' + installer: http://www.uwe-sieber.de/files/usbdlm_x64.msi + uninstaller: http://www.uwe-sieber.de/files/usbdlm_x64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,650 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,650 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,650 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,650 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:35:55,650 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,667 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.016593217849731445 +2020-03-06 10:35:55,667 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +vagrant: + + + '2.2.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.8': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:55,667 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,667 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,682 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:35:55,682 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,682 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,682 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +vcforpython27: + '9.0.1.30729': + full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' + installer: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,682 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,682 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,682 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:35:55,697 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,697 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,697 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: + + + + +vcxsrv: + + '1.20.0.0': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.19.6.4': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,697 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,697 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,697 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:35:55,697 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,714 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.01738119125366211 +2020-03-06 10:35:55,714 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: + + +verysleepy: + '0.90': + full_name: 'Very Sleepy CS version 0.90' + installer: 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe' + uninstaller: '%ProgramFiles%\Very Sleepy CS\unins000.exe' + install_flags: '/SP- /NORESTART /SILENT' + uninstall_flags: '/SILENT' + cache_dir: True + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,714 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,714 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,714 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,714 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,714 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:35:55,714 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,714 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,728 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +veyon: + + '4.0.7': + full_name: 'Veyon 4.0.7' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.0.6': + full_name: 'Veyon 4.0.6' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,728 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,728 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,728 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:35:55,728 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.016031980514526367 +2020-03-06 10:35:55,744 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +# Version 5.1 and older are no longer supported by Oracle +# https://www.virtualbox.org/wiki/Download_Old_Builds + + + +virtualbox: + + '6.0.4': + full_name: 'Oracle VM VirtualBox 6.0.4' + installer: 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.2.26': + full_name: 'Oracle VM VirtualBox 5.2.26' + installer: 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.1.38': + full_name: 'Oracle VM VirtualBox 5.1.38' + installer: 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.0.40': + full_name: 'Oracle VM VirtualBox 5.0.40' + installer: 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart' + + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,744 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,744 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:35:55,760 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,760 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,760 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: + + + + +viscosity: + + '1.7.14.1595': + full_name: Viscosity 1.7.14 (1595) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.7.12.1581': + full_name: Viscosity 1.7.12 (1581) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.6.8.1477': + full_name: Viscosity 1.6.8 (1477) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + +2020-03-06 10:35:55,760 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:35:55,760 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,776 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:35:55,776 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,776 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,776 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +#Vivaldi is a Chromium-based browser +#https://vivaldi.com + + + +vivaldi: + latest: + full_name: 'Vivaldi' + + installer: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + uninstaller: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + + install_flags: '--vivaldi-silent --do-not-launch-chrome --system-level' + uninstall_flags: '--uninstall --force-uninstall --system-level --vivaldi' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,776 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,776 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,776 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,776 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,791 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:35:55,791 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,791 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,791 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +vlc: + + '3.0.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.5': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.4': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,808 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,808 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.016317367553710938 +2020-03-06 10:35:55,808 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,808 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,808 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:35:55,808 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,823 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.015068531036376953 +2020-03-06 10:35:55,823 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +vs-community: + 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) + full_name: + Visual Studio Community 2017 + installer: + https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe + install_flags: + --quiet + --norestart + --wait + uninstaller: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe" + uninstall_flags: + /uninstall + --force + --quiet + --norestart + reboot: False + +2020-03-06 10:35:55,823 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,823 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,823 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,823 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,823 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:35:55,838 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,838 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +# due to winrepo installer limitations you need to manually download x86 + x64 System installer from +# https://code.visualstudio.com/Download +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... + + + +vscode: + + '1.36.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.36.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.37.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.37.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.38.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.38.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.2': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.2.exe' + installer: 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:55,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,838 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,838 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,838 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:35:55,854 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,854 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +vsee: + '15.0.0.707': + full_name: 'VSee' + installer: 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe' + install_flags: '-no_autorun' + uninstaller: '%AppData%\VSeeInstall\vseeUninstall.exe' + uninstall_flags: '-no_confirm' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,854 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,854 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:35:55,854 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,854 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,854 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +vs_remotetools_2017: + latest: + full_name: 'Remote Tools for Visual Studio 2017' + + installer: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + uninstaller: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + arch: x64 + + install_flags: '/install /passive /quiet' + uninstall_flags: '/uninstall /passive /quiet' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,870 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.015728473663330078 +2020-03-06 10:35:55,870 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,870 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,870 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:35:55,870 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,870 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,870 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +wamp-server-3: + '3.1.3': + + full_name: 'Wampserver64 3.1.3' + installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe' + uninstaller: 'c:\wamp64\uninstall_services.bat' + uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,870 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,870 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,870 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,885 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:35:55,885 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,885 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: + + +wamp-stack: + + '7.1.27-1': + full_name: 'Bitnami WAMP Stack 7.1.27-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-7.1.27-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + '5.6.40-1': + full_name: 'Bitnami WAMP Stack 5.6.40-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-5.6.40-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,885 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,885 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,885 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:35:55,916 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,916 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,916 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +webdeploy: + '3.1237.1764': + full_name: 'Microsoft Web Deploy 3.5' + + installer: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,916 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,916 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,932 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,932 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:35:55,932 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,947 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.015250682830810547 +2020-03-06 10:35:55,947 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +webplatforminstaller: + '5.0.50430.0': + full_name: 'Microsoft Web Platform Installer 5.0' + + installer: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,947 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,947 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,947 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,947 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:35:55,947 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,963 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.016131877899169922 +2020-03-06 10:35:55,963 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +# Source: http://winappmanager.herokuapp.com/ + + + +win-app-manager: + '15.01.11': + full_name: 'WinAppManager' + installer: 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinApp Manager\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,963 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,963 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,963 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,963 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:35:55,963 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,963 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,978 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: + + + +windirstat: + 'Not Found': + full_name: 'WinDirStat 1.1.2' + installer: 'http://download01.windirstat.info/windirstat1_1_2_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\WinDirStat\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:55,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,978 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,978 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:35:55,978 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,978 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,978 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +winhttpcertcfg: + '5.2.3790.1060': + full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' + installer: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 10:35:55,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,978 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,978 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:55,995 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:35:55,995 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:55,995 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:55,995 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: + + + + +winmerge: + + '2.16.0': + full_name: 'WinMerge 2.16.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.14.0': + full_name: 'WinMerge 2.14.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:55,995 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:55,995 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:55,995 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:55,995 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,010 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:35:56,010 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,010 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,010 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +winmtr: + + '0.92': + + full_name: 'WinMTR_x64 0.92' + installer: 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe' + uninstaller: 'c:\utl\uninstall-winmtr_x64.exe' + + install_flags: '/D="c:\utl" /SILENT /NORESTART' + uninstall_flags: 'c:\utl\SSEun.dat /SILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +# download exe from winmtr.net +# create two installers using http://www.ssesetup.com/ + +2020-03-06 10:35:56,010 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,010 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,010 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,010 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,010 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:35:56,010 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,025 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.015888452529907227 +2020-03-06 10:35:56,025 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +winpcap: + '4.1.0.2980': + full_name: 'WinPcap 4.1.3' + installer: 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\WinPcap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:56,025 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,025 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,025 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,025 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,025 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:35:56,025 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,025 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,041 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +#if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) + + +winrar: + + + '5.70.0': + + full_name: 'WinRAR 5.70 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-570.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.61.0': + + full_name: 'WinRAR 5.61 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-561.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 10:35:56,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,041 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,041 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:35:56,041 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,057 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.015224218368530273 +2020-03-06 10:35:56,057 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: + + + +winscp: + + '5.17': + full_name: 'WinSCP 5.17' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.9': + full_name: 'WinSCP 5.15.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.7': + full_name: 'WinSCP 5.15.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.5': + full_name: 'WinSCP 5.15.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.4': + full_name: 'WinSCP 5.15.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.3': + full_name: 'WinSCP 5.15.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.2': + full_name: 'WinSCP 5.15.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.1': + full_name: 'WinSCP 5.15.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15': + full_name: 'WinSCP 5.15' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.9': + full_name: 'WinSCP 5.13.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.8': + full_name: 'WinSCP 5.13.8' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.7': + full_name: 'WinSCP 5.13.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.6': + full_name: 'WinSCP 5.13.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.5': + full_name: 'WinSCP 5.13.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.4': + full_name: 'WinSCP 5.13.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.3': + full_name: 'WinSCP 5.13.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.2': + full_name: 'WinSCP 5.13.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.1': + full_name: 'WinSCP 5.13.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13': + full_name: 'WinSCP 5.13' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.3': + full_name: 'WinSCP 5.11.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.2': + full_name: 'WinSCP 5.11.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.1': + full_name: 'WinSCP 5.11.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.6': + full_name: 'WinSCP 5.9.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.2': + full_name: 'WinSCP 5.9.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.1': + full_name: 'WinSCP 5.9.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9': + full_name: 'WinSCP 5.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:56,057 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,057 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,057 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,057 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,057 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:35:56,072 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,072 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,072 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +wireshark: + + '3.0.4': + + full_name: 'Wireshark 3.0.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + + full_name: 'Wireshark 3.0.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + + full_name: 'Wireshark 3.0.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + + full_name: 'Wireshark 3.0.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + + full_name: 'Wireshark 3.0.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.6': + + full_name: 'Wireshark 2.6.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.5': + + full_name: 'Wireshark 2.6.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.4': + + full_name: 'Wireshark 2.6.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.3': + + full_name: 'Wireshark 2.6.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.2': + + full_name: 'Wireshark 2.6.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.1': + + full_name: 'Wireshark 2.6.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.0': + + full_name: 'Wireshark 2.6.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.12': + + full_name: 'Wireshark 2.4.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.11': + + full_name: 'Wireshark 2.4.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.10': + + full_name: 'Wireshark 2.4.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.9': + + full_name: 'Wireshark 2.4.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.8': + + full_name: 'Wireshark 2.4.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.7': + + full_name: 'Wireshark 2.4.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.6': + + full_name: 'Wireshark 2.4.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.5': + + full_name: 'Wireshark 2.4.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.4': + + full_name: 'Wireshark 2.4.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.3': + + full_name: 'Wireshark 2.4.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.2': + + full_name: 'Wireshark 2.4.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.1': + + full_name: 'Wireshark 2.4.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.0': + + full_name: 'Wireshark 2.4.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.17': + + full_name: 'Wireshark 2.2.17 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.16': + + full_name: 'Wireshark 2.2.16 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.15': + + full_name: 'Wireshark 2.2.15 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.14': + + full_name: 'Wireshark 2.2.14 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.13': + + full_name: 'Wireshark 2.2.13 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.12': + + full_name: 'Wireshark 2.2.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.11': + + full_name: 'Wireshark 2.2.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.10': + + full_name: 'Wireshark 2.2.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.9': + + full_name: 'Wireshark 2.2.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + + full_name: 'Wireshark 2.2.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.7': + + full_name: 'Wireshark 2.2.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + + full_name: 'Wireshark 2.2.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.5': + + full_name: 'Wireshark 2.2.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + + full_name: 'Wireshark 2.2.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.3': + + full_name: 'Wireshark 2.2.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2': + + full_name: 'Wireshark 2.2.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + + full_name: 'Wireshark 2.2.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0': + + full_name: 'Wireshark 2.2.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:56,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,088 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.01555943489074707 +2020-03-06 10:35:56,088 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,088 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,088 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:35:56,088 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,088 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,088 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +# source: http://www.kls-soft.com/wscc/ +wscc: + '2.5.0.4': + full_name: 'WSCC 2.5.0.4' + installer: 'http://www.kls-soft.com/downloads/wscc_setup.exe' + install_flags: '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + + uninstaller: '%PROGRAMFILES(x86)%\WSCC\unins000.exe' + + uninstall_flags: '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:56,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.01484823226928711 +2020-03-06 10:35:56,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,103 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,103 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:35:56,103 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,103 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,119 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +# Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 +# https://github.com/zeffy/wufuc + + + + + + +wufuc: + + '1.0.1.201': + full_name: 'wufuc' + installer: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 10:35:56,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,119 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,119 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,119 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,119 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:35:56,119 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,119 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,119 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +xampp: + '7.2.6.0': + full_name: 'XAMPP 7.2.6' + installer: 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe' + install_flags: '--mode unattended' + uninstaller: 'c:\xampp\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:56,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,119 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,135 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,135 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,135 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:35:56,135 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,135 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,135 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +# just 32-bit x86 installer available + + + +# http://www.straightrunning.com/XmingNotes/setupcmdline.htm +xming: + '6.9.0.31': + full_name: 'Xming 6.9.0.31' + installer: 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe' + install_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + uninstaller: '%ProgramFiles(x86)%\Xming\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 10:35:56,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,135 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,135 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,150 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,150 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:35:56,150 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,150 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,150 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: + + +yubikey-manager: + + '1.1.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.2': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + +2020-03-06 10:35:56,150 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,150 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,150 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,150 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,166 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:35:56,166 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,166 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,166 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +yubikey-personalization-tool: + '3.1.24': + full_name: 'YubiKey Personalization Tool' + installer: 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe' + install_flags: '/S' + uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 10:35:56,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,166 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,166 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:35:56,182 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,182 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,197 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.2.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.5.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.6.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.0.9.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.10.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.11.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.12.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.13.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.14.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.15.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.16.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 10:35:56,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,197 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,197 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,197 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:35:56,213 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,213 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,213 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: + +zoom: + latest: + full_name: 'Zoom' + installer: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 10:35:56,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:35:56,213 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,213 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,213 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,213 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:35:56,213 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,229 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.015795469284057617 +2020-03-06 10:35:56,229 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +# Software Definition File for Elasticsearch Auditbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +auditbeat: + + '7.3.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:35:56,229 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,229 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,229 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,229 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,229 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:35:56,229 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,246 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.017017602920532227 +2020-03-06 10:35:56,246 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +chocolatey: + latest: + full_name: 'Chocolatey' + installer: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd' + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd' + cache_dir: True + +# this software also has it's own salt execution module, which you might prefer to use, see +# http://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html +# for usage examples see +# https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 + + +2020-03-06 10:35:56,246 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,246 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,246 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,246 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,246 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:35:56,246 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,267 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.021558523178100586 +2020-03-06 10:35:56,267 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: + + + + +erlang: + + '19.3': + full_name: 'Erlang OTP 19 (8.3)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"' + uninstaller: '%ProgramFiles%\erl8.3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '21.0.1': + full_name: 'Erlang OTP 21 (10.0.1)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"' + uninstaller: '%ProgramFiles%\erl10.0.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 10:35:56,267 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:35:56,276 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.00876307487487793 +2020-03-06 10:35:56,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,276 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:35:56,276 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,276 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,276 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +# Software Definition File for Elasticsearch Filebeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +filebeat: + + '7.3.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:35:56,293 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,293 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,293 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,293 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,293 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:35:56,293 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,293 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,293 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +# Software Definition File for Elasticsearch Functionbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +functionbeat: + + '7.3.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:35:56,307 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,307 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:35:56,307 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,307 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,307 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +# just 32-bit x86 installer available + + + + +gpg4win: + + 3.1.7: + full_name: 'Gpg4win (3.1.7)' + installer: 'http://files.gpg4win.org/gpg4win-3.1.7.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.3: + full_name: 'Gpg4win (3.0.3)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.0: + full_name: 'Gpg4win (3.0.0)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.4: + full_name: 'Gpg4win (2.3.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.3: + full_name: 'Gpg4win (2.3.3)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.2: + full_name: 'Gpg4win (2.3.2)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.2.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.1: + full_name: 'Gpg4win (2.3.1)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.1.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.0: + full_name: 'Gpg4win (2.3.0)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.2.4: + full_name: 'Gpg4win (2.2.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.2.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + +2020-03-06 10:35:56,323 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:35:56,323 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.015863418579101562 +2020-03-06 10:35:56,323 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,323 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,323 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:35:56,323 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,339 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.01609182357788086 +2020-03-06 10:35:56,339 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +# Software Definition File for Elasticsearch Heartbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +heartbeat: + + '7.3.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:35:56,339 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,339 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,339 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,339 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,339 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:35:56,339 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.014109373092651367 +2020-03-06 10:35:56,353 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +# Software Definition File for Elasticsearch Metricbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +metricbeat: + + '7.3.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:35:56,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,353 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,353 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:35:56,353 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.016125202178955078 +2020-03-06 10:35:56,369 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +# Software Definition File for Elasticsearch Packetbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +packetbeat: + + '7.3.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:35:56,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,369 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,369 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:35:56,369 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,384 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.015106916427612305 +2020-03-06 10:35:56,384 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: + + + + + +pycharm-pro: + + 191.6605.12: + installer: 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe' + full_name: 'JetBrains Pycharm 2019.1.1' + install_flags: '/S /CONFIG=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\silent.config' + cache_file: salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config + uninstaller: '%ProgramFiles(x86)%\JetBrains\PyCharm 2019.1.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + reboot: False + + +2020-03-06 10:35:56,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 10:35:56,384 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,384 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,384 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,384 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:35:56,384 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,384 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,384 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +# just 32-bit x86 installer available + + + +stayawake: + + '1.0': + full_name: 'StayAwake' + installer: 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd' + install_flags: '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"' + uninstaller: '%PROGRAMFILES(x86)%\StayAwake\uninstall.exe' + uninstall_flags: '/S' + + +2020-03-06 10:35:56,401 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) +2020-03-06 10:35:56,401 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,401 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,401 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,401 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:35:56,401 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,401 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,401 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +# Software Definition File for Elasticsearch Winlogbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +winlogbeat: + + '7.3.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + +2020-03-06 10:35:56,401 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.01541280746459961 +2020-03-06 10:35:56,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,416 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,416 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:35:56,416 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,416 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +############################################################# +# Windows +############################################################# +# + + +2020-03-06 10:35:56,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +{} +2020-03-06 10:35:56,416 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,416 [salt.loaded.int.module.win_pkg:1213][DEBUG ][1872] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:35:56,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:35:56,431 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:35:56,431 [salt.template :59 ][DEBUG ][1872] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:35:56,431 [salt.utils.jinja :85 ][DEBUG ][1872] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:35:56,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:35:56,431 [salt.template :120 ][DEBUG ][1872] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +# only 32-bit (x86) installer available + + + +zipinstaller: + '1.21': + full_name: 'ZipInstaller' + installer: 'salt://win/repo-ng/zipinstaller/zipinst.exe' + + install_flags: '/i zipinst_x64.zip' + + uninstaller: 'zipinst.exe' + uninstall_flags: '/uninst "c:\utl\uninst1~.nsu"' + msiexec: False + locale: en_US + reboot: False + cache_dir: True +# Description: +# This is a 32-bit zip archive program installer that installes directly from zip archives and creates shortcuts and un-install entries +# automatically, exactly as defined in a simple '~zipinst~.zic' if it finds it inside the zip archive. +# +# All it takes is calling up 'zipinst.exe /i .zip' that contains a file called '~zipinst~.zic', which itself is in *.ini file +# format and contains, directives about where it should install etc. +# +# Source: +# http://www.nirsoft.net/utils/zipinst.html +# http://www.nirsoft.net/utils/zipinst.exe +# http://www.nirsoft.net/utils/zipinst.zip (need to add '~zipinst~.zic' to it) +# you have to insert the '~zipinst~.zic' file into the 'zipinst.zip' file +# and place the resulting zipinst.zip into the 'salt://win/repo-ng/zipinstaller/' on your master +# as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache +# + +2020-03-06 10:35:56,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][1872] Results of YAML rendering: +OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) +2020-03-06 10:35:56,431 [salt.template :26 ][PROFILE ][1872] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:35:56,448 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:35:56,462 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:35:56,496 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: Volume in drive C is Windows 10 + Volume Serial Number is A0C4-95E5 + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + +03/06/2020 01:35 PM . +03/06/2020 01:35 PM .. +03/06/2020 01:35 PM 927 7zip.sls +03/06/2020 01:35 PM 723 activeperl_x64.sls +03/06/2020 01:35 PM 973 activeperl_x86.sls +03/06/2020 01:35 PM 798 adobeair.sls +03/06/2020 01:35 PM 956 adobereader-dc-classic.sls +03/06/2020 01:35 PM 851 adobereader-xi.sls +03/06/2020 01:35 PM 830 adobereader.sls +03/06/2020 01:35 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:35 PM 775 adv-ip-scanner.sls +03/06/2020 01:35 PM 787 adv-port-scanner.sls +03/06/2020 01:35 PM 769 advancedlogging.sls +03/06/2020 01:35 PM 373 anydesk-msi.sls +03/06/2020 01:35 PM 597 anydesk.sls +03/06/2020 01:35 PM 803 applicationrequestrouting.sls +03/06/2020 01:35 PM 370 aspnet-mvc1.sls +03/06/2020 01:35 PM 439 atom.sls +03/06/2020 01:35 PM 655 audacity.sls +03/06/2020 01:35 PM auditbeat +03/06/2020 01:35 PM 1,768 autohotkey.sls +03/06/2020 01:35 PM 611 autoit.sls +03/06/2020 01:35 PM 670 autopsy.sls +03/06/2020 01:35 PM 659 awscli.sls +03/06/2020 01:35 PM 799 azuredatastudio.sls +03/06/2020 01:35 PM 422 bandizip.sls +03/06/2020 01:35 PM 563 belarc-advisor.sls +03/06/2020 01:35 PM 367 bginfo4x.sls +03/06/2020 01:35 PM 547 bitnami-nginxstack.sls +03/06/2020 01:35 PM 568 bitvise.sls +03/06/2020 01:35 PM 777 blender.sls +03/06/2020 01:35 PM 395 bootracer.sls +03/06/2020 01:35 PM 664 bulkrenameutility.sls +03/06/2020 01:35 PM 661 bulk_extractor.sls +03/06/2020 01:35 PM 476 ccleaner-slim.sls +03/06/2020 01:35 PM 445 ccleaner.sls +03/06/2020 01:35 PM 606 cdburnerxp.sls +03/06/2020 01:35 PM 594 cdroller.sls +03/06/2020 01:35 PM 658 check-mk-agent-msi.sls +03/06/2020 01:35 PM 451 check-mk-agent.sls +03/06/2020 01:35 PM chocolatey +03/06/2020 01:35 PM 394 chrome-rdp.sls +03/06/2020 01:35 PM 375 chrome.sls +03/06/2020 01:35 PM 1,296 clamav.sls +03/06/2020 01:35 PM 1,200 clamwin.sls +03/06/2020 01:35 PM 500 classicshell.sls +03/06/2020 01:35 PM 1,521 clink.sls +03/06/2020 01:35 PM 617 conemu.sls +03/06/2020 01:35 PM 687 cpu-z.sls +03/06/2020 01:35 PM 2,833 curl.sls +03/06/2020 01:35 PM 374 cyberduck-cli.sls +03/06/2020 01:35 PM 616 cyberduck-msi.sls +03/06/2020 01:35 PM 639 cyberduck.sls +03/06/2020 01:35 PM 751 defraggler.sls +03/06/2020 01:35 PM 2,637 dotnet.sls +03/06/2020 01:35 PM 643 dropbox.sls +03/06/2020 01:35 PM 683 duplicati.sls +03/06/2020 01:35 PM 712 dvdstyler.sls +03/06/2020 01:35 PM 737 echo-desktop.sls +03/06/2020 01:35 PM 1,327 eea.sls +03/06/2020 01:35 PM 423 emet.sls +03/06/2020 01:35 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:35 PM 721 eraser.sls +03/06/2020 01:35 PM erlang +03/06/2020 01:35 PM 982 evernote.sls +03/06/2020 01:35 PM 531 fiddler.sls +03/06/2020 01:35 PM filebeat +03/06/2020 01:35 PM 660 filehippo-app-manager.sls +03/06/2020 01:35 PM 1,271 filezilla.sls +03/06/2020 01:35 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:35 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:35 PM 1,365 firefox_x64.sls +03/06/2020 01:35 PM 1,870 firefox_x86.sls +03/06/2020 01:35 PM functionbeat +03/06/2020 01:35 PM 552 gedit.sls +03/06/2020 01:35 PM 822 gimp.sls +03/06/2020 01:35 PM 953 git-extensions.sls +03/06/2020 01:35 PM 3,855 git.sls +03/06/2020 01:35 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:35 PM 563 gnucash.sls +03/06/2020 01:35 PM 2,152 golang.sls +03/06/2020 01:35 PM 320 goodsync.sls +03/06/2020 01:35 PM 601 gow.sls +03/06/2020 01:35 PM gpg4win +03/06/2020 01:35 PM 847 gpg4win-light.sls +03/06/2020 01:35 PM 621 gpg4win-vanilla.sls +03/06/2020 01:35 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:35 PM 2,661 grepwin.sls +03/06/2020 01:35 PM 505 gvim.sls +03/06/2020 01:35 PM 622 handbrake.sls +03/06/2020 01:35 PM heartbeat +03/06/2020 01:35 PM 503 hipchat.sls +03/06/2020 01:35 PM 771 hostsfileeditor.sls +03/06/2020 01:35 PM 623 hwinfo.sls +03/06/2020 01:35 PM 339 ice.sls +03/06/2020 01:35 PM 493 icecast.sls +03/06/2020 01:35 PM 377 icloud.sls +03/06/2020 01:35 PM 2,197 iismediaservices.sls +03/06/2020 01:35 PM 358 influx-capacitor.sls +03/06/2020 01:35 PM 644 inkscape.sls +03/06/2020 01:35 PM 646 intellij-community.sls +03/06/2020 01:35 PM 618 intellij-ultimate.sls +03/06/2020 01:35 PM 360 internet-evidence-finder.sls +03/06/2020 01:35 PM 702 irfanview-plugins.sls +03/06/2020 01:35 PM 1,610 irfanview.sls +03/06/2020 01:35 PM 697 isapirewrite-lite.sls +03/06/2020 01:35 PM 2,602 itunes.sls +03/06/2020 01:35 PM 1,279 jdk8.sls +03/06/2020 01:35 PM 1,200 jre.sls +03/06/2020 01:35 PM 1,480 jre8.sls +03/06/2020 01:35 PM 995 jungledisk-server-management.sls +03/06/2020 01:35 PM 891 jungledisk-server.sls +03/06/2020 01:35 PM 921 jungledisk-workgroup.sls +03/06/2020 01:35 PM 518 kdiff3.sls +03/06/2020 01:35 PM 1,091 keepass-2x.sls +03/06/2020 01:35 PM 2,655 keepass.sls +03/06/2020 01:35 PM 673 lastpass.sls +03/06/2020 01:35 PM 1,329 lazarus.sls +03/06/2020 01:35 PM 951 libreoffice.sls +03/06/2020 01:35 PM 419 logparser.sls +03/06/2020 01:35 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:35 PM 722 malwarebytes.sls +03/06/2020 01:35 PM 1,884 mariadb.sls +03/06/2020 01:35 PM 653 mercurial.sls +03/06/2020 01:35 PM 649 messageanalyzer.sls +03/06/2020 01:35 PM metricbeat +03/06/2020 01:35 PM 603 microsoft-build-tools.sls +03/06/2020 01:35 PM 317 mikogo.sls +03/06/2020 01:35 PM 766 miktex-basic.sls +03/06/2020 01:35 PM 787 mongodb.sls +03/06/2020 01:35 PM 831 ms-mbsa.sls +03/06/2020 01:35 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:35 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:35 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:35 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:35 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:35 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:35 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:35 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:35 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:35 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:35 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:35 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:35 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:35 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:35 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:35 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:35 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:35 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:35 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:35 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:35 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:35 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:35 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:35 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:35 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:35 PM 585 mucommander.sls +03/06/2020 01:35 PM 638 mysql-essential.sls +03/06/2020 01:35 PM 632 mysql-installer-community.sls +03/06/2020 01:35 PM 639 mysql-workbench.sls +03/06/2020 01:35 PM 298 never10.sls +03/06/2020 01:35 PM 929 newrelic-infra.sls +03/06/2020 01:35 PM 526 nextcloud-client.sls +03/06/2020 01:35 PM 584 nmap.sls +03/06/2020 01:35 PM 709 node.js-lts.sls +03/06/2020 01:35 PM 733 node.js.sls +03/06/2020 01:35 PM 368 nomacs.sls +03/06/2020 01:35 PM 985 npp.sls +03/06/2020 01:35 PM 1,252 nsclient.sls +03/06/2020 01:35 PM 826 nsis.sls +03/06/2020 01:35 PM 902 ntp.sls +03/06/2020 01:35 PM 793 nunit-console.sls +03/06/2020 01:35 PM 363 nxlog.sls +03/06/2020 01:35 PM 1,081 octopus-tentacle.sls +03/06/2020 01:35 PM 678 openlp.sls +03/06/2020 01:35 PM 1,192 openoffice.sls +03/06/2020 01:35 PM 2,130 openvpn.sls +03/06/2020 01:35 PM 587 osquery.sls +03/06/2020 01:35 PM 878 ossec-agent.sls +03/06/2020 01:35 PM 590 owncloud.sls +03/06/2020 01:35 PM packetbeat +03/06/2020 01:35 PM 400 pandoc.sls +03/06/2020 01:35 PM 814 parallels-client-15.sls +03/06/2020 01:35 PM 1,709 pass4win.sls +03/06/2020 01:35 PM 378 passware-kit-agent.sls +03/06/2020 01:35 PM 416 passware-kit-forensic.sls +03/06/2020 01:35 PM 656 patchmypc-free.sls +03/06/2020 01:35 PM 638 pdf24creator.sls +03/06/2020 01:35 PM 567 pdfcreator.sls +03/06/2020 01:35 PM 611 peazip.sls +03/06/2020 01:35 PM 812 pgadmin4.sls +03/06/2020 01:35 PM 235 pgina.sls +03/06/2020 01:35 PM 617 pidgin.sls +03/06/2020 01:35 PM 1,898 postgresql.sls +03/06/2020 01:35 PM 997 powerbi-desktop.sls +03/06/2020 01:35 PM 864 powershell-core.sls +03/06/2020 01:35 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:35 PM 1,488 putty.sls +03/06/2020 01:35 PM pycharm-pro +03/06/2020 01:35 PM 567 python2_x64.sls +03/06/2020 01:35 PM 526 python2_x86.sls +03/06/2020 01:35 PM 1,540 python3_x64.sls +03/06/2020 01:35 PM 1,435 python3_x86.sls +03/06/2020 01:35 PM 449 qemu.sls +03/06/2020 01:35 PM 562 queueexplorerpro.sls +03/06/2020 01:35 PM 1,542 quicktime.sls +03/06/2020 01:35 PM 495 rabbitmq.sls +03/06/2020 01:35 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:35 PM 375 rakudo-star_x64.sls +03/06/2020 01:35 PM 888 rasclient.sls +03/06/2020 01:35 PM 444 rdcman.sls +03/06/2020 01:35 PM 609 rocketchat.sls +03/06/2020 01:35 PM 526 rubyinstaller_x64.sls +03/06/2020 01:35 PM 551 rubyinstaller_x86.sls +03/06/2020 01:35 PM 3,719 salt-minion-py2.sls +03/06/2020 01:35 PM 2,050 salt-minion-py3.sls +03/06/2020 01:35 PM 562 sandboxie.sls +03/06/2020 01:35 PM 581 scaleout.sls +03/06/2020 01:35 PM 476 secunia.psi.sls +03/06/2020 01:35 PM 1,190 sensu.sls +03/06/2020 01:35 PM 1,827 sharpdevelop.sls +03/06/2020 01:35 PM 539 skitch.sls +03/06/2020 01:35 PM 1,533 skype-msi.sls +03/06/2020 01:35 PM 708 skype.sls +03/06/2020 01:35 PM 1,244 slack-machine-msi.sls +03/06/2020 01:35 PM 1,023 slack-user-msi.sls +03/06/2020 01:35 PM 329 slack.sls +03/06/2020 01:35 PM 591 smartmontools.sls +03/06/2020 01:35 PM 556 snmptools.sls +03/06/2020 01:35 PM 653 soapui.sls +03/06/2020 01:35 PM 623 software-informer.sls +03/06/2020 01:35 PM 1,039 sourcetree.sls +03/06/2020 01:35 PM 591 spybot-anti-beacon.sls +03/06/2020 01:35 PM 765 spybot.sls +03/06/2020 01:35 PM 664 sscserv-free.sls +03/06/2020 01:35 PM stayawake +03/06/2020 01:35 PM 443 steam.sls +03/06/2020 01:35 PM 658 stellarium.sls +03/06/2020 01:35 PM 540 strawberryperl_x64.sls +03/06/2020 01:35 PM 531 strawberryperl_x86.sls +03/06/2020 01:35 PM 521 stunnel.sls +03/06/2020 01:35 PM 398 subinacl.sls +03/06/2020 01:35 PM 467 sumatrapdf.sls +03/06/2020 01:35 PM 769 svn.sls +03/06/2020 01:35 PM 534 teamviewer.sls +03/06/2020 01:35 PM 549 teamviewer_host.sls +03/06/2020 01:35 PM 749 teracopy.sls +03/06/2020 01:35 PM 491 texmaker.sls +03/06/2020 01:35 PM 709 texniccenter.sls +03/06/2020 01:35 PM 639 texstudio.sls +03/06/2020 01:35 PM 643 texworks.sls +03/06/2020 01:35 PM 937 thunderbird.sls +03/06/2020 01:35 PM 1,014 tightvnc.sls +03/06/2020 01:35 PM 623 todotxt.net.sls +03/06/2020 01:35 PM 551 todour.sls +03/06/2020 01:35 PM 630 tortoise-bzr.sls +03/06/2020 01:35 PM 983 tortoise-git.sls +03/06/2020 01:35 PM 1,367 tortoise-hg.sls +03/06/2020 01:35 PM 897 tortoise-svn.sls +03/06/2020 01:35 PM 503 truecrypt.sls +03/06/2020 01:35 PM 662 ultradefrag.sls +03/06/2020 01:35 PM 1,598 urlrewrite.sls +03/06/2020 01:35 PM 560 usbdlm.sls +03/06/2020 01:35 PM 1,361 vagrant.sls +03/06/2020 01:35 PM 479 vcforpython27.sls +03/06/2020 01:35 PM 820 vcxsrv.sls +03/06/2020 01:35 PM 434 verysleepy.sls +03/06/2020 01:35 PM 611 veyon.sls +03/06/2020 01:35 PM 2,570 virtualbox.sls +03/06/2020 01:35 PM 794 viscosity.sls +03/06/2020 01:35 PM 657 vivaldi.sls +03/06/2020 01:35 PM 739 vlc.sls +03/06/2020 01:35 PM 713 vs-community.sls +03/06/2020 01:35 PM 1,388 vscode.sls +03/06/2020 01:35 PM 325 vsee.sls +03/06/2020 01:35 PM 640 vs_remotetools_2017.sls +03/06/2020 01:35 PM 835 wamp-server-3.sls +03/06/2020 01:35 PM 585 wamp-stack.sls +03/06/2020 01:35 PM 775 webdeploy.sls +03/06/2020 01:35 PM 842 webplatforminstaller.sls +03/06/2020 01:35 PM 610 win-app-manager.sls +03/06/2020 01:35 PM 467 windirstat.sls +03/06/2020 01:35 PM 468 winhttpcertcfg.sls +03/06/2020 01:35 PM winlogbeat +03/06/2020 01:35 PM 618 winmerge.sls +03/06/2020 01:35 PM 737 winmtr.sls +03/06/2020 01:35 PM 288 winpcap.sls +03/06/2020 01:35 PM 825 winrar.sls +03/06/2020 01:35 PM 828 winscp.sls +03/06/2020 01:35 PM 1,136 wireshark.sls +03/06/2020 01:35 PM wmi_provider +03/06/2020 01:35 PM 539 wscc.sls +03/06/2020 01:35 PM 726 wufuc.sls +03/06/2020 01:35 PM 352 xampp.sls +03/06/2020 01:35 PM 649 xming.sls +03/06/2020 01:35 PM 621 yubikey-manager.sls +03/06/2020 01:35 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:35 PM 1,119 zabbix-agent.sls +03/06/2020 01:35 PM zipinstaller +03/06/2020 01:35 PM 278 zoom.sls + 284 File(s) 232,192 bytes + 16 Dir(s) 41,718,239,232 bytes free +2020-03-06 10:35:56,496 [salt.state :938 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:35:56,496 [salt.state :320 ][INFO ][1872] {'pkg.refresh_db': {'success': 298, 'total': 298, 'failed': 0}} +2020-03-06 10:35:56,496 [salt.state :1997][INFO ][1872] Completed state [pkg.refresh_db] at time 10:35:56.496299 (duration_in_ms=10329.756) +2020-03-06 10:35:56,518 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:35:56,528 [salt.state :1819][INFO ][1872] Running state [kdiff3] at time 10:35:56.528845 +2020-03-06 10:35:56,528 [salt.state :1852][INFO ][1872] Executing state pkg.installed for [kdiff3] +2020-03-06 10:35:56,541 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:35:56,541 [salt.loaded.int.module.win_pkg:802 ][INFO ][1872] Refresh skipped, age of winrepo metadata in seconds (0.09327554702758789) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:35:56,541 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.093276) +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,634 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,650 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,650 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:35:56,670 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:35:56,686 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:35:56,686 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.238188) +2020-03-06 10:35:56,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:35:56,698 [salt.utils.http :234 ][DEBUG ][1872] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:35:56,698 [salt.utils.http :235 ][DEBUG ][1872] Using backend: tornado +2020-03-06 10:36:16,575 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:36:17,587 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.139829) +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,619 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,619 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:36:17,619 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.171595) +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,635 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,651 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,651 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,651 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,651 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:17,651 [salt.state :320 ][INFO ][1872] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:36:17,651 [salt.state :1000][DEBUG ][1872] Refreshing modules... +2020-03-06 10:36:17,666 [salt.state :966 ][INFO ][1872] Loading fresh modules for state activity +2020-03-06 10:36:17,730 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:36:17,730 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:36:17,730 [salt.state :1997][INFO ][1872] Completed state [kdiff3] at time 10:36:17.730181 (duration_in_ms=21201.336) +2020-03-06 10:36:17,730 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded config.option +2020-03-06 10:36:17,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pkg.install +2020-03-06 10:36:17,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pkg.installed +2020-03-06 10:36:17,744 [salt.state :1819][INFO ][1872] Running state [git] at time 10:36:17.744372 +2020-03-06 10:36:17,744 [salt.state :1852][INFO ][1872] Executing state pkg.installed for [git] +2020-03-06 10:36:18,135 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt.secret_key, ret: _|- +2020-03-06 10:36:18,135 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt:secret_key, ret: _|- +2020-03-06 10:36:18,338 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet.api_key, ret: _|- +2020-03-06 10:36:18,338 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet:api_key, ret: _|- +2020-03-06 10:36:18,463 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded reg.read_value +2020-03-06 10:36:18,557 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops.api_key, ret: _|- +2020-03-06 10:36:18,557 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops:api_key, ret: _|- +2020-03-06 10:36:22,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded platform.is_windows +2020-03-06 10:36:22,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded path.which +2020-03-06 10:36:22,713 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:36:22,713 [salt.loaded.int.module.win_pkg:802 ][INFO ][1872] Refresh skipped, age of winrepo metadata in seconds (26.26518678665161) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:36:22,713 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:26.265187) +2020-03-06 10:36:22,713 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,728 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,745 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:36:22,761 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:36:22,775 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:36:22,775 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:26.327718) +2020-03-06 10:36:22,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:22,807 [salt.utils.http :234 ][DEBUG ][1872] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:36:22,807 [salt.utils.http :235 ][DEBUG ][1872] Using backend: tornado +2020-03-06 10:36:26,541 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:36:45,526 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:49.078259) +2020-03-06 10:36:45,541 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,541 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,541 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,541 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,541 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,557 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,573 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:36:45,573 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:49.125565) +2020-03-06 10:36:45,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,587 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:45,603 [salt.state :320 ][INFO ][1872] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' + +2020-03-06 10:36:45,603 [salt.state :1000][DEBUG ][1872] Refreshing modules... +2020-03-06 10:36:45,650 [salt.state :966 ][INFO ][1872] Loading fresh modules for state activity +2020-03-06 10:36:45,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:36:45,729 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:36:45,729 [salt.state :1997][INFO ][1872] Completed state [git] at time 10:36:45.729424 (duration_in_ms=27985.052) +2020-03-06 10:36:45,744 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded config.option +2020-03-06 10:36:45,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pkg.install +2020-03-06 10:36:45,760 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pkg.installed +2020-03-06 10:36:45,760 [salt.state :1819][INFO ][1872] Running state [7zip] at time 10:36:45.760307 +2020-03-06 10:36:45,760 [salt.state :1852][INFO ][1872] Executing state pkg.installed for [7zip] +2020-03-06 10:36:46,525 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt.secret_key, ret: _|- +2020-03-06 10:36:46,525 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt:secret_key, ret: _|- +2020-03-06 10:36:46,869 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet.api_key, ret: _|- +2020-03-06 10:36:46,869 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet:api_key, ret: _|- +2020-03-06 10:36:47,087 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded reg.read_value +2020-03-06 10:36:47,229 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops.api_key, ret: _|- +2020-03-06 10:36:47,229 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops:api_key, ret: _|- +2020-03-06 10:36:53,040 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded platform.is_windows +2020-03-06 10:36:53,041 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded path.which +2020-03-06 10:36:53,072 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:36:53,072 [salt.loaded.int.module.win_pkg:802 ][INFO ][1872] Refresh skipped, age of winrepo metadata in seconds (56.6246292591095) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:36:53,072 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:56.624629) +2020-03-06 10:36:53,072 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,072 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,104 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:36:53,120 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:36:53,135 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:36:53,135 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:00:56.687094) +2020-03-06 10:36:53,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:53,150 [salt.utils.http :234 ][DEBUG ][1872] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:36:53,150 [salt.utils.http :235 ][DEBUG ][1872] Using backend: tornado +2020-03-06 10:36:56,656 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:36:57,152 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:01:00.703950) +2020-03-06 10:36:57,152 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,152 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,182 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:36:57,182 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][1872] Using existing pkg metadata db for saltenv 'base' (age is 0:01:00.734273) +2020-03-06 10:36:57,182 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,182 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][1872] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 10:36:57,213 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:36:57,233 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:36:57,233 [salt.state :320 ][INFO ][1872] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 10:36:57,233 [salt.state :1000][DEBUG ][1872] Refreshing modules... +2020-03-06 10:36:57,262 [salt.state :966 ][INFO ][1872] Loading fresh modules for state activity +2020-03-06 10:36:57,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded jinja.render +2020-03-06 10:36:57,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded yaml.render +2020-03-06 10:36:57,306 [salt.state :1997][INFO ][1872] Completed state [7zip] at time 10:36:57.306947 (duration_in_ms=11546.64) +2020-03-06 10:36:57,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded config.option +2020-03-06 10:36:57,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded module.run +2020-03-06 10:36:57,322 [salt.state :1819][INFO ][1872] Running state [windows_environment.refresh.path] at time 10:36:57.322405 +2020-03-06 10:36:57,322 [salt.state :1852][INFO ][1872] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:36:57,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded windows_environment.refresh +2020-03-06 10:36:57,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cmd.run +2020-03-06 10:36:57,322 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:36:57,338 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:36:57,338 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1872] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:36:57,354 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded environ.get +2020-03-06 10:36:57,354 [py.warnings :919 ][WARNING ][1872] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 10:36:57,354 [py.warnings :919 ][WARNING ][1872] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 10:36:57,354 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded event.fire +2020-03-06 10:36:57,354 [salt.utils.event :322 ][DEBUG ][1872] SaltEvent PUB socket URI: 4510 +2020-03-06 10:36:57,354 [salt.utils.event :323 ][DEBUG ][1872] SaltEvent PULL socket URI: 4511 +2020-03-06 10:36:57,354 [salt.utils.event :737 ][DEBUG ][1872] Sending event: tag = environ_setenv; data = {'false_unsets': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'permanent': False, 'clear_all': False, '_stamp': '2020-03-06T18:36:57.354828'} +2020-03-06 10:36:57,354 [salt.transport.ipc:364 ][DEBUG ][1872] Closing IPCMessageClient instance +2020-03-06 10:36:57,354 [salt.state :320 ][INFO ][1872] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:36:57,354 [salt.state :1997][INFO ][1872] Completed state [windows_environment.refresh.path] at time 10:36:57.354828 (duration_in_ms=32.423) +2020-03-06 10:36:57,354 [salt.state :1819][INFO ][1872] Running state [chocolatey.bootstrap] at time 10:36:57.354828 +2020-03-06 10:36:57,354 [salt.state :1852][INFO ][1872] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:36:57,759 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt.secret_key, ret: _|- +2020-03-06 10:36:57,759 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: ifttt:secret_key, ret: _|- +2020-03-06 10:36:57,979 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet.api_key, ret: _|- +2020-03-06 10:36:57,979 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: pushbullet:api_key, ret: _|- +2020-03-06 10:36:58,136 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded reg.read_value +2020-03-06 10:36:58,212 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops.api_key, ret: _|- +2020-03-06 10:36:58,212 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: victorops:api_key, ret: _|- +2020-03-06 10:37:03,587 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded platform.is_windows +2020-03-06 10:37:03,587 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded path.which +2020-03-06 10:37:03,619 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:37:03,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded apache.config +2020-03-06 10:37:03,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded apache.a2enconf +2020-03-06 10:37:03,666 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded apache.a2ensite +2020-03-06 10:37:03,682 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:37:03,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:37:03,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:37:03,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:37:03,682 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_asg.exists +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cfn.exists +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:37:03,697 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_dynamodb.exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_ec2.get_key +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elasticache.exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elb.exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_iam.get_user +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_iam.role_exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_iot.policy_exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_kinesis.exists +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_kms.describe_key +2020-03-06 10:37:03,713 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_lambda.function_exists +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_asg.exists +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_rds.exists +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_route53.get_record +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_secgroup.exists +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_sns.exists +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_sqs.exists +2020-03-06 10:37:03,731 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded boto_vpc.exists +2020-03-06 10:37:03,745 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded bower.list +2020-03-06 10:37:03,745 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded chef.client +2020-03-06 10:37:03,745 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cimc.get_system_info +2020-03-06 10:37:03,745 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded cisconso.set_data_value +2020-03-06 10:37:03,745 [salt.loader :1577][DEBUG ][1872] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 10:37:03,761 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded ddns.update +2020-03-06 10:37:03,761 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded chassis.cmd +2020-03-06 10:37:03,761 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:37:03,778 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:37:03,794 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:37:03,810 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:37:03,994 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded esxi.cmd +2020-03-06 10:37:04,010 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:04,041 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: git version 2.23.0.windows.1 +2020-03-06 10:37:04,056 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded github.list_users +2020-03-06 10:37:04,056 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded glanceng.image_get +2020-03-06 10:37:04,056 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded elasticsearch.exists +2020-03-06 10:37:04,056 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: grafana_version, ret: _|- +2020-03-06 10:37:04,056 [salt.loaded.int.module.config:398 ][DEBUG ][1872] key: grafana_version, ret: _|- +2020-03-06 10:37:04,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded icinga2.generate_ticket +2020-03-06 10:37:04,072 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded ifttt.trigger_event +2020-03-06 10:37:04,088 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:37:04,103 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:37:04,103 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:37:04,119 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:37:04,134 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:37:04,151 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:37:04,166 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:37:04,166 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.domain_get +2020-03-06 10:37:04,180 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:37:04,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.group_get +2020-03-06 10:37:04,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.project_get +2020-03-06 10:37:04,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.role_get +2020-03-06 10:37:04,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.role_grant +2020-03-06 10:37:04,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.service_get +2020-03-06 10:37:04,182 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded keystoneng.user_get +2020-03-06 10:37:04,197 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:37:04,213 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:37:04,228 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 10:37:04,244 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 10:37:04,259 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:37:04,276 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 10:37:04,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:37:04,276 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:37:04,290 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:37:04,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded lxd.version +2020-03-06 10:37:04,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded memcached.status +2020-03-06 10:37:04,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mongodb.db_exists +2020-03-06 10:37:04,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mongodb.user_exists +2020-03-06 10:37:04,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:37:04,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:37:04,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:37:04,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded mssql.version +2020-03-06 10:37:04,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_networks +2020-03-06 10:37:04,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_subnets +2020-03-06 10:37:04,306 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_subnets +2020-03-06 10:37:04,323 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded neutronng.list_subnets +2020-03-06 10:37:04,323 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded npm.list +2020-03-06 10:37:04,323 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nxos.cmd +2020-03-06 10:37:04,338 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 10:37:04,353 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 10:37:04,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded panos.commit +2020-03-06 10:37:04,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pdbedit.create +2020-03-06 10:37:04,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded pecl.list +2020-03-06 10:37:04,385 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:37:04,400 [salt.loader :1577][DEBUG ][1872] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.cluster_exists +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.user_exists +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.create_extension +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.group_create +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.datadir_init +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.language_create +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.privileges_grant +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.schema_exists +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.tablespace_exists +2020-03-06 10:37:04,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded postgres.user_exists +2020-03-06 10:37:04,449 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:37:04,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded selinux.getenforce +2020-03-06 10:37:04,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded splunk.list_users +2020-03-06 10:37:04,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded splunk_search.get +2020-03-06 10:37:04,494 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:37:04,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded tomcat.status +2020-03-06 10:37:04,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded vagrant.version +2020-03-06 10:37:04,494 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded victorops.create_event +2020-03-06 10:37:04,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded win_iis.create_site +2020-03-06 10:37:04,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded win_servermanager.install +2020-03-06 10:37:04,510 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:37:04,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded wordpress.show_plugin +2020-03-06 10:37:04,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded x509.get_pem_entry +2020-03-06 10:37:04,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded xmpp.send_msg +2020-03-06 10:37:04,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded zk_concurrency.lock +2020-03-06 10:37:04,525 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded zonecfg.create +2020-03-06 10:37:04,540 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded zookeeper.create +2020-03-06 10:37:04,541 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:37:04,541 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:37:04,717 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:37:04,717 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][1872] retcode: 1 +2020-03-06 10:37:04,717 [salt.state :915 ][DEBUG ][1872] Last command return code: 1 +2020-03-06 10:37:04,717 [salt.utils.http :234 ][DEBUG ][1872] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:37:04,726 [salt.utils.http :235 ][DEBUG ][1872] Using backend: tornado +2020-03-06 10:37:04,900 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:11,735 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: Preparing: C:\55e7ed0a73d12b996c128b8192c3\header.bmp... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\SplashScreen.bmp... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\watermark.bmp... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\DisplayIcon.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Print.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate1.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate2.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate3.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate4.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate5.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate6.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate7.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Rotate8.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Save.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\Setup.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\stop.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\SysReqMet.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\SysReqNotMet.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Graphics\warn.ico... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1033\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1042\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1041\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1037\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1025\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1035\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1030\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1044\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1043\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1040\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1029\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1031\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1036\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1032\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1038\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\2052\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1028\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\3076\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1055\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1053\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\3082\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\2070\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1046\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1049\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1045\LocalizedData.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Client\Parameterinfo.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Extended\Parameterinfo.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\ParameterInfo.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Strings.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\UiInfo.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Client\UiInfo.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Extended\UiInfo.xml... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\SetupUi.xsd... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\DHtmlHeader.html... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1033\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1025\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1028\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1030\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1031\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1029\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1036\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1035\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1032\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1038\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1037\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1040\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1041\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1042\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1044\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1043\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1046\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1045\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1055\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1053\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\2052\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1049\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\3082\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\2070\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\3076\eula.rtf... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\Setup.exe... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\SetupUtility.exe... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\SetupEngine.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1025\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1033\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1029\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1030\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1035\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1031\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1036\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1032\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1028\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\2052\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\3076\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1042\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1041\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1037\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1044\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1053\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1055\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1040\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1045\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1046\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1049\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1038\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\2070\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\3082\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\1043\SetupResources.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\SetupUi.dll... +Preparing: C:\55e7ed0a73d12b996c128b8192c3\sqmapi.dll... +2020-03-06 10:37:11,743 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:37:22,228 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: Getting latest version of the Chocolatey package for download. +Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +Downloading 7-Zip commandline tool prior to extraction. +Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +Installing chocolatey on this machine +Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. +Restricting write permissions to Administrators +We are setting up the Chocolatey package repository. +The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + +Creating Chocolatey folders if they do not already exist. + +WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. +chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. +PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +WARNING: Not setting tab completion: Profile file does not exist at +'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +Chocolatey (choco.exe) is now ready. +You can call choco from anywhere, command line or powershell by typing choco. +Run choco /? for a list of functions. +You may need to shut down and restart powershell and/or consoles + first prior to using choco. +Ensuring chocolatey commands are on the path +Ensuring chocolatey.nupkg is in the lib folder +2020-03-06 10:37:22,228 [salt.state :320 ][INFO ][1872] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:37:22,228 [salt.state :1997][INFO ][1872] Completed state [chocolatey.bootstrap] at time 10:37:22.228661 (duration_in_ms=24873.833) +2020-03-06 10:37:22,228 [salt.state :1819][INFO ][1872] Running state [windirstat] at time 10:37:22.228661 +2020-03-06 10:37:22,228 [salt.state :1852][INFO ][1872] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:37:22,228 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:23,463 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: chocolatey|0.10.15 +2020-03-06 10:37:23,478 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:24,182 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: 0.10.15 +2020-03-06 10:37:24,182 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1872] output: 0.10.15 +2020-03-06 10:37:24,182 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:31,634 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:37:31,634 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:32,572 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:37:32,572 [salt.state :320 ][INFO ][1872] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 10:37:32,572 [salt.state :1997][INFO ][1872] Completed state [windirstat] at time 10:37:32.572350 (duration_in_ms=10343.689) +2020-03-06 10:37:32,572 [salt.state :1819][INFO ][1872] Running state [notepadplusplus] at time 10:37:32.572350 +2020-03-06 10:37:32,587 [salt.state :1852][INFO ][1872] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:37:32,587 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:33,525 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:37:33,525 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:43,807 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +notepadplusplus +By installing you accept licenses for the packages. + +chocolatey-core.extension v1.3.5.1 [Approved] +chocolatey-core.extension package files install completed. Performing other installation steps. + Installed/updated chocolatey-core extensions. + The install of chocolatey-core.extension was successful. + Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' + +notepadplusplus.install v7.8.5 +notepadplusplus.install package files install completed. Performing other installation steps. +Installing 64-bit notepadplusplus.install... +notepadplusplus.install has been installed. +notepadplusplus.install installed to 'C:\Program Files\Notepad++' +Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program files\notepad++\notepad++.exe'. + notepadplusplus.install may be able to be automatically uninstalled. + The install of notepadplusplus.install was successful. + Software installed as 'exe', install location is likely default. + +notepadplusplus v7.8.5 [Approved] +notepadplusplus package files install completed. Performing other installation steps. + The install of notepadplusplus was successful. + Software install location not explicitly set, could be in package or + default install location if installer. + +Chocolatey installed 3/3 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:37:43,807 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:44,697 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +windirstat|1.1.2.20161210 +2020-03-06 10:37:44,697 [salt.state :320 ][INFO ][1872] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:37:44,713 [salt.state :1997][INFO ][1872] Completed state [notepadplusplus] at time 10:37:44.713038 (duration_in_ms=12140.688) +2020-03-06 10:37:44,713 [salt.state :1819][INFO ][1872] Running state [TelnetClient] at time 10:37:44.713038 +2020-03-06 10:37:44,713 [salt.state :1852][INFO ][1872] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:37:44,713 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:37:44,713 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:37:47,603 [salt.state :889 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:37:47,604 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:49,056 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18363.657 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.657 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +The operation completed successfully. +2020-03-06 10:37:49,056 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1872] output: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18363.657 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.657 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Disabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +The operation completed successfully. +2020-03-06 10:37:49,056 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:50,276 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:37:51,979 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][1872] stdout: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18363.657 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.657 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +The operation completed successfully. +2020-03-06 10:37:51,979 [salt.loaded.int.module.cmdmod:1202][DEBUG ][1872] output: +Deployment Image Servicing and Management tool +Version: 10.0.18362.1 + +Image Version: 10.0.18363.657 + +Features listing for package : Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.18362.657 + +Feature Name : Printing-PrintToPDFServices-Features +State : Enabled + +Feature Name : Printing-XPSServices-Features +State : Enabled + +Feature Name : SearchEngine-Client-Package +State : Enabled + +Feature Name : MSRDC-Infrastructure +State : Enabled + +Feature Name : TelnetClient +State : Enabled + +Feature Name : TFTP +State : Disabled + +Feature Name : TIFFIFilter +State : Disabled + +Feature Name : LegacyComponents +State : Disabled + +Feature Name : DirectPlay +State : Disabled + +Feature Name : SimpleTCP +State : Disabled + +Feature Name : Client-ProjFS +State : Disabled + +Feature Name : NetFx4-AdvSrvs +State : Enabled + +Feature Name : NetFx4Extended-ASPNET45 +State : Disabled + +Feature Name : WCF-Services45 +State : Enabled + +Feature Name : WCF-HTTP-Activation45 +State : Disabled + +Feature Name : WCF-TCP-Activation45 +State : Disabled + +Feature Name : WCF-Pipe-Activation45 +State : Disabled + +Feature Name : WCF-MSMQ-Activation45 +State : Disabled + +Feature Name : WCF-TCP-PortSharing45 +State : Enabled + +Feature Name : IIS-WebServerRole +State : Disabled + +Feature Name : IIS-WebServer +State : Disabled + +Feature Name : IIS-CommonHttpFeatures +State : Disabled + +Feature Name : IIS-HttpErrors +State : Disabled + +Feature Name : IIS-HttpRedirect +State : Disabled + +Feature Name : IIS-ApplicationDevelopment +State : Disabled + +Feature Name : IIS-NetFxExtensibility +State : Disabled + +Feature Name : IIS-NetFxExtensibility45 +State : Disabled + +Feature Name : IIS-HealthAndDiagnostics +State : Disabled + +Feature Name : IIS-HttpLogging +State : Disabled + +Feature Name : IIS-LoggingLibraries +State : Disabled + +Feature Name : IIS-RequestMonitor +State : Disabled + +Feature Name : IIS-HttpTracing +State : Disabled + +Feature Name : IIS-Security +State : Disabled + +Feature Name : IIS-URLAuthorization +State : Disabled + +Feature Name : IIS-RequestFiltering +State : Disabled + +Feature Name : IIS-IPSecurity +State : Disabled + +Feature Name : IIS-Performance +State : Disabled + +Feature Name : IIS-HttpCompressionDynamic +State : Disabled + +Feature Name : IIS-WebServerManagementTools +State : Disabled + +Feature Name : IIS-ManagementScriptingTools +State : Disabled + +Feature Name : IIS-IIS6ManagementCompatibility +State : Disabled + +Feature Name : IIS-Metabase +State : Disabled + +Feature Name : WAS-WindowsActivationService +State : Disabled + +Feature Name : WAS-ProcessModel +State : Disabled + +Feature Name : WAS-NetFxEnvironment +State : Disabled + +Feature Name : WAS-ConfigurationAPI +State : Disabled + +Feature Name : IIS-HostableWebCore +State : Disabled + +Feature Name : WCF-HTTP-Activation +State : Disabled + +Feature Name : WCF-NonHTTP-Activation +State : Disabled + +Feature Name : IIS-StaticContent +State : Disabled + +Feature Name : IIS-DefaultDocument +State : Disabled + +Feature Name : IIS-DirectoryBrowsing +State : Disabled + +Feature Name : IIS-WebDAV +State : Disabled + +Feature Name : IIS-WebSockets +State : Disabled + +Feature Name : IIS-ApplicationInit +State : Disabled + +Feature Name : IIS-ASPNET +State : Disabled + +Feature Name : IIS-ASPNET45 +State : Disabled + +Feature Name : IIS-ASP +State : Disabled + +Feature Name : IIS-CGI +State : Disabled + +Feature Name : IIS-ISAPIExtensions +State : Disabled + +Feature Name : IIS-ISAPIFilter +State : Disabled + +Feature Name : IIS-ServerSideIncludes +State : Disabled + +Feature Name : IIS-CustomLogging +State : Disabled + +Feature Name : IIS-BasicAuthentication +State : Disabled + +Feature Name : IIS-HttpCompressionStatic +State : Disabled + +Feature Name : IIS-ManagementConsole +State : Disabled + +Feature Name : IIS-ManagementService +State : Disabled + +Feature Name : IIS-WMICompatibility +State : Disabled + +Feature Name : IIS-LegacyScripts +State : Disabled + +Feature Name : IIS-LegacySnapIn +State : Disabled + +Feature Name : IIS-FTPServer +State : Disabled + +Feature Name : IIS-FTPSvc +State : Disabled + +Feature Name : IIS-FTPExtensibility +State : Disabled + +Feature Name : MSMQ-Container +State : Disabled + +Feature Name : MSMQ-DCOMProxy +State : Disabled + +Feature Name : MSMQ-Server +State : Disabled + +Feature Name : MSMQ-ADIntegration +State : Disabled + +Feature Name : MSMQ-HTTP +State : Disabled + +Feature Name : MSMQ-Multicast +State : Disabled + +Feature Name : MSMQ-Triggers +State : Disabled + +Feature Name : IIS-CertProvider +State : Disabled + +Feature Name : IIS-WindowsAuthentication +State : Disabled + +Feature Name : IIS-DigestAuthentication +State : Disabled + +Feature Name : IIS-ClientCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-IISCertificateMappingAuthentication +State : Disabled + +Feature Name : IIS-ODBCLogging +State : Disabled + +Feature Name : NetFx3 +State : Disabled with Payload Removed + +Feature Name : SMB1Protocol-Deprecation +State : Disabled + +Feature Name : MediaPlayback +State : Enabled + +Feature Name : WindowsMediaPlayer +State : Enabled + +Feature Name : DataCenterBridging +State : Disabled + +Feature Name : ServicesForNFS-ClientOnly +State : Disabled + +Feature Name : ClientForNFS-Infrastructure +State : Disabled + +Feature Name : NFS-Administration +State : Disabled + +Feature Name : SmbDirect +State : Enabled + +Feature Name : HostGuardian +State : Disabled + +Feature Name : MultiPoint-Connector +State : Disabled + +Feature Name : MultiPoint-Connector-Services +State : Disabled + +Feature Name : MultiPoint-Tools +State : Disabled + +Feature Name : Internet-Explorer-Optional-amd64 +State : Enabled + +Feature Name : WorkFolders-Client +State : Enabled + +Feature Name : Printing-Foundation-Features +State : Enabled + +Feature Name : FaxServicesClientPackage +State : Enabled + +Feature Name : Printing-Foundation-InternetPrinting-Client +State : Enabled + +Feature Name : Printing-Foundation-LPDPrintService +State : Disabled + +Feature Name : Printing-Foundation-LPRPortMonitor +State : Disabled + +Feature Name : Windows-Identity-Foundation +State : Disabled + +Feature Name : Windows-Defender-Default-Definitions +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2Root +State : Enabled + +Feature Name : MicrosoftWindowsPowerShellV2 +State : Enabled + +Feature Name : Microsoft-Windows-Subsystem-Linux +State : Disabled + +Feature Name : HypervisorPlatform +State : Disabled + +Feature Name : VirtualMachinePlatform +State : Disabled + +Feature Name : Microsoft-Windows-NetFx3-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-US-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-Client-EmbeddedExp-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx3-WCF-OC-Package +State : Enabled + +Feature Name : Microsoft-Windows-NetFx4-WCF-US-OC-Package +State : Enabled + +Feature Name : Containers-DisposableClientVM +State : Disabled + +Feature Name : Microsoft-Hyper-V-All +State : Disabled + +Feature Name : Microsoft-Hyper-V +State : Disabled + +Feature Name : Microsoft-Hyper-V-Tools-All +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-PowerShell +State : Disabled + +Feature Name : Microsoft-Hyper-V-Hypervisor +State : Disabled + +Feature Name : Microsoft-Hyper-V-Services +State : Disabled + +Feature Name : Microsoft-Hyper-V-Management-Clients +State : Disabled + +Feature Name : Client-DeviceLockdown +State : Disabled + +Feature Name : Client-EmbeddedShellLauncher +State : Disabled + +Feature Name : Client-EmbeddedBootExp +State : Disabled + +Feature Name : Client-EmbeddedLogon +State : Disabled + +Feature Name : Client-KeyboardFilter +State : Disabled + +Feature Name : Client-UnifiedWriteFilter +State : Disabled + +Feature Name : DirectoryServices-ADAM-Client +State : Disabled + +Feature Name : Windows-Defender-ApplicationGuard +State : Disabled + +Feature Name : Containers +State : Disabled + +Feature Name : SMB1Protocol +State : Disabled + +Feature Name : SMB1Protocol-Client +State : Disabled + +Feature Name : SMB1Protocol-Server +State : Disabled + +The operation completed successfully. +2020-03-06 10:37:51,994 [salt.state :320 ][INFO ][1872] {'stderr': '', 'stdout': '', 'feature': {'new': 'TelnetClient'}, 'retcode': 0, 'pid': 1328} +2020-03-06 10:37:51,994 [salt.state :1997][INFO ][1872] Completed state [TelnetClient] at time 10:37:51.994282 (duration_in_ms=7281.244) +2020-03-06 10:37:51,994 [salt.state :1819][INFO ][1872] Running state [windows.module.system.reboot] at time 10:37:51.994282 +2020-03-06 10:37:51,994 [salt.state :1852][INFO ][1872] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:37:52,010 [salt.utils.lazy :107 ][DEBUG ][1872] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:37:52,010 [salt.loaded.int.module.cmdmod:397 ][INFO ][1872] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:37:52,228 [salt.state :889 ][DEBUG ][1872] Last command return code: 0 +2020-03-06 10:37:52,228 [salt.loaded.int.module.win_system:1413][DEBUG ][1872] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:37:52,228 [salt.loaded.int.module.win_system:1348][DEBUG ][1872] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:37:52,228 [salt.loaded.int.module.win_system:1348][DEBUG ][1872] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:37:52,228 [salt.loaded.int.module.win_system:1387][DEBUG ][1872] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:37:52,243 [salt.loaded.int.module.win_system:1273][DEBUG ][1872] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:37:52,291 [salt.state :320 ][INFO ][1872] {'system.reboot': True} +2020-03-06 10:37:52,291 [salt.state :1997][INFO ][1872] Completed state [windows.module.system.reboot] at time 10:37:52.291396 (duration_in_ms=297.114) +2020-03-06 10:37:52,291 [salt.state :2801][DEBUG ][1872] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2460654606656 does not exist, no need to cleanup +2020-03-06 10:37:52,291 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded state.check_result +2020-03-06 10:37:52,307 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded highstate.output +2020-03-06 10:37:52,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,322 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,339 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,339 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,339 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,353 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,369 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,385 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,400 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,417 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,417 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,417 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,417 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,432 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,447 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,464 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,479 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 10:37:52,479 [salt.utils.lazy :104 ][DEBUG ][1872] LazyLoaded nested.output +2020-03-06 13:37:57,681 [salt.loader :747 ][DEBUG ][2656] Grains refresh requested. Refreshing grains. +2020-03-06 13:37:57,681 [salt.config :2190][DEBUG ][2656] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:37:57,681 [salt.config :2334][DEBUG ][2656] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:37:57,681 [salt.config :2190][DEBUG ][2656] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-201923-windows-server-2016.kitchen.log b/test/results/py3-201923-windows-server-2016.kitchen.log new file mode 100644 index 0000000..56f1018 --- /dev/null +++ b/test/results/py3-201923-windows-server-2016.kitchen.log @@ -0,0 +1,952 @@ +I, [2020-03-06T14:09:18.542970 #24023] INFO -- py3-201923-windows-server-2016: -----> Cleaning up any prior instances of +I, [2020-03-06T14:09:18.543134 #24023] INFO -- py3-201923-windows-server-2016: -----> Destroying ... +I, [2020-03-06T14:09:18.544354 #24023] INFO -- py3-201923-windows-server-2016: Finished destroying (0m0.00s). +I, [2020-03-06T14:09:18.545520 #24023] INFO -- py3-201923-windows-server-2016: -----> Testing +I, [2020-03-06T14:09:18.545624 #24023] INFO -- py3-201923-windows-server-2016: -----> Creating ... +I, [2020-03-06T14:09:24.460444 #24023] INFO -- py3-201923-windows-server-2016: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T14:09:25.474212 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Cloning VM... +I, [2020-03-06T14:09:25.875185 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T14:09:26.092632 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Checking if box 'StefanScherer/windows_2016' version '2019.02.14' is up to date... +I, [2020-03-06T14:09:26.967154 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-server-2016-ef4fbdfc-719e-4c30-8fed-c880f6a30ead +I, [2020-03-06T14:09:29.320232 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T14:09:29.411596 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T14:09:29.412038 #24023] INFO -- py3-201923-windows-server-2016: default: Adapter 1: nat +I, [2020-03-06T14:09:29.512969 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Forwarding ports... +I, [2020-03-06T14:09:29.604993 #24023] INFO -- py3-201923-windows-server-2016: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T14:09:29.605516 #24023] INFO -- py3-201923-windows-server-2016: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T14:09:29.606200 #24023] INFO -- py3-201923-windows-server-2016: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T14:09:29.606674 #24023] INFO -- py3-201923-windows-server-2016: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T14:09:29.895566 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T14:09:30.496040 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Booting VM... +I, [2020-03-06T14:09:33.080040 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T14:09:33.821106 #24023] INFO -- py3-201923-windows-server-2016: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T14:09:33.821377 #24023] INFO -- py3-201923-windows-server-2016: default: WinRM username: vagrant +I, [2020-03-06T14:09:33.821763 #24023] INFO -- py3-201923-windows-server-2016: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T14:09:33.822141 #24023] INFO -- py3-201923-windows-server-2016: default: WinRM transport: negotiate +I, [2020-03-06T14:10:39.250751 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Machine booted and ready! +I, [2020-03-06T14:10:39.277226 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Checking for guest additions in VM... +I, [2020-03-06T14:10:39.373209 #24023] INFO -- py3-201923-windows-server-2016: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T14:10:39.373307 #24023] INFO -- py3-201923-windows-server-2016: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T14:10:39.373345 #24023] INFO -- py3-201923-windows-server-2016: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T14:10:39.373418 #24023] INFO -- py3-201923-windows-server-2016: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T14:10:39.373446 #24023] INFO -- py3-201923-windows-server-2016: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T14:10:39.373472 #24023] INFO -- py3-201923-windows-server-2016: default: your host and reload your VM. +I, [2020-03-06T14:10:39.373503 #24023] INFO -- py3-201923-windows-server-2016: default: +I, [2020-03-06T14:10:39.373539 #24023] INFO -- py3-201923-windows-server-2016: default: Guest Additions Version: 5.2.26 +I, [2020-03-06T14:10:39.373562 #24023] INFO -- py3-201923-windows-server-2016: default: VirtualBox Version: 6.1 +I, [2020-03-06T14:10:39.931282 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Mounting shared folders... +I, [2020-03-06T14:10:39.932222 #24023] INFO -- py3-201923-windows-server-2016: default: /results => /mnt/c/tmp/results +I, [2020-03-06T14:10:47.598481 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T14:10:59.415650 #24023] INFO -- py3-201923-windows-server-2016: [WinRM] Established +I, [2020-03-06T14:10:59.415756 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:10:59.440585 #24023] INFO -- py3-201923-windows-server-2016: Vagrant instance created. +I, [2020-03-06T14:10:59.442376 #24023] INFO -- py3-201923-windows-server-2016: Finished creating (1m40.90s). +I, [2020-03-06T14:10:59.442617 #24023] INFO -- py3-201923-windows-server-2016: -----> Converging ... +I, [2020-03-06T14:10:59.449187 #24023] INFO -- py3-201923-windows-server-2016: Preparing files for transfer +I, [2020-03-06T14:10:59.449338 #24023] INFO -- py3-201923-windows-server-2016: Preparing salt-minion +I, [2020-03-06T14:10:59.453491 #24023] INFO -- py3-201923-windows-server-2016: Preparing pillars into /srv/pillar +I, [2020-03-06T14:10:59.453624 #24023] INFO -- py3-201923-windows-server-2016: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T14:10:59.456822 #24023] INFO -- py3-201923-windows-server-2016: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T14:10:59.589744 #24023] INFO -- py3-201923-windows-server-2016: Preparing state_top +I, [2020-03-06T14:10:59.591196 #24023] INFO -- py3-201923-windows-server-2016: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T14:11:00.602312 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:00.602723 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:00.603181 #24023] INFO -- py3-201923-windows-server-2016: Directory: C:\ +I, [2020-03-06T14:11:00.603557 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:00.603916 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:00.604433 #24023] INFO -- py3-201923-windows-server-2016: Mode LastWriteTime Length Name +I, [2020-03-06T14:11:00.605025 #24023] INFO -- py3-201923-windows-server-2016: ---- ------------- ------ ---- +I, [2020-03-06T14:11:00.605565 #24023] INFO -- py3-201923-windows-server-2016: d----- 3/6/2020 11:11 AM temp +I, [2020-03-06T14:11:01.536976 #24023] INFO -- py3-201923-windows-server-2016: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe +I, [2020-03-06T14:11:05.552086 #24023] INFO -- py3-201923-windows-server-2016: Installing Salt minion +I, [2020-03-06T14:11:18.466574 #24023] INFO -- py3-201923-windows-server-2016: Starting the Salt minion service +I, [2020-03-06T14:11:18.467140 #24023] INFO -- py3-201923-windows-server-2016: Salt minion successfully installed +I, [2020-03-06T14:11:20.902955 #24023] INFO -- py3-201923-windows-server-2016: You asked for latest and you have 2019.2.3 installed, sweet! +I, [2020-03-06T14:11:20.903374 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:20.903651 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:21.673920 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:21.674587 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:21.675052 #24023] INFO -- py3-201923-windows-server-2016: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T14:11:21.675415 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:21.675781 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:21.676212 #24023] INFO -- py3-201923-windows-server-2016: Mode LastWriteTime Length Name +I, [2020-03-06T14:11:21.676666 #24023] INFO -- py3-201923-windows-server-2016: ---- ------------- ------ ---- +I, [2020-03-06T14:11:21.677066 #24023] INFO -- py3-201923-windows-server-2016: d----- 3/6/2020 11:11 AM kitchen +I, [2020-03-06T14:11:21.677412 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:21.677737 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:21.711397 #24023] INFO -- py3-201923-windows-server-2016: Transferring files to +I, [2020-03-06T14:11:54.180828 #24023] INFO -- py3-201923-windows-server-2016: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T14:11:54.181223 #24023] INFO -- py3-201923-windows-server-2016: At line:1 char:131 +I, [2020-03-06T14:11:54.181639 #24023] INFO -- py3-201923-windows-server-2016: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T14:11:54.181948 #24023] INFO -- py3-201923-windows-server-2016: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T14:11:54.182257 #24023] INFO -- py3-201923-windows-server-2016: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T14:11:54.182563 #24023] INFO -- py3-201923-windows-server-2016: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T14:11:54.182849 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:54.183107 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:54.183390 #24023] INFO -- py3-201923-windows-server-2016: Traceback (most recent call last): +I, [2020-03-06T14:11:54.183665 #24023] INFO -- py3-201923-windows-server-2016: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T14:11:54.183935 #24023] INFO -- py3-201923-windows-server-2016: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T14:11:54.184256 #24023] INFO -- py3-201923-windows-server-2016: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T14:11:54.184504 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:54.184793 #24023] INFO -- py3-201923-windows-server-2016: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T14:11:54.185071 #24023] INFO -- py3-201923-windows-server-2016: Traceback (most recent call last): +I, [2020-03-06T14:11:54.185366 #24023] INFO -- py3-201923-windows-server-2016: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T14:11:54.185672 #24023] INFO -- py3-201923-windows-server-2016: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T14:11:54.185977 #24023] INFO -- py3-201923-windows-server-2016: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T14:11:54.186238 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:11:54.989945 #24023] INFO -- py3-201923-windows-server-2016: [ERROR ] {'pkg.refresh_db': {'total': 0, 'success': 0, 'failed': 0}} +I, [2020-03-06T14:11:54.994602 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:12:57.192639 #24023] INFO -- py3-201923-windows-server-2016: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T14:12:57.193061 #24023] INFO -- py3-201923-windows-server-2016: environ[key] = redata.sub(a, value) +I, [2020-03-06T14:12:57.193384 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:12:57.193703 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:12:57.194089 #24023] INFO -- py3-201923-windows-server-2016: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T14:12:57.194430 #24023] INFO -- py3-201923-windows-server-2016: environ[key] = redata.sub(a, value) +I, [2020-03-06T14:12:57.194718 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:12:57.194993 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.102029 #24023] INFO -- py3-201923-windows-server-2016: local: +I, [2020-03-06T14:13:53.107025 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.107563 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T14:13:53.108048 #24023] INFO -- py3-201923-windows-server-2016: Function: system.hostname +I, [2020-03-06T14:13:53.108446 #24023] INFO -- py3-201923-windows-server-2016: Name: saltstack1 +I, [2020-03-06T14:13:53.108877 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.109294 #24023] INFO -- py3-201923-windows-server-2016: Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T14:13:53.109971 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:41.135665 +I, [2020-03-06T14:13:53.110568 #24023] INFO -- py3-201923-windows-server-2016: Duration: 237.648 ms +I, [2020-03-06T14:13:53.111166 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.111745 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.112299 #24023] INFO -- py3-201923-windows-server-2016: hostname: +I, [2020-03-06T14:13:53.112874 #24023] INFO -- py3-201923-windows-server-2016: saltstack1 +I, [2020-03-06T14:13:53.113388 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.113937 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.state.system.computer_desc.description +I, [2020-03-06T14:13:53.114431 #24023] INFO -- py3-201923-windows-server-2016: Function: system.computer_desc +I, [2020-03-06T14:13:53.114789 #24023] INFO -- py3-201923-windows-server-2016: Name: Saltstack Computer Description +I, [2020-03-06T14:13:53.115150 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.115633 #24023] INFO -- py3-201923-windows-server-2016: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T14:13:53.116115 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:41.373313 +I, [2020-03-06T14:13:53.116552 #24023] INFO -- py3-201923-windows-server-2016: Duration: 2833.459 ms +I, [2020-03-06T14:13:53.116946 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.117338 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.117701 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.118039 #24023] INFO -- py3-201923-windows-server-2016: Saltstack Computer Description +I, [2020-03-06T14:13:53.118452 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.118801 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.119154 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T14:13:53.119544 #24023] INFO -- py3-201923-windows-server-2016: Function: timezone.system +I, [2020-03-06T14:13:53.119909 #24023] INFO -- py3-201923-windows-server-2016: Name: America/New_York +I, [2020-03-06T14:13:53.120298 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.120663 #24023] INFO -- py3-201923-windows-server-2016: Comment: Set timezone America/New_York +I, [2020-03-06T14:13:53.120998 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:44.239608 +I, [2020-03-06T14:13:53.121338 #24023] INFO -- py3-201923-windows-server-2016: Duration: 14.58 ms +I, [2020-03-06T14:13:53.121658 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.121990 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.122350 #24023] INFO -- py3-201923-windows-server-2016: timezone: +I, [2020-03-06T14:13:53.122718 #24023] INFO -- py3-201923-windows-server-2016: America/New_York +I, [2020-03-06T14:13:53.123053 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.123407 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.module.environ.items +I, [2020-03-06T14:13:53.123735 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.124056 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.124402 #24023] INFO -- py3-201923-windows-server-2016: Comment: environ.items: Success +I, [2020-03-06T14:13:53.124726 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:44.270992 +I, [2020-03-06T14:13:53.125104 #24023] INFO -- py3-201923-windows-server-2016: Duration: 0.0 ms +I, [2020-03-06T14:13:53.125569 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.125997 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.127744 #24023] INFO -- py3-201923-windows-server-2016: environ.items: +I, [2020-03-06T14:13:53.129030 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.130374 #24023] INFO -- py3-201923-windows-server-2016: ALLUSERSPROFILE: +I, [2020-03-06T14:13:53.131620 #24023] INFO -- py3-201923-windows-server-2016: C:\ProgramData +I, [2020-03-06T14:13:53.132625 #24023] INFO -- py3-201923-windows-server-2016: APPDATA: +I, [2020-03-06T14:13:53.133654 #24023] INFO -- py3-201923-windows-server-2016: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T14:13:53.134500 #24023] INFO -- py3-201923-windows-server-2016: COMMONPROGRAMFILES: +I, [2020-03-06T14:13:53.135928 #24023] INFO -- py3-201923-windows-server-2016: C:\Program Files\Common Files +I, [2020-03-06T14:13:53.136864 #24023] INFO -- py3-201923-windows-server-2016: COMMONPROGRAMFILES(X86): +I, [2020-03-06T14:13:53.138106 #24023] INFO -- py3-201923-windows-server-2016: C:\Program Files (x86)\Common Files +I, [2020-03-06T14:13:53.139367 #24023] INFO -- py3-201923-windows-server-2016: COMMONPROGRAMW6432: +I, [2020-03-06T14:13:53.140843 #24023] INFO -- py3-201923-windows-server-2016: C:\Program Files\Common Files +I, [2020-03-06T14:13:53.142209 #24023] INFO -- py3-201923-windows-server-2016: COMPUTERNAME: +I, [2020-03-06T14:13:53.143613 #24023] INFO -- py3-201923-windows-server-2016: VAGRANT +I, [2020-03-06T14:13:53.145386 #24023] INFO -- py3-201923-windows-server-2016: COMSPEC: +I, [2020-03-06T14:13:53.147137 #24023] INFO -- py3-201923-windows-server-2016: C:\Windows\system32\cmd.exe +I, [2020-03-06T14:13:53.148621 #24023] INFO -- py3-201923-windows-server-2016: HOMEDRIVE: +I, [2020-03-06T14:13:53.150047 #24023] INFO -- py3-201923-windows-server-2016: C: +I, [2020-03-06T14:13:53.151712 #24023] INFO -- py3-201923-windows-server-2016: HOMEPATH: +I, [2020-03-06T14:13:53.152907 #24023] INFO -- py3-201923-windows-server-2016: \Users\vagrant +I, [2020-03-06T14:13:53.154205 #24023] INFO -- py3-201923-windows-server-2016: LOCALAPPDATA: +I, [2020-03-06T14:13:53.155733 #24023] INFO -- py3-201923-windows-server-2016: C:\Users\vagrant\AppData\Local +I, [2020-03-06T14:13:53.157019 #24023] INFO -- py3-201923-windows-server-2016: LOGONSERVER: +I, [2020-03-06T14:13:53.158079 #24023] INFO -- py3-201923-windows-server-2016: \\VAGRANT +I, [2020-03-06T14:13:53.158985 #24023] INFO -- py3-201923-windows-server-2016: NUMBER_OF_PROCESSORS: +I, [2020-03-06T14:13:53.159498 #24023] INFO -- py3-201923-windows-server-2016: 2 +I, [2020-03-06T14:13:53.162026 #24023] INFO -- py3-201923-windows-server-2016: OS: +I, [2020-03-06T14:13:53.163244 #24023] INFO -- py3-201923-windows-server-2016: Windows_NT +I, [2020-03-06T14:13:53.163865 #24023] INFO -- py3-201923-windows-server-2016: PATH: +I, [2020-03-06T14:13:53.164676 #24023] INFO -- py3-201923-windows-server-2016: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T14:13:53.165883 #24023] INFO -- py3-201923-windows-server-2016: PATHEXT: +I, [2020-03-06T14:13:53.168491 #24023] INFO -- py3-201923-windows-server-2016: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T14:13:53.170125 #24023] INFO -- py3-201923-windows-server-2016: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T14:13:53.171697 #24023] INFO -- py3-201923-windows-server-2016: AMD64 +I, [2020-03-06T14:13:53.173202 #24023] INFO -- py3-201923-windows-server-2016: PROCESSOR_IDENTIFIER: +I, [2020-03-06T14:13:53.174934 #24023] INFO -- py3-201923-windows-server-2016: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T14:13:53.176378 #24023] INFO -- py3-201923-windows-server-2016: PROCESSOR_LEVEL: +I, [2020-03-06T14:13:53.176884 #24023] INFO -- py3-201923-windows-server-2016: 6 +I, [2020-03-06T14:13:53.177962 #24023] INFO -- py3-201923-windows-server-2016: PROCESSOR_REVISION: +I, [2020-03-06T14:13:53.179003 #24023] INFO -- py3-201923-windows-server-2016: 8e0c +I, [2020-03-06T14:13:53.179820 #24023] INFO -- py3-201923-windows-server-2016: PROGRAMDATA: +I, [2020-03-06T14:13:53.180578 #24023] INFO -- py3-201923-windows-server-2016: C:\ProgramData +I, [2020-03-06T14:13:53.181652 #24023] INFO -- py3-201923-windows-server-2016: PROGRAMFILES: +I, [2020-03-06T14:13:53.182596 #24023] INFO -- py3-201923-windows-server-2016: C:\Program Files +I, [2020-03-06T14:13:53.183713 #24023] INFO -- py3-201923-windows-server-2016: PROGRAMFILES(X86): +I, [2020-03-06T14:13:53.184481 #24023] INFO -- py3-201923-windows-server-2016: C:\Program Files (x86) +I, [2020-03-06T14:13:53.190223 #24023] INFO -- py3-201923-windows-server-2016: PROGRAMW6432: +I, [2020-03-06T14:13:53.190856 #24023] INFO -- py3-201923-windows-server-2016: C:\Program Files +I, [2020-03-06T14:13:53.191236 #24023] INFO -- py3-201923-windows-server-2016: PROMPT: +I, [2020-03-06T14:13:53.191600 #24023] INFO -- py3-201923-windows-server-2016: $P$G +I, [2020-03-06T14:13:53.191937 #24023] INFO -- py3-201923-windows-server-2016: PSMODULEPATH: +I, [2020-03-06T14:13:53.192814 #24023] INFO -- py3-201923-windows-server-2016: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T14:13:53.193377 #24023] INFO -- py3-201923-windows-server-2016: PUBLIC: +I, [2020-03-06T14:13:53.193824 #24023] INFO -- py3-201923-windows-server-2016: C:\Users\Public +I, [2020-03-06T14:13:53.194265 #24023] INFO -- py3-201923-windows-server-2016: PYTHON: +I, [2020-03-06T14:13:53.194662 #24023] INFO -- py3-201923-windows-server-2016: C:\salt\bin\python.exe +I, [2020-03-06T14:13:53.195007 #24023] INFO -- py3-201923-windows-server-2016: SALTDIR: +I, [2020-03-06T14:13:53.195347 #24023] INFO -- py3-201923-windows-server-2016: C:\salt +I, [2020-03-06T14:13:53.195695 #24023] INFO -- py3-201923-windows-server-2016: SCRIPT: +I, [2020-03-06T14:13:53.196032 #24023] INFO -- py3-201923-windows-server-2016: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T14:13:53.196426 #24023] INFO -- py3-201923-windows-server-2016: SYSTEMDRIVE: +I, [2020-03-06T14:13:53.196799 #24023] INFO -- py3-201923-windows-server-2016: C: +I, [2020-03-06T14:13:53.197254 #24023] INFO -- py3-201923-windows-server-2016: SYSTEMROOT: +I, [2020-03-06T14:13:53.197694 #24023] INFO -- py3-201923-windows-server-2016: C:\Windows +I, [2020-03-06T14:13:53.198046 #24023] INFO -- py3-201923-windows-server-2016: TEMP: +I, [2020-03-06T14:13:53.198467 #24023] INFO -- py3-201923-windows-server-2016: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T14:13:53.198812 #24023] INFO -- py3-201923-windows-server-2016: TMP: +I, [2020-03-06T14:13:53.199152 #24023] INFO -- py3-201923-windows-server-2016: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T14:13:53.199612 #24023] INFO -- py3-201923-windows-server-2016: USERDOMAIN: +I, [2020-03-06T14:13:53.200121 #24023] INFO -- py3-201923-windows-server-2016: VAGRANT +I, [2020-03-06T14:13:53.200678 #24023] INFO -- py3-201923-windows-server-2016: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T14:13:53.201237 #24023] INFO -- py3-201923-windows-server-2016: VAGRANT +I, [2020-03-06T14:13:53.201832 #24023] INFO -- py3-201923-windows-server-2016: USERNAME: +I, [2020-03-06T14:13:53.202321 #24023] INFO -- py3-201923-windows-server-2016: vagrant +I, [2020-03-06T14:13:53.202800 #24023] INFO -- py3-201923-windows-server-2016: USERPROFILE: +I, [2020-03-06T14:13:53.203192 #24023] INFO -- py3-201923-windows-server-2016: C:\Users\vagrant +I, [2020-03-06T14:13:53.203557 #24023] INFO -- py3-201923-windows-server-2016: WINDIR: +I, [2020-03-06T14:13:53.203893 #24023] INFO -- py3-201923-windows-server-2016: C:\Windows +I, [2020-03-06T14:13:53.204222 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.204582 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.module.user.current +I, [2020-03-06T14:13:53.204937 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.205347 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.205739 #24023] INFO -- py3-201923-windows-server-2016: Comment: user.current: VAGRANT\vagrant +I, [2020-03-06T14:13:53.206131 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:44.270992 +I, [2020-03-06T14:13:53.206553 #24023] INFO -- py3-201923-windows-server-2016: Duration: 14.809 ms +I, [2020-03-06T14:13:53.206915 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.207252 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.207576 #24023] INFO -- py3-201923-windows-server-2016: user.current: +I, [2020-03-06T14:13:53.207903 #24023] INFO -- py3-201923-windows-server-2016: VAGRANT\vagrant +I, [2020-03-06T14:13:53.208238 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.208584 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.module.status.uptime +I, [2020-03-06T14:13:53.208978 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.209328 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.209775 #24023] INFO -- py3-201923-windows-server-2016: Comment: status.uptime: 0:01:18.317460 +I, [2020-03-06T14:13:53.210217 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:44.285801 +I, [2020-03-06T14:13:53.210557 #24023] INFO -- py3-201923-windows-server-2016: Duration: 31.659 ms +I, [2020-03-06T14:13:53.210950 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.211309 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.211644 #24023] INFO -- py3-201923-windows-server-2016: status.uptime: +I, [2020-03-06T14:13:53.211991 #24023] INFO -- py3-201923-windows-server-2016: 0:01:18.317460 +I, [2020-03-06T14:13:53.212330 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.212671 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T14:13:53.213054 #24023] INFO -- py3-201923-windows-server-2016: Function: reg.present +I, [2020-03-06T14:13:53.213463 #24023] INFO -- py3-201923-windows-server-2016: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:13:53.213876 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.214467 #24023] INFO -- py3-201923-windows-server-2016: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:13:53.214968 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:44.317460 +I, [2020-03-06T14:13:53.215373 #24023] INFO -- py3-201923-windows-server-2016: Duration: 9648.886 ms +I, [2020-03-06T14:13:53.215776 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.216228 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.216574 #24023] INFO -- py3-201923-windows-server-2016: reg: +I, [2020-03-06T14:13:53.216905 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.217249 #24023] INFO -- py3-201923-windows-server-2016: Added: +I, [2020-03-06T14:13:53.217636 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.218056 #24023] INFO -- py3-201923-windows-server-2016: Entry: +I, [2020-03-06T14:13:53.218435 #24023] INFO -- py3-201923-windows-server-2016: SystemDefaultTlsVersions +I, [2020-03-06T14:13:53.218994 #24023] INFO -- py3-201923-windows-server-2016: Inheritance: +I, [2020-03-06T14:13:53.219433 #24023] INFO -- py3-201923-windows-server-2016: True +I, [2020-03-06T14:13:53.219775 #24023] INFO -- py3-201923-windows-server-2016: Key: +I, [2020-03-06T14:13:53.220121 #24023] INFO -- py3-201923-windows-server-2016: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:13:53.220441 #24023] INFO -- py3-201923-windows-server-2016: Owner: +I, [2020-03-06T14:13:53.220768 #24023] INFO -- py3-201923-windows-server-2016: None +I, [2020-03-06T14:13:53.221110 #24023] INFO -- py3-201923-windows-server-2016: Perms: +I, [2020-03-06T14:13:53.221487 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.221894 #24023] INFO -- py3-201923-windows-server-2016: Deny: +I, [2020-03-06T14:13:53.222269 #24023] INFO -- py3-201923-windows-server-2016: None +I, [2020-03-06T14:13:53.222623 #24023] INFO -- py3-201923-windows-server-2016: Grant: +I, [2020-03-06T14:13:53.223089 #24023] INFO -- py3-201923-windows-server-2016: None +I, [2020-03-06T14:13:53.223465 #24023] INFO -- py3-201923-windows-server-2016: Value: +I, [2020-03-06T14:13:53.223825 #24023] INFO -- py3-201923-windows-server-2016: 1 +I, [2020-03-06T14:13:53.224170 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.224536 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T14:13:53.224889 #24023] INFO -- py3-201923-windows-server-2016: Function: reg.present +I, [2020-03-06T14:13:53.225213 #24023] INFO -- py3-201923-windows-server-2016: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:13:53.225536 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.225886 #24023] INFO -- py3-201923-windows-server-2016: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:13:53.226232 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:53.966346 +I, [2020-03-06T14:13:53.226573 #24023] INFO -- py3-201923-windows-server-2016: Duration: 345.083 ms +I, [2020-03-06T14:13:53.226901 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.227247 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.227565 #24023] INFO -- py3-201923-windows-server-2016: reg: +I, [2020-03-06T14:13:53.227918 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.228268 #24023] INFO -- py3-201923-windows-server-2016: Added: +I, [2020-03-06T14:13:53.228636 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.228997 #24023] INFO -- py3-201923-windows-server-2016: Entry: +I, [2020-03-06T14:13:53.229324 #24023] INFO -- py3-201923-windows-server-2016: SystemDefaultTlsVersions +I, [2020-03-06T14:13:53.229660 #24023] INFO -- py3-201923-windows-server-2016: Inheritance: +I, [2020-03-06T14:13:53.229971 #24023] INFO -- py3-201923-windows-server-2016: True +I, [2020-03-06T14:13:53.230285 #24023] INFO -- py3-201923-windows-server-2016: Key: +I, [2020-03-06T14:13:53.230630 #24023] INFO -- py3-201923-windows-server-2016: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:13:53.230946 #24023] INFO -- py3-201923-windows-server-2016: Owner: +I, [2020-03-06T14:13:53.231260 #24023] INFO -- py3-201923-windows-server-2016: None +I, [2020-03-06T14:13:53.231655 #24023] INFO -- py3-201923-windows-server-2016: Perms: +I, [2020-03-06T14:13:53.232024 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.232423 #24023] INFO -- py3-201923-windows-server-2016: Deny: +I, [2020-03-06T14:13:53.232982 #24023] INFO -- py3-201923-windows-server-2016: None +I, [2020-03-06T14:13:53.233535 #24023] INFO -- py3-201923-windows-server-2016: Grant: +I, [2020-03-06T14:13:53.234104 #24023] INFO -- py3-201923-windows-server-2016: None +I, [2020-03-06T14:13:53.234638 #24023] INFO -- py3-201923-windows-server-2016: Value: +I, [2020-03-06T14:13:53.235197 #24023] INFO -- py3-201923-windows-server-2016: 1 +I, [2020-03-06T14:13:53.235728 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.236245 #24023] INFO -- py3-201923-windows-server-2016: ID: manually.update_git_repo-ng +I, [2020-03-06T14:13:53.236774 #24023] INFO -- py3-201923-windows-server-2016: Function: archive.extracted +I, [2020-03-06T14:13:53.237295 #24023] INFO -- py3-201923-windows-server-2016: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T14:13:53.237881 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.238505 #24023] INFO -- py3-201923-windows-server-2016: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T14:13:53.239128 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:54.311429 +I, [2020-03-06T14:13:53.239719 #24023] INFO -- py3-201923-windows-server-2016: Duration: 801.677 ms +I, [2020-03-06T14:13:53.240260 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.240789 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.245171 #24023] INFO -- py3-201923-windows-server-2016: directories_created: +I, [2020-03-06T14:13:53.245817 #24023] INFO -- py3-201923-windows-server-2016: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T14:13:53.246278 #24023] INFO -- py3-201923-windows-server-2016: extracted_files: +I, [2020-03-06T14:13:53.246845 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ +I, [2020-03-06T14:13:53.247377 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T14:13:53.247770 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T14:13:53.248130 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T14:13:53.248514 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T14:13:53.248873 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T14:13:53.249346 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T14:13:53.249780 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T14:13:53.250289 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/README.md +I, [2020-03-06T14:13:53.250750 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T14:13:53.252075 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T14:13:53.252771 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T14:13:53.253217 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T14:13:53.253728 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T14:13:53.254232 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T14:13:53.254693 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T14:13:53.255124 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T14:13:53.255511 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T14:13:53.255898 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T14:13:53.256276 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T14:13:53.256636 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T14:13:53.257044 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T14:13:53.257436 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T14:13:53.257881 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T14:13:53.258445 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T14:13:53.258973 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T14:13:53.259402 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T14:13:53.259741 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T14:13:53.260087 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T14:13:53.260411 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T14:13:53.260754 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T14:13:53.261152 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T14:13:53.261504 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T14:13:53.261940 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T14:13:53.262375 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T14:13:53.262728 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T14:13:53.263066 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T14:13:53.263384 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T14:13:53.263703 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T14:13:53.264042 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T14:13:53.264366 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T14:13:53.264763 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T14:13:53.265137 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T14:13:53.265540 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T14:13:53.266090 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T14:13:53.266491 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T14:13:53.266856 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T14:13:53.267241 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T14:13:53.267585 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T14:13:53.267944 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T14:13:53.268369 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T14:13:53.268816 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T14:13:53.269264 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T14:13:53.269691 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T14:13:53.270344 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T14:13:53.270822 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T14:13:53.271285 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T14:13:53.271640 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T14:13:53.271996 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T14:13:53.272328 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T14:13:53.272682 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T14:13:53.273089 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T14:13:53.273485 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T14:13:53.273930 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T14:13:53.274359 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T14:13:53.274745 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T14:13:53.275120 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T14:13:53.275469 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T14:13:53.275826 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T14:13:53.276157 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T14:13:53.276492 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T14:13:53.276897 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T14:13:53.277277 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T14:13:53.277723 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T14:13:53.278167 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T14:13:53.278611 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T14:13:53.278980 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T14:13:53.279317 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T14:13:53.279669 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T14:13:53.280000 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T14:13:53.280390 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T14:13:53.280771 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T14:13:53.281160 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T14:13:53.281620 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T14:13:53.282080 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T14:13:53.282464 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T14:13:53.282829 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T14:13:53.283169 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T14:13:53.283522 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T14:13:53.283850 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T14:13:53.284241 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T14:13:53.284622 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T14:13:53.285073 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T14:13:53.285584 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T14:13:53.285977 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T14:13:53.286384 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T14:13:53.286755 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T14:13:53.287096 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T14:13:53.287452 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T14:13:53.287790 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T14:13:53.288178 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T14:13:53.288702 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T14:13:53.289202 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T14:13:53.289672 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T14:13:53.290041 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T14:13:53.290422 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T14:13:53.290873 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T14:13:53.291220 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T14:13:53.291605 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T14:13:53.291978 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T14:13:53.292397 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T14:13:53.292807 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T14:13:53.293319 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T14:13:53.293777 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T14:13:53.294195 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T14:13:53.294588 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T14:13:53.294942 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T14:13:53.295307 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T14:13:53.295658 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T14:13:53.296065 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T14:13:53.301080 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T14:13:53.301651 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T14:13:53.302121 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T14:13:53.302511 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T14:13:53.303018 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T14:13:53.303517 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T14:13:53.304054 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T14:13:53.304519 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T14:13:53.305072 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T14:13:53.305957 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T14:13:53.306623 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T14:13:53.307211 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T14:13:53.307741 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T14:13:53.308336 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T14:13:53.308902 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T14:13:53.309462 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T14:13:53.309906 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T14:13:53.310298 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T14:13:53.310687 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T14:13:53.311078 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T14:13:53.311452 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T14:13:53.311840 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T14:13:53.312215 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T14:13:53.312746 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T14:13:53.313347 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T14:13:53.313777 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T14:13:53.314179 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T14:13:53.314551 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T14:13:53.314939 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T14:13:53.315306 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T14:13:53.315723 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T14:13:53.316107 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T14:13:53.316490 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T14:13:53.316878 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T14:13:53.317242 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T14:13:53.317612 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T14:13:53.317997 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T14:13:53.318420 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T14:13:53.318820 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T14:13:53.319311 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T14:13:53.319800 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T14:13:53.320192 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T14:13:53.320706 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T14:13:53.321093 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T14:13:53.321538 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T14:13:53.322137 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T14:13:53.322690 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T14:13:53.323115 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T14:13:53.323542 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T14:13:53.323910 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T14:13:53.324951 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T14:13:53.325558 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T14:13:53.326087 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T14:13:53.326526 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T14:13:53.326924 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T14:13:53.327331 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T14:13:53.327734 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T14:13:53.328136 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T14:13:53.328683 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T14:13:53.329184 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T14:13:53.329615 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T14:13:53.330007 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T14:13:53.330464 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T14:13:53.330926 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T14:13:53.331433 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T14:13:53.331866 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T14:13:53.332263 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T14:13:53.332665 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T14:13:53.333047 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T14:13:53.333617 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T14:13:53.334041 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T14:13:53.334624 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T14:13:53.335075 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T14:13:53.335552 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T14:13:53.335958 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T14:13:53.336347 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T14:13:53.336709 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T14:13:53.337070 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T14:13:53.337441 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T14:13:53.337831 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T14:13:53.338237 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T14:13:53.338610 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T14:13:53.339031 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T14:13:53.339472 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T14:13:53.339922 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T14:13:53.340358 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T14:13:53.340767 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T14:13:53.341186 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T14:13:53.341546 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T14:13:53.341903 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T14:13:53.342271 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T14:13:53.342610 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T14:13:53.342968 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T14:13:53.343347 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T14:13:53.343758 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T14:13:53.344153 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T14:13:53.344499 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T14:13:53.344856 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T14:13:53.345213 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T14:13:53.345551 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T14:13:53.345938 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T14:13:53.346336 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T14:13:53.346735 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T14:13:53.347103 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T14:13:53.347446 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T14:13:53.347846 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T14:13:53.348220 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T14:13:53.348589 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T14:13:53.348979 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T14:13:53.349338 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T14:13:53.349992 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T14:13:53.350636 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T14:13:53.351261 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T14:13:53.351835 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T14:13:53.352428 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T14:13:53.353041 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T14:13:53.353633 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T14:13:53.354243 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T14:13:53.354814 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T14:13:53.355408 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T14:13:53.356002 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T14:13:53.363242 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T14:13:53.363990 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T14:13:53.364639 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T14:13:53.365852 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T14:13:53.366638 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T14:13:53.367350 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T14:13:53.368027 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T14:13:53.368667 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T14:13:53.369272 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T14:13:53.369922 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T14:13:53.370540 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T14:13:53.371228 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T14:13:53.371909 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T14:13:53.372513 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T14:13:53.373152 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T14:13:53.373696 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T14:13:53.374218 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T14:13:53.374714 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T14:13:53.375102 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T14:13:53.375494 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T14:13:53.375860 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T14:13:53.376247 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T14:13:53.376626 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T14:13:53.377038 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T14:13:53.377598 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T14:13:53.378053 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T14:13:53.378495 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T14:13:53.378869 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T14:13:53.379261 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T14:13:53.379624 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T14:13:53.380011 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T14:13:53.380402 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T14:13:53.380806 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T14:13:53.381220 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T14:13:53.381629 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T14:13:53.382093 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T14:13:53.382722 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T14:13:53.383355 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T14:13:53.383949 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T14:13:53.384536 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T14:13:53.385085 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T14:13:53.385655 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T14:13:53.386248 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T14:13:53.386840 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T14:13:53.387512 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T14:13:53.388141 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T14:13:53.388752 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T14:13:53.389345 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T14:13:53.389906 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T14:13:53.390476 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T14:13:53.391054 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T14:13:53.391641 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T14:13:53.392266 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T14:13:53.392872 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T14:13:53.393413 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T14:13:53.393877 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T14:13:53.394248 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T14:13:53.394616 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T14:13:53.395051 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T14:13:53.395436 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T14:13:53.395827 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T14:13:53.396211 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T14:13:53.396747 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T14:13:53.397303 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T14:13:53.397776 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T14:13:53.398154 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T14:13:53.398516 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T14:13:53.398891 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T14:13:53.399245 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T14:13:53.399806 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T14:13:53.400319 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T14:13:53.400836 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T14:13:53.401268 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T14:13:53.401657 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T14:13:53.402008 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T14:13:53.402363 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T14:13:53.402737 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T14:13:53.403107 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T14:13:53.403505 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T14:13:53.403984 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T14:13:53.404424 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T14:13:53.404862 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T14:13:53.405238 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T14:13:53.405614 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T14:13:53.406021 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T14:13:53.406400 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T14:13:53.406774 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T14:13:53.407149 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T14:13:53.407609 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T14:13:53.408158 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T14:13:53.408667 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T14:13:53.409107 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T14:13:53.409501 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T14:13:53.409846 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T14:13:53.410205 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T14:13:53.410575 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T14:13:53.411064 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T14:13:53.411517 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T14:13:53.412023 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T14:13:53.412489 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T14:13:53.412898 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T14:13:53.413314 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T14:13:53.413699 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T14:13:53.414067 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T14:13:53.414443 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T14:13:53.414809 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T14:13:53.415187 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T14:13:53.415636 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T14:13:53.416124 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T14:13:53.416561 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T14:13:53.416935 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T14:13:53.417310 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T14:13:53.417661 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T14:13:53.418206 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T14:13:53.418689 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T14:13:53.419140 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T14:13:53.419590 #24023] INFO -- py3-201923-windows-server-2016: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T14:13:53.420077 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.420552 #24023] INFO -- py3-201923-windows-server-2016: ID: rename-extract +I, [2020-03-06T14:13:53.420946 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.425952 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.426723 #24023] INFO -- py3-201923-windows-server-2016: Comment: file.rename: True +I, [2020-03-06T14:13:53.427294 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:55.128824 +I, [2020-03-06T14:13:53.427722 #24023] INFO -- py3-201923-windows-server-2016: Duration: 0.0 ms +I, [2020-03-06T14:13:53.428198 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.428601 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.429007 #24023] INFO -- py3-201923-windows-server-2016: file.rename: +I, [2020-03-06T14:13:53.429392 #24023] INFO -- py3-201923-windows-server-2016: True +I, [2020-03-06T14:13:53.429818 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.430241 #24023] INFO -- py3-201923-windows-server-2016: ID: pkg.refresh_db +I, [2020-03-06T14:13:53.430660 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.431086 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.431637 #24023] INFO -- py3-201923-windows-server-2016: Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" +I, [2020-03-06T14:13:53.432114 #24023] INFO -- py3-201923-windows-server-2016: check_cmd determined the state succeeded +I, [2020-03-06T14:13:53.432512 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:11:55.128824 +I, [2020-03-06T14:13:53.432917 #24023] INFO -- py3-201923-windows-server-2016: Duration: 18247.367 ms +I, [2020-03-06T14:13:53.433273 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.433642 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.434041 #24023] INFO -- py3-201923-windows-server-2016: pkg.refresh_db: +I, [2020-03-06T14:13:53.434458 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.434912 #24023] INFO -- py3-201923-windows-server-2016: failed: +I, [2020-03-06T14:13:53.435396 #24023] INFO -- py3-201923-windows-server-2016: 0 +I, [2020-03-06T14:13:53.435893 #24023] INFO -- py3-201923-windows-server-2016: success: +I, [2020-03-06T14:13:53.436274 #24023] INFO -- py3-201923-windows-server-2016: 298 +I, [2020-03-06T14:13:53.436666 #24023] INFO -- py3-201923-windows-server-2016: total: +I, [2020-03-06T14:13:53.437064 #24023] INFO -- py3-201923-windows-server-2016: 298 +I, [2020-03-06T14:13:53.437436 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.437830 #24023] INFO -- py3-201923-windows-server-2016: ID: kdiff3 +I, [2020-03-06T14:13:53.438210 #24023] INFO -- py3-201923-windows-server-2016: Function: pkg.installed +I, [2020-03-06T14:13:53.438594 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.532628 #24023] INFO -- py3-201923-windows-server-2016: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T14:13:53.533138 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:12:13.415544 +I, [2020-03-06T14:13:53.533586 #24023] INFO -- py3-201923-windows-server-2016: Duration: 5041.682 ms +I, [2020-03-06T14:13:53.534048 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.534518 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.534897 #24023] INFO -- py3-201923-windows-server-2016: kdiff3: +I, [2020-03-06T14:13:53.535257 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.535624 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.535996 #24023] INFO -- py3-201923-windows-server-2016: Not Found +I, [2020-03-06T14:13:53.536340 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.536669 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.537067 #24023] INFO -- py3-201923-windows-server-2016: ID: git +I, [2020-03-06T14:13:53.537440 #24023] INFO -- py3-201923-windows-server-2016: Function: pkg.installed +I, [2020-03-06T14:13:53.537800 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.538268 #24023] INFO -- py3-201923-windows-server-2016: Comment: The following packages were installed/updated: git +I, [2020-03-06T14:13:53.538746 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:12:18.487307 +I, [2020-03-06T14:13:53.539142 #24023] INFO -- py3-201923-windows-server-2016: Duration: 28729.887 ms +I, [2020-03-06T14:13:53.539487 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.539840 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.540197 #24023] INFO -- py3-201923-windows-server-2016: git: +I, [2020-03-06T14:13:53.540554 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.540919 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.541310 #24023] INFO -- py3-201923-windows-server-2016: 2.23.0.windows.1 +I, [2020-03-06T14:13:53.541704 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.542118 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.542631 #24023] INFO -- py3-201923-windows-server-2016: ID: 7zip +I, [2020-03-06T14:13:53.543195 #24023] INFO -- py3-201923-windows-server-2016: Function: pkg.installed +I, [2020-03-06T14:13:53.543729 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.544301 #24023] INFO -- py3-201923-windows-server-2016: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T14:13:53.544854 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:12:47.232829 +I, [2020-03-06T14:13:53.545371 #24023] INFO -- py3-201923-windows-server-2016: Duration: 9948.455 ms +I, [2020-03-06T14:13:53.545909 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.546478 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.547065 #24023] INFO -- py3-201923-windows-server-2016: 7zip: +I, [2020-03-06T14:13:53.547627 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.548233 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.548834 #24023] INFO -- py3-201923-windows-server-2016: 18.06.00.0 +I, [2020-03-06T14:13:53.549365 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.549780 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.550153 #24023] INFO -- py3-201923-windows-server-2016: ID: windows_environment.refresh.path +I, [2020-03-06T14:13:53.550537 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.550936 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.551302 #24023] INFO -- py3-201923-windows-server-2016: Comment: windows_environment.refresh: Success +I, [2020-03-06T14:13:53.551810 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:12:57.198006 +I, [2020-03-06T14:13:53.552259 #24023] INFO -- py3-201923-windows-server-2016: Duration: 30.151 ms +I, [2020-03-06T14:13:53.552687 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.553043 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.553426 #24023] INFO -- py3-201923-windows-server-2016: windows_environment.refresh: +I, [2020-03-06T14:13:53.553819 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.559640 #24023] INFO -- py3-201923-windows-server-2016: PATH: +I, [2020-03-06T14:13:53.560218 #24023] INFO -- py3-201923-windows-server-2016: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T14:13:53.560638 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.561194 #24023] INFO -- py3-201923-windows-server-2016: ID: chocolatey.bootstrap +I, [2020-03-06T14:13:53.561757 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.562238 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.562655 #24023] INFO -- py3-201923-windows-server-2016: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T14:13:53.562997 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.563399 #24023] INFO -- py3-201923-windows-server-2016: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T14:13:53.563724 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.564146 #24023] INFO -- py3-201923-windows-server-2016: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T14:13:53.564530 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.564982 #24023] INFO -- py3-201923-windows-server-2016: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T14:13:53.565478 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.565906 #24023] INFO -- py3-201923-windows-server-2016: Installing chocolatey on this machine +I, [2020-03-06T14:13:53.566271 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.566659 #24023] INFO -- py3-201923-windows-server-2016: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T14:13:53.567025 #24023] INFO -- py3-201923-windows-server-2016: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T14:13:53.567354 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.567710 #24023] INFO -- py3-201923-windows-server-2016: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T14:13:53.568107 #24023] INFO -- py3-201923-windows-server-2016: before you can use choco. +I, [2020-03-06T14:13:53.568538 #24023] INFO -- py3-201923-windows-server-2016: Restricting write permissions to Administrators +I, [2020-03-06T14:13:53.568977 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.569464 #24023] INFO -- py3-201923-windows-server-2016: We are setting up the Chocolatey package repository. +I, [2020-03-06T14:13:53.569812 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.570199 #24023] INFO -- py3-201923-windows-server-2016: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T14:13:53.570512 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.570865 #24023] INFO -- py3-201923-windows-server-2016: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T14:13:53.571193 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.571721 #24023] INFO -- py3-201923-windows-server-2016: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T14:13:53.572104 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.572619 #24023] INFO -- py3-201923-windows-server-2016: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T14:13:53.573043 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.573449 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.573762 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.574132 #24023] INFO -- py3-201923-windows-server-2016: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T14:13:53.574434 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.574763 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.575109 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.575518 #24023] INFO -- py3-201923-windows-server-2016: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T14:13:53.575916 #24023] INFO -- py3-201923-windows-server-2016: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T14:13:53.576397 #24023] INFO -- py3-201923-windows-server-2016: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T14:13:53.576932 #24023] INFO -- py3-201923-windows-server-2016: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T14:13:53.577388 #24023] INFO -- py3-201923-windows-server-2016: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T14:13:53.577753 #24023] INFO -- py3-201923-windows-server-2016: Attempting to locate it from bootstrapper. +I, [2020-03-06T14:13:53.578080 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.578426 #24023] INFO -- py3-201923-windows-server-2016: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T14:13:53.578777 #24023] INFO -- py3-201923-windows-server-2016: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T14:13:53.579184 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.579661 #24023] INFO -- py3-201923-windows-server-2016: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T14:13:53.580156 #24023] INFO -- py3-201923-windows-server-2016: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T14:13:53.580558 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.580988 #24023] INFO -- py3-201923-windows-server-2016: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T14:13:53.581374 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.581721 #24023] INFO -- py3-201923-windows-server-2016: Run choco /? for a list of functions. +I, [2020-03-06T14:13:53.582045 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.582394 #24023] INFO -- py3-201923-windows-server-2016: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T14:13:53.582696 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.583064 #24023] INFO -- py3-201923-windows-server-2016: first prior to using choco. +I, [2020-03-06T14:13:53.583423 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.584015 #24023] INFO -- py3-201923-windows-server-2016: Ensuring chocolatey commands are on the path +I, [2020-03-06T14:13:53.584529 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.585097 #24023] INFO -- py3-201923-windows-server-2016: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T14:13:53.585503 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:12:57.228157 +I, [2020-03-06T14:13:53.585938 #24023] INFO -- py3-201923-windows-server-2016: Duration: 18802.867 ms +I, [2020-03-06T14:13:53.586280 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.586630 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.586990 #24023] INFO -- py3-201923-windows-server-2016: chocolatey.bootstrap: +I, [2020-03-06T14:13:53.587401 #24023] INFO -- py3-201923-windows-server-2016: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T14:13:53.587805 #24023] INFO -- py3-201923-windows-server-2016: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T14:13:53.588179 #24023] INFO -- py3-201923-windows-server-2016: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T14:13:53.588670 #24023] INFO -- py3-201923-windows-server-2016: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T14:13:53.589168 #24023] INFO -- py3-201923-windows-server-2016: Installing chocolatey on this machine +I, [2020-03-06T14:13:53.589559 #24023] INFO -- py3-201923-windows-server-2016: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T14:13:53.589936 #24023] INFO -- py3-201923-windows-server-2016: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T14:13:53.590291 #24023] INFO -- py3-201923-windows-server-2016: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T14:13:53.590651 #24023] INFO -- py3-201923-windows-server-2016: before you can use choco. +I, [2020-03-06T14:13:53.590991 #24023] INFO -- py3-201923-windows-server-2016: Restricting write permissions to Administrators +I, [2020-03-06T14:13:53.591397 #24023] INFO -- py3-201923-windows-server-2016: We are setting up the Chocolatey package repository. +I, [2020-03-06T14:13:53.591796 #24023] INFO -- py3-201923-windows-server-2016: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T14:13:53.592225 #24023] INFO -- py3-201923-windows-server-2016: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T14:13:53.592754 #24023] INFO -- py3-201923-windows-server-2016: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T14:13:53.593201 #24023] INFO -- py3-201923-windows-server-2016: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T14:13:53.593575 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.593925 #24023] INFO -- py3-201923-windows-server-2016: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T14:13:53.594258 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.594626 #24023] INFO -- py3-201923-windows-server-2016: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T14:13:53.595089 #24023] INFO -- py3-201923-windows-server-2016: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T14:13:53.595570 #24023] INFO -- py3-201923-windows-server-2016: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T14:13:53.596098 #24023] INFO -- py3-201923-windows-server-2016: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T14:13:53.596778 #24023] INFO -- py3-201923-windows-server-2016: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T14:13:53.597404 #24023] INFO -- py3-201923-windows-server-2016: Attempting to locate it from bootstrapper. +I, [2020-03-06T14:13:53.598027 #24023] INFO -- py3-201923-windows-server-2016: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T14:13:53.598644 #24023] INFO -- py3-201923-windows-server-2016: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T14:13:53.599219 #24023] INFO -- py3-201923-windows-server-2016: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T14:13:53.599807 #24023] INFO -- py3-201923-windows-server-2016: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T14:13:53.600422 #24023] INFO -- py3-201923-windows-server-2016: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T14:13:53.601072 #24023] INFO -- py3-201923-windows-server-2016: Run choco /? for a list of functions. +I, [2020-03-06T14:13:53.601679 #24023] INFO -- py3-201923-windows-server-2016: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T14:13:53.602188 #24023] INFO -- py3-201923-windows-server-2016: first prior to using choco. +I, [2020-03-06T14:13:53.602682 #24023] INFO -- py3-201923-windows-server-2016: Ensuring chocolatey commands are on the path +I, [2020-03-06T14:13:53.603104 #24023] INFO -- py3-201923-windows-server-2016: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T14:13:53.603512 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.603905 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T14:13:53.604310 #24023] INFO -- py3-201923-windows-server-2016: Function: chocolatey.installed +I, [2020-03-06T14:13:53.604721 #24023] INFO -- py3-201923-windows-server-2016: Name: windirstat +I, [2020-03-06T14:13:53.605136 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.605580 #24023] INFO -- py3-201923-windows-server-2016: Comment: +I, [2020-03-06T14:13:53.606026 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:13:16.031024 +I, [2020-03-06T14:13:53.610982 #24023] INFO -- py3-201923-windows-server-2016: Duration: 5812.662 ms +I, [2020-03-06T14:13:53.611582 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.612071 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.612590 #24023] INFO -- py3-201923-windows-server-2016: windirstat: +I, [2020-03-06T14:13:53.613058 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.613526 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.614001 #24023] INFO -- py3-201923-windows-server-2016: - 1.1.2.20161210 +I, [2020-03-06T14:13:53.614455 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.614856 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.615285 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T14:13:53.615706 #24023] INFO -- py3-201923-windows-server-2016: Function: chocolatey.installed +I, [2020-03-06T14:13:53.616155 #24023] INFO -- py3-201923-windows-server-2016: Name: notepadplusplus +I, [2020-03-06T14:13:53.616599 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.617100 #24023] INFO -- py3-201923-windows-server-2016: Comment: +I, [2020-03-06T14:13:53.617514 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:13:21.843686 +I, [2020-03-06T14:13:53.617943 #24023] INFO -- py3-201923-windows-server-2016: Duration: 10023.678 ms +I, [2020-03-06T14:13:53.618360 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.618758 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.619179 #24023] INFO -- py3-201923-windows-server-2016: notepadplusplus: +I, [2020-03-06T14:13:53.619615 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.620058 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.620604 #24023] INFO -- py3-201923-windows-server-2016: - 7.8.5 +I, [2020-03-06T14:13:53.621132 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.621564 #24023] INFO -- py3-201923-windows-server-2016: notepadplusplus.install: +I, [2020-03-06T14:13:53.621999 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.622412 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.622848 #24023] INFO -- py3-201923-windows-server-2016: - 7.8.5 +I, [2020-03-06T14:13:53.623262 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.623695 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.624254 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.system.server.features.installed.telnet-client +I, [2020-03-06T14:13:53.624841 #24023] INFO -- py3-201923-windows-server-2016: Function: win_servermanager.installed +I, [2020-03-06T14:13:53.625401 #24023] INFO -- py3-201923-windows-server-2016: Name: telnet-client +I, [2020-03-06T14:13:53.625977 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.626400 #24023] INFO -- py3-201923-windows-server-2016: Comment: Installed the following: +I, [2020-03-06T14:13:53.626884 #24023] INFO -- py3-201923-windows-server-2016: - telnet-client +I, [2020-03-06T14:13:53.627308 #24023] INFO -- py3-201923-windows-server-2016: - Telnet-Client +I, [2020-03-06T14:13:53.627759 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:13:31.867364 +I, [2020-03-06T14:13:53.628181 #24023] INFO -- py3-201923-windows-server-2016: Duration: 20467.574 ms +I, [2020-03-06T14:13:53.628609 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.629120 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.629578 #24023] INFO -- py3-201923-windows-server-2016: Telnet-Client: +I, [2020-03-06T14:13:53.630047 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.630470 #24023] INFO -- py3-201923-windows-server-2016: new: +I, [2020-03-06T14:13:53.630895 #24023] INFO -- py3-201923-windows-server-2016: Telnet Client +I, [2020-03-06T14:13:53.631291 #24023] INFO -- py3-201923-windows-server-2016: old: +I, [2020-03-06T14:13:53.631721 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.632135 #24023] INFO -- py3-201923-windows-server-2016: ID: windows.module.system.reboot +I, [2020-03-06T14:13:53.632575 #24023] INFO -- py3-201923-windows-server-2016: Function: module.run +I, [2020-03-06T14:13:53.633073 #24023] INFO -- py3-201923-windows-server-2016: Result: True +I, [2020-03-06T14:13:53.633509 #24023] INFO -- py3-201923-windows-server-2016: Comment: system.reboot: True +I, [2020-03-06T14:13:53.633946 #24023] INFO -- py3-201923-windows-server-2016: Started: 11:13:52.334938 +I, [2020-03-06T14:13:53.634339 #24023] INFO -- py3-201923-windows-server-2016: Duration: 265.632 ms +I, [2020-03-06T14:13:53.634737 #24023] INFO -- py3-201923-windows-server-2016: Changes: +I, [2020-03-06T14:13:53.635126 #24023] INFO -- py3-201923-windows-server-2016: ---------- +I, [2020-03-06T14:13:53.635581 #24023] INFO -- py3-201923-windows-server-2016: system.reboot: +I, [2020-03-06T14:13:53.635994 #24023] INFO -- py3-201923-windows-server-2016: True +I, [2020-03-06T14:13:53.636451 #24023] INFO -- py3-201923-windows-server-2016: +I, [2020-03-06T14:13:53.636934 #24023] INFO -- py3-201923-windows-server-2016: Summary for local +I, [2020-03-06T14:13:53.637339 #24023] INFO -- py3-201923-windows-server-2016: ------------- +I, [2020-03-06T14:13:53.637807 #24023] INFO -- py3-201923-windows-server-2016: Succeeded: 20 (changed=20) +I, [2020-03-06T14:13:53.638207 #24023] INFO -- py3-201923-windows-server-2016: Failed: 0 +I, [2020-03-06T14:13:53.638605 #24023] INFO -- py3-201923-windows-server-2016: ------------- +I, [2020-03-06T14:13:53.638979 #24023] INFO -- py3-201923-windows-server-2016: Total states run: 20 +I, [2020-03-06T14:13:53.639354 #24023] INFO -- py3-201923-windows-server-2016: Total run time: 131.298 s +I, [2020-03-06T14:13:53.665340 #24023] INFO -- py3-201923-windows-server-2016: Downloading files from +I, [2020-03-06T14:13:53.871930 #24023] INFO -- py3-201923-windows-server-2016: Finished converging (2m54.42s). +I, [2020-03-06T14:13:53.872169 #24023] INFO -- py3-201923-windows-server-2016: -----> Setting up ... +I, [2020-03-06T14:13:53.875258 #24023] INFO -- py3-201923-windows-server-2016: Finished setting up (0m0.00s). +I, [2020-03-06T14:13:53.875540 #24023] INFO -- py3-201923-windows-server-2016: -----> Verifying ... +I, [2020-03-06T14:13:55.076298 #24023] INFO -- py3-201923-windows-server-2016: Loaded default +I, [2020-03-06T14:14:34.931206 #24023] INFO -- py3-201923-windows-server-2016: Finished verifying (0m41.05s). +I, [2020-03-06T14:14:34.931401 #24023] INFO -- py3-201923-windows-server-2016: Finished testing (5m16.39s). +I, [2020-03-06T14:14:34.933105 #24023] INFO -- py3-201923-windows-server-2016: -----> Destroying ... +I, [2020-03-06T14:14:46.121118 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Forcing shutdown of VM... +I, [2020-03-06T14:14:47.786186 #24023] INFO -- py3-201923-windows-server-2016: ==> default: Destroying VM and associated drives... +I, [2020-03-06T14:14:48.406326 #24023] INFO -- py3-201923-windows-server-2016: Vagrant instance destroyed. +I, [2020-03-06T14:14:48.407574 #24023] INFO -- py3-201923-windows-server-2016: Finished destroying (0m13.47s). diff --git a/test/results/py3-201923-windows-server-2016.log b/test/results/py3-201923-windows-server-2016.log new file mode 100644 index 0000000..684c6ee --- /dev/null +++ b/test/results/py3-201923-windows-server-2016.log @@ -0,0 +1,1006 @@ +Fri Mar 6 14:08:58 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +Author: Peter Mudd +Date: Fri Mar 6 12:43:24 2020 -0500 + + feat: support saltstack 3000 +CURRENT BRANCH COMMIT ID +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +CURRENT RELEASE TAG +v1.0.0 +-----> Starting Test Kitchen (v2.3.4) +-----> Cleaning up any prior instances of +-----> Destroying ... + Finished destroying (0m0.00s). +-----> Testing +-----> Creating ... + Bringing machine 'default' up with 'virtualbox' provider... + ==> default: Cloning VM... + ==> default: Matching MAC address for NAT networking... + ==> default: Checking if box 'StefanScherer/windows_2016' version '2019.02.14' is up to date... + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-server-2016-ef4fbdfc-719e-4c30-8fed-c880f6a30ead + ==> default: Clearing any previously set network interfaces... + ==> default: Preparing network interfaces based on configuration... + default: Adapter 1: nat + ==> default: Forwarding ports... + default: 3389 (guest) => 3389 (host) (adapter 1) + default: 5985 (guest) => 55985 (host) (adapter 1) + default: 5986 (guest) => 55986 (host) (adapter 1) + default: 22 (guest) => 2222 (host) (adapter 1) + ==> default: Running 'pre-boot' VM customizations... + ==> default: Booting VM... + ==> default: Waiting for machine to boot. This may take a few minutes... + default: WinRM address: 127.0.0.1:55985 + default: WinRM username: vagrant + default: WinRM execution_time_limit: PT2H + default: WinRM transport: negotiate + ==> default: Machine booted and ready! + ==> default: Checking for guest additions in VM... + default: The guest additions on this VM do not match the installed version of + default: VirtualBox! In most cases this is fine, but in rare cases it can + default: prevent things such as shared folders from working properly. If you see + default: shared folder errors, please make sure the guest additions within the + default: virtual machine match the version of VirtualBox you have installed on + default: your host and reload your VM. + default: + default: Guest Additions Version: 5.2.26 + default: VirtualBox Version: 6.1 + ==> default: Mounting shared folders... + default: /results => /mnt/c/tmp/results + ==> default: Machine not provisioned because `--no-provision` is specified. + [WinRM] Established + + Vagrant instance created. + Finished creating (1m40.90s). +-----> Converging ... + Preparing files for transfer + Preparing salt-minion + Preparing pillars into /srv/pillar + pillars-from-files is deprecated in favor of pillars_from_files + Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula + Preparing state_top + Preparing scripts into /etc/salt/scripts + + + Directory: C:\ + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 11:11 AM temp + Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + Installing Salt minion + Starting the Salt minion service + Salt minion successfully installed + You asked for latest and you have 2019.2.3 installed, sweet! + + + + + Directory: C:\Users\vagrant\AppData\Local\Temp + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 11:11 AM kitchen + + + Transferring files to + c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + At line:1 char:131 + + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException + + FullyQualifiedErrorId : NativeCommandError + + + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] {'pkg.refresh_db': {'total': 0, 'success': 0, 'failed': 0}} + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + + + local: + ---------- + ID: windows.state.system.hostname.saltstack1 + Function: system.hostname + Name: saltstack1 + Result: True + Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot + Started: 11:11:41.135665 + Duration: 237.648 ms + Changes: + ---------- + hostname: + saltstack1 + ---------- + ID: windows.state.system.computer_desc.description + Function: system.computer_desc + Name: Saltstack Computer Description + Result: True + Comment: Computer description successfully changed to 'Saltstack Computer Description' + Started: 11:11:41.373313 + Duration: 2833.459 ms + Changes: + ---------- + new: + Saltstack Computer Description + old: + ---------- + ID: windows.state.timezone.system.America/New_York + Function: timezone.system + Name: America/New_York + Result: True + Comment: Set timezone America/New_York + Started: 11:11:44.239608 + Duration: 14.58 ms + Changes: + ---------- + timezone: + America/New_York + ---------- + ID: windows.module.environ.items + Function: module.run + Result: True + Comment: environ.items: Success + Started: 11:11:44.270992 + Duration: 0.0 ms + Changes: + ---------- + environ.items: + ---------- + ALLUSERSPROFILE: + C:\ProgramData + APPDATA: + C:\Users\vagrant\AppData\Roaming + COMMONPROGRAMFILES: + C:\Program Files\Common Files + COMMONPROGRAMFILES(X86): + C:\Program Files (x86)\Common Files + COMMONPROGRAMW6432: + C:\Program Files\Common Files + COMPUTERNAME: + VAGRANT + COMSPEC: + C:\Windows\system32\cmd.exe + HOMEDRIVE: + C: + HOMEPATH: + \Users\vagrant + LOCALAPPDATA: + C:\Users\vagrant\AppData\Local + LOGONSERVER: + \\VAGRANT + NUMBER_OF_PROCESSORS: + 2 + OS: + Windows_NT + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 + PATHEXT: + .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL + PROCESSOR_ARCHITECTURE: + AMD64 + PROCESSOR_IDENTIFIER: + Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_LEVEL: + 6 + PROCESSOR_REVISION: + 8e0c + PROGRAMDATA: + C:\ProgramData + PROGRAMFILES: + C:\Program Files + PROGRAMFILES(X86): + C:\Program Files (x86) + PROGRAMW6432: + C:\Program Files + PROMPT: + $P$G + PSMODULEPATH: + C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules + PUBLIC: + C:\Users\Public + PYTHON: + C:\salt\bin\python.exe + SALTDIR: + C:\salt + SCRIPT: + C:\salt\bin\Scripts\salt-call + SYSTEMDRIVE: + C: + SYSTEMROOT: + C:\Windows + TEMP: + C:\Users\vagrant\AppData\Local\Temp + TMP: + C:\Users\vagrant\AppData\Local\Temp + USERDOMAIN: + VAGRANT + USERDOMAIN_ROAMINGPROFILE: + VAGRANT + USERNAME: + vagrant + USERPROFILE: + C:\Users\vagrant + WINDIR: + C:\Windows + ---------- + ID: windows.module.user.current + Function: module.run + Result: True + Comment: user.current: VAGRANT\vagrant + Started: 11:11:44.270992 + Duration: 14.809 ms + Changes: + ---------- + user.current: + VAGRANT\vagrant + ---------- + ID: windows.module.status.uptime + Function: module.run + Result: True + Comment: status.uptime: 0:01:18.317460 + Started: 11:11:44.285801 + Duration: 31.659 ms + Changes: + ---------- + status.uptime: + 0:01:18.317460 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 11:11:44.317460 + Duration: 9648.886 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 11:11:53.966346 + Duration: 345.083 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: manually.update_git_repo-ng + Function: archive.extracted + Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + Result: True + Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs + Started: 11:11:54.311429 + Duration: 801.677 ms + Changes: + ---------- + directories_created: + - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ + extracted_files: + - salt-winrepo-ng-master/ + - salt-winrepo-ng-master/.gitignore + - salt-winrepo-ng-master/.travis.yml + - salt-winrepo-ng-master/.travis/ + - salt-winrepo-ng-master/.travis/requirements.txt + - salt-winrepo-ng-master/.travis/tests.py + - salt-winrepo-ng-master/7zip.sls + - salt-winrepo-ng-master/LICENSE + - salt-winrepo-ng-master/README.md + - salt-winrepo-ng-master/_config.yml + - salt-winrepo-ng-master/activeperl_x64.sls + - salt-winrepo-ng-master/activeperl_x86.sls + - salt-winrepo-ng-master/adobeair.sls + - salt-winrepo-ng-master/adobereader-dc-classic.sls + - salt-winrepo-ng-master/adobereader-xi.sls + - salt-winrepo-ng-master/adobereader.sls + - salt-winrepo-ng-master/adobeshockwaveplayer.sls + - salt-winrepo-ng-master/adv-ip-scanner.sls + - salt-winrepo-ng-master/adv-port-scanner.sls + - salt-winrepo-ng-master/advancedlogging.sls + - salt-winrepo-ng-master/anydesk-msi.sls + - salt-winrepo-ng-master/anydesk.sls + - salt-winrepo-ng-master/applicationrequestrouting.sls + - salt-winrepo-ng-master/aspnet-mvc1.sls + - salt-winrepo-ng-master/atom.sls + - salt-winrepo-ng-master/audacity.sls + - salt-winrepo-ng-master/auditbeat/ + - salt-winrepo-ng-master/auditbeat/init.sls + - salt-winrepo-ng-master/auditbeat/install.cmd + - salt-winrepo-ng-master/auditbeat/install.ps1 + - salt-winrepo-ng-master/auditbeat/remove.cmd + - salt-winrepo-ng-master/autohotkey.sls + - salt-winrepo-ng-master/autoit.sls + - salt-winrepo-ng-master/autopsy.sls + - salt-winrepo-ng-master/awscli.sls + - salt-winrepo-ng-master/azuredatastudio.sls + - salt-winrepo-ng-master/bandizip.sls + - salt-winrepo-ng-master/belarc-advisor.sls + - salt-winrepo-ng-master/bginfo4x.sls + - salt-winrepo-ng-master/bitnami-nginxstack.sls + - salt-winrepo-ng-master/bitvise.sls + - salt-winrepo-ng-master/blender.sls + - salt-winrepo-ng-master/bootracer.sls + - salt-winrepo-ng-master/bulk_extractor.sls + - salt-winrepo-ng-master/bulkrenameutility.sls + - salt-winrepo-ng-master/ccleaner-slim.sls + - salt-winrepo-ng-master/ccleaner.sls + - salt-winrepo-ng-master/cdburnerxp.sls + - salt-winrepo-ng-master/cdroller.sls + - salt-winrepo-ng-master/check-mk-agent-msi.sls + - salt-winrepo-ng-master/check-mk-agent.sls + - salt-winrepo-ng-master/chocolatey/ + - salt-winrepo-ng-master/chocolatey/init.sls + - salt-winrepo-ng-master/chocolatey/install.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.ps1 + - salt-winrepo-ng-master/chrome-rdp.sls + - salt-winrepo-ng-master/chrome.sls + - salt-winrepo-ng-master/clamav.sls + - salt-winrepo-ng-master/clamwin.sls + - salt-winrepo-ng-master/classicshell.sls + - salt-winrepo-ng-master/clink.sls + - salt-winrepo-ng-master/conemu.sls + - salt-winrepo-ng-master/cpu-z.sls + - salt-winrepo-ng-master/curl.sls + - salt-winrepo-ng-master/cyberduck-cli.sls + - salt-winrepo-ng-master/cyberduck-msi.sls + - salt-winrepo-ng-master/cyberduck.sls + - salt-winrepo-ng-master/defraggler.sls + - salt-winrepo-ng-master/docs/ + - salt-winrepo-ng-master/docs/ReadMe.md + - salt-winrepo-ng-master/dotnet.sls + - salt-winrepo-ng-master/dropbox.sls + - salt-winrepo-ng-master/duplicati.sls + - salt-winrepo-ng-master/dvdstyler.sls + - salt-winrepo-ng-master/echo-desktop.sls + - salt-winrepo-ng-master/eea.sls + - salt-winrepo-ng-master/emet.sls + - salt-winrepo-ng-master/emsisoft-anti-malware.sls + - salt-winrepo-ng-master/eraser.sls + - salt-winrepo-ng-master/erlang/ + - salt-winrepo-ng-master/erlang/init.sls + - salt-winrepo-ng-master/erlang/install.cmd + - salt-winrepo-ng-master/evernote.sls + - salt-winrepo-ng-master/fiddler.sls + - salt-winrepo-ng-master/filebeat/ + - salt-winrepo-ng-master/filebeat/init.sls + - salt-winrepo-ng-master/filebeat/install.cmd + - salt-winrepo-ng-master/filebeat/install.ps1 + - salt-winrepo-ng-master/filebeat/remove.cmd + - salt-winrepo-ng-master/filehippo-app-manager.sls + - salt-winrepo-ng-master/filezilla.sls + - salt-winrepo-ng-master/firefox-esr_x64.sls + - salt-winrepo-ng-master/firefox-esr_x86.sls + - salt-winrepo-ng-master/firefox_x64.sls + - salt-winrepo-ng-master/firefox_x86.sls + - salt-winrepo-ng-master/functionbeat/ + - salt-winrepo-ng-master/functionbeat/init.sls + - salt-winrepo-ng-master/functionbeat/install.cmd + - salt-winrepo-ng-master/functionbeat/install.ps1 + - salt-winrepo-ng-master/functionbeat/remove.cmd + - salt-winrepo-ng-master/gedit.sls + - salt-winrepo-ng-master/gimp.sls + - salt-winrepo-ng-master/git-extensions.sls + - salt-winrepo-ng-master/git.sls + - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls + - salt-winrepo-ng-master/gnucash.sls + - salt-winrepo-ng-master/golang.sls + - salt-winrepo-ng-master/goodsync.sls + - salt-winrepo-ng-master/gow.sls + - salt-winrepo-ng-master/gpg4win-light.sls + - salt-winrepo-ng-master/gpg4win-vanilla.sls + - salt-winrepo-ng-master/gpg4win/ + - salt-winrepo-ng-master/gpg4win/init.sls + - salt-winrepo-ng-master/gpg4win/silent.ini + - salt-winrepo-ng-master/graylog-collector-sidecar.sls + - salt-winrepo-ng-master/grepwin.sls + - salt-winrepo-ng-master/gvim.sls + - salt-winrepo-ng-master/handbrake.sls + - salt-winrepo-ng-master/heartbeat/ + - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp + - salt-winrepo-ng-master/heartbeat/init.sls + - salt-winrepo-ng-master/heartbeat/install.cmd + - salt-winrepo-ng-master/heartbeat/install.ps1 + - salt-winrepo-ng-master/heartbeat/remove.cmd + - salt-winrepo-ng-master/hipchat.sls + - salt-winrepo-ng-master/hostsfileeditor.sls + - salt-winrepo-ng-master/hwinfo.sls + - salt-winrepo-ng-master/ice.sls + - salt-winrepo-ng-master/icecast.sls + - salt-winrepo-ng-master/icloud.sls + - salt-winrepo-ng-master/iismediaservices.sls + - salt-winrepo-ng-master/influx-capacitor.sls + - salt-winrepo-ng-master/inkscape.sls + - salt-winrepo-ng-master/intellij-community.sls + - salt-winrepo-ng-master/intellij-ultimate.sls + - salt-winrepo-ng-master/internet-evidence-finder.sls + - salt-winrepo-ng-master/irfanview-plugins.sls + - salt-winrepo-ng-master/irfanview.sls + - salt-winrepo-ng-master/isapirewrite-lite.sls + - salt-winrepo-ng-master/itunes.sls + - salt-winrepo-ng-master/jdk8.sls + - salt-winrepo-ng-master/jre.sls + - salt-winrepo-ng-master/jre8.sls + - salt-winrepo-ng-master/jungledisk-server-management.sls + - salt-winrepo-ng-master/jungledisk-server.sls + - salt-winrepo-ng-master/jungledisk-workgroup.sls + - salt-winrepo-ng-master/kdiff3.sls + - salt-winrepo-ng-master/keepass-2x.sls + - salt-winrepo-ng-master/keepass.sls + - salt-winrepo-ng-master/lastpass.sls + - salt-winrepo-ng-master/lazarus.sls + - salt-winrepo-ng-master/libreoffice.sls + - salt-winrepo-ng-master/logparser.sls + - salt-winrepo-ng-master/maas360bootanalyzer.sls + - salt-winrepo-ng-master/malwarebytes.sls + - salt-winrepo-ng-master/mariadb.sls + - salt-winrepo-ng-master/mercurial.sls + - salt-winrepo-ng-master/messageanalyzer.sls + - salt-winrepo-ng-master/metricbeat/ + - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp + - salt-winrepo-ng-master/metricbeat/init.sls + - salt-winrepo-ng-master/metricbeat/install.cmd + - salt-winrepo-ng-master/metricbeat/install.ps1 + - salt-winrepo-ng-master/metricbeat/remove.cmd + - salt-winrepo-ng-master/microsoft-build-tools.sls + - salt-winrepo-ng-master/mikogo.sls + - salt-winrepo-ng-master/miktex-basic.sls + - salt-winrepo-ng-master/mongodb.sls + - salt-winrepo-ng-master/ms-mbsa.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls + - salt-winrepo-ng-master/mucommander.sls + - salt-winrepo-ng-master/mysql-essential.sls + - salt-winrepo-ng-master/mysql-installer-community.sls + - salt-winrepo-ng-master/mysql-workbench.sls + - salt-winrepo-ng-master/never10.sls + - salt-winrepo-ng-master/newrelic-infra.sls + - salt-winrepo-ng-master/nextcloud-client.sls + - salt-winrepo-ng-master/nmap.sls + - salt-winrepo-ng-master/node.js-lts.sls + - salt-winrepo-ng-master/node.js.sls + - salt-winrepo-ng-master/nomacs.sls + - salt-winrepo-ng-master/npp.sls + - salt-winrepo-ng-master/nsclient.sls + - salt-winrepo-ng-master/nsis.sls + - salt-winrepo-ng-master/ntp.sls + - salt-winrepo-ng-master/nunit-console.sls + - salt-winrepo-ng-master/nxlog.sls + - salt-winrepo-ng-master/octopus-tentacle.sls + - salt-winrepo-ng-master/openlp.sls + - salt-winrepo-ng-master/openoffice.sls + - salt-winrepo-ng-master/openvpn.sls + - salt-winrepo-ng-master/osquery.sls + - salt-winrepo-ng-master/ossec-agent.sls + - salt-winrepo-ng-master/owncloud.sls + - salt-winrepo-ng-master/packetbeat/ + - salt-winrepo-ng-master/packetbeat/init.sls + - salt-winrepo-ng-master/packetbeat/install.cmd + - salt-winrepo-ng-master/packetbeat/install.ps1 + - salt-winrepo-ng-master/packetbeat/remove.cmd + - salt-winrepo-ng-master/pandoc.sls + - salt-winrepo-ng-master/parallels-client-15.sls + - salt-winrepo-ng-master/pass4win.sls + - salt-winrepo-ng-master/passware-kit-agent.sls + - salt-winrepo-ng-master/passware-kit-forensic.sls + - salt-winrepo-ng-master/patchmypc-free.sls + - salt-winrepo-ng-master/pdf24creator.sls + - salt-winrepo-ng-master/pdfcreator.sls + - salt-winrepo-ng-master/peazip.sls + - salt-winrepo-ng-master/pgadmin4.sls + - salt-winrepo-ng-master/pgina.sls + - salt-winrepo-ng-master/pidgin.sls + - salt-winrepo-ng-master/postgresql.sls + - salt-winrepo-ng-master/powerbi-desktop.sls + - salt-winrepo-ng-master/powershell-core.sls + - salt-winrepo-ng-master/prometheus-wmi-exporter.sls + - salt-winrepo-ng-master/putty.sls + - salt-winrepo-ng-master/pycharm-pro/ + - salt-winrepo-ng-master/pycharm-pro/init.sls + - salt-winrepo-ng-master/pycharm-pro/silent.config + - salt-winrepo-ng-master/python2_x64.sls + - salt-winrepo-ng-master/python2_x86.sls + - salt-winrepo-ng-master/python3_x64.sls + - salt-winrepo-ng-master/python3_x86.sls + - salt-winrepo-ng-master/qemu.sls + - salt-winrepo-ng-master/queueexplorerpro.sls + - salt-winrepo-ng-master/quicktime.sls + - salt-winrepo-ng-master/rabbitmq.sls + - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls + - salt-winrepo-ng-master/rakudo-star_x64.sls + - salt-winrepo-ng-master/rasclient.sls + - salt-winrepo-ng-master/rdcman.sls + - salt-winrepo-ng-master/rocketchat.sls + - salt-winrepo-ng-master/rubyinstaller_x64.sls + - salt-winrepo-ng-master/rubyinstaller_x86.sls + - salt-winrepo-ng-master/salt-minion-py2.sls + - salt-winrepo-ng-master/salt-minion-py3.sls + - salt-winrepo-ng-master/sandboxie.sls + - salt-winrepo-ng-master/scaleout.sls + - salt-winrepo-ng-master/secunia.psi.sls + - salt-winrepo-ng-master/sensu.sls + - salt-winrepo-ng-master/sharpdevelop.sls + - salt-winrepo-ng-master/skitch.sls + - salt-winrepo-ng-master/skype-msi.sls + - salt-winrepo-ng-master/skype.sls + - salt-winrepo-ng-master/slack-machine-msi.sls + - salt-winrepo-ng-master/slack-user-msi.sls + - salt-winrepo-ng-master/slack.sls + - salt-winrepo-ng-master/smartmontools.sls + - salt-winrepo-ng-master/snmptools.sls + - salt-winrepo-ng-master/soapui.sls + - salt-winrepo-ng-master/software-informer.sls + - salt-winrepo-ng-master/sourcetree.sls + - salt-winrepo-ng-master/spybot-anti-beacon.sls + - salt-winrepo-ng-master/spybot.sls + - salt-winrepo-ng-master/sscserv-free.sls + - salt-winrepo-ng-master/stayawake/ + - salt-winrepo-ng-master/stayawake/init.sls + - salt-winrepo-ng-master/stayawake/install.cmd + - salt-winrepo-ng-master/steam.sls + - salt-winrepo-ng-master/stellarium.sls + - salt-winrepo-ng-master/strawberryperl_x64.sls + - salt-winrepo-ng-master/strawberryperl_x86.sls + - salt-winrepo-ng-master/stunnel.sls + - salt-winrepo-ng-master/subinacl.sls + - salt-winrepo-ng-master/sumatrapdf.sls + - salt-winrepo-ng-master/svn.sls + - salt-winrepo-ng-master/teamviewer.sls + - salt-winrepo-ng-master/teamviewer_host.sls + - salt-winrepo-ng-master/teracopy.sls + - salt-winrepo-ng-master/texmaker.sls + - salt-winrepo-ng-master/texniccenter.sls + - salt-winrepo-ng-master/texstudio.sls + - salt-winrepo-ng-master/texworks.sls + - salt-winrepo-ng-master/thunderbird.sls + - salt-winrepo-ng-master/tightvnc.sls + - salt-winrepo-ng-master/todotxt.net.sls + - salt-winrepo-ng-master/todour.sls + - salt-winrepo-ng-master/tortoise-bzr.sls + - salt-winrepo-ng-master/tortoise-git.sls + - salt-winrepo-ng-master/tortoise-hg.sls + - salt-winrepo-ng-master/tortoise-svn.sls + - salt-winrepo-ng-master/truecrypt.sls + - salt-winrepo-ng-master/ultradefrag.sls + - salt-winrepo-ng-master/urlrewrite.sls + - salt-winrepo-ng-master/usbdlm.sls + - salt-winrepo-ng-master/vagrant.sls + - salt-winrepo-ng-master/vcforpython27.sls + - salt-winrepo-ng-master/vcxsrv.sls + - salt-winrepo-ng-master/verysleepy.sls + - salt-winrepo-ng-master/veyon.sls + - salt-winrepo-ng-master/virtualbox.sls + - salt-winrepo-ng-master/viscosity.sls + - salt-winrepo-ng-master/vivaldi.sls + - salt-winrepo-ng-master/vlc.sls + - salt-winrepo-ng-master/vs-community.sls + - salt-winrepo-ng-master/vs_remotetools_2017.sls + - salt-winrepo-ng-master/vscode.sls + - salt-winrepo-ng-master/vsee.sls + - salt-winrepo-ng-master/wamp-server-3.sls + - salt-winrepo-ng-master/wamp-stack.sls + - salt-winrepo-ng-master/webdeploy.sls + - salt-winrepo-ng-master/webplatforminstaller.sls + - salt-winrepo-ng-master/win-app-manager.sls + - salt-winrepo-ng-master/windirstat.sls + - salt-winrepo-ng-master/winhttpcertcfg.sls + - salt-winrepo-ng-master/winlogbeat/ + - salt-winrepo-ng-master/winlogbeat/init.sls + - salt-winrepo-ng-master/winlogbeat/install.cmd + - salt-winrepo-ng-master/winlogbeat/install.ps1 + - salt-winrepo-ng-master/winlogbeat/remove.cmd + - salt-winrepo-ng-master/winmerge.sls + - salt-winrepo-ng-master/winmtr.sls + - salt-winrepo-ng-master/winpcap.sls + - salt-winrepo-ng-master/winrar.sls + - salt-winrepo-ng-master/winscp.sls + - salt-winrepo-ng-master/wireshark.sls + - salt-winrepo-ng-master/wmi_provider/ + - salt-winrepo-ng-master/wmi_provider/README.md + - salt-winrepo-ng-master/wmi_provider/answer.txt + - salt-winrepo-ng-master/wmi_provider/init.sls + - salt-winrepo-ng-master/wmi_provider/majsetup.reg + - salt-winrepo-ng-master/wscc.sls + - salt-winrepo-ng-master/wufuc.sls + - salt-winrepo-ng-master/xampp.sls + - salt-winrepo-ng-master/xming.sls + - salt-winrepo-ng-master/yubikey-manager.sls + - salt-winrepo-ng-master/yubikey-personalization-tool.sls + - salt-winrepo-ng-master/zabbix-agent.sls + - salt-winrepo-ng-master/zipinstaller/ + - salt-winrepo-ng-master/zipinstaller/init.sls + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic + - salt-winrepo-ng-master/zoom.sls + ---------- + ID: rename-extract + Function: module.run + Result: True + Comment: file.rename: True + Started: 11:11:55.128824 + Duration: 0.0 ms + Changes: + ---------- + file.rename: + True + ---------- + ID: pkg.refresh_db + Function: module.run + Result: True + Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" + check_cmd determined the state succeeded + Started: 11:11:55.128824 + Duration: 18247.367 ms + Changes: + ---------- + pkg.refresh_db: + ---------- + failed: + 0 + success: + 298 + total: + 298 + ---------- + ID: kdiff3 + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: kdiff3 + Started: 11:12:13.415544 + Duration: 5041.682 ms + Changes: + ---------- + kdiff3: + ---------- + new: + Not Found + old: + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 11:12:18.487307 + Duration: 28729.887 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: + ---------- + ID: 7zip + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 11:12:47.232829 + Duration: 9948.455 ms + Changes: + ---------- + 7zip: + ---------- + new: + 18.06.00.0 + old: + ---------- + ID: windows_environment.refresh.path + Function: module.run + Result: True + Comment: windows_environment.refresh: Success + Started: 11:12:57.198006 + Duration: 30.151 ms + Changes: + ---------- + windows_environment.refresh: + ---------- + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd + ---------- + ID: chocolatey.bootstrap + Function: module.run + Result: True + Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. + + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + + Downloading 7-Zip commandline tool prior to extraction. + + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + + Installing chocolatey on this machine + + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + + We are setting up the Chocolatey package repository. + + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + + + Creating Chocolatey folders if they do not already exist. + + + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + + You can call choco from anywhere, command line or powershell by typing choco. + + Run choco /? for a list of functions. + + You may need to shut down and restart powershell and/or consoles + + first prior to using choco. + + Ensuring chocolatey commands are on the path + + Ensuring chocolatey.nupkg is in the lib folder + Started: 11:12:57.228157 + Duration: 18802.867 ms + Changes: + ---------- + chocolatey.bootstrap: + Getting latest version of the Chocolatey package for download. + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + Downloading 7-Zip commandline tool prior to extraction. + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + Installing chocolatey on this machine + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + We are setting up the Chocolatey package repository. + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + Creating Chocolatey folders if they do not already exist. + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + You can call choco from anywhere, command line or powershell by typing choco. + Run choco /? for a list of functions. + You may need to shut down and restart powershell and/or consoles + first prior to using choco. + Ensuring chocolatey commands are on the path + Ensuring chocolatey.nupkg is in the lib folder + ---------- + ID: windows.system.packages.chocolatey.windirstat + Function: chocolatey.installed + Name: windirstat + Result: True + Comment: + Started: 11:13:16.031024 + Duration: 5812.662 ms + Changes: + ---------- + windirstat: + ---------- + new: + - 1.1.2.20161210 + old: + ---------- + ID: windows.system.packages.chocolatey.notepadplusplus + Function: chocolatey.installed + Name: notepadplusplus + Result: True + Comment: + Started: 11:13:21.843686 + Duration: 10023.678 ms + Changes: + ---------- + notepadplusplus: + ---------- + new: + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 + old: + ---------- + ID: windows.system.server.features.installed.telnet-client + Function: win_servermanager.installed + Name: telnet-client + Result: True + Comment: Installed the following: + - telnet-client + - Telnet-Client + Started: 11:13:31.867364 + Duration: 20467.574 ms + Changes: + ---------- + Telnet-Client: + ---------- + new: + Telnet Client + old: + ---------- + ID: windows.module.system.reboot + Function: module.run + Result: True + Comment: system.reboot: True + Started: 11:13:52.334938 + Duration: 265.632 ms + Changes: + ---------- + system.reboot: + True + + Summary for local + ------------- + Succeeded: 20 (changed=20) + Failed: 0 + ------------- + Total states run: 20 + Total run time: 131.298 s + Downloading files from + Finished converging (2m54.42s). +-----> Setting up ... + Finished setting up (0m0.00s). +-----> Verifying ... + Loaded default +INFO: Got pillar from the target minion using WinRM. + +Profile: SaltStack Windows Formula (default) +Version: (not specified) +Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 + + ✔ Operating System: + ✔ windows_server_2016_standard_evaluation should include "windows" + ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled + ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed + ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey + ✔ Chocolatey package notepadplusplus should be installed + ✔ Chocolatey package windirstat should be installed + ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" + ✔ Windows Features: salt.formula.windows.system.server.features + ✔ Windows Feature 'telnet-client' should be installed + ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap + ✔ Command: `choco` should exist + ✔ Windows Timezone: salt.states.timezone.system + ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set + ↺ Windows Optional Features: salt.states.win_dism.feature_installed + ↺ The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead. + ✔ Windows Computer Hostname: salt.states.win_system.hostname + ✔ System Information hostname should cmp == "saltstack1" + ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" + ✔ Windows Computer Description: salt.states.win_system.computer_desc + ✔ Powershell stdout should match "Saltstack Computer Description" + ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed + ✔ System Package Git should be installed + ✔ System Package 7-Zip should be installed + ✔ System Package 7-Zip version should cmp == "18.06.00.0" + ✔ System Package KDiff3 should be installed + + +Profile Summary: 9 successful controls, 0 control failures, 1 control skipped +Test Summary: 19 successful, 0 failures, 1 skipped + Finished verifying (0m41.05s). + Finished testing (5m16.39s). +-----> Destroying ... + ==> default: Forcing shutdown of VM... + ==> default: Destroying VM and associated drives... + Vagrant instance destroyed. + Finished destroying (0m13.47s). +-----> Test Kitchen is finished. (5m42.54s) +KITCHEN TEST EXIT CODE +0 diff --git a/test/results/py3-201923-windows-server-2016.salt.log b/test/results/py3-201923-windows-server-2016.salt.log new file mode 100755 index 0000000..417627b --- /dev/null +++ b/test/results/py3-201923-windows-server-2016.salt.log @@ -0,0 +1,31861 @@ +2020-03-06 11:11:27,958 [salt.loader :747 ][DEBUG ][4804] Grains refresh requested. Refreshing grains. +2020-03-06 11:11:27,958 [salt.config :2190][DEBUG ][4804] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 11:11:27,958 [salt.config :2334][DEBUG ][4804] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 11:11:27,974 [salt.config :2190][DEBUG ][4804] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 11:11:36,257 [salt.pillar :57 ][DEBUG ][4804] Determining pillar cache +2020-03-06 11:11:36,288 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:11:36,382 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:11:36,413 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 11:11:36,413 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 11:11:36,430 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.016789674758911133 +2020-03-06 11:11:36,430 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 11:11:36,445 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 11:11:36,445 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:36,445 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded confirm_top.confirm_top +2020-03-06 11:11:36,460 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded compound_match.match +2020-03-06 11:11:36,460 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4804] compound_match: vagrant ? * +2020-03-06 11:11:36,460 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded glob_match.match +2020-03-06 11:11:36,460 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4804] compound_match vagrant ? "*" => "True" +2020-03-06 11:11:36,460 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 11:11:36,460 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 11:11:36,476 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.015619516372680664 +2020-03-06 11:11:36,476 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 11:11:36,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 11:11:36,585 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015619039535522461 +2020-03-06 11:11:36,617 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:11:36,632 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:11:36,695 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded state.highstate +2020-03-06 11:11:36,992 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded direct_call.execute +2020-03-06 11:11:37,007 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded grains.get +2020-03-06 11:11:37,117 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded saltutil.is_running +2020-03-06 11:11:37,148 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded config.get +2020-03-06 11:11:37,148 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: test, ret: _|- +2020-03-06 11:11:37,180 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,415 [git.cmd :722 ][DEBUG ][4804] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 11:11:37,446 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,446 [salt.fileserver :502 ][DEBUG ][4804] Updating roots fileserver cache +2020-03-06 11:11:37,507 [salt.state :736 ][DEBUG ][4804] Gathering pillar data for state run +2020-03-06 11:11:37,507 [salt.state :750 ][DEBUG ][4804] Finished gathering pillar data for state run +2020-03-06 11:11:37,507 [salt.state :966 ][INFO ][4804] Loading fresh modules for state activity +2020-03-06 11:11:37,554 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:11:37,554 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:11:37,554 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 11:11:37,554 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 11:11:37,554 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 11:11:37,570 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:37,570 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 11:11:37,570 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 11:11:37,570 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:37,601 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,601 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,601 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.031248092651367188 +2020-03-06 11:11:37,601 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +--- +base: + "*": + - windows + +2020-03-06 11:11:37,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 11:11:37,601 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:37,601 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded confirm_top.confirm_top +2020-03-06 11:11:37,617 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded compound_match.match +2020-03-06 11:11:37,617 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4804] compound_match: vagrant ? * +2020-03-06 11:11:37,617 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded glob_match.match +2020-03-06 11:11:37,617 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4804] compound_match vagrant ? "*" => "True" +2020-03-06 11:11:37,617 [salt.fileclient :1368][DEBUG ][4804] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 11:11:37,617 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded saltutil.sync_all +2020-03-06 11:11:37,617 [salt.loaded.int.module.saltutil:968 ][DEBUG ][4804] Syncing all +2020-03-06 11:11:37,617 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 11:11:37,648 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,679 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,679 [salt.utils.extmods:90 ][INFO ][4804] Syncing clouds for environment 'base' +2020-03-06 11:11:37,679 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_clouds, for base) +2020-03-06 11:11:37,679 [salt.fileclient :234 ][INFO ][4804] Caching directory '_clouds/' for environment 'base' +2020-03-06 11:11:37,679 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:37,695 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 11:11:37,695 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 11:11:37,710 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,710 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,727 [salt.utils.extmods:90 ][INFO ][4804] Syncing beacons for environment 'base' +2020-03-06 11:11:37,727 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_beacons, for base) +2020-03-06 11:11:37,727 [salt.fileclient :234 ][INFO ][4804] Caching directory '_beacons/' for environment 'base' +2020-03-06 11:11:37,727 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:37,727 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 11:11:37,727 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 11:11:37,757 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,757 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,757 [salt.utils.extmods:90 ][INFO ][4804] Syncing modules for environment 'base' +2020-03-06 11:11:37,757 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_modules, for base) +2020-03-06 11:11:37,757 [salt.fileclient :234 ][INFO ][4804] Caching directory '_modules/' for environment 'base' +2020-03-06 11:11:37,773 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:37,773 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 11:11:37,773 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 11:11:37,773 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 11:11:37,773 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:37,773 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 11:11:37,788 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 11:11:37,788 [salt.utils.extmods:119 ][INFO ][4804] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 11:11:37,788 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 11:11:37,804 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,820 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,820 [salt.utils.extmods:90 ][INFO ][4804] Syncing states for environment 'base' +2020-03-06 11:11:37,820 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_states, for base) +2020-03-06 11:11:37,820 [salt.fileclient :234 ][INFO ][4804] Caching directory '_states/' for environment 'base' +2020-03-06 11:11:37,820 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:37,835 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 11:11:37,835 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 11:11:37,851 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,868 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,868 [salt.utils.extmods:90 ][INFO ][4804] Syncing sdb for environment 'base' +2020-03-06 11:11:37,868 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_sdb, for base) +2020-03-06 11:11:37,868 [salt.fileclient :234 ][INFO ][4804] Caching directory '_sdb/' for environment 'base' +2020-03-06 11:11:37,868 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:37,868 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 11:11:37,868 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 11:11:37,913 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,930 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,930 [salt.utils.extmods:90 ][INFO ][4804] Syncing grains for environment 'base' +2020-03-06 11:11:37,930 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_grains, for base) +2020-03-06 11:11:37,930 [salt.fileclient :234 ][INFO ][4804] Caching directory '_grains/' for environment 'base' +2020-03-06 11:11:37,930 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:37,930 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 11:11:37,930 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 11:11:37,976 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:37,976 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:37,976 [salt.utils.extmods:90 ][INFO ][4804] Syncing renderers for environment 'base' +2020-03-06 11:11:37,976 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_renderers, for base) +2020-03-06 11:11:37,992 [salt.fileclient :234 ][INFO ][4804] Caching directory '_renderers/' for environment 'base' +2020-03-06 11:11:38,008 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,008 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 11:11:38,008 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 11:11:38,024 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,040 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,040 [salt.utils.extmods:90 ][INFO ][4804] Syncing returners for environment 'base' +2020-03-06 11:11:38,040 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_returners, for base) +2020-03-06 11:11:38,040 [salt.fileclient :234 ][INFO ][4804] Caching directory '_returners/' for environment 'base' +2020-03-06 11:11:38,040 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,040 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 11:11:38,040 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 11:11:38,071 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,071 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,071 [salt.utils.extmods:90 ][INFO ][4804] Syncing output for environment 'base' +2020-03-06 11:11:38,071 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_output, for base) +2020-03-06 11:11:38,071 [salt.fileclient :234 ][INFO ][4804] Caching directory '_output/' for environment 'base' +2020-03-06 11:11:38,087 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,087 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 11:11:38,087 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 11:11:38,103 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,103 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,120 [salt.utils.extmods:90 ][INFO ][4804] Syncing utils for environment 'base' +2020-03-06 11:11:38,120 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_utils, for base) +2020-03-06 11:11:38,120 [salt.fileclient :234 ][INFO ][4804] Caching directory '_utils/' for environment 'base' +2020-03-06 11:11:38,120 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,120 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 11:11:38,120 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 11:11:38,136 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,151 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,151 [salt.utils.extmods:90 ][INFO ][4804] Syncing log_handlers for environment 'base' +2020-03-06 11:11:38,151 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_log_handlers, for base) +2020-03-06 11:11:38,151 [salt.fileclient :234 ][INFO ][4804] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 11:11:38,151 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,151 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 11:11:38,151 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 11:11:38,183 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,183 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,183 [salt.utils.extmods:90 ][INFO ][4804] Syncing proxy for environment 'base' +2020-03-06 11:11:38,183 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_proxy, for base) +2020-03-06 11:11:38,198 [salt.fileclient :234 ][INFO ][4804] Caching directory '_proxy/' for environment 'base' +2020-03-06 11:11:38,198 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,198 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 11:11:38,198 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 11:11:38,230 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,230 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,230 [salt.utils.extmods:90 ][INFO ][4804] Syncing engines for environment 'base' +2020-03-06 11:11:38,230 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_engines, for base) +2020-03-06 11:11:38,230 [salt.fileclient :234 ][INFO ][4804] Caching directory '_engines/' for environment 'base' +2020-03-06 11:11:38,230 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,246 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 11:11:38,246 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 11:11:38,262 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,279 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,279 [salt.utils.extmods:90 ][INFO ][4804] Syncing thorium for environment 'base' +2020-03-06 11:11:38,279 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_thorium, for base) +2020-03-06 11:11:38,279 [salt.fileclient :234 ][INFO ][4804] Caching directory '_thorium/' for environment 'base' +2020-03-06 11:11:38,279 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,279 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 11:11:38,279 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 11:11:38,310 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,310 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,310 [salt.utils.extmods:90 ][INFO ][4804] Syncing serializers for environment 'base' +2020-03-06 11:11:38,310 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_serializers, for base) +2020-03-06 11:11:38,310 [salt.fileclient :234 ][INFO ][4804] Caching directory '_serializers/' for environment 'base' +2020-03-06 11:11:38,310 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,326 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 11:11:38,326 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 11:11:38,357 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,374 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,374 [salt.utils.extmods:90 ][INFO ][4804] Syncing matchers for environment 'base' +2020-03-06 11:11:38,374 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_matchers, for base) +2020-03-06 11:11:38,374 [salt.fileclient :234 ][INFO ][4804] Caching directory '_matchers/' for environment 'base' +2020-03-06 11:11:38,374 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,374 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 11:11:38,389 [salt.utils.extmods:79 ][INFO ][4804] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 11:11:38,405 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:38,421 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:38,421 [salt.utils.extmods:90 ][INFO ][4804] Syncing pillar for environment 'base' +2020-03-06 11:11:38,421 [salt.utils.extmods:94 ][INFO ][4804] Loading cache from salt://_pillar, for base) +2020-03-06 11:11:38,421 [salt.fileclient :234 ][INFO ][4804] Caching directory '_pillar/' for environment 'base' +2020-03-06 11:11:38,421 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:38,437 [salt.utils.extmods:109 ][DEBUG ][4804] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 11:11:38,437 [salt.state :1000][DEBUG ][4804] Refreshing modules... +2020-03-06 11:11:38,453 [salt.state :966 ][INFO ][4804] Loading fresh modules for state activity +2020-03-06 11:11:38,485 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:11:38,500 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:11:38,516 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 11:11:38,516 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 11:11:38,516 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 11:11:38,516 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 11:11:38,516 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,516 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 11:11:38,516 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 11:11:38,532 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:38,532 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:38,532 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:38,532 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 11:11:38,532 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,548 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 11:11:38,565 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:38,565 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:38,565 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 11:11:38,565 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,580 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 11:11:38,580 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:38,580 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:38,580 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:38,580 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,596 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 11:11:38,596 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:38,596 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:38,596 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:38,596 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,612 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 11:11:38,612 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:38,612 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:38,612 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 11:11:38,612 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,612 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 11:11:38,628 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:38,628 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:38,628 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:38,628 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,628 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 11:11:38,628 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:38,628 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:38,643 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:38,643 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,643 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 11:11:38,660 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded config.get +2020-03-06 11:11:38,660 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded grains.filter_by +2020-03-06 11:11:38,660 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.12805581092834473 +2020-03-06 11:11:38,660 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .states + - .modules + - .system +2020-03-06 11:11:38,660 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.states', '.modules', '.system'])]) +2020-03-06 11:11:38,660 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:38,660 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 11:11:38,675 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 11:11:38,675 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 11:11:38,675 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,675 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 11:11:38,675 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 11:11:38,675 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:38,675 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:11:38,691 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:11:38,691 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 11:11:38,691 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,691 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 11:11:38,739 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:38,739 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:38,756 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:38,756 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:38,756 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:38,756 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:38,771 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:38,771 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:38,771 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:38,771 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:38,771 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:38,771 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:38,786 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:38,786 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:38,786 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.11126494407653809 +2020-03-06 11:11:38,802 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.state.system.computer_desc.description: + system.computer_desc: + - name: Saltstack Computer Description + - require: + - windows.state.system.hostname.saltstack1 +windows.state.system.hostname.saltstack1: + system.hostname: + - name: saltstack1 +windows.state.timezone.system.America/New_York: + timezone.system: + - name: America/New_York + - utc: False + + + +2020-03-06 11:11:38,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) +2020-03-06 11:11:38,802 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:38,802 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 11:11:38,802 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 11:11:38,802 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 11:11:38,802 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,834 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 11:11:38,834 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 11:11:38,834 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:38,834 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:11:38,834 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:11:38,898 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:38,898 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:38,914 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:38,914 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:38,929 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:38,929 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:38,929 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:38,929 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:38,929 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:38,929 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:38,945 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:38,945 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:38,945 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:38,945 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:38,962 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.1276237964630127 +2020-03-06 11:11:38,962 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.module.environ.items: + module.run: + - environ.items: +windows.module.system.reboot: + module.run: + - system.reboot: + - timeout: 5 + - in_seconds: True + - only_on_pending_reboot: True + - wait_for_reboot: False + - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + - order: last +windows.module.user.current: + module.run: + - user.current: + - sam: True +windows.module.status.uptime: + module.run: + - status.uptime: + - human_readable: True + - require: + - windows.module.user.current + + +2020-03-06 11:11:38,962 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) +2020-03-06 11:11:38,962 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:38,962 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 11:11:38,962 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 11:11:38,977 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 11:11:38,977 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 11:11:38,977 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:38,977 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 11:11:38,977 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 11:11:38,977 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:38,994 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:38,994 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,009 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,009 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,009 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,025 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,025 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,025 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,025 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,025 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,025 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,025 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,041 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,041 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,057 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.08023786544799805 +2020-03-06 11:11:39,057 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +# sls: windows.system windows system +# slspath: windows/system windows system +# sls: os_windows.desktop.features os_windows features +# slspath: os_windows/desktop os_windows desktop +include: + # - .settings + # + # - .dsc + # + - .packages + - .server + - .desktop + + +2020-03-06 11:11:39,057 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.packages', '.server', '.desktop'])]) +2020-03-06 11:11:39,057 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,057 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 11:11:39,057 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 11:11:39,057 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 11:11:39,057 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 11:11:39,057 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,072 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 11:11:39,072 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 11:11:39,072 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,072 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:39,072 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .providers + - .appx + - .powershell + - .saltstack + - .chocolatey +2020-03-06 11:11:39,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) +2020-03-06 11:11:39,072 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,072 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 11:11:39,072 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 11:11:39,088 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 11:11:39,088 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 11:11:39,088 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,088 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 11:11:39,088 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 11:11:39,088 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,088 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:39,088 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .remove-provisioned-apps + +2020-03-06 11:11:39,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.remove-provisioned-apps'])]) +2020-03-06 11:11:39,088 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,104 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:11:39,104 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:11:39,104 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:11:39,104 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,104 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:11:39,104 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 11:11:39,104 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,104 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:39,120 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .removed + +2020-03-06 11:11:39,120 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.removed'])]) +2020-03-06 11:11:39,120 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,120 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 11:11:39,120 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 11:11:39,120 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 11:11:39,120 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,120 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 11:11:39,136 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 11:11:39,136 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,136 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,136 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,153 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,168 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,168 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,168 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,168 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,168 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,168 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,184 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,184 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,184 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,184 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,184 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,199 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.06351518630981445 +2020-03-06 11:11:39,199 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + + + +2020-03-06 11:11:39,199 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +{} +2020-03-06 11:11:39,199 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,199 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 11:11:39,199 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 11:11:39,199 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 11:11:39,199 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 11:11:39,215 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,215 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 11:11:39,215 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 11:11:39,215 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,215 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:39,215 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .modules + - .framework + +2020-03-06 11:11:39,215 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.framework'])]) +2020-03-06 11:11:39,215 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,231 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 11:11:39,231 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:11:39,231 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:11:39,231 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:11:39,231 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,231 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:11:39,231 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 11:11:39,231 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,247 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.01587533950805664 +2020-03-06 11:11:39,247 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .v4_5 + +2020-03-06 11:11:39,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.v4_5'])]) +2020-03-06 11:11:39,247 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,247 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 11:11:39,247 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:11:39,247 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:11:39,247 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:11:39,247 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,263 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:11:39,263 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 11:11:39,263 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,263 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:39,263 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .tls1_2 + +2020-03-06 11:11:39,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.tls1_2'])]) +2020-03-06 11:11:39,263 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,263 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:11:39,279 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:11:39,279 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:11:39,279 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,279 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:11:39,279 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 11:11:39,279 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,295 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,295 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,311 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,311 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,311 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,311 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,326 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,326 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,326 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,326 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,326 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,326 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,342 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,342 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,342 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.06349945068359375 +2020-03-06 11:11:39,342 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +# https://docs.microsoft.com/en-us/security/solving-tls1-problem +# https://blog.pauby.com/post/force-powershell-to-use-tls-1-2/ +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:64 +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:32 +# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - use_32bit_registry: true + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} +2020-03-06 11:11:39,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) +2020-03-06 11:11:39,358 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,358 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 11:11:39,358 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 11:11:39,358 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 11:11:39,358 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 11:11:39,358 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,374 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 11:11:39,374 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 11:11:39,374 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,374 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:39,374 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 11:11:39,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 11:11:39,374 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,374 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 11:11:39,374 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 11:11:39,391 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 11:11:39,391 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,406 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 11:11:39,406 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 11:11:39,406 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,406 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 11:11:39,406 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 11:11:39,406 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 11:11:39,406 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,422 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 11:11:39,438 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,438 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,438 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,459 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,459 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,459 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,469 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,469 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,469 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,469 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,469 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,469 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,485 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,485 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,485 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:11:39,501 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:11:39,501 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:11:39,501 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,501 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:11:39,581 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pkg.version +2020-03-06 11:11:39,581 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][4804] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 11:11:39,596 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4804] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 11:11:39,596 [salt.loaded.int.module.win_pkg:935 ][INFO ][4804] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 11:11:39,596 [salt.loaded.int.module.win_pkg:954 ][INFO ][4804] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 11:11:39,596 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded cp.cache_dir +2020-03-06 11:11:39,628 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded roots.envs +2020-03-06 11:11:39,644 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:11:39,644 [salt.fileclient :234 ][INFO ][4804] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 11:11:39,644 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:39,660 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded reg.list_keys +2020-03-06 11:11:39,660 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,660 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,692 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,707 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,707 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.30164217948913574 +2020-03-06 11:11:39,707 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +include: + - .windows_software_repository +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db +7zip: + pkg.installed: + - version: 18.06.00.0 + - refresh_minion_env_path: False + - require: + - pkg.refresh_db +windows_environment.refresh.path: + module.run: + - windows_environment.refresh: + - onchanges: + + - pkg: git +2020-03-06 11:11:39,707 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 11:11:39,707 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,707 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:11:39,707 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:11:39,723 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:11:39,723 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,723 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:11:39,723 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 11:11:39,723 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,739 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.079403) +2020-03-06 11:11:39,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,771 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,771 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,771 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,771 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,771 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,771 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,771 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,788 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:11:39,788 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.06437110900878906 +2020-03-06 11:11:39,788 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +manually.update_git_repo-ng: + archive.extracted: + - name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + - source: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip + - skip_verify: True + - if_missing: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + +rename-extract: + module.run: + - file.rename: + - src: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng-master + - dst: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + - onchanges: + - manually.update_git_repo-ng + - onchanges_in: + - pkg.refresh_db + +pkg.refresh_db: + module.run: + - pkg.refresh_db: + - failhard: False + - check_cmd: + - dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + + - retry: + attempts: 10 + until: True + interval: 5 +2020-03-06 11:11:39,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) +2020-03-06 11:11:39,788 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,788 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 11:11:39,788 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 11:11:39,803 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 11:11:39,803 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 11:11:39,803 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,803 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 11:11:39,819 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 11:11:39,819 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,819 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:39,819 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 11:11:39,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 11:11:39,819 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,835 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:11:39,835 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:11:39,835 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:11:39,835 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,835 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:11:39,835 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 11:11:39,835 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:39,850 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,850 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:39,867 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,882 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:39,882 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,882 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:39,898 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,898 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:39,898 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,914 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:39,914 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,914 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:39,914 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,930 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:39,930 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.0952451229095459 +2020-03-06 11:11:39,930 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .bootstrap +windows.system.packages.chocolatey.windirstat: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: windirstat + - version: 1.1.2.20161210 + +windows.system.packages.chocolatey.notepadplusplus: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: notepadplusplus + +2020-03-06 11:11:39,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) +2020-03-06 11:11:39,946 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:39,946 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:11:39,946 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:11:39,962 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:11:39,962 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:39,977 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:11:39,993 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 11:11:40,009 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:40,025 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:40,041 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:40,073 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:40,089 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:40,104 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:40,104 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:40,120 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:40,120 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:40,136 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:40,152 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:40,152 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:40,184 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:40,184 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:40,215 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:40,232 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.223311185836792 +2020-03-06 11:11:40,247 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +chocolatey.bootstrap: + module.run: + - chocolatey.bootstrap: + - unless: "where.exe chocolatey" + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + +2020-03-06 11:11:40,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) +2020-03-06 11:11:40,247 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:40,263 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 11:11:40,263 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 11:11:40,263 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 11:11:40,263 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 11:11:40,263 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,295 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 11:11:40,310 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 11:11:40,326 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:40,343 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.01701831817626953 +2020-03-06 11:11:40,343 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .features + +2020-03-06 11:11:40,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.features'])]) +2020-03-06 11:11:40,374 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.015829086303710938 +2020-03-06 11:11:40,390 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 11:11:40,390 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 11:11:40,406 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 11:11:40,422 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 11:11:40,437 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,470 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 11:11:40,485 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 11:11:40,518 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:40,518 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:40,518 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 11:11:40,533 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 11:11:40,548 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.015859365463256836 +2020-03-06 11:11:40,564 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 11:11:40,581 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 11:11:40,596 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 11:11:40,612 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,628 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 11:11:40,644 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 11:11:40,644 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:40,659 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 11:11:40,659 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 11:11:40,659 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 11:11:40,659 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,675 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 11:11:40,691 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:40,691 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:40,708 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:40,708 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:40,723 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:40,723 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:40,723 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:40,723 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:40,739 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:40,739 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:40,739 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:40,739 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:40,755 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:40,755 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:40,770 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/server/features/features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 11:11:40,770 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 11:11:40,770 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/features.jinja' +2020-03-06 11:11:40,770 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,786 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/features.jinja' +2020-03-06 11:11:40,786 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.14274191856384277 +2020-03-06 11:11:40,802 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.system.server.features.installed.telnet-client: + win_servermanager.installed: + - name: telnet-client + - recurse: true + +2020-03-06 11:11:40,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('windows.system.server.features.installed.telnet-client', OrderedDict([('win_servermanager.installed', [OrderedDict([('name', 'telnet-client')]), OrderedDict([('recurse', True)])])]))]) +2020-03-06 11:11:40,802 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:40,802 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 11:11:40,802 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 11:11:40,818 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 11:11:40,818 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 11:11:40,818 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,834 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 11:11:40,834 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 11:11:40,834 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:40,834 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:40,850 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .packages + - .optional_features + +2020-03-06 11:11:40,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.optional_features'])]) +2020-03-06 11:11:40,850 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:40,850 [salt.fileclient :1072][DEBUG ][4804] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 11:11:40,850 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 11:11:40,866 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 11:11:40,866 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 11:11:40,866 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,881 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 11:11:40,881 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 11:11:40,881 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:40,881 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:11:40,897 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .feature_installed + +2020-03-06 11:11:40,914 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('include', ['.feature_installed'])]) +2020-03-06 11:11:40,914 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:40,914 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:11:40,914 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:11:40,914 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:11:40,929 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,929 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:11:40,929 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 11:11:40,929 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:11:40,945 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:11:40,945 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:11:40,945 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:11:40,945 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:11:40,961 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:11:40,961 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:40,977 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:11:40,993 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:40,993 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:11:40,993 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:41,008 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:11:41,008 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:41,008 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:11:41,008 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:41,024 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:11:41,024 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:41,024 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:11:41,024 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:41,040 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:11:41,056 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.12696027755737305 +2020-03-06 11:11:41,056 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +2020-03-06 11:11:41,056 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +{} +2020-03-06 11:11:41,056 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:11:41,072 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded cmd.run +2020-03-06 11:11:41,135 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded system.get_computer_desc +2020-03-06 11:11:41,135 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded system.computer_desc +2020-03-06 11:11:41,135 [salt.state :1819][INFO ][4804] Running state [saltstack1] at time 11:11:41.135665 +2020-03-06 11:11:41,151 [salt.state :1852][INFO ][4804] Executing state system.hostname for [saltstack1] +2020-03-06 11:11:41,151 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 11:11:41,230 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: vagrant +2020-03-06 11:11:41,246 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4804] output: vagrant +2020-03-06 11:11:41,246 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 11:11:41,246 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: vagrant +2020-03-06 11:11:41,262 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4804] output: vagrant +2020-03-06 11:11:41,262 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'wmic computersystem where name='vagrant' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 11:11:41,373 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 11:11:41,373 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4804] output: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 11:11:41,373 [salt.state :320 ][INFO ][4804] {'hostname': 'saltstack1'} +2020-03-06 11:11:41,373 [salt.state :1997][INFO ][4804] Completed state [saltstack1] at time 11:11:41.373313 (duration_in_ms=237.648) +2020-03-06 11:11:41,373 [salt.state :1819][INFO ][4804] Running state [Saltstack Computer Description] at time 11:11:41.373313 +2020-03-06 11:11:41,373 [salt.state :1852][INFO ][4804] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 11:11:44,206 [salt.state :320 ][INFO ][4804] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 11:11:44,206 [salt.state :1997][INFO ][4804] Completed state [Saltstack Computer Description] at time 11:11:44.206772 (duration_in_ms=2833.459) +2020-03-06 11:11:44,239 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded platform.is_windows +2020-03-06 11:11:44,239 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded path.which +2020-03-06 11:11:44,239 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded timezone.get_zone +2020-03-06 11:11:44,239 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded timezone.system +2020-03-06 11:11:44,239 [salt.state :1819][INFO ][4804] Running state [America/New_York] at time 11:11:44.239608 +2020-03-06 11:11:44,239 [salt.state :1852][INFO ][4804] Executing state timezone.system for [America/New_York] +2020-03-06 11:11:44,254 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 11:11:44,254 [salt.state :320 ][INFO ][4804] {'timezone': 'America/New_York'} +2020-03-06 11:11:44,254 [salt.state :1997][INFO ][4804] Completed state [America/New_York] at time 11:11:44.254188 (duration_in_ms=14.58) +2020-03-06 11:11:44,270 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded module.run +2020-03-06 11:11:44,270 [salt.state :1819][INFO ][4804] Running state [windows.module.environ.items] at time 11:11:44.270992 +2020-03-06 11:11:44,270 [salt.state :1852][INFO ][4804] Executing state module.run for [windows.module.environ.items] +2020-03-06 11:11:44,270 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded environ.items +2020-03-06 11:11:44,270 [salt.state :320 ][INFO ][4804] {'environ.items': {'OS': 'Windows_NT', 'HOMEDRIVE': 'C:', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'PUBLIC': 'C:\\Users\\Public', 'PROMPT': '$P$G', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'LOGONSERVER': '\\\\VAGRANT', 'PROGRAMFILES': 'C:\\Program Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PROCESSOR_LEVEL': '6', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMPUTERNAME': 'VAGRANT', 'PROGRAMDATA': 'C:\\ProgramData', 'SALTDIR': 'C:\\salt', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROCESSOR_REVISION': '8e0c', 'USERNAME': 'vagrant', 'NUMBER_OF_PROCESSORS': '2', 'PROGRAMW6432': 'C:\\Program Files', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'USERPROFILE': 'C:\\Users\\vagrant', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT', 'HOMEPATH': '\\Users\\vagrant', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'SYSTEMDRIVE': 'C:', 'USERDOMAIN': 'VAGRANT', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'SYSTEMROOT': 'C:\\Windows', 'WINDIR': 'C:\\Windows', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files'}} +2020-03-06 11:11:44,270 [salt.state :1997][INFO ][4804] Completed state [windows.module.environ.items] at time 11:11:44.270992 (duration_in_ms=0.0) +2020-03-06 11:11:44,270 [salt.state :1819][INFO ][4804] Running state [windows.module.user.current] at time 11:11:44.270992 +2020-03-06 11:11:44,270 [salt.state :1852][INFO ][4804] Executing state module.run for [windows.module.user.current] +2020-03-06 11:11:44,285 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded user.current +2020-03-06 11:11:44,285 [salt.state :320 ][INFO ][4804] {'user.current': 'VAGRANT\\vagrant'} +2020-03-06 11:11:44,285 [salt.state :1997][INFO ][4804] Completed state [windows.module.user.current] at time 11:11:44.285801 (duration_in_ms=14.809) +2020-03-06 11:11:44,285 [salt.state :1819][INFO ][4804] Running state [windows.module.status.uptime] at time 11:11:44.285801 +2020-03-06 11:11:44,285 [salt.state :1852][INFO ][4804] Executing state module.run for [windows.module.status.uptime] +2020-03-06 11:11:44,317 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded status.uptime +2020-03-06 11:11:44,317 [salt.state :320 ][INFO ][4804] {'status.uptime': '0:01:18.317460'} +2020-03-06 11:11:44,317 [salt.state :1997][INFO ][4804] Completed state [windows.module.status.uptime] at time 11:11:44.317460 (duration_in_ms=31.659) +2020-03-06 11:11:44,317 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded reg.present +2020-03-06 11:11:44,317 [salt.state :1819][INFO ][4804] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:11:44.317460 +2020-03-06 11:11:44,317 [salt.state :1852][INFO ][4804] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 11:11:45,264 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt.secret_key, ret: _|- +2020-03-06 11:11:45,264 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt:secret_key, ret: _|- +2020-03-06 11:11:45,818 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet.api_key, ret: _|- +2020-03-06 11:11:45,818 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet:api_key, ret: _|- +2020-03-06 11:11:46,262 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops.api_key, ret: _|- +2020-03-06 11:11:46,262 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops:api_key, ret: _|- +2020-03-06 11:11:50,850 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 11:11:50,850 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded apache.a2enconf +2020-03-06 11:11:50,850 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded apache.a2enmod +2020-03-06 11:11:50,850 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded apache.a2ensite +2020-03-06 11:11:50,881 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 11:11:50,897 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 11:11:50,975 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 11:11:50,975 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 11:11:51,023 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 11:11:51,023 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 11:11:51,054 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto3_sns.topic_exists +2020-03-06 11:11:51,070 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_apigateway.describe_apis +2020-03-06 11:11:51,086 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_asg.exists +2020-03-06 11:11:51,086 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cfn.exists +2020-03-06 11:11:51,101 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 11:11:51,101 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudtrail.exists +2020-03-06 11:11:51,118 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 11:11:51,118 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 11:11:51,118 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 11:11:51,133 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 11:11:51,133 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_dynamodb.exists +2020-03-06 11:11:51,149 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_ec2.get_key +2020-03-06 11:11:51,165 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elasticache.exists +2020-03-06 11:11:51,165 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 11:11:51,180 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elb.exists +2020-03-06 11:11:51,180 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 11:11:51,196 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_iam.get_user +2020-03-06 11:11:51,212 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_iam.role_exists +2020-03-06 11:11:51,212 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_iot.policy_exists +2020-03-06 11:11:51,212 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_kinesis.exists +2020-03-06 11:11:51,227 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_kms.describe_key +2020-03-06 11:11:51,227 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_lambda.function_exists +2020-03-06 11:11:51,243 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_asg.exists +2020-03-06 11:11:51,243 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_rds.exists +2020-03-06 11:11:51,259 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_route53.get_record +2020-03-06 11:11:51,259 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_s3.get_object_metadata +2020-03-06 11:11:51,259 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_s3_bucket.exists +2020-03-06 11:11:51,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_secgroup.exists +2020-03-06 11:11:51,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_sns.exists +2020-03-06 11:11:51,290 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_sqs.exists +2020-03-06 11:11:51,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_vpc.exists +2020-03-06 11:11:51,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded bower.list +2020-03-06 11:11:51,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded chef.client +2020-03-06 11:11:51,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded cimc.get_system_info +2020-03-06 11:11:51,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded cisconso.set_data_value +2020-03-06 11:11:51,353 [salt.loader :1577][DEBUG ][4804] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 11:11:51,369 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded ddns.update +2020-03-06 11:11:51,369 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded chassis.cmd +2020-03-06 11:11:51,401 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:11:51,432 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:11:51,448 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:11:51,479 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:11:51,747 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded esxi.cmd +2020-03-06 11:11:51,841 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded git.version +2020-03-06 11:11:51,857 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded github.list_users +2020-03-06 11:11:51,857 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded glanceng.image_get +2020-03-06 11:11:51,873 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded elasticsearch.exists +2020-03-06 11:11:51,889 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: grafana_version, ret: _|- +2020-03-06 11:11:51,889 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: grafana_version, ret: _|- +2020-03-06 11:11:51,920 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded icinga2.generate_ticket +2020-03-06 11:11:51,920 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded ifttt.trigger_event +2020-03-06 11:11:51,951 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:11:51,968 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:11:51,983 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:11:52,000 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:11:52,014 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:11:52,030 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:11:52,077 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 11:11:52,077 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.domain_get +2020-03-06 11:11:52,077 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.endpoint_get +2020-03-06 11:11:52,077 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.group_get +2020-03-06 11:11:52,093 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.project_get +2020-03-06 11:11:52,093 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.role_get +2020-03-06 11:11:52,093 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.role_grant +2020-03-06 11:11:52,093 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.service_get +2020-03-06 11:11:52,109 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.user_get +2020-03-06 11:11:52,125 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 11:11:52,156 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 11:11:52,173 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 11:11:52,188 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 11:11:52,203 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:11:52,236 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:11:52,250 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:11:52,250 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:11:52,250 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:11:52,250 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:11:52,266 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded memcached.status +2020-03-06 11:11:52,282 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mongodb.db_exists +2020-03-06 11:11:52,282 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mongodb.user_exists +2020-03-06 11:11:52,282 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:11:52,282 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:11:52,282 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:11:52,299 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:11:52,330 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_networks +2020-03-06 11:11:52,345 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_subnets +2020-03-06 11:11:52,345 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_subnets +2020-03-06 11:11:52,345 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_subnets +2020-03-06 11:11:52,361 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded npm.list +2020-03-06 11:11:52,361 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nxos.cmd +2020-03-06 11:11:52,376 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 11:11:52,392 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 11:11:52,409 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded panos.commit +2020-03-06 11:11:52,424 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pdbedit.create +2020-03-06 11:11:52,424 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pecl.list +2020-03-06 11:11:52,786 [pip.vcs :60 ][DEBUG ][4804] Registered VCS backend: git +2020-03-06 11:11:52,864 [pip.vcs :60 ][DEBUG ][4804] Registered VCS backend: hg +2020-03-06 11:11:52,897 [pip.pep425tags :79 ][DEBUG ][4804] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 11:11:52,897 [pip.pep425tags :79 ][DEBUG ][4804] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 11:11:52,897 [pip.pep425tags :79 ][DEBUG ][4804] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 11:11:52,897 [pip.pep425tags :79 ][DEBUG ][4804] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 11:11:53,100 [pip.vcs :60 ][DEBUG ][4804] Registered VCS backend: svn +2020-03-06 11:11:53,100 [pip.vcs :60 ][DEBUG ][4804] Registered VCS backend: bzr +2020-03-06 11:11:53,273 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 11:11:53,273 [salt.loader :1577][DEBUG ][4804] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 11:11:53,273 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.cluster_exists +2020-03-06 11:11:53,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.user_exists +2020-03-06 11:11:53,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.create_extension +2020-03-06 11:11:53,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.group_create +2020-03-06 11:11:53,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.datadir_init +2020-03-06 11:11:53,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.language_create +2020-03-06 11:11:53,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.privileges_grant +2020-03-06 11:11:53,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.schema_exists +2020-03-06 11:11:53,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.tablespace_exists +2020-03-06 11:11:53,320 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.user_exists +2020-03-06 11:11:53,367 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 11:11:53,399 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded selinux.getenforce +2020-03-06 11:11:53,415 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded splunk.list_users +2020-03-06 11:11:53,415 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded splunk_search.get +2020-03-06 11:11:53,447 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 11:11:53,462 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded tomcat.status +2020-03-06 11:11:53,462 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded vagrant.version +2020-03-06 11:11:53,478 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded victorops.create_event +2020-03-06 11:11:53,509 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded win_iis.create_site +2020-03-06 11:11:53,528 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded win_snmp.get_agent_settings +2020-03-06 11:11:53,540 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded wordpress.show_plugin +2020-03-06 11:11:53,540 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded x509.get_pem_entry +2020-03-06 11:11:53,540 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded xmpp.send_msg +2020-03-06 11:11:53,572 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded zk_concurrency.lock +2020-03-06 11:11:53,588 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded zonecfg.create +2020-03-06 11:11:53,588 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded zookeeper.create +2020-03-06 11:11:53,603 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 11:11:53,603 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 11:11:53,839 [salt.state :889 ][DEBUG ][4804] Last command return code: 0 +2020-03-06 11:11:53,966 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded dacl.check_perms +2020-03-06 11:11:53,966 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4804] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 11:11:53,966 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4804] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 11:11:53,966 [salt.state :320 ][INFO ][4804] {'reg': {'Added': {'Owner': None, 'Inheritance': True, 'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Grant': None, 'Deny': None}, 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 11:11:53,966 [salt.state :1997][INFO ][4804] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:11:53.966346 (duration_in_ms=9648.886) +2020-03-06 11:11:53,966 [salt.state :1819][INFO ][4804] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:11:53.966346 +2020-03-06 11:11:53,981 [salt.state :1852][INFO ][4804] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 11:11:53,981 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 11:11:53,981 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 11:11:54,295 [salt.state :889 ][DEBUG ][4804] Last command return code: 0 +2020-03-06 11:11:54,311 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4804] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 11:11:54,311 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4804] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 11:11:54,311 [salt.state :320 ][INFO ][4804] {'reg': {'Added': {'Owner': None, 'Inheritance': True, 'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Grant': None, 'Deny': None}, 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 11:11:54,311 [salt.state :1997][INFO ][4804] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:11:54.311429 (duration_in_ms=345.083) +2020-03-06 11:11:54,311 [salt.state :1819][INFO ][4804] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:11:54.311429 +2020-03-06 11:11:54,311 [salt.state :1852][INFO ][4804] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 11:11:54,327 [salt.utils.http :234 ][DEBUG ][4804] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 11:11:54,327 [salt.utils.http :235 ][DEBUG ][4804] Using backend: tornado +2020-03-06 11:11:54,814 [salt.loaded.int.states.archive:976 ][DEBUG ][4804] file.cached: {'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}} +2020-03-06 11:11:54,814 [salt.loaded.int.states.archive:91 ][DEBUG ][4804] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 11:11:54,814 [salt.loaded.int.states.archive:996 ][DEBUG ][4804] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 11:11:54,877 [salt.loaded.int.module.win_file:1463][DEBUG ][4804] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 11:11:54,877 [salt.loaded.int.module.win_file:1463][DEBUG ][4804] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 11:11:54,877 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4804] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 11:11:54,893 [salt.loaded.int.states.archive:1247][DEBUG ][4804] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 11:11:55,113 [salt.loaded.int.states.archive:1543][DEBUG ][4804] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 11:11:55,113 [salt.state :320 ][INFO ][4804] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} +2020-03-06 11:11:55,113 [salt.state :1997][INFO ][4804] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:11:55.113106 (duration_in_ms=801.677) +2020-03-06 11:11:55,128 [salt.state :1819][INFO ][4804] Running state [rename-extract] at time 11:11:55.128824 +2020-03-06 11:11:55,128 [salt.state :1852][INFO ][4804] Executing state module.run for [rename-extract] +2020-03-06 11:11:55,128 [salt.state :320 ][INFO ][4804] {'file.rename': True} +2020-03-06 11:11:55,128 [salt.state :1997][INFO ][4804] Completed state [rename-extract] at time 11:11:55.128824 (duration_in_ms=0.0) +2020-03-06 11:11:55,128 [salt.state :1819][INFO ][4804] Running state [pkg.refresh_db] at time 11:11:55.128824 +2020-03-06 11:11:55,128 [salt.state :1852][INFO ][4804] Executing state module.run for [pkg.refresh_db] +2020-03-06 11:11:55,128 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4804] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:15.468471) +2020-03-06 11:11:55,128 [salt.loaded.int.module.win_pkg:935 ][INFO ][4804] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 11:11:55,128 [salt.loaded.int.module.win_pkg:954 ][INFO ][4804] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 11:11:55,128 [salt.fileclient :234 ][INFO ][4804] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 11:11:55,128 [salt.fileserver :159 ][DEBUG ][4804] Returning file list from cache: age=18 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:11:55,144 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 11:11:55,144 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 11:11:55,160 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: Volume in drive C is Windows 2016 + Volume Serial Number is 3CE2-368C + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng + +File Not Found +2020-03-06 11:11:55,160 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4804] retcode: 1 +2020-03-06 11:11:55,160 [salt.state :938 ][DEBUG ][4804] Last command return code: 1 +2020-03-06 11:11:55,160 [salt.state :322 ][ERROR ][4804] {'pkg.refresh_db': {'total': 0, 'success': 0, 'failed': 0}} +2020-03-06 11:11:55,175 [salt.state :1997][INFO ][4804] Completed state [pkg.refresh_db] at time 11:11:55.175987 (duration_in_ms=47.163) +2020-03-06 11:11:55,175 [salt.state :2009][INFO ][4804] State result does not match retry until value, state will be re-run in 5 seconds +2020-03-06 11:12:00,199 [salt.state :1819][INFO ][4804] Running state [pkg.refresh_db] at time 11:12:00.199556 +2020-03-06 11:12:00,199 [salt.state :1852][INFO ][4804] Executing state module.run for [pkg.refresh_db] +2020-03-06 11:12:00,199 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4804] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:05.055011) +2020-03-06 11:12:00,199 [salt.loaded.int.module.win_pkg:935 ][INFO ][4804] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 11:12:00,199 [salt.loaded.int.module.win_pkg:954 ][INFO ][4804] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 11:12:00,199 [salt.fileclient :234 ][INFO ][4804] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 11:12:00,356 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:12:00,356 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:12:00,372 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:12:00,372 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,372 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:12:00,372 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:12:00,387 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:12:00,387 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:12:00,387 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,387 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:12:00,403 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:12:00,403 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:12:00,403 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:12:00,403 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,419 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:12:00,419 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:12:00,419 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:12:00,419 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:12:00,419 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,419 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,434 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:12:00,434 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,450 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:12:00,450 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:12:00,450 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:12:00,450 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:12:00,450 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,466 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:12:00,466 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:12:00,466 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:12:00,466 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:12:00,466 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,481 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:12:00,481 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:12:00,481 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:12:00,481 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:12:00,481 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,497 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:12:00,497 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:12:00,497 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:12:00,497 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:12:00,497 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,514 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:12:00,514 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:12:00,514 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:12:00,514 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:12:00,514 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,528 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:12:00,528 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:12:00,528 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:12:00,528 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:12:00,528 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,544 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:12:00,544 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:12:00,560 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:12:00,560 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:12:00,560 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,560 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:12:00,560 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:12:00,560 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:12:00,560 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:12:00,576 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,576 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:12:00,576 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:12:00,576 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:12:00,576 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:12:00,576 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,591 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:12:00,607 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:12:00,607 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:12:00,607 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:12:00,607 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,623 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:12:00,623 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:12:00,623 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:12:00,623 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:12:00,623 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,638 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:12:00,638 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:12:00,638 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:12:00,638 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:12:00,638 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,654 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:12:00,654 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:12:00,654 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:12:00,654 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:12:00,654 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,654 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:12:00,670 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:12:00,670 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:12:00,670 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:12:00,670 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,685 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:12:00,685 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:12:00,685 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:12:00,685 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:12:00,685 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,701 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:12:00,701 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:12:00,701 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:12:00,701 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:12:00,701 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,717 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:12:00,717 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:12:00,717 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:12:00,717 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:12:00,717 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,732 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:12:00,732 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:12:00,732 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:12:00,732 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:12:00,732 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,748 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:12:00,748 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:12:00,748 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:12:00,748 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:12:00,748 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,764 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:12:00,764 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:12:00,764 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:12:00,764 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:12:00,764 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,780 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:12:00,780 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:12:00,780 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:12:00,780 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:12:00,780 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,795 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:12:00,795 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:12:00,795 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:12:00,811 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:12:00,811 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,811 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:12:00,811 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:12:00,827 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:12:00,827 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:12:00,827 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,827 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:12:00,842 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:12:00,842 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:12:00,842 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:12:00,842 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,858 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:12:00,858 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:12:00,858 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:12:00,858 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:12:00,858 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,874 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:12:00,874 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:12:00,874 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:12:00,874 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:12:00,889 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,889 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:12:00,889 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:12:00,889 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:12:00,889 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:12:00,905 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,905 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:12:00,905 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:12:00,905 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:12:00,905 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:12:00,905 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,921 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:12:00,921 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:12:00,921 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:12:00,921 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:12:00,921 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,936 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:12:00,936 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:12:00,936 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:12:00,952 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:12:00,952 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,952 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:12:00,952 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:12:00,952 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:12:00,952 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:12:00,968 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,968 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:12:00,983 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:12:00,983 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:12:00,999 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:12:00,999 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:00,999 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:12:00,999 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:12:00,999 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:12:00,999 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:12:01,015 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,015 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:12:01,015 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:12:01,031 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:12:01,031 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:12:01,031 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,031 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:12:01,046 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:12:01,046 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:12:01,046 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:12:01,046 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,046 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:12:01,062 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:12:01,062 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:12:01,062 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:12:01,062 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,062 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:12:01,062 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:12:01,062 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:12:01,078 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:12:01,078 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,093 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:12:01,093 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:12:01,093 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:12:01,093 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:12:01,093 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,109 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:12:01,109 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:12:01,109 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:12:01,109 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:12:01,109 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,125 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:12:01,125 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:12:01,140 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:12:01,140 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:12:01,140 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,140 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:12:01,140 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:12:01,156 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:12:01,156 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:12:01,156 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,156 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:12:01,172 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:12:01,172 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:12:01,172 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:12:01,172 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,172 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:12:01,187 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:12:01,187 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:12:01,187 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:12:01,187 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,187 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:12:01,203 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:12:01,203 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:12:01,203 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:12:01,203 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,219 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:12:01,219 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:12:01,219 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:12:01,219 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:12:01,219 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,234 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:12:01,234 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:12:01,234 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:12:01,234 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:12:01,234 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,250 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:12:01,250 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:12:01,250 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:12:01,250 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:12:01,250 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,266 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:12:01,266 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:12:01,266 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:12:01,266 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:12:01,266 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,282 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:12:01,282 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:12:01,282 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:12:01,282 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:12:01,282 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,297 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:12:01,297 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:12:01,297 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:12:01,297 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:12:01,297 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,297 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:12:01,297 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:12:01,313 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:12:01,313 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:12:01,313 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,313 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:12:01,329 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:12:01,329 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:12:01,329 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:12:01,329 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,329 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:12:01,345 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:12:01,345 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:12:01,345 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:12:01,345 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,360 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:12:01,360 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:12:01,376 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:12:01,376 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:12:01,376 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,376 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:12:01,391 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:12:01,391 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:12:01,391 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:12:01,391 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,391 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:12:01,407 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:12:01,407 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:12:01,407 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:12:01,407 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,407 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:12:01,423 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:12:01,423 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:12:01,423 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:12:01,423 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,438 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:12:01,438 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:12:01,438 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:12:01,438 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:12:01,438 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,454 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:12:01,454 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:12:01,454 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:12:01,454 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:12:01,454 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,470 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:12:01,470 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:12:01,470 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:12:01,485 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:12:01,485 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,485 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:12:01,501 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:12:01,501 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:12:01,501 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:12:01,501 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,517 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:12:01,517 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:12:01,517 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:12:01,517 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:12:01,517 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,533 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:12:01,533 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:12:01,533 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:12:01,533 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:12:01,533 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,548 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:12:01,548 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:12:01,548 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:12:01,548 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:12:01,548 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,564 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:12:01,564 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:12:01,564 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:12:01,564 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:12:01,564 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,580 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:12:01,580 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:12:01,580 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:12:01,580 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:12:01,580 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,595 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:12:01,595 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:12:01,595 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:12:01,595 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:12:01,595 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,611 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:12:01,627 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:12:01,627 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:12:01,627 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:12:01,627 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,627 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:12:01,642 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:12:01,642 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:12:01,642 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:12:01,642 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,642 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:12:01,658 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:12:01,658 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:12:01,658 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:12:01,658 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,674 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:12:01,674 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:12:01,674 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:12:01,674 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:12:01,674 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,689 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:12:01,689 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:12:01,689 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:12:01,689 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:12:01,689 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,705 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:12:01,705 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:12:01,705 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:12:01,705 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:12:01,705 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,721 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:12:01,721 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:12:01,721 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:12:01,736 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:12:01,736 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,736 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:12:01,736 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:12:01,736 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:12:01,736 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:12:01,752 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,769 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:12:01,769 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:12:01,769 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:12:01,769 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:12:01,769 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,783 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:12:01,783 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:12:01,783 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:12:01,783 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:12:01,783 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,783 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:12:01,783 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:12:01,799 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:12:01,799 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:12:01,799 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,799 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:12:01,799 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:12:01,799 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:12:01,815 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:12:01,815 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,815 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:12:01,815 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:12:01,831 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:12:01,831 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:12:01,831 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,831 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:12:01,846 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:12:01,846 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:12:01,846 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:12:01,846 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,846 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:12:01,862 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:12:01,862 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:12:01,862 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:12:01,862 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,862 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:12:01,878 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:12:01,878 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:12:01,878 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:12:01,878 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,893 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:12:01,893 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:12:01,893 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:12:01,893 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:12:01,893 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,909 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:12:01,909 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:12:01,909 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:12:01,909 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:12:01,909 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,925 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:12:01,925 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:12:01,925 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:12:01,925 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:12:01,925 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,940 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:12:01,940 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:12:01,940 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:12:01,940 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:12:01,956 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,956 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:12:01,956 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:12:01,956 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:12:01,956 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:12:01,972 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:01,972 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:12:01,987 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:12:01,987 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:12:01,987 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:12:01,987 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,003 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:12:02,003 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:12:02,003 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:12:02,003 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:12:02,003 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,019 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:12:02,019 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:12:02,019 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:12:02,019 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:12:02,019 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,034 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:12:02,034 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:12:02,034 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:12:02,034 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:12:02,034 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,050 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:12:02,050 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:12:02,050 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:12:02,050 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:12:02,066 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,066 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:12:02,066 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:12:02,066 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:12:02,081 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:12:02,081 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,081 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:12:02,081 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:12:02,097 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:12:02,097 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:12:02,097 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,097 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:12:02,097 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:12:02,097 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:12:02,113 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:12:02,113 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,113 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:12:02,113 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:12:02,129 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:12:02,129 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:12:02,129 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,129 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:12:02,129 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:12:02,144 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:12:02,144 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:12:02,144 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,144 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:12:02,160 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:12:02,160 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:12:02,160 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:12:02,160 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,176 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:12:02,176 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:12:02,176 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:12:02,176 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:12:02,176 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,176 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:12:02,191 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:12:02,191 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:12:02,191 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:12:02,191 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,208 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:12:02,208 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:12:02,208 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:12:02,208 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:12:02,208 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,223 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:12:02,223 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:12:02,223 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:12:02,223 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:12:02,223 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,238 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:12:02,238 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:12:02,238 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:12:02,238 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:12:02,238 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,254 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:12:02,254 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:12:02,254 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:12:02,254 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:12:02,254 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,270 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:12:02,270 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:12:02,270 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:12:02,270 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:12:02,270 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,285 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:12:02,285 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:12:02,285 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:12:02,285 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:12:02,301 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,301 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:12:02,301 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:12:02,317 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:12:02,317 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:12:02,317 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,317 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:12:02,317 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:12:02,332 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:12:02,332 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:12:02,332 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,332 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:12:02,348 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:12:02,348 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:12:02,348 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:12:02,348 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,364 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:12:02,379 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:12:02,379 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:12:02,379 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:12:02,379 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,379 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:12:02,395 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:12:02,395 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:12:02,395 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:12:02,395 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,411 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:12:02,411 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:12:02,411 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:12:02,411 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:12:02,411 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,427 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:12:02,427 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:12:02,427 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:12:02,427 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:12:02,427 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,442 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:12:02,442 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:12:02,442 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:12:02,442 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:12:02,458 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,458 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:12:02,458 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:12:02,458 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:12:02,474 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:12:02,474 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,474 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:12:02,474 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:12:02,489 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:12:02,489 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:12:02,489 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,489 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:12:02,489 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:12:02,489 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:12:02,505 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:12:02,505 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,505 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:12:02,505 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:12:02,521 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:12:02,521 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:12:02,521 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,521 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:12:02,537 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:12:02,537 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:12:02,537 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:12:02,537 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,537 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:12:02,552 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:12:02,552 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:12:02,552 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:12:02,552 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,552 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:12:02,568 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:12:02,568 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:12:02,568 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:12:02,568 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,568 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:12:02,583 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:12:02,583 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:12:02,583 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:12:02,583 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,599 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:12:02,599 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:12:02,599 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:12:02,599 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:12:02,599 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,615 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:12:02,615 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:12:02,615 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:12:02,615 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:12:02,615 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,630 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:12:02,630 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:12:02,630 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:12:02,630 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:12:02,630 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,646 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:12:02,646 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:12:02,646 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:12:02,646 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:12:02,646 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,662 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:12:02,662 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,662 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,662 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,662 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,677 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,677 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,677 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,677 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,677 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,693 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,693 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:12:02,693 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:12:02,693 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:12:02,693 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,709 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:12:02,709 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:12:02,724 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:12:02,724 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:12:02,724 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,724 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:12:02,724 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:12:02,740 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:12:02,740 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:12:02,740 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,740 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:12:02,756 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:12:02,756 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:12:02,756 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:12:02,756 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,772 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:12:02,772 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:12:02,772 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:12:02,772 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:12:02,772 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,787 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:12:02,787 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:12:02,787 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:12:02,787 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:12:02,787 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,803 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:12:02,803 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,803 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,803 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,819 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,819 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:12:02,819 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,819 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,819 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,819 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,834 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,834 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:12:02,834 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:12:02,834 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:12:02,834 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,850 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:12:02,866 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,866 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,866 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,866 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,897 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:12:02,897 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:12:02,897 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:12:02,897 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:12:02,897 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,913 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:12:02,913 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:12:02,913 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:12:02,913 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:12:02,913 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,928 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:12:02,928 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:12:02,944 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:12:02,944 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:12:02,944 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,944 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:12:02,960 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:12:02,960 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:12:02,960 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:12:02,960 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,975 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:12:02,975 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:12:02,975 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:12:02,975 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:12:02,975 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:02,991 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:12:02,991 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:12:02,991 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:12:03,007 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:12:03,007 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,007 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:12:03,022 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:12:03,022 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:12:03,022 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:12:03,022 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,038 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:12:03,038 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:12:03,057 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:12:03,057 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:12:03,057 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,069 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:12:03,069 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:12:03,069 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:12:03,069 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:12:03,069 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,069 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:12:03,085 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:12:03,085 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:12:03,085 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:12:03,085 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,085 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:12:03,085 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:12:03,101 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:12:03,101 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:12:03,101 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,116 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:12:03,116 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:12:03,132 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:12:03,132 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:12:03,132 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,148 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:12:03,148 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:12:03,164 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:12:03,164 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:12:03,164 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,164 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:12:03,179 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:12:03,179 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:12:03,179 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:12:03,179 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,179 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:12:03,195 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:12:03,195 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:12:03,195 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:12:03,195 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,211 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:12:03,211 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:12:03,211 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:12:03,226 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:12:03,226 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,226 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:12:03,226 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:12:03,226 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:12:03,242 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:12:03,242 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,242 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:12:03,258 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:12:03,258 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:12:03,258 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:12:03,258 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,273 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:12:03,273 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:12:03,273 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:12:03,273 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:12:03,273 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,289 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:12:03,289 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:12:03,289 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:12:03,305 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:12:03,305 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,305 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:12:03,305 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:12:03,305 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:12:03,320 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:12:03,320 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,320 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:12:03,320 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:12:03,336 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:12:03,336 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:12:03,336 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,336 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:12:03,352 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:12:03,352 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:12:03,352 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:12:03,352 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,368 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:12:03,368 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:12:03,368 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:12:03,368 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:12:03,368 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,383 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:12:03,383 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:12:03,383 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:12:03,383 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:12:03,399 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,399 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:12:03,399 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:12:03,414 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:12:03,414 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:12:03,414 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,414 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:12:03,414 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:12:03,430 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:12:03,430 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:12:03,430 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,430 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:12:03,430 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:12:03,430 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:12:03,446 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:12:03,446 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,446 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:12:03,446 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:12:03,461 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:12:03,461 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:12:03,461 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,461 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:12:03,461 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:12:03,461 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:12:03,477 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:12:03,477 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,477 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:12:03,477 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:12:03,477 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:12:03,493 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:12:03,493 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,493 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:12:03,493 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:12:03,493 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:12:03,508 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:12:03,508 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,524 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:12:03,524 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:12:03,524 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:12:03,524 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:12:03,524 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,540 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:12:03,540 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:12:03,540 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:12:03,540 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:12:03,540 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,556 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:12:03,556 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:12:03,556 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:12:03,556 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:12:03,556 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,571 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:12:03,571 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:12:03,571 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:12:03,571 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:12:03,571 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,587 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:12:03,587 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:12:03,587 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:12:03,587 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:12:03,587 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,603 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:12:03,603 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:12:03,603 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:12:03,603 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:12:03,603 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,618 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:12:03,618 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:12:03,618 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:12:03,618 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:12:03,618 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,634 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:12:03,634 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:12:03,634 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:12:03,634 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:12:03,634 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,650 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:12:03,650 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:12:03,650 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:12:03,650 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:12:03,650 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,665 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:12:03,665 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:12:03,665 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:12:03,665 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:12:03,665 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,681 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:12:03,681 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:12:03,681 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:12:03,681 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:12:03,681 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,697 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:12:03,697 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:12:03,697 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:12:03,697 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:12:03,697 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,712 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:12:03,712 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:12:03,712 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:12:03,712 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:12:03,712 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,728 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:12:03,728 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:12:03,728 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:12:03,728 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:12:03,728 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,744 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:12:03,744 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:12:03,744 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:12:03,744 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:12:03,744 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,759 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:12:03,759 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:12:03,759 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:12:03,759 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:12:03,759 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,775 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:12:03,775 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:12:03,775 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:12:03,775 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:12:03,775 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,791 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:12:03,791 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:12:03,791 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:12:03,791 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:12:03,791 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,806 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:12:03,806 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:12:03,806 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:12:03,806 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:12:03,806 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,822 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:12:03,822 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:12:03,822 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:12:03,822 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:12:03,822 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,838 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:12:03,838 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:12:03,838 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:12:03,838 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:12:03,853 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,853 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:12:03,869 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:12:03,869 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:12:03,869 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:12:03,869 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,895 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:12:03,900 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:12:03,900 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:12:03,900 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:12:03,900 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,916 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:12:03,916 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:12:03,916 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:12:03,916 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:12:03,916 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,932 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:12:03,932 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:12:03,932 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:12:03,932 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:12:03,932 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,947 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:12:03,947 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:12:03,947 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:12:03,947 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:12:03,947 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,963 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:12:03,963 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:12:03,963 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:12:03,963 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:12:03,963 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,979 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:12:03,979 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:12:03,979 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:12:03,979 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:12:03,979 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:03,994 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:12:04,010 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:12:04,010 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:12:04,010 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:12:04,026 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,026 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:12:04,026 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:12:04,026 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:12:04,026 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:12:04,042 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,042 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:12:04,042 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:12:04,057 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:12:04,057 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:12:04,057 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,057 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:12:04,057 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:12:04,057 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:12:04,073 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:12:04,073 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,073 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:12:04,073 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:12:04,089 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:12:04,089 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:12:04,089 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,104 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:12:04,104 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:12:04,104 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:12:04,104 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:12:04,104 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,120 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:12:04,120 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:12:04,120 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:12:04,120 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:12:04,136 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,136 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:12:04,136 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:12:04,151 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:12:04,151 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:12:04,151 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,151 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:12:04,151 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:12:04,167 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:12:04,167 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:12:04,167 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,167 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:12:04,167 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:12:04,167 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:12:04,183 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:12:04,183 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,183 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:12:04,183 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:12:04,198 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:12:04,198 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:12:04,198 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,198 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:12:04,214 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:12:04,214 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:12:04,214 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:12:04,214 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,230 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:12:04,230 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:12:04,245 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:12:04,245 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:12:04,245 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,261 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:12:04,261 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:12:04,261 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:12:04,261 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:12:04,261 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,261 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:12:04,277 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:12:04,277 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:12:04,277 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:12:04,277 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,293 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:12:04,293 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:12:04,293 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:12:04,293 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:12:04,293 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,293 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:12:04,308 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:12:04,308 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:12:04,308 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:12:04,308 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,308 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:12:04,324 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:12:04,324 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:12:04,324 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:12:04,324 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,324 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:12:04,339 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:12:04,339 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:12:04,339 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:12:04,339 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,339 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:12:04,355 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:12:04,355 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:12:04,355 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:12:04,355 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,371 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:12:04,371 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:12:04,371 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:12:04,371 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:12:04,371 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,386 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:12:04,386 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:12:04,386 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:12:04,402 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:12:04,402 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,428 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:12:04,433 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:12:04,433 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:12:04,433 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:12:04,433 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,433 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:12:04,449 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:12:04,449 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:12:04,449 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:12:04,449 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,465 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:12:04,465 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:12:04,465 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:12:04,465 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:12:04,480 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,496 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:12:04,512 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:12:04,512 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:12:04,512 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:12:04,512 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,512 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:12:04,527 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:12:04,527 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:12:04,527 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:12:04,527 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,543 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:12:04,543 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:12:04,543 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:12:04,543 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:12:04,559 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,559 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:12:04,559 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:12:04,575 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:12:04,575 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:12:04,575 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,575 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:12:04,590 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:12:04,590 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:12:04,590 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:12:04,590 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,606 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:12:04,606 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:12:04,606 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:12:04,606 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:12:04,606 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,622 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:12:04,622 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:12:04,622 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:12:04,622 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:12:04,622 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,637 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:12:04,637 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:12:04,637 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:12:04,653 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:12:04,653 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,669 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:12:04,669 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:12:04,669 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:12:04,669 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:12:04,669 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,684 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:12:04,684 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:12:04,684 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:12:04,684 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:12:04,684 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,700 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:12:04,700 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:12:04,700 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:12:04,700 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:12:04,716 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,716 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:12:04,716 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:12:04,716 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:12:04,731 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:12:04,731 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,731 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:12:04,731 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:12:04,747 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:12:04,747 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:12:04,747 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,763 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:12:04,763 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:12:04,763 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:12:04,778 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:12:04,778 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,778 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:12:04,778 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:12:04,794 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:12:04,794 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:12:04,794 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,810 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:12:04,810 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:12:04,810 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:12:04,810 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:12:04,810 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,825 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:12:04,825 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:12:04,825 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:12:04,825 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:12:04,841 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,841 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:12:04,841 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:12:04,857 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:12:04,857 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:12:04,857 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,872 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:12:04,872 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:12:04,872 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:12:04,872 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:12:04,872 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,889 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:12:04,889 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:12:04,889 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:12:04,889 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:12:04,889 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,904 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:12:04,904 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:12:04,904 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:12:04,904 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:12:04,904 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,919 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:12:04,919 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:12:04,919 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:12:04,919 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:12:04,919 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,935 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:12:04,935 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:12:04,935 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:12:04,935 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:12:04,935 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,935 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:12:04,951 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:12:04,951 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:12:04,951 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:12:04,951 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,966 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:12:04,966 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:12:04,966 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:12:04,966 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:12:04,966 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,966 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:12:04,982 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:12:04,982 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:12:04,982 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:12:04,982 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:04,998 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:12:04,998 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:12:04,998 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:12:04,998 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:12:04,998 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,013 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:12:05,013 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:12:05,013 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:12:05,013 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:12:05,013 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,029 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:12:05,029 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:12:05,029 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:12:05,029 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:12:05,045 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,045 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:12:05,045 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:12:05,060 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:12:05,060 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:12:05,060 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,060 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:12:05,076 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:12:05,076 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:12:05,076 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:12:05,076 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,076 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:12:05,092 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:12:05,092 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:12:05,092 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:12:05,092 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,107 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:12:05,107 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:12:05,107 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:12:05,107 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:12:05,107 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,123 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:12:05,123 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:12:05,123 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:12:05,123 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:12:05,123 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,139 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:12:05,139 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:12:05,139 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:12:05,139 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:12:05,139 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,154 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:12:05,154 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:12:05,154 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:12:05,154 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:12:05,154 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,170 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:12:05,170 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:12:05,170 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:12:05,170 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:12:05,170 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,186 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:12:05,186 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:12:05,186 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:12:05,186 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:12:05,186 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,217 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:12:05,217 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:12:05,217 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:12:05,217 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:12:05,217 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,233 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:12:05,233 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:12:05,233 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:12:05,233 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:12:05,233 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,248 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:12:05,248 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:12:05,248 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:12:05,248 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:12:05,248 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,264 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:12:05,264 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:12:05,264 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:12:05,264 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:12:05,264 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,281 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:12:05,281 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:12:05,281 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:12:05,281 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:12:05,294 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,294 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:12:05,294 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:12:05,294 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:12:05,294 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:12:05,294 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,308 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:12:05,308 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:12:05,308 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:12:05,308 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:12:05,308 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,323 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:12:05,323 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:12:05,323 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:12:05,323 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:12:05,323 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,336 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:12:05,336 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:12:05,336 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:12:05,336 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:12:05,336 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,350 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:12:05,350 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:12:05,350 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:12:05,350 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:12:05,350 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,365 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:12:05,365 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:12:05,365 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:12:05,365 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:12:05,365 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,380 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:12:05,380 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:12:05,380 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:12:05,380 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:12:05,396 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,396 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:12:05,412 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:12:05,412 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:12:05,412 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:12:05,412 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,427 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:12:05,427 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:12:05,427 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:12:05,427 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:12:05,427 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,443 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:12:05,443 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:12:05,443 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:12:05,443 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:12:05,443 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,459 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:12:05,459 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:12:05,459 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:12:05,459 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:12:05,459 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,474 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:12:05,474 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:12:05,474 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:12:05,474 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:12:05,474 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,490 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:12:05,490 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:12:05,490 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:12:05,506 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:12:05,506 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,506 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:12:05,521 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:12:05,521 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:12:05,521 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:12:05,521 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,537 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:12:05,537 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:12:05,537 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:12:05,537 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:12:05,537 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,553 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:12:05,553 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:12:05,553 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:12:05,553 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:12:05,568 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,568 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:12:05,568 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:12:05,568 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:12:05,584 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:12:05,584 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,600 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:12:05,600 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:12:05,600 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:12:05,600 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:12:05,615 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,631 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:12:05,631 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:12:05,631 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:12:05,631 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:12:05,631 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,647 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:12:05,647 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:12:05,647 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:12:05,647 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:12:05,647 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,662 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:12:05,662 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:12:05,662 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:12:05,662 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:12:05,678 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,678 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:12:05,694 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:12:05,694 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:12:05,694 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:12:05,694 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,694 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:12:05,709 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:12:05,709 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:12:05,709 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:12:05,709 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,725 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:12:05,725 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:12:05,725 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:12:05,725 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:12:05,725 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,741 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:12:05,741 [salt.fileclient :1093][DEBUG ][4804] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:12:05,741 [salt.fileclient :1101][DEBUG ][4804] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:12:05,741 [salt.fileclient :1121][DEBUG ][4804] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:12:05,741 [salt.fileclient :1149][DEBUG ][4804] No dest file found +2020-03-06 11:12:05,756 [salt.fileclient :1230][INFO ][4804] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:12:05,756 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,772 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,772 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 11:12:05,772 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,788 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.015665531158447266 +2020-03-06 11:12:05,788 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +7zip: + + + '16.04.00.0': + + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.03.00.0': + + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.02.00.0': + + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.00.00.0': + + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '18.06.00.0': + + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.05.00.0': + + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.03.00.0': + + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.01.00.0': + + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '19.00.00.0': + + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 11:12:05,803 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,803 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,819 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,819 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,819 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 11:12:05,819 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,835 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.015679597854614258 +2020-03-06 11:12:05,835 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +activeperl_x64: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.24.3': + full_name: 'ActivePerl 5.24.3 Build 2404 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.26.1': + full_name: 'ActivePerl 5.26.1 Build 2601 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:05,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,835 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,835 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,850 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,850 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 11:12:05,850 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,866 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.015656471252441406 +2020-03-06 11:12:05,866 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +activeperl_x86: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205' + + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:05,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,866 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,866 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,866 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,882 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 11:12:05,882 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,882 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:05,882 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +adobeair: + latest: + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + '30.0.0.107': + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:05,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,882 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,897 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,897 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,897 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 11:12:05,897 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,913 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.015676021575927734 +2020-03-06 11:12:05,913 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +# to understand what is meant by "classic" see +# http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html + +adobereader-dc-classic: + + + '20.006.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20049': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20047': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20036': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20099': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20098': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20091': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20069': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20064': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20081': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20071': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20063': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20055': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20040': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:05,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,913 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,929 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,929 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,929 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 11:12:05,929 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,929 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:05,944 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +adobereader-xi: + '11.0.10': + full_name: 'Adobe Reader XI (11.0.10)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '11.0.6': + full_name: 'Adobe Reader XI (11.0.06)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:05,944 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,944 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,944 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,944 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,944 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 11:12:05,944 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,960 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.01567387580871582 +2020-03-06 11:12:05,960 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +adobereader: + '10.1.4': + full_name: 'Adobe Reader X (10.1.4)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '9.5.0': + full_name: 'Adobe Reader 9.5.0' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:05,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,960 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,960 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:05,976 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:05,976 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 11:12:05,976 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:05,976 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:05,991 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +adobeshockwaveplayer: + latest: + full_name: 'Adobe Shockwave Player 12.2' + installer: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version + +2020-03-06 11:12:05,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:05,991 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:05,991 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,007 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,007 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 11:12:06,007 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,007 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,007 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: + + + +adv-ip-scanner: + + + '2.5.3784': + full_name: 'Advanced IP Scanner 2.5' + installer: 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-ip-scanner.com +# a product of: www.radmin.com + +2020-03-06 11:12:06,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,023 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,023 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,023 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,023 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 11:12:06,038 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,038 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,038 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: + + + +adv-port-scanner: + + + '2.5.3680': + full_name: 'Advanced Port Scanner 2.5' + installer: 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-port-scanner.com +# a product of: www.radmin.com + +2020-03-06 11:12:06,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,054 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.01568007469177246 +2020-03-06 11:12:06,054 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,054 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,054 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 11:12:06,054 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,054 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,070 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +advancedlogging: + '1.0.0625.10': + full_name: 'IIS Advanced Logging 1.0' + + installer: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + uninstaller: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,070 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,070 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,070 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,070 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,070 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 11:12:06,070 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,085 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.015677452087402344 +2020-03-06 11:12:06,085 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +# just 32-bit x86 msi package available + + + +anydesk-msi: + latest: + full_name: 'AnyDesk MSI' + installer: 'https://download.anydesk.com/AnyDesk.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.anydesk.com/AnyDesk.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,085 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,085 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,085 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,101 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,101 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 11:12:06,101 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,101 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,101 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +# just 32-bit x86 installer available + + + + + + + +anydesk: + latest: + full_name: 'AnyDesk' + installer: 'https://download.anydesk.com/AnyDesk.exe' + install_flags: '--install "%ProgramFiles(x86)%\AnyDesk" --start-with-win --silent --create-shortcut' + uninstaller: 'https://download.anydesk.com/AnyDesk.exe' + uninstall_flags: '--silent --remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,117 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,117 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,117 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,117 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,117 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 11:12:06,117 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,132 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.015680551528930664 +2020-03-06 11:12:06,132 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +applicationrequestrouting: + '3.0.1952': + full_name: 'Microsoft Application Request Routing 3.0' + + installer: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,132 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,132 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,148 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,148 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 11:12:06,148 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,148 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,148 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +aspnet-mvc1: + '1.0.0.0': + full_name: 'Microsoft ASP.NET MVC 1.0' + installer: 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi' + install_flags: '/qn /norestart' + uninstaller: '{A4394612-D02F-11DC-9BFF-D18556D89593}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,148 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,164 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,164 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,164 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 11:12:06,164 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,164 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,179 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: + +atom: + + '1.28.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.2': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.1': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.23.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:06,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,179 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,179 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,179 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,195 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 11:12:06,195 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,195 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,195 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: + + + + +audacity: + + '2.2.2': + full_name: 'Audacity 2.2.2' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Audacity 2.2.1' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:06,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,211 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.015665054321289062 +2020-03-06 11:12:06,211 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,211 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,226 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 11:12:06,226 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,226 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,226 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: + + + +autohotkey: + '1.1.29.01': + full_name: 'AutoHotkey 1.1.29.01' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.27.06': + full_name: 'AutoHotkey 1.1.27.06' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.24.00': + full_name: 'AutoHotkey 1.1.24.00' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.22.09': + full_name: 'AutoHotkey 1.1.22.09' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,243 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,243 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0164337158203125 +2020-03-06 11:12:06,243 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,243 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,243 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 11:12:06,243 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,258 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.014903068542480469 +2020-03-06 11:12:06,258 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: + +autoit: + + '3.3.14.5': + full_name: 'AutoIt v3.3.14.5' + installer: 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\AutoIt3\Uninstall.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:06,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,258 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,258 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,258 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,273 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 11:12:06,273 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,273 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,273 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +autopsy: + '4.3.0': + full_name: 'Autopsy' + + installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,289 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.01567387580871582 +2020-03-06 11:12:06,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,289 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 11:12:06,289 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,289 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,305 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +awscli: + latest: + + full_name: 'AWS Command Line Interface' + installer: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + uninstaller: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,305 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,320 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 11:12:06,320 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,320 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,320 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +# due to winrepo installer limitations you need to manually download the exe from +# https://go.microsoft.com/fwlink/?linkid=2049975 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... + + +azuredatastudio: + '1.3.9': + full_name: 'Azure Data Studio' +# installer: 'salt://win/repo-ng/azuredatastudio/azuredatastudio-windows-setup-1.3.9.exe' + installer: 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe' + uninstaller: 'C:\Program Files\Azure Data Studio\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,320 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,336 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,336 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,336 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 11:12:06,336 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,352 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.015671730041503906 +2020-03-06 11:12:06,352 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +#the provider only offers the download of the latest version + + + +bandizip: + '6.21': + full_name: 'Bandizip' + installer: 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE' + install_flags: '/S' + uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,352 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,352 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,352 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,352 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 11:12:06,368 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,368 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,368 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +# just 32-bit x86 installer available + + + +belarc-advisor: + '8.6': + full_name: 'Belarc Advisor' + installer: 'http://downloads.belarc.com/advisor/advisorinstaller.exe' + install_flags: '/s' + uninstaller: '%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\Uninstall.exe' + uninstall_flags: '/s "%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\INSTALL.LOG"' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,368 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,368 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,383 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,383 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,383 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 11:12:06,383 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,383 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,383 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +bginfo4x: + '3.3.6': + full_name: 'BGINFO4X for Windows 3.3.6' + installer: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + uninstaller: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,399 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,399 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,399 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,399 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,399 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 11:12:06,399 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,415 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0156710147857666 +2020-03-06 11:12:06,415 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +# source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe +bitnami-nginxstack: + '1.8.0-0': + full_name: 'Bitnami Nginx Stack' + installer: 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe' + install_flags: '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"' + uninstaller: 'C:\Bitnami\nginxstack-1.8.0-0\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,415 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,415 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,415 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,430 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,430 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 11:12:06,430 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,430 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,446 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +bitvise: + + '8.32': + full_name: 'Bitvise SSH Server 8.32 (remove only)' + installer: 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe' + install_flags: '-acceptEULA -defaultInstance -startService' + uninstaller: '%ProgramFiles%\Bitvise SSH Server\uninst.exe' + uninstall_flags: '"Bitvise SSH Server" -unat' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:06,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,446 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,462 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,462 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,462 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 11:12:06,462 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,477 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.015674114227294922 +2020-03-06 11:12:06,477 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +blender: + '2.78': + full_name: 'Blender' + + installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,477 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,477 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,493 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,493 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 11:12:06,493 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,493 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,493 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +bootracer: + '6.50.0.450': + full_name: 'BootRacer' + installer: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + uninstaller: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# download zip archive manually and unpack msi to slat master winrepo-ng directory + +2020-03-06 11:12:06,493 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,493 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,509 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,509 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,509 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 11:12:06,509 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,540 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.03133893013000488 +2020-03-06 11:12:06,540 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: + +bulkrenameutility: + + '3.0.0.1': + + full_name: 'Bulk Rename Utility 3.0.0.1 (64-bit)' + + installer: 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\Bulk Rename Utility\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:06,540 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,540 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,540 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,540 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,540 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 11:12:06,556 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,556 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,556 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +# just 32-bit x86 installer available + + + +bulk_extractor: + + '1.5.5': + full_name: 'Bulk Extractor 1.5.5' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.5\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Bulk Extractor 1.5.1' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.1\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Bulk Extractor 1.5.0' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.0\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:06,556 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,556 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,571 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,571 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,571 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 11:12:06,571 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,571 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,588 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: + +ccleaner-slim: + + '5.60': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup560_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.59': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup559_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.58': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup558_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup557_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:06,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,588 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,588 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,603 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,603 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 11:12:06,603 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,603 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,603 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: + +ccleaner: + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup557.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.44': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup544.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:06,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,603 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,618 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,618 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,618 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 11:12:06,618 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,618 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,634 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +cdburnerxp: + '4.5.6.5931': + full_name: 'CDBurnerXP' + installer: 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\CDBurnerXP\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,634 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,634 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,634 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,634 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,650 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 11:12:06,650 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,650 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,650 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +# just 32-bit x86 installer available + + + +cdroller: + '10.0': + full_name: 'CDRoller version 10.0' + installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe' + install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"' + uninstaller: '%PROGRAMFILES(x86)%\CDRoller\unins000.exe' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,650 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,650 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,665 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,665 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 11:12:06,665 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,665 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,681 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +check-mk-agent-msi: + + '1.5.0.3268': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2940': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2857': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8.1521': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8p26': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p5': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6.185': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p16': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p14': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p13': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p12': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:06,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,681 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,681 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,697 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,697 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 11:12:06,697 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,697 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,697 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +check-mk-agent: + 'Not Found': + full_name: 'Check_MK Agent 1.2.8b4' + + installer: 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe' + + uninstaller: '%ProgramFiles%\check_mk\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,697 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,697 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,712 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,712 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,712 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 11:12:06,712 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,712 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,712 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +chrome-rdp: + latest: + full_name: 'Chrome Remote Desktop Host' + installer: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,728 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.01567363739013672 +2020-03-06 11:12:06,728 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,728 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,728 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 11:12:06,728 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,744 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.015654563903808594 +2020-03-06 11:12:06,744 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +chrome: + latest: + full_name: 'Google Chrome' + installer: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:06,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,744 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,744 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,744 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,759 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 11:12:06,759 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,759 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,759 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +clamav: + '0.99.1': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + '0.98.7': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + +2020-03-06 11:12:06,759 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) +2020-03-06 11:12:06,775 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.01566171646118164 +2020-03-06 11:12:06,775 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,775 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,775 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 11:12:06,775 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,791 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.015670061111450195 +2020-03-06 11:12:06,791 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +# just 32-bit x86 installer available + + + +clamwin: + '0.98.7': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.6': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.5': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,791 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,791 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,791 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,806 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 11:12:06,806 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,806 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,806 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +classicshell: + '4.2.4': + full_name: 'Classic Shell' + installer: 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe' + install_flags: '/passive' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,806 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,822 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,822 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,822 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 11:12:06,822 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,822 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,838 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +# just 32-bit x86 installer available + + + +clink: + '0.4.8': + full_name: 'Clink v0.4.8' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.8\clink_uninstall_0.4.8.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.7': + full_name: 'Clink v0.4.7' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.7\clink_uninstall_0.4.7.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.6': + full_name: 'Clink v0.4.6' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.6\clink_uninstall_0.4.6.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.4': + full_name: 'Clink v0.4.4' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.4\clink_uninstall_0.4.4.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# https://mridgers.github.io/clink/ + +2020-03-06 11:12:06,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,838 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,838 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,838 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,838 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 11:12:06,853 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,853 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,853 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +conemu: + '11.160.5290': + + full_name: 'ConEmu 160529.x64' + install_flags: '/p:x64,adm /quiet /norestart' + uninstall_flags: '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart' + + installer: 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,853 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,853 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,869 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,869 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,869 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 11:12:06,869 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,885 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.015674114227294922 +2020-03-06 11:12:06,885 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +cpu-z: + + '1.86': + full_name: 'CPUID CPU-Z 1.86' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.85': + full_name: 'CPUID CPU-Z 1.85' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.84': + full_name: 'CPUID CPU-Z 1.84' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.83': + full_name: 'CPUID CPU-Z 1.83' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.82': + full_name: 'CPUID CPU-Z 1.82' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.81': + full_name: 'CPUID CPU-Z 1.81' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.80': + full_name: 'CPUID CPU-Z 1.80' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.79': + full_name: 'CPUID CPU-Z 1.79' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.78': + full_name: 'CPUID CPU-Z 1.78' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.77': + full_name: 'CPUID CPU-Z 1.77' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.76': + full_name: 'CPUID CPU-Z 1.76' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.75': + full_name: 'CPUID CPU-Z 1.75' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.74': + full_name: 'CPUID CPU-Z 1.74' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.73': + full_name: 'CPUID CPU-Z 1.73' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.72.1': + full_name: 'CPUID CPU-Z 1.72.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.71.1': + full_name: 'CPUID CPU-Z 1.71.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.70': + full_name: 'CPUID CPU-Z 1.70' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.69': + full_name: 'CPUID CPU-Z 1.69' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.68': + full_name: 'CPUID CPU-Z 1.68' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.67': + full_name: 'CPUID CPU-Z 1.67' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.66': + full_name: 'CPUID CPU-Z 1.66' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.65': + full_name: 'CPUID CPU-Z 1.65' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:06,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,900 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.015667438507080078 +2020-03-06 11:12:06,900 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,900 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,900 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 11:12:06,900 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,916 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.015666484832763672 +2020-03-06 11:12:06,916 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +curl: + '7.46.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.45.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.44.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.43.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# You need to download the win64 msi from website (Captcha protected) and place in your winrepo-ng on master +# http://www.confusedbycode.com/curl/#downloads +# Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, +# so you might not be calling the right 'curl' + +2020-03-06 11:12:06,916 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,916 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,932 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,932 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,932 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 11:12:06,932 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,932 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:06,932 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +cyberduck-cli: + '1.0.0.0': + full_name: 'Cyberduck CLI' + installer: 'http://dist.duck.sh/duck-5.0.3.20504.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ALLUSERSPROFILE%\Package Cache\{d7e97b39-df55-4b65-84b3-c24d1041948b}\duck-5.0.3.20504.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:06,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,947 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,947 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,947 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,947 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 11:12:06,947 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,963 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.015674591064453125 +2020-03-06 11:12:06,963 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +# just 32-bit x86 installer available + + + + +cyberduck-msi: + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 11:12:06,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,963 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,979 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,979 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:06,979 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 11:12:06,979 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:06,994 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.01567864418029785 +2020-03-06 11:12:06,994 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +# just 32-bit x86 installer available + + + + +cyberduck: + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:06,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:06,994 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:06,994 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:06,994 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,010 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 11:12:07,010 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,026 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.01567530632019043 +2020-03-06 11:12:07,026 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +# just 32-bit x86 installer available + + + +defraggler: + '2.20': + full_name: 'Defraggler' + installer: 'https://download.piriform.com/dfsetup220.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '2.18.945': + full_name: 'Defraggler 2.18' + installer: 'https://download.piriform.com/dfsetup218.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,026 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,026 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,026 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,026 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,026 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 11:12:07,026 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,041 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.015664339065551758 +2020-03-06 11:12:07,041 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +dotnet: + '4.6.01590': + full_name: 'Microsoft .NET Framework 4.6.2' + installer: 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01590\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.01055': + full_name: 'Microsoft .NET Framework 4.6.1' + installer: 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01055\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.00081': + full_name: 'Microsoft .NET Framework 4.6' + installer: 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.00081\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.5.51209': + full_name: 'Microsoft .NET Framework 4.5.2' + installer: 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.5.51209\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,041 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,057 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,057 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,057 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 11:12:07,057 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,073 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.01566338539123535 +2020-03-06 11:12:07,073 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +# just 32-bit x86 installer available + + + + + + + + +dropbox: + '69.4.102': + full_name: 'Dropbox' + installer: 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe' + install_flags: '/NOLAUNCH' + uninstaller: '%PROGRAMFILES(x86)%\Dropbox\Client\DropboxUninstaller.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,073 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,073 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,073 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,073 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,088 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 11:12:07,088 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,088 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,088 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +duplicati: + '1.3.4': + + full_name: 'Duplicati (x64)' + installer: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + uninstaller: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + refresh: False + cache_dir: False + use_scheduler: False + +2020-03-06 11:12:07,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) +2020-03-06 11:12:07,104 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,104 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,104 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,104 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 11:12:07,104 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,120 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.015672922134399414 +2020-03-06 11:12:07,120 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +dvdstyler: + 'Not Found': + full_name: 'DVDStyler v2.9.6' + + installer: 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\DVDStyler\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,120 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,120 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,120 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,120 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,135 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 11:12:07,135 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,135 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,151 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +echo-desktop: + '3.0.4': + full_name: + Echo Desktop + installer: + https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe + install_flags: + /S + uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" + uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" + +2020-03-06 11:12:07,151 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) +2020-03-06 11:12:07,151 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,151 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,151 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,167 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 11:12:07,167 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,167 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,167 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +eea: +# '5.0.2260.1': +# full_name: 'ESET Endpoint Antivirus' +# +# installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# +# install_flags: '/qn ALLUSERS=1 /norestart' +# uninstall_flags: '/qn /norestart' +# msiexec: True +# locale: en_US +# reboot: False +# cache_dir: True +# use_scheduler: True + '6.3.2016.0': + full_name: 'ESET Endpoint Antivirus' + + installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + cache_dir: True + use_scheduler: True +# +# download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ +# for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB + +2020-03-06 11:12:07,167 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) +2020-03-06 11:12:07,167 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,182 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,182 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,182 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 11:12:07,182 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,198 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.015667438507080078 +2020-03-06 11:12:07,198 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +emet: + '5.5': + full_name: 'EMET 5.5' + installer: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + install_flags: 'ALLUSERS=1 /quiet /qn /norestart' + uninstaller: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:07,198 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,198 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,198 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,198 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,198 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 11:12:07,198 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,214 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.01567530632019043 +2020-03-06 11:12:07,214 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +# just 32-bit x86 installer available + + + +# Source: https://www.emsisoft.com/en/ +emsisoft-anti-malware: + '9.0': + full_name: 'Emsisoft Anti-Malware' + installer: 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Emsisoft Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,214 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,214 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,214 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,229 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,229 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 11:12:07,229 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,229 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,229 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: + + +eraser: + + '6.2.2986': + full_name: 'Eraser 6.2.0.2986' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '6.2.2983': + full_name: 'Eraser 6.2.0.2983' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,245 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,245 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,245 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,245 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,245 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 11:12:07,245 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,261 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.015677690505981445 +2020-03-06 11:12:07,261 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +evernote: + '6.9.7.6770': + full_name: 'Evernote v. 6.9.7' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.9.6.6729': + full_name: 'Evernote v. 6.9.6' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.5.4.4720': + full_name: 'Evernote v. 6.5.4' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,261 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,261 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,261 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,261 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,276 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 11:12:07,276 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,276 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,276 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +# just 32-bit x86 installer available + + + +fiddler: + '5.0.20181.14850': + full_name: 'Fiddler' + installer: 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe' + install_flags: '/S /D=%ProgramFiles(x86)%\Fiddler' + uninstaller: '%ProgramFiles(x86)%\Fiddler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,276 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,276 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,292 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,292 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,292 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 11:12:07,292 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,292 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,308 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +# just 32-bit x86 installer available + + + +# Source: http://filehippo.com/download_update_checker/ +filehippo-app-manager: + '2.0': + full_name: 'FileHippo App Manager' + installer: 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\FileHippo.com\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download manually and place on master salt://win/repo-ng/filehippo-app-manager + +2020-03-06 11:12:07,308 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,308 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,308 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,308 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,308 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 11:12:07,308 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,323 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.01566934585571289 +2020-03-06 11:12:07,323 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: + + +filezilla: + + '3.47.1': + full_name: 'FileZilla Client 3.47.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.47.0': + full_name: 'FileZilla Client 3.47.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.3': + full_name: 'FileZilla Client 3.46.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.2': + full_name: 'FileZilla Client 3.46.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.1': + full_name: 'FileZilla Client 3.46.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.0': + full_name: 'FileZilla Client 3.46.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.1': + full_name: 'FileZilla Client 3.45.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.0': + full_name: 'FileZilla Client 3.45.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.2': + full_name: 'FileZilla Client 3.44.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.1': + full_name: 'FileZilla Client 3.44.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.0': + full_name: 'FileZilla Client 3.44.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.43.0': + full_name: 'FileZilla Client 3.43.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.1': + full_name: 'FileZilla Client 3.42.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.0': + full_name: 'FileZilla Client 3.42.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.2': + full_name: 'FileZilla Client 3.41.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.1': + full_name: 'FileZilla Client 3.41.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.0': + full_name: 'FileZilla Client 3.41.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.40.0': + full_name: 'FileZilla Client 3.40.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.39.0': + full_name: 'FileZilla Client 3.39.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.1': + full_name: 'FileZilla Client 3.38.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.0': + full_name: 'FileZilla Client 3.38.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.4': + full_name: 'FileZilla Client 3.37.4' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.3': + full_name: 'FileZilla Client 3.37.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.1': + full_name: 'FileZilla Client 3.37.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.0': + full_name: 'FileZilla Client 3.37.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.36.0': + full_name: 'FileZilla Client 3.36.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.2': + full_name: 'FileZilla Client 3.35.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.1': + full_name: 'FileZilla Client 3.35.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.0': + full_name: 'FileZilla Client 3.35.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.34.0': + full_name: 'FileZilla Client 3.34.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.33.0': + full_name: 'FileZilla Client 3.33.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.32.0': + full_name: 'FileZilla Client 3.32.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.31.0': + full_name: 'FileZilla Client 3.31.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.30.0': + full_name: 'FileZilla Client 3.30.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.29.0': + full_name: 'FileZilla Client 3.29.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.28.0': + full_name: 'FileZilla Client 3.28.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.1': + full_name: 'FileZilla Client 3.27.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0.1': + full_name: 'FileZilla Client 3.27.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0': + full_name: 'FileZilla Client 3.27.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.2': + full_name: 'FileZilla Client 3.26.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.1': + full_name: 'FileZilla Client 3.26.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.0': + full_name: 'FileZilla Client 3.26.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.2': + full_name: 'FileZilla Client 3.25.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.1': + full_name: 'FileZilla Client 3.25.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.0': + full_name: 'FileZilla Client 3.25.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.1': + full_name: 'FileZilla Client 3.24.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.0': + full_name: 'FileZilla Client 3.24.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.2': + full_name: 'FileZilla Client 3.23.0.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.1': + full_name: 'FileZilla Client 3.23.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0': + full_name: 'FileZilla Client 3.23.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.2': + full_name: 'FileZilla Client 3.22.2.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.1': + full_name: 'FileZilla Client 3.22.2.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2': + full_name: 'FileZilla Client 3.22.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.1': + full_name: 'FileZilla Client 3.22.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.0': + full_name: 'FileZilla Client 3.22.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.21.0': + full_name: 'FileZilla Client 3.21.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.1': + full_name: 'FileZilla Client 3.20.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.0': + full_name: 'FileZilla Client 3.20.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.19.0': + full_name: 'FileZilla Client 3.19.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.18.0': + full_name: 'FileZilla Client 3.18.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0.1': + full_name: 'FileZilla Client 3.17.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0': + full_name: 'FileZilla Client 3.17.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.1': + full_name: 'FileZilla Client 3.16.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.0': + full_name: 'FileZilla Client 3.16.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,355 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,355 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.014858007431030273 +2020-03-06 11:12:07,355 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,355 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,355 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 11:12:07,355 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,370 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.01579594612121582 +2020-03-06 11:12:07,370 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +firefox-esr_x64: + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,386 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,402 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.015673398971557617 +2020-03-06 11:12:07,402 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,417 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,417 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 11:12:07,417 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,433 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.01567530632019043 +2020-03-06 11:12:07,433 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +firefox-esr_x86: + + + + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.8.0': + full_name: 'Mozilla Firefox 38.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.1': + full_name: 'Mozilla Firefox 38.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.0': + full_name: 'Mozilla Firefox 38.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.1': + full_name: 'Mozilla Firefox 38.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Firefox 38.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.2': + full_name: 'Mozilla Firefox 38.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.1': + full_name: 'Mozilla Firefox 38.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Firefox 38.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Firefox 38.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Firefox 38.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.1': + full_name: 'Mozilla Firefox 38.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,449 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,449 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015656471252441406 +2020-03-06 11:12:07,464 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,464 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,464 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 11:12:07,464 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,480 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.015655517578125 +2020-03-06 11:12:07,480 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +firefox_x64: + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,496 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,511 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.031340837478637695 +2020-03-06 11:12:07,511 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,511 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,527 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 11:12:07,527 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,543 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.015652894973754883 +2020-03-06 11:12:07,558 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +firefox_x86: + + + + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.2': + full_name: 'Mozilla Firefox 41.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.1': + full_name: 'Mozilla Firefox 41.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0': + full_name: 'Mozilla Firefox 41.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.3': + full_name: 'Mozilla Firefox 40.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.2': + full_name: 'Mozilla Firefox 40.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0': + full_name: 'Mozilla Firefox 40.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0.3': + full_name: 'Mozilla Firefox 39.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0': + full_name: 'Mozilla Firefox 39.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.6': + full_name: 'Mozilla Firefox 38.0.6 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.5': + full_name: 'Mozilla Firefox 38.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.1': + full_name: 'Mozilla Firefox 38.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0': + full_name: 'Mozilla Firefox 38.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.2': + full_name: 'Mozilla Firefox 37.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.1': + full_name: 'Mozilla Firefox 37.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0': + full_name: 'Mozilla Firefox 37.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.4': + full_name: 'Mozilla Firefox 36.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.3': + full_name: 'Mozilla Firefox 36.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.1': + full_name: 'Mozilla Firefox 36.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0': + full_name: 'Mozilla Firefox 36.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0.1': + full_name: 'Mozilla Firefox 35.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0': + full_name: 'Mozilla Firefox 35.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0.5': + full_name: 'Mozilla Firefox 34.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0': + full_name: 'Mozilla Firefox 34.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1.1': + full_name: 'Mozilla Firefox 33.1.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1': + full_name: 'Mozilla Firefox 33.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.3': + full_name: 'Mozilla Firefox 33.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.2': + full_name: 'Mozilla Firefox 33.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.1': + full_name: 'Mozilla Firefox 33.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0': + full_name: 'Mozilla Firefox 33.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.3': + full_name: 'Mozilla Firefox 32.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.2': + full_name: 'Mozilla Firefox 32.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.1': + full_name: 'Mozilla Firefox 32.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0': + full_name: 'Mozilla Firefox 32.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '31.0': + full_name: 'Mozilla Firefox 31.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '30.0': + full_name: 'Mozilla Firefox 30.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '29.0.1': + full_name: 'Mozilla Firefox 29.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,574 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,590 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.03215146064758301 +2020-03-06 11:12:07,590 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,590 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,590 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 11:12:07,590 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,605 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0148468017578125 +2020-03-06 11:12:07,605 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +# just 32-bit x86 installer available + + + + +gedit: + '2.30.1': + full_name: gedit 2.30.1 + installer: https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\gedit\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,605 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,605 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,605 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,621 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,621 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 11:12:07,621 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,637 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.015622854232788086 +2020-03-06 11:12:07,637 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +# just 32-bit x86 installer available +# Gimp installs into %ProgramFiles on either cpu arch +gimp: + + '2.10.4': + full_name: 'GIMP 2.10.4' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.22': + full_name: 'GIMP 2.8.22' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.16': + full_name: 'GIMP 2.8.16' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.14': + full_name: 'GIMP 2.8.14' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + +2020-03-06 11:12:07,637 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) +2020-03-06 11:12:07,637 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,637 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,652 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,652 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 11:12:07,652 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,652 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,652 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +git-extensions: + '2.48.05': + full_name: 'Git Extensions 2.48.05' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.48.03': + full_name: 'Git Extensions 2.48.03' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:07,668 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,668 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,668 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,668 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,668 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 11:12:07,684 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,701 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.01700878143310547 +2020-03-06 11:12:07,701 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git + + + + + + + +git: + + + + + + + + + + '2.23.0.windows.1': + full_name: Git version 2.23.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.22.0.windows.1': + full_name: Git version 2.22.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.21.0': + full_name: Git version 2.21.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.1': + full_name: Git version 2.20.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.0': + full_name: Git version 2.20.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.2': + full_name: Git version 2.19.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.1': + full_name: Git version 2.19.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.0': + full_name: Git version 2.19.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.18.0': + full_name: Git version 2.18.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.1.2': + full_name: Git version 2.17.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.0': + full_name: Git version 2.17.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.3': + full_name: Git version 2.16.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.2': + full_name: Git version 2.16.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.0.2': + full_name: Git version 2.16.0.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.15.0': + full_name: Git version 2.15.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.14.2': + full_name: Git version 2.14.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.3': + full_name: Git version 2.13.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.1.2': + full_name: Git version 2.13.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.2': + full_name: Git version 2.12.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.1': + full_name: Git version 2.12.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0.3': + full_name: Git version 2.11.0.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0': + full_name: Git version 2.11.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.2': + full_name: Git version 2.10.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.1': + full_name: Git version 2.10.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.0': + full_name: Git version 2.10.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.9.0': + full_name: Git version 2.9.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.4': + full_name: Git version 2.8.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.3': + full_name: Git version 2.8.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.2': + full_name: Git version 2.8.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.1': + full_name: Git version 2.8.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.2': + full_name: Git version 2.7.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.1': + full_name: Git version 2.7.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.0': + full_name: Git version 2.7.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.4': + full_name: Git version 2.6.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.2': + full_name: Git version 2.6.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.3': + full_name: Git version 2.5.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.2.2': + full_name: Git version 2.5.2.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.0': + full_name: Git version 2.5.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + +msysgit: + '1.9.5-preview20150319': + full_name: 'Git version 1.9.5-preview20150319' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART ' + msiexec: False + locale: en_US + reboot: False + '1.9.5-preview20141217': + full_name: 'Git version 1.9.5-preview20141217' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + '1.9.4-preview20140815': + full_name: 'Git version 1.9.4-preview20140815' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe' + install_flags: '/VERYSILENT /NOREBOOT' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NOREBOOT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,715 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,715 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.014328956604003906 +2020-03-06 11:12:07,715 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,715 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,715 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 11:12:07,715 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,731 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.015659570693969727 +2020-03-06 11:12:07,731 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +# just 32-bit x86 installer available + + + +glarysoft-absolute-uninstaller: + '5.3.1.23': + full_name: 'Absolute Uninstaller 5.3.1.23' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '5.3.1.21': + full_name: 'Absolute Uninstaller 5.3.1.21' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:07,731 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,731 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,731 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,746 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,746 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 11:12:07,746 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,746 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,746 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +# just 32-bit x86 installer available + + + +gnucash: + '2.6.5': + full_name: 'GnuCash 2.6.5' + installer: 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe' + install_flags: '/SILENT' + uninstaller: '%ProgramFiles(x86)%\gnucash\uninstall\gnucash\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,762 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,762 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,762 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,762 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,762 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 11:12:07,778 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,793 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015668869018554688 +2020-03-06 11:12:07,793 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +# "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. +# See https://golang.org/ + + + + + +# Hint: the versionWithTrailingZero is required, because golang sets the version field in Windows to e.g. 1.14.0 or 1.13.0 if 1.14 or 1.13 is installed. +# If we dont do that the version can not be removed anymore via saltstack. + +golang: + + + '1.2.2': + + full_name: 'Go Programming Language amd64 go1.2.2' + installer: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.0': + + full_name: 'Go Programming Language amd64 go1.3' + installer: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.1': + + full_name: 'Go Programming Language amd64 go1.3.1' + installer: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.2': + + full_name: 'Go Programming Language amd64 go1.3.2' + installer: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.3': + + full_name: 'Go Programming Language amd64 go1.3.3' + installer: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.0': + + full_name: 'Go Programming Language amd64 go1.4' + installer: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.1': + + full_name: 'Go Programming Language amd64 go1.4.1' + installer: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.2': + + full_name: 'Go Programming Language amd64 go1.4.2' + installer: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.3': + + full_name: 'Go Programming Language amd64 go1.4.3' + installer: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.0': + + full_name: 'Go Programming Language amd64 go1.5' + installer: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.1': + + full_name: 'Go Programming Language amd64 go1.5.1' + installer: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.2': + + full_name: 'Go Programming Language amd64 go1.5.2' + installer: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.3': + + full_name: 'Go Programming Language amd64 go1.5.3' + installer: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.4': + + full_name: 'Go Programming Language amd64 go1.5.4' + installer: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.0': + + full_name: 'Go Programming Language amd64 go1.6' + installer: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.1': + + full_name: 'Go Programming Language amd64 go1.6.1' + installer: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.2': + + full_name: 'Go Programming Language amd64 go1.6.2' + installer: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.3': + + full_name: 'Go Programming Language amd64 go1.6.3' + installer: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.4': + + full_name: 'Go Programming Language amd64 go1.6.4' + installer: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.0': + + full_name: 'Go Programming Language amd64 go1.7' + installer: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.1': + + full_name: 'Go Programming Language amd64 go1.7.1' + installer: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.2': + + full_name: 'Go Programming Language amd64 go1.7.2' + installer: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.3': + + full_name: 'Go Programming Language amd64 go1.7.3' + installer: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.4': + + full_name: 'Go Programming Language amd64 go1.7.4' + installer: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.5': + + full_name: 'Go Programming Language amd64 go1.7.5' + installer: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.6': + + full_name: 'Go Programming Language amd64 go1.7.6' + installer: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.0': + + full_name: 'Go Programming Language amd64 go1.8' + installer: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.1': + + full_name: 'Go Programming Language amd64 go1.8.1' + installer: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.2': + + full_name: 'Go Programming Language amd64 go1.8.2' + installer: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.3': + + full_name: 'Go Programming Language amd64 go1.8.3' + installer: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.4': + + full_name: 'Go Programming Language amd64 go1.8.4' + installer: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.5': + + full_name: 'Go Programming Language amd64 go1.8.5' + installer: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.6': + + full_name: 'Go Programming Language amd64 go1.8.6' + installer: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.7': + + full_name: 'Go Programming Language amd64 go1.8.7' + installer: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.0': + + full_name: 'Go Programming Language amd64 go1.9' + installer: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.1': + + full_name: 'Go Programming Language amd64 go1.9.1' + installer: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.2': + + full_name: 'Go Programming Language amd64 go1.9.2' + installer: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.3': + + full_name: 'Go Programming Language amd64 go1.9.3' + installer: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.4': + + full_name: 'Go Programming Language amd64 go1.9.4' + installer: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + + full_name: 'Go Programming Language amd64 go1.9.5' + installer: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.6': + + full_name: 'Go Programming Language amd64 go1.9.6' + installer: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.7': + + full_name: 'Go Programming Language amd64 go1.9.7' + installer: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.0': + + full_name: 'Go Programming Language amd64 go1.10' + installer: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.1': + + full_name: 'Go Programming Language amd64 go1.10.1' + installer: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.2': + + full_name: 'Go Programming Language amd64 go1.10.2' + installer: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.3': + + full_name: 'Go Programming Language amd64 go1.10.3' + installer: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.4': + + full_name: 'Go Programming Language amd64 go1.10.4' + installer: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.5': + + full_name: 'Go Programming Language amd64 go1.10.5' + installer: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.6': + + full_name: 'Go Programming Language amd64 go1.10.6' + installer: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.7': + + full_name: 'Go Programming Language amd64 go1.10.7' + installer: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.8': + + full_name: 'Go Programming Language amd64 go1.10.8' + installer: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.0': + + full_name: 'Go Programming Language amd64 go1.11' + installer: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.1': + + full_name: 'Go Programming Language amd64 go1.11.1' + installer: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.2': + + full_name: 'Go Programming Language amd64 go1.11.2' + installer: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.3': + + full_name: 'Go Programming Language amd64 go1.11.3' + installer: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.4': + + full_name: 'Go Programming Language amd64 go1.11.4' + installer: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.5': + + full_name: 'Go Programming Language amd64 go1.11.5' + installer: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.6': + + full_name: 'Go Programming Language amd64 go1.11.6' + installer: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.7': + + full_name: 'Go Programming Language amd64 go1.11.7' + installer: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.8': + + full_name: 'Go Programming Language amd64 go1.11.8' + installer: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.9': + + full_name: 'Go Programming Language amd64 go1.11.9' + installer: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.10': + + full_name: 'Go Programming Language amd64 go1.11.10' + installer: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.11': + + full_name: 'Go Programming Language amd64 go1.11.11' + installer: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.12': + + full_name: 'Go Programming Language amd64 go1.11.12' + installer: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.13': + + full_name: 'Go Programming Language amd64 go1.11.13' + installer: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.0': + + full_name: 'Go Programming Language amd64 go1.12' + installer: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.1': + + full_name: 'Go Programming Language amd64 go1.12.1' + installer: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.2': + + full_name: 'Go Programming Language amd64 go1.12.2' + installer: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.3': + + full_name: 'Go Programming Language amd64 go1.12.3' + installer: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.4': + + full_name: 'Go Programming Language amd64 go1.12.4' + installer: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.5': + + full_name: 'Go Programming Language amd64 go1.12.5' + installer: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.6': + + full_name: 'Go Programming Language amd64 go1.12.6' + installer: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.7': + + full_name: 'Go Programming Language amd64 go1.12.7' + installer: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.8': + + full_name: 'Go Programming Language amd64 go1.12.8' + installer: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.9': + + full_name: 'Go Programming Language amd64 go1.12.9' + installer: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.10': + + full_name: 'Go Programming Language amd64 go1.12.10' + installer: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.11': + + full_name: 'Go Programming Language amd64 go1.12.11' + installer: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.12': + + full_name: 'Go Programming Language amd64 go1.12.12' + installer: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.13': + + full_name: 'Go Programming Language amd64 go1.12.13' + installer: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.14': + + full_name: 'Go Programming Language amd64 go1.12.14' + installer: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.15': + + full_name: 'Go Programming Language amd64 go1.12.15' + installer: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.16': + + full_name: 'Go Programming Language amd64 go1.12.16' + installer: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.17': + + full_name: 'Go Programming Language amd64 go1.12.17' + installer: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.0': + + full_name: 'Go Programming Language amd64 go1.13' + installer: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.1': + + full_name: 'Go Programming Language amd64 go1.13.1' + installer: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.2': + + full_name: 'Go Programming Language amd64 go1.13.2' + installer: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.3': + + full_name: 'Go Programming Language amd64 go1.13.3' + installer: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.4': + + full_name: 'Go Programming Language amd64 go1.13.4' + installer: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.5': + + full_name: 'Go Programming Language amd64 go1.13.5' + installer: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.6': + + full_name: 'Go Programming Language amd64 go1.13.6' + installer: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.7': + + full_name: 'Go Programming Language amd64 go1.13.7' + installer: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.8': + + full_name: 'Go Programming Language amd64 go1.13.8' + installer: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.14.0': + + full_name: 'Go Programming Language amd64 go1.14' + installer: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:07,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,825 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.0313258171081543 +2020-03-06 11:12:07,825 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,825 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,825 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 11:12:07,840 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,840 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,840 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +goodsync: + '9.9.46.6': + full_name: 'GoodSync' + installer: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:07,840 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,840 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,856 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,856 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,856 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 11:12:07,856 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,856 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,856 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +# just 32-bit x86 installer available + + + +gow: + 'Not Found': + full_name: 'Gow' + installer: 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Gow\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + # Gow - GNU on Windows - The lightweight alternative to Cygwin + # https://github.com/bmatzelle/gow/wiki + +2020-03-06 11:12:07,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,872 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,872 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,872 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,887 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 11:12:07,887 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,887 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,903 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +# just 32-bit x86 installer available + + + +gpg4win-light: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream +# Here are work around instructions under Issue #113 in the meantime +# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 +# + +2020-03-06 11:12:07,903 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,903 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,903 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,903 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,919 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 11:12:07,919 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,919 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:07,934 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +# just 32-bit x86 installer available + + + +gpg4win-vanilla: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,934 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:07,934 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,950 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,950 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 11:12:07,950 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,966 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.015674591064453125 +2020-03-06 11:12:07,966 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: + + +graylog-collector-sidecar: + + '0.1.6': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.5': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.4': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.3': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.2': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.1': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.0': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:07,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:07,981 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.015662193298339844 +2020-03-06 11:12:07,981 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:07,981 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:07,981 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 11:12:07,981 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:07,997 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.015662670135498047 +2020-03-06 11:12:07,997 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +grepwin: + '1.6.682': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.673': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.661': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.646': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:07,997 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,013 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.015664100646972656 +2020-03-06 11:12:08,013 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,013 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,013 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 11:12:08,013 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,028 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0156705379486084 +2020-03-06 11:12:08,028 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +# just 32-bit x86 installer available + + + +gvim: + 'Not Found': + full_name: 'Vim 8.0.3' + installer: 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Vim\vim80\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,028 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,028 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,044 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,044 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,044 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 11:12:08,044 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,044 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,060 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +# Source: https://handbrake.fr +handbrake: + '0.10.5': + full_name: 'Handbrake 0.10.5' + + installer: 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Handbrake\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,060 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,060 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,060 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,075 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,075 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 11:12:08,075 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,075 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,091 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +hipchat: + + + + '4.0.1650': + installer: 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe' + full_name: 'HipChat' + install_flags: '/sp /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Atlassian\Hipchat4\unins000.exe' + uninstall_flags: '/sp /verysilent' + msiexec: False + reboot: False + +2020-03-06 11:12:08,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:12:08,091 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,091 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,107 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,107 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 11:12:08,107 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,122 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.01566028594970703 +2020-03-06 11:12:08,122 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +hostsfileeditor: + '1.2.0': + + full_name: 'Hosts File Editor' + installer: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + uninstaller: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,122 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,122 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,122 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,122 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,138 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 11:12:08,154 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,154 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,154 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: + +hwinfo: + '5.70': + + full_name: 'HWiNFO64 Version 5.70' + installer: 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe' + uninstaller: '%PROGRAMFILES%\HWiNFO64\unins000.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,154 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,154 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,169 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,169 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,169 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 11:12:08,169 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,169 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,169 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +ice: + '3.6.1.2': + full_name: 'Ice 3.6.1.2' + installer: 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi' + uninstaller: '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,185 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,185 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,185 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,185 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,185 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 11:12:08,201 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,201 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,201 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +# just 32-bit x86 installer available + + + +icecast: + '2.4.2': + full_name: 'Icecast' + installer: 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Icecast\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,201 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,201 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,216 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,216 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,216 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 11:12:08,216 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,216 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,232 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +icloud: + '7.3.0.20': + full_name: iCloud + installer: 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,232 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,232 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,232 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,232 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,248 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 11:12:08,248 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,248 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,248 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +iismediaservices: + '4.1.0938.454': + full_name: 'IIS Media Services 4.1' + + installer: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '4.0.0938.54': + full_name: 'IIS Media Services 4.0' + + installer: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '2.0.1': + full_name: 'IIS Media Services 2.0' + + installer: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,263 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0156705379486084 +2020-03-06 11:12:08,263 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,263 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,279 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 11:12:08,279 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,279 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,279 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +influx-capacitor: + '1.0.89': + full_name: 'Influx Capacitor' + installer: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + install_flags: '/q' + uninstaller: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + uninstall_flags: '/q' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,295 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,295 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,295 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,310 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,310 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 11:12:08,310 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,326 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.01565694808959961 +2020-03-06 11:12:08,326 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +inkscape: + '0.91': + full_name: 'Inkscape 0.91' + + installer: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + uninstaller: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,326 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,326 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,342 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,342 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,342 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 11:12:08,342 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,357 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.01566004753112793 +2020-03-06 11:12:08,357 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +# just 32-bit x86 installer available + + + +intellij-community: + + '14.1.4': + full_name: 'IntelliJ IDEAS Community Edition 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:08,357 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,357 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,357 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,373 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,373 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 11:12:08,373 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,389 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.015561103820800781 +2020-03-06 11:12:08,389 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +# just 32-bit x86 installer available + + + +intellij-ultimate: + + '14.1.4': + full_name: 'IntelliJ IDEAS Ultimate 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:08,389 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,389 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,389 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,389 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,404 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 11:12:08,404 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,404 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,404 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +internet-evidence-finder: + '6.2.3.0001': + full_name: 'Internet Evidence Finder' + installer: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,404 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,404 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,420 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,420 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,420 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 11:12:08,420 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,420 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,420 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +irfanview-plugins: + '4.42': + + full_name: 'Irfanview Plugins 4.40' + installer: 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe' + # download manually from: http://www.irfanview.info/files/irfanview_plugins_x64_442_setup.exe and place on master + + install_flags: '/silent' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,436 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,436 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,436 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,436 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 11:12:08,436 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,467 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.031319618225097656 +2020-03-06 11:12:08,467 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +irfanview: + '4.51': + + full_name: 'IrfanView 64 (remove only)' + installer: 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe' + # download manually from: http://www.irfanview.info/files/iview451_x64_setup.exe and place on master + + install_flags: '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0' + uninstaller: '%ProgramFiles%\irfanview\iv_uninstall.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False +# install_flags +# folder: destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used +# silent: silent install - no prompts +# desktop: create desktop shortcut; 0 = no, 1 = yes (default: 0) +# thumbs: create desktop shortcut for thumbnails; 0 = no, 1 = yes (default: 0) +# group: create group in Start Menu; 0 = no, 1 = yes (default: 0) +# allusers: desktop/group links are for all users; 0 = current user, 1 = all users +# assoc: if used, set file associations; 0 = none, 1 = images only, 2 = select all (default: 0) +# assocallusers: if used, set associations for all users (Windows XP only) +# ini: if used, set custom INI file folder (system environment variables are allowed) + +2020-03-06 11:12:08,467 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,467 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,467 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,467 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,592 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 11:12:08,608 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,608 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,608 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +isapirewrite-lite: + '3.1.0112': + full_name: 'Helicon ISAPI_Rewrite 3 Lite' + + installer: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + uninstaller: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,608 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,623 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,623 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,623 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 11:12:08,623 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,623 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,623 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +itunes: + '12.8.0.150': + full_name: 'iTunes' + + installer: 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe' + uninstall_flags: | + '/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} & + msiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} & + msiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} & + msiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} & + msiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} & + msiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} & + exit 0' + # the above uninstalls: + # Bonjour64 v. 3.1.0.1 {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} + # Apple Software Update v. 2.6.0.1 {A30EA700-5515-48F0-88B0-9E99DC356B88} + # Apple Mobile Device Support (64-bit) v. 11.4.1.46 {C29B636B-9015-4ED1-A12F-6375A337F23B} + # Apple Application Support (32-bit) v. 6.6 {C56BA005-F02C-461B-ACA5-A0CE3E32578F} + # Apple Application Support (64-bit) v. 6.6 {D745E014-74DD-43A3-98DF-E7D38164B681} + # iTunes v. 12.8.0.150 {36F365B3-05C2-455D-9D96-B73829DE046D} + + install_flags: '/quiet /qn ALLUSERS=1 /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,639 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,639 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,639 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,639 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,639 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 11:12:08,655 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,655 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,655 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way +# to find manual download links for any version use: +# http://www.java.com/en/download/manual.jsp +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + +jdk8: + '8.0.1440.1': + + full_name: 'Java SE Development Kit 8 Update 144 (64-bit)' + installer: salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe + + install_flags: '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"' + uninstall_flags: '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,655 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,655 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,670 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,670 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 11:12:08,670 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,687 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.016513347625732422 +2020-03-06 11:12:08,687 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +jre: + '7.0.790': + + full_name: 'Java 7 Update 79 (64-bit)' + installer: 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/s REBOOT=Suppress SPONSORS=0' + msiexec: False + locale: en_US + reboot: False + # due to winrepo installer limitations you need to manually download the exe from + # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 + # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way + +2020-03-06 11:12:08,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,702 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.014810323715209961 +2020-03-06 11:12:08,702 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,702 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,702 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 11:12:08,717 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,717 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,717 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://www.java.com/en/download/manual.jsp +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + + + +jre8: + + + + '8.0.2010.9': + + full_name: 'Java 8 Update 201 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2110.9': + + full_name: 'Java 8 Update 211 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2210.9': + + full_name: 'Java 8 Update 221 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2310.9': + + full_name: 'Java 8 Update 231 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2410.7': + + full_name: 'Java 8 Update 241 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:08,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,733 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.015662670135498047 +2020-03-06 11:12:08,733 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,733 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,733 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 11:12:08,733 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,749 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.015662193298339844 +2020-03-06 11:12:08,749 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +jungledisk-server-management: + '3.23.0.2': + full_name: 'Jungle Disk Server Management' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-management64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,749 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,764 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,764 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,780 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 11:12:08,780 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,796 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.015671491622924805 +2020-03-06 11:12:08,796 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +jungledisk-server: + '3.23.0.2': + full_name: 'Jungle Disk Server' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,796 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,796 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,796 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,811 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 11:12:08,811 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,811 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,811 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +jungledisk-workgroup: + '3.23.0.2': + full_name: 'Jungle Disk Workgroup' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,811 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,811 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,811 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,827 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,827 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 11:12:08,827 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,827 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,827 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +kdiff3: + 'Not Found': + full_name: 'KDiff3 (remove only)' + + installer: 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe' + + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\KDiff3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,827 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,844 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,844 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,844 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 11:12:08,844 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,858 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.014808416366577148 +2020-03-06 11:12:08,858 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +# Keepass 2.x installation from https://keepass.info/ +# to keep the versioning in the format of "2..minor", two seperate version arrays are created. + + + +# Hint: Version 2.24 is the first version that provides a msi-package, all versions before had a -Setup.exe + + +keepass-2x: + + + '2.24.0': + full_name: 'KeePass 2.24' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.25.0': + full_name: 'KeePass 2.25' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.26.0': + full_name: 'KeePass 2.26' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.27.0': + full_name: 'KeePass 2.27' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.28.0': + full_name: 'KeePass 2.28' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.29.0': + full_name: 'KeePass 2.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.30.0': + full_name: 'KeePass 2.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.31.0': + full_name: 'KeePass 2.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.32.0': + full_name: 'KeePass 2.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.33.0': + full_name: 'KeePass 2.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.34.0': + full_name: 'KeePass 2.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.35.0': + full_name: 'KeePass 2.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.36.0': + full_name: 'KeePass 2.36' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.37.0': + full_name: 'KeePass 2.37' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.38.0': + full_name: 'KeePass 2.38' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.0': + full_name: 'KeePass 2.39' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.40.0': + full_name: 'KeePass 2.40' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.41.0': + full_name: 'KeePass 2.41' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.0': + full_name: 'KeePass 2.42' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.43.0': + full_name: 'KeePass 2.43' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.44.0': + full_name: 'KeePass 2.44' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.1': + full_name: 'KeePass 2.39.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.1': + full_name: 'KeePass 2.42.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,858 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,858 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,874 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,874 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,874 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 11:12:08,874 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,874 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,874 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +keepass: + '1.35.0': + full_name: 'KeePass 1.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.34.0': + full_name: 'KeePass 1.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.33.0': + full_name: 'KeePass 1.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.32.0': + full_name: 'KeePass 1.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.31.0': + full_name: 'KeePass 1.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.30.0': + full_name: 'KeePass 1.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.29.0': + full_name: 'KeePass 1.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,890 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,890 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,890 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,890 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 11:12:08,890 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,905 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.015660524368286133 +2020-03-06 11:12:08,905 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +# just 32-bit x86 installer available + + + +lastpass: + 'Not Found': + full_name: 'LastPass (uninstall only)' + + installer: 'https://lastpass.eu/sync/lastpass_x64.exe' + + install_flags: '-si --userinstallie --userinstallff --userinstallchrome' + uninstaller: '%PROGRAMFILES(x86)%\LastPass\lastpass.exe' + uninstall_flags: '-sb' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:08,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,905 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,905 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,905 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,905 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 11:12:08,921 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,921 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,921 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +# NOTE: If the lazarus installation directory exists the installation will +# pop up a dialog box. This will cause the minion to hang because it +# is waiting for the user to click continue on a dialog box that will +# never be seen. So, before running this, make sure the lazarus +# installation directory is not present. +# If doing an upgrade that means you'll have to do something like the +# following: +# pkg.remove lazarus +# file.remove c:\lazarus +# pkg.install lazarus + + +lazarus: + + '1.8.0': + full_name: Lazarus 1.8.0 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + '1.6.4': + full_name: Lazarus 1.6.4 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + +2020-03-06 11:12:08,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) +2020-03-06 11:12:08,921 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,921 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,937 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,937 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 11:12:08,937 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,937 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,937 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +libreoffice: + + '5.3.5.2': + full_name: 'LibreOffice 5.3.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.3.6.1': + full_name: 'LibreOffice 5.3.6.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.6.2': + full_name: 'LibreOffice 5.4.6.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.7.2': + full_name: 'LibreOffice 5.4.7.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.0.5.2': + full_name: 'LibreOffice 6.0.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.2.7.1': + full_name: 'LibreOffice 6.2.7.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:08,953 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,953 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.016466140747070312 +2020-03-06 11:12:08,953 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,953 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,953 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 11:12:08,979 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,979 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:08,984 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +logparser: + '2.2.10': + full_name: 'Log Parser 2.2' + installer: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:08,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,984 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,984 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,984 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,984 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 11:12:08,984 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:08,999 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.01566171646118164 +2020-03-06 11:12:08,999 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +# just 32-bit x86 installer available + + + +maas360bootanalyzer: + '1.0.0': + full_name: 'MaaS360 Boot Analyzer v 1.0.0' + installer: 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe' + + install_flags: | + '/S & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v UninstallString /d "C:\Program Files (x86)\BootAnalyzer\Uninstall.exe" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" & + exit 0' + + uninstaller: '%PROGRAMFILES(x86)%\MaaS360\BootAnalyzer\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory + +2020-03-06 11:12:08,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:08,999 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:08,999 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:08,999 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:08,999 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 11:12:08,999 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,015 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.015665054321289062 +2020-03-06 11:12:09,015 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.malwarebytes.org +malwarebytes: + '3.5.1.2522': + full_name: 'Malwarebytes Anti-Malware version 2.0.4.1028' + installer: 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Malwarebytes Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: Falsea + +2020-03-06 11:12:09,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) +2020-03-06 11:12:09,015 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,015 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,015 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,015 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 11:12:09,031 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,046 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.01566934585571289 +2020-03-06 11:12:09,063 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +#MariaDB https://downloads.mariadb.org/mariadb/+releases/ +#only stable versions are listed + + + + + + + + +mariadb: + + + '10.1.38.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.37.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.36.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.35.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.34.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.33.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.32.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.31.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.30.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.29.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.28.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.27.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.26.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.25.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.24.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.23.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.22.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.21.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.19.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.18.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.17.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.16.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.14.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.13.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.12.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.11.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.10.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.9.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.8.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.2.22.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.21.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.20.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.19.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.18.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.16.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.15.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.14.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.13.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.12.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.11.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.10.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.9.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.8.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.6.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '5.5.63.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.62.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.61.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.60.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.59.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.58.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.57.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.56.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.55.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.54.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.53.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.52.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.51.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.50.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.49.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.48.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.47.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.0.38.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.37.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.36.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.35.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.34.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.33.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.32.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.29.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.28.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.27.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.26.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.25.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.23.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.19.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.18.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.17.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.16.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 11:12:09,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:12:09,078 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.014901876449584961 +2020-03-06 11:12:09,078 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,078 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,093 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 11:12:09,093 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,093 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,093 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +mercurial: + '3.1.1': + + full_name: 'Mercurial 3.1.1 (x64)' + installer: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + uninstaller: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:09,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,093 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,093 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,093 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,109 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 11:12:09,109 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,109 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,109 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +messageanalyzer: + '4.0.7551.0': + full_name: 'Microsoft Message Analyzer' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi' + + install_flags: '/quiet /norestart' + uninstaller: '{1CC02C23-8FCD-487E-860C-311EC0A0C933}' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:09,109 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,109 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,109 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,109 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,109 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 11:12:09,125 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,125 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,125 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +microsoft-build-tools: + '14.0.23107': + + full_name: 'Microsoft Build Tools 14.0 (amd64)' + uninstall_flags: '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart' + + installer: 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe' + install_flags: '/Q /NoRestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,125 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,125 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,125 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,125 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 11:12:09,125 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,140 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.01566314697265625 +2020-03-06 11:12:09,140 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +mikogo: + '5.3.0': + full_name: 'Mikogo' + installer: 'https://download.mikogo4.com/mikogo-starter.exe' + install_flags: '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0' + uninstaller: '%AppData%\Mikogo\remover.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,140 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,140 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,140 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,140 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 11:12:09,140 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,140 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,156 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +miktex-basic: + '2.9': + full_name: 'MiKTeX 2.9' + + installer: 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe' + + install_flags: '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\MiKTeX 2.9\"' + uninstaller: 'cmd' + uninstall_flags: | + '/c del /Q /F /S "%ProgramFiles%\MiKTeX 2.9\" & + reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MiKTeX 2.9" /f & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,156 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,156 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,156 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,156 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,156 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 11:12:09,156 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,156 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,156 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +mongodb: + '3.3.5': + full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6': + full_name: 'MongoDB 3.2.6 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:09,172 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,172 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,172 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,172 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,172 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 11:12:09,172 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,172 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,187 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +ms-mbsa: + '2.3.2211': + + installer: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + uninstaller: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + + full_name: 'Microsoft Baseline Security Analyzer 2.3' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:09,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,187 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,187 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,187 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,187 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 11:12:09,187 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,203 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.015663623809814453 +2020-03-06 11:12:09,203 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +ms-vcpp-2005-atl-redist_x64: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,203 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,203 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,203 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,203 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 11:12:09,219 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,219 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,219 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +ms-vcpp-2005-atl-redist_x86: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,219 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,219 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,219 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,234 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,234 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 11:12:09,234 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,234 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,234 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +ms-vcpp-2005-redist_x64: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,234 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,234 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,250 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,250 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 11:12:09,250 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,250 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,250 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +ms-vcpp-2005-redist_x86: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,250 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,266 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,266 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,266 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 11:12:09,266 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,266 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,266 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +ms-vcpp-2005-sp1-mfc-redist_x64: + '8.0.61000': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,266 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,266 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,282 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,282 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,282 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 11:12:09,282 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,282 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,282 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +ms-vcpp-2005-sp1-mfc-redist_x86: + '8.0.61001': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,297 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.014536380767822266 +2020-03-06 11:12:09,297 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,297 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,297 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 11:12:09,297 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,297 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,313 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +ms-vcpp-2005-sp1-redist_x64: + '8.0.59192': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,313 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,313 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,313 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,313 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 11:12:09,313 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,328 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.015668869018554688 +2020-03-06 11:12:09,328 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +ms-vcpp-2005-sp1-redist_x86: + '8.0.59193': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,344 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.015655517578125 +2020-03-06 11:12:09,344 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,344 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,344 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 11:12:09,344 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,344 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,360 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +ms-vcpp-2008-redist_x64: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' + installer: 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,360 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,360 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,360 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,360 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 11:12:09,375 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,375 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,375 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +ms-vcpp-2008-redist_x86: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' + installer: 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,375 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,375 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,392 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,392 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,392 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 11:12:09,392 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,392 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,392 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +ms-vcpp-2008-sp1-atl-redist_x64: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,392 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,407 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.014846324920654297 +2020-03-06 11:12:09,407 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,407 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,407 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 11:12:09,407 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,407 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,407 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +ms-vcpp-2008-sp1-atl-redist_x86: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,407 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,422 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.015656709671020508 +2020-03-06 11:12:09,422 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,422 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,422 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 11:12:09,422 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,422 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,422 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +ms-vcpp-2008-sp1-mfc-redist_x64: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,438 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,438 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,438 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,438 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,454 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 11:12:09,454 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,454 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,454 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +ms-vcpp-2008-sp1-mfc-redist_x86: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,454 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,454 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,469 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,469 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,469 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 11:12:09,469 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,469 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,469 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +ms-vcpp-2010-sp1-mfc-redist_x64: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,469 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,485 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,485 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,485 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 11:12:09,485 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,485 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,485 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +ms-vcpp-2010-sp1-mfc-redist_x86: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,501 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015659809112548828 +2020-03-06 11:12:09,501 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,501 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,501 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 11:12:09,501 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,501 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,501 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +ms-vcpp-2012-redist_x64: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ProgramData%\Package Cache\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\vcredist_x64.exe' + uninstall_flags: '/quiet /uninstall /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,501 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,501 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,516 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,516 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,516 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 11:12:09,516 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,516 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,516 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +ms-vcpp-2012-redist_x86: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: '"%ProgramData%\Package Cache\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\vcredist_x86.exe"' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,533 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,533 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0164487361907959 +2020-03-06 11:12:09,548 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,548 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,548 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 11:12:09,548 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,548 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,548 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +ms-vcpp-2013-redist_x64: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,548 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,563 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.01565718650817871 +2020-03-06 11:12:09,563 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,563 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,563 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 11:12:09,563 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,563 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,563 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +ms-vcpp-2013-redist_x86: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,579 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,579 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,579 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,579 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,579 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 11:12:09,579 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,595 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.015657663345336914 +2020-03-06 11:12:09,595 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +ms-vcpp-2015-build-tools: + '14.0.25420.1': + full_name: 'Microsoft Visual C++ Build Tools' + installer: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + install_flags: '/Q /Silent /NoRestart' + uninstaller: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + uninstall_flags: '/Q /U /Silent /NoRestart' + locale: en_US + reboot: False + +2020-03-06 11:12:09,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,595 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,595 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,595 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,595 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 11:12:09,610 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,610 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,610 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +ms-vcpp-2015-redist_x64: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} + # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} + +2020-03-06 11:12:09,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,610 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,610 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,626 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,626 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 11:12:09,626 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,626 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,626 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +ms-vcpp-2015-redist_x86: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} + +2020-03-06 11:12:09,626 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,642 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.016460418701171875 +2020-03-06 11:12:09,642 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,642 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,642 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 11:12:09,642 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,657 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.014861106872558594 +2020-03-06 11:12:09,657 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +ms-vcpp-2017-redist_x64: + '14.20.27508.1': + full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + '14.20.27508': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,657 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,657 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,657 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,657 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 11:12:09,657 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,673 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.01566004753112793 +2020-03-06 11:12:09,673 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +ms-vcpp-2017-redist_x86: + '14.11.25325.0': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' + installer: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:09,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,673 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,673 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,673 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,673 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 11:12:09,673 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,689 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.015659809112548828 +2020-03-06 11:12:09,689 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: + + + + +mucommander: + + '0.9.2': + full_name: 'muCommander (remove only)' + installer: 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe' + uninstaller: '%PROGRAMFILES(x86)%\muCommander\uninstaller.exe' + install_flags: '/S' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 11:12:09,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,689 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,704 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,704 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,704 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 11:12:09,704 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,721 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.016455888748168945 +2020-03-06 11:12:09,721 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +mysql-essential: + '5.1.73': + full_name: 'MySQL Server 5.1' + + installer: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:09,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,721 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,721 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,721 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,721 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 11:12:09,721 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,735 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.014867544174194336 +2020-03-06 11:12:09,735 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +mysql-installer-community: + '1.4.3.0': + full_name: 'MySQL Installer - Community' + installer: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Read for MySQL Server 5.6.23.0 Community installation instructions: +# https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html +# https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html + +2020-03-06 11:12:09,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,735 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,735 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,735 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,735 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 11:12:09,735 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,735 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,751 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +mysql-workbench-community: + + '8.0.15': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.14': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.13': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + +2020-03-06 11:12:09,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,751 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,751 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,751 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,751 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 11:12:09,751 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,751 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,751 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +never10: + '1.3': + full_name: 'Never 10 (GRC)' + installer: 'https://www.grc.com/files/never10.exe' + install_flags: 'update delete disable' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False +# download it from https://www.grc.com/never10.htm + +2020-03-06 11:12:09,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,767 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,767 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,767 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,767 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 11:12:09,767 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,767 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,782 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +# Please note that per +# https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows +# the MSI uninstall does not remove files or settings, +# and the service must be stopped beforehand. +# +# So this uninstall is not going to work. + +newrelic-infra: + + '1.0.279': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.292': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.296': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.301': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.311': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.316': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.323': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.336': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.338': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.341': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.673': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.677': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.682': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.690': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.703': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:09,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,782 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,782 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,782 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,782 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 11:12:09,798 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,798 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,798 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +nextcloud-client: + + '2.2.3.4': + full_name: 'Nextcloud Client 2.2.3.4' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.2.4.2': + full_name: 'Nextcloud Client 2.2.4.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.1.8': + full_name: 'Nextcloud Client 2.3.1.8' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.2.1': + full_name: 'Nextcloud Client 2.3.2.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.3.1': + full_name: 'Nextcloud Client 2.3.3.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.0': + full_name: 'Nextcloud Client 2.5.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.1': + full_name: 'Nextcloud Client 2.5.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.2': + full_name: 'Nextcloud Client 2.5.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.3': + full_name: 'Nextcloud Client 2.5.3' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.6.0': + full_name: 'Nextcloud Client 2.6.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 11:12:09,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,798 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,814 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,814 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,814 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 11:12:09,814 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,814 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,814 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: + + +# just 32-bit x86 installer available + + + +nmap: + + '7.70': + full_name: 'Nmap 7.70' + installer: 'https://nmap.org/dist/nmap-7.70-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '7.60': + full_name: 'Nmap 7.60' + installer: 'https://nmap.org/dist/nmap-7.60-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:09,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,829 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,829 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,829 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,829 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 11:12:09,829 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,829 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,845 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +node.js-lts: + + '12.13.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.17.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.11.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.9.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:09,892 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,892 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.04699206352233887 +2020-03-06 11:12:09,892 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,892 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,908 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 11:12:09,908 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,908 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,908 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +node.js: + + '13.1.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.6.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '11.14.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '9.11.2': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + uninstaller: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.10.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:09,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,908 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,923 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,923 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,923 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 11:12:09,923 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,923 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,923 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +nomacs: + + '3.8.0': + full_name: 'nomacs - Image Lounge' + installer: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:09,923 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,923 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,939 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,939 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,939 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 11:12:09,939 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,939 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:09,956 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +# just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. + + + +npp: + + + '7.7.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.9': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.8': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.5': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.4.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +# the 64-bit installer is available from: +# https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe + +2020-03-06 11:12:09,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,956 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,956 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:09,970 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:09,970 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 11:12:09,970 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:09,986 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.01567697525024414 +2020-03-06 11:12:09,986 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +nsclient: + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2039': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2029': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1046': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1044': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.0062': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.23': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.19': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.143': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.88': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:09,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:09,986 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:09,986 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,003 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,003 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 11:12:10,003 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,003 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,017 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +# Define versions + + +nsis: + + + '2.51': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.50': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.49': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.48': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.47': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.46': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.03': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02.1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.01': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0b2': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0b1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:10,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,017 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,017 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,017 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,033 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 11:12:10,033 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,033 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,033 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +# Install Meinberg NTP daemon for Windows +# Note: To do a silent installation, this installer needs a setup file named +# setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. +# The file is documented at +# https://www.meinberg.de/german/sw/readme-ntpinstaller.htm#unattended + + + +ntp: + + '4.2.8p13': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p12': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p11': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,049 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0156557559967041 +2020-03-06 11:12:10,049 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,049 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,049 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 11:12:10,064 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,064 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,064 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: + + + +nunit-console: + + + '3.8.0': + full_name: 'NUnit Console 3.8.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.9.0': + full_name: 'NUnit Console 3.9.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.7.0': + full_name: 'NUnit Console 3.7.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 11:12:10,064 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:12:10,080 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.015664339065551758 +2020-03-06 11:12:10,080 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,080 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,080 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 11:12:10,080 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,080 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,080 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +nxlog: + '2.10.2150': + full_name: 'NXLog-CE' + installer: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:10,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,096 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,096 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,096 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,096 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 11:12:10,096 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,111 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.015655517578125 +2020-03-06 11:12:10,111 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +octopus-tentacle: + 'latest': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://octopus.com/downloads/latest/OctopusTentacle64' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://octopus.com/downloads/latest/OctopusTentacle64' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.17': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.16': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:10,111 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,127 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.015657663345336914 +2020-03-06 11:12:10,127 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,127 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,127 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 11:12:10,127 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,143 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.015669584274291992 +2020-03-06 11:12:10,143 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +# Source: http://openlp.org/ +# just 32-bit x86 installer available + + + + +openlp: + + '2.4.6': + full_name: 'OpenLP 2.4.6' + installer: 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'OpenLP 2.2.1' + installer: 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,143 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,143 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,143 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,158 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 11:12:10,158 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,158 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,158 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +openoffice: + '4.1.2': + full_name: 'OpenOffice 4.1.2' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart' + msiexec: False + locale: en_US + reboot: False + '4.1.1': + full_name: 'OpenOffice 4.1.1' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart' + msiexec: False + locale: en_US + reboot: False +# +# for other languages replace the two occurrences of 'en-US' +# in the download URL with your local two or four letter code below: +# +# 'el', 'en-GB', 'es', 'eu', 'ca', +# 'ca-XR', 'ca-XV', 'cs', 'ru', 'zh-CN', +# 'zh-TW', 'vi', 'ta', 'th', 'tr', 'sk', +# 'sl', 'sr', 'sv', 'pl', 'pt', 'pt-BR', +# 'nb', 'nl', 'lt', 'km', 'ko', 'ja', +# 'it', 'he', 'hi', 'hu', 'gd', 'gl', +# 'fi', 'fr', 'da', 'de', 'bg', 'ast' +# + +2020-03-06 11:12:10,158 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,158 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,158 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,174 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,174 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 11:12:10,174 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,190 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.015671730041503906 +2020-03-06 11:12:10,190 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +openvpn: + +# Combined installer since v2.4+ so no arch needed + + '2.4.7-I603': + full_name: 'OpenVPN 2.4.7-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I603.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.6-I602': + full_name: 'OpenVPN 2.4.6-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.5-I601': + full_name: 'OpenVPN 2.4.5-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.4-I601': + full_name: 'OpenVPN 2.4.4-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I602': + full_name: 'OpenVPN 2.4.3-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I601': + full_name: 'OpenVPN 2.4.3-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + + '2.3.17-I601': + full_name: 'OpenVPN 2.3.17-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.12-I601': + full_name: 'OpenVPN 2.3.12-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.11-I601': + full_name: 'OpenVPN 2.3.11-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.10-I603': + full_name: 'OpenVPN 2.3.10-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.8-I601': + full_name: 'OpenVPN 2.3.8-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.6-I601': + full_name: 'OpenVPN 2.3.6-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# https://chocolatey.org/packages/openvpn +# Install with the following options: +# /SELECTSHORTCUTS=1 - create the start menu shortcuts +# /SELECTOPENVPN=1 - OpenVPN itself +# /SELECTSERVICE=1 - install the OpenVPN service +# /SELECTTAP=1 - install the TAP device driver +# /SELECTOPENVPNGUI=1 - install the default OpenVPN GUI +# /SELECTASSOCIATIONS=1 - associate with .ovpn files +# /SELECTOPENSSLUTILITIES=1 - install the utilities for generating public-private key pairs +# /SELECTEASYRSA=1 - install the RSA X509 certificate management scripts +# /SELECTPATH=1 - add openvpn.exe in PATH +# /SELECTOPENSSLDLLS=1 - dependencies - OpenSSL DLL's +# /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's +# /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's + +2020-03-06 11:12:10,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('openvpn', OrderedDict([('2.4.7-I603', OrderedDict([('full_name', 'OpenVPN 2.4.7-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I603.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,190 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,190 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,205 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,205 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 11:12:10,205 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,205 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,205 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +# Performant endpoint visibility https://osquery.io/ + + + +osquery: + + '3.3.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.3.0': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.6': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.4': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '2.11.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 11:12:10,205 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:12:10,221 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.015672683715820312 +2020-03-06 11:12:10,221 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,221 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,221 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 11:12:10,221 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,237 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0156707763671875 +2020-03-06 11:12:10,237 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +# just 32-bit x86 installer available + + + + + + + + + +ossec-agent: + + + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:10,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,237 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,237 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,252 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,252 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 11:12:10,252 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,268 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.015666484832763672 +2020-03-06 11:12:10,268 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +owncloud: + + + + + '2.2.4.6408': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2.6192': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1.6146': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0.6076': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.1.1.5837': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,268 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,268 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,268 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,268 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 11:12:10,284 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,284 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,284 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +pandoc: + '1.17.0.2': + full_name: 'Pandoc 1.17.0.2' + installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:10,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,284 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,284 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,284 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,284 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 11:12:10,299 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,299 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,299 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +parallels-client-15: + '15.0.3869': + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + uninstaller: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# The latest RAS clients can be downloaded for FREE from: +# https://www.parallels.com/uk/products/ras/download/links/ + +2020-03-06 11:12:10,299 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,299 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,299 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,325 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,325 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 11:12:10,325 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,331 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.005705595016479492 +2020-03-06 11:12:10,331 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +pass4win: + '1.2.3.7': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '1.2.1.9': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:10,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,331 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,346 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,346 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,346 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 11:12:10,346 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,346 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,346 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +passware-kit-agent: + '13.1.7657': + full_name: 'Passware Kit Agent (64-bit)' + installer: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:10,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,346 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,362 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,362 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,362 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 11:12:10,362 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,362 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,362 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +passware-kit-forensic: + '13.1.7657': + full_name: 'Passware Kit Forensic (64-bit)' + installer: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:10,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,378 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.01581740379333496 +2020-03-06 11:12:10,378 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,378 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,378 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 11:12:10,378 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,378 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,378 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +# Source: https://patchmypc.net/ +patchmypc-free: + '3.0.1.1': + full_name: 'PatchMyPC' + installer: 'https://patchmypc.net/freeupdater/PatchMyPC.exe' + install_flags: | + ' & cmd /c taskkill /F /IM PatchMyPC.exe & + xcopy /q /c /r /y "c:\salt\var\cache\salt\minion\extrn_files\base\patchmypc.net\freeupdater\PatchMyPC.exe" "%SystemRoot%" & + exit 0' + uninstaller: 'cmd' + uninstall_flags: | + '/c taskkill /F /IM PatchMyPC.exe & + del /q /f "%SystemRoot%"\PatchMyPC.exe & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:10,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,393 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,393 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,393 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,393 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 11:12:10,393 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,410 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.01658773422241211 +2020-03-06 11:12:10,410 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +pdf24creator: + + '8.8.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.5.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +# Source: https://en.pdf24.org/ +# Packagin info Source: https://chocolatey.org/packages/pdf24 + +2020-03-06 11:12:10,410 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,410 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,410 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,410 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,425 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 11:12:10,425 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,425 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,425 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +# just 32-bit x86 installer available + + + +pdfcreator: + '2.5.0': + full_name: 'PDFCreator' + installer: 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe' + install_flags: '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-' + uninstaller: '%ProgramFiles(x86)%\PDFCreator\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:10,425 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,425 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,440 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,440 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,440 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 11:12:10,440 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,440 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,440 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +peazip: + '6.0.0': + + full_name: 'PeaZip 6.0.0 (WIN64)' + installer: 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\PeaZip\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:10,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,440 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,456 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,456 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,456 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 11:12:10,456 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,456 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,472 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: + + + + +pgadmin4: + + '2.1': + full_name: 'pgAdmin 4 version 2.1' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0': + full_name: 'pgAdmin 4 version 2.0' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6': + full_name: 'pgAdmin 4 version 1.6' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v1\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,472 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,472 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,472 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,472 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 11:12:10,472 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,487 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.01566481590270996 +2020-03-06 11:12:10,487 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +pgina: + '3.1.8.0': + full_name: 'pGina v3.1.8.0' + installer: 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe' + install_flags: '/silent ' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:10,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,487 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,487 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,487 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,487 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 11:12:10,487 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,503 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.015658140182495117 +2020-03-06 11:12:10,503 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: + +# just 32-bit x86 installer available + + + +pidgin: + + '2.12.0': + full_name: 'Pidgin' + installer: 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Pidgin\pidgin-uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,503 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,503 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,503 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,503 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 11:12:10,503 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,519 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.015666723251342773 +2020-03-06 11:12:10,519 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +# Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: +# salt mid pkg.install postgresql version='"9.6"' + + + +postgresql: + '9.6': + full_name: 'PostgreSQL 9.6 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.6\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.5': + full_name: 'PostgreSQL 9.5 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.5\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.4': + full_name: 'PostgreSQL 9.4 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.4\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.3': + full_name: 'PostgreSQL 9.3 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.3\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + + +2020-03-06 11:12:10,535 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:12:10,535 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,535 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,535 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,535 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 11:12:10,535 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,550 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.014858722686767578 +2020-03-06 11:12:10,550 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +### NOTE: You must accept the PowerBI Desktop EULA by setting the +### Pillar key `powerbi:desktop:accept_eula` to `True` in order to +### install this package. You can find a copy of the EULA at +### https://powerbi.microsoft.com/en-us/desktop-eula/. + +powerbi-desktop: + ## version 4.0.1 - https://www.microsoft.com/en-us/download/details.aspx?id=45331 + '2.59.5135.421': &powerbi-desktop + full_name: + "Microsoft PowerBI Desktop (x64)" + installer: &msi401 + "https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi" + install_flags: &flags + /qn + /norestart + ACCEPT_EULA=0 + uninstaller: *msi401 + uninstall_flags: *flags + msiexec: True + reboot: False + +2020-03-06 11:12:10,550 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:12:10,550 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,550 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,565 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,565 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 11:12:10,565 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,565 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,565 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +#PowerShell Core https://github.com/PowerShell/PowerShell + + + +powershell-core: + + '6.1.3.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.2.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.1.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.0.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.0.5.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 11:12:10,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:12:10,581 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.015655994415283203 +2020-03-06 11:12:10,581 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,581 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,581 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 11:12:10,581 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,598 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.01665949821472168 +2020-03-06 11:12:10,598 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +# Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems +# WMI Exporter: https://github.com/martinlindhe/wmi_exporter +# Prometheus Monitoring: https://prometheus.io/ + +prometheus-wmi-exporter: + + '0.9.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.7.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.6.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.5.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.4': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:10,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,598 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,598 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,598 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,612 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 11:12:10,612 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,612 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,612 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +putty: + + '0.73.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + + full_name: 'PuTTY release 0.73 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.72.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + + full_name: 'PuTTY release 0.72 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.71.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + + full_name: 'PuTTY release 0.71 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.70.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + + full_name: 'PuTTY release 0.70 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.69.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + + full_name: 'PuTTY release 0.69 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.68.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + + full_name: 'PuTTY release 0.68 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + + + '0.67': + full_name: 'PuTTY release 0.67' + installer: 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.66': + full_name: 'PuTTY release 0.66' + installer: 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.65': + full_name: 'PuTTY release 0.65' + installer: 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.64': + full_name: 'PuTTY release 0.64' + installer: 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,628 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,628 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.015652894973754883 +2020-03-06 11:12:10,628 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,628 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,628 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 11:12:10,628 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,644 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.015659093856811523 +2020-03-06 11:12:10,644 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +python2_x64: + + + + + '2.7.1150': + full_name: 'Python 2.7.1 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:10,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,644 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,659 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,659 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,659 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 11:12:10,659 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,659 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,659 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +python2_x86: + + + + + '2.7.1150': + full_name: 'Python 2.7.1' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:10,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,675 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.01565694808959961 +2020-03-06 11:12:10,675 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,675 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,675 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 11:12:10,675 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,692 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.016641616821289062 +2020-03-06 11:12:10,692 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: + + +python3_x64: + + '3.8.150.0': + full_name: 'Python 3.8.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.4150.0': + full_name: 'Python 3.7.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:10,692 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,692 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,692 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,706 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,706 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 11:12:10,706 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,706 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,706 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: + + +python3_x86: + + '3.7.4150.0': + full_name: 'Python 3.7.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:10,722 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,722 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,722 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,722 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,722 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 11:12:10,722 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,738 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.015659570693969727 +2020-03-06 11:12:10,738 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +qemu: + '2018.05.19': + full_name: 'QEMU' + installer: 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe' + uninstaller: '%PROGRAMFILES%\qemu\qemu-uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:10,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,738 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,738 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,738 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,738 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 11:12:10,753 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,753 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,753 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: + + + + +queueexplorerpro: + '4.1.5': + full_name: 'QueueExplorer Professional 4.1.5' + installer: 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\QueueExplorer Professional\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:10,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,753 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,769 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,769 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,769 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 11:12:10,769 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,769 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,785 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +quicktime: + '7.79.80.95': + full_name: 'QuickTime 7' + #installer: 'https://secure-appldnld.apple.com/quicktime/031-27600-20150820-F20FB1EF-6710-46BD-99B3-7DCF1253B310/QuickTimeInstaller.exe' + installer: 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe' + + uninstall_flags: | + '/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart & + msiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart & + msiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart & + msiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart & + exit 0' + + install_flags: '/quiet /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + # the above uninstalls: + # Apple Software Update v. 2.1.4.131 {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} + # Apple Application Support v. 4.1.2 {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} + # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} + # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} + +2020-03-06 11:12:10,785 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,785 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,785 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,785 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,785 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 11:12:10,800 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,800 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,800 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: + +rabbitmq: + + '3.6.9': + full_name: 'RabbitMQ Server 3.6.9' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.7.7': + full_name: 'RabbitMQ Server 3.7.7' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,800 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,817 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,817 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,817 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 11:12:10,817 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,817 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,832 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +rakudo-star_x86: + '1.0.0': + full_name: 'Rakudo Star 2016.01' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:10,832 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,832 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,832 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,832 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,832 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 11:12:10,847 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,847 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,847 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +rakudo-star_x64: + '1.0.0': + full_name: 'Rakudo Star 2016.04' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:10,847 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,847 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,863 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,863 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,863 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 11:12:10,863 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,879 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.015645265579223633 +2020-03-06 11:12:10,879 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +rasclient: + + '16': + + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + uninstaller: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:10,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,879 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,879 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,894 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,894 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 11:12:10,894 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,894 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,894 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +rdcman: + '2.7.14060': + full_name: 'Remote Desktop Connection Manager' + installer: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:10,894 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,910 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0156404972076416 +2020-03-06 11:12:10,910 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,926 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,926 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 11:12:10,926 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,926 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,926 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: + + +rocketchat: + + '2.13.1': + full_name: 'Rocket.Chat+ 2.13.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.13.0': + full_name: 'Rocket.Chat+ 2.13.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.12.0': + full_name: 'Rocket.Chat+ 2.12.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.5': + full_name: 'Rocket.Chat+ 2.10.5' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.4': + full_name: 'Rocket.Chat+ 2.10.4' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.3': + full_name: 'Rocket.Chat+ 2.10.3' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.2': + full_name: 'Rocket.Chat+ 2.10.2' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.1': + full_name: 'Rocket.Chat+ 2.10.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.9.0': + full_name: 'Rocket.Chat+ 2.9.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,941 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,941 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.015660524368286133 +2020-03-06 11:12:10,941 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,941 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,941 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 11:12:10,941 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,957 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.015648841857910156 +2020-03-06 11:12:10,957 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +rubyinstaller_x64: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,957 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,957 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,957 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,957 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,973 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 11:12:10,973 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:10,973 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:10,973 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +rubyinstaller_x86: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '1.9.3-p551': + full_name: 'Ruby 1.9.3-p551' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby193\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:10,973 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:10,988 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:10,988 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:10,988 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:10,988 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 11:12:10,988 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,004 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.015659570693969727 +2020-03-06 11:12:11,004 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Salt added support for Py3 with 2017.7.0. As a result, the package names have +# changed to denote the Python version included with the install. So add new +# versions of the 2017.7 branch here. Versions from older branches will be +# added below. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion: + + '3000': + full_name: 'Salt Minion 3000' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Add versions from older branches here: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + '2016.11.10': + full_name: 'Salt Minion 2016.11.10' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.9': + full_name: 'Salt Minion 2016.11.9' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.8': + full_name: 'Salt Minion 2016.11.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.7': + full_name: 'Salt Minion 2016.11.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.6': + full_name: 'Salt Minion 2016.11.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.5': + full_name: 'Salt Minion 2016.11.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.4': + full_name: 'Salt Minion 2016.11.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.3': + full_name: 'Salt Minion 2016.11.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.2': + full_name: 'Salt Minion 2016.11.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.1': + full_name: 'Salt Minion 2016.11.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.0': + full_name: 'Salt Minion 2016.11.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 11:12:11,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 11:12:11,020 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.015660762786865234 +2020-03-06 11:12:11,020 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,020 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,035 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 11:12:11,035 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,035 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,035 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion-py3: + + '3000': + full_name: 'Salt Minion 3000 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 11:12:11,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 11:12:11,051 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.01566600799560547 +2020-03-06 11:12:11,051 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,051 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,051 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 11:12:11,067 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,067 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,067 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +sandboxie: + '4.20': + + full_name: 'Sandboxie 4.20 (64-bit)' + installer: 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe' + uninstaller: 'C:\Windows\Installer\SandboxieInstall64.exe' + + install_flags: '/S' + uninstall_flags: '/remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,082 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.015709400177001953 +2020-03-06 11:12:11,082 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,098 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,098 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 11:12:11,098 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,098 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,098 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +scaleout: + latest: + + full_name: 'ScaleOut StateServer x64 Edition' + installer: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + uninstaller: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:11,098 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,098 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,115 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,115 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,115 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 11:12:11,115 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,115 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,129 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +# just 32-bit x86 installer available + + + +secunia.psi: + '3.0.0.10004': + full_name: 'Secunia PSI' + installer: 'http://secunia.com/PSISetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Secunia\PSI\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,129 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,129 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,129 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,129 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 11:12:11,129 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,145 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.015691041946411133 +2020-03-06 11:12:11,145 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: + + + + + + +sensu: + + '1.4.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.4.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.4.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.0.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.0.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.28.4': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.28.4-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.28.4-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.5': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.5-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.5-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.25.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.25.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.25.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:11,160 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,160 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,160 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,176 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,176 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 11:12:11,176 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,176 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,176 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +sharpdevelop: + '5.1.5134': + full_name: 'SharpDevelop 5.1 RC' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '4.4.9749': + full_name: 'SharpDevelop 4.4' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6466': + full_name: 'SharpDevelop 3.2.1' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.2.2648': + full_name: 'SharpDevelop 2.2' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:11,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,176 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,192 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,192 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,192 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 11:12:11,192 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,192 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,192 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +# just 32-bit x86 installer available + + + +skitch: + '2.3.2.176': + full_name: 'Skitch' + installer: 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe' + install_flags: '--mode unattended' + uninstaller: '%ProgramFiles(x86)%\Evernote\Skitch\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,207 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,207 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,207 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,207 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,207 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 11:12:11,207 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,223 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.01566481590270996 +2020-03-06 11:12:11,223 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +skype-msi: + '7.41.101': + full_name: 'Skypeâ„¢ 7.41' + installer: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.151': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.103': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# you can always get latest msi from: +# http://www.skype.com/go/getskype-msi (but version number keeps increasing) +# +# for explanation of silent switches read: +# http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 +# you can also check microsite http://skype.techygeekshome.info/ + +2020-03-06 11:12:11,223 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,223 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,223 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,223 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,223 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 11:12:11,239 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,239 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,239 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +# just 32-bit x86 installer available + + + + +skype: + '8.31': + full_name: 'Skype version 8.31' + installer: 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe' + install_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\Microsoft\Skype for Desktop\unins000.exe' + uninstall_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:11,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,239 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,239 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,254 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,254 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 11:12:11,254 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,254 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,254 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +#MSI machine-wide deployment package +#The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. +#It is multi-client-capable, meaning that it can be used by multiple users on one machine, +#keeping their profiles separately in %ROAMINGAPPDATA%. Using this method, Slack will not receive automatic updates. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-machine-msi: + + '3.3.7.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.6.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:11,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,270 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.015649795532226562 +2020-03-06 11:12:11,270 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,270 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,270 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 11:12:11,270 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,286 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.015657424926757812 +2020-03-06 11:12:11,286 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +#MSI for per-user deployment package +#The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. +#The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-user-msi: + latest: + full_name: 'Slack Machine-Wide Installer' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:11,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,286 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,286 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,286 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,286 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 11:12:11,301 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,301 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,301 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +slack: + 3.4.0: + full_name: Slack + installer: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + install_flags: '/qn /norestart' + uninstaller: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 11:12:11,301 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:12:11,301 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,301 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,317 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,317 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 11:12:11,317 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,333 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.015656471252441406 +2020-03-06 11:12:11,333 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +# just 32-bit x86 installer available + + + +smartmontools: + '6.4 2015-06-04 r4109 (sf-6.4-1)': + full_name: 'smartmontools' + installer: 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\smartmontools\uninst-smartmontools.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,333 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,333 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,333 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,348 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 11:12:11,348 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,348 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,348 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +# just 32-bit x86 installer available + + + +snmptools: + 'Not Found': + full_name: 'SnmpTools 2' + installer: 'https://erwan.labalec.fr/snmptools/snmptools32.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\SnmpTools\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,348 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,364 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.01566338539123535 +2020-03-06 11:12:11,364 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,364 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,364 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 11:12:11,364 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,380 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.015652894973754883 +2020-03-06 11:12:11,380 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: + +soapui: + + '5.4.0': + full_name: 'SoapUI 5.4.0 5.4.0' + + installer: 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe' + + install_flags: '-q' + uninstaller: '%ProgramFiles%\SmartBear\SoapUI-5.4.0\uninstall.exe' + uninstall_flags: '-q' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:11,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,380 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,380 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,396 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,396 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 11:12:11,396 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,396 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,411 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +# just 32-bit x86 installer available + + + +# Source: http://software.informer.com/ +software-informer: + 'Not Found': + full_name: 'Software Informer' + installer: 'https://files.informer.com/siinst.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + uninstaller: '%ProgramFiles(x86)%\Software Informer\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,411 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,411 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,411 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,411 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 11:12:11,427 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,427 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,427 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +sourcetree: + + '2.3.1.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.4.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.11.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.2.5': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0.20.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.10.23.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + + + '1.9.13.7': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.9.20': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.6.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.8.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.7.0.32509': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6.25': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.5.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.4.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.3.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.2.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.1.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.0.8': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '0.9.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:11,442 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,442 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.01567697525024414 +2020-03-06 11:12:11,442 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,442 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,442 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 11:12:11,458 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,458 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,458 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +# just 32-bit x86 installer available + + + +spybot-anti-beacon: + '1.6': + full_name: 'Spybot Anti-Beacon' + installer: 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot Anti-Beacon\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,458 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,474 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,474 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,474 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 11:12:11,474 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,489 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.015653371810913086 +2020-03-06 11:12:11,505 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.safer-networking.org/ +spybot: + '2.4': + full_name: 'Spybot - Search & Destroy' + installer: 'http://spybotupdates.com/files/spybot-2.4.exe' + install_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot - Search & Destroy 2\unins000.exe' + uninstall_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + msiexec: False + locale: en_US + reboot: False +# alternative download URLs +# http://www.spybotupdates.biz/files/spybot-2.4.exe +# http://spybot-mirror.com/files/spybot-2.4.exe + +2020-03-06 11:12:11,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,505 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,505 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,505 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,521 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 11:12:11,521 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,521 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,521 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +sscserv-free: + + '3.6.1': + full_name: 'SSC Serv 3.6.1 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '3.5.0': + full_name: 'SSC Serv 3.5.0 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:11,521 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,536 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.015696287155151367 +2020-03-06 11:12:11,536 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,536 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,536 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 11:12:11,552 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,552 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,552 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +steam: + latest: + full_name: 'Steam' + installer: 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe' + install_flags: '/S' + uninstaller: + "C:\\Program Files (x86)\\Steam\\uninstaller.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 11:12:11,569 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,569 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,569 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,569 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,583 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 11:12:11,583 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,583 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,583 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +stellarium: + '0.16.1': + full_name: 'Stellarium 0.16.1' + + installer: 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe' + + install_flags: '/silent' + uninstaller: '%ProgramFiles%\Stellarium\unins000.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,599 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.01563858985900879 +2020-03-06 11:12:11,599 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,599 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,615 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 11:12:11,615 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,615 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,615 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +strawberryperl_x64: + + '5.26.1001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:11,615 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,630 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.015687942504882812 +2020-03-06 11:12:11,630 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,630 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,630 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 11:12:11,630 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,646 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.015659570693969727 +2020-03-06 11:12:11,646 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +strawberryperl_x86: + + '5.26.1001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:11,646 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,646 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,646 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,662 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,662 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 11:12:11,662 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,662 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,662 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +# just 32-bit x86 installer available + + + +stunnel: + '5.30': + full_name: 'stunnel installed for AllUsers' + installer: 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\stunnel\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,662 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,662 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,693 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,693 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,693 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 11:12:11,693 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,693 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,693 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +subinacl: + '5.2.3790.1164': + full_name: 'Windows Resource Kit Tools - SubInAcl.exe' + installer: 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:11,693 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,708 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.015648365020751953 +2020-03-06 11:12:11,708 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,708 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,708 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 11:12:11,708 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,724 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.01565694808959961 +2020-03-06 11:12:11,724 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: + + + +sumatrapdf: + '3.1.2': + full_name: 'SumatraPDF' + installer: 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe' + install_flags: '/s /opt' + uninstaller: '%ProgramFiles%\SumatraPDF\uninstall.exe' + uninstall_flags: '/s' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,724 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,724 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,740 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,740 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 11:12:11,740 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,740 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,740 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +svn: + '1.8.13': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.8.11': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:11,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,755 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0156552791595459 +2020-03-06 11:12:11,755 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,755 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,755 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 11:12:11,755 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,771 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.01565241813659668 +2020-03-06 11:12:11,771 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer: + latest: + full_name: 'TeamViewer 14' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,771 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,771 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,787 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,787 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 11:12:11,787 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,787 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,787 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer_host: + latest: + full_name: 'TeamViewer 14 Host' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,787 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,802 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.015659570693969727 +2020-03-06 11:12:11,802 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,802 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,802 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 11:12:11,802 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,818 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.015662431716918945 +2020-03-06 11:12:11,818 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +# just 32-bit x86 installer available + + + +teracopy: + 'Not Found': + full_name: 'TeraCopy 2.3' + installer: 'http://storage.googleapis.com/codesector/teracopy.exe' + install_flags: | + '/SP- /verysilent /suppressmsgboxes /norestart & + reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeraCopy_is1 /v DisplayVersion /d 2.3 & + exit 0' + uninstaller: '%ProgramFiles(x86)%\TeraCopy\unins000.exe' + uninstall_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,818 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,818 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,818 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,818 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 11:12:11,834 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,834 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,834 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +# just 32-bit x86 installer available + + + +texmaker: + 'Not Found': + full_name: 'Texmaker' + installer: 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Texmaker\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,834 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,834 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,849 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,849 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,849 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 11:12:11,849 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,849 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,849 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: + +texniccenter: + '2.02 Stable': + full_name: 'TeXnicCenter Version 2.02 Stable' + + installer: 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES%\TeXnicCenter\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,865 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,865 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,865 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,865 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,865 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 11:12:11,881 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,881 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,881 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +# just 32-bit x86 installer available + + + +texstudio: + '2.10.8': + full_name: 'TeXstudio 2.10.8' + installer: 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXstudio\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,881 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,896 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.015671491622924805 +2020-03-06 11:12:11,896 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,896 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,896 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 11:12:11,896 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,896 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:11,913 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +# just 32-bit x86 installer available + + + +texworks: + '0.6.1': + full_name: 'TeXworks 0.6.1' + installer: 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXworks\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:11,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,913 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,913 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,928 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,928 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 11:12:11,928 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,943 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.015655994415283203 +2020-03-06 11:12:11,943 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +# just 32-bit x86 installer available + + + +thunderbird: + + '60.6.1': + full_name: 'Mozilla Thunderbird 60.6.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Thunderbird 60.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.3': + full_name: 'Mozilla Thunderbird 60.5.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Thunderbird 60.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Thunderbird 60.5.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Thunderbird 60.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Thunderbird 60.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.3': + full_name: 'Mozilla Thunderbird 60.3.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.2': + full_name: 'Mozilla Thunderbird 60.3.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.1': + full_name: 'Mozilla Thunderbird 60.3.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Thunderbird 60.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Thunderbird 60.2.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Thunderbird 60.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.1': + full_name: 'Mozilla Thunderbird 52.9.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Thunderbird 52.9.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Thunderbird 52.8.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Thunderbird 52.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Thunderbird 52.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Thunderbird 52.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Thunderbird 45.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Thunderbird 45.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Thunderbird 38.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Thunderbird 38.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Thunderbird 38.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Thunderbird 38.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.0': + full_name: 'Mozilla Thunderbird 38.2.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.1.0': + full_name: 'Mozilla Thunderbird 38.1.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:11,943 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,943 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:11,959 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:11,975 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:11,975 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 11:12:11,975 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:11,990 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.015651941299438477 +2020-03-06 11:12:11,990 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +tightvnc: + + + '2.8.27.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.23.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.11.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.8.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.5.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.2.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.7.10.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:11,990 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:11,990 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,006 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,006 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,006 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 11:12:12,022 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,022 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,022 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +todotxt.net: + 'Not Found': + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + full_name: 'todotxt.net v3.2.0.0' + installer: 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Hughesoft\todotxt.net\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,022 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,022 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,037 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,037 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 11:12:12,037 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,037 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,037 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +todour: + '2.03': + full_name: 'Todour version 2.03' + installer: 'https://nerdur.com/Todour-2.03.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Todour\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,037 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,037 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,053 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,053 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,053 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 11:12:12,053 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,053 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,053 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +# just 32-bit x86 installer available + + + +# Source: http://wiki.bazaar.canonical.com/ +tortoise-bzr: + '2.5.1-1': + full_name: 'Bazaar 2.5.1' + installer: 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Bazaar\uninst000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,069 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.01564764976501465 +2020-03-06 11:12:12,069 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,069 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,069 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 11:12:12,069 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,069 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,085 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +# Source: https://tortoisegit.org/ +tortoise-git: + + '2.8.0.0': + + full_name: 'TortoiseGit 2.8.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.7.0.0': + + full_name: 'TortoiseGit 2.7.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.6.0.0': + + full_name: 'TortoiseGit 2.6.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.5.0.0': + + full_name: 'TortoiseGit 2.5.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.4.0.0': + + full_name: 'TortoiseGit 2.4.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.3.0.0': + + full_name: 'TortoiseGit 2.3.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0.0': + + full_name: 'TortoiseGit 2.2.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0.0': + + full_name: 'TortoiseGit 2.1.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0.0': + + full_name: 'TortoiseGit 2.0.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.16.0': + + full_name: 'TortoiseGit 1.8.16.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.15.0': + + full_name: 'TortoiseGit 1.8.15.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.14.0': + + full_name: 'TortoiseGit 1.8.14.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.13.0': + + full_name: 'TortoiseGit 1.8.13.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:12,085 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,085 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,085 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,085 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,085 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 11:12:12,100 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,100 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,100 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +# Source: http://tortoisehg.bitbucket.org/ +tortoise-hg: + '3.6.2': + + full_name: 'TortoiseHg 3.6.2 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.3.0': + + full_name: 'TortoiseHg 3.3.0 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# Need to download from source site above, so it will append proper aws key credentials +# place downloaded msi in master's win_repo-ng + +2020-03-06 11:12:12,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,100 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,100 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,100 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,100 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 11:12:12,116 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,116 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,116 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +# Source: http://tortoisesvn.net/ +tortoise-svn: + '1.9.27285': + + full_name: 'TortoiseSVN 1.9.4.27285 (64 bit)' + installer: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + uninstaller: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:12,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,116 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,116 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,116 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,116 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 11:12:12,131 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,148 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.016576051712036133 +2020-03-06 11:12:12,148 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +# just 32-bit x86 installer available + + + +truecrypt: + '7.1a': + full_name: 'TrueCrypt 7.1a' + installer: 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Truecrypt\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,148 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,148 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,148 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,148 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 11:12:12,163 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,163 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,163 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +ultradefrag: + '7.0.2': + full_name: 'Ultra Defragmenter' + + installer: 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe' + + install_flags: '/S /FULL=1' + uninstaller: '%ProgramFiles%\UltraDefrag\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,163 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,163 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,163 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,163 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,163 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 11:12:12,178 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,178 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,178 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +urlrewrite: + '7.2.1952': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.2.1980': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:12,178 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,178 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,178 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,178 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,178 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 11:12:12,194 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,194 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,194 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +usbdlm: + '5.2.7.0': + + full_name: 'USB Drive Letter Manager (x64)' + installer: http://www.uwe-sieber.de/files/usbdlm_x64.msi + uninstaller: http://www.uwe-sieber.de/files/usbdlm_x64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:12,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,194 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,194 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,194 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,194 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 11:12:12,209 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,209 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,209 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +vagrant: + + + '2.2.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.8': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:12,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,225 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.015656232833862305 +2020-03-06 11:12:12,225 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,225 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,241 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 11:12:12,241 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,241 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,241 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +vcforpython27: + '9.0.1.30729': + full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' + installer: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:12,241 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,241 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,241 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,241 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,241 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 11:12:12,256 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,256 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,256 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: + + + + +vcxsrv: + + '1.20.0.0': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.19.6.4': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,256 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,256 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,256 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,256 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,272 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 11:12:12,272 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,272 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,272 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: + + +verysleepy: + '0.90': + full_name: 'Very Sleepy CS version 0.90' + installer: 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe' + uninstaller: '%ProgramFiles%\Very Sleepy CS\unins000.exe' + install_flags: '/SP- /NORESTART /SILENT' + uninstall_flags: '/SILENT' + cache_dir: True + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,272 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,272 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,272 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,272 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,272 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 11:12:12,288 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,288 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,288 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +veyon: + + '4.0.7': + full_name: 'Veyon 4.0.7' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.0.6': + full_name: 'Veyon 4.0.6' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,288 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,288 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,288 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,303 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 11:12:12,303 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,320 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.01654052734375 +2020-03-06 11:12:12,320 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +# Version 5.1 and older are no longer supported by Oracle +# https://www.virtualbox.org/wiki/Download_Old_Builds + + + +virtualbox: + + '6.0.4': + full_name: 'Oracle VM VirtualBox 6.0.4' + installer: 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.2.26': + full_name: 'Oracle VM VirtualBox 5.2.26' + installer: 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.1.38': + full_name: 'Oracle VM VirtualBox 5.1.38' + installer: 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.0.40': + full_name: 'Oracle VM VirtualBox 5.0.40' + installer: 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart' + + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,320 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,320 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,320 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,320 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 11:12:12,320 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,335 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.014768838882446289 +2020-03-06 11:12:12,335 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: + + + + +viscosity: + + '1.7.14.1595': + full_name: Viscosity 1.7.14 (1595) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.7.12.1581': + full_name: Viscosity 1.7.12 (1581) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.6.8.1477': + full_name: Viscosity 1.6.8 (1477) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + +2020-03-06 11:12:12,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:12:12,335 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,335 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,335 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,335 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 11:12:12,335 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,350 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.015656471252441406 +2020-03-06 11:12:12,350 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +#Vivaldi is a Chromium-based browser +#https://vivaldi.com + + + +vivaldi: + latest: + full_name: 'Vivaldi' + + installer: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + uninstaller: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + + install_flags: '--vivaldi-silent --do-not-launch-chrome --system-level' + uninstall_flags: '--uninstall --force-uninstall --system-level --vivaldi' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,350 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,350 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,350 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,350 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,350 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 11:12:12,350 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,367 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.016477584838867188 +2020-03-06 11:12:12,367 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +vlc: + + '3.0.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.5': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.4': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,367 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,367 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,367 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,367 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,367 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 11:12:12,382 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,382 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,382 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +vs-community: + 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) + full_name: + Visual Studio Community 2017 + installer: + https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe + install_flags: + --quiet + --norestart + --wait + uninstaller: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe" + uninstall_flags: + /uninstall + --force + --quiet + --norestart + reboot: False + +2020-03-06 11:12:12,382 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,382 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,382 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,382 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,397 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 11:12:12,397 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,397 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,397 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +# due to winrepo installer limitations you need to manually download x86 + x64 System installer from +# https://code.visualstudio.com/Download +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... + + + +vscode: + + '1.36.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.36.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.37.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.37.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.38.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.38.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.2': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.2.exe' + installer: 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:12,397 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,397 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,413 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,413 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,413 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 11:12:12,413 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,413 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,413 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +vsee: + '15.0.0.707': + full_name: 'VSee' + installer: 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe' + install_flags: '-no_autorun' + uninstaller: '%AppData%\VSeeInstall\vseeUninstall.exe' + uninstall_flags: '-no_confirm' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,413 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,429 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,429 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,429 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 11:12:12,429 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,445 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0165407657623291 +2020-03-06 11:12:12,445 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +vs_remotetools_2017: + latest: + full_name: 'Remote Tools for Visual Studio 2017' + + installer: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + uninstaller: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + arch: x64 + + install_flags: '/install /passive /quiet' + uninstall_flags: '/uninstall /passive /quiet' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,445 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,445 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,445 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,460 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,460 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 11:12:12,460 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,460 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,460 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +wamp-server-3: + '3.1.3': + + full_name: 'Wampserver64 3.1.3' + installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe' + uninstaller: 'c:\wamp64\uninstall_services.bat' + uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,476 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.01566314697265625 +2020-03-06 11:12:12,476 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,476 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,476 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 11:12:12,476 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,491 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.015657663345336914 +2020-03-06 11:12:12,491 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: + + +wamp-stack: + + '7.1.27-1': + full_name: 'Bitnami WAMP Stack 7.1.27-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-7.1.27-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + '5.6.40-1': + full_name: 'Bitnami WAMP Stack 5.6.40-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-5.6.40-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,491 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,491 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,491 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,491 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,507 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 11:12:12,507 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,507 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,507 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +webdeploy: + '3.1237.1764': + full_name: 'Microsoft Web Deploy 3.5' + + installer: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:12,507 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,507 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,523 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,523 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,523 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 11:12:12,523 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,523 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,538 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +webplatforminstaller: + '5.0.50430.0': + full_name: 'Microsoft Web Platform Installer 5.0' + + installer: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:12,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,538 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,538 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,554 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,554 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 11:12:12,554 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,554 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,554 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +# Source: http://winappmanager.herokuapp.com/ + + + +win-app-manager: + '15.01.11': + full_name: 'WinAppManager' + installer: 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinApp Manager\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,554 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,570 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.015704870223999023 +2020-03-06 11:12:12,570 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,570 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,570 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 11:12:12,570 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,585 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.015664339065551758 +2020-03-06 11:12:12,585 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: + + + +windirstat: + 'Not Found': + full_name: 'WinDirStat 1.1.2' + installer: 'http://download01.windirstat.info/windirstat1_1_2_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\WinDirStat\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,585 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,585 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,585 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,601 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 11:12:12,601 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,601 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,601 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +winhttpcertcfg: + '5.2.3790.1060': + full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' + installer: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:12:12,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,601 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,617 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,617 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,617 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 11:12:12,617 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,633 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.016429424285888672 +2020-03-06 11:12:12,633 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: + + + + +winmerge: + + '2.16.0': + full_name: 'WinMerge 2.16.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.14.0': + full_name: 'WinMerge 2.14.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,633 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,633 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,633 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,648 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,648 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 11:12:12,648 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,648 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,663 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +winmtr: + + '0.92': + + full_name: 'WinMTR_x64 0.92' + installer: 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe' + uninstaller: 'c:\utl\uninstall-winmtr_x64.exe' + + install_flags: '/D="c:\utl" /SILENT /NORESTART' + uninstall_flags: 'c:\utl\SSEun.dat /SILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +# download exe from winmtr.net +# create two installers using http://www.ssesetup.com/ + +2020-03-06 11:12:12,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,663 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,663 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,663 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,663 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 11:12:12,679 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,679 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,679 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +winpcap: + '4.1.0.2980': + full_name: 'WinPcap 4.1.3' + installer: 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\WinPcap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,679 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,679 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,695 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,695 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 11:12:12,695 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,695 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,695 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +#if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) + + +winrar: + + + '5.70.0': + + full_name: 'WinRAR 5.70 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-570.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.61.0': + + full_name: 'WinRAR 5.61 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-561.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:12:12,710 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,710 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,710 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,710 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,710 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 11:12:12,726 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,726 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,726 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: + + + +winscp: + + '5.17': + full_name: 'WinSCP 5.17' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.9': + full_name: 'WinSCP 5.15.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.7': + full_name: 'WinSCP 5.15.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.5': + full_name: 'WinSCP 5.15.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.4': + full_name: 'WinSCP 5.15.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.3': + full_name: 'WinSCP 5.15.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.2': + full_name: 'WinSCP 5.15.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.1': + full_name: 'WinSCP 5.15.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15': + full_name: 'WinSCP 5.15' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.9': + full_name: 'WinSCP 5.13.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.8': + full_name: 'WinSCP 5.13.8' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.7': + full_name: 'WinSCP 5.13.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.6': + full_name: 'WinSCP 5.13.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.5': + full_name: 'WinSCP 5.13.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.4': + full_name: 'WinSCP 5.13.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.3': + full_name: 'WinSCP 5.13.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.2': + full_name: 'WinSCP 5.13.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.1': + full_name: 'WinSCP 5.13.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13': + full_name: 'WinSCP 5.13' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.3': + full_name: 'WinSCP 5.11.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.2': + full_name: 'WinSCP 5.11.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.1': + full_name: 'WinSCP 5.11.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.6': + full_name: 'WinSCP 5.9.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.2': + full_name: 'WinSCP 5.9.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.1': + full_name: 'WinSCP 5.9.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9': + full_name: 'WinSCP 5.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,742 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.015661239624023438 +2020-03-06 11:12:12,742 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,742 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,757 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 11:12:12,757 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,757 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,757 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +wireshark: + + '3.0.4': + + full_name: 'Wireshark 3.0.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + + full_name: 'Wireshark 3.0.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + + full_name: 'Wireshark 3.0.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + + full_name: 'Wireshark 3.0.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + + full_name: 'Wireshark 3.0.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.6': + + full_name: 'Wireshark 2.6.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.5': + + full_name: 'Wireshark 2.6.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.4': + + full_name: 'Wireshark 2.6.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.3': + + full_name: 'Wireshark 2.6.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.2': + + full_name: 'Wireshark 2.6.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.1': + + full_name: 'Wireshark 2.6.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.0': + + full_name: 'Wireshark 2.6.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.12': + + full_name: 'Wireshark 2.4.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.11': + + full_name: 'Wireshark 2.4.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.10': + + full_name: 'Wireshark 2.4.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.9': + + full_name: 'Wireshark 2.4.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.8': + + full_name: 'Wireshark 2.4.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.7': + + full_name: 'Wireshark 2.4.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.6': + + full_name: 'Wireshark 2.4.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.5': + + full_name: 'Wireshark 2.4.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.4': + + full_name: 'Wireshark 2.4.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.3': + + full_name: 'Wireshark 2.4.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.2': + + full_name: 'Wireshark 2.4.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.1': + + full_name: 'Wireshark 2.4.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.0': + + full_name: 'Wireshark 2.4.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.17': + + full_name: 'Wireshark 2.2.17 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.16': + + full_name: 'Wireshark 2.2.16 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.15': + + full_name: 'Wireshark 2.2.15 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.14': + + full_name: 'Wireshark 2.2.14 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.13': + + full_name: 'Wireshark 2.2.13 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.12': + + full_name: 'Wireshark 2.2.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.11': + + full_name: 'Wireshark 2.2.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.10': + + full_name: 'Wireshark 2.2.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.9': + + full_name: 'Wireshark 2.2.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + + full_name: 'Wireshark 2.2.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.7': + + full_name: 'Wireshark 2.2.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + + full_name: 'Wireshark 2.2.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.5': + + full_name: 'Wireshark 2.2.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + + full_name: 'Wireshark 2.2.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.3': + + full_name: 'Wireshark 2.2.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2': + + full_name: 'Wireshark 2.2.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + + full_name: 'Wireshark 2.2.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0': + + full_name: 'Wireshark 2.2.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:12,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,773 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,790 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,790 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,790 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 11:12:12,790 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,790 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,790 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +# source: http://www.kls-soft.com/wscc/ +wscc: + '2.5.0.4': + full_name: 'WSCC 2.5.0.4' + installer: 'http://www.kls-soft.com/downloads/wscc_setup.exe' + install_flags: '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + + uninstaller: '%PROGRAMFILES(x86)%\WSCC\unins000.exe' + + uninstall_flags: '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,804 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,804 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,804 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,804 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,804 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 11:12:12,804 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,820 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.01566171646118164 +2020-03-06 11:12:12,820 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +# Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 +# https://github.com/zeffy/wufuc + + + + + + +wufuc: + + '1.0.1.201': + full_name: 'wufuc' + installer: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:12:12,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,820 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,820 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,836 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,836 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 11:12:12,836 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,836 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,836 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +xampp: + '7.2.6.0': + full_name: 'XAMPP 7.2.6' + installer: 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe' + install_flags: '--mode unattended' + uninstaller: 'c:\xampp\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,836 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,836 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,836 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,852 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,852 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 11:12:12,852 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,852 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,852 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +# just 32-bit x86 installer available + + + +# http://www.straightrunning.com/XmingNotes/setupcmdline.htm +xming: + '6.9.0.31': + full_name: 'Xming 6.9.0.31' + installer: 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe' + install_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + uninstaller: '%ProgramFiles(x86)%\Xming\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:12:12,852 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,867 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.014806509017944336 +2020-03-06 11:12:12,867 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,867 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,867 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 11:12:12,867 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,883 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.015652894973754883 +2020-03-06 11:12:12,883 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: + + +yubikey-manager: + + '1.1.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.2': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + +2020-03-06 11:12:12,883 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,883 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,898 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,898 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,898 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 11:12:12,914 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,914 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,914 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +yubikey-personalization-tool: + '3.1.24': + full_name: 'YubiKey Personalization Tool' + installer: 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe' + install_flags: '/S' + uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 11:12:12,914 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,914 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,930 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,930 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,930 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 11:12:12,930 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,945 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.01566481590270996 +2020-03-06 11:12:12,945 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '4.0.9.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.10.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.11.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.12.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.13.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.14.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.15.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.16.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.2.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.5.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.6.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 11:12:12,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:12,945 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,961 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,961 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,961 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 11:12:12,961 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,961 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,977 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: + +zoom: + latest: + full_name: 'Zoom' + installer: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 11:12:12,977 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:12:12,977 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:12,977 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:12,992 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:12,992 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 11:12:12,992 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:12,992 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:12,992 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +# Software Definition File for Elasticsearch Auditbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +auditbeat: + + '7.3.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:12:13,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,008 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.01568126678466797 +2020-03-06 11:12:13,008 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,008 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,008 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 11:12:13,008 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,024 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.01564478874206543 +2020-03-06 11:12:13,024 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +chocolatey: + latest: + full_name: 'Chocolatey' + installer: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd' + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd' + cache_dir: True + +# this software also has it's own salt execution module, which you might prefer to use, see +# http://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html +# for usage examples see +# https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 + + +2020-03-06 11:12:13,024 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,024 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,024 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,039 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,039 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 11:12:13,039 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,039 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,055 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: + + + + +erlang: + + '19.3': + full_name: 'Erlang OTP 19 (8.3)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"' + uninstaller: '%ProgramFiles%\erl8.3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '21.0.1': + full_name: 'Erlang OTP 21 (10.0.1)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"' + uninstaller: '%ProgramFiles%\erl10.0.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:12:13,055 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:12:13,055 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,055 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,055 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,055 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 11:12:13,071 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,071 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,071 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +# Software Definition File for Elasticsearch Filebeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +filebeat: + + '7.3.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:12:13,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,071 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,086 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,086 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,086 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 11:12:13,086 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,086 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,086 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +# Software Definition File for Elasticsearch Functionbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +functionbeat: + + '7.3.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:12:13,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,102 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.01565241813659668 +2020-03-06 11:12:13,102 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,102 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,102 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 11:12:13,102 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,118 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.016442537307739258 +2020-03-06 11:12:13,118 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +# just 32-bit x86 installer available + + + + +gpg4win: + + 3.1.7: + full_name: 'Gpg4win (3.1.7)' + installer: 'http://files.gpg4win.org/gpg4win-3.1.7.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.3: + full_name: 'Gpg4win (3.0.3)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.0: + full_name: 'Gpg4win (3.0.0)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.4: + full_name: 'Gpg4win (2.3.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.3: + full_name: 'Gpg4win (2.3.3)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.2: + full_name: 'Gpg4win (2.3.2)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.2.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.1: + full_name: 'Gpg4win (2.3.1)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.1.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.0: + full_name: 'Gpg4win (2.3.0)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.2.4: + full_name: 'Gpg4win (2.2.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.2.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + +2020-03-06 11:12:13,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:12:13,118 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,133 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,133 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,133 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 11:12:13,133 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,133 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,133 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +# Software Definition File for Elasticsearch Heartbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +heartbeat: + + '7.3.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:12:13,149 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,149 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,149 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,149 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,149 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 11:12:13,164 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,164 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,164 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +# Software Definition File for Elasticsearch Metricbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +metricbeat: + + '7.3.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:12:13,164 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,164 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,181 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 11:12:13,181 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,181 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,181 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +# Software Definition File for Elasticsearch Packetbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +packetbeat: + + '7.3.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:12:13,196 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,196 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,196 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,196 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,196 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 11:12:13,211 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,211 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,211 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: + + + + + +pycharm-pro: + + 191.6605.12: + installer: 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe' + full_name: 'JetBrains Pycharm 2019.1.1' + install_flags: '/S /CONFIG=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\silent.config' + cache_file: salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config + uninstaller: '%ProgramFiles(x86)%\JetBrains\PyCharm 2019.1.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + reboot: False + + +2020-03-06 11:12:13,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:12:13,211 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,227 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,227 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,227 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 11:12:13,227 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,243 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.015668869018554688 +2020-03-06 11:12:13,243 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +# just 32-bit x86 installer available + + + +stayawake: + + '1.0': + full_name: 'StayAwake' + installer: 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd' + install_flags: '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"' + uninstaller: '%PROGRAMFILES(x86)%\StayAwake\uninstall.exe' + uninstall_flags: '/S' + + +2020-03-06 11:12:13,243 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) +2020-03-06 11:12:13,243 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,243 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,258 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,258 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 11:12:13,258 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,258 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,274 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +# Software Definition File for Elasticsearch Winlogbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +winlogbeat: + + '7.3.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:12:13,274 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,274 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,274 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,274 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,290 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 11:12:13,290 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,290 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:12:13,290 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +############################################################# +# Windows +############################################################# +# + + +2020-03-06 11:12:13,290 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +{} +2020-03-06 11:12:13,290 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,305 [salt.loaded.int.module.win_pkg:1213][DEBUG ][4804] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 11:12:13,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:13,305 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:13,305 [salt.template :59 ][DEBUG ][4804] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 11:12:13,305 [salt.utils.jinja :85 ][DEBUG ][4804] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:12:13,321 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.015665769577026367 +2020-03-06 11:12:13,321 [salt.template :120 ][DEBUG ][4804] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +# only 32-bit (x86) installer available + + + +zipinstaller: + '1.21': + full_name: 'ZipInstaller' + installer: 'salt://win/repo-ng/zipinstaller/zipinst.exe' + + install_flags: '/i zipinst_x64.zip' + + uninstaller: 'zipinst.exe' + uninstall_flags: '/uninst "c:\utl\uninst1~.nsu"' + msiexec: False + locale: en_US + reboot: False + cache_dir: True +# Description: +# This is a 32-bit zip archive program installer that installes directly from zip archives and creates shortcuts and un-install entries +# automatically, exactly as defined in a simple '~zipinst~.zic' if it finds it inside the zip archive. +# +# All it takes is calling up 'zipinst.exe /i .zip' that contains a file called '~zipinst~.zic', which itself is in *.ini file +# format and contains, directives about where it should install etc. +# +# Source: +# http://www.nirsoft.net/utils/zipinst.html +# http://www.nirsoft.net/utils/zipinst.exe +# http://www.nirsoft.net/utils/zipinst.zip (need to add '~zipinst~.zic' to it) +# you have to insert the '~zipinst~.zic' file into the 'zipinst.zip' file +# and place the resulting zipinst.zip into the 'salt://win/repo-ng/zipinstaller/' on your master +# as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache +# + +2020-03-06 11:12:13,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4804] Results of YAML rendering: +OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) +2020-03-06 11:12:13,321 [salt.template :26 ][PROFILE ][4804] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:12:13,352 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 11:12:13,352 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 11:12:13,384 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: Volume in drive C is Windows 2016 + Volume Serial Number is 3CE2-368C + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + +03/06/2020 02:12 PM . +03/06/2020 02:12 PM .. +03/06/2020 02:12 PM 927 7zip.sls +03/06/2020 02:12 PM 723 activeperl_x64.sls +03/06/2020 02:12 PM 973 activeperl_x86.sls +03/06/2020 02:12 PM 798 adobeair.sls +03/06/2020 02:12 PM 956 adobereader-dc-classic.sls +03/06/2020 02:12 PM 851 adobereader-xi.sls +03/06/2020 02:12 PM 830 adobereader.sls +03/06/2020 02:12 PM 589 adobeshockwaveplayer.sls +03/06/2020 02:12 PM 775 adv-ip-scanner.sls +03/06/2020 02:12 PM 787 adv-port-scanner.sls +03/06/2020 02:12 PM 769 advancedlogging.sls +03/06/2020 02:12 PM 373 anydesk-msi.sls +03/06/2020 02:12 PM 597 anydesk.sls +03/06/2020 02:12 PM 803 applicationrequestrouting.sls +03/06/2020 02:12 PM 370 aspnet-mvc1.sls +03/06/2020 02:12 PM 439 atom.sls +03/06/2020 02:12 PM 655 audacity.sls +03/06/2020 02:12 PM auditbeat +03/06/2020 02:12 PM 1,768 autohotkey.sls +03/06/2020 02:12 PM 611 autoit.sls +03/06/2020 02:12 PM 670 autopsy.sls +03/06/2020 02:12 PM 659 awscli.sls +03/06/2020 02:12 PM 799 azuredatastudio.sls +03/06/2020 02:12 PM 422 bandizip.sls +03/06/2020 02:12 PM 563 belarc-advisor.sls +03/06/2020 02:12 PM 367 bginfo4x.sls +03/06/2020 02:12 PM 547 bitnami-nginxstack.sls +03/06/2020 02:12 PM 568 bitvise.sls +03/06/2020 02:12 PM 777 blender.sls +03/06/2020 02:12 PM 395 bootracer.sls +03/06/2020 02:12 PM 664 bulkrenameutility.sls +03/06/2020 02:12 PM 661 bulk_extractor.sls +03/06/2020 02:12 PM 476 ccleaner-slim.sls +03/06/2020 02:12 PM 445 ccleaner.sls +03/06/2020 02:12 PM 606 cdburnerxp.sls +03/06/2020 02:12 PM 594 cdroller.sls +03/06/2020 02:12 PM 658 check-mk-agent-msi.sls +03/06/2020 02:12 PM 451 check-mk-agent.sls +03/06/2020 02:12 PM chocolatey +03/06/2020 02:12 PM 394 chrome-rdp.sls +03/06/2020 02:12 PM 375 chrome.sls +03/06/2020 02:12 PM 1,296 clamav.sls +03/06/2020 02:12 PM 1,200 clamwin.sls +03/06/2020 02:12 PM 500 classicshell.sls +03/06/2020 02:12 PM 1,521 clink.sls +03/06/2020 02:12 PM 617 conemu.sls +03/06/2020 02:12 PM 687 cpu-z.sls +03/06/2020 02:12 PM 2,833 curl.sls +03/06/2020 02:12 PM 374 cyberduck-cli.sls +03/06/2020 02:12 PM 616 cyberduck-msi.sls +03/06/2020 02:12 PM 639 cyberduck.sls +03/06/2020 02:12 PM 751 defraggler.sls +03/06/2020 02:12 PM 2,637 dotnet.sls +03/06/2020 02:12 PM 643 dropbox.sls +03/06/2020 02:12 PM 683 duplicati.sls +03/06/2020 02:12 PM 712 dvdstyler.sls +03/06/2020 02:12 PM 737 echo-desktop.sls +03/06/2020 02:12 PM 1,327 eea.sls +03/06/2020 02:12 PM 423 emet.sls +03/06/2020 02:12 PM 625 emsisoft-anti-malware.sls +03/06/2020 02:12 PM 721 eraser.sls +03/06/2020 02:12 PM erlang +03/06/2020 02:12 PM 982 evernote.sls +03/06/2020 02:12 PM 531 fiddler.sls +03/06/2020 02:12 PM filebeat +03/06/2020 02:12 PM 660 filehippo-app-manager.sls +03/06/2020 02:12 PM 1,271 filezilla.sls +03/06/2020 02:12 PM 1,115 firefox-esr_x64.sls +03/06/2020 02:12 PM 1,396 firefox-esr_x86.sls +03/06/2020 02:12 PM 1,365 firefox_x64.sls +03/06/2020 02:12 PM 1,870 firefox_x86.sls +03/06/2020 02:12 PM functionbeat +03/06/2020 02:12 PM 552 gedit.sls +03/06/2020 02:12 PM 822 gimp.sls +03/06/2020 02:12 PM 953 git-extensions.sls +03/06/2020 02:12 PM 3,855 git.sls +03/06/2020 02:12 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 02:12 PM 563 gnucash.sls +03/06/2020 02:12 PM 2,152 golang.sls +03/06/2020 02:12 PM 320 goodsync.sls +03/06/2020 02:12 PM 601 gow.sls +03/06/2020 02:12 PM gpg4win +03/06/2020 02:12 PM 847 gpg4win-light.sls +03/06/2020 02:12 PM 621 gpg4win-vanilla.sls +03/06/2020 02:12 PM 544 graylog-collector-sidecar.sls +03/06/2020 02:12 PM 2,661 grepwin.sls +03/06/2020 02:12 PM 505 gvim.sls +03/06/2020 02:12 PM 622 handbrake.sls +03/06/2020 02:12 PM heartbeat +03/06/2020 02:12 PM 503 hipchat.sls +03/06/2020 02:12 PM 771 hostsfileeditor.sls +03/06/2020 02:12 PM 623 hwinfo.sls +03/06/2020 02:12 PM 339 ice.sls +03/06/2020 02:12 PM 493 icecast.sls +03/06/2020 02:12 PM 377 icloud.sls +03/06/2020 02:12 PM 2,197 iismediaservices.sls +03/06/2020 02:12 PM 358 influx-capacitor.sls +03/06/2020 02:12 PM 644 inkscape.sls +03/06/2020 02:12 PM 646 intellij-community.sls +03/06/2020 02:12 PM 618 intellij-ultimate.sls +03/06/2020 02:12 PM 360 internet-evidence-finder.sls +03/06/2020 02:12 PM 702 irfanview-plugins.sls +03/06/2020 02:12 PM 1,610 irfanview.sls +03/06/2020 02:12 PM 697 isapirewrite-lite.sls +03/06/2020 02:12 PM 2,602 itunes.sls +03/06/2020 02:12 PM 1,279 jdk8.sls +03/06/2020 02:12 PM 1,200 jre.sls +03/06/2020 02:12 PM 1,480 jre8.sls +03/06/2020 02:12 PM 995 jungledisk-server-management.sls +03/06/2020 02:12 PM 891 jungledisk-server.sls +03/06/2020 02:12 PM 921 jungledisk-workgroup.sls +03/06/2020 02:12 PM 518 kdiff3.sls +03/06/2020 02:12 PM 1,091 keepass-2x.sls +03/06/2020 02:12 PM 2,655 keepass.sls +03/06/2020 02:12 PM 673 lastpass.sls +03/06/2020 02:12 PM 1,329 lazarus.sls +03/06/2020 02:12 PM 951 libreoffice.sls +03/06/2020 02:12 PM 419 logparser.sls +03/06/2020 02:12 PM 2,627 maas360bootanalyzer.sls +03/06/2020 02:12 PM 722 malwarebytes.sls +03/06/2020 02:12 PM 1,884 mariadb.sls +03/06/2020 02:12 PM 653 mercurial.sls +03/06/2020 02:12 PM 649 messageanalyzer.sls +03/06/2020 02:12 PM metricbeat +03/06/2020 02:12 PM 603 microsoft-build-tools.sls +03/06/2020 02:12 PM 317 mikogo.sls +03/06/2020 02:12 PM 766 miktex-basic.sls +03/06/2020 02:12 PM 787 mongodb.sls +03/06/2020 02:12 PM 831 ms-mbsa.sls +03/06/2020 02:12 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 02:12 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 02:12 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 02:12 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 02:12 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 02:12 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 02:12 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 02:12 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 02:12 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 02:12 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 02:12 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 02:12 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 02:12 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 02:12 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 02:12 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 02:12 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 02:12 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 02:12 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 02:12 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 02:12 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 02:12 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 02:12 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 02:12 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 02:12 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 02:12 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 02:12 PM 585 mucommander.sls +03/06/2020 02:12 PM 638 mysql-essential.sls +03/06/2020 02:12 PM 632 mysql-installer-community.sls +03/06/2020 02:12 PM 639 mysql-workbench.sls +03/06/2020 02:12 PM 298 never10.sls +03/06/2020 02:12 PM 929 newrelic-infra.sls +03/06/2020 02:12 PM 526 nextcloud-client.sls +03/06/2020 02:12 PM 584 nmap.sls +03/06/2020 02:12 PM 709 node.js-lts.sls +03/06/2020 02:12 PM 733 node.js.sls +03/06/2020 02:12 PM 368 nomacs.sls +03/06/2020 02:12 PM 985 npp.sls +03/06/2020 02:12 PM 1,252 nsclient.sls +03/06/2020 02:12 PM 826 nsis.sls +03/06/2020 02:12 PM 902 ntp.sls +03/06/2020 02:12 PM 793 nunit-console.sls +03/06/2020 02:12 PM 363 nxlog.sls +03/06/2020 02:12 PM 1,081 octopus-tentacle.sls +03/06/2020 02:12 PM 678 openlp.sls +03/06/2020 02:12 PM 1,192 openoffice.sls +03/06/2020 02:12 PM 2,130 openvpn.sls +03/06/2020 02:12 PM 587 osquery.sls +03/06/2020 02:12 PM 878 ossec-agent.sls +03/06/2020 02:12 PM 590 owncloud.sls +03/06/2020 02:12 PM packetbeat +03/06/2020 02:12 PM 400 pandoc.sls +03/06/2020 02:12 PM 814 parallels-client-15.sls +03/06/2020 02:12 PM 1,709 pass4win.sls +03/06/2020 02:12 PM 378 passware-kit-agent.sls +03/06/2020 02:12 PM 416 passware-kit-forensic.sls +03/06/2020 02:12 PM 656 patchmypc-free.sls +03/06/2020 02:12 PM 638 pdf24creator.sls +03/06/2020 02:12 PM 567 pdfcreator.sls +03/06/2020 02:12 PM 611 peazip.sls +03/06/2020 02:12 PM 812 pgadmin4.sls +03/06/2020 02:12 PM 235 pgina.sls +03/06/2020 02:12 PM 617 pidgin.sls +03/06/2020 02:12 PM 1,898 postgresql.sls +03/06/2020 02:12 PM 997 powerbi-desktop.sls +03/06/2020 02:12 PM 864 powershell-core.sls +03/06/2020 02:12 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 02:12 PM 1,488 putty.sls +03/06/2020 02:12 PM pycharm-pro +03/06/2020 02:12 PM 567 python2_x64.sls +03/06/2020 02:12 PM 526 python2_x86.sls +03/06/2020 02:12 PM 1,540 python3_x64.sls +03/06/2020 02:12 PM 1,435 python3_x86.sls +03/06/2020 02:12 PM 449 qemu.sls +03/06/2020 02:12 PM 562 queueexplorerpro.sls +03/06/2020 02:12 PM 1,542 quicktime.sls +03/06/2020 02:12 PM 495 rabbitmq.sls +03/06/2020 02:12 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 02:12 PM 375 rakudo-star_x64.sls +03/06/2020 02:12 PM 888 rasclient.sls +03/06/2020 02:12 PM 444 rdcman.sls +03/06/2020 02:12 PM 609 rocketchat.sls +03/06/2020 02:12 PM 526 rubyinstaller_x64.sls +03/06/2020 02:12 PM 551 rubyinstaller_x86.sls +03/06/2020 02:12 PM 3,719 salt-minion-py2.sls +03/06/2020 02:12 PM 2,050 salt-minion-py3.sls +03/06/2020 02:12 PM 562 sandboxie.sls +03/06/2020 02:12 PM 581 scaleout.sls +03/06/2020 02:12 PM 476 secunia.psi.sls +03/06/2020 02:12 PM 1,190 sensu.sls +03/06/2020 02:12 PM 1,827 sharpdevelop.sls +03/06/2020 02:12 PM 539 skitch.sls +03/06/2020 02:12 PM 1,533 skype-msi.sls +03/06/2020 02:12 PM 708 skype.sls +03/06/2020 02:12 PM 1,244 slack-machine-msi.sls +03/06/2020 02:12 PM 1,023 slack-user-msi.sls +03/06/2020 02:12 PM 329 slack.sls +03/06/2020 02:12 PM 591 smartmontools.sls +03/06/2020 02:12 PM 556 snmptools.sls +03/06/2020 02:12 PM 653 soapui.sls +03/06/2020 02:12 PM 623 software-informer.sls +03/06/2020 02:12 PM 1,039 sourcetree.sls +03/06/2020 02:12 PM 591 spybot-anti-beacon.sls +03/06/2020 02:12 PM 765 spybot.sls +03/06/2020 02:12 PM 664 sscserv-free.sls +03/06/2020 02:12 PM stayawake +03/06/2020 02:12 PM 443 steam.sls +03/06/2020 02:12 PM 658 stellarium.sls +03/06/2020 02:12 PM 540 strawberryperl_x64.sls +03/06/2020 02:12 PM 531 strawberryperl_x86.sls +03/06/2020 02:12 PM 521 stunnel.sls +03/06/2020 02:12 PM 398 subinacl.sls +03/06/2020 02:12 PM 467 sumatrapdf.sls +03/06/2020 02:12 PM 769 svn.sls +03/06/2020 02:12 PM 534 teamviewer.sls +03/06/2020 02:12 PM 549 teamviewer_host.sls +03/06/2020 02:12 PM 749 teracopy.sls +03/06/2020 02:12 PM 491 texmaker.sls +03/06/2020 02:12 PM 709 texniccenter.sls +03/06/2020 02:12 PM 639 texstudio.sls +03/06/2020 02:12 PM 643 texworks.sls +03/06/2020 02:12 PM 937 thunderbird.sls +03/06/2020 02:12 PM 1,014 tightvnc.sls +03/06/2020 02:12 PM 623 todotxt.net.sls +03/06/2020 02:12 PM 551 todour.sls +03/06/2020 02:12 PM 630 tortoise-bzr.sls +03/06/2020 02:12 PM 983 tortoise-git.sls +03/06/2020 02:12 PM 1,367 tortoise-hg.sls +03/06/2020 02:12 PM 897 tortoise-svn.sls +03/06/2020 02:12 PM 503 truecrypt.sls +03/06/2020 02:12 PM 662 ultradefrag.sls +03/06/2020 02:12 PM 1,598 urlrewrite.sls +03/06/2020 02:12 PM 560 usbdlm.sls +03/06/2020 02:12 PM 1,361 vagrant.sls +03/06/2020 02:12 PM 479 vcforpython27.sls +03/06/2020 02:12 PM 820 vcxsrv.sls +03/06/2020 02:12 PM 434 verysleepy.sls +03/06/2020 02:12 PM 611 veyon.sls +03/06/2020 02:12 PM 2,570 virtualbox.sls +03/06/2020 02:12 PM 794 viscosity.sls +03/06/2020 02:12 PM 657 vivaldi.sls +03/06/2020 02:12 PM 739 vlc.sls +03/06/2020 02:12 PM 713 vs-community.sls +03/06/2020 02:12 PM 1,388 vscode.sls +03/06/2020 02:12 PM 325 vsee.sls +03/06/2020 02:12 PM 640 vs_remotetools_2017.sls +03/06/2020 02:12 PM 835 wamp-server-3.sls +03/06/2020 02:12 PM 585 wamp-stack.sls +03/06/2020 02:12 PM 775 webdeploy.sls +03/06/2020 02:12 PM 842 webplatforminstaller.sls +03/06/2020 02:12 PM 610 win-app-manager.sls +03/06/2020 02:12 PM 467 windirstat.sls +03/06/2020 02:12 PM 468 winhttpcertcfg.sls +03/06/2020 02:12 PM winlogbeat +03/06/2020 02:12 PM 618 winmerge.sls +03/06/2020 02:12 PM 737 winmtr.sls +03/06/2020 02:12 PM 288 winpcap.sls +03/06/2020 02:12 PM 825 winrar.sls +03/06/2020 02:12 PM 828 winscp.sls +03/06/2020 02:12 PM 1,136 wireshark.sls +03/06/2020 02:12 PM wmi_provider +03/06/2020 02:12 PM 539 wscc.sls +03/06/2020 02:12 PM 726 wufuc.sls +03/06/2020 02:12 PM 352 xampp.sls +03/06/2020 02:12 PM 649 xming.sls +03/06/2020 02:12 PM 621 yubikey-manager.sls +03/06/2020 02:12 PM 546 yubikey-personalization-tool.sls +03/06/2020 02:12 PM 1,119 zabbix-agent.sls +03/06/2020 02:12 PM zipinstaller +03/06/2020 02:12 PM 278 zoom.sls + 284 File(s) 232,192 bytes + 16 Dir(s) 45,179,973,632 bytes free +2020-03-06 11:12:13,384 [salt.state :938 ][DEBUG ][4804] Last command return code: 0 +2020-03-06 11:12:13,384 [salt.state :320 ][INFO ][4804] {'pkg.refresh_db': {'total': 298, 'success': 298, 'failed': 0}} +2020-03-06 11:12:13,399 [salt.state :1997][INFO ][4804] Completed state [pkg.refresh_db] at time 11:12:13.399760 (duration_in_ms=13200.204) +2020-03-06 11:12:13,415 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 11:12:13,415 [salt.state :1819][INFO ][4804] Running state [kdiff3] at time 11:12:13.415544 +2020-03-06 11:12:13,415 [salt.state :1852][INFO ][4804] Executing state pkg.installed for [kdiff3] +2020-03-06 11:12:13,431 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 11:12:13,447 [salt.loaded.int.module.win_pkg:802 ][INFO ][4804] Refresh skipped, age of winrepo metadata in seconds (0.11026930809020996) is less than winrepo_cache_expire_min (1800) +2020-03-06 11:12:13,447 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.110269) +2020-03-06 11:12:13,571 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,588 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,588 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,588 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,588 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,588 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,588 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,603 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,618 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,634 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:12:13,650 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 11:12:13,681 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:12:13,681 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.344367) +2020-03-06 11:12:13,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:13,728 [salt.utils.http :234 ][DEBUG ][4804] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 11:12:13,728 [salt.utils.http :235 ][DEBUG ][4804] Using backend: tornado +2020-03-06 11:12:17,407 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 11:12:18,252 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.915442) +2020-03-06 11:12:18,252 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,268 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,283 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,283 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,283 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,283 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,300 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 11:12:18,300 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.963133) +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,330 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,330 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,330 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,330 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,330 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,330 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:18,330 [salt.state :320 ][INFO ][4804] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 11:12:18,330 [salt.state :1000][DEBUG ][4804] Refreshing modules... +2020-03-06 11:12:18,377 [salt.state :966 ][INFO ][4804] Loading fresh modules for state activity +2020-03-06 11:12:18,457 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:18,457 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:18,457 [salt.state :1997][INFO ][4804] Completed state [kdiff3] at time 11:12:18.457226 (duration_in_ms=5041.682) +2020-03-06 11:12:18,471 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded config.option +2020-03-06 11:12:18,471 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pkg.install +2020-03-06 11:12:18,471 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pkg.installed +2020-03-06 11:12:18,487 [salt.state :1819][INFO ][4804] Running state [git] at time 11:12:18.487307 +2020-03-06 11:12:18,487 [salt.state :1852][INFO ][4804] Executing state pkg.installed for [git] +2020-03-06 11:12:19,191 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt.secret_key, ret: _|- +2020-03-06 11:12:19,191 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt:secret_key, ret: _|- +2020-03-06 11:12:19,488 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet.api_key, ret: _|- +2020-03-06 11:12:19,488 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet:api_key, ret: _|- +2020-03-06 11:12:19,832 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded reg.read_value +2020-03-06 11:12:19,989 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops.api_key, ret: _|- +2020-03-06 11:12:19,989 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops:api_key, ret: _|- +2020-03-06 11:12:27,535 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded platform.is_windows +2020-03-06 11:12:27,535 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded path.which +2020-03-06 11:12:27,583 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 11:12:27,583 [salt.loaded.int.module.win_pkg:802 ][INFO ][4804] Refresh skipped, age of winrepo metadata in seconds (14.246036529541016) is less than winrepo_cache_expire_min (1800) +2020-03-06 11:12:27,583 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:14.246037) +2020-03-06 11:12:27,598 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,598 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,598 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,598 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,613 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,613 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,613 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,613 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,613 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,629 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,629 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,629 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,629 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,629 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,661 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:12:27,691 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 11:12:27,723 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:12:27,723 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:14.385915) +2020-03-06 11:12:27,723 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,723 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,738 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,738 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,738 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,738 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,738 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,754 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,754 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,754 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,754 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,754 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,770 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,770 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:27,785 [salt.utils.http :234 ][DEBUG ][4804] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 11:12:27,785 [salt.utils.http :235 ][DEBUG ][4804] Using backend: tornado +2020-03-06 11:12:31,525 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 11:12:47,030 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:33.693284) +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,045 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,060 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,060 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,060 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,060 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,077 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 11:12:47,077 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:33.740497) +2020-03-06 11:12:47,077 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,092 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,107 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:47,107 [salt.state :320 ][INFO ][4804] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' + +2020-03-06 11:12:47,107 [salt.state :1000][DEBUG ][4804] Refreshing modules... +2020-03-06 11:12:47,140 [salt.state :966 ][INFO ][4804] Loading fresh modules for state activity +2020-03-06 11:12:47,201 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:47,217 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:47,217 [salt.state :1997][INFO ][4804] Completed state [git] at time 11:12:47.217194 (duration_in_ms=28729.887) +2020-03-06 11:12:47,217 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded config.option +2020-03-06 11:12:47,217 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pkg.install +2020-03-06 11:12:47,232 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pkg.installed +2020-03-06 11:12:47,232 [salt.state :1819][INFO ][4804] Running state [7zip] at time 11:12:47.232829 +2020-03-06 11:12:47,232 [salt.state :1852][INFO ][4804] Executing state pkg.installed for [7zip] +2020-03-06 11:12:47,779 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt.secret_key, ret: _|- +2020-03-06 11:12:47,779 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt:secret_key, ret: _|- +2020-03-06 11:12:48,030 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet.api_key, ret: _|- +2020-03-06 11:12:48,030 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet:api_key, ret: _|- +2020-03-06 11:12:48,248 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded reg.read_value +2020-03-06 11:12:48,358 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops.api_key, ret: _|- +2020-03-06 11:12:48,358 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops:api_key, ret: _|- +2020-03-06 11:12:54,297 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded platform.is_windows +2020-03-06 11:12:54,312 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded path.which +2020-03-06 11:12:54,343 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 11:12:54,343 [salt.loaded.int.module.win_pkg:802 ][INFO ][4804] Refresh skipped, age of winrepo metadata in seconds (41.00618886947632) is less than winrepo_cache_expire_min (1800) +2020-03-06 11:12:54,343 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:41.006189) +2020-03-06 11:12:54,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,343 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,358 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,374 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,374 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,374 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,391 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:12:54,406 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 11:12:54,422 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:12:54,422 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:41.085204) +2020-03-06 11:12:54,437 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,437 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,437 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,455 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,455 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,455 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,455 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,455 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:54,484 [salt.utils.http :234 ][DEBUG ][4804] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 11:12:54,484 [salt.utils.http :235 ][DEBUG ][4804] Using backend: tornado +2020-03-06 11:12:56,353 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 11:12:56,978 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:43.640939) +2020-03-06 11:12:56,978 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,978 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:56,993 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,009 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,009 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,009 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,025 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 11:12:57,025 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4804] Using existing pkg metadata db for saltenv 'base' (age is 0:00:43.687839) +2020-03-06 11:12:57,025 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,025 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,040 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,057 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-21-2568609425-2151263660-1142372514-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,057 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4804] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:12:57,071 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 11:12:57,088 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 11:12:57,088 [salt.state :320 ][INFO ][4804] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 11:12:57,088 [salt.state :1000][DEBUG ][4804] Refreshing modules... +2020-03-06 11:12:57,118 [salt.state :966 ][INFO ][4804] Loading fresh modules for state activity +2020-03-06 11:12:57,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded jinja.render +2020-03-06 11:12:57,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded yaml.render +2020-03-06 11:12:57,181 [salt.state :1997][INFO ][4804] Completed state [7zip] at time 11:12:57.181284 (duration_in_ms=9948.455) +2020-03-06 11:12:57,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded config.option +2020-03-06 11:12:57,198 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded module.run +2020-03-06 11:12:57,198 [salt.state :1819][INFO ][4804] Running state [windows_environment.refresh.path] at time 11:12:57.198006 +2020-03-06 11:12:57,198 [salt.state :1852][INFO ][4804] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 11:12:57,198 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded windows_environment.refresh +2020-03-06 11:12:57,198 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded cmd.run +2020-03-06 11:12:57,198 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 11:12:57,212 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 11:12:57,212 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4804] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 11:12:57,212 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded environ.get +2020-03-06 11:12:57,212 [py.warnings :919 ][WARNING ][4804] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 11:12:57,212 [py.warnings :919 ][WARNING ][4804] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 11:12:57,228 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded event.fire +2020-03-06 11:12:57,228 [salt.utils.event :322 ][DEBUG ][4804] SaltEvent PUB socket URI: 4510 +2020-03-06 11:12:57,228 [salt.utils.event :323 ][DEBUG ][4804] SaltEvent PULL socket URI: 4511 +2020-03-06 11:12:57,228 [salt.utils.event :737 ][DEBUG ][4804] Sending event: tag = environ_setenv; data = {'_stamp': '2020-03-06T19:12:57.228157', 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'clear_all': False, 'false_unsets': False, 'permanent': False} +2020-03-06 11:12:57,228 [salt.transport.ipc:364 ][DEBUG ][4804] Closing IPCMessageClient instance +2020-03-06 11:12:57,228 [salt.state :320 ][INFO ][4804] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 11:12:57,228 [salt.state :1997][INFO ][4804] Completed state [windows_environment.refresh.path] at time 11:12:57.228157 (duration_in_ms=30.151) +2020-03-06 11:12:57,228 [salt.state :1819][INFO ][4804] Running state [chocolatey.bootstrap] at time 11:12:57.228157 +2020-03-06 11:12:57,228 [salt.state :1852][INFO ][4804] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 11:12:57,743 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt.secret_key, ret: _|- +2020-03-06 11:12:57,743 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: ifttt:secret_key, ret: _|- +2020-03-06 11:12:57,979 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet.api_key, ret: _|- +2020-03-06 11:12:57,979 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: pushbullet:api_key, ret: _|- +2020-03-06 11:12:58,182 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded reg.read_value +2020-03-06 11:12:58,275 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops.api_key, ret: _|- +2020-03-06 11:12:58,275 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: victorops:api_key, ret: _|- +2020-03-06 11:13:03,885 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded platform.is_windows +2020-03-06 11:13:04,072 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded path.which +2020-03-06 11:13:04,213 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 11:13:04,260 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded apache.config +2020-03-06 11:13:04,260 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded apache.a2enconf +2020-03-06 11:13:04,260 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded apache.a2ensite +2020-03-06 11:13:04,275 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 11:13:04,291 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 11:13:04,291 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 11:13:04,291 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 11:13:04,291 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 11:13:04,291 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 11:13:04,291 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto3_sns.topic_exists +2020-03-06 11:13:04,291 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_apigateway.describe_apis +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_asg.exists +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cfn.exists +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudtrail.exists +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 11:13:04,306 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_dynamodb.exists +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_ec2.get_key +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elasticache.exists +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elb.exists +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_iam.get_user +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_iam.role_exists +2020-03-06 11:13:04,322 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_iot.policy_exists +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_kinesis.exists +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_kms.describe_key +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_lambda.function_exists +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_asg.exists +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_rds.exists +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_route53.get_record +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_s3.get_object_metadata +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_s3_bucket.exists +2020-03-06 11:13:04,338 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_secgroup.exists +2020-03-06 11:13:04,354 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_sns.exists +2020-03-06 11:13:04,354 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_sqs.exists +2020-03-06 11:13:04,354 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded boto_vpc.exists +2020-03-06 11:13:04,354 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded bower.list +2020-03-06 11:13:04,354 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded chef.client +2020-03-06 11:13:04,354 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded cimc.get_system_info +2020-03-06 11:13:04,369 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded cisconso.set_data_value +2020-03-06 11:13:04,369 [salt.loader :1577][DEBUG ][4804] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 11:13:04,369 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded ddns.update +2020-03-06 11:13:04,369 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded chassis.cmd +2020-03-06 11:13:04,386 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:13:04,400 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:13:04,416 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:13:04,432 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:13:04,635 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded esxi.cmd +2020-03-06 11:13:04,635 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:04,885 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: git version 2.23.0.windows.1 +2020-03-06 11:13:04,885 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded github.list_users +2020-03-06 11:13:04,885 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded glanceng.image_get +2020-03-06 11:13:04,885 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded elasticsearch.exists +2020-03-06 11:13:04,900 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: grafana_version, ret: _|- +2020-03-06 11:13:04,900 [salt.loaded.int.module.config:398 ][DEBUG ][4804] key: grafana_version, ret: _|- +2020-03-06 11:13:04,900 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded icinga2.generate_ticket +2020-03-06 11:13:04,900 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded ifttt.trigger_event +2020-03-06 11:13:04,916 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:13:04,931 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:13:04,947 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:13:04,963 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:13:04,995 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:13:05,010 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:13:05,025 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 11:13:05,025 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.domain_get +2020-03-06 11:13:05,025 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.endpoint_get +2020-03-06 11:13:05,041 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.group_get +2020-03-06 11:13:05,041 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.project_get +2020-03-06 11:13:05,041 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.role_get +2020-03-06 11:13:05,041 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.role_grant +2020-03-06 11:13:05,041 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.service_get +2020-03-06 11:13:05,041 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded keystoneng.user_get +2020-03-06 11:13:05,057 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 11:13:05,072 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 11:13:05,088 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 11:13:05,120 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 11:13:05,135 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:13:05,151 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:13:05,151 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:13:05,151 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:13:05,151 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:13:05,166 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded lxd.version +2020-03-06 11:13:05,166 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded memcached.status +2020-03-06 11:13:05,166 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mongodb.db_exists +2020-03-06 11:13:05,166 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mongodb.user_exists +2020-03-06 11:13:05,166 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:13:05,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:13:05,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:13:05,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded mssql.version +2020-03-06 11:13:05,181 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_networks +2020-03-06 11:13:05,197 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_subnets +2020-03-06 11:13:05,197 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_subnets +2020-03-06 11:13:05,197 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded neutronng.list_subnets +2020-03-06 11:13:05,197 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded npm.list +2020-03-06 11:13:05,213 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nxos.cmd +2020-03-06 11:13:05,213 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 11:13:05,229 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 11:13:05,244 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded panos.commit +2020-03-06 11:13:05,244 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pdbedit.create +2020-03-06 11:13:05,244 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded pecl.list +2020-03-06 11:13:05,260 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 11:13:05,275 [salt.loader :1577][DEBUG ][4804] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 11:13:05,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.cluster_exists +2020-03-06 11:13:05,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.user_exists +2020-03-06 11:13:05,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.create_extension +2020-03-06 11:13:05,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.group_create +2020-03-06 11:13:05,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.datadir_init +2020-03-06 11:13:05,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.language_create +2020-03-06 11:13:05,275 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.privileges_grant +2020-03-06 11:13:05,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.schema_exists +2020-03-06 11:13:05,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.tablespace_exists +2020-03-06 11:13:05,289 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded postgres.user_exists +2020-03-06 11:13:05,317 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 11:13:05,317 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded selinux.getenforce +2020-03-06 11:13:05,331 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded splunk.list_users +2020-03-06 11:13:05,331 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded splunk_search.get +2020-03-06 11:13:05,346 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 11:13:05,346 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded tomcat.status +2020-03-06 11:13:05,360 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded vagrant.version +2020-03-06 11:13:05,360 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded victorops.create_event +2020-03-06 11:13:05,360 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded win_iis.create_site +2020-03-06 11:13:05,374 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded win_snmp.get_agent_settings +2020-03-06 11:13:05,374 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded wordpress.show_plugin +2020-03-06 11:13:05,374 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded x509.get_pem_entry +2020-03-06 11:13:05,374 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded xmpp.send_msg +2020-03-06 11:13:05,388 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded zk_concurrency.lock +2020-03-06 11:13:05,388 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded zonecfg.create +2020-03-06 11:13:05,388 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded zookeeper.create +2020-03-06 11:13:05,402 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 11:13:05,402 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 11:13:05,542 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 11:13:05,556 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4804] retcode: 1 +2020-03-06 11:13:05,556 [salt.state :915 ][DEBUG ][4804] Last command return code: 1 +2020-03-06 11:13:05,571 [salt.utils.http :234 ][DEBUG ][4804] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 11:13:05,571 [salt.utils.http :235 ][DEBUG ][4804] Using backend: tornado +2020-03-06 11:13:05,739 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:11,780 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: Preparing: C:\f53dce64550efa42ebd68c7af302\header.bmp... +Preparing: C:\f53dce64550efa42ebd68c7af302\SplashScreen.bmp... +Preparing: C:\f53dce64550efa42ebd68c7af302\watermark.bmp... +Preparing: C:\f53dce64550efa42ebd68c7af302\DisplayIcon.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Print.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate1.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate2.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate3.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate4.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate5.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate6.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate7.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Rotate8.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Save.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\Setup.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\stop.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\SysReqMet.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\SysReqNotMet.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\Graphics\warn.ico... +Preparing: C:\f53dce64550efa42ebd68c7af302\1033\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1042\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1041\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1037\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1025\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1035\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1030\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1044\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1043\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1040\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1029\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1031\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1036\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1032\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1038\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\2052\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1028\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\3076\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1055\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1053\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\3082\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\2070\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1046\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1049\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\1045\LocalizedData.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\Client\Parameterinfo.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\Extended\Parameterinfo.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\ParameterInfo.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\Strings.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\UiInfo.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\Client\UiInfo.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\Extended\UiInfo.xml... +Preparing: C:\f53dce64550efa42ebd68c7af302\SetupUi.xsd... +Preparing: C:\f53dce64550efa42ebd68c7af302\DHtmlHeader.html... +Preparing: C:\f53dce64550efa42ebd68c7af302\1033\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1025\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1028\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1030\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1031\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1029\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1036\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1035\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1032\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1038\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1037\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1040\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1041\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1042\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1044\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1043\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1046\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1045\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1055\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1053\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\2052\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\1049\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\3082\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\2070\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\3076\eula.rtf... +Preparing: C:\f53dce64550efa42ebd68c7af302\Setup.exe... +Preparing: C:\f53dce64550efa42ebd68c7af302\SetupUtility.exe... +Preparing: C:\f53dce64550efa42ebd68c7af302\SetupEngine.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1025\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1033\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1029\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1030\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1035\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1031\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1036\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1032\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1028\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\2052\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\3076\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1042\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1041\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1037\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1044\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1053\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1055\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1040\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1045\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1046\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1049\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1038\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\2070\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\3082\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\1043\SetupResources.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\SetupUi.dll... +Preparing: C:\f53dce64550efa42ebd68c7af302\sqmapi.dll... +2020-03-06 11:13:11,780 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 11:13:16,015 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: Getting latest version of the Chocolatey package for download. +Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +Downloading 7-Zip commandline tool prior to extraction. +Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +Installing chocolatey on this machine +Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. +Restricting write permissions to Administrators +We are setting up the Chocolatey package repository. +The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + +Creating Chocolatey folders if they do not already exist. + +WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. +chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. +PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +WARNING: Not setting tab completion: Profile file does not exist at +'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +Chocolatey (choco.exe) is now ready. +You can call choco from anywhere, command line or powershell by typing choco. +Run choco /? for a list of functions. +You may need to shut down and restart powershell and/or consoles + first prior to using choco. +Ensuring chocolatey commands are on the path +Ensuring chocolatey.nupkg is in the lib folder +2020-03-06 11:13:16,031 [salt.state :320 ][INFO ][4804] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 11:13:16,031 [salt.state :1997][INFO ][4804] Completed state [chocolatey.bootstrap] at time 11:13:16.031024 (duration_in_ms=18802.867) +2020-03-06 11:13:16,031 [salt.state :1819][INFO ][4804] Running state [windirstat] at time 11:13:16.031024 +2020-03-06 11:13:16,031 [salt.state :1852][INFO ][4804] Executing state chocolatey.installed for [windirstat] +2020-03-06 11:13:16,046 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:16,921 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: chocolatey|0.10.15 +2020-03-06 11:13:16,921 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:17,359 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: 0.10.15 +2020-03-06 11:13:17,359 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4804] output: 0.10.15 +2020-03-06 11:13:17,359 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:21,047 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 11:13:21,047 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:21,828 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 11:13:21,843 [salt.state :320 ][INFO ][4804] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 11:13:21,843 [salt.state :1997][INFO ][4804] Completed state [windirstat] at time 11:13:21.843686 (duration_in_ms=5812.662) +2020-03-06 11:13:21,843 [salt.state :1819][INFO ][4804] Running state [notepadplusplus] at time 11:13:21.843686 +2020-03-06 11:13:21,843 [salt.state :1852][INFO ][4804] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 11:13:21,843 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:22,593 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 11:13:22,593 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:31,007 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +notepadplusplus +By installing you accept licenses for the packages. + +chocolatey-core.extension v1.3.5.1 [Approved] +chocolatey-core.extension package files install completed. Performing other installation steps. + Installed/updated chocolatey-core extensions. + The install of chocolatey-core.extension was successful. + Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' + +notepadplusplus.install v7.8.5 +notepadplusplus.install package files install completed. Performing other installation steps. +Installing 64-bit notepadplusplus.install... +notepadplusplus.install has been installed. +notepadplusplus.install installed to 'C:\Program Files\Notepad++' +Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program files\notepad++\notepad++.exe'. + notepadplusplus.install may be able to be automatically uninstalled. + The install of notepadplusplus.install was successful. + Software installed as 'exe', install location is likely default. + +notepadplusplus v7.8.5 [Approved] +notepadplusplus package files install completed. Performing other installation steps. + The install of notepadplusplus was successful. + Software install location not explicitly set, could be in package or + default install location if installer. + +Chocolatey installed 3/3 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 11:13:31,007 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:13:31,867 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +windirstat|1.1.2.20161210 +2020-03-06 11:13:31,867 [salt.state :320 ][INFO ][4804] Made the following changes: +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' +'notepadplusplus' changed from 'absent' to '['7.8.5']' + +2020-03-06 11:13:31,867 [salt.state :1997][INFO ][4804] Completed state [notepadplusplus] at time 11:13:31.867364 (duration_in_ms=10023.678) +2020-03-06 11:13:31,867 [salt.state :1819][INFO ][4804] Running state [telnet-client] at time 11:13:31.867364 +2020-03-06 11:13:31,867 [salt.state :1852][INFO ][4804] Executing state win_servermanager.installed for [telnet-client] +2020-03-06 11:13:31,883 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4804] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 11:13:31,883 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 11:13:33,414 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: [ + { + "DisplayName": "Active Directory Certificate Services", + "Name": "AD-Certificate", + "Installed": false + }, + { + "DisplayName": "Certification Authority", + "Name": "ADCS-Cert-Authority", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Policy Web Service", + "Name": "ADCS-Enroll-Web-Pol", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Web Service", + "Name": "ADCS-Enroll-Web-Svc", + "Installed": false + }, + { + "DisplayName": "Certification Authority Web Enrollment", + "Name": "ADCS-Web-Enrollment", + "Installed": false + }, + { + "DisplayName": "Network Device Enrollment Service", + "Name": "ADCS-Device-Enrollment", + "Installed": false + }, + { + "DisplayName": "Online Responder", + "Name": "ADCS-Online-Cert", + "Installed": false + }, + { + "DisplayName": "Active Directory Domain Services", + "Name": "AD-Domain-Services", + "Installed": false + }, + { + "DisplayName": "Active Directory Federation Services", + "Name": "ADFS-Federation", + "Installed": false + }, + { + "DisplayName": "Active Directory Lightweight Directory Services", + "Name": "ADLDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services", + "Name": "ADRMS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Server", + "Name": "ADRMS-Server", + "Installed": false + }, + { + "DisplayName": "Identity Federation Support", + "Name": "ADRMS-Identity", + "Installed": false + }, + { + "DisplayName": "Device Health Attestation", + "Name": "DeviceHealthAttestationService", + "Installed": false + }, + { + "DisplayName": "DHCP Server", + "Name": "DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server", + "Name": "DNS", + "Installed": false + }, + { + "DisplayName": "Fax Server", + "Name": "Fax", + "Installed": false + }, + { + "DisplayName": "File and Storage Services", + "Name": "FileAndStorage-Services", + "Installed": true + }, + { + "DisplayName": "File and iSCSI Services", + "Name": "File-Services", + "Installed": false + }, + { + "DisplayName": "File Server", + "Name": "FS-FileServer", + "Installed": false + }, + { + "DisplayName": "BranchCache for Network Files", + "Name": "FS-BranchCache", + "Installed": false + }, + { + "DisplayName": "Data Deduplication", + "Name": "FS-Data-Deduplication", + "Installed": false + }, + { + "DisplayName": "DFS Namespaces", + "Name": "FS-DFS-Namespace", + "Installed": false + }, + { + "DisplayName": "DFS Replication", + "Name": "FS-DFS-Replication", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager", + "Name": "FS-Resource-Manager", + "Installed": false + }, + { + "DisplayName": "File Server VSS Agent Service", + "Name": "FS-VSS-Agent", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Server", + "Name": "FS-iSCSITarget-Server", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Storage Provider (VDS and VSS hardware providers)", + "Name": "iSCSITarget-VSS-VDS", + "Installed": false + }, + { + "DisplayName": "Server for NFS", + "Name": "FS-NFS-Service", + "Installed": false + }, + { + "DisplayName": "Work Folders", + "Name": "FS-SyncShareService", + "Installed": false + }, + { + "DisplayName": "Storage Services", + "Name": "Storage-Services", + "Installed": true + }, + { + "DisplayName": "Host Guardian Service", + "Name": "HostGuardianServiceRole", + "Installed": false + }, + { + "DisplayName": "Hyper-V", + "Name": "Hyper-V", + "Installed": false + }, + { + "DisplayName": "MultiPoint Services", + "Name": "MultiPointServerRole", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services", + "Name": "NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services", + "Name": "Print-Services", + "Installed": false + }, + { + "DisplayName": "Print Server", + "Name": "Print-Server", + "Installed": false + }, + { + "DisplayName": "Distributed Scan Server", + "Name": "Print-Scan-Server", + "Installed": false + }, + { + "DisplayName": "Internet Printing", + "Name": "Print-Internet", + "Installed": false + }, + { + "DisplayName": "LPD Service", + "Name": "Print-LPD-Service", + "Installed": false + }, + { + "DisplayName": "Remote Access", + "Name": "RemoteAccess", + "Installed": false + }, + { + "DisplayName": "DirectAccess and VPN (RAS)", + "Name": "DirectAccess-VPN", + "Installed": false + }, + { + "DisplayName": "Routing", + "Name": "Routing", + "Installed": false + }, + { + "DisplayName": "Web Application Proxy", + "Name": "Web-Application-Proxy", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services", + "Name": "Remote-Desktop-Services", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Connection Broker", + "Name": "RDS-Connection-Broker", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway", + "Name": "RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing", + "Name": "RDS-Licensing", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Session Host", + "Name": "RDS-RD-Server", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Virtualization Host", + "Name": "RDS-Virtualization", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Web Access", + "Name": "RDS-Web-Access", + "Installed": false + }, + { + "DisplayName": "Volume Activation Services", + "Name": "VolumeActivation", + "Installed": false + }, + { + "DisplayName": "Web Server (IIS)", + "Name": "Web-Server", + "Installed": false + }, + { + "DisplayName": "Web Server", + "Name": "Web-WebServer", + "Installed": false + }, + { + "DisplayName": "Common HTTP Features", + "Name": "Web-Common-Http", + "Installed": false + }, + { + "DisplayName": "Default Document", + "Name": "Web-Default-Doc", + "Installed": false + }, + { + "DisplayName": "Directory Browsing", + "Name": "Web-Dir-Browsing", + "Installed": false + }, + { + "DisplayName": "HTTP Errors", + "Name": "Web-Http-Errors", + "Installed": false + }, + { + "DisplayName": "Static Content", + "Name": "Web-Static-Content", + "Installed": false + }, + { + "DisplayName": "HTTP Redirection", + "Name": "Web-Http-Redirect", + "Installed": false + }, + { + "DisplayName": "WebDAV Publishing", + "Name": "Web-DAV-Publishing", + "Installed": false + }, + { + "DisplayName": "Health and Diagnostics", + "Name": "Web-Health", + "Installed": false + }, + { + "DisplayName": "HTTP Logging", + "Name": "Web-Http-Logging", + "Installed": false + }, + { + "DisplayName": "Custom Logging", + "Name": "Web-Custom-Logging", + "Installed": false + }, + { + "DisplayName": "Logging Tools", + "Name": "Web-Log-Libraries", + "Installed": false + }, + { + "DisplayName": "ODBC Logging", + "Name": "Web-ODBC-Logging", + "Installed": false + }, + { + "DisplayName": "Request Monitor", + "Name": "Web-Request-Monitor", + "Installed": false + }, + { + "DisplayName": "Tracing", + "Name": "Web-Http-Tracing", + "Installed": false + }, + { + "DisplayName": "Performance", + "Name": "Web-Performance", + "Installed": false + }, + { + "DisplayName": "Static Content Compression", + "Name": "Web-Stat-Compression", + "Installed": false + }, + { + "DisplayName": "Dynamic Content Compression", + "Name": "Web-Dyn-Compression", + "Installed": false + }, + { + "DisplayName": "Security", + "Name": "Web-Security", + "Installed": false + }, + { + "DisplayName": "Request Filtering", + "Name": "Web-Filtering", + "Installed": false + }, + { + "DisplayName": "Basic Authentication", + "Name": "Web-Basic-Auth", + "Installed": false + }, + { + "DisplayName": "Centralized SSL Certificate Support", + "Name": "Web-CertProvider", + "Installed": false + }, + { + "DisplayName": "Client Certificate Mapping Authentication", + "Name": "Web-Client-Auth", + "Installed": false + }, + { + "DisplayName": "Digest Authentication", + "Name": "Web-Digest-Auth", + "Installed": false + }, + { + "DisplayName": "IIS Client Certificate Mapping Authentication", + "Name": "Web-Cert-Auth", + "Installed": false + }, + { + "DisplayName": "IP and Domain Restrictions", + "Name": "Web-IP-Security", + "Installed": false + }, + { + "DisplayName": "URL Authorization", + "Name": "Web-Url-Auth", + "Installed": false + }, + { + "DisplayName": "Windows Authentication", + "Name": "Web-Windows-Auth", + "Installed": false + }, + { + "DisplayName": "Application Development", + "Name": "Web-App-Dev", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 3.5", + "Name": "Web-Net-Ext", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 4.6", + "Name": "Web-Net-Ext45", + "Installed": false + }, + { + "DisplayName": "Application Initialization", + "Name": "Web-AppInit", + "Installed": false + }, + { + "DisplayName": "ASP", + "Name": "Web-ASP", + "Installed": false + }, + { + "DisplayName": "ASP.NET 3.5", + "Name": "Web-Asp-Net", + "Installed": false + }, + { + "DisplayName": "ASP.NET 4.6", + "Name": "Web-Asp-Net45", + "Installed": false + }, + { + "DisplayName": "CGI", + "Name": "Web-CGI", + "Installed": false + }, + { + "DisplayName": "ISAPI Extensions", + "Name": "Web-ISAPI-Ext", + "Installed": false + }, + { + "DisplayName": "ISAPI Filters", + "Name": "Web-ISAPI-Filter", + "Installed": false + }, + { + "DisplayName": "Server Side Includes", + "Name": "Web-Includes", + "Installed": false + }, + { + "DisplayName": "WebSocket Protocol", + "Name": "Web-WebSockets", + "Installed": false + }, + { + "DisplayName": "FTP Server", + "Name": "Web-Ftp-Server", + "Installed": false + }, + { + "DisplayName": "FTP Service", + "Name": "Web-Ftp-Service", + "Installed": false + }, + { + "DisplayName": "FTP Extensibility", + "Name": "Web-Ftp-Ext", + "Installed": false + }, + { + "DisplayName": "Management Tools", + "Name": "Web-Mgmt-Tools", + "Installed": false + }, + { + "DisplayName": "IIS Management Console", + "Name": "Web-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Compatibility", + "Name": "Web-Mgmt-Compat", + "Installed": false + }, + { + "DisplayName": "IIS 6 Metabase Compatibility", + "Name": "Web-Metabase", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Console", + "Name": "Web-Lgcy-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Scripting Tools", + "Name": "Web-Lgcy-Scripting", + "Installed": false + }, + { + "DisplayName": "IIS 6 WMI Compatibility", + "Name": "Web-WMI", + "Installed": false + }, + { + "DisplayName": "IIS Management Scripts and Tools", + "Name": "Web-Scripting-Tools", + "Installed": false + }, + { + "DisplayName": "Management Service", + "Name": "Web-Mgmt-Service", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services", + "Name": "WDS", + "Installed": false + }, + { + "DisplayName": "Deployment Server", + "Name": "WDS-Deployment", + "Installed": false + }, + { + "DisplayName": "Transport Server", + "Name": "WDS-Transport", + "Installed": false + }, + { + "DisplayName": "Windows Server Essentials Experience", + "Name": "ServerEssentialsRole", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services", + "Name": "UpdateServices", + "Installed": false + }, + { + "DisplayName": "WID Connectivity", + "Name": "UpdateServices-WidDB", + "Installed": false + }, + { + "DisplayName": "WSUS Services", + "Name": "UpdateServices-Services", + "Installed": false + }, + { + "DisplayName": "SQL Server Connectivity", + "Name": "UpdateServices-DB", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 Features", + "Name": "NET-Framework-Features", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 (includes .NET 2.0 and 3.0)", + "Name": "NET-Framework-Core", + "Installed": false + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-HTTP-Activation", + "Installed": false + }, + { + "DisplayName": "Non-HTTP Activation", + "Name": "NET-Non-HTTP-Activ", + "Installed": false + }, + { + "DisplayName": ".NET Framework 4.6 Features", + "Name": "NET-Framework-45-Features", + "Installed": true + }, + { + "DisplayName": ".NET Framework 4.6", + "Name": "NET-Framework-45-Core", + "Installed": true + }, + { + "DisplayName": "ASP.NET 4.6", + "Name": "NET-Framework-45-ASPNET", + "Installed": false + }, + { + "DisplayName": "WCF Services", + "Name": "NET-WCF-Services45", + "Installed": true + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-WCF-HTTP-Activation45", + "Installed": false + }, + { + "DisplayName": "Message Queuing (MSMQ) Activation", + "Name": "NET-WCF-MSMQ-Activation45", + "Installed": false + }, + { + "DisplayName": "Named Pipe Activation", + "Name": "NET-WCF-Pipe-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Activation", + "Name": "NET-WCF-TCP-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Port Sharing", + "Name": "NET-WCF-TCP-PortSharing45", + "Installed": true + }, + { + "DisplayName": "Background Intelligent Transfer Service (BITS)", + "Name": "BITS", + "Installed": false + }, + { + "DisplayName": "IIS Server Extension", + "Name": "BITS-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "Compact Server", + "Name": "BITS-Compact-Server", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption", + "Name": "BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Network Unlock", + "Name": "BitLocker-NetworkUnlock", + "Installed": false + }, + { + "DisplayName": "BranchCache", + "Name": "BranchCache", + "Installed": false + }, + { + "DisplayName": "Client for NFS", + "Name": "NFS-Client", + "Installed": false + }, + { + "DisplayName": "Containers", + "Name": "Containers", + "Installed": false + }, + { + "DisplayName": "Data Center Bridging", + "Name": "Data-Center-Bridging", + "Installed": false + }, + { + "DisplayName": "Direct Play", + "Name": "Direct-Play", + "Installed": false + }, + { + "DisplayName": "Enhanced Storage", + "Name": "EnhancedStorage", + "Installed": false + }, + { + "DisplayName": "Failover Clustering", + "Name": "Failover-Clustering", + "Installed": false + }, + { + "DisplayName": "Group Policy Management", + "Name": "GPMC", + "Installed": false + }, + { + "DisplayName": "I/O Quality of Service", + "Name": "DiskIo-QoS", + "Installed": false + }, + { + "DisplayName": "IIS Hostable Web Core", + "Name": "Web-WHC", + "Installed": false + }, + { + "DisplayName": "Internet Printing Client", + "Name": "Internet-Print-Client", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Server", + "Name": "IPAM", + "Installed": false + }, + { + "DisplayName": "iSNS Server service", + "Name": "ISNS", + "Installed": false + }, + { + "DisplayName": "LPR Port Monitor", + "Name": "LPR-Port-Monitor", + "Installed": false + }, + { + "DisplayName": "Management OData IIS Extension", + "Name": "ManagementOdata", + "Installed": false + }, + { + "DisplayName": "Media Foundation", + "Name": "Server-Media-Foundation", + "Installed": false + }, + { + "DisplayName": "Message Queuing", + "Name": "MSMQ", + "Installed": false + }, + { + "DisplayName": "Message Queuing Services", + "Name": "MSMQ-Services", + "Installed": false + }, + { + "DisplayName": "Message Queuing Server", + "Name": "MSMQ-Server", + "Installed": false + }, + { + "DisplayName": "Directory Service Integration", + "Name": "MSMQ-Directory", + "Installed": false + }, + { + "DisplayName": "HTTP Support", + "Name": "MSMQ-HTTP-Support", + "Installed": false + }, + { + "DisplayName": "Message Queuing Triggers", + "Name": "MSMQ-Triggers", + "Installed": false + }, + { + "DisplayName": "Multicasting Support", + "Name": "MSMQ-Multicasting", + "Installed": false + }, + { + "DisplayName": "Routing Service", + "Name": "MSMQ-Routing", + "Installed": false + }, + { + "DisplayName": "Message Queuing DCOM Proxy", + "Name": "MSMQ-DCOM", + "Installed": false + }, + { + "DisplayName": "Multipath I/O", + "Name": "Multipath-IO", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector", + "Name": "MultiPoint-Connector", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector Services", + "Name": "MultiPoint-Connector-Services", + "Installed": false + }, + { + "DisplayName": "MultiPoint Manager and MultiPoint Dashboard", + "Name": "MultiPoint-Tools", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing", + "Name": "NLB", + "Installed": false + }, + { + "DisplayName": "Peer Name Resolution Protocol", + "Name": "PNRP", + "Installed": false + }, + { + "DisplayName": "Quality Windows Audio Video Experience", + "Name": "qWave", + "Installed": false + }, + { + "DisplayName": "RAS Connection Manager Administration Kit (CMAK)", + "Name": "CMAK", + "Installed": false + }, + { + "DisplayName": "Remote Assistance", + "Name": "Remote-Assistance", + "Installed": false + }, + { + "DisplayName": "Remote Differential Compression", + "Name": "RDC", + "Installed": false + }, + { + "DisplayName": "Remote Server Administration Tools", + "Name": "RSAT", + "Installed": false + }, + { + "DisplayName": "Feature Administration Tools", + "Name": "RSAT-Feature-Tools", + "Installed": false + }, + { + "DisplayName": "SMTP Server Tools", + "Name": "RSAT-SMTP", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Administration Utilities", + "Name": "RSAT-Feature-Tools-BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Tools", + "Name": "RSAT-Feature-Tools-BitLocker-RemoteAdminTool", + "Installed": false + }, + { + "DisplayName": "BitLocker Recovery Password Viewer", + "Name": "RSAT-Feature-Tools-BitLocker-BdeAducExt", + "Installed": false + }, + { + "DisplayName": "BITS Server Extensions Tools", + "Name": "RSAT-Bits-Server", + "Installed": false + }, + { + "DisplayName": "DataCenterBridging LLDP Tools", + "Name": "RSAT-DataCenterBridging-LLDP-Tools", + "Installed": false + }, + { + "DisplayName": "Failover Clustering Tools", + "Name": "RSAT-Clustering", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Management Tools", + "Name": "RSAT-Clustering-Mgmt", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Module for Windows PowerShell", + "Name": "RSAT-Clustering-PowerShell", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Automation Server", + "Name": "RSAT-Clustering-AutomationServer", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Command Interface", + "Name": "RSAT-Clustering-CmdInterface", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Client", + "Name": "IPAM-Client-Feature", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing Tools", + "Name": "RSAT-NLB", + "Installed": false + }, + { + "DisplayName": "Shielded VM Tools", + "Name": "RSAT-Shielded-VM-Tools", + "Installed": false + }, + { + "DisplayName": "SNMP Tools", + "Name": "RSAT-SNMP", + "Installed": false + }, + { + "DisplayName": "Storage Replica Module for Windows PowerShell", + "Name": "RSAT-Storage-Replica", + "Installed": false + }, + { + "DisplayName": "WINS Server Tools", + "Name": "RSAT-WINS", + "Installed": false + }, + { + "DisplayName": "Role Administration Tools", + "Name": "RSAT-Role-Tools", + "Installed": false + }, + { + "DisplayName": "AD DS and AD LDS Tools", + "Name": "RSAT-AD-Tools", + "Installed": false + }, + { + "DisplayName": "Active Directory module for Windows PowerShell", + "Name": "RSAT-AD-PowerShell", + "Installed": false + }, + { + "DisplayName": "AD DS Tools", + "Name": "RSAT-ADDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Administrative Center", + "Name": "RSAT-AD-AdminCenter", + "Installed": false + }, + { + "DisplayName": "AD DS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADDS-Tools", + "Installed": false + }, + { + "DisplayName": "AD LDS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADLDS", + "Installed": false + }, + { + "DisplayName": "Hyper-V Management Tools", + "Name": "RSAT-Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V GUI Management Tools", + "Name": "Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V Module for Windows PowerShell", + "Name": "Hyper-V-PowerShell", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services Tools", + "Name": "RSAT-RDS-Tools", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway Tools", + "Name": "RSAT-RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Diagnoser Tools", + "Name": "RSAT-RDS-Licensing-Diagnosis-UI", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Tools", + "Name": "RDS-Licensing-UI", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services Tools", + "Name": "UpdateServices-RSAT", + "Installed": false + }, + { + "DisplayName": "API and PowerShell cmdlets", + "Name": "UpdateServices-API", + "Installed": false + }, + { + "DisplayName": "User Interface Management Console", + "Name": "UpdateServices-UI", + "Installed": false + }, + { + "DisplayName": "Active Directory Certificate Services Tools", + "Name": "RSAT-ADCS", + "Installed": false + }, + { + "DisplayName": "Certification Authority Management Tools", + "Name": "RSAT-ADCS-Mgmt", + "Installed": false + }, + { + "DisplayName": "Online Responder Tools", + "Name": "RSAT-Online-Responder", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services Tools", + "Name": "RSAT-ADRMS", + "Installed": false + }, + { + "DisplayName": "DHCP Server Tools", + "Name": "RSAT-DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server Tools", + "Name": "RSAT-DNS-Server", + "Installed": false + }, + { + "DisplayName": "Fax Server Tools", + "Name": "RSAT-Fax", + "Installed": false + }, + { + "DisplayName": "File Services Tools", + "Name": "RSAT-File-Services", + "Installed": false + }, + { + "DisplayName": "DFS Management Tools", + "Name": "RSAT-DFS-Mgmt-Con", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager Tools", + "Name": "RSAT-FSRM-Mgmt", + "Installed": false + }, + { + "DisplayName": "Services for Network File System Management Tools", + "Name": "RSAT-NFS-Admin", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services Tools", + "Name": "RSAT-NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services Tools", + "Name": "RSAT-Print-Services", + "Installed": false + }, + { + "DisplayName": "Remote Access Management Tools", + "Name": "RSAT-RemoteAccess", + "Installed": false + }, + { + "DisplayName": "Remote Access GUI and Command-Line Tools", + "Name": "RSAT-RemoteAccess-Mgmt", + "Installed": false + }, + { + "DisplayName": "Remote Access module for Windows PowerShell", + "Name": "RSAT-RemoteAccess-PowerShell", + "Installed": false + }, + { + "DisplayName": "Volume Activation Tools", + "Name": "RSAT-VA-Tools", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services Tools", + "Name": "WDS-AdminPack", + "Installed": false + }, + { + "DisplayName": "RPC over HTTP Proxy", + "Name": "RPC-over-HTTP-Proxy", + "Installed": false + }, + { + "DisplayName": "Setup and Boot Event Collection", + "Name": "Setup-and-Boot-Event-Collection", + "Installed": false + }, + { + "DisplayName": "Simple TCP/IP Services", + "Name": "Simple-TCPIP", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS File Sharing Support", + "Name": "FS-SMB1", + "Installed": true + }, + { + "DisplayName": "SMB Bandwidth Limit", + "Name": "FS-SMBBW", + "Installed": false + }, + { + "DisplayName": "SMTP Server", + "Name": "SMTP-Server", + "Installed": false + }, + { + "DisplayName": "SNMP Service", + "Name": "SNMP-Service", + "Installed": false + }, + { + "DisplayName": "SNMP WMI Provider", + "Name": "SNMP-WMI-Provider", + "Installed": false + }, + { + "DisplayName": "Telnet Client", + "Name": "Telnet-Client", + "Installed": false + }, + { + "DisplayName": "TFTP Client", + "Name": "TFTP-Client", + "Installed": false + }, + { + "DisplayName": "VM Shielding Tools for Fabric Management", + "Name": "FabricShieldedTools", + "Installed": false + }, + { + "DisplayName": "WebDAV Redirector", + "Name": "WebDAV-Redirector", + "Installed": false + }, + { + "DisplayName": "Windows Biometric Framework", + "Name": "Biometric-Framework", + "Installed": false + }, + { + "DisplayName": "Windows Defender Features", + "Name": "Windows-Defender-Features", + "Installed": false + }, + { + "DisplayName": "Windows Defender", + "Name": "Windows-Defender", + "Installed": false + }, + { + "DisplayName": "GUI for Windows Defender", + "Name": "Windows-Defender-Gui", + "Installed": false + }, + { + "DisplayName": "Windows Identity Foundation 3.5", + "Name": "Windows-Identity-Foundation", + "Installed": false + }, + { + "DisplayName": "Windows Internal Database", + "Name": "Windows-Internal-Database", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell", + "Name": "PowerShellRoot", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 5.1", + "Name": "PowerShell", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 2.0 Engine", + "Name": "PowerShell-V2", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell Desired State Configuration Service", + "Name": "DSC-Service", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell ISE", + "Name": "PowerShell-ISE", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell Web Access", + "Name": "WindowsPowerShellWebAccess", + "Installed": false + }, + { + "DisplayName": "Windows Process Activation Service", + "Name": "WAS", + "Installed": false + }, + { + "DisplayName": "Process Model", + "Name": "WAS-Process-Model", + "Installed": false + }, + { + "DisplayName": ".NET Environment 3.5", + "Name": "WAS-NET-Environment", + "Installed": false + }, + { + "DisplayName": "Configuration APIs", + "Name": "WAS-Config-APIs", + "Installed": false + }, + { + "DisplayName": "Windows Search Service", + "Name": "Search-Service", + "Installed": false + }, + { + "DisplayName": "Windows Server Backup", + "Name": "Windows-Server-Backup", + "Installed": false + }, + { + "DisplayName": "Windows Server Migration Tools", + "Name": "Migration", + "Installed": false + }, + { + "DisplayName": "Windows Standards-Based Storage Management", + "Name": "WindowsStorageManagementService", + "Installed": false + }, + { + "DisplayName": "Windows TIFF IFilter", + "Name": "Windows-TIFF-IFilter", + "Installed": false + }, + { + "DisplayName": "WinRM IIS Extension", + "Name": "WinRM-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "WINS Server", + "Name": "WINS", + "Installed": false + }, + { + "DisplayName": "Wireless LAN Service", + "Name": "Wireless-Networking", + "Installed": false + }, + { + "DisplayName": "WoW64 Support", + "Name": "WoW64-Support", + "Installed": true + }, + { + "DisplayName": "XPS Viewer", + "Name": "XPS-Viewer", + "Installed": false + } +] +2020-03-06 11:13:33,414 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4804] PowerShell: Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json +2020-03-06 11:13:33,414 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 11:13:51,584 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: { + "Success": true, + "RestartNeeded": 1, + "FeatureResult": [ + { + "Id": 44, + "Name": "Telnet-Client", + "DisplayName": "Telnet Client", + "Success": true, + "RestartNeeded": false, + "Message": "", + "SkipReason": 0 + } + ], + "ExitCode": 0 +} +2020-03-06 11:13:51,584 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4804] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 11:13:51,584 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 11:13:52,334 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4804] stdout: [ + { + "DisplayName": "Active Directory Certificate Services", + "Name": "AD-Certificate", + "Installed": false + }, + { + "DisplayName": "Certification Authority", + "Name": "ADCS-Cert-Authority", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Policy Web Service", + "Name": "ADCS-Enroll-Web-Pol", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Web Service", + "Name": "ADCS-Enroll-Web-Svc", + "Installed": false + }, + { + "DisplayName": "Certification Authority Web Enrollment", + "Name": "ADCS-Web-Enrollment", + "Installed": false + }, + { + "DisplayName": "Network Device Enrollment Service", + "Name": "ADCS-Device-Enrollment", + "Installed": false + }, + { + "DisplayName": "Online Responder", + "Name": "ADCS-Online-Cert", + "Installed": false + }, + { + "DisplayName": "Active Directory Domain Services", + "Name": "AD-Domain-Services", + "Installed": false + }, + { + "DisplayName": "Active Directory Federation Services", + "Name": "ADFS-Federation", + "Installed": false + }, + { + "DisplayName": "Active Directory Lightweight Directory Services", + "Name": "ADLDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services", + "Name": "ADRMS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Server", + "Name": "ADRMS-Server", + "Installed": false + }, + { + "DisplayName": "Identity Federation Support", + "Name": "ADRMS-Identity", + "Installed": false + }, + { + "DisplayName": "Device Health Attestation", + "Name": "DeviceHealthAttestationService", + "Installed": false + }, + { + "DisplayName": "DHCP Server", + "Name": "DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server", + "Name": "DNS", + "Installed": false + }, + { + "DisplayName": "Fax Server", + "Name": "Fax", + "Installed": false + }, + { + "DisplayName": "File and Storage Services", + "Name": "FileAndStorage-Services", + "Installed": true + }, + { + "DisplayName": "File and iSCSI Services", + "Name": "File-Services", + "Installed": false + }, + { + "DisplayName": "File Server", + "Name": "FS-FileServer", + "Installed": false + }, + { + "DisplayName": "BranchCache for Network Files", + "Name": "FS-BranchCache", + "Installed": false + }, + { + "DisplayName": "Data Deduplication", + "Name": "FS-Data-Deduplication", + "Installed": false + }, + { + "DisplayName": "DFS Namespaces", + "Name": "FS-DFS-Namespace", + "Installed": false + }, + { + "DisplayName": "DFS Replication", + "Name": "FS-DFS-Replication", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager", + "Name": "FS-Resource-Manager", + "Installed": false + }, + { + "DisplayName": "File Server VSS Agent Service", + "Name": "FS-VSS-Agent", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Server", + "Name": "FS-iSCSITarget-Server", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Storage Provider (VDS and VSS hardware providers)", + "Name": "iSCSITarget-VSS-VDS", + "Installed": false + }, + { + "DisplayName": "Server for NFS", + "Name": "FS-NFS-Service", + "Installed": false + }, + { + "DisplayName": "Work Folders", + "Name": "FS-SyncShareService", + "Installed": false + }, + { + "DisplayName": "Storage Services", + "Name": "Storage-Services", + "Installed": true + }, + { + "DisplayName": "Host Guardian Service", + "Name": "HostGuardianServiceRole", + "Installed": false + }, + { + "DisplayName": "Hyper-V", + "Name": "Hyper-V", + "Installed": false + }, + { + "DisplayName": "MultiPoint Services", + "Name": "MultiPointServerRole", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services", + "Name": "NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services", + "Name": "Print-Services", + "Installed": false + }, + { + "DisplayName": "Print Server", + "Name": "Print-Server", + "Installed": false + }, + { + "DisplayName": "Distributed Scan Server", + "Name": "Print-Scan-Server", + "Installed": false + }, + { + "DisplayName": "Internet Printing", + "Name": "Print-Internet", + "Installed": false + }, + { + "DisplayName": "LPD Service", + "Name": "Print-LPD-Service", + "Installed": false + }, + { + "DisplayName": "Remote Access", + "Name": "RemoteAccess", + "Installed": false + }, + { + "DisplayName": "DirectAccess and VPN (RAS)", + "Name": "DirectAccess-VPN", + "Installed": false + }, + { + "DisplayName": "Routing", + "Name": "Routing", + "Installed": false + }, + { + "DisplayName": "Web Application Proxy", + "Name": "Web-Application-Proxy", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services", + "Name": "Remote-Desktop-Services", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Connection Broker", + "Name": "RDS-Connection-Broker", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway", + "Name": "RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing", + "Name": "RDS-Licensing", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Session Host", + "Name": "RDS-RD-Server", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Virtualization Host", + "Name": "RDS-Virtualization", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Web Access", + "Name": "RDS-Web-Access", + "Installed": false + }, + { + "DisplayName": "Volume Activation Services", + "Name": "VolumeActivation", + "Installed": false + }, + { + "DisplayName": "Web Server (IIS)", + "Name": "Web-Server", + "Installed": false + }, + { + "DisplayName": "Web Server", + "Name": "Web-WebServer", + "Installed": false + }, + { + "DisplayName": "Common HTTP Features", + "Name": "Web-Common-Http", + "Installed": false + }, + { + "DisplayName": "Default Document", + "Name": "Web-Default-Doc", + "Installed": false + }, + { + "DisplayName": "Directory Browsing", + "Name": "Web-Dir-Browsing", + "Installed": false + }, + { + "DisplayName": "HTTP Errors", + "Name": "Web-Http-Errors", + "Installed": false + }, + { + "DisplayName": "Static Content", + "Name": "Web-Static-Content", + "Installed": false + }, + { + "DisplayName": "HTTP Redirection", + "Name": "Web-Http-Redirect", + "Installed": false + }, + { + "DisplayName": "WebDAV Publishing", + "Name": "Web-DAV-Publishing", + "Installed": false + }, + { + "DisplayName": "Health and Diagnostics", + "Name": "Web-Health", + "Installed": false + }, + { + "DisplayName": "HTTP Logging", + "Name": "Web-Http-Logging", + "Installed": false + }, + { + "DisplayName": "Custom Logging", + "Name": "Web-Custom-Logging", + "Installed": false + }, + { + "DisplayName": "Logging Tools", + "Name": "Web-Log-Libraries", + "Installed": false + }, + { + "DisplayName": "ODBC Logging", + "Name": "Web-ODBC-Logging", + "Installed": false + }, + { + "DisplayName": "Request Monitor", + "Name": "Web-Request-Monitor", + "Installed": false + }, + { + "DisplayName": "Tracing", + "Name": "Web-Http-Tracing", + "Installed": false + }, + { + "DisplayName": "Performance", + "Name": "Web-Performance", + "Installed": false + }, + { + "DisplayName": "Static Content Compression", + "Name": "Web-Stat-Compression", + "Installed": false + }, + { + "DisplayName": "Dynamic Content Compression", + "Name": "Web-Dyn-Compression", + "Installed": false + }, + { + "DisplayName": "Security", + "Name": "Web-Security", + "Installed": false + }, + { + "DisplayName": "Request Filtering", + "Name": "Web-Filtering", + "Installed": false + }, + { + "DisplayName": "Basic Authentication", + "Name": "Web-Basic-Auth", + "Installed": false + }, + { + "DisplayName": "Centralized SSL Certificate Support", + "Name": "Web-CertProvider", + "Installed": false + }, + { + "DisplayName": "Client Certificate Mapping Authentication", + "Name": "Web-Client-Auth", + "Installed": false + }, + { + "DisplayName": "Digest Authentication", + "Name": "Web-Digest-Auth", + "Installed": false + }, + { + "DisplayName": "IIS Client Certificate Mapping Authentication", + "Name": "Web-Cert-Auth", + "Installed": false + }, + { + "DisplayName": "IP and Domain Restrictions", + "Name": "Web-IP-Security", + "Installed": false + }, + { + "DisplayName": "URL Authorization", + "Name": "Web-Url-Auth", + "Installed": false + }, + { + "DisplayName": "Windows Authentication", + "Name": "Web-Windows-Auth", + "Installed": false + }, + { + "DisplayName": "Application Development", + "Name": "Web-App-Dev", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 3.5", + "Name": "Web-Net-Ext", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 4.6", + "Name": "Web-Net-Ext45", + "Installed": false + }, + { + "DisplayName": "Application Initialization", + "Name": "Web-AppInit", + "Installed": false + }, + { + "DisplayName": "ASP", + "Name": "Web-ASP", + "Installed": false + }, + { + "DisplayName": "ASP.NET 3.5", + "Name": "Web-Asp-Net", + "Installed": false + }, + { + "DisplayName": "ASP.NET 4.6", + "Name": "Web-Asp-Net45", + "Installed": false + }, + { + "DisplayName": "CGI", + "Name": "Web-CGI", + "Installed": false + }, + { + "DisplayName": "ISAPI Extensions", + "Name": "Web-ISAPI-Ext", + "Installed": false + }, + { + "DisplayName": "ISAPI Filters", + "Name": "Web-ISAPI-Filter", + "Installed": false + }, + { + "DisplayName": "Server Side Includes", + "Name": "Web-Includes", + "Installed": false + }, + { + "DisplayName": "WebSocket Protocol", + "Name": "Web-WebSockets", + "Installed": false + }, + { + "DisplayName": "FTP Server", + "Name": "Web-Ftp-Server", + "Installed": false + }, + { + "DisplayName": "FTP Service", + "Name": "Web-Ftp-Service", + "Installed": false + }, + { + "DisplayName": "FTP Extensibility", + "Name": "Web-Ftp-Ext", + "Installed": false + }, + { + "DisplayName": "Management Tools", + "Name": "Web-Mgmt-Tools", + "Installed": false + }, + { + "DisplayName": "IIS Management Console", + "Name": "Web-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Compatibility", + "Name": "Web-Mgmt-Compat", + "Installed": false + }, + { + "DisplayName": "IIS 6 Metabase Compatibility", + "Name": "Web-Metabase", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Console", + "Name": "Web-Lgcy-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Scripting Tools", + "Name": "Web-Lgcy-Scripting", + "Installed": false + }, + { + "DisplayName": "IIS 6 WMI Compatibility", + "Name": "Web-WMI", + "Installed": false + }, + { + "DisplayName": "IIS Management Scripts and Tools", + "Name": "Web-Scripting-Tools", + "Installed": false + }, + { + "DisplayName": "Management Service", + "Name": "Web-Mgmt-Service", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services", + "Name": "WDS", + "Installed": false + }, + { + "DisplayName": "Deployment Server", + "Name": "WDS-Deployment", + "Installed": false + }, + { + "DisplayName": "Transport Server", + "Name": "WDS-Transport", + "Installed": false + }, + { + "DisplayName": "Windows Server Essentials Experience", + "Name": "ServerEssentialsRole", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services", + "Name": "UpdateServices", + "Installed": false + }, + { + "DisplayName": "WID Connectivity", + "Name": "UpdateServices-WidDB", + "Installed": false + }, + { + "DisplayName": "WSUS Services", + "Name": "UpdateServices-Services", + "Installed": false + }, + { + "DisplayName": "SQL Server Connectivity", + "Name": "UpdateServices-DB", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 Features", + "Name": "NET-Framework-Features", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 (includes .NET 2.0 and 3.0)", + "Name": "NET-Framework-Core", + "Installed": false + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-HTTP-Activation", + "Installed": false + }, + { + "DisplayName": "Non-HTTP Activation", + "Name": "NET-Non-HTTP-Activ", + "Installed": false + }, + { + "DisplayName": ".NET Framework 4.6 Features", + "Name": "NET-Framework-45-Features", + "Installed": true + }, + { + "DisplayName": ".NET Framework 4.6", + "Name": "NET-Framework-45-Core", + "Installed": true + }, + { + "DisplayName": "ASP.NET 4.6", + "Name": "NET-Framework-45-ASPNET", + "Installed": false + }, + { + "DisplayName": "WCF Services", + "Name": "NET-WCF-Services45", + "Installed": true + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-WCF-HTTP-Activation45", + "Installed": false + }, + { + "DisplayName": "Message Queuing (MSMQ) Activation", + "Name": "NET-WCF-MSMQ-Activation45", + "Installed": false + }, + { + "DisplayName": "Named Pipe Activation", + "Name": "NET-WCF-Pipe-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Activation", + "Name": "NET-WCF-TCP-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Port Sharing", + "Name": "NET-WCF-TCP-PortSharing45", + "Installed": true + }, + { + "DisplayName": "Background Intelligent Transfer Service (BITS)", + "Name": "BITS", + "Installed": false + }, + { + "DisplayName": "IIS Server Extension", + "Name": "BITS-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "Compact Server", + "Name": "BITS-Compact-Server", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption", + "Name": "BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Network Unlock", + "Name": "BitLocker-NetworkUnlock", + "Installed": false + }, + { + "DisplayName": "BranchCache", + "Name": "BranchCache", + "Installed": false + }, + { + "DisplayName": "Client for NFS", + "Name": "NFS-Client", + "Installed": false + }, + { + "DisplayName": "Containers", + "Name": "Containers", + "Installed": false + }, + { + "DisplayName": "Data Center Bridging", + "Name": "Data-Center-Bridging", + "Installed": false + }, + { + "DisplayName": "Direct Play", + "Name": "Direct-Play", + "Installed": false + }, + { + "DisplayName": "Enhanced Storage", + "Name": "EnhancedStorage", + "Installed": false + }, + { + "DisplayName": "Failover Clustering", + "Name": "Failover-Clustering", + "Installed": false + }, + { + "DisplayName": "Group Policy Management", + "Name": "GPMC", + "Installed": false + }, + { + "DisplayName": "I/O Quality of Service", + "Name": "DiskIo-QoS", + "Installed": false + }, + { + "DisplayName": "IIS Hostable Web Core", + "Name": "Web-WHC", + "Installed": false + }, + { + "DisplayName": "Internet Printing Client", + "Name": "Internet-Print-Client", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Server", + "Name": "IPAM", + "Installed": false + }, + { + "DisplayName": "iSNS Server service", + "Name": "ISNS", + "Installed": false + }, + { + "DisplayName": "LPR Port Monitor", + "Name": "LPR-Port-Monitor", + "Installed": false + }, + { + "DisplayName": "Management OData IIS Extension", + "Name": "ManagementOdata", + "Installed": false + }, + { + "DisplayName": "Media Foundation", + "Name": "Server-Media-Foundation", + "Installed": false + }, + { + "DisplayName": "Message Queuing", + "Name": "MSMQ", + "Installed": false + }, + { + "DisplayName": "Message Queuing Services", + "Name": "MSMQ-Services", + "Installed": false + }, + { + "DisplayName": "Message Queuing Server", + "Name": "MSMQ-Server", + "Installed": false + }, + { + "DisplayName": "Directory Service Integration", + "Name": "MSMQ-Directory", + "Installed": false + }, + { + "DisplayName": "HTTP Support", + "Name": "MSMQ-HTTP-Support", + "Installed": false + }, + { + "DisplayName": "Message Queuing Triggers", + "Name": "MSMQ-Triggers", + "Installed": false + }, + { + "DisplayName": "Multicasting Support", + "Name": "MSMQ-Multicasting", + "Installed": false + }, + { + "DisplayName": "Routing Service", + "Name": "MSMQ-Routing", + "Installed": false + }, + { + "DisplayName": "Message Queuing DCOM Proxy", + "Name": "MSMQ-DCOM", + "Installed": false + }, + { + "DisplayName": "Multipath I/O", + "Name": "Multipath-IO", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector", + "Name": "MultiPoint-Connector", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector Services", + "Name": "MultiPoint-Connector-Services", + "Installed": false + }, + { + "DisplayName": "MultiPoint Manager and MultiPoint Dashboard", + "Name": "MultiPoint-Tools", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing", + "Name": "NLB", + "Installed": false + }, + { + "DisplayName": "Peer Name Resolution Protocol", + "Name": "PNRP", + "Installed": false + }, + { + "DisplayName": "Quality Windows Audio Video Experience", + "Name": "qWave", + "Installed": false + }, + { + "DisplayName": "RAS Connection Manager Administration Kit (CMAK)", + "Name": "CMAK", + "Installed": false + }, + { + "DisplayName": "Remote Assistance", + "Name": "Remote-Assistance", + "Installed": false + }, + { + "DisplayName": "Remote Differential Compression", + "Name": "RDC", + "Installed": false + }, + { + "DisplayName": "Remote Server Administration Tools", + "Name": "RSAT", + "Installed": false + }, + { + "DisplayName": "Feature Administration Tools", + "Name": "RSAT-Feature-Tools", + "Installed": false + }, + { + "DisplayName": "SMTP Server Tools", + "Name": "RSAT-SMTP", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Administration Utilities", + "Name": "RSAT-Feature-Tools-BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Tools", + "Name": "RSAT-Feature-Tools-BitLocker-RemoteAdminTool", + "Installed": false + }, + { + "DisplayName": "BitLocker Recovery Password Viewer", + "Name": "RSAT-Feature-Tools-BitLocker-BdeAducExt", + "Installed": false + }, + { + "DisplayName": "BITS Server Extensions Tools", + "Name": "RSAT-Bits-Server", + "Installed": false + }, + { + "DisplayName": "DataCenterBridging LLDP Tools", + "Name": "RSAT-DataCenterBridging-LLDP-Tools", + "Installed": false + }, + { + "DisplayName": "Failover Clustering Tools", + "Name": "RSAT-Clustering", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Management Tools", + "Name": "RSAT-Clustering-Mgmt", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Module for Windows PowerShell", + "Name": "RSAT-Clustering-PowerShell", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Automation Server", + "Name": "RSAT-Clustering-AutomationServer", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Command Interface", + "Name": "RSAT-Clustering-CmdInterface", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Client", + "Name": "IPAM-Client-Feature", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing Tools", + "Name": "RSAT-NLB", + "Installed": false + }, + { + "DisplayName": "Shielded VM Tools", + "Name": "RSAT-Shielded-VM-Tools", + "Installed": false + }, + { + "DisplayName": "SNMP Tools", + "Name": "RSAT-SNMP", + "Installed": false + }, + { + "DisplayName": "Storage Replica Module for Windows PowerShell", + "Name": "RSAT-Storage-Replica", + "Installed": false + }, + { + "DisplayName": "WINS Server Tools", + "Name": "RSAT-WINS", + "Installed": false + }, + { + "DisplayName": "Role Administration Tools", + "Name": "RSAT-Role-Tools", + "Installed": false + }, + { + "DisplayName": "AD DS and AD LDS Tools", + "Name": "RSAT-AD-Tools", + "Installed": false + }, + { + "DisplayName": "Active Directory module for Windows PowerShell", + "Name": "RSAT-AD-PowerShell", + "Installed": false + }, + { + "DisplayName": "AD DS Tools", + "Name": "RSAT-ADDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Administrative Center", + "Name": "RSAT-AD-AdminCenter", + "Installed": false + }, + { + "DisplayName": "AD DS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADDS-Tools", + "Installed": false + }, + { + "DisplayName": "AD LDS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADLDS", + "Installed": false + }, + { + "DisplayName": "Hyper-V Management Tools", + "Name": "RSAT-Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V GUI Management Tools", + "Name": "Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V Module for Windows PowerShell", + "Name": "Hyper-V-PowerShell", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services Tools", + "Name": "RSAT-RDS-Tools", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway Tools", + "Name": "RSAT-RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Diagnoser Tools", + "Name": "RSAT-RDS-Licensing-Diagnosis-UI", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Tools", + "Name": "RDS-Licensing-UI", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services Tools", + "Name": "UpdateServices-RSAT", + "Installed": false + }, + { + "DisplayName": "API and PowerShell cmdlets", + "Name": "UpdateServices-API", + "Installed": false + }, + { + "DisplayName": "User Interface Management Console", + "Name": "UpdateServices-UI", + "Installed": false + }, + { + "DisplayName": "Active Directory Certificate Services Tools", + "Name": "RSAT-ADCS", + "Installed": false + }, + { + "DisplayName": "Certification Authority Management Tools", + "Name": "RSAT-ADCS-Mgmt", + "Installed": false + }, + { + "DisplayName": "Online Responder Tools", + "Name": "RSAT-Online-Responder", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services Tools", + "Name": "RSAT-ADRMS", + "Installed": false + }, + { + "DisplayName": "DHCP Server Tools", + "Name": "RSAT-DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server Tools", + "Name": "RSAT-DNS-Server", + "Installed": false + }, + { + "DisplayName": "Fax Server Tools", + "Name": "RSAT-Fax", + "Installed": false + }, + { + "DisplayName": "File Services Tools", + "Name": "RSAT-File-Services", + "Installed": false + }, + { + "DisplayName": "DFS Management Tools", + "Name": "RSAT-DFS-Mgmt-Con", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager Tools", + "Name": "RSAT-FSRM-Mgmt", + "Installed": false + }, + { + "DisplayName": "Services for Network File System Management Tools", + "Name": "RSAT-NFS-Admin", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services Tools", + "Name": "RSAT-NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services Tools", + "Name": "RSAT-Print-Services", + "Installed": false + }, + { + "DisplayName": "Remote Access Management Tools", + "Name": "RSAT-RemoteAccess", + "Installed": false + }, + { + "DisplayName": "Remote Access GUI and Command-Line Tools", + "Name": "RSAT-RemoteAccess-Mgmt", + "Installed": false + }, + { + "DisplayName": "Remote Access module for Windows PowerShell", + "Name": "RSAT-RemoteAccess-PowerShell", + "Installed": false + }, + { + "DisplayName": "Volume Activation Tools", + "Name": "RSAT-VA-Tools", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services Tools", + "Name": "WDS-AdminPack", + "Installed": false + }, + { + "DisplayName": "RPC over HTTP Proxy", + "Name": "RPC-over-HTTP-Proxy", + "Installed": false + }, + { + "DisplayName": "Setup and Boot Event Collection", + "Name": "Setup-and-Boot-Event-Collection", + "Installed": false + }, + { + "DisplayName": "Simple TCP/IP Services", + "Name": "Simple-TCPIP", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS File Sharing Support", + "Name": "FS-SMB1", + "Installed": true + }, + { + "DisplayName": "SMB Bandwidth Limit", + "Name": "FS-SMBBW", + "Installed": false + }, + { + "DisplayName": "SMTP Server", + "Name": "SMTP-Server", + "Installed": false + }, + { + "DisplayName": "SNMP Service", + "Name": "SNMP-Service", + "Installed": false + }, + { + "DisplayName": "SNMP WMI Provider", + "Name": "SNMP-WMI-Provider", + "Installed": false + }, + { + "DisplayName": "Telnet Client", + "Name": "Telnet-Client", + "Installed": true + }, + { + "DisplayName": "TFTP Client", + "Name": "TFTP-Client", + "Installed": false + }, + { + "DisplayName": "VM Shielding Tools for Fabric Management", + "Name": "FabricShieldedTools", + "Installed": false + }, + { + "DisplayName": "WebDAV Redirector", + "Name": "WebDAV-Redirector", + "Installed": false + }, + { + "DisplayName": "Windows Biometric Framework", + "Name": "Biometric-Framework", + "Installed": false + }, + { + "DisplayName": "Windows Defender Features", + "Name": "Windows-Defender-Features", + "Installed": false + }, + { + "DisplayName": "Windows Defender", + "Name": "Windows-Defender", + "Installed": false + }, + { + "DisplayName": "GUI for Windows Defender", + "Name": "Windows-Defender-Gui", + "Installed": false + }, + { + "DisplayName": "Windows Identity Foundation 3.5", + "Name": "Windows-Identity-Foundation", + "Installed": false + }, + { + "DisplayName": "Windows Internal Database", + "Name": "Windows-Internal-Database", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell", + "Name": "PowerShellRoot", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 5.1", + "Name": "PowerShell", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 2.0 Engine", + "Name": "PowerShell-V2", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell Desired State Configuration Service", + "Name": "DSC-Service", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell ISE", + "Name": "PowerShell-ISE", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell Web Access", + "Name": "WindowsPowerShellWebAccess", + "Installed": false + }, + { + "DisplayName": "Windows Process Activation Service", + "Name": "WAS", + "Installed": false + }, + { + "DisplayName": "Process Model", + "Name": "WAS-Process-Model", + "Installed": false + }, + { + "DisplayName": ".NET Environment 3.5", + "Name": "WAS-NET-Environment", + "Installed": false + }, + { + "DisplayName": "Configuration APIs", + "Name": "WAS-Config-APIs", + "Installed": false + }, + { + "DisplayName": "Windows Search Service", + "Name": "Search-Service", + "Installed": false + }, + { + "DisplayName": "Windows Server Backup", + "Name": "Windows-Server-Backup", + "Installed": false + }, + { + "DisplayName": "Windows Server Migration Tools", + "Name": "Migration", + "Installed": false + }, + { + "DisplayName": "Windows Standards-Based Storage Management", + "Name": "WindowsStorageManagementService", + "Installed": false + }, + { + "DisplayName": "Windows TIFF IFilter", + "Name": "Windows-TIFF-IFilter", + "Installed": false + }, + { + "DisplayName": "WinRM IIS Extension", + "Name": "WinRM-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "WINS Server", + "Name": "WINS", + "Installed": false + }, + { + "DisplayName": "Wireless LAN Service", + "Name": "Wireless-Networking", + "Installed": false + }, + { + "DisplayName": "WoW64 Support", + "Name": "WoW64-Support", + "Installed": true + }, + { + "DisplayName": "XPS Viewer", + "Name": "XPS-Viewer", + "Installed": false + } +] +2020-03-06 11:13:52,334 [salt.state :320 ][INFO ][4804] Made the following changes: +'Telnet-Client' changed from 'absent' to 'Telnet Client' + +2020-03-06 11:13:52,334 [salt.state :1997][INFO ][4804] Completed state [telnet-client] at time 11:13:52.334938 (duration_in_ms=20467.574) +2020-03-06 11:13:52,334 [salt.state :1819][INFO ][4804] Running state [windows.module.system.reboot] at time 11:13:52.334938 +2020-03-06 11:13:52,334 [salt.state :1852][INFO ][4804] Executing state module.run for [windows.module.system.reboot] +2020-03-06 11:13:52,351 [salt.utils.lazy :107 ][DEBUG ][4804] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 11:13:52,351 [salt.loaded.int.module.cmdmod:397 ][INFO ][4804] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 11:13:52,553 [salt.state :889 ][DEBUG ][4804] Last command return code: 0 +2020-03-06 11:13:52,553 [salt.loaded.int.module.win_system:1413][DEBUG ][4804] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 11:13:52,553 [salt.loaded.int.module.win_system:1348][DEBUG ][4804] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 11:13:52,569 [salt.loaded.int.module.win_system:1348][DEBUG ][4804] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 11:13:52,569 [salt.loaded.int.module.win_system:1387][DEBUG ][4804] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 11:13:52,569 [salt.loaded.int.module.win_system:1273][DEBUG ][4804] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 11:13:52,600 [salt.state :320 ][INFO ][4804] {'system.reboot': True} +2020-03-06 11:13:52,600 [salt.state :1997][INFO ][4804] Completed state [windows.module.system.reboot] at time 11:13:52.600570 (duration_in_ms=265.632) +2020-03-06 11:13:52,600 [salt.state :2801][DEBUG ][4804] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\3046661289072 does not exist, no need to cleanup +2020-03-06 11:13:52,600 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded state.check_result +2020-03-06 11:13:52,616 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded highstate.output +2020-03-06 11:13:52,616 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,616 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,631 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,631 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,631 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,631 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,631 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,647 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,647 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,647 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,647 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,663 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,663 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,663 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,678 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,678 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,678 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,694 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,694 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 11:13:52,694 [salt.utils.lazy :104 ][DEBUG ][4804] LazyLoaded nested.output +2020-03-06 14:13:57,725 [salt.loader :747 ][DEBUG ][3612] Grains refresh requested. Refreshing grains. +2020-03-06 14:13:57,725 [salt.config :2190][DEBUG ][3612] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 14:13:57,725 [salt.config :2334][DEBUG ][3612] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 14:13:57,725 [salt.config :2190][DEBUG ][3612] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 14:14:03,081 [salt.pillar :57 ][DEBUG ][3612] Determining pillar cache +2020-03-06 14:14:03,178 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded jinja.render +2020-03-06 14:14:03,178 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded yaml.render +2020-03-06 14:14:03,195 [salt.template :59 ][DEBUG ][3612] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 14:14:03,195 [salt.utils.jinja :85 ][DEBUG ][3612] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 14:14:03,210 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.01523447036743164 +2020-03-06 14:14:03,210 [salt.template :120 ][DEBUG ][3612] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 14:14:03,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][3612] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 14:14:03,210 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 14:14:03,210 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded confirm_top.confirm_top +2020-03-06 14:14:03,227 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded compound_match.match +2020-03-06 14:14:03,227 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3612] compound_match: vagrant ? * +2020-03-06 14:14:03,227 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded glob_match.match +2020-03-06 14:14:03,227 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3612] compound_match vagrant ? "*" => "True" +2020-03-06 14:14:03,227 [salt.template :59 ][DEBUG ][3612] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 14:14:03,243 [salt.utils.jinja :85 ][DEBUG ][3612] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 14:14:03,243 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 +2020-03-06 14:14:03,243 [salt.template :120 ][DEBUG ][3612] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 14:14:03,243 [salt.loaded.int.render.yaml:80 ][DEBUG ][3612] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 14:14:03,259 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.016193866729736328 +2020-03-06 14:14:03,340 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded jinja.render +2020-03-06 14:14:03,356 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded yaml.render +2020-03-06 14:14:03,356 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded pillar.items +2020-03-06 14:14:03,372 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded direct_call.execute +2020-03-06 14:14:03,372 [salt.pillar :57 ][DEBUG ][3612] Determining pillar cache +2020-03-06 14:14:03,422 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded jinja.render +2020-03-06 14:14:03,437 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded yaml.render +2020-03-06 14:14:03,453 [salt.template :59 ][DEBUG ][3612] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 14:14:03,453 [salt.utils.jinja :85 ][DEBUG ][3612] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 14:14:03,453 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 +2020-03-06 14:14:03,453 [salt.template :120 ][DEBUG ][3612] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 14:14:03,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][3612] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 14:14:03,470 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 14:14:03,470 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded confirm_top.confirm_top +2020-03-06 14:14:03,470 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded compound_match.match +2020-03-06 14:14:03,470 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3612] compound_match: vagrant ? * +2020-03-06 14:14:03,486 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded glob_match.match +2020-03-06 14:14:03,486 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3612] compound_match vagrant ? "*" => "True" +2020-03-06 14:14:03,486 [salt.template :59 ][DEBUG ][3612] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 14:14:03,502 [salt.utils.jinja :85 ][DEBUG ][3612] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 14:14:03,502 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.016192913055419922 +2020-03-06 14:14:03,502 [salt.template :120 ][DEBUG ][3612] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 14:14:03,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][3612] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 14:14:03,518 [salt.template :26 ][PROFILE ][3612] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.016195058822631836 +2020-03-06 14:14:03,534 [salt.utils.lazy :104 ][DEBUG ][3612] LazyLoaded nested.output diff --git a/test/results/py3-201923-windows-server-2019-1809.kitchen.log b/test/results/py3-201923-windows-server-2019-1809.kitchen.log new file mode 100644 index 0000000..329d9f0 --- /dev/null +++ b/test/results/py3-201923-windows-server-2019-1809.kitchen.log @@ -0,0 +1,945 @@ +I, [2020-03-06T14:01:18.652999 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Cleaning up any prior instances of +I, [2020-03-06T14:01:18.653207 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Destroying ... +I, [2020-03-06T14:01:18.656651 #23133] INFO -- py3-201923-windows-server-2019-1809: Finished destroying (0m0.00s). +I, [2020-03-06T14:01:18.658122 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Testing +I, [2020-03-06T14:01:18.658299 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Creating ... +I, [2020-03-06T14:01:25.179549 #23133] INFO -- py3-201923-windows-server-2019-1809: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T14:01:26.447372 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Cloning VM... +I, [2020-03-06T14:01:26.980507 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T14:01:27.231529 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Checking if box 'StefanScherer/windows_2019' version '2020.02.12' is up to date... +I, [2020-03-06T14:01:28.157333 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-server-2019-1809-2dcdfdef-561b-478a-ab83-71777a3782e7 +I, [2020-03-06T14:01:30.952151 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T14:01:31.070755 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T14:01:31.071323 #23133] INFO -- py3-201923-windows-server-2019-1809: default: Adapter 1: nat +I, [2020-03-06T14:01:31.210913 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Forwarding ports... +I, [2020-03-06T14:01:31.337370 #23133] INFO -- py3-201923-windows-server-2019-1809: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T14:01:31.337984 #23133] INFO -- py3-201923-windows-server-2019-1809: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T14:01:31.338695 #23133] INFO -- py3-201923-windows-server-2019-1809: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T14:01:31.339295 #23133] INFO -- py3-201923-windows-server-2019-1809: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T14:01:31.735585 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T14:01:32.675688 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Booting VM... +I, [2020-03-06T14:01:35.636991 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T14:01:36.725764 #23133] INFO -- py3-201923-windows-server-2019-1809: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T14:01:36.726247 #23133] INFO -- py3-201923-windows-server-2019-1809: default: WinRM username: vagrant +I, [2020-03-06T14:01:36.726530 #23133] INFO -- py3-201923-windows-server-2019-1809: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T14:01:36.726956 #23133] INFO -- py3-201923-windows-server-2019-1809: default: WinRM transport: negotiate +I, [2020-03-06T14:02:52.855595 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Machine booted and ready! +I, [2020-03-06T14:02:52.889971 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Checking for guest additions in VM... +I, [2020-03-06T14:02:53.722759 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Mounting shared folders... +I, [2020-03-06T14:02:53.723589 #23133] INFO -- py3-201923-windows-server-2019-1809: default: /results => /mnt/c/tmp/results +I, [2020-03-06T14:03:02.658439 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T14:03:16.729988 #23133] INFO -- py3-201923-windows-server-2019-1809: [WinRM] Established +I, [2020-03-06T14:03:16.730110 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:03:16.748478 #23133] INFO -- py3-201923-windows-server-2019-1809: Vagrant instance created. +I, [2020-03-06T14:03:16.750335 #23133] INFO -- py3-201923-windows-server-2019-1809: Finished creating (1m58.09s). +I, [2020-03-06T14:03:16.750616 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Converging ... +I, [2020-03-06T14:03:16.752906 #23133] INFO -- py3-201923-windows-server-2019-1809: Preparing files for transfer +I, [2020-03-06T14:03:16.753066 #23133] INFO -- py3-201923-windows-server-2019-1809: Preparing salt-minion +I, [2020-03-06T14:03:16.758041 #23133] INFO -- py3-201923-windows-server-2019-1809: Preparing pillars into /srv/pillar +I, [2020-03-06T14:03:16.758180 #23133] INFO -- py3-201923-windows-server-2019-1809: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T14:03:16.761985 #23133] INFO -- py3-201923-windows-server-2019-1809: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T14:03:16.920458 #23133] INFO -- py3-201923-windows-server-2019-1809: Preparing state_top +I, [2020-03-06T14:03:16.922074 #23133] INFO -- py3-201923-windows-server-2019-1809: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T14:03:17.980000 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:03:17.984614 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:03:17.985325 #23133] INFO -- py3-201923-windows-server-2019-1809: Directory: C:\ +I, [2020-03-06T14:03:17.985792 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:03:17.986166 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:03:17.986601 #23133] INFO -- py3-201923-windows-server-2019-1809: Mode LastWriteTime Length Name +I, [2020-03-06T14:03:17.987032 #23133] INFO -- py3-201923-windows-server-2019-1809: ---- ------------- ------ ---- +I, [2020-03-06T14:03:17.987443 #23133] INFO -- py3-201923-windows-server-2019-1809: d----- 3/6/2020 11:03 AM temp +I, [2020-03-06T14:03:18.778643 #23133] INFO -- py3-201923-windows-server-2019-1809: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe +I, [2020-03-06T14:03:26.542836 #23133] INFO -- py3-201923-windows-server-2019-1809: Installing Salt minion +I, [2020-03-06T14:04:22.655467 #23133] INFO -- py3-201923-windows-server-2019-1809: Starting the Salt minion service +I, [2020-03-06T14:04:22.655905 #23133] INFO -- py3-201923-windows-server-2019-1809: Salt minion successfully installed +I, [2020-03-06T14:04:25.321541 #23133] INFO -- py3-201923-windows-server-2019-1809: You asked for latest and you have 2019.2.3 installed, sweet! +I, [2020-03-06T14:04:25.321921 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:25.322285 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:26.005009 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:26.005407 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:26.005969 #23133] INFO -- py3-201923-windows-server-2019-1809: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T14:04:26.006356 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:26.006699 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:26.007134 #23133] INFO -- py3-201923-windows-server-2019-1809: Mode LastWriteTime Length Name +I, [2020-03-06T14:04:26.007616 #23133] INFO -- py3-201923-windows-server-2019-1809: ---- ------------- ------ ---- +I, [2020-03-06T14:04:26.008086 #23133] INFO -- py3-201923-windows-server-2019-1809: d----- 3/6/2020 11:04 AM kitchen +I, [2020-03-06T14:04:26.008420 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:26.008696 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:26.025758 #23133] INFO -- py3-201923-windows-server-2019-1809: Transferring files to +I, [2020-03-06T14:04:56.796337 #23133] INFO -- py3-201923-windows-server-2019-1809: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T14:04:56.796689 #23133] INFO -- py3-201923-windows-server-2019-1809: At line:1 char:131 +I, [2020-03-06T14:04:56.797027 #23133] INFO -- py3-201923-windows-server-2019-1809: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T14:04:56.797304 #23133] INFO -- py3-201923-windows-server-2019-1809: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T14:04:56.797557 #23133] INFO -- py3-201923-windows-server-2019-1809: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T14:04:56.797808 #23133] INFO -- py3-201923-windows-server-2019-1809: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T14:04:56.798045 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:56.798228 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:56.798439 #23133] INFO -- py3-201923-windows-server-2019-1809: Traceback (most recent call last): +I, [2020-03-06T14:04:56.798683 #23133] INFO -- py3-201923-windows-server-2019-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T14:04:56.798933 #23133] INFO -- py3-201923-windows-server-2019-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T14:04:56.799153 #23133] INFO -- py3-201923-windows-server-2019-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T14:04:56.799333 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:56.799552 #23133] INFO -- py3-201923-windows-server-2019-1809: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T14:04:56.799793 #23133] INFO -- py3-201923-windows-server-2019-1809: Traceback (most recent call last): +I, [2020-03-06T14:04:56.800001 #23133] INFO -- py3-201923-windows-server-2019-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T14:04:56.800207 #23133] INFO -- py3-201923-windows-server-2019-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T14:04:56.800489 #23133] INFO -- py3-201923-windows-server-2019-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T14:04:56.800822 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:04:57.776603 #23133] INFO -- py3-201923-windows-server-2019-1809: [ERROR ] {'pkg.refresh_db': {'failed': 0, 'total': 0, 'success': 0}} +I, [2020-03-06T14:04:57.776848 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:06:34.217713 #23133] INFO -- py3-201923-windows-server-2019-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T14:06:34.218165 #23133] INFO -- py3-201923-windows-server-2019-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T14:06:34.218479 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:06:34.218858 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:06:34.219276 #23133] INFO -- py3-201923-windows-server-2019-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T14:06:34.219673 #23133] INFO -- py3-201923-windows-server-2019-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T14:06:34.220012 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:06:34.220321 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.169024 #23133] INFO -- py3-201923-windows-server-2019-1809: local: +I, [2020-03-06T14:07:54.169538 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.169985 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T14:07:54.170474 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: system.hostname +I, [2020-03-06T14:07:54.170987 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: saltstack1 +I, [2020-03-06T14:07:54.171376 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.171810 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T14:07:54.172218 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:41.892269 +I, [2020-03-06T14:07:54.172611 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 125.136 ms +I, [2020-03-06T14:07:54.172950 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.173303 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.173669 #23133] INFO -- py3-201923-windows-server-2019-1809: hostname: +I, [2020-03-06T14:07:54.174014 #23133] INFO -- py3-201923-windows-server-2019-1809: saltstack1 +I, [2020-03-06T14:07:54.174373 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.174738 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.state.system.computer_desc.description +I, [2020-03-06T14:07:54.175089 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: system.computer_desc +I, [2020-03-06T14:07:54.175539 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: Saltstack Computer Description +I, [2020-03-06T14:07:54.175956 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.176425 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T14:07:54.176872 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:42.033501 +I, [2020-03-06T14:07:54.177372 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 3283.512 ms +I, [2020-03-06T14:07:54.177770 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.178132 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.178497 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.178846 #23133] INFO -- py3-201923-windows-server-2019-1809: Saltstack Computer Description +I, [2020-03-06T14:07:54.179195 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.179542 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.179883 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T14:07:54.180285 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: timezone.system +I, [2020-03-06T14:07:54.180657 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: America/New_York +I, [2020-03-06T14:07:54.180999 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.181348 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: Set timezone America/New_York +I, [2020-03-06T14:07:54.181680 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:45.347890 +I, [2020-03-06T14:07:54.182072 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 45.755 ms +I, [2020-03-06T14:07:54.182532 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.182901 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.183264 #23133] INFO -- py3-201923-windows-server-2019-1809: timezone: +I, [2020-03-06T14:07:54.183662 #23133] INFO -- py3-201923-windows-server-2019-1809: America/New_York +I, [2020-03-06T14:07:54.184011 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.184422 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.module.environ.items +I, [2020-03-06T14:07:54.184817 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.185193 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.185539 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: environ.items: Success +I, [2020-03-06T14:07:54.187097 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:45.414098 +I, [2020-03-06T14:07:54.188443 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 11.324 ms +I, [2020-03-06T14:07:54.189905 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.191006 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.191908 #23133] INFO -- py3-201923-windows-server-2019-1809: environ.items: +I, [2020-03-06T14:07:54.192682 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.193441 #23133] INFO -- py3-201923-windows-server-2019-1809: ALLUSERSPROFILE: +I, [2020-03-06T14:07:54.194228 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\ProgramData +I, [2020-03-06T14:07:54.195477 #23133] INFO -- py3-201923-windows-server-2019-1809: APPDATA: +I, [2020-03-06T14:07:54.196468 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T14:07:54.197818 #23133] INFO -- py3-201923-windows-server-2019-1809: COMMONPROGRAMFILES: +I, [2020-03-06T14:07:54.199293 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Program Files\Common Files +I, [2020-03-06T14:07:54.200718 #23133] INFO -- py3-201923-windows-server-2019-1809: COMMONPROGRAMFILES(X86): +I, [2020-03-06T14:07:54.202327 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Program Files (x86)\Common Files +I, [2020-03-06T14:07:54.204039 #23133] INFO -- py3-201923-windows-server-2019-1809: COMMONPROGRAMW6432: +I, [2020-03-06T14:07:54.205564 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Program Files\Common Files +I, [2020-03-06T14:07:54.207133 #23133] INFO -- py3-201923-windows-server-2019-1809: COMPUTERNAME: +I, [2020-03-06T14:07:54.208590 #23133] INFO -- py3-201923-windows-server-2019-1809: VAGRANT +I, [2020-03-06T14:07:54.209768 #23133] INFO -- py3-201923-windows-server-2019-1809: COMSPEC: +I, [2020-03-06T14:07:54.210197 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Windows\system32\cmd.exe +I, [2020-03-06T14:07:54.211821 #23133] INFO -- py3-201923-windows-server-2019-1809: DRIVERDATA: +I, [2020-03-06T14:07:54.213002 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T14:07:54.213835 #23133] INFO -- py3-201923-windows-server-2019-1809: HOMEDRIVE: +I, [2020-03-06T14:07:54.215038 #23133] INFO -- py3-201923-windows-server-2019-1809: C: +I, [2020-03-06T14:07:54.217109 #23133] INFO -- py3-201923-windows-server-2019-1809: HOMEPATH: +I, [2020-03-06T14:07:54.219708 #23133] INFO -- py3-201923-windows-server-2019-1809: \Users\vagrant +I, [2020-03-06T14:07:54.220902 #23133] INFO -- py3-201923-windows-server-2019-1809: LOCALAPPDATA: +I, [2020-03-06T14:07:54.222937 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Users\vagrant\AppData\Local +I, [2020-03-06T14:07:54.225281 #23133] INFO -- py3-201923-windows-server-2019-1809: LOGONSERVER: +I, [2020-03-06T14:07:54.227410 #23133] INFO -- py3-201923-windows-server-2019-1809: \\VAGRANT +I, [2020-03-06T14:07:54.229436 #23133] INFO -- py3-201923-windows-server-2019-1809: NUMBER_OF_PROCESSORS: +I, [2020-03-06T14:07:54.231005 #23133] INFO -- py3-201923-windows-server-2019-1809: 2 +I, [2020-03-06T14:07:54.231503 #23133] INFO -- py3-201923-windows-server-2019-1809: OS: +I, [2020-03-06T14:07:54.233237 #23133] INFO -- py3-201923-windows-server-2019-1809: Windows_NT +I, [2020-03-06T14:07:54.234809 #23133] INFO -- py3-201923-windows-server-2019-1809: PATH: +I, [2020-03-06T14:07:54.236110 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T14:07:54.236949 #23133] INFO -- py3-201923-windows-server-2019-1809: PATHEXT: +I, [2020-03-06T14:07:54.237766 #23133] INFO -- py3-201923-windows-server-2019-1809: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T14:07:54.238526 #23133] INFO -- py3-201923-windows-server-2019-1809: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T14:07:54.239463 #23133] INFO -- py3-201923-windows-server-2019-1809: AMD64 +I, [2020-03-06T14:07:54.240482 #23133] INFO -- py3-201923-windows-server-2019-1809: PROCESSOR_IDENTIFIER: +I, [2020-03-06T14:07:54.241264 #23133] INFO -- py3-201923-windows-server-2019-1809: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T14:07:54.241993 #23133] INFO -- py3-201923-windows-server-2019-1809: PROCESSOR_LEVEL: +I, [2020-03-06T14:07:54.242397 #23133] INFO -- py3-201923-windows-server-2019-1809: 6 +I, [2020-03-06T14:07:54.248986 #23133] INFO -- py3-201923-windows-server-2019-1809: PROCESSOR_REVISION: +I, [2020-03-06T14:07:54.249628 #23133] INFO -- py3-201923-windows-server-2019-1809: 8e0c +I, [2020-03-06T14:07:54.250105 #23133] INFO -- py3-201923-windows-server-2019-1809: PROGRAMDATA: +I, [2020-03-06T14:07:54.250593 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\ProgramData +I, [2020-03-06T14:07:54.251106 #23133] INFO -- py3-201923-windows-server-2019-1809: PROGRAMFILES: +I, [2020-03-06T14:07:54.251519 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Program Files +I, [2020-03-06T14:07:54.251927 #23133] INFO -- py3-201923-windows-server-2019-1809: PROGRAMFILES(X86): +I, [2020-03-06T14:07:54.252416 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Program Files (x86) +I, [2020-03-06T14:07:54.252894 #23133] INFO -- py3-201923-windows-server-2019-1809: PROGRAMW6432: +I, [2020-03-06T14:07:54.253330 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Program Files +I, [2020-03-06T14:07:54.253707 #23133] INFO -- py3-201923-windows-server-2019-1809: PROMPT: +I, [2020-03-06T14:07:54.254042 #23133] INFO -- py3-201923-windows-server-2019-1809: $P$G +I, [2020-03-06T14:07:54.254449 #23133] INFO -- py3-201923-windows-server-2019-1809: PSMODULEPATH: +I, [2020-03-06T14:07:54.254845 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T14:07:54.255257 #23133] INFO -- py3-201923-windows-server-2019-1809: PUBLIC: +I, [2020-03-06T14:07:54.255716 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Users\Public +I, [2020-03-06T14:07:54.256093 #23133] INFO -- py3-201923-windows-server-2019-1809: PYTHON: +I, [2020-03-06T14:07:54.256478 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\salt\bin\python.exe +I, [2020-03-06T14:07:54.256848 #23133] INFO -- py3-201923-windows-server-2019-1809: SALTDIR: +I, [2020-03-06T14:07:54.257190 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\salt +I, [2020-03-06T14:07:54.257543 #23133] INFO -- py3-201923-windows-server-2019-1809: SCRIPT: +I, [2020-03-06T14:07:54.257881 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T14:07:54.258306 #23133] INFO -- py3-201923-windows-server-2019-1809: SYSTEMDRIVE: +I, [2020-03-06T14:07:54.258897 #23133] INFO -- py3-201923-windows-server-2019-1809: C: +I, [2020-03-06T14:07:54.259366 #23133] INFO -- py3-201923-windows-server-2019-1809: SYSTEMROOT: +I, [2020-03-06T14:07:54.259930 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Windows +I, [2020-03-06T14:07:54.260431 #23133] INFO -- py3-201923-windows-server-2019-1809: TEMP: +I, [2020-03-06T14:07:54.260974 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T14:07:54.261500 #23133] INFO -- py3-201923-windows-server-2019-1809: TMP: +I, [2020-03-06T14:07:54.262050 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T14:07:54.262590 #23133] INFO -- py3-201923-windows-server-2019-1809: USERDOMAIN: +I, [2020-03-06T14:07:54.263095 #23133] INFO -- py3-201923-windows-server-2019-1809: VAGRANT +I, [2020-03-06T14:07:54.263655 #23133] INFO -- py3-201923-windows-server-2019-1809: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T14:07:54.264168 #23133] INFO -- py3-201923-windows-server-2019-1809: VAGRANT +I, [2020-03-06T14:07:54.264604 #23133] INFO -- py3-201923-windows-server-2019-1809: USERNAME: +I, [2020-03-06T14:07:54.265043 #23133] INFO -- py3-201923-windows-server-2019-1809: vagrant +I, [2020-03-06T14:07:54.265537 #23133] INFO -- py3-201923-windows-server-2019-1809: USERPROFILE: +I, [2020-03-06T14:07:54.265916 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Users\vagrant +I, [2020-03-06T14:07:54.266323 #23133] INFO -- py3-201923-windows-server-2019-1809: WINDIR: +I, [2020-03-06T14:07:54.266700 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Windows +I, [2020-03-06T14:07:54.267051 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.267431 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.module.user.current +I, [2020-03-06T14:07:54.267791 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.268131 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.268503 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: user.current: VAGRANT\vagrant +I, [2020-03-06T14:07:54.268947 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:45.425422 +I, [2020-03-06T14:07:54.269395 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 15.614 ms +I, [2020-03-06T14:07:54.269795 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.270238 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.270579 #23133] INFO -- py3-201923-windows-server-2019-1809: user.current: +I, [2020-03-06T14:07:54.270945 #23133] INFO -- py3-201923-windows-server-2019-1809: VAGRANT\vagrant +I, [2020-03-06T14:07:54.271282 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.271631 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.module.status.uptime +I, [2020-03-06T14:07:54.271986 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.272317 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.272781 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: status.uptime: 0:02:07.471807 +I, [2020-03-06T14:07:54.273243 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:45.441036 +I, [2020-03-06T14:07:54.273647 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 30.771 ms +I, [2020-03-06T14:07:54.274024 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.274395 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.274762 #23133] INFO -- py3-201923-windows-server-2019-1809: status.uptime: +I, [2020-03-06T14:07:54.275154 #23133] INFO -- py3-201923-windows-server-2019-1809: 0:02:07.471807 +I, [2020-03-06T14:07:54.275505 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.275917 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T14:07:54.276312 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: reg.present +I, [2020-03-06T14:07:54.276715 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:07:54.277101 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.277516 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:07:54.277888 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:45.471807 +I, [2020-03-06T14:07:54.278317 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 11048.409 ms +I, [2020-03-06T14:07:54.278806 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.279331 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.279731 #23133] INFO -- py3-201923-windows-server-2019-1809: reg: +I, [2020-03-06T14:07:54.280173 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.280636 #23133] INFO -- py3-201923-windows-server-2019-1809: Added: +I, [2020-03-06T14:07:54.281038 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.281422 #23133] INFO -- py3-201923-windows-server-2019-1809: Entry: +I, [2020-03-06T14:07:54.281801 #23133] INFO -- py3-201923-windows-server-2019-1809: SystemDefaultTlsVersions +I, [2020-03-06T14:07:54.282173 #23133] INFO -- py3-201923-windows-server-2019-1809: Inheritance: +I, [2020-03-06T14:07:54.282537 #23133] INFO -- py3-201923-windows-server-2019-1809: True +I, [2020-03-06T14:07:54.282914 #23133] INFO -- py3-201923-windows-server-2019-1809: Key: +I, [2020-03-06T14:07:54.283286 #23133] INFO -- py3-201923-windows-server-2019-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:07:54.283652 #23133] INFO -- py3-201923-windows-server-2019-1809: Owner: +I, [2020-03-06T14:07:54.284149 #23133] INFO -- py3-201923-windows-server-2019-1809: None +I, [2020-03-06T14:07:54.284609 #23133] INFO -- py3-201923-windows-server-2019-1809: Perms: +I, [2020-03-06T14:07:54.285041 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.285400 #23133] INFO -- py3-201923-windows-server-2019-1809: Deny: +I, [2020-03-06T14:07:54.285799 #23133] INFO -- py3-201923-windows-server-2019-1809: None +I, [2020-03-06T14:07:54.286151 #23133] INFO -- py3-201923-windows-server-2019-1809: Grant: +I, [2020-03-06T14:07:54.286528 #23133] INFO -- py3-201923-windows-server-2019-1809: None +I, [2020-03-06T14:07:54.286903 #23133] INFO -- py3-201923-windows-server-2019-1809: Value: +I, [2020-03-06T14:07:54.287260 #23133] INFO -- py3-201923-windows-server-2019-1809: 1 +I, [2020-03-06T14:07:54.287719 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.288150 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T14:07:54.288639 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: reg.present +I, [2020-03-06T14:07:54.289184 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:07:54.289680 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.290229 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:07:54.290726 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:56.520216 +I, [2020-03-06T14:07:54.291236 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 375.087 ms +I, [2020-03-06T14:07:54.291768 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.292282 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.292841 #23133] INFO -- py3-201923-windows-server-2019-1809: reg: +I, [2020-03-06T14:07:54.293343 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.293811 #23133] INFO -- py3-201923-windows-server-2019-1809: Added: +I, [2020-03-06T14:07:54.294240 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.294626 #23133] INFO -- py3-201923-windows-server-2019-1809: Entry: +I, [2020-03-06T14:07:54.294987 #23133] INFO -- py3-201923-windows-server-2019-1809: SystemDefaultTlsVersions +I, [2020-03-06T14:07:54.295363 #23133] INFO -- py3-201923-windows-server-2019-1809: Inheritance: +I, [2020-03-06T14:07:54.295756 #23133] INFO -- py3-201923-windows-server-2019-1809: True +I, [2020-03-06T14:07:54.296128 #23133] INFO -- py3-201923-windows-server-2019-1809: Key: +I, [2020-03-06T14:07:54.296549 #23133] INFO -- py3-201923-windows-server-2019-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T14:07:54.296916 #23133] INFO -- py3-201923-windows-server-2019-1809: Owner: +I, [2020-03-06T14:07:54.297310 #23133] INFO -- py3-201923-windows-server-2019-1809: None +I, [2020-03-06T14:07:54.297801 #23133] INFO -- py3-201923-windows-server-2019-1809: Perms: +I, [2020-03-06T14:07:54.298277 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.298693 #23133] INFO -- py3-201923-windows-server-2019-1809: Deny: +I, [2020-03-06T14:07:54.299082 #23133] INFO -- py3-201923-windows-server-2019-1809: None +I, [2020-03-06T14:07:54.299493 #23133] INFO -- py3-201923-windows-server-2019-1809: Grant: +I, [2020-03-06T14:07:54.299887 #23133] INFO -- py3-201923-windows-server-2019-1809: None +I, [2020-03-06T14:07:54.300303 #23133] INFO -- py3-201923-windows-server-2019-1809: Value: +I, [2020-03-06T14:07:54.300723 #23133] INFO -- py3-201923-windows-server-2019-1809: 1 +I, [2020-03-06T14:07:54.301166 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.301656 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: manually.update_git_repo-ng +I, [2020-03-06T14:07:54.302058 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: archive.extracted +I, [2020-03-06T14:07:54.302485 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T14:07:54.302859 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.303285 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T14:07:54.303677 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:56.895303 +I, [2020-03-06T14:07:54.308769 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 842.428 ms +I, [2020-03-06T14:07:54.309317 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.309753 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.310180 #23133] INFO -- py3-201923-windows-server-2019-1809: directories_created: +I, [2020-03-06T14:07:54.310604 #23133] INFO -- py3-201923-windows-server-2019-1809: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T14:07:54.311000 #23133] INFO -- py3-201923-windows-server-2019-1809: extracted_files: +I, [2020-03-06T14:07:54.311440 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ +I, [2020-03-06T14:07:54.312005 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T14:07:54.312577 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T14:07:54.313124 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T14:07:54.313703 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T14:07:54.314273 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T14:07:54.314824 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T14:07:54.315388 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T14:07:54.315930 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/README.md +I, [2020-03-06T14:07:54.316488 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T14:07:54.317798 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T14:07:54.318450 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T14:07:54.318977 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T14:07:54.319443 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T14:07:54.319998 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T14:07:54.320482 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T14:07:54.320857 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T14:07:54.321237 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T14:07:54.321608 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T14:07:54.322001 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T14:07:54.322360 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T14:07:54.322767 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T14:07:54.323316 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T14:07:54.323856 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T14:07:54.324412 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T14:07:54.324958 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T14:07:54.325524 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T14:07:54.326105 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T14:07:54.326678 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T14:07:54.327277 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T14:07:54.327811 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T14:07:54.328398 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T14:07:54.328976 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T14:07:54.329540 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T14:07:54.330114 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T14:07:54.330713 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T14:07:54.331253 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T14:07:54.331763 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T14:07:54.332177 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T14:07:54.332544 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T14:07:54.332916 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T14:07:54.333270 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T14:07:54.333661 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T14:07:54.334003 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T14:07:54.334394 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T14:07:54.334813 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T14:07:54.335229 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T14:07:54.335603 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T14:07:54.335945 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T14:07:54.336288 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T14:07:54.336650 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T14:07:54.336991 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T14:07:54.337342 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T14:07:54.337738 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T14:07:54.338210 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T14:07:54.338670 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T14:07:54.339018 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T14:07:54.339368 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T14:07:54.339727 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T14:07:54.340070 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T14:07:54.340449 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T14:07:54.340791 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T14:07:54.341130 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T14:07:54.341596 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T14:07:54.341979 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T14:07:54.342369 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T14:07:54.342734 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T14:07:54.343080 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T14:07:54.343439 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T14:07:54.343770 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T14:07:54.344157 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T14:07:54.344565 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T14:07:54.344979 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T14:07:54.345378 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T14:07:54.345730 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T14:07:54.346119 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T14:07:54.346480 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T14:07:54.346813 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T14:07:54.347150 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T14:07:54.347507 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T14:07:54.347839 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T14:07:54.348251 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T14:07:54.348672 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T14:07:54.349083 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T14:07:54.349443 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T14:07:54.349776 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T14:07:54.350159 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T14:07:54.350521 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T14:07:54.350861 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T14:07:54.351216 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T14:07:54.351641 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T14:07:54.352048 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T14:07:54.352468 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T14:07:54.352865 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T14:07:54.353280 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T14:07:54.353639 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T14:07:54.353982 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T14:07:54.354347 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T14:07:54.354794 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T14:07:54.355170 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T14:07:54.355506 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T14:07:54.355841 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T14:07:54.356190 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T14:07:54.356525 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T14:07:54.356908 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T14:07:54.357271 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T14:07:54.357605 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T14:07:54.358048 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T14:07:54.358423 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T14:07:54.358853 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T14:07:54.359245 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T14:07:54.359596 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T14:07:54.359955 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T14:07:54.360293 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T14:07:54.360690 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T14:07:54.361066 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T14:07:54.361448 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T14:07:54.361810 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T14:07:54.362175 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T14:07:54.362523 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T14:07:54.362876 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T14:07:54.367177 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T14:07:54.367613 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T14:07:54.367987 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T14:07:54.368387 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T14:07:54.368792 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T14:07:54.369152 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T14:07:54.369514 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T14:07:54.369941 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T14:07:54.370383 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T14:07:54.370801 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T14:07:54.371153 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T14:07:54.371503 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T14:07:54.371869 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T14:07:54.372216 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T14:07:54.372572 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T14:07:54.373048 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T14:07:54.373450 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T14:07:54.373825 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T14:07:54.374186 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T14:07:54.374575 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T14:07:54.374943 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T14:07:54.375286 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T14:07:54.375645 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T14:07:54.375990 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T14:07:54.376340 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T14:07:54.376703 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T14:07:54.377042 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T14:07:54.377390 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T14:07:54.377791 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T14:07:54.378153 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T14:07:54.378544 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T14:07:54.378890 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T14:07:54.379231 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T14:07:54.379593 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T14:07:54.379933 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T14:07:54.380274 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T14:07:54.380634 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T14:07:54.380989 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T14:07:54.381335 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T14:07:54.381704 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T14:07:54.382049 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T14:07:54.382426 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T14:07:54.382827 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T14:07:54.383215 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T14:07:54.383575 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T14:07:54.383908 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T14:07:54.384250 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T14:07:54.384607 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T14:07:54.384955 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T14:07:54.385877 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T14:07:54.386549 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T14:07:54.387136 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T14:07:54.387651 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T14:07:54.388041 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T14:07:54.388431 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T14:07:54.388805 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T14:07:54.389175 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T14:07:54.389591 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T14:07:54.390130 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T14:07:54.390582 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T14:07:54.391016 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T14:07:54.391414 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T14:07:54.391787 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T14:07:54.392207 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T14:07:54.392648 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T14:07:54.393074 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T14:07:54.393536 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T14:07:54.393976 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T14:07:54.394368 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T14:07:54.394712 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T14:07:54.395099 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T14:07:54.395460 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T14:07:54.395820 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T14:07:54.396202 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T14:07:54.396586 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T14:07:54.396997 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T14:07:54.397365 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T14:07:54.397707 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T14:07:54.398062 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T14:07:54.398399 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T14:07:54.398789 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T14:07:54.399153 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T14:07:54.399547 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T14:07:54.400010 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T14:07:54.400424 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T14:07:54.400772 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T14:07:54.401129 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T14:07:54.401464 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T14:07:54.401849 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T14:07:54.402211 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T14:07:54.402580 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T14:07:54.403025 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T14:07:54.403382 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T14:07:54.403879 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T14:07:54.404257 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T14:07:54.404598 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T14:07:54.404950 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T14:07:54.405284 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T14:07:54.405669 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T14:07:54.406035 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T14:07:54.406458 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T14:07:54.406877 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T14:07:54.407274 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T14:07:54.407663 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T14:07:54.408028 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T14:07:54.408360 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T14:07:54.408713 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T14:07:54.409076 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T14:07:54.409462 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T14:07:54.409883 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T14:07:54.410224 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T14:07:54.410626 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T14:07:54.410986 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T14:07:54.411319 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T14:07:54.411672 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T14:07:54.412006 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T14:07:54.412374 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T14:07:54.412831 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T14:07:54.413176 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T14:07:54.413524 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T14:07:54.413906 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T14:07:54.414247 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T14:07:54.414650 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T14:07:54.415017 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T14:07:54.415379 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T14:07:54.420719 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T14:07:54.421324 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T14:07:54.421789 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T14:07:54.422199 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T14:07:54.422581 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T14:07:54.422936 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T14:07:54.423331 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T14:07:54.423739 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T14:07:54.424183 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T14:07:54.424632 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T14:07:54.424997 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T14:07:54.425430 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T14:07:54.425810 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T14:07:54.426217 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T14:07:54.426597 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T14:07:54.426982 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T14:07:54.427403 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T14:07:54.427757 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T14:07:54.428220 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T14:07:54.428618 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T14:07:54.429039 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T14:07:54.429412 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T14:07:54.429755 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T14:07:54.430105 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T14:07:54.430476 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T14:07:54.430822 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T14:07:54.431332 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T14:07:54.431729 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T14:07:54.432110 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T14:07:54.432484 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T14:07:54.432846 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T14:07:54.433241 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T14:07:54.433588 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T14:07:54.433983 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T14:07:54.434371 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T14:07:54.434799 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T14:07:54.435219 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T14:07:54.435567 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T14:07:54.435960 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T14:07:54.436354 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T14:07:54.436731 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T14:07:54.437128 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T14:07:54.437480 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T14:07:54.437881 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T14:07:54.438397 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T14:07:54.438831 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T14:07:54.439297 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T14:07:54.439667 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T14:07:54.440066 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T14:07:54.440409 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T14:07:54.440802 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T14:07:54.441168 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T14:07:54.441576 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T14:07:54.442040 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T14:07:54.442399 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T14:07:54.442776 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T14:07:54.443156 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T14:07:54.443510 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T14:07:54.443935 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T14:07:54.444292 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T14:07:54.444698 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T14:07:54.445145 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T14:07:54.445520 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T14:07:54.445940 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T14:07:54.446304 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T14:07:54.446752 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T14:07:54.447149 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T14:07:54.447616 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T14:07:54.448007 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T14:07:54.448436 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T14:07:54.448897 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T14:07:54.449301 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T14:07:54.449659 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T14:07:54.450030 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T14:07:54.450380 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T14:07:54.450747 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T14:07:54.451092 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T14:07:54.451460 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T14:07:54.451866 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T14:07:54.452275 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T14:07:54.452675 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T14:07:54.453048 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T14:07:54.453397 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T14:07:54.453764 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T14:07:54.454108 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T14:07:54.454466 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T14:07:54.454845 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T14:07:54.455253 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T14:07:54.455688 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T14:07:54.456042 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T14:07:54.456392 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T14:07:54.456788 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T14:07:54.457135 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T14:07:54.457495 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T14:07:54.457862 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T14:07:54.458209 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T14:07:54.458594 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T14:07:54.459032 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T14:07:54.459439 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T14:07:54.459863 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T14:07:54.460215 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T14:07:54.460579 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T14:07:54.460921 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T14:07:54.461263 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T14:07:54.461625 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T14:07:54.461973 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T14:07:54.462532 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T14:07:54.462999 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T14:07:54.463435 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T14:07:54.463850 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T14:07:54.464291 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T14:07:54.464672 #23133] INFO -- py3-201923-windows-server-2019-1809: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T14:07:54.465014 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.465378 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: rename-extract +I, [2020-03-06T14:07:54.465776 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.466200 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.466584 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: file.rename: True +I, [2020-03-06T14:07:54.466935 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:57.737731 +I, [2020-03-06T14:07:54.467305 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 0.0 ms +I, [2020-03-06T14:07:54.467639 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.468016 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.468405 #23133] INFO -- py3-201923-windows-server-2019-1809: file.rename: +I, [2020-03-06T14:07:54.468749 #23133] INFO -- py3-201923-windows-server-2019-1809: True +I, [2020-03-06T14:07:54.469133 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.473749 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: pkg.refresh_db +I, [2020-03-06T14:07:54.474282 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.474648 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.475077 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" +I, [2020-03-06T14:07:54.475538 #23133] INFO -- py3-201923-windows-server-2019-1809: check_cmd determined the state succeeded +I, [2020-03-06T14:07:54.476024 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:04:57.751857 +I, [2020-03-06T14:07:54.476415 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 19226.552 ms +I, [2020-03-06T14:07:54.476789 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.477166 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.477522 #23133] INFO -- py3-201923-windows-server-2019-1809: pkg.refresh_db: +I, [2020-03-06T14:07:54.477974 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.478462 #23133] INFO -- py3-201923-windows-server-2019-1809: failed: +I, [2020-03-06T14:07:54.478874 #23133] INFO -- py3-201923-windows-server-2019-1809: 0 +I, [2020-03-06T14:07:54.479406 #23133] INFO -- py3-201923-windows-server-2019-1809: success: +I, [2020-03-06T14:07:54.479805 #23133] INFO -- py3-201923-windows-server-2019-1809: 298 +I, [2020-03-06T14:07:54.480195 #23133] INFO -- py3-201923-windows-server-2019-1809: total: +I, [2020-03-06T14:07:54.480560 #23133] INFO -- py3-201923-windows-server-2019-1809: 298 +I, [2020-03-06T14:07:54.480909 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.481276 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: 7zip +I, [2020-03-06T14:07:54.562714 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: pkg.installed +I, [2020-03-06T14:07:54.563161 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.563537 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T14:07:54.563936 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:05:17.027171 +I, [2020-03-06T14:07:54.564325 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 3401.418 ms +I, [2020-03-06T14:07:54.564682 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.565057 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.565387 #23133] INFO -- py3-201923-windows-server-2019-1809: 7zip: +I, [2020-03-06T14:07:54.565742 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.566091 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.566432 #23133] INFO -- py3-201923-windows-server-2019-1809: 18.06.00.0 +I, [2020-03-06T14:07:54.566777 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.567118 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.567439 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: kdiff3 +I, [2020-03-06T14:07:54.567817 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: pkg.installed +I, [2020-03-06T14:07:54.568162 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.568493 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T14:07:54.568930 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:05:20.444211 +I, [2020-03-06T14:07:54.569313 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 38038.219 ms +I, [2020-03-06T14:07:54.569676 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.570021 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.570348 #23133] INFO -- py3-201923-windows-server-2019-1809: kdiff3: +I, [2020-03-06T14:07:54.570673 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.571014 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.571340 #23133] INFO -- py3-201923-windows-server-2019-1809: Not Found +I, [2020-03-06T14:07:54.571674 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.572152 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.572553 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: git +I, [2020-03-06T14:07:54.572937 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: pkg.installed +I, [2020-03-06T14:07:54.573260 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.573588 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: The following packages were installed/updated: git +I, [2020-03-06T14:07:54.573926 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:05:58.498072 +I, [2020-03-06T14:07:54.574241 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 35281.327 ms +I, [2020-03-06T14:07:54.574579 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.574965 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.575363 #23133] INFO -- py3-201923-windows-server-2019-1809: git: +I, [2020-03-06T14:07:54.575721 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.576082 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.576417 #23133] INFO -- py3-201923-windows-server-2019-1809: 2.23.0.windows.1 +I, [2020-03-06T14:07:54.576767 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.577085 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.577418 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows_environment.refresh.path +I, [2020-03-06T14:07:54.577759 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.578070 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.578400 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: windows_environment.refresh: Success +I, [2020-03-06T14:07:54.578760 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:06:33.795481 +I, [2020-03-06T14:07:54.579147 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 77.63 ms +I, [2020-03-06T14:07:54.579532 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.579878 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.580209 #23133] INFO -- py3-201923-windows-server-2019-1809: windows_environment.refresh: +I, [2020-03-06T14:07:54.580555 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.580881 #23133] INFO -- py3-201923-windows-server-2019-1809: PATH: +I, [2020-03-06T14:07:54.581244 #23133] INFO -- py3-201923-windows-server-2019-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T14:07:54.581583 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.581965 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: chocolatey.bootstrap +I, [2020-03-06T14:07:54.582351 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.582740 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.583072 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T14:07:54.583381 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.583713 #23133] INFO -- py3-201923-windows-server-2019-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T14:07:54.584002 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.584475 #23133] INFO -- py3-201923-windows-server-2019-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T14:07:54.584824 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.585261 #23133] INFO -- py3-201923-windows-server-2019-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T14:07:54.585650 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.586047 #23133] INFO -- py3-201923-windows-server-2019-1809: Installing chocolatey on this machine +I, [2020-03-06T14:07:54.586372 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.591557 #23133] INFO -- py3-201923-windows-server-2019-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T14:07:54.592153 #23133] INFO -- py3-201923-windows-server-2019-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T14:07:54.592519 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.592903 #23133] INFO -- py3-201923-windows-server-2019-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T14:07:54.593262 #23133] INFO -- py3-201923-windows-server-2019-1809: before you can use choco. +I, [2020-03-06T14:07:54.593627 #23133] INFO -- py3-201923-windows-server-2019-1809: Restricting write permissions to Administrators +I, [2020-03-06T14:07:54.593956 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.594459 #23133] INFO -- py3-201923-windows-server-2019-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T14:07:54.594892 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.595304 #23133] INFO -- py3-201923-windows-server-2019-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T14:07:54.595633 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.596110 #23133] INFO -- py3-201923-windows-server-2019-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T14:07:54.596490 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.596875 #23133] INFO -- py3-201923-windows-server-2019-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T14:07:54.597185 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.597575 #23133] INFO -- py3-201923-windows-server-2019-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T14:07:54.597962 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.598301 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.598611 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.599005 #23133] INFO -- py3-201923-windows-server-2019-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T14:07:54.599526 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.599986 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.600297 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.600651 #23133] INFO -- py3-201923-windows-server-2019-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T14:07:54.601023 #23133] INFO -- py3-201923-windows-server-2019-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T14:07:54.601370 #23133] INFO -- py3-201923-windows-server-2019-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T14:07:54.601775 #23133] INFO -- py3-201923-windows-server-2019-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T14:07:54.602124 #23133] INFO -- py3-201923-windows-server-2019-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T14:07:54.602520 #23133] INFO -- py3-201923-windows-server-2019-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T14:07:54.602900 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.603299 #23133] INFO -- py3-201923-windows-server-2019-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T14:07:54.603716 #23133] INFO -- py3-201923-windows-server-2019-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T14:07:54.604040 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.604394 #23133] INFO -- py3-201923-windows-server-2019-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T14:07:54.604756 #23133] INFO -- py3-201923-windows-server-2019-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T14:07:54.605059 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.605403 #23133] INFO -- py3-201923-windows-server-2019-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T14:07:54.605815 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.606278 #23133] INFO -- py3-201923-windows-server-2019-1809: Run choco /? for a list of functions. +I, [2020-03-06T14:07:54.606739 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.607104 #23133] INFO -- py3-201923-windows-server-2019-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T14:07:54.607454 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.607807 #23133] INFO -- py3-201923-windows-server-2019-1809: first prior to using choco. +I, [2020-03-06T14:07:54.608100 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.608435 #23133] INFO -- py3-201923-windows-server-2019-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T14:07:54.608745 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.609075 #23133] INFO -- py3-201923-windows-server-2019-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T14:07:54.609448 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:06:33.873111 +I, [2020-03-06T14:07:54.609876 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 29015.625 ms +I, [2020-03-06T14:07:54.610220 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.610565 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.610893 #23133] INFO -- py3-201923-windows-server-2019-1809: chocolatey.bootstrap: +I, [2020-03-06T14:07:54.611232 #23133] INFO -- py3-201923-windows-server-2019-1809: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T14:07:54.611595 #23133] INFO -- py3-201923-windows-server-2019-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T14:07:54.611934 #23133] INFO -- py3-201923-windows-server-2019-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T14:07:54.612302 #23133] INFO -- py3-201923-windows-server-2019-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T14:07:54.612658 #23133] INFO -- py3-201923-windows-server-2019-1809: Installing chocolatey on this machine +I, [2020-03-06T14:07:54.613013 #23133] INFO -- py3-201923-windows-server-2019-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T14:07:54.613528 #23133] INFO -- py3-201923-windows-server-2019-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T14:07:54.613971 #23133] INFO -- py3-201923-windows-server-2019-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T14:07:54.614387 #23133] INFO -- py3-201923-windows-server-2019-1809: before you can use choco. +I, [2020-03-06T14:07:54.614740 #23133] INFO -- py3-201923-windows-server-2019-1809: Restricting write permissions to Administrators +I, [2020-03-06T14:07:54.615091 #23133] INFO -- py3-201923-windows-server-2019-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T14:07:54.615456 #23133] INFO -- py3-201923-windows-server-2019-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T14:07:54.615796 #23133] INFO -- py3-201923-windows-server-2019-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T14:07:54.616172 #23133] INFO -- py3-201923-windows-server-2019-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T14:07:54.616635 #23133] INFO -- py3-201923-windows-server-2019-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T14:07:54.616972 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.617370 #23133] INFO -- py3-201923-windows-server-2019-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T14:07:54.617699 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.618110 #23133] INFO -- py3-201923-windows-server-2019-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T14:07:54.618519 #23133] INFO -- py3-201923-windows-server-2019-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T14:07:54.618915 #23133] INFO -- py3-201923-windows-server-2019-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T14:07:54.619332 #23133] INFO -- py3-201923-windows-server-2019-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T14:07:54.619736 #23133] INFO -- py3-201923-windows-server-2019-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T14:07:54.620200 #23133] INFO -- py3-201923-windows-server-2019-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T14:07:54.620580 #23133] INFO -- py3-201923-windows-server-2019-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T14:07:54.620952 #23133] INFO -- py3-201923-windows-server-2019-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T14:07:54.621321 #23133] INFO -- py3-201923-windows-server-2019-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T14:07:54.621656 #23133] INFO -- py3-201923-windows-server-2019-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T14:07:54.622007 #23133] INFO -- py3-201923-windows-server-2019-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T14:07:54.622396 #23133] INFO -- py3-201923-windows-server-2019-1809: Run choco /? for a list of functions. +I, [2020-03-06T14:07:54.622745 #23133] INFO -- py3-201923-windows-server-2019-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T14:07:54.623181 #23133] INFO -- py3-201923-windows-server-2019-1809: first prior to using choco. +I, [2020-03-06T14:07:54.623588 #23133] INFO -- py3-201923-windows-server-2019-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T14:07:54.624000 #23133] INFO -- py3-201923-windows-server-2019-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T14:07:54.624344 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.624679 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T14:07:54.625053 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: chocolatey.installed +I, [2020-03-06T14:07:54.625432 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: notepadplusplus +I, [2020-03-06T14:07:54.625768 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.626182 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: +I, [2020-03-06T14:07:54.626539 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:07:02.888736 +I, [2020-03-06T14:07:54.626952 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 13265.621 ms +I, [2020-03-06T14:07:54.627294 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.627619 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.627952 #23133] INFO -- py3-201923-windows-server-2019-1809: notepadplusplus: +I, [2020-03-06T14:07:54.628314 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.628643 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.629047 #23133] INFO -- py3-201923-windows-server-2019-1809: - 7.8.5 +I, [2020-03-06T14:07:54.629449 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.629837 #23133] INFO -- py3-201923-windows-server-2019-1809: notepadplusplus.install: +I, [2020-03-06T14:07:54.630199 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.630523 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.630892 #23133] INFO -- py3-201923-windows-server-2019-1809: - 7.8.5 +I, [2020-03-06T14:07:54.631283 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.631610 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.631987 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T14:07:54.632315 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: chocolatey.installed +I, [2020-03-06T14:07:54.632691 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: windirstat +I, [2020-03-06T14:07:54.633107 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.633478 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: +I, [2020-03-06T14:07:54.633843 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:07:16.154357 +I, [2020-03-06T14:07:54.638460 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 10062.777 ms +I, [2020-03-06T14:07:54.638960 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.639308 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.639689 #23133] INFO -- py3-201923-windows-server-2019-1809: windirstat: +I, [2020-03-06T14:07:54.640058 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.640421 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.640951 #23133] INFO -- py3-201923-windows-server-2019-1809: - 1.1.2.20161210 +I, [2020-03-06T14:07:54.641433 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.641857 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.642282 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.system.server.features.installed.telnet-client +I, [2020-03-06T14:07:54.642694 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: win_servermanager.installed +I, [2020-03-06T14:07:54.643078 #23133] INFO -- py3-201923-windows-server-2019-1809: Name: telnet-client +I, [2020-03-06T14:07:54.643455 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.643845 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: Installed the following: +I, [2020-03-06T14:07:54.644217 #23133] INFO -- py3-201923-windows-server-2019-1809: - telnet-client +I, [2020-03-06T14:07:54.644664 #23133] INFO -- py3-201923-windows-server-2019-1809: - Telnet-Client +I, [2020-03-06T14:07:54.645121 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:07:26.217134 +I, [2020-03-06T14:07:54.645613 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 27143.272 ms +I, [2020-03-06T14:07:54.646132 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.646659 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.647208 #23133] INFO -- py3-201923-windows-server-2019-1809: Telnet-Client: +I, [2020-03-06T14:07:54.647744 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.648250 #23133] INFO -- py3-201923-windows-server-2019-1809: new: +I, [2020-03-06T14:07:54.648790 #23133] INFO -- py3-201923-windows-server-2019-1809: Telnet Client +I, [2020-03-06T14:07:54.649314 #23133] INFO -- py3-201923-windows-server-2019-1809: old: +I, [2020-03-06T14:07:54.649774 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.650219 #23133] INFO -- py3-201923-windows-server-2019-1809: ID: windows.module.system.reboot +I, [2020-03-06T14:07:54.650643 #23133] INFO -- py3-201923-windows-server-2019-1809: Function: module.run +I, [2020-03-06T14:07:54.651007 #23133] INFO -- py3-201923-windows-server-2019-1809: Result: True +I, [2020-03-06T14:07:54.651407 #23133] INFO -- py3-201923-windows-server-2019-1809: Comment: system.reboot: True +I, [2020-03-06T14:07:54.651792 #23133] INFO -- py3-201923-windows-server-2019-1809: Started: 11:07:53.360406 +I, [2020-03-06T14:07:54.652160 #23133] INFO -- py3-201923-windows-server-2019-1809: Duration: 356.462 ms +I, [2020-03-06T14:07:54.652556 #23133] INFO -- py3-201923-windows-server-2019-1809: Changes: +I, [2020-03-06T14:07:54.652972 #23133] INFO -- py3-201923-windows-server-2019-1809: ---------- +I, [2020-03-06T14:07:54.653412 #23133] INFO -- py3-201923-windows-server-2019-1809: system.reboot: +I, [2020-03-06T14:07:54.653842 #23133] INFO -- py3-201923-windows-server-2019-1809: True +I, [2020-03-06T14:07:54.654189 #23133] INFO -- py3-201923-windows-server-2019-1809: +I, [2020-03-06T14:07:54.654567 #23133] INFO -- py3-201923-windows-server-2019-1809: Summary for local +I, [2020-03-06T14:07:54.654925 #23133] INFO -- py3-201923-windows-server-2019-1809: ------------- +I, [2020-03-06T14:07:54.655288 #23133] INFO -- py3-201923-windows-server-2019-1809: Succeeded: 20 (changed=20) +I, [2020-03-06T14:07:54.655657 #23133] INFO -- py3-201923-windows-server-2019-1809: Failed: 0 +I, [2020-03-06T14:07:54.656009 #23133] INFO -- py3-201923-windows-server-2019-1809: ------------- +I, [2020-03-06T14:07:54.656395 #23133] INFO -- py3-201923-windows-server-2019-1809: Total states run: 20 +I, [2020-03-06T14:07:54.656789 #23133] INFO -- py3-201923-windows-server-2019-1809: Total run time: 191.647 s +I, [2020-03-06T14:07:54.684462 #23133] INFO -- py3-201923-windows-server-2019-1809: Downloading files from +I, [2020-03-06T14:07:54.854265 #23133] INFO -- py3-201923-windows-server-2019-1809: Finished converging (4m38.10s). +I, [2020-03-06T14:07:54.854476 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Setting up ... +I, [2020-03-06T14:07:54.857041 #23133] INFO -- py3-201923-windows-server-2019-1809: Finished setting up (0m0.00s). +I, [2020-03-06T14:07:54.857234 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Verifying ... +I, [2020-03-06T14:07:56.033838 #23133] INFO -- py3-201923-windows-server-2019-1809: Loaded default +I, [2020-03-06T14:08:44.412430 #23133] INFO -- py3-201923-windows-server-2019-1809: Finished verifying (0m49.55s). +I, [2020-03-06T14:08:44.412620 #23133] INFO -- py3-201923-windows-server-2019-1809: Finished testing (7m25.76s). +I, [2020-03-06T14:08:44.414661 #23133] INFO -- py3-201923-windows-server-2019-1809: -----> Destroying ... +I, [2020-03-06T14:08:55.625428 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Forcing shutdown of VM... +I, [2020-03-06T14:08:57.495103 #23133] INFO -- py3-201923-windows-server-2019-1809: ==> default: Destroying VM and associated drives... +I, [2020-03-06T14:08:58.256017 #23133] INFO -- py3-201923-windows-server-2019-1809: Vagrant instance destroyed. +I, [2020-03-06T14:08:58.257531 #23133] INFO -- py3-201923-windows-server-2019-1809: Finished destroying (0m13.84s). diff --git a/test/results/py3-201923-windows-server-2019-1809.log b/test/results/py3-201923-windows-server-2019-1809.log new file mode 100644 index 0000000..159a403 --- /dev/null +++ b/test/results/py3-201923-windows-server-2019-1809.log @@ -0,0 +1,1001 @@ +Fri Mar 6 14:00:57 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +Author: Peter Mudd +Date: Fri Mar 6 12:43:24 2020 -0500 + + feat: support saltstack 3000 +CURRENT BRANCH COMMIT ID +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e +CURRENT RELEASE TAG +v1.0.0 +-----> Starting Test Kitchen (v2.3.4) +-----> Cleaning up any prior instances of +-----> Destroying ... + Finished destroying (0m0.00s). +-----> Testing +-----> Creating ... + Bringing machine 'default' up with 'virtualbox' provider... + ==> default: Cloning VM... + ==> default: Matching MAC address for NAT networking... + ==> default: Checking if box 'StefanScherer/windows_2019' version '2020.02.12' is up to date... + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-201923-windows-server-2019-1809-2dcdfdef-561b-478a-ab83-71777a3782e7 + ==> default: Clearing any previously set network interfaces... + ==> default: Preparing network interfaces based on configuration... + default: Adapter 1: nat + ==> default: Forwarding ports... + default: 3389 (guest) => 3389 (host) (adapter 1) + default: 5985 (guest) => 55985 (host) (adapter 1) + default: 5986 (guest) => 55986 (host) (adapter 1) + default: 22 (guest) => 2222 (host) (adapter 1) + ==> default: Running 'pre-boot' VM customizations... + ==> default: Booting VM... + ==> default: Waiting for machine to boot. This may take a few minutes... + default: WinRM address: 127.0.0.1:55985 + default: WinRM username: vagrant + default: WinRM execution_time_limit: PT2H + default: WinRM transport: negotiate + ==> default: Machine booted and ready! + ==> default: Checking for guest additions in VM... + ==> default: Mounting shared folders... + default: /results => /mnt/c/tmp/results + ==> default: Machine not provisioned because `--no-provision` is specified. + [WinRM] Established + + Vagrant instance created. + Finished creating (1m58.09s). +-----> Converging ... + Preparing files for transfer + Preparing salt-minion + Preparing pillars into /srv/pillar + pillars-from-files is deprecated in favor of pillars_from_files + Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula + Preparing state_top + Preparing scripts into /etc/salt/scripts + + + Directory: C:\ + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 11:03 AM temp + Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + Installing Salt minion + Starting the Salt minion service + Salt minion successfully installed + You asked for latest and you have 2019.2.3 installed, sweet! + + + + + Directory: C:\Users\vagrant\AppData\Local\Temp + + + Mode LastWriteTime Length Name + ---- ------------- ------ ---- + d----- 3/6/2020 11:04 AM kitchen + + + Transferring files to + c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + At line:1 char:131 + + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException + + FullyQualifiedErrorId : NativeCommandError + + + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] + pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + + [ERROR ] {'pkg.refresh_db': {'failed': 0, 'total': 0, 'success': 0}} + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + + + local: + ---------- + ID: windows.state.system.hostname.saltstack1 + Function: system.hostname + Name: saltstack1 + Result: True + Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot + Started: 11:04:41.892269 + Duration: 125.136 ms + Changes: + ---------- + hostname: + saltstack1 + ---------- + ID: windows.state.system.computer_desc.description + Function: system.computer_desc + Name: Saltstack Computer Description + Result: True + Comment: Computer description successfully changed to 'Saltstack Computer Description' + Started: 11:04:42.033501 + Duration: 3283.512 ms + Changes: + ---------- + new: + Saltstack Computer Description + old: + ---------- + ID: windows.state.timezone.system.America/New_York + Function: timezone.system + Name: America/New_York + Result: True + Comment: Set timezone America/New_York + Started: 11:04:45.347890 + Duration: 45.755 ms + Changes: + ---------- + timezone: + America/New_York + ---------- + ID: windows.module.environ.items + Function: module.run + Result: True + Comment: environ.items: Success + Started: 11:04:45.414098 + Duration: 11.324 ms + Changes: + ---------- + environ.items: + ---------- + ALLUSERSPROFILE: + C:\ProgramData + APPDATA: + C:\Users\vagrant\AppData\Roaming + COMMONPROGRAMFILES: + C:\Program Files\Common Files + COMMONPROGRAMFILES(X86): + C:\Program Files (x86)\Common Files + COMMONPROGRAMW6432: + C:\Program Files\Common Files + COMPUTERNAME: + VAGRANT + COMSPEC: + C:\Windows\system32\cmd.exe + DRIVERDATA: + C:\Windows\System32\Drivers\DriverData + HOMEDRIVE: + C: + HOMEPATH: + \Users\vagrant + LOCALAPPDATA: + C:\Users\vagrant\AppData\Local + LOGONSERVER: + \\VAGRANT + NUMBER_OF_PROCESSORS: + 2 + OS: + Windows_NT + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 + PATHEXT: + .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL + PROCESSOR_ARCHITECTURE: + AMD64 + PROCESSOR_IDENTIFIER: + Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_LEVEL: + 6 + PROCESSOR_REVISION: + 8e0c + PROGRAMDATA: + C:\ProgramData + PROGRAMFILES: + C:\Program Files + PROGRAMFILES(X86): + C:\Program Files (x86) + PROGRAMW6432: + C:\Program Files + PROMPT: + $P$G + PSMODULEPATH: + C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules + PUBLIC: + C:\Users\Public + PYTHON: + C:\salt\bin\python.exe + SALTDIR: + C:\salt + SCRIPT: + C:\salt\bin\Scripts\salt-call + SYSTEMDRIVE: + C: + SYSTEMROOT: + C:\Windows + TEMP: + C:\Users\vagrant\AppData\Local\Temp + TMP: + C:\Users\vagrant\AppData\Local\Temp + USERDOMAIN: + VAGRANT + USERDOMAIN_ROAMINGPROFILE: + VAGRANT + USERNAME: + vagrant + USERPROFILE: + C:\Users\vagrant + WINDIR: + C:\Windows + ---------- + ID: windows.module.user.current + Function: module.run + Result: True + Comment: user.current: VAGRANT\vagrant + Started: 11:04:45.425422 + Duration: 15.614 ms + Changes: + ---------- + user.current: + VAGRANT\vagrant + ---------- + ID: windows.module.status.uptime + Function: module.run + Result: True + Comment: status.uptime: 0:02:07.471807 + Started: 11:04:45.441036 + Duration: 30.771 ms + Changes: + ---------- + status.uptime: + 0:02:07.471807 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 11:04:45.471807 + Duration: 11048.409 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + Function: reg.present + Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Result: True + Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Started: 11:04:56.520216 + Duration: 375.087 ms + Changes: + ---------- + reg: + ---------- + Added: + ---------- + Entry: + SystemDefaultTlsVersions + Inheritance: + True + Key: + HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + Owner: + None + Perms: + ---------- + Deny: + None + Grant: + None + Value: + 1 + ---------- + ID: manually.update_git_repo-ng + Function: archive.extracted + Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + Result: True + Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs + Started: 11:04:56.895303 + Duration: 842.428 ms + Changes: + ---------- + directories_created: + - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ + extracted_files: + - salt-winrepo-ng-master/ + - salt-winrepo-ng-master/.gitignore + - salt-winrepo-ng-master/.travis.yml + - salt-winrepo-ng-master/.travis/ + - salt-winrepo-ng-master/.travis/requirements.txt + - salt-winrepo-ng-master/.travis/tests.py + - salt-winrepo-ng-master/7zip.sls + - salt-winrepo-ng-master/LICENSE + - salt-winrepo-ng-master/README.md + - salt-winrepo-ng-master/_config.yml + - salt-winrepo-ng-master/activeperl_x64.sls + - salt-winrepo-ng-master/activeperl_x86.sls + - salt-winrepo-ng-master/adobeair.sls + - salt-winrepo-ng-master/adobereader-dc-classic.sls + - salt-winrepo-ng-master/adobereader-xi.sls + - salt-winrepo-ng-master/adobereader.sls + - salt-winrepo-ng-master/adobeshockwaveplayer.sls + - salt-winrepo-ng-master/adv-ip-scanner.sls + - salt-winrepo-ng-master/adv-port-scanner.sls + - salt-winrepo-ng-master/advancedlogging.sls + - salt-winrepo-ng-master/anydesk-msi.sls + - salt-winrepo-ng-master/anydesk.sls + - salt-winrepo-ng-master/applicationrequestrouting.sls + - salt-winrepo-ng-master/aspnet-mvc1.sls + - salt-winrepo-ng-master/atom.sls + - salt-winrepo-ng-master/audacity.sls + - salt-winrepo-ng-master/auditbeat/ + - salt-winrepo-ng-master/auditbeat/init.sls + - salt-winrepo-ng-master/auditbeat/install.cmd + - salt-winrepo-ng-master/auditbeat/install.ps1 + - salt-winrepo-ng-master/auditbeat/remove.cmd + - salt-winrepo-ng-master/autohotkey.sls + - salt-winrepo-ng-master/autoit.sls + - salt-winrepo-ng-master/autopsy.sls + - salt-winrepo-ng-master/awscli.sls + - salt-winrepo-ng-master/azuredatastudio.sls + - salt-winrepo-ng-master/bandizip.sls + - salt-winrepo-ng-master/belarc-advisor.sls + - salt-winrepo-ng-master/bginfo4x.sls + - salt-winrepo-ng-master/bitnami-nginxstack.sls + - salt-winrepo-ng-master/bitvise.sls + - salt-winrepo-ng-master/blender.sls + - salt-winrepo-ng-master/bootracer.sls + - salt-winrepo-ng-master/bulk_extractor.sls + - salt-winrepo-ng-master/bulkrenameutility.sls + - salt-winrepo-ng-master/ccleaner-slim.sls + - salt-winrepo-ng-master/ccleaner.sls + - salt-winrepo-ng-master/cdburnerxp.sls + - salt-winrepo-ng-master/cdroller.sls + - salt-winrepo-ng-master/check-mk-agent-msi.sls + - salt-winrepo-ng-master/check-mk-agent.sls + - salt-winrepo-ng-master/chocolatey/ + - salt-winrepo-ng-master/chocolatey/init.sls + - salt-winrepo-ng-master/chocolatey/install.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.cmd + - salt-winrepo-ng-master/chocolatey/uninstall.ps1 + - salt-winrepo-ng-master/chrome-rdp.sls + - salt-winrepo-ng-master/chrome.sls + - salt-winrepo-ng-master/clamav.sls + - salt-winrepo-ng-master/clamwin.sls + - salt-winrepo-ng-master/classicshell.sls + - salt-winrepo-ng-master/clink.sls + - salt-winrepo-ng-master/conemu.sls + - salt-winrepo-ng-master/cpu-z.sls + - salt-winrepo-ng-master/curl.sls + - salt-winrepo-ng-master/cyberduck-cli.sls + - salt-winrepo-ng-master/cyberduck-msi.sls + - salt-winrepo-ng-master/cyberduck.sls + - salt-winrepo-ng-master/defraggler.sls + - salt-winrepo-ng-master/docs/ + - salt-winrepo-ng-master/docs/ReadMe.md + - salt-winrepo-ng-master/dotnet.sls + - salt-winrepo-ng-master/dropbox.sls + - salt-winrepo-ng-master/duplicati.sls + - salt-winrepo-ng-master/dvdstyler.sls + - salt-winrepo-ng-master/echo-desktop.sls + - salt-winrepo-ng-master/eea.sls + - salt-winrepo-ng-master/emet.sls + - salt-winrepo-ng-master/emsisoft-anti-malware.sls + - salt-winrepo-ng-master/eraser.sls + - salt-winrepo-ng-master/erlang/ + - salt-winrepo-ng-master/erlang/init.sls + - salt-winrepo-ng-master/erlang/install.cmd + - salt-winrepo-ng-master/evernote.sls + - salt-winrepo-ng-master/fiddler.sls + - salt-winrepo-ng-master/filebeat/ + - salt-winrepo-ng-master/filebeat/init.sls + - salt-winrepo-ng-master/filebeat/install.cmd + - salt-winrepo-ng-master/filebeat/install.ps1 + - salt-winrepo-ng-master/filebeat/remove.cmd + - salt-winrepo-ng-master/filehippo-app-manager.sls + - salt-winrepo-ng-master/filezilla.sls + - salt-winrepo-ng-master/firefox-esr_x64.sls + - salt-winrepo-ng-master/firefox-esr_x86.sls + - salt-winrepo-ng-master/firefox_x64.sls + - salt-winrepo-ng-master/firefox_x86.sls + - salt-winrepo-ng-master/functionbeat/ + - salt-winrepo-ng-master/functionbeat/init.sls + - salt-winrepo-ng-master/functionbeat/install.cmd + - salt-winrepo-ng-master/functionbeat/install.ps1 + - salt-winrepo-ng-master/functionbeat/remove.cmd + - salt-winrepo-ng-master/gedit.sls + - salt-winrepo-ng-master/gimp.sls + - salt-winrepo-ng-master/git-extensions.sls + - salt-winrepo-ng-master/git.sls + - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls + - salt-winrepo-ng-master/gnucash.sls + - salt-winrepo-ng-master/golang.sls + - salt-winrepo-ng-master/goodsync.sls + - salt-winrepo-ng-master/gow.sls + - salt-winrepo-ng-master/gpg4win-light.sls + - salt-winrepo-ng-master/gpg4win-vanilla.sls + - salt-winrepo-ng-master/gpg4win/ + - salt-winrepo-ng-master/gpg4win/init.sls + - salt-winrepo-ng-master/gpg4win/silent.ini + - salt-winrepo-ng-master/graylog-collector-sidecar.sls + - salt-winrepo-ng-master/grepwin.sls + - salt-winrepo-ng-master/gvim.sls + - salt-winrepo-ng-master/handbrake.sls + - salt-winrepo-ng-master/heartbeat/ + - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp + - salt-winrepo-ng-master/heartbeat/init.sls + - salt-winrepo-ng-master/heartbeat/install.cmd + - salt-winrepo-ng-master/heartbeat/install.ps1 + - salt-winrepo-ng-master/heartbeat/remove.cmd + - salt-winrepo-ng-master/hipchat.sls + - salt-winrepo-ng-master/hostsfileeditor.sls + - salt-winrepo-ng-master/hwinfo.sls + - salt-winrepo-ng-master/ice.sls + - salt-winrepo-ng-master/icecast.sls + - salt-winrepo-ng-master/icloud.sls + - salt-winrepo-ng-master/iismediaservices.sls + - salt-winrepo-ng-master/influx-capacitor.sls + - salt-winrepo-ng-master/inkscape.sls + - salt-winrepo-ng-master/intellij-community.sls + - salt-winrepo-ng-master/intellij-ultimate.sls + - salt-winrepo-ng-master/internet-evidence-finder.sls + - salt-winrepo-ng-master/irfanview-plugins.sls + - salt-winrepo-ng-master/irfanview.sls + - salt-winrepo-ng-master/isapirewrite-lite.sls + - salt-winrepo-ng-master/itunes.sls + - salt-winrepo-ng-master/jdk8.sls + - salt-winrepo-ng-master/jre.sls + - salt-winrepo-ng-master/jre8.sls + - salt-winrepo-ng-master/jungledisk-server-management.sls + - salt-winrepo-ng-master/jungledisk-server.sls + - salt-winrepo-ng-master/jungledisk-workgroup.sls + - salt-winrepo-ng-master/kdiff3.sls + - salt-winrepo-ng-master/keepass-2x.sls + - salt-winrepo-ng-master/keepass.sls + - salt-winrepo-ng-master/lastpass.sls + - salt-winrepo-ng-master/lazarus.sls + - salt-winrepo-ng-master/libreoffice.sls + - salt-winrepo-ng-master/logparser.sls + - salt-winrepo-ng-master/maas360bootanalyzer.sls + - salt-winrepo-ng-master/malwarebytes.sls + - salt-winrepo-ng-master/mariadb.sls + - salt-winrepo-ng-master/mercurial.sls + - salt-winrepo-ng-master/messageanalyzer.sls + - salt-winrepo-ng-master/metricbeat/ + - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp + - salt-winrepo-ng-master/metricbeat/init.sls + - salt-winrepo-ng-master/metricbeat/install.cmd + - salt-winrepo-ng-master/metricbeat/install.ps1 + - salt-winrepo-ng-master/metricbeat/remove.cmd + - salt-winrepo-ng-master/microsoft-build-tools.sls + - salt-winrepo-ng-master/mikogo.sls + - salt-winrepo-ng-master/miktex-basic.sls + - salt-winrepo-ng-master/mongodb.sls + - salt-winrepo-ng-master/ms-mbsa.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls + - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls + - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls + - salt-winrepo-ng-master/mucommander.sls + - salt-winrepo-ng-master/mysql-essential.sls + - salt-winrepo-ng-master/mysql-installer-community.sls + - salt-winrepo-ng-master/mysql-workbench.sls + - salt-winrepo-ng-master/never10.sls + - salt-winrepo-ng-master/newrelic-infra.sls + - salt-winrepo-ng-master/nextcloud-client.sls + - salt-winrepo-ng-master/nmap.sls + - salt-winrepo-ng-master/node.js-lts.sls + - salt-winrepo-ng-master/node.js.sls + - salt-winrepo-ng-master/nomacs.sls + - salt-winrepo-ng-master/npp.sls + - salt-winrepo-ng-master/nsclient.sls + - salt-winrepo-ng-master/nsis.sls + - salt-winrepo-ng-master/ntp.sls + - salt-winrepo-ng-master/nunit-console.sls + - salt-winrepo-ng-master/nxlog.sls + - salt-winrepo-ng-master/octopus-tentacle.sls + - salt-winrepo-ng-master/openlp.sls + - salt-winrepo-ng-master/openoffice.sls + - salt-winrepo-ng-master/openvpn.sls + - salt-winrepo-ng-master/osquery.sls + - salt-winrepo-ng-master/ossec-agent.sls + - salt-winrepo-ng-master/owncloud.sls + - salt-winrepo-ng-master/packetbeat/ + - salt-winrepo-ng-master/packetbeat/init.sls + - salt-winrepo-ng-master/packetbeat/install.cmd + - salt-winrepo-ng-master/packetbeat/install.ps1 + - salt-winrepo-ng-master/packetbeat/remove.cmd + - salt-winrepo-ng-master/pandoc.sls + - salt-winrepo-ng-master/parallels-client-15.sls + - salt-winrepo-ng-master/pass4win.sls + - salt-winrepo-ng-master/passware-kit-agent.sls + - salt-winrepo-ng-master/passware-kit-forensic.sls + - salt-winrepo-ng-master/patchmypc-free.sls + - salt-winrepo-ng-master/pdf24creator.sls + - salt-winrepo-ng-master/pdfcreator.sls + - salt-winrepo-ng-master/peazip.sls + - salt-winrepo-ng-master/pgadmin4.sls + - salt-winrepo-ng-master/pgina.sls + - salt-winrepo-ng-master/pidgin.sls + - salt-winrepo-ng-master/postgresql.sls + - salt-winrepo-ng-master/powerbi-desktop.sls + - salt-winrepo-ng-master/powershell-core.sls + - salt-winrepo-ng-master/prometheus-wmi-exporter.sls + - salt-winrepo-ng-master/putty.sls + - salt-winrepo-ng-master/pycharm-pro/ + - salt-winrepo-ng-master/pycharm-pro/init.sls + - salt-winrepo-ng-master/pycharm-pro/silent.config + - salt-winrepo-ng-master/python2_x64.sls + - salt-winrepo-ng-master/python2_x86.sls + - salt-winrepo-ng-master/python3_x64.sls + - salt-winrepo-ng-master/python3_x86.sls + - salt-winrepo-ng-master/qemu.sls + - salt-winrepo-ng-master/queueexplorerpro.sls + - salt-winrepo-ng-master/quicktime.sls + - salt-winrepo-ng-master/rabbitmq.sls + - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls + - salt-winrepo-ng-master/rakudo-star_x64.sls + - salt-winrepo-ng-master/rasclient.sls + - salt-winrepo-ng-master/rdcman.sls + - salt-winrepo-ng-master/rocketchat.sls + - salt-winrepo-ng-master/rubyinstaller_x64.sls + - salt-winrepo-ng-master/rubyinstaller_x86.sls + - salt-winrepo-ng-master/salt-minion-py2.sls + - salt-winrepo-ng-master/salt-minion-py3.sls + - salt-winrepo-ng-master/sandboxie.sls + - salt-winrepo-ng-master/scaleout.sls + - salt-winrepo-ng-master/secunia.psi.sls + - salt-winrepo-ng-master/sensu.sls + - salt-winrepo-ng-master/sharpdevelop.sls + - salt-winrepo-ng-master/skitch.sls + - salt-winrepo-ng-master/skype-msi.sls + - salt-winrepo-ng-master/skype.sls + - salt-winrepo-ng-master/slack-machine-msi.sls + - salt-winrepo-ng-master/slack-user-msi.sls + - salt-winrepo-ng-master/slack.sls + - salt-winrepo-ng-master/smartmontools.sls + - salt-winrepo-ng-master/snmptools.sls + - salt-winrepo-ng-master/soapui.sls + - salt-winrepo-ng-master/software-informer.sls + - salt-winrepo-ng-master/sourcetree.sls + - salt-winrepo-ng-master/spybot-anti-beacon.sls + - salt-winrepo-ng-master/spybot.sls + - salt-winrepo-ng-master/sscserv-free.sls + - salt-winrepo-ng-master/stayawake/ + - salt-winrepo-ng-master/stayawake/init.sls + - salt-winrepo-ng-master/stayawake/install.cmd + - salt-winrepo-ng-master/steam.sls + - salt-winrepo-ng-master/stellarium.sls + - salt-winrepo-ng-master/strawberryperl_x64.sls + - salt-winrepo-ng-master/strawberryperl_x86.sls + - salt-winrepo-ng-master/stunnel.sls + - salt-winrepo-ng-master/subinacl.sls + - salt-winrepo-ng-master/sumatrapdf.sls + - salt-winrepo-ng-master/svn.sls + - salt-winrepo-ng-master/teamviewer.sls + - salt-winrepo-ng-master/teamviewer_host.sls + - salt-winrepo-ng-master/teracopy.sls + - salt-winrepo-ng-master/texmaker.sls + - salt-winrepo-ng-master/texniccenter.sls + - salt-winrepo-ng-master/texstudio.sls + - salt-winrepo-ng-master/texworks.sls + - salt-winrepo-ng-master/thunderbird.sls + - salt-winrepo-ng-master/tightvnc.sls + - salt-winrepo-ng-master/todotxt.net.sls + - salt-winrepo-ng-master/todour.sls + - salt-winrepo-ng-master/tortoise-bzr.sls + - salt-winrepo-ng-master/tortoise-git.sls + - salt-winrepo-ng-master/tortoise-hg.sls + - salt-winrepo-ng-master/tortoise-svn.sls + - salt-winrepo-ng-master/truecrypt.sls + - salt-winrepo-ng-master/ultradefrag.sls + - salt-winrepo-ng-master/urlrewrite.sls + - salt-winrepo-ng-master/usbdlm.sls + - salt-winrepo-ng-master/vagrant.sls + - salt-winrepo-ng-master/vcforpython27.sls + - salt-winrepo-ng-master/vcxsrv.sls + - salt-winrepo-ng-master/verysleepy.sls + - salt-winrepo-ng-master/veyon.sls + - salt-winrepo-ng-master/virtualbox.sls + - salt-winrepo-ng-master/viscosity.sls + - salt-winrepo-ng-master/vivaldi.sls + - salt-winrepo-ng-master/vlc.sls + - salt-winrepo-ng-master/vs-community.sls + - salt-winrepo-ng-master/vs_remotetools_2017.sls + - salt-winrepo-ng-master/vscode.sls + - salt-winrepo-ng-master/vsee.sls + - salt-winrepo-ng-master/wamp-server-3.sls + - salt-winrepo-ng-master/wamp-stack.sls + - salt-winrepo-ng-master/webdeploy.sls + - salt-winrepo-ng-master/webplatforminstaller.sls + - salt-winrepo-ng-master/win-app-manager.sls + - salt-winrepo-ng-master/windirstat.sls + - salt-winrepo-ng-master/winhttpcertcfg.sls + - salt-winrepo-ng-master/winlogbeat/ + - salt-winrepo-ng-master/winlogbeat/init.sls + - salt-winrepo-ng-master/winlogbeat/install.cmd + - salt-winrepo-ng-master/winlogbeat/install.ps1 + - salt-winrepo-ng-master/winlogbeat/remove.cmd + - salt-winrepo-ng-master/winmerge.sls + - salt-winrepo-ng-master/winmtr.sls + - salt-winrepo-ng-master/winpcap.sls + - salt-winrepo-ng-master/winrar.sls + - salt-winrepo-ng-master/winscp.sls + - salt-winrepo-ng-master/wireshark.sls + - salt-winrepo-ng-master/wmi_provider/ + - salt-winrepo-ng-master/wmi_provider/README.md + - salt-winrepo-ng-master/wmi_provider/answer.txt + - salt-winrepo-ng-master/wmi_provider/init.sls + - salt-winrepo-ng-master/wmi_provider/majsetup.reg + - salt-winrepo-ng-master/wscc.sls + - salt-winrepo-ng-master/wufuc.sls + - salt-winrepo-ng-master/xampp.sls + - salt-winrepo-ng-master/xming.sls + - salt-winrepo-ng-master/yubikey-manager.sls + - salt-winrepo-ng-master/yubikey-personalization-tool.sls + - salt-winrepo-ng-master/zabbix-agent.sls + - salt-winrepo-ng-master/zipinstaller/ + - salt-winrepo-ng-master/zipinstaller/init.sls + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic + - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic + - salt-winrepo-ng-master/zoom.sls + ---------- + ID: rename-extract + Function: module.run + Result: True + Comment: file.rename: True + Started: 11:04:57.737731 + Duration: 0.0 ms + Changes: + ---------- + file.rename: + True + ---------- + ID: pkg.refresh_db + Function: module.run + Result: True + Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" + check_cmd determined the state succeeded + Started: 11:04:57.751857 + Duration: 19226.552 ms + Changes: + ---------- + pkg.refresh_db: + ---------- + failed: + 0 + success: + 298 + total: + 298 + ---------- + ID: 7zip + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 11:05:17.027171 + Duration: 3401.418 ms + Changes: + ---------- + 7zip: + ---------- + new: + 18.06.00.0 + old: + ---------- + ID: kdiff3 + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: kdiff3 + Started: 11:05:20.444211 + Duration: 38038.219 ms + Changes: + ---------- + kdiff3: + ---------- + new: + Not Found + old: + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 11:05:58.498072 + Duration: 35281.327 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: + ---------- + ID: windows_environment.refresh.path + Function: module.run + Result: True + Comment: windows_environment.refresh: Success + Started: 11:06:33.795481 + Duration: 77.63 ms + Changes: + ---------- + windows_environment.refresh: + ---------- + PATH: + C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + ---------- + ID: chocolatey.bootstrap + Function: module.run + Result: True + Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. + + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + + Downloading 7-Zip commandline tool prior to extraction. + + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + + Installing chocolatey on this machine + + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + + We are setting up the Chocolatey package repository. + + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + + + Creating Chocolatey folders if they do not already exist. + + + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + + You can call choco from anywhere, command line or powershell by typing choco. + + Run choco /? for a list of functions. + + You may need to shut down and restart powershell and/or consoles + + first prior to using choco. + + Ensuring chocolatey commands are on the path + + Ensuring chocolatey.nupkg is in the lib folder + Started: 11:06:33.873111 + Duration: 29015.625 ms + Changes: + ---------- + chocolatey.bootstrap: + Getting latest version of the Chocolatey package for download. + Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. + Downloading 7-Zip commandline tool prior to extraction. + Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... + Installing chocolatey on this machine + Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' + WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. + Restricting write permissions to Administrators + We are setting up the Chocolatey package repository. + The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). + A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + + Creating Chocolatey folders if they do not already exist. + + WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. + chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. + PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... + WARNING: Not setting tab completion: Profile file does not exist at + 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. + Chocolatey (choco.exe) is now ready. + You can call choco from anywhere, command line or powershell by typing choco. + Run choco /? for a list of functions. + You may need to shut down and restart powershell and/or consoles + first prior to using choco. + Ensuring chocolatey commands are on the path + Ensuring chocolatey.nupkg is in the lib folder + ---------- + ID: windows.system.packages.chocolatey.notepadplusplus + Function: chocolatey.installed + Name: notepadplusplus + Result: True + Comment: + Started: 11:07:02.888736 + Duration: 13265.621 ms + Changes: + ---------- + notepadplusplus: + ---------- + new: + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 + old: + ---------- + ID: windows.system.packages.chocolatey.windirstat + Function: chocolatey.installed + Name: windirstat + Result: True + Comment: + Started: 11:07:16.154357 + Duration: 10062.777 ms + Changes: + ---------- + windirstat: + ---------- + new: + - 1.1.2.20161210 + old: + ---------- + ID: windows.system.server.features.installed.telnet-client + Function: win_servermanager.installed + Name: telnet-client + Result: True + Comment: Installed the following: + - telnet-client + - Telnet-Client + Started: 11:07:26.217134 + Duration: 27143.272 ms + Changes: + ---------- + Telnet-Client: + ---------- + new: + Telnet Client + old: + ---------- + ID: windows.module.system.reboot + Function: module.run + Result: True + Comment: system.reboot: True + Started: 11:07:53.360406 + Duration: 356.462 ms + Changes: + ---------- + system.reboot: + True + + Summary for local + ------------- + Succeeded: 20 (changed=20) + Failed: 0 + ------------- + Total states run: 20 + Total run time: 191.647 s + Downloading files from + Finished converging (4m38.10s). +-----> Setting up ... + Finished setting up (0m0.00s). +-----> Verifying ... + Loaded default +`execution expired`, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 +INFO: Got pillar from the target minion using WinRM. + +Profile: SaltStack Windows Formula (default) +Version: (not specified) +Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 + + ✔ Operating System: + ✔ windows_server_2019_datacenter_evaluation should include "windows" + ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled + ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed + ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed + ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey + ✔ Chocolatey package notepadplusplus should be installed + ✔ Chocolatey package windirstat should be installed + ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" + ✔ Windows Features: salt.formula.windows.system.server.features + ✔ Windows Feature 'telnet-client' should be installed + ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap + ✔ Command: `choco` should exist + ✔ Windows Timezone: salt.states.timezone.system + ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set + ↺ Windows Optional Features: salt.states.win_dism.feature_installed + ↺ The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead. + ✔ Windows Computer Hostname: salt.states.win_system.hostname + ✔ System Information hostname should cmp == "saltstack1" + ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" + ✔ Windows Computer Description: salt.states.win_system.computer_desc + ✔ Powershell stdout should match "Saltstack Computer Description" + ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed + ✔ System Package Git should be installed + ✔ System Package 7-Zip should be installed + ✔ System Package 7-Zip version should cmp == "18.06.00.0" + ✔ System Package KDiff3 should be installed + + +Profile Summary: 9 successful controls, 0 control failures, 1 control skipped +Test Summary: 19 successful, 0 failures, 1 skipped + Finished verifying (0m49.55s). + Finished testing (7m25.76s). +-----> Destroying ... + ==> default: Forcing shutdown of VM... + ==> default: Destroying VM and associated drives... + Vagrant instance destroyed. + Finished destroying (0m13.84s). +-----> Test Kitchen is finished. (7m53.55s) +KITCHEN TEST EXIT CODE +0 diff --git a/test/results/py3-201923-windows-server-2019-1809.salt.log b/test/results/py3-201923-windows-server-2019-1809.salt.log new file mode 100755 index 0000000..9588630 --- /dev/null +++ b/test/results/py3-201923-windows-server-2019-1809.salt.log @@ -0,0 +1,31046 @@ +2020-03-06 11:04:34,301 [salt.loader :747 ][DEBUG ][4836] Grains refresh requested. Refreshing grains. +2020-03-06 11:04:34,301 [salt.config :2190][DEBUG ][4836] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 11:04:34,317 [salt.config :2334][DEBUG ][4836] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 11:04:34,317 [salt.config :2190][DEBUG ][4836] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 11:04:38,250 [salt.pillar :57 ][DEBUG ][4836] Determining pillar cache +2020-03-06 11:04:38,282 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:04:38,282 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:04:38,296 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 11:04:38,296 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 11:04:38,313 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0162045955657959 +2020-03-06 11:04:38,313 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 11:04:38,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 11:04:38,313 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:38,326 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded confirm_top.confirm_top +2020-03-06 11:04:38,326 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded compound_match.match +2020-03-06 11:04:38,326 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4836] compound_match: vagrant ? * +2020-03-06 11:04:38,326 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded glob_match.match +2020-03-06 11:04:38,343 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4836] compound_match vagrant ? "*" => "True" +2020-03-06 11:04:38,343 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 11:04:38,343 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 11:04:38,359 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.016086816787719727 +2020-03-06 11:04:38,359 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 11:04:38,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 11:04:38,359 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:38,389 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:04:38,405 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:04:38,467 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded state.highstate +2020-03-06 11:04:38,467 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded direct_call.execute +2020-03-06 11:04:38,483 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded grains.get +2020-03-06 11:04:38,546 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded saltutil.is_running +2020-03-06 11:04:38,577 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded config.get +2020-03-06 11:04:38,577 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: test, ret: _|- +2020-03-06 11:04:38,608 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:38,874 [git.cmd :722 ][DEBUG ][4836] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 11:04:38,906 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:38,906 [salt.fileserver :502 ][DEBUG ][4836] Updating roots fileserver cache +2020-03-06 11:04:38,968 [salt.state :736 ][DEBUG ][4836] Gathering pillar data for state run +2020-03-06 11:04:38,968 [salt.state :750 ][DEBUG ][4836] Finished gathering pillar data for state run +2020-03-06 11:04:38,968 [salt.state :966 ][INFO ][4836] Loading fresh modules for state activity +2020-03-06 11:04:38,998 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:04:38,998 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:04:39,014 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 11:04:39,014 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 11:04:39,014 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 11:04:39,014 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:39,030 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 11:04:39,030 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 11:04:39,030 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:39,047 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,061 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,061 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.031239032745361328 +2020-03-06 11:04:39,061 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +--- +base: + "*": + - windows + +2020-03-06 11:04:39,061 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 11:04:39,061 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:39,061 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded confirm_top.confirm_top +2020-03-06 11:04:39,077 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded compound_match.match +2020-03-06 11:04:39,077 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4836] compound_match: vagrant ? * +2020-03-06 11:04:39,077 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded glob_match.match +2020-03-06 11:04:39,077 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4836] compound_match vagrant ? "*" => "True" +2020-03-06 11:04:39,077 [salt.fileclient :1368][DEBUG ][4836] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 11:04:39,077 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded saltutil.sync_all +2020-03-06 11:04:39,077 [salt.loaded.int.module.saltutil:968 ][DEBUG ][4836] Syncing all +2020-03-06 11:04:39,077 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 11:04:39,108 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,108 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,108 [salt.utils.extmods:90 ][INFO ][4836] Syncing clouds for environment 'base' +2020-03-06 11:04:39,123 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_clouds, for base) +2020-03-06 11:04:39,123 [salt.fileclient :234 ][INFO ][4836] Caching directory '_clouds/' for environment 'base' +2020-03-06 11:04:39,123 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,123 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 11:04:39,123 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 11:04:39,156 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,156 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,156 [salt.utils.extmods:90 ][INFO ][4836] Syncing beacons for environment 'base' +2020-03-06 11:04:39,171 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_beacons, for base) +2020-03-06 11:04:39,171 [salt.fileclient :234 ][INFO ][4836] Caching directory '_beacons/' for environment 'base' +2020-03-06 11:04:39,171 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,171 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 11:04:39,171 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 11:04:39,188 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,203 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,203 [salt.utils.extmods:90 ][INFO ][4836] Syncing modules for environment 'base' +2020-03-06 11:04:39,203 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_modules, for base) +2020-03-06 11:04:39,203 [salt.fileclient :234 ][INFO ][4836] Caching directory '_modules/' for environment 'base' +2020-03-06 11:04:39,203 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,203 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 11:04:39,203 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 11:04:39,203 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 11:04:39,218 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:39,218 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 11:04:39,218 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 11:04:39,218 [salt.utils.extmods:119 ][INFO ][4836] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 11:04:39,218 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 11:04:39,251 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,251 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,251 [salt.utils.extmods:90 ][INFO ][4836] Syncing states for environment 'base' +2020-03-06 11:04:39,251 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_states, for base) +2020-03-06 11:04:39,265 [salt.fileclient :234 ][INFO ][4836] Caching directory '_states/' for environment 'base' +2020-03-06 11:04:39,265 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,265 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 11:04:39,265 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 11:04:39,281 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,281 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,297 [salt.utils.extmods:90 ][INFO ][4836] Syncing sdb for environment 'base' +2020-03-06 11:04:39,297 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_sdb, for base) +2020-03-06 11:04:39,297 [salt.fileclient :234 ][INFO ][4836] Caching directory '_sdb/' for environment 'base' +2020-03-06 11:04:39,297 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,297 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 11:04:39,297 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 11:04:39,312 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,327 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,327 [salt.utils.extmods:90 ][INFO ][4836] Syncing grains for environment 'base' +2020-03-06 11:04:39,327 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_grains, for base) +2020-03-06 11:04:39,327 [salt.fileclient :234 ][INFO ][4836] Caching directory '_grains/' for environment 'base' +2020-03-06 11:04:39,327 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,327 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 11:04:39,343 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 11:04:39,359 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,375 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,375 [salt.utils.extmods:90 ][INFO ][4836] Syncing renderers for environment 'base' +2020-03-06 11:04:39,375 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_renderers, for base) +2020-03-06 11:04:39,375 [salt.fileclient :234 ][INFO ][4836] Caching directory '_renderers/' for environment 'base' +2020-03-06 11:04:39,375 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,375 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 11:04:39,375 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 11:04:39,405 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,405 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,421 [salt.utils.extmods:90 ][INFO ][4836] Syncing returners for environment 'base' +2020-03-06 11:04:39,421 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_returners, for base) +2020-03-06 11:04:39,421 [salt.fileclient :234 ][INFO ][4836] Caching directory '_returners/' for environment 'base' +2020-03-06 11:04:39,421 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,421 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 11:04:39,421 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 11:04:39,452 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,452 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,452 [salt.utils.extmods:90 ][INFO ][4836] Syncing output for environment 'base' +2020-03-06 11:04:39,452 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_output, for base) +2020-03-06 11:04:39,452 [salt.fileclient :234 ][INFO ][4836] Caching directory '_output/' for environment 'base' +2020-03-06 11:04:39,468 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,468 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 11:04:39,468 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 11:04:39,485 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,500 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,500 [salt.utils.extmods:90 ][INFO ][4836] Syncing utils for environment 'base' +2020-03-06 11:04:39,500 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_utils, for base) +2020-03-06 11:04:39,500 [salt.fileclient :234 ][INFO ][4836] Caching directory '_utils/' for environment 'base' +2020-03-06 11:04:39,500 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,500 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 11:04:39,515 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 11:04:39,532 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,546 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,546 [salt.utils.extmods:90 ][INFO ][4836] Syncing log_handlers for environment 'base' +2020-03-06 11:04:39,546 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_log_handlers, for base) +2020-03-06 11:04:39,546 [salt.fileclient :234 ][INFO ][4836] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 11:04:39,546 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,546 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 11:04:39,546 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 11:04:39,593 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,609 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,609 [salt.utils.extmods:90 ][INFO ][4836] Syncing proxy for environment 'base' +2020-03-06 11:04:39,609 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_proxy, for base) +2020-03-06 11:04:39,609 [salt.fileclient :234 ][INFO ][4836] Caching directory '_proxy/' for environment 'base' +2020-03-06 11:04:39,609 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,609 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 11:04:39,609 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 11:04:39,641 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,656 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,656 [salt.utils.extmods:90 ][INFO ][4836] Syncing engines for environment 'base' +2020-03-06 11:04:39,656 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_engines, for base) +2020-03-06 11:04:39,656 [salt.fileclient :234 ][INFO ][4836] Caching directory '_engines/' for environment 'base' +2020-03-06 11:04:39,656 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,656 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 11:04:39,656 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 11:04:39,688 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,702 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,702 [salt.utils.extmods:90 ][INFO ][4836] Syncing thorium for environment 'base' +2020-03-06 11:04:39,702 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_thorium, for base) +2020-03-06 11:04:39,702 [salt.fileclient :234 ][INFO ][4836] Caching directory '_thorium/' for environment 'base' +2020-03-06 11:04:39,702 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,702 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 11:04:39,702 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 11:04:39,734 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,734 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,734 [salt.utils.extmods:90 ][INFO ][4836] Syncing serializers for environment 'base' +2020-03-06 11:04:39,734 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_serializers, for base) +2020-03-06 11:04:39,734 [salt.fileclient :234 ][INFO ][4836] Caching directory '_serializers/' for environment 'base' +2020-03-06 11:04:39,749 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,749 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 11:04:39,749 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 11:04:39,766 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,781 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,781 [salt.utils.extmods:90 ][INFO ][4836] Syncing matchers for environment 'base' +2020-03-06 11:04:39,781 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_matchers, for base) +2020-03-06 11:04:39,781 [salt.fileclient :234 ][INFO ][4836] Caching directory '_matchers/' for environment 'base' +2020-03-06 11:04:39,781 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,781 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 11:04:39,781 [salt.utils.extmods:79 ][INFO ][4836] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 11:04:39,812 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:39,828 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:39,828 [salt.utils.extmods:90 ][INFO ][4836] Syncing pillar for environment 'base' +2020-03-06 11:04:39,828 [salt.utils.extmods:94 ][INFO ][4836] Loading cache from salt://_pillar, for base) +2020-03-06 11:04:39,828 [salt.fileclient :234 ][INFO ][4836] Caching directory '_pillar/' for environment 'base' +2020-03-06 11:04:39,828 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:39,828 [salt.utils.extmods:109 ][DEBUG ][4836] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 11:04:39,828 [salt.state :1000][DEBUG ][4836] Refreshing modules... +2020-03-06 11:04:39,858 [salt.state :966 ][INFO ][4836] Loading fresh modules for state activity +2020-03-06 11:04:39,891 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:04:39,891 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:04:39,891 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 11:04:39,905 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 11:04:39,905 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 11:04:39,905 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 11:04:39,905 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:39,905 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 11:04:39,905 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 11:04:39,905 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:39,922 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:39,922 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:39,922 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 11:04:39,922 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:39,940 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 11:04:39,954 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:39,954 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:39,954 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 11:04:39,954 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:39,969 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 11:04:39,969 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:39,969 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:39,969 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:39,969 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:39,984 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 11:04:39,984 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:39,984 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:39,984 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:39,984 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,000 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 11:04:40,000 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,000 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,000 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,000 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,016 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 11:04:40,016 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,016 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,016 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,016 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,032 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 11:04:40,032 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,032 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,032 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,032 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,046 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 11:04:40,046 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded config.get +2020-03-06 11:04:40,063 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded grains.filter_by +2020-03-06 11:04:40,063 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.1573045253753662 +2020-03-06 11:04:40,063 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .states + - .modules + - .system +2020-03-06 11:04:40,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.states', '.modules', '.system'])]) +2020-03-06 11:04:40,063 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,063 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 11:04:40,063 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 11:04:40,063 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 11:04:40,078 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,078 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 11:04:40,078 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 11:04:40,078 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,093 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:04:40,093 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:04:40,109 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 11:04:40,109 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,109 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 11:04:40,172 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,172 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,187 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,187 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,187 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,205 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,205 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,205 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,219 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,219 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,219 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,219 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,234 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,234 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,252 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.173966646194458 +2020-03-06 11:04:40,252 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.state.system.computer_desc.description: + system.computer_desc: + - name: Saltstack Computer Description + - require: + - windows.state.system.hostname.saltstack1 +windows.state.system.hostname.saltstack1: + system.hostname: + - name: saltstack1 +windows.state.timezone.system.America/New_York: + timezone.system: + - name: America/New_York + - utc: False + + + +2020-03-06 11:04:40,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) +2020-03-06 11:04:40,252 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,252 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 11:04:40,252 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 11:04:40,252 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 11:04:40,252 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,266 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 11:04:40,266 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 11:04:40,266 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,282 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:04:40,282 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 11:04:40,312 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,312 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,328 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,328 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,328 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,344 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,344 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,344 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,344 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,344 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,344 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,344 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,359 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,359 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,359 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.0933530330657959 +2020-03-06 11:04:40,359 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.module.environ.items: + module.run: + - environ.items: +windows.module.system.reboot: + module.run: + - system.reboot: + - timeout: 5 + - in_seconds: True + - only_on_pending_reboot: True + - wait_for_reboot: False + - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + - order: last +windows.module.user.current: + module.run: + - user.current: + - sam: True +windows.module.status.uptime: + module.run: + - status.uptime: + - human_readable: True + - require: + - windows.module.user.current + + +2020-03-06 11:04:40,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) +2020-03-06 11:04:40,375 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.016114234924316406 +2020-03-06 11:04:40,375 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 11:04:40,375 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 11:04:40,375 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 11:04:40,375 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 11:04:40,375 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,375 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 11:04:40,391 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 11:04:40,391 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,391 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,391 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,407 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,407 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,422 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,422 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,422 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,422 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,422 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,437 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,437 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,437 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,437 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,437 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,453 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.06257510185241699 +2020-03-06 11:04:40,453 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +# sls: windows.system windows system +# slspath: windows/system windows system +# sls: os_windows.desktop.features os_windows features +# slspath: os_windows/desktop os_windows desktop +include: + # - .settings + # + # - .dsc + # + - .packages + - .server + - .desktop + + +2020-03-06 11:04:40,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.packages', '.server', '.desktop'])]) +2020-03-06 11:04:40,453 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,453 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 11:04:40,453 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 11:04:40,469 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 11:04:40,469 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 11:04:40,469 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,469 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 11:04:40,469 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 11:04:40,469 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,469 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:40,485 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .providers + - .appx + - .powershell + - .saltstack + - .chocolatey +2020-03-06 11:04:40,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) +2020-03-06 11:04:40,485 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,485 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 11:04:40,485 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 11:04:40,485 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 11:04:40,485 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 11:04:40,485 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,500 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 11:04:40,500 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 11:04:40,500 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,500 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:40,516 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .remove-provisioned-apps + +2020-03-06 11:04:40,516 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.remove-provisioned-apps'])]) +2020-03-06 11:04:40,516 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,531 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:04:40,531 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:04:40,531 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:04:40,531 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,531 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 11:04:40,531 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 11:04:40,547 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,547 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:40,547 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .removed + +2020-03-06 11:04:40,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.removed'])]) +2020-03-06 11:04:40,547 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,562 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 11:04:40,562 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 11:04:40,562 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 11:04:40,562 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,590 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 11:04:40,594 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 11:04:40,594 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,594 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,594 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,625 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,625 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,625 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,625 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,625 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,641 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,641 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,641 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,641 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,641 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,641 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,656 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,656 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.06256914138793945 +2020-03-06 11:04:40,656 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + + + +2020-03-06 11:04:40,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +{} +2020-03-06 11:04:40,656 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,672 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 11:04:40,672 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 11:04:40,672 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 11:04:40,672 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 11:04:40,672 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,688 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 11:04:40,688 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 11:04:40,688 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,688 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:40,688 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .modules + - .framework + +2020-03-06 11:04:40,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.framework'])]) +2020-03-06 11:04:40,688 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,688 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 11:04:40,704 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:04:40,704 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:04:40,704 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:04:40,704 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,719 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 11:04:40,719 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 11:04:40,719 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,719 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:40,719 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .v4_5 + +2020-03-06 11:04:40,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.v4_5'])]) +2020-03-06 11:04:40,719 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,719 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 11:04:40,735 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:04:40,735 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:04:40,735 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:04:40,735 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,735 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 11:04:40,751 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 11:04:40,751 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,751 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:40,751 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .tls1_2 + +2020-03-06 11:04:40,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.tls1_2'])]) +2020-03-06 11:04:40,751 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,751 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:04:40,766 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:04:40,766 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:04:40,766 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,766 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 11:04:40,766 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 11:04:40,766 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,783 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,783 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,799 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,799 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,799 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,799 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,799 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,814 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,814 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,814 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,814 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,814 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,814 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,814 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,828 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.06204581260681152 +2020-03-06 11:04:40,828 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +# https://docs.microsoft.com/en-us/security/solving-tls1-problem +# https://blog.pauby.com/post/force-powershell-to-use-tls-1-2/ +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:64 +# reg add HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 /v SystemDefaultTlsVersions /t REG_DWORD /d 1 /f /reg:32 +# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - use_32bit_registry: true + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}" + +windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64: + reg.present: + - name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 + - vname: SystemDefaultTlsVersions + - vdata: 1 + - vtype: REG_DWORD + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 + - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} +2020-03-06 11:04:40,828 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) +2020-03-06 11:04:40,828 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,844 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 11:04:40,844 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 11:04:40,844 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 11:04:40,844 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 11:04:40,844 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,859 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 11:04:40,859 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 11:04:40,859 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,859 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:40,859 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 11:04:40,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 11:04:40,859 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:40,859 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 11:04:40,859 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 11:04:40,859 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 11:04:40,876 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,876 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 11:04:40,876 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 11:04:40,876 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:40,899 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 11:04:40,899 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 11:04:40,899 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 11:04:40,899 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,907 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 11:04:40,907 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,907 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:40,923 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,923 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:40,937 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,937 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:40,937 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,937 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:40,937 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,937 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:40,953 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,953 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:40,953 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,953 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:40,969 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:04:40,969 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:04:40,969 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:04:40,969 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:40,969 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 11:04:41,063 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pkg.version +2020-03-06 11:04:41,078 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][4836] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 11:04:41,078 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4836] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 11:04:41,078 [salt.loaded.int.module.win_pkg:935 ][INFO ][4836] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 11:04:41,103 [salt.loaded.int.module.win_pkg:954 ][INFO ][4836] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 11:04:41,110 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded cp.cache_dir +2020-03-06 11:04:41,126 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded roots.envs +2020-03-06 11:04:41,141 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 11:04:41,141 [salt.fileclient :234 ][INFO ][4836] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 11:04:41,141 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=3 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:41,157 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded reg.list_keys +2020-03-06 11:04:41,157 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,172 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,172 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,172 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,172 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,172 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,172 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,172 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,188 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,188 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,188 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,188 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,188 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,188 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,188 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.3122067451477051 +2020-03-06 11:04:41,188 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +include: + - .windows_software_repository +7zip: + pkg.installed: + - refresh_minion_env_path: False + - version: 18.06.00.0 + - require: + - pkg.refresh_db +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db +windows_environment.refresh.path: + module.run: + - windows_environment.refresh: + - onchanges: + + - pkg: git +2020-03-06 11:04:41,188 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 11:04:41,188 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,205 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:04:41,205 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:04:41,205 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:04:41,205 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,219 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 11:04:41,219 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 11:04:41,219 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,219 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.077698) +2020-03-06 11:04:41,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:04:41,250 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.03125619888305664 +2020-03-06 11:04:41,250 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + +manually.update_git_repo-ng: + archive.extracted: + - name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng + - source: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip + - skip_verify: True + - if_missing: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + +rename-extract: + module.run: + - file.rename: + - src: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng-master + - dst: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng/salt-winrepo-ng + - onchanges: + - manually.update_git_repo-ng + - onchanges_in: + - pkg.refresh_db + +pkg.refresh_db: + module.run: + - pkg.refresh_db: + - failhard: False + - check_cmd: + - dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + + - retry: + attempts: 10 + until: True + interval: 5 +2020-03-06 11:04:41,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) +2020-03-06 11:04:41,250 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,266 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 11:04:41,266 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 11:04:41,266 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 11:04:41,266 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 11:04:41,266 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,282 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 11:04:41,282 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 11:04:41,282 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,282 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:41,282 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 11:04:41,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 11:04:41,282 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,298 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:04:41,298 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:04:41,298 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:04:41,298 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,298 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 11:04:41,298 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 11:04:41,313 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,313 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,313 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,328 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,344 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,344 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,344 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,344 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,344 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,360 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,360 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,360 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,360 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,360 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,360 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,376 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.0629887580871582 +2020-03-06 11:04:41,376 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .bootstrap +windows.system.packages.chocolatey.notepadplusplus: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: notepadplusplus + +windows.system.packages.chocolatey.windirstat: + chocolatey.installed: + - require: + - chocolatey.bootstrap + - name: windirstat + - version: 1.1.2.20161210 + +2020-03-06 11:04:41,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) +2020-03-06 11:04:41,376 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,391 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:04:41,391 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:04:41,391 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:04:41,391 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,391 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 11:04:41,415 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 11:04:41,415 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,423 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,423 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,438 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,438 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,438 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,438 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,454 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,454 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,454 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,454 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,454 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,454 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,454 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,470 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,470 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.05423474311828613 +2020-03-06 11:04:41,470 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +chocolatey.bootstrap: + module.run: + - chocolatey.bootstrap: + - unless: "where.exe chocolatey" + - require: + - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 + +2020-03-06 11:04:41,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) +2020-03-06 11:04:41,470 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,470 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 11:04:41,488 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 11:04:41,488 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 11:04:41,488 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 11:04:41,488 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,488 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 11:04:41,502 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 11:04:41,502 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,502 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:41,502 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .features + +2020-03-06 11:04:41,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.features'])]) +2020-03-06 11:04:41,502 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,502 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 11:04:41,517 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 11:04:41,517 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 11:04:41,517 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 11:04:41,517 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,517 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 11:04:41,517 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 11:04:41,517 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,532 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.015620946884155273 +2020-03-06 11:04:41,532 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .installed + +2020-03-06 11:04:41,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.installed'])]) +2020-03-06 11:04:41,532 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,532 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 11:04:41,532 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 11:04:41,532 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 11:04:41,532 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,548 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 11:04:41,548 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 11:04:41,548 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,548 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 11:04:41,548 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 11:04:41,564 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 11:04:41,564 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,564 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 11:04:41,579 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,579 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,595 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,595 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,595 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,595 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,595 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,595 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,611 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,611 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,611 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,611 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,611 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,611 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,626 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/server/features/features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 11:04:41,626 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 11:04:41,626 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/features.jinja' +2020-03-06 11:04:41,626 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,641 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/features.jinja' +2020-03-06 11:04:41,641 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.09331631660461426 +2020-03-06 11:04:41,641 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +windows.system.server.features.installed.telnet-client: + win_servermanager.installed: + - name: telnet-client + - recurse: true + +2020-03-06 11:04:41,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('windows.system.server.features.installed.telnet-client', OrderedDict([('win_servermanager.installed', [OrderedDict([('name', 'telnet-client')]), OrderedDict([('recurse', True)])])]))]) +2020-03-06 11:04:41,641 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,657 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 11:04:41,657 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 11:04:41,657 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 11:04:41,657 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 11:04:41,657 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,657 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 11:04:41,672 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 11:04:41,672 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,672 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:41,672 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + # - .packages + - .optional_features + +2020-03-06 11:04:41,672 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.optional_features'])]) +2020-03-06 11:04:41,672 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,672 [salt.fileclient :1072][DEBUG ][4836] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 11:04:41,690 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 11:04:41,690 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 11:04:41,690 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 11:04:41,690 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,705 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 11:04:41,705 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 11:04:41,705 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,705 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:04:41,705 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +include: + - .feature_installed + +2020-03-06 11:04:41,705 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('include', ['.feature_installed'])]) +2020-03-06 11:04:41,705 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,721 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:04:41,721 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:04:41,721 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:04:41,721 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,721 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 11:04:41,721 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 11:04:41,735 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:04:41,735 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:04:41,735 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:04:41,735 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:04:41,735 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:04:41,735 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 11:04:41,752 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,752 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 11:04:41,767 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,767 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 11:04:41,767 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,767 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 11:04:41,782 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,782 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 11:04:41,782 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,782 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 11:04:41,782 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,782 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 11:04:41,797 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,797 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 11:04:41,797 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.06234121322631836 +2020-03-06 11:04:41,797 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + +2020-03-06 11:04:41,797 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +{} +2020-03-06 11:04:41,797 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:04:41,813 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded cmd.run +2020-03-06 11:04:41,892 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded system.get_computer_desc +2020-03-06 11:04:41,892 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded system.computer_desc +2020-03-06 11:04:41,892 [salt.state :1819][INFO ][4836] Running state [saltstack1] at time 11:04:41.892269 +2020-03-06 11:04:41,892 [salt.state :1852][INFO ][4836] Executing state system.hostname for [saltstack1] +2020-03-06 11:04:41,892 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 11:04:41,907 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: vagrant +2020-03-06 11:04:41,907 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4836] output: vagrant +2020-03-06 11:04:41,907 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 11:04:41,923 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: vagrant +2020-03-06 11:04:41,923 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4836] output: vagrant +2020-03-06 11:04:41,923 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'wmic computersystem where name='vagrant' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 11:04:42,017 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 11:04:42,017 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4836] output: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +Method execution successful. +Out Parameters: +instance of __PARAMETERS +{ + ReturnValue = 0; +}; +2020-03-06 11:04:42,017 [salt.state :320 ][INFO ][4836] {'hostname': 'saltstack1'} +2020-03-06 11:04:42,017 [salt.state :1997][INFO ][4836] Completed state [saltstack1] at time 11:04:42.017405 (duration_in_ms=125.136) +2020-03-06 11:04:42,033 [salt.state :1819][INFO ][4836] Running state [Saltstack Computer Description] at time 11:04:42.033501 +2020-03-06 11:04:42,033 [salt.state :1852][INFO ][4836] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 11:04:45,317 [salt.state :320 ][INFO ][4836] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 11:04:45,317 [salt.state :1997][INFO ][4836] Completed state [Saltstack Computer Description] at time 11:04:45.317013 (duration_in_ms=3283.512) +2020-03-06 11:04:45,347 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded platform.is_windows +2020-03-06 11:04:45,347 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded path.which +2020-03-06 11:04:45,347 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded timezone.get_zone +2020-03-06 11:04:45,347 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded timezone.system +2020-03-06 11:04:45,347 [salt.state :1819][INFO ][4836] Running state [America/New_York] at time 11:04:45.347890 +2020-03-06 11:04:45,362 [salt.state :1852][INFO ][4836] Executing state timezone.system for [America/New_York] +2020-03-06 11:04:45,362 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 11:04:45,393 [salt.state :320 ][INFO ][4836] {'timezone': 'America/New_York'} +2020-03-06 11:04:45,393 [salt.state :1997][INFO ][4836] Completed state [America/New_York] at time 11:04:45.393645 (duration_in_ms=45.755) +2020-03-06 11:04:45,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded module.run +2020-03-06 11:04:45,414 [salt.state :1819][INFO ][4836] Running state [windows.module.environ.items] at time 11:04:45.414098 +2020-03-06 11:04:45,414 [salt.state :1852][INFO ][4836] Executing state module.run for [windows.module.environ.items] +2020-03-06 11:04:45,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded environ.items +2020-03-06 11:04:45,425 [salt.state :320 ][INFO ][4836] {'environ.items': {'NUMBER_OF_PROCESSORS': '2', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'USERNAME': 'vagrant', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'PUBLIC': 'C:\\Users\\Public', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'PROCESSOR_LEVEL': '6', 'SYSTEMROOT': 'C:\\Windows', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'OS': 'Windows_NT', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'SYSTEMDRIVE': 'C:', 'USERDOMAIN': 'VAGRANT', 'PROGRAMFILES': 'C:\\Program Files', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT', 'PROMPT': '$P$G', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'USERPROFILE': 'C:\\Users\\vagrant', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'COMPUTERNAME': 'VAGRANT', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'LOGONSERVER': '\\\\VAGRANT', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'SALTDIR': 'C:\\salt', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'WINDIR': 'C:\\Windows', 'HOMEDRIVE': 'C:', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'PROGRAMW6432': 'C:\\Program Files', 'HOMEPATH': '\\Users\\vagrant', 'PROCESSOR_REVISION': '8e0c', 'PROGRAMDATA': 'C:\\ProgramData', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp'}} +2020-03-06 11:04:45,425 [salt.state :1997][INFO ][4836] Completed state [windows.module.environ.items] at time 11:04:45.425422 (duration_in_ms=11.324) +2020-03-06 11:04:45,425 [salt.state :1819][INFO ][4836] Running state [windows.module.user.current] at time 11:04:45.425422 +2020-03-06 11:04:45,425 [salt.state :1852][INFO ][4836] Executing state module.run for [windows.module.user.current] +2020-03-06 11:04:45,441 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded user.current +2020-03-06 11:04:45,441 [salt.state :320 ][INFO ][4836] {'user.current': 'VAGRANT\\vagrant'} +2020-03-06 11:04:45,441 [salt.state :1997][INFO ][4836] Completed state [windows.module.user.current] at time 11:04:45.441036 (duration_in_ms=15.614) +2020-03-06 11:04:45,441 [salt.state :1819][INFO ][4836] Running state [windows.module.status.uptime] at time 11:04:45.441036 +2020-03-06 11:04:45,441 [salt.state :1852][INFO ][4836] Executing state module.run for [windows.module.status.uptime] +2020-03-06 11:04:45,471 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded status.uptime +2020-03-06 11:04:45,471 [salt.state :320 ][INFO ][4836] {'status.uptime': '0:02:07.471807'} +2020-03-06 11:04:45,471 [salt.state :1997][INFO ][4836] Completed state [windows.module.status.uptime] at time 11:04:45.471807 (duration_in_ms=30.771) +2020-03-06 11:04:45,471 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded reg.present +2020-03-06 11:04:45,471 [salt.state :1819][INFO ][4836] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:04:45.471807 +2020-03-06 11:04:45,471 [salt.state :1852][INFO ][4836] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 11:04:46,535 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt.secret_key, ret: _|- +2020-03-06 11:04:46,535 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt:secret_key, ret: _|- +2020-03-06 11:04:47,345 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet.api_key, ret: _|- +2020-03-06 11:04:47,361 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet:api_key, ret: _|- +2020-03-06 11:04:47,798 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops.api_key, ret: _|- +2020-03-06 11:04:47,798 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops:api_key, ret: _|- +2020-03-06 11:04:53,098 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 11:04:53,098 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded apache.a2enconf +2020-03-06 11:04:53,098 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded apache.a2enmod +2020-03-06 11:04:53,113 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded apache.a2ensite +2020-03-06 11:04:53,144 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 11:04:53,144 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 11:04:53,160 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 11:04:53,182 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 11:04:53,207 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 11:04:53,222 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 11:04:53,222 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto3_sns.topic_exists +2020-03-06 11:04:53,238 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_apigateway.describe_apis +2020-03-06 11:04:53,254 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_asg.exists +2020-03-06 11:04:53,254 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cfn.exists +2020-03-06 11:04:53,254 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 11:04:53,270 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudtrail.exists +2020-03-06 11:04:53,270 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 11:04:53,270 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 11:04:53,284 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 11:04:53,284 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 11:04:53,301 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_dynamodb.exists +2020-03-06 11:04:53,316 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_ec2.get_key +2020-03-06 11:04:53,316 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elasticache.exists +2020-03-06 11:04:53,332 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 11:04:53,347 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elb.exists +2020-03-06 11:04:53,347 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 11:04:53,364 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_iam.get_user +2020-03-06 11:04:53,379 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_iam.role_exists +2020-03-06 11:04:53,379 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_iot.policy_exists +2020-03-06 11:04:53,395 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_kinesis.exists +2020-03-06 11:04:53,395 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_kms.describe_key +2020-03-06 11:04:53,411 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_lambda.function_exists +2020-03-06 11:04:53,411 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_asg.exists +2020-03-06 11:04:53,426 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_rds.exists +2020-03-06 11:04:53,426 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_route53.get_record +2020-03-06 11:04:53,426 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_s3.get_object_metadata +2020-03-06 11:04:53,441 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_s3_bucket.exists +2020-03-06 11:04:53,441 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_secgroup.exists +2020-03-06 11:04:53,456 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_sns.exists +2020-03-06 11:04:53,456 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_sqs.exists +2020-03-06 11:04:53,473 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_vpc.exists +2020-03-06 11:04:53,488 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded bower.list +2020-03-06 11:04:53,488 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded chef.client +2020-03-06 11:04:53,519 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded cimc.get_system_info +2020-03-06 11:04:53,519 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded cisconso.set_data_value +2020-03-06 11:04:53,536 [salt.loader :1577][DEBUG ][4836] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 11:04:53,551 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded ddns.update +2020-03-06 11:04:53,566 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded chassis.cmd +2020-03-06 11:04:53,582 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:04:53,614 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:04:53,629 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:04:53,645 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:04:53,910 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded esxi.cmd +2020-03-06 11:04:53,988 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded git.version +2020-03-06 11:04:54,004 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded github.list_users +2020-03-06 11:04:54,004 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded glanceng.image_get +2020-03-06 11:04:54,020 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded elasticsearch.exists +2020-03-06 11:04:54,051 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: grafana_version, ret: _|- +2020-03-06 11:04:54,051 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: grafana_version, ret: _|- +2020-03-06 11:04:54,098 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded icinga2.generate_ticket +2020-03-06 11:04:54,098 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded ifttt.trigger_event +2020-03-06 11:04:54,113 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:04:54,129 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:04:54,145 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:04:54,175 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:04:54,192 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:04:54,207 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:04:54,269 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 11:04:54,285 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.domain_get +2020-03-06 11:04:54,285 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.endpoint_get +2020-03-06 11:04:54,285 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.group_get +2020-03-06 11:04:54,301 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.project_get +2020-03-06 11:04:54,301 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.role_get +2020-03-06 11:04:54,301 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.role_grant +2020-03-06 11:04:54,316 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.service_get +2020-03-06 11:04:54,316 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.user_get +2020-03-06 11:04:54,332 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 11:04:54,379 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 11:04:54,394 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 11:04:54,425 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 11:04:54,441 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:04:54,473 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:04:54,473 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:04:54,488 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:04:54,488 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:04:54,488 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:04:54,520 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded memcached.status +2020-03-06 11:04:54,520 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mongodb.db_exists +2020-03-06 11:04:54,535 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mongodb.user_exists +2020-03-06 11:04:54,535 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:04:54,535 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:04:54,535 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:04:54,551 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:04:54,597 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_networks +2020-03-06 11:04:54,597 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_subnets +2020-03-06 11:04:54,613 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_subnets +2020-03-06 11:04:54,613 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_subnets +2020-03-06 11:04:54,629 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded npm.list +2020-03-06 11:04:54,629 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nxos.cmd +2020-03-06 11:04:54,660 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 11:04:54,676 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 11:04:54,707 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded panos.commit +2020-03-06 11:04:54,707 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pdbedit.create +2020-03-06 11:04:54,722 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pecl.list +2020-03-06 11:04:55,285 [pip.vcs :60 ][DEBUG ][4836] Registered VCS backend: git +2020-03-06 11:04:55,411 [pip.vcs :60 ][DEBUG ][4836] Registered VCS backend: hg +2020-03-06 11:04:55,442 [pip.pep425tags :79 ][DEBUG ][4836] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 11:04:55,442 [pip.pep425tags :79 ][DEBUG ][4836] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 11:04:55,457 [pip.pep425tags :79 ][DEBUG ][4836] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 11:04:55,457 [pip.pep425tags :79 ][DEBUG ][4836] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 11:04:55,707 [pip.vcs :60 ][DEBUG ][4836] Registered VCS backend: svn +2020-03-06 11:04:55,707 [pip.vcs :60 ][DEBUG ][4836] Registered VCS backend: bzr +2020-03-06 11:04:55,848 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 11:04:55,848 [salt.loader :1577][DEBUG ][4836] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 11:04:55,864 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.cluster_exists +2020-03-06 11:04:55,864 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.user_exists +2020-03-06 11:04:55,864 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.create_extension +2020-03-06 11:04:55,879 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.group_create +2020-03-06 11:04:55,879 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.datadir_init +2020-03-06 11:04:55,879 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.language_create +2020-03-06 11:04:55,879 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.privileges_grant +2020-03-06 11:04:55,895 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.schema_exists +2020-03-06 11:04:55,895 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.tablespace_exists +2020-03-06 11:04:55,895 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.user_exists +2020-03-06 11:04:55,958 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 11:04:55,990 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded selinux.getenforce +2020-03-06 11:04:56,004 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded splunk.list_users +2020-03-06 11:04:56,004 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded splunk_search.get +2020-03-06 11:04:56,052 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 11:04:56,066 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded tomcat.status +2020-03-06 11:04:56,083 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded vagrant.version +2020-03-06 11:04:56,083 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded victorops.create_event +2020-03-06 11:04:56,114 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded win_iis.create_site +2020-03-06 11:04:56,129 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded win_snmp.get_agent_settings +2020-03-06 11:04:56,145 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded wordpress.show_plugin +2020-03-06 11:04:56,161 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded x509.get_pem_entry +2020-03-06 11:04:56,161 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded xmpp.send_msg +2020-03-06 11:04:56,192 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded zk_concurrency.lock +2020-03-06 11:04:56,209 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded zonecfg.create +2020-03-06 11:04:56,209 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded zookeeper.create +2020-03-06 11:04:56,224 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 11:04:56,224 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 11:04:56,488 [salt.state :889 ][DEBUG ][4836] Last command return code: 0 +2020-03-06 11:04:56,506 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded dacl.check_perms +2020-03-06 11:04:56,506 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4836] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 11:04:56,506 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4836] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 11:04:56,519 [salt.state :320 ][INFO ][4836] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Value': 1, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions', 'Perms': {'Deny': None, 'Grant': None}}}} +2020-03-06 11:04:56,520 [salt.state :1997][INFO ][4836] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:04:56.520216 (duration_in_ms=11048.409) +2020-03-06 11:04:56,520 [salt.state :1819][INFO ][4836] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:04:56.520216 +2020-03-06 11:04:56,520 [salt.state :1852][INFO ][4836] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 11:04:56,536 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 11:04:56,536 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 11:04:56,879 [salt.state :889 ][DEBUG ][4836] Last command return code: 0 +2020-03-06 11:04:56,879 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4836] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 11:04:56,895 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4836] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + return win32security.LookupAccountSid(None, sid_obj)[0] +pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +2020-03-06 11:04:56,895 [salt.state :320 ][INFO ][4836] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Value': 1, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions', 'Perms': {'Deny': None, 'Grant': None}}}} +2020-03-06 11:04:56,895 [salt.state :1997][INFO ][4836] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:04:56.895303 (duration_in_ms=375.087) +2020-03-06 11:04:56,895 [salt.state :1819][INFO ][4836] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:04:56.895303 +2020-03-06 11:04:56,895 [salt.state :1852][INFO ][4836] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 11:04:56,911 [salt.utils.http :234 ][DEBUG ][4836] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 11:04:56,911 [salt.utils.http :235 ][DEBUG ][4836] Using backend: tornado +2020-03-06 11:04:57,400 [salt.loaded.int.states.archive:976 ][DEBUG ][4836] file.cached: {'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True, 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}} +2020-03-06 11:04:57,414 [salt.loaded.int.states.archive:91 ][DEBUG ][4836] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 11:04:57,414 [salt.loaded.int.states.archive:996 ][DEBUG ][4836] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 11:04:57,456 [salt.loaded.int.module.win_file:1463][DEBUG ][4836] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 11:04:57,456 [salt.loaded.int.module.win_file:1463][DEBUG ][4836] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 11:04:57,456 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4836] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 11:04:57,470 [salt.loaded.int.states.archive:1247][DEBUG ][4836] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 11:04:57,737 [salt.loaded.int.states.archive:1543][DEBUG ][4836] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 11:04:57,737 [salt.state :320 ][INFO ][4836] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} +2020-03-06 11:04:57,737 [salt.state :1997][INFO ][4836] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:04:57.737731 (duration_in_ms=842.428) +2020-03-06 11:04:57,737 [salt.state :1819][INFO ][4836] Running state [rename-extract] at time 11:04:57.737731 +2020-03-06 11:04:57,737 [salt.state :1852][INFO ][4836] Executing state module.run for [rename-extract] +2020-03-06 11:04:57,737 [salt.state :320 ][INFO ][4836] {'file.rename': True} +2020-03-06 11:04:57,737 [salt.state :1997][INFO ][4836] Completed state [rename-extract] at time 11:04:57.737731 (duration_in_ms=0.0) +2020-03-06 11:04:57,751 [salt.state :1819][INFO ][4836] Running state [pkg.refresh_db] at time 11:04:57.751857 +2020-03-06 11:04:57,751 [salt.state :1852][INFO ][4836] Executing state module.run for [pkg.refresh_db] +2020-03-06 11:04:57,751 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4836] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:16.610001) +2020-03-06 11:04:57,751 [salt.loaded.int.module.win_pkg:935 ][INFO ][4836] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 11:04:57,751 [salt.loaded.int.module.win_pkg:954 ][INFO ][4836] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 11:04:57,751 [salt.fileclient :234 ][INFO ][4836] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 11:04:57,751 [salt.fileserver :159 ][DEBUG ][4836] Returning file list from cache: age=19 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 11:04:57,767 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 11:04:57,767 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 11:04:57,783 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: Volume in drive C is Windows 2019 + Volume Serial Number is 7CC7-4EE7 + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng + +File Not Found +2020-03-06 11:04:57,800 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4836] retcode: 1 +2020-03-06 11:04:57,800 [salt.state :938 ][DEBUG ][4836] Last command return code: 1 +2020-03-06 11:04:57,800 [salt.state :322 ][ERROR ][4836] {'pkg.refresh_db': {'failed': 0, 'total': 0, 'success': 0}} +2020-03-06 11:04:57,800 [salt.state :1997][INFO ][4836] Completed state [pkg.refresh_db] at time 11:04:57.800149 (duration_in_ms=48.292) +2020-03-06 11:04:57,800 [salt.state :2009][INFO ][4836] State result does not match retry until value, state will be re-run in 5 seconds +2020-03-06 11:05:02,830 [salt.state :1819][INFO ][4836] Running state [pkg.refresh_db] at time 11:05:02.830361 +2020-03-06 11:05:02,830 [salt.state :1852][INFO ][4836] Executing state module.run for [pkg.refresh_db] +2020-03-06 11:05:02,830 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4836] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:05.079001) +2020-03-06 11:05:02,830 [salt.loaded.int.module.win_pkg:935 ][INFO ][4836] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 11:05:02,830 [salt.loaded.int.module.win_pkg:954 ][INFO ][4836] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 11:05:02,830 [salt.fileclient :234 ][INFO ][4836] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 11:05:02,957 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:05:02,971 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:05:02,971 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:05:02,971 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:02,987 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 11:05:02,987 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:05:02,987 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:05:02,987 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:05:02,987 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,003 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 11:05:03,019 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:05:03,019 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:05:03,019 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:05:03,019 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,019 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 11:05:03,034 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:05:03,034 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:05:03,034 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:05:03,034 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,050 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 11:05:03,050 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:05:03,050 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:05:03,050 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:05:03,050 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,065 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 11:05:03,065 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:05:03,065 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:05:03,065 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:05:03,065 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,083 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 11:05:03,083 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:05:03,083 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:05:03,083 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:05:03,083 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,098 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 11:05:03,098 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:05:03,098 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:05:03,098 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:05:03,098 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,113 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 11:05:03,113 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:05:03,113 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:05:03,127 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:05:03,127 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,127 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 11:05:03,127 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:05:03,127 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:05:03,144 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:05:03,144 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,144 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 11:05:03,159 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:05:03,159 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:05:03,159 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:05:03,159 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,159 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 11:05:03,175 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:05:03,175 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:05:03,175 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:05:03,175 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,190 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 11:05:03,190 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:05:03,190 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:05:03,190 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:05:03,190 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,206 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 11:05:03,206 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:05:03,206 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:05:03,206 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:05:03,206 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,222 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 11:05:03,222 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:05:03,237 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:05:03,237 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:05:03,237 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,253 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 11:05:03,253 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:05:03,253 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:05:03,253 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:05:03,253 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,270 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 11:05:03,270 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:05:03,270 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:05:03,285 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:05:03,285 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,285 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 11:05:03,299 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:05:03,299 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:05:03,299 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:05:03,299 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,299 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 11:05:03,316 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:05:03,316 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:05:03,316 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:05:03,316 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,330 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 11:05:03,330 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:05:03,330 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:05:03,330 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:05:03,330 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,347 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 11:05:03,347 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:05:03,347 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:05:03,347 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:05:03,362 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,362 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 11:05:03,362 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:05:03,362 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:05:03,378 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:05:03,378 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,378 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 11:05:03,396 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:05:03,396 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:05:03,396 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:05:03,396 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,409 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 11:05:03,409 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:05:03,409 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:05:03,425 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:05:03,425 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,425 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 11:05:03,441 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:05:03,441 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:05:03,441 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:05:03,441 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,456 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 11:05:03,456 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:05:03,456 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:05:03,456 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:05:03,471 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,471 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 11:05:03,487 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:05:03,487 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:05:03,487 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:05:03,487 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,487 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 11:05:03,502 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:05:03,502 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:05:03,502 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:05:03,502 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,502 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 11:05:03,518 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:05:03,518 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:05:03,518 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:05:03,518 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,535 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 11:05:03,535 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:05:03,535 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:05:03,535 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:05:03,535 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,549 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 11:05:03,549 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:05:03,565 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:05:03,565 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:05:03,565 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,565 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 11:05:03,581 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:05:03,581 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:05:03,581 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:05:03,581 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,596 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 11:05:03,612 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:05:03,612 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:05:03,612 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:05:03,612 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,627 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 11:05:03,627 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:05:03,627 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:05:03,627 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:05:03,643 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,643 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 11:05:03,659 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:05:03,659 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:05:03,659 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:05:03,659 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,659 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 11:05:03,674 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:05:03,674 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:05:03,674 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:05:03,674 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,691 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 11:05:03,706 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:05:03,706 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:05:03,706 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:05:03,706 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,722 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 11:05:03,722 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:05:03,722 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:05:03,722 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:05:03,722 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,737 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 11:05:03,771 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:05:03,771 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:05:03,771 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:05:03,771 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,785 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 11:05:03,785 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:05:03,805 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:05:03,805 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:05:03,805 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,815 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 11:05:03,815 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:05:03,815 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:05:03,836 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:05:03,836 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,846 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 11:05:03,846 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:05:03,862 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:05:03,862 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:05:03,862 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,877 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 11:05:03,893 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:05:03,893 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:05:03,893 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:05:03,893 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,909 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 11:05:03,909 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:05:03,925 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:05:03,925 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:05:03,925 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,940 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 11:05:03,940 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:05:03,956 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:05:03,956 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:05:03,956 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,956 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 11:05:03,971 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:05:03,971 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:05:03,971 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:05:03,971 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:03,988 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 11:05:04,002 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:05:04,002 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:05:04,002 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:05:04,002 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,002 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 11:05:04,019 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:05:04,019 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:05:04,019 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:05:04,019 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,034 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 11:05:04,034 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:05:04,050 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:05:04,050 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:05:04,050 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,050 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 11:05:04,066 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:05:04,066 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:05:04,066 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:05:04,066 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,081 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 11:05:04,081 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:05:04,081 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:05:04,081 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:05:04,081 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,096 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 11:05:04,096 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:05:04,112 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:05:04,112 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:05:04,112 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,112 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 11:05:04,128 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:05:04,128 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:05:04,128 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:05:04,128 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,143 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 11:05:04,143 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:05:04,143 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:05:04,143 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:05:04,143 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,159 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 11:05:04,159 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:05:04,159 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:05:04,174 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:05:04,174 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,174 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 11:05:04,190 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:05:04,190 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:05:04,190 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:05:04,190 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,190 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 11:05:04,206 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:05:04,206 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:05:04,206 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:05:04,206 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,222 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 11:05:04,222 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:05:04,222 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:05:04,222 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:05:04,222 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,237 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 11:05:04,237 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:05:04,237 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:05:04,237 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:05:04,253 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,253 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 11:05:04,253 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:05:04,269 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:05:04,269 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:05:04,269 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,269 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 11:05:04,284 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:05:04,284 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:05:04,284 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:05:04,284 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,284 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 11:05:04,300 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:05:04,300 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:05:04,300 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:05:04,300 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,315 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 11:05:04,315 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:05:04,315 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:05:04,315 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:05:04,331 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,331 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 11:05:04,331 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:05:04,347 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:05:04,347 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:05:04,347 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,347 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 11:05:04,363 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:05:04,363 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:05:04,363 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:05:04,363 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,377 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 11:05:04,377 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:05:04,377 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:05:04,377 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:05:04,377 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,395 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 11:05:04,409 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:05:04,409 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:05:04,409 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:05:04,409 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,409 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 11:05:04,425 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:05:04,425 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:05:04,425 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:05:04,425 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,425 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 11:05:04,440 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:05:04,440 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:05:04,440 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:05:04,440 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,456 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 11:05:04,456 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:05:04,456 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:05:04,456 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:05:04,456 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,471 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 11:05:04,471 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:05:04,471 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:05:04,471 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:05:04,471 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,487 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 11:05:04,487 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:05:04,503 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:05:04,503 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:05:04,503 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,503 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 11:05:04,519 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:05:04,519 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:05:04,519 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:05:04,519 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,519 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 11:05:04,536 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:05:04,536 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:05:04,536 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:05:04,536 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,536 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 11:05:04,551 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:05:04,551 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:05:04,551 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:05:04,551 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,565 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 11:05:04,565 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:05:04,565 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:05:04,565 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:05:04,565 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,583 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 11:05:04,583 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:05:04,583 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:05:04,598 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:05:04,598 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,598 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 11:05:04,612 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:05:04,612 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:05:04,612 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:05:04,612 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,612 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 11:05:04,628 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:05:04,628 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:05:04,628 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:05:04,628 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,643 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 11:05:04,643 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:05:04,643 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:05:04,643 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:05:04,643 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,660 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 11:05:04,660 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:05:04,660 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:05:04,660 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:05:04,660 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,674 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 11:05:04,674 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:05:04,674 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:05:04,674 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:05:04,690 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,690 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 11:05:04,690 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:05:04,706 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:05:04,706 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:05:04,706 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,706 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 11:05:04,722 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:05:04,722 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:05:04,722 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:05:04,722 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,722 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 11:05:04,738 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:05:04,738 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:05:04,738 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:05:04,738 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,753 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 11:05:04,753 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:05:04,753 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:05:04,753 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:05:04,753 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,769 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 11:05:04,769 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:05:04,769 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:05:04,769 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:05:04,784 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,784 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 11:05:04,784 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:05:04,800 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:05:04,800 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:05:04,800 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,800 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 11:05:04,816 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:05:04,816 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:05:04,816 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:05:04,816 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,816 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 11:05:04,832 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:05:04,832 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:05:04,832 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:05:04,832 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,847 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 11:05:04,847 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:05:04,847 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:05:04,847 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:05:04,847 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,862 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 11:05:04,862 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:05:04,862 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:05:04,878 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:05:04,878 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,878 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 11:05:04,878 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:05:04,894 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:05:04,894 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:05:04,894 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,894 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 11:05:04,909 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:05:04,909 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:05:04,909 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:05:04,909 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,909 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 11:05:04,924 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:05:04,924 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:05:04,924 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:05:04,924 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,924 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 11:05:04,940 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:05:04,940 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:05:04,940 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:05:04,940 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,956 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 11:05:04,956 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:05:04,956 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:05:04,956 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:05:04,956 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,971 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 11:05:04,971 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:05:04,971 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:05:04,971 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:05:04,971 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:04,988 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 11:05:04,988 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:05:04,988 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:05:04,988 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:05:05,004 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,004 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 11:05:05,018 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:05:05,018 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:05:05,018 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:05:05,018 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,018 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 11:05:05,034 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:05:05,034 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:05:05,034 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:05:05,034 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,061 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 11:05:05,067 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:05:05,067 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:05:05,067 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:05:05,067 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,067 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 11:05:05,081 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:05:05,081 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:05:05,081 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:05:05,081 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,096 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 11:05:05,096 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:05:05,096 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:05:05,096 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:05:05,096 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,112 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 11:05:05,112 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:05:05,112 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:05:05,128 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:05:05,128 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,128 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 11:05:05,143 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:05:05,143 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:05:05,143 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:05:05,143 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,143 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 11:05:05,159 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:05:05,159 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:05:05,159 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:05:05,159 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,159 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 11:05:05,174 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:05:05,174 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:05:05,174 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:05:05,174 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,174 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 11:05:05,191 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:05:05,191 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:05:05,191 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:05:05,191 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,206 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 11:05:05,206 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:05:05,206 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:05:05,206 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:05:05,206 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,221 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 11:05:05,221 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:05:05,221 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:05:05,237 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:05:05,237 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,237 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 11:05:05,237 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:05:05,254 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:05:05,254 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:05:05,254 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,254 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 11:05:05,268 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:05:05,268 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:05:05,268 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:05:05,268 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,285 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 11:05:05,285 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:05:05,285 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:05:05,285 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:05:05,299 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,299 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 11:05:05,299 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:05:05,299 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:05:05,316 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:05:05,316 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,316 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 11:05:05,331 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:05:05,331 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:05:05,331 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:05:05,331 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,347 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 11:05:05,347 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:05:05,347 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:05:05,347 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:05:05,347 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,362 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 11:05:05,362 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:05:05,378 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:05:05,378 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:05:05,378 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,378 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 11:05:05,394 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:05:05,394 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:05:05,394 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:05:05,394 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,408 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 11:05:05,409 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:05:05,409 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:05:05,409 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:05:05,409 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,425 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 11:05:05,425 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:05:05,425 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:05:05,425 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:05:05,442 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,442 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 11:05:05,456 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:05:05,456 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:05:05,456 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:05:05,456 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,456 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 11:05:05,472 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:05:05,472 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:05:05,472 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:05:05,472 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,472 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 11:05:05,487 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:05:05,487 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:05:05,487 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:05:05,487 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,503 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 11:05:05,503 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:05:05,503 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:05:05,503 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:05:05,503 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,518 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 11:05:05,518 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:05:05,518 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:05:05,518 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:05:05,518 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,536 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 11:05:05,536 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:05:05,536 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:05:05,536 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:05:05,536 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,551 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 11:05:05,566 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:05:05,566 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:05:05,566 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:05:05,566 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,566 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 11:05:05,583 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:05:05,583 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:05:05,583 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:05:05,583 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,583 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 11:05:05,596 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:05:05,596 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:05:05,596 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:05:05,596 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,596 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 11:05:05,612 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:05:05,612 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:05:05,612 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:05:05,612 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,628 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 11:05:05,628 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:05:05,628 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:05:05,628 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:05:05,628 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,644 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 11:05:05,644 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:05:05,644 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:05:05,644 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:05:05,644 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,659 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 11:05:05,659 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,659 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,659 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,659 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,675 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,675 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,675 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,691 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,691 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,691 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,691 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:05:05,706 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:05:05,706 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:05:05,706 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,706 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 11:05:05,706 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:05:05,722 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:05:05,722 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:05:05,722 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,722 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 11:05:05,738 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:05:05,738 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:05:05,738 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:05:05,738 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,738 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 11:05:05,753 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:05:05,753 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:05:05,753 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:05:05,753 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,768 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 11:05:05,768 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:05:05,768 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:05:05,768 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:05:05,768 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,784 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 11:05:05,784 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:05:05,784 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:05:05,784 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:05:05,784 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,800 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 11:05:05,800 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,800 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,815 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,815 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,815 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 11:05:05,815 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,831 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,831 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,831 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,831 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,846 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:05:05,846 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:05:05,846 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:05:05,846 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,846 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 11:05:05,862 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,862 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,862 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,862 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,862 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 11:05:05,878 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:05:05,878 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:05:05,878 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:05:05,878 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,894 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 11:05:05,894 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:05:05,894 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:05:05,894 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:05:05,894 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,909 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 11:05:05,909 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:05:05,909 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:05:05,909 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:05:05,909 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,925 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 11:05:05,925 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:05:05,940 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:05:05,940 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:05:05,940 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:05,956 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 11:05:05,972 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:05:05,988 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:05:05,988 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:05:05,988 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,003 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 11:05:06,019 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:05:06,019 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:05:06,019 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:05:06,019 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,034 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 11:05:06,051 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:05:06,051 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:05:06,051 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:05:06,051 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,065 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 11:05:06,081 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:05:06,081 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:05:06,081 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:05:06,081 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,097 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 11:05:06,113 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:05:06,113 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:05:06,113 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:05:06,113 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,128 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 11:05:06,144 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:05:06,144 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:05:06,144 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:05:06,144 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,160 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 11:05:06,177 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:05:06,177 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:05:06,177 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:05:06,177 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,190 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 11:05:06,190 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:05:06,206 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:05:06,206 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:05:06,206 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,206 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 11:05:06,222 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:05:06,222 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:05:06,222 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:05:06,222 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,237 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 11:05:06,237 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:05:06,237 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:05:06,237 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:05:06,237 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,254 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 11:05:06,254 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:05:06,269 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:05:06,269 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:05:06,269 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,269 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 11:05:06,284 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:05:06,284 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:05:06,284 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:05:06,284 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,300 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 11:05:06,300 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:05:06,300 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:05:06,300 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:05:06,300 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,315 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 11:05:06,332 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:05:06,332 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:05:06,332 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:05:06,332 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,332 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 11:05:06,346 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:05:06,346 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:05:06,346 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:05:06,346 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,363 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 11:05:06,363 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:05:06,363 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:05:06,363 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:05:06,363 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,378 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 11:05:06,378 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:05:06,378 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:05:06,394 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:05:06,394 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,394 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 11:05:06,409 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:05:06,409 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:05:06,409 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:05:06,409 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,409 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 11:05:06,425 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:05:06,425 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:05:06,425 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:05:06,425 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,440 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 11:05:06,440 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:05:06,440 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:05:06,440 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:05:06,440 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,456 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 11:05:06,456 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:05:06,456 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:05:06,456 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:05:06,456 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,472 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 11:05:06,472 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:05:06,472 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:05:06,472 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:05:06,472 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,487 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 11:05:06,487 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:05:06,503 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:05:06,503 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:05:06,503 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,503 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 11:05:06,518 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:05:06,518 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:05:06,518 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:05:06,518 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,518 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 11:05:06,535 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:05:06,535 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:05:06,535 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:05:06,535 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,550 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 11:05:06,550 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:05:06,550 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:05:06,550 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:05:06,550 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,565 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 11:05:06,565 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:05:06,565 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:05:06,565 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:05:06,565 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,581 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 11:05:06,581 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:05:06,597 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:05:06,597 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:05:06,597 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,597 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 11:05:06,612 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:05:06,612 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:05:06,612 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:05:06,612 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,612 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 11:05:06,628 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:05:06,628 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:05:06,628 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:05:06,628 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,628 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 11:05:06,644 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:05:06,644 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:05:06,644 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:05:06,644 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,660 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 11:05:06,660 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:05:06,660 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:05:06,660 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:05:06,660 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,675 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 11:05:06,675 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:05:06,675 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:05:06,690 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:05:06,690 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,690 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 11:05:06,690 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:05:06,706 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:05:06,706 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:05:06,706 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,706 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 11:05:06,722 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:05:06,722 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:05:06,722 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:05:06,722 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,722 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 11:05:06,738 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:05:06,738 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:05:06,738 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:05:06,738 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,738 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 11:05:06,753 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:05:06,753 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:05:06,753 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:05:06,753 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,753 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 11:05:06,769 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:05:06,769 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:05:06,769 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:05:06,769 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,784 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 11:05:06,784 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:05:06,784 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:05:06,784 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:05:06,784 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,804 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 11:05:06,815 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:05:06,815 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:05:06,815 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:05:06,815 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,815 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 11:05:06,832 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:05:06,832 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:05:06,832 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:05:06,832 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,832 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 11:05:06,847 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:05:06,847 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:05:06,847 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:05:06,847 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,847 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 11:05:06,863 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:05:06,863 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:05:06,863 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:05:06,863 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,863 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 11:05:06,878 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:05:06,878 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:05:06,878 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:05:06,878 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,878 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 11:05:06,894 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:05:06,894 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:05:06,894 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:05:06,894 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,910 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 11:05:06,910 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:05:06,910 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:05:06,910 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:05:06,910 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,925 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 11:05:06,925 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:05:06,925 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:05:06,925 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:05:06,925 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,941 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 11:05:06,941 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:05:06,941 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:05:06,941 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:05:06,957 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,957 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 11:05:06,957 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:05:06,957 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:05:06,973 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:05:06,973 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,973 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 11:05:06,987 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:05:06,987 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:05:06,987 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:05:06,987 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:06,987 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 11:05:07,003 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:05:07,003 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:05:07,003 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:05:07,003 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,003 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 11:05:07,019 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:05:07,019 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:05:07,019 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:05:07,019 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,019 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 11:05:07,034 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:05:07,034 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:05:07,034 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:05:07,034 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,034 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 11:05:07,050 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:05:07,050 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:05:07,050 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:05:07,050 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,066 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 11:05:07,066 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:05:07,066 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:05:07,066 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:05:07,066 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,081 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 11:05:07,081 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:05:07,081 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:05:07,081 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:05:07,097 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,097 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 11:05:07,121 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:05:07,121 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:05:07,121 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:05:07,121 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,127 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 11:05:07,127 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:05:07,127 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:05:07,141 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:05:07,141 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,141 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 11:05:07,141 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:05:07,156 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:05:07,156 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:05:07,156 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,156 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 11:05:07,170 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:05:07,170 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:05:07,170 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:05:07,170 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,170 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 11:05:07,184 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:05:07,184 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:05:07,184 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:05:07,184 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,184 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 11:05:07,198 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:05:07,198 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:05:07,198 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:05:07,198 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,212 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 11:05:07,212 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:05:07,212 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:05:07,212 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:05:07,212 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,226 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 11:05:07,241 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:05:07,241 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:05:07,241 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:05:07,241 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,241 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 11:05:07,254 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:05:07,254 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:05:07,254 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:05:07,254 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,254 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 11:05:07,268 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:05:07,268 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:05:07,268 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:05:07,268 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,282 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 11:05:07,282 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:05:07,282 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:05:07,282 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:05:07,282 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,282 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 11:05:07,298 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:05:07,298 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:05:07,298 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:05:07,298 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,310 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 11:05:07,310 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:05:07,310 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:05:07,324 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:05:07,324 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,324 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 11:05:07,324 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:05:07,339 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:05:07,339 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:05:07,339 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,339 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 11:05:07,353 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:05:07,353 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:05:07,353 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:05:07,353 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,353 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 11:05:07,367 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:05:07,367 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:05:07,367 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:05:07,367 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,367 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 11:05:07,382 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:05:07,382 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:05:07,382 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:05:07,382 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,382 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 11:05:07,395 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:05:07,395 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:05:07,395 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:05:07,395 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,408 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 11:05:07,408 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:05:07,408 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:05:07,408 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:05:07,408 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,422 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 11:05:07,422 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:05:07,422 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:05:07,422 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:05:07,422 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,437 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 11:05:07,437 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:05:07,437 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:05:07,437 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:05:07,437 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,451 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 11:05:07,451 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:05:07,451 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:05:07,451 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:05:07,451 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,465 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 11:05:07,465 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:05:07,465 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:05:07,465 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:05:07,479 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,479 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 11:05:07,479 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:05:07,479 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:05:07,493 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:05:07,493 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,493 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 11:05:07,507 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:05:07,507 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:05:07,507 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:05:07,507 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,507 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 11:05:07,521 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:05:07,521 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:05:07,521 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:05:07,521 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,521 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 11:05:07,535 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:05:07,535 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:05:07,535 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:05:07,535 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,535 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 11:05:07,549 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:05:07,549 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:05:07,549 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:05:07,549 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,563 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 11:05:07,563 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:05:07,563 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:05:07,563 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:05:07,563 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,578 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 11:05:07,578 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:05:07,578 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:05:07,578 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:05:07,578 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,594 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 11:05:07,594 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:05:07,594 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:05:07,594 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:05:07,594 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,607 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 11:05:07,607 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:05:07,607 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:05:07,607 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:05:07,607 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,621 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 11:05:07,621 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:05:07,621 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:05:07,621 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:05:07,621 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,633 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 11:05:07,633 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:05:07,633 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:05:07,633 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:05:07,633 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,648 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 11:05:07,648 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:05:07,648 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:05:07,662 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:05:07,662 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,662 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 11:05:07,662 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:05:07,662 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:05:07,662 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:05:07,676 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,676 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 11:05:07,676 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:05:07,690 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:05:07,690 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:05:07,690 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,690 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 11:05:07,690 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:05:07,704 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:05:07,704 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:05:07,704 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,704 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 11:05:07,720 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:05:07,720 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:05:07,720 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:05:07,720 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,720 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 11:05:07,739 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:05:07,747 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:05:07,747 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:05:07,747 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,747 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 11:05:07,747 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:05:07,760 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:05:07,760 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:05:07,760 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,760 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 11:05:07,775 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:05:07,775 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:05:07,775 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:05:07,775 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,775 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 11:05:07,789 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:05:07,789 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:05:07,789 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:05:07,789 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,804 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 11:05:07,804 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:05:07,804 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:05:07,804 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:05:07,804 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,821 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 11:05:07,821 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:05:07,821 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:05:07,821 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:05:07,821 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,838 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 11:05:07,838 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:05:07,838 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:05:07,838 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:05:07,838 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,853 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 11:05:07,853 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:05:07,853 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:05:07,853 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:05:07,867 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,867 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 11:05:07,867 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:05:07,867 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:05:07,867 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:05:07,882 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,882 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 11:05:07,882 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:05:07,882 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:05:07,897 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:05:07,897 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,897 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 11:05:07,897 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:05:07,897 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:05:07,914 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:05:07,914 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,914 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 11:05:07,914 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:05:07,929 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:05:07,929 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:05:07,929 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,929 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 11:05:07,945 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:05:07,945 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:05:07,945 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:05:07,945 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,945 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 11:05:07,960 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:05:07,960 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:05:07,960 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:05:07,960 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,960 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 11:05:07,976 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:05:07,976 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:05:07,976 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:05:07,976 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,976 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 11:05:07,992 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:05:07,992 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:05:07,992 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:05:07,992 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:07,992 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 11:05:08,007 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:05:08,007 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:05:08,007 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:05:08,007 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,007 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 11:05:08,024 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:05:08,024 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:05:08,024 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:05:08,024 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,024 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 11:05:08,038 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:05:08,038 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:05:08,038 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:05:08,038 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,055 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 11:05:08,055 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:05:08,055 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:05:08,055 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:05:08,055 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,069 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 11:05:08,069 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:05:08,069 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:05:08,069 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:05:08,069 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,085 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 11:05:08,085 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:05:08,085 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:05:08,085 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:05:08,085 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,101 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 11:05:08,101 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:05:08,101 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:05:08,101 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:05:08,117 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,117 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 11:05:08,117 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:05:08,117 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:05:08,132 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:05:08,132 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,132 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 11:05:08,132 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:05:08,132 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:05:08,148 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:05:08,148 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,148 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 11:05:08,148 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:05:08,164 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:05:08,164 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:05:08,164 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,164 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 11:05:08,179 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:05:08,179 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:05:08,179 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:05:08,179 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,179 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 11:05:08,195 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:05:08,195 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:05:08,195 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:05:08,195 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,195 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 11:05:08,211 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:05:08,211 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:05:08,211 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:05:08,211 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,211 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 11:05:08,226 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:05:08,226 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:05:08,226 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:05:08,226 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,226 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 11:05:08,243 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:05:08,243 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:05:08,243 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:05:08,243 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,257 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 11:05:08,257 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:05:08,257 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:05:08,257 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:05:08,273 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,273 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 11:05:08,289 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:05:08,289 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:05:08,289 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:05:08,289 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,289 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 11:05:08,304 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:05:08,304 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:05:08,304 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:05:08,325 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,325 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 11:05:08,335 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:05:08,335 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:05:08,335 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:05:08,335 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,351 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 11:05:08,351 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:05:08,351 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:05:08,368 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:05:08,368 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,368 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 11:05:08,382 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:05:08,382 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:05:08,382 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:05:08,382 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,382 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 11:05:08,398 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:05:08,398 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:05:08,398 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:05:08,398 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,414 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 11:05:08,430 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:05:08,430 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:05:08,430 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:05:08,430 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,430 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 11:05:08,445 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:05:08,445 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:05:08,445 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:05:08,445 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,460 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 11:05:08,460 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:05:08,460 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:05:08,476 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:05:08,476 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,476 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 11:05:08,492 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:05:08,492 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:05:08,492 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:05:08,492 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,492 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 11:05:08,507 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:05:08,507 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:05:08,507 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:05:08,507 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,523 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 11:05:08,539 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:05:08,539 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:05:08,539 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:05:08,539 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,539 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 11:05:08,554 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:05:08,554 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:05:08,569 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:05:08,569 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,569 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 11:05:08,586 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:05:08,586 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:05:08,586 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:05:08,601 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,601 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 11:05:08,632 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:05:08,632 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:05:08,632 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:05:08,632 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,648 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 11:05:08,648 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:05:08,648 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:05:08,648 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:05:08,648 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,663 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 11:05:08,679 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:05:08,679 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:05:08,679 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:05:08,679 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,679 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 11:05:08,695 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:05:08,695 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:05:08,695 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:05:08,695 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,710 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 11:05:08,710 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:05:08,710 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:05:08,710 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:05:08,732 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,742 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 11:05:08,742 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:05:08,742 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:05:08,742 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:05:08,742 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,759 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 11:05:08,775 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:05:08,775 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:05:08,775 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:05:08,775 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,791 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 11:05:08,791 [salt.fileclient :1093][DEBUG ][4836] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:05:08,791 [salt.fileclient :1101][DEBUG ][4836] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:05:08,791 [salt.fileclient :1121][DEBUG ][4836] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:05:08,804 [salt.fileclient :1149][DEBUG ][4836] No dest file found +2020-03-06 11:05:08,804 [salt.fileclient :1230][INFO ][4836] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 11:05:08,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:08,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:08,820 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 11:05:08,820 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:08,835 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.015377998352050781 +2020-03-06 11:05:08,835 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +7zip: + + + '19.00.00.0': + + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '18.06.00.0': + + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.05.00.0': + + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.03.00.0': + + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '18.01.00.0': + + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '16.04.00.0': + + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.03.00.0': + + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.02.00.0': + + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '16.00.00.0': + + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + arch: x64 + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 11:05:08,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:08,835 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:08,851 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:08,851 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:08,851 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 11:05:08,851 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:08,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.015572786331176758 +2020-03-06 11:05:08,867 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +activeperl_x64: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.24.3': + full_name: 'ActivePerl 5.24.3 Build 2404 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '5.26.1': + full_name: 'ActivePerl 5.26.1 Build 2601 (64-bit)' + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe' + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + uninstall_flags: '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:08,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:08,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:08,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:08,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:08,867 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 11:05:08,882 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:08,882 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:08,882 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +activeperl_x86: + + '5.22.4': + full_name: 'ActivePerl 5.22.4 Build 2205' + + installer: 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe' + uninstall_flags: '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/exenoui /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:08,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:08,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:08,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:08,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:08,898 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 11:05:08,913 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:08,913 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:08,913 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +adobeair: + latest: + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + '30.0.0.107': + full_name: 'Adobe AIR' + installer: 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe' + install_flags: '-silent -eulaAccepted' + uninstaller: 'c:\salt\var\cache\salt\minion\extrn_files\base\airdownload.adobe.com\air\win\download\30.0\AdobeAIRInstaller.exe' + uninstall_flags: '-uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:08,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:08,913 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:08,913 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:08,929 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:08,929 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 11:05:08,929 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:08,946 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.016711950302124023 +2020-03-06 11:05:08,946 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +# to understand what is meant by "classic" see +# http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html + +adobereader-dc-classic: + + + '20.006.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20049': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.021.20047': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20036': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.012.20034': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20099': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20098': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20091': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20069': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.010.20064': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20081': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '19.008.20071': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20063': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20058': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20055': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + + '18.011.20040': + full_name: 'Adobe Acrobat Reader DC' + installer: 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:08,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:08,960 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.014596223831176758 +2020-03-06 11:05:08,960 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:08,960 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:08,960 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 11:05:08,976 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:08,976 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:08,976 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +adobereader-xi: + '11.0.10': + full_name: 'Adobe Reader XI (11.0.10)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '11.0.6': + full_name: 'Adobe Reader XI (11.0.06)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:08,992 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:08,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.016635656356811523 +2020-03-06 11:05:08,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,008 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,008 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 11:05:09,023 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.014687538146972656 +2020-03-06 11:05:09,023 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +adobereader: + '10.1.4': + full_name: 'Adobe Reader X (10.1.4)' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + '9.5.0': + full_name: 'Adobe Reader 9.5.0' + installer: 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe' + install_flags: '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,039 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,054 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,054 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 11:05:09,054 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,070 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.01562666893005371 +2020-03-06 11:05:09,070 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +adobeshockwaveplayer: + latest: + full_name: 'Adobe Shockwave Player 12.2' + installer: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version + +2020-03-06 11:05:09,070 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,070 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,086 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,086 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,086 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 11:05:09,101 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,116 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.01513814926147461 +2020-03-06 11:05:09,116 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: + + + +adv-ip-scanner: + + + '2.5.3784': + full_name: 'Advanced IP Scanner 2.5' + installer: 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-ip-scanner.com +# a product of: www.radmin.com + +2020-03-06 11:05:09,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,132 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.016121387481689453 +2020-03-06 11:05:09,132 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,132 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,149 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 11:05:09,149 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,180 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.030777931213378906 +2020-03-06 11:05:09,180 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: + + + +adv-port-scanner: + + + '2.5.3680': + full_name: 'Advanced Port Scanner 2.5' + installer: 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}' + msiexec: False + locale: en_US + reboot: False + + + +# it can be manually downloaded from: +# http://www.advanced-port-scanner.com +# a product of: www.radmin.com + +2020-03-06 11:05:09,195 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,195 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,227 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 11:05:09,227 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,242 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.015540599822998047 +2020-03-06 11:05:09,242 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +advancedlogging: + '1.0.0625.10': + full_name: 'IIS Advanced Logging 1.0' + + installer: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + uninstaller: 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,242 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,242 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,257 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,257 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,257 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 11:05:09,273 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,273 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,273 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +# just 32-bit x86 msi package available + + + +anydesk-msi: + latest: + full_name: 'AnyDesk MSI' + installer: 'https://download.anydesk.com/AnyDesk.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.anydesk.com/AnyDesk.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,288 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.015106678009033203 +2020-03-06 11:05:09,288 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,288 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,288 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 11:05:09,305 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,305 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,320 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +# just 32-bit x86 installer available + + + + + + + +anydesk: + latest: + full_name: 'AnyDesk' + installer: 'https://download.anydesk.com/AnyDesk.exe' + install_flags: '--install "%ProgramFiles(x86)%\AnyDesk" --start-with-win --silent --create-shortcut' + uninstaller: 'https://download.anydesk.com/AnyDesk.exe' + uninstall_flags: '--silent --remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,320 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,335 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,335 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,335 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 11:05:09,352 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,352 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,352 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +applicationrequestrouting: + '3.0.1952': + full_name: 'Microsoft Application Request Routing 3.0' + + installer: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,366 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,366 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,366 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,366 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,366 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 11:05:09,382 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,382 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,382 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +aspnet-mvc1: + '1.0.0.0': + full_name: 'Microsoft ASP.NET MVC 1.0' + installer: 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi' + install_flags: '/qn /norestart' + uninstaller: '{A4394612-D02F-11DC-9BFF-D18556D89593}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,382 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,382 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,399 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,399 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,399 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 11:05:09,399 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,413 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.014146089553833008 +2020-03-06 11:05:09,413 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: + +atom: + + '1.28.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.2': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.27.1': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.23.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Atom' + installer: 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe' + install_flags: '--machine' + uninstaller: '%AppData%\Local\atom\Update.exe' + uninstall_flags: '--uninstall' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:09,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,429 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.015918970108032227 +2020-03-06 11:05:09,429 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,429 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,445 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 11:05:09,445 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,460 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.015057563781738281 +2020-03-06 11:05:09,460 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: + + + + +audacity: + + '2.2.2': + full_name: 'Audacity 2.2.2' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Audacity 2.2.1' + installer: 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Audacity\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:09,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,460 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,476 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,476 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,476 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 11:05:09,492 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,492 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: + + + +autohotkey: + '1.1.29.01': + full_name: 'AutoHotkey 1.1.29.01' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.27.06': + full_name: 'AutoHotkey 1.1.27.06' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.24.00': + full_name: 'AutoHotkey 1.1.24.00' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + '1.1.22.09': + full_name: 'AutoHotkey 1.1.22.09' + installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe' + install_flags: '/S /U32 /D="%ProgramFiles(x86)%\AutoHotkey"' + uninstaller: '%ProgramFiles(x86)%\AutoHotKey\AutoHotKey.exe' + uninstall_flags: '"%ProgramFiles(x86)%\AutoHotkey\Installer.ahk" /Uninstall' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,508 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,508 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,508 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,528 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,528 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 11:05:09,528 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,539 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.011306524276733398 +2020-03-06 11:05:09,539 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: + +autoit: + + '3.3.14.5': + full_name: 'AutoIt v3.3.14.5' + installer: 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\AutoIt3\Uninstall.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:09,539 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,554 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.01506185531616211 +2020-03-06 11:05:09,554 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,554 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,554 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 11:05:09,571 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,571 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,571 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +autopsy: + '4.3.0': + full_name: 'Autopsy' + + installer: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + uninstaller: 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,571 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,586 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 11:05:09,601 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,601 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,601 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +awscli: + latest: + + full_name: 'AWS Command Line Interface' + installer: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + uninstaller: https://s3.amazonaws.com/aws-cli/AWSCLI64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,601 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,616 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,616 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,616 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 11:05:09,616 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,616 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,632 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +# due to winrepo installer limitations you need to manually download the exe from +# https://go.microsoft.com/fwlink/?linkid=2049975 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... + + +azuredatastudio: + '1.3.9': + full_name: 'Azure Data Studio' +# installer: 'salt://win/repo-ng/azuredatastudio/azuredatastudio-windows-setup-1.3.9.exe' + installer: 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe' + uninstaller: 'C:\Program Files\Azure Data Studio\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,632 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,632 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,632 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,632 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 11:05:09,648 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,648 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,648 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +#the provider only offers the download of the latest version + + + +bandizip: + '6.21': + full_name: 'Bandizip' + installer: 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE' + install_flags: '/S' + uninstaller: '%ProgramFiles%\Bandizip\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,648 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,648 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,648 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,663 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,663 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 11:05:09,663 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,663 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,663 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +# just 32-bit x86 installer available + + + +belarc-advisor: + '8.6': + full_name: 'Belarc Advisor' + installer: 'http://downloads.belarc.com/advisor/advisorinstaller.exe' + install_flags: '/s' + uninstaller: '%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\Uninstall.exe' + uninstall_flags: '/s "%PROGRAMFILES(x86)%\Belarc\BelarcAdvisor\INSTALL.LOG"' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,679 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.015642881393432617 +2020-03-06 11:05:09,679 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,679 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,679 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 11:05:09,679 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,679 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,695 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +bginfo4x: + '3.3.6': + full_name: 'BGINFO4X for Windows 3.3.6' + installer: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + uninstaller: 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,695 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,695 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,695 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 11:05:09,711 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,711 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,711 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +# source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe +bitnami-nginxstack: + '1.8.0-0': + full_name: 'Bitnami Nginx Stack' + installer: 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe' + install_flags: '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"' + uninstaller: 'C:\Bitnami\nginxstack-1.8.0-0\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,711 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,711 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,726 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,726 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,726 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 11:05:09,726 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,742 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.016083955764770508 +2020-03-06 11:05:09,742 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +bitvise: + + '8.32': + full_name: 'Bitvise SSH Server 8.32 (remove only)' + installer: 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe' + install_flags: '-acceptEULA -defaultInstance -startService' + uninstaller: '%ProgramFiles%\Bitvise SSH Server\uninst.exe' + uninstall_flags: '"Bitvise SSH Server" -unat' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:09,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,742 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,742 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,773 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 11:05:09,773 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,788 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.01563286781311035 +2020-03-06 11:05:09,788 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +blender: + '2.78': + full_name: 'Blender' + + installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:09,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,788 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,788 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,788 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,804 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 11:05:09,804 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,804 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,804 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +bootracer: + '6.50.0.450': + full_name: 'BootRacer' + installer: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + uninstaller: 'salt://win/repo-ng/bootracer/bootracer-650.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# download zip archive manually and unpack msi to slat master winrepo-ng directory + +2020-03-06 11:05:09,804 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.015151500701904297 +2020-03-06 11:05:09,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,820 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 11:05:09,836 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,836 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: + +bulkrenameutility: + + '3.0.0.1': + + full_name: 'Bulk Rename Utility 3.0.0.1 (64-bit)' + + installer: 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\Bulk Rename Utility\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:09,836 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,836 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,852 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,852 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 11:05:09,852 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,852 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,852 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +# just 32-bit x86 installer available + + + +bulk_extractor: + + '1.5.5': + full_name: 'Bulk Extractor 1.5.5' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.5\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Bulk Extractor 1.5.1' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.1\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Bulk Extractor 1.5.0' + installer: 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe' + install_flags: ' /S /norestart' + uninstaller: '%ProgramFiles(x86)%\Bulk Extractor 1.5.0\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:09,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.015642642974853516 +2020-03-06 11:05:09,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,867 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 11:05:09,883 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,883 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,883 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: + +ccleaner-slim: + + '5.60': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup560_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.59': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup559_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.58': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup558_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/slim/ccsetup557_slim.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:09,883 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,883 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,898 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 11:05:09,898 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,898 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: + +ccleaner: + + '5.57': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup557.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.44': + + full_name: 'CCleaner' + installer: 'https://download.ccleaner.com/ccsetup544.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\CCleaner\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:09,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,913 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,913 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,913 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,913 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 11:05:09,913 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,913 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,913 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +cdburnerxp: + '4.5.6.5931': + full_name: 'CDBurnerXP' + installer: 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\CDBurnerXP\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,930 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,930 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,930 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,930 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,930 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 11:05:09,930 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,945 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.01465153694152832 +2020-03-06 11:05:09,945 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +# just 32-bit x86 installer available + + + +cdroller: + '10.0': + full_name: 'CDRoller version 10.0' + installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe' + install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"' + uninstaller: '%PROGRAMFILES(x86)%\CDRoller\unins000.exe' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,945 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,945 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,945 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,945 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 11:05:09,961 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,961 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:09,961 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +check-mk-agent-msi: + + '1.5.0.3268': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2940': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0.2857': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8.1521': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8p26': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.8b1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p5': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p4': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p3': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p2': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.7i3p1': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6.185': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p16': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p15': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p14': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p13': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.2.6p12': + full_name: 'Check_MK Agent' + installer: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:09,976 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,976 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.015094518661499023 +2020-03-06 11:05:09,976 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,976 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,976 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 11:05:09,976 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:09,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.015625715255737305 +2020-03-06 11:05:09,992 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +check-mk-agent: + 'Not Found': + full_name: 'Check_MK Agent 1.2.8b4' + + installer: 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe' + + uninstaller: '%ProgramFiles%\check_mk\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:09,992 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:09,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:09,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:09,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:09,992 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 11:05:10,008 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,008 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,008 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +chrome-rdp: + latest: + full_name: 'Chrome Remote Desktop Host' + installer: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:10,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,008 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,008 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,008 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,023 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 11:05:10,023 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,023 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +chrome: + latest: + full_name: 'Google Chrome' + installer: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:10,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,023 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,023 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,038 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 11:05:10,038 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,038 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,038 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +clamav: + '0.99.1': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.99.1-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + '0.98.7': + + full_name: 'ClamAV-x64' + # Official download link - https://www.clamav.net/downloads/production/clamav-0.98.7-x64.msi + installer: 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi' + + install_flags: '/qr' + locale: en_US + reboot: False + msiexec: True + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' + +2020-03-06 11:05:10,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) +2020-03-06 11:05:10,038 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,054 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,054 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,054 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 11:05:10,054 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,054 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,054 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +# just 32-bit x86 installer available + + + +clamwin: + '0.98.7': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.6': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + '0.98.5': + full_name: 'ClamWin' + installer: 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\ClamWin\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,071 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,071 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,071 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,071 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 11:05:10,086 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,086 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,086 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +classicshell: + '4.2.4': + full_name: 'Classic Shell' + installer: 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe' + install_flags: '/passive' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,101 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.015145540237426758 +2020-03-06 11:05:10,101 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,101 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,101 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 11:05:10,101 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,118 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.016817092895507812 +2020-03-06 11:05:10,118 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +# just 32-bit x86 installer available + + + +clink: + '0.4.8': + full_name: 'Clink v0.4.8' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.8\clink_uninstall_0.4.8.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.7': + full_name: 'Clink v0.4.7' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.7\clink_uninstall_0.4.7.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.6': + full_name: 'Clink v0.4.6' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.6\clink_uninstall_0.4.6.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '0.4.4': + full_name: 'Clink v0.4.4' + installer: 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\clink\0.4.4\clink_uninstall_0.4.4.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# https://mridgers.github.io/clink/ + +2020-03-06 11:05:10,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,118 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,132 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,132 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,132 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 11:05:10,132 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,132 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,149 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +conemu: + '11.160.5290': + + full_name: 'ConEmu 160529.x64' + install_flags: '/p:x64,adm /quiet /norestart' + uninstall_flags: '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart' + + installer: 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,149 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,149 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,149 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,163 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,163 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 11:05:10,163 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,163 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,163 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +cpu-z: + + '1.86': + full_name: 'CPUID CPU-Z 1.86' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.85': + full_name: 'CPUID CPU-Z 1.85' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.84': + full_name: 'CPUID CPU-Z 1.84' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.83': + full_name: 'CPUID CPU-Z 1.83' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.82': + full_name: 'CPUID CPU-Z 1.82' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.81': + full_name: 'CPUID CPU-Z 1.81' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.80': + full_name: 'CPUID CPU-Z 1.80' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.79': + full_name: 'CPUID CPU-Z 1.79' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.78': + full_name: 'CPUID CPU-Z 1.78' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.77': + full_name: 'CPUID CPU-Z 1.77' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.76': + full_name: 'CPUID CPU-Z 1.76' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.75': + full_name: 'CPUID CPU-Z 1.75' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.74': + full_name: 'CPUID CPU-Z 1.74' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.73': + full_name: 'CPUID CPU-Z 1.73' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.72.1': + full_name: 'CPUID CPU-Z 1.72.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.71.1': + full_name: 'CPUID CPU-Z 1.71.1' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.70': + full_name: 'CPUID CPU-Z 1.70' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.69': + full_name: 'CPUID CPU-Z 1.69' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.68': + full_name: 'CPUID CPU-Z 1.68' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.67': + full_name: 'CPUID CPU-Z 1.67' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.66': + full_name: 'CPUID CPU-Z 1.66' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.65': + full_name: 'CPUID CPU-Z 1.65' + # http url used as https does not exist for download.cpuid.com subdomain + installer: 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:10,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,179 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.01612377166748047 +2020-03-06 11:05:10,179 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,179 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,196 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 11:05:10,196 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.015080451965332031 +2020-03-06 11:05:10,211 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +curl: + '7.46.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.45.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.44.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.43.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.0': + full_name: 'cURL' + + installer: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + uninstaller: 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi' + + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# You need to download the win64 msi from website (Captcha protected) and place in your winrepo-ng on master +# http://www.confusedbycode.com/curl/#downloads +# Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, +# so you might not be calling the right 'curl' + +2020-03-06 11:05:10,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,226 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 11:05:10,226 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,226 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,226 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +cyberduck-cli: + '1.0.0.0': + full_name: 'Cyberduck CLI' + installer: 'http://dist.duck.sh/duck-5.0.3.20504.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ALLUSERSPROFILE%\Package Cache\{d7e97b39-df55-4b65-84b3-c24d1041948b}\duck-5.0.3.20504.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,226 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,226 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,242 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,242 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 11:05:10,257 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,257 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,257 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +# just 32-bit x86 installer available + + + + +cyberduck-msi: + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 11:05:10,257 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,273 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.015609264373779297 +2020-03-06 11:05:10,273 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,273 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,273 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 11:05:10,288 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,288 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,288 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +# just 32-bit x86 installer available + + + + +cyberduck: + + + '6.8.2.28974': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.8.3.29107': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + + '6.9.0.29768': + full_name: 'Cyberduck' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + install_flags: '/install /quiet' + uninstall_flags: '/uninstall /quiet' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:10,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,288 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,304 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,304 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,304 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 11:05:10,320 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,320 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,320 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +# just 32-bit x86 installer available + + + +defraggler: + '2.20': + full_name: 'Defraggler' + installer: 'https://download.piriform.com/dfsetup220.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '2.18.945': + full_name: 'Defraggler 2.18' + installer: 'https://download.piriform.com/dfsetup218.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Defraggler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,320 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,336 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,336 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,336 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 11:05:10,336 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,336 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,351 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +dotnet: + '4.6.01590': + full_name: 'Microsoft .NET Framework 4.6.2' + installer: 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01590\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.01055': + full_name: 'Microsoft .NET Framework 4.6.1' + installer: 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.01055\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.6.00081': + full_name: 'Microsoft .NET Framework 4.6' + installer: 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.6.00081\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + '4.5.51209': + full_name: 'Microsoft .NET Framework 4.5.2' + installer: 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe' + install_flags: '/q /norestart' + + uninstaller: 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\SetupCache\v4.5.51209\Setup.exe' + uninstall_flags: '/uninstall /x86 /x64 /q /norestart' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,351 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,351 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,351 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,351 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 11:05:10,351 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,368 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0167388916015625 +2020-03-06 11:05:10,368 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +# just 32-bit x86 installer available + + + + + + + + +dropbox: + '69.4.102': + full_name: 'Dropbox' + installer: 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe' + install_flags: '/NOLAUNCH' + uninstaller: '%PROGRAMFILES(x86)%\Dropbox\Client\DropboxUninstaller.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,368 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,368 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,368 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,368 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,368 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 11:05:10,382 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,382 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,382 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +duplicati: + '1.3.4': + + full_name: 'Duplicati (x64)' + installer: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + uninstaller: 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + refresh: False + cache_dir: False + use_scheduler: False + +2020-03-06 11:05:10,382 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) +2020-03-06 11:05:10,382 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,382 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,398 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,398 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 11:05:10,398 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,398 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +dvdstyler: + 'Not Found': + full_name: 'DVDStyler v2.9.6' + + installer: 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\DVDStyler\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,414 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 11:05:10,414 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.01622605323791504 +2020-03-06 11:05:10,430 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +echo-desktop: + '3.0.4': + full_name: + Echo Desktop + installer: + https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe + install_flags: + /S + uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" + uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" + +2020-03-06 11:05:10,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) +2020-03-06 11:05:10,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,430 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,430 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,445 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 11:05:10,445 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,445 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,445 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +eea: +# '5.0.2260.1': +# full_name: 'ESET Endpoint Antivirus' +# +# installer: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# uninstaller: 'salt://win/repo-ng/eea/v5/eea_nt64_enu.msi' +# +# install_flags: '/qn ALLUSERS=1 /norestart' +# uninstall_flags: '/qn /norestart' +# msiexec: True +# locale: en_US +# reboot: False +# cache_dir: True +# use_scheduler: True + '6.3.2016.0': + full_name: 'ESET Endpoint Antivirus' + + installer: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + uninstaller: 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + cache_dir: True + use_scheduler: True +# +# download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ +# for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB + +2020-03-06 11:05:10,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) +2020-03-06 11:05:10,460 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,460 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,460 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,460 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 11:05:10,476 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,476 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,476 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +emet: + '5.5': + full_name: 'EMET 5.5' + installer: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + install_flags: 'ALLUSERS=1 /quiet /qn /norestart' + uninstaller: 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:10,476 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,476 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,476 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,491 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,491 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 11:05:10,491 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,491 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,507 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +# just 32-bit x86 installer available + + + +# Source: https://www.emsisoft.com/en/ +emsisoft-anti-malware: + '9.0': + full_name: 'Emsisoft Anti-Malware' + installer: 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Emsisoft Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,507 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,507 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,507 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,507 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,507 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 11:05:10,523 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,523 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,523 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: + + +eraser: + + '6.2.2986': + full_name: 'Eraser 6.2.0.2986' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + '6.2.2983': + full_name: 'Eraser 6.2.0.2983' + installer: 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe' + install_flags: '--quiet /verysilent /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:10,523 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,538 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.015603303909301758 +2020-03-06 11:05:10,538 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,538 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,538 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 11:05:10,554 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,554 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,554 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +evernote: + '6.9.7.6770': + full_name: 'Evernote v. 6.9.7' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.9.6.6729': + full_name: 'Evernote v. 6.9.6' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + '6.5.4.4720': + full_name: 'Evernote v. 6.5.4' + installer: 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe' + install_flags: '/quiet' + uninstaller: 'msiexec.exe' + uninstall_flags: '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,554 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,554 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,554 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,554 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,570 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 11:05:10,570 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,570 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,570 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +# just 32-bit x86 installer available + + + +fiddler: + '5.0.20181.14850': + full_name: 'Fiddler' + installer: 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe' + install_flags: '/S /D=%ProgramFiles(x86)%\Fiddler' + uninstaller: '%ProgramFiles(x86)%\Fiddler\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,570 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,586 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 11:05:10,586 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,586 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +# just 32-bit x86 installer available + + + +# Source: http://filehippo.com/download_update_checker/ +filehippo-app-manager: + '2.0': + full_name: 'FileHippo App Manager' + installer: 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\FileHippo.com\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download manually and place on master salt://win/repo-ng/filehippo-app-manager + +2020-03-06 11:05:10,586 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,601 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,601 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,601 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 11:05:10,601 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,619 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.01746392250061035 +2020-03-06 11:05:10,619 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: + + +filezilla: + + '3.47.1': + full_name: 'FileZilla Client 3.47.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.47.0': + full_name: 'FileZilla Client 3.47.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.3': + full_name: 'FileZilla Client 3.46.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.2': + full_name: 'FileZilla Client 3.46.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.1': + full_name: 'FileZilla Client 3.46.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.46.0': + full_name: 'FileZilla Client 3.46.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.1': + full_name: 'FileZilla Client 3.45.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.45.0': + full_name: 'FileZilla Client 3.45.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.2': + full_name: 'FileZilla Client 3.44.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.1': + full_name: 'FileZilla Client 3.44.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.44.0': + full_name: 'FileZilla Client 3.44.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.43.0': + full_name: 'FileZilla Client 3.43.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.1': + full_name: 'FileZilla Client 3.42.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.42.0': + full_name: 'FileZilla Client 3.42.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.2': + full_name: 'FileZilla Client 3.41.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.1': + full_name: 'FileZilla Client 3.41.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.41.0': + full_name: 'FileZilla Client 3.41.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.40.0': + full_name: 'FileZilla Client 3.40.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.39.0': + full_name: 'FileZilla Client 3.39.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.1': + full_name: 'FileZilla Client 3.38.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.38.0': + full_name: 'FileZilla Client 3.38.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.4': + full_name: 'FileZilla Client 3.37.4' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.3': + full_name: 'FileZilla Client 3.37.3' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.1': + full_name: 'FileZilla Client 3.37.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.37.0': + full_name: 'FileZilla Client 3.37.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.36.0': + full_name: 'FileZilla Client 3.36.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.2': + full_name: 'FileZilla Client 3.35.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.1': + full_name: 'FileZilla Client 3.35.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.35.0': + full_name: 'FileZilla Client 3.35.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.34.0': + full_name: 'FileZilla Client 3.34.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.33.0': + full_name: 'FileZilla Client 3.33.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.32.0': + full_name: 'FileZilla Client 3.32.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.31.0': + full_name: 'FileZilla Client 3.31.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.30.0': + full_name: 'FileZilla Client 3.30.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.29.0': + full_name: 'FileZilla Client 3.29.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.28.0': + full_name: 'FileZilla Client 3.28.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.1': + full_name: 'FileZilla Client 3.27.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0.1': + full_name: 'FileZilla Client 3.27.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.27.0': + full_name: 'FileZilla Client 3.27.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.2': + full_name: 'FileZilla Client 3.26.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.1': + full_name: 'FileZilla Client 3.26.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.26.0': + full_name: 'FileZilla Client 3.26.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.2': + full_name: 'FileZilla Client 3.25.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.1': + full_name: 'FileZilla Client 3.25.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.25.0': + full_name: 'FileZilla Client 3.25.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.1': + full_name: 'FileZilla Client 3.24.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.24.0': + full_name: 'FileZilla Client 3.24.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.2': + full_name: 'FileZilla Client 3.23.0.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0.1': + full_name: 'FileZilla Client 3.23.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.23.0': + full_name: 'FileZilla Client 3.23.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.2': + full_name: 'FileZilla Client 3.22.2.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2.1': + full_name: 'FileZilla Client 3.22.2.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.2': + full_name: 'FileZilla Client 3.22.2' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.1': + full_name: 'FileZilla Client 3.22.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.22.0': + full_name: 'FileZilla Client 3.22.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.21.0': + full_name: 'FileZilla Client 3.21.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.1': + full_name: 'FileZilla Client 3.20.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.20.0': + full_name: 'FileZilla Client 3.20.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.19.0': + full_name: 'FileZilla Client 3.19.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.18.0': + full_name: 'FileZilla Client 3.18.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0.1': + full_name: 'FileZilla Client 3.17.0.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.17.0': + full_name: 'FileZilla Client 3.17.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.1': + full_name: 'FileZilla Client 3.16.1' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.16.0': + full_name: 'FileZilla Client 3.16.0' + + installer: 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\FileZilla FTP Client\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:10,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,632 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.013141155242919922 +2020-03-06 11:05:10,632 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,648 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,648 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 11:05:10,648 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,664 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.016720056533813477 +2020-03-06 11:05:10,664 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +firefox-esr_x64: + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:10,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.015377998352050781 +2020-03-06 11:05:10,680 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,680 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,680 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 11:05:10,695 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,712 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.01763749122619629 +2020-03-06 11:05:10,712 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +firefox-esr_x86: + + + + + '68.5.0': + full_name: 'Mozilla Firefox 68.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.2': + full_name: 'Mozilla Firefox 68.4.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.1': + full_name: 'Mozilla Firefox 68.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.4.0': + full_name: 'Mozilla Firefox 68.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.3.0': + full_name: 'Mozilla Firefox 68.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.2.0': + full_name: 'Mozilla Firefox 68.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.1.0': + full_name: 'Mozilla Firefox 68.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.9.0': + full_name: 'Mozilla Firefox 60.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.8.0': + full_name: 'Mozilla Firefox 60.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.2': + full_name: 'Mozilla Firefox 60.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.1': + full_name: 'Mozilla Firefox 60.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.7.0': + full_name: 'Mozilla Firefox 60.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.3': + full_name: 'Mozilla Firefox 60.6.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.2': + full_name: 'Mozilla Firefox 60.6.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.1': + full_name: 'Mozilla Firefox 60.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Firefox 60.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Firefox 60.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Firefox 60.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Firefox 60.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Firefox 60.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Firefox 60.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.2': + full_name: 'Mozilla Firefox 60.2.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Firefox 60.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.0': + full_name: 'Mozilla Firefox 60.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.1.0': + full_name: 'Mozilla Firefox 60.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Firefox 52.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.1': + full_name: 'Mozilla Firefox 52.8.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Firefox 52.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.4': + full_name: 'Mozilla Firefox 52.7.4 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.3': + full_name: 'Mozilla Firefox 52.7.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.2': + full_name: 'Mozilla Firefox 52.7.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.1': + full_name: 'Mozilla Firefox 52.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.7.0': + full_name: 'Mozilla Firefox 52.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Firefox 52.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.3': + full_name: 'Mozilla Firefox 52.5.3 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Firefox 52.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.0': + full_name: 'Mozilla Firefox 52.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.1': + full_name: 'Mozilla Firefox 52.4.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.4.0': + full_name: 'Mozilla Firefox 52.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Firefox 52.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.1': + full_name: 'Mozilla Firefox 52.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.2.0': + full_name: 'Mozilla Firefox 52.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.2': + full_name: 'Mozilla Firefox 52.1.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.1': + full_name: 'Mozilla Firefox 52.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.1.0': + full_name: 'Mozilla Firefox 52.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.9.0': + full_name: 'Mozilla Firefox 45.9.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.8.0': + full_name: 'Mozilla Firefox 45.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.7.0': + full_name: 'Mozilla Firefox 45.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Firefox 45.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.1': + full_name: 'Mozilla Firefox 45.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.5.0': + full_name: 'Mozilla Firefox 45.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Firefox 45.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.3.0': + full_name: 'Mozilla Firefox 45.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.2.0': + full_name: 'Mozilla Firefox 45.2.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.1': + full_name: 'Mozilla Firefox 45.1.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.1.0': + full_name: 'Mozilla Firefox 45.1.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.8.0': + full_name: 'Mozilla Firefox 38.8.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.1': + full_name: 'Mozilla Firefox 38.7.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.7.0': + full_name: 'Mozilla Firefox 38.7.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.1': + full_name: 'Mozilla Firefox 38.6.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Firefox 38.6.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.2': + full_name: 'Mozilla Firefox 38.5.2 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.1': + full_name: 'Mozilla Firefox 38.5.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Firefox 38.5.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Firefox 38.4.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Firefox 38.3.0 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.1': + full_name: 'Mozilla Firefox 38.2.1 ESR (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:10,726 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,726 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.013941049575805664 +2020-03-06 11:05:10,726 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,741 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,741 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 11:05:10,741 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,757 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.015952110290527344 +2020-03-06 11:05:10,757 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +firefox_x64: + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x64 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:10,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.015747785568237305 +2020-03-06 11:05:10,788 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,788 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,788 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 11:05:10,804 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.015893936157226562 +2020-03-06 11:05:10,820 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +firefox_x86: + + + + + '73.0': + full_name: 'Mozilla Firefox 73.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.2': + full_name: 'Mozilla Firefox 72.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0.1': + full_name: 'Mozilla Firefox 72.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '72.0': + full_name: 'Mozilla Firefox 72.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '71.0': + full_name: 'Mozilla Firefox 71.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0.1': + full_name: 'Mozilla Firefox 70.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '70.0': + full_name: 'Mozilla Firefox 70.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.3': + full_name: 'Mozilla Firefox 69.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.2': + full_name: 'Mozilla Firefox 69.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0.1': + full_name: 'Mozilla Firefox 69.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '69.0': + full_name: 'Mozilla Firefox 69.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.2': + full_name: 'Mozilla Firefox 68.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0.1': + full_name: 'Mozilla Firefox 68.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '68.0': + full_name: 'Mozilla Firefox 68.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.4': + full_name: 'Mozilla Firefox 67.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.3': + full_name: 'Mozilla Firefox 67.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.2': + full_name: 'Mozilla Firefox 67.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0.1': + full_name: 'Mozilla Firefox 67.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '67.0': + full_name: 'Mozilla Firefox 67.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.5': + full_name: 'Mozilla Firefox 66.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.4': + full_name: 'Mozilla Firefox 66.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.3': + full_name: 'Mozilla Firefox 66.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.2': + full_name: 'Mozilla Firefox 66.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0.1': + full_name: 'Mozilla Firefox 66.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '66.0': + full_name: 'Mozilla Firefox 66.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.2': + full_name: 'Mozilla Firefox 65.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0.1': + full_name: 'Mozilla Firefox 65.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '65.0': + full_name: 'Mozilla Firefox 65.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0.2': + full_name: 'Mozilla Firefox 64.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '64.0': + full_name: 'Mozilla Firefox 64.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.3': + full_name: 'Mozilla Firefox 63.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0.1': + full_name: 'Mozilla Firefox 63.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '63.0': + full_name: 'Mozilla Firefox 63.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.3': + full_name: 'Mozilla Firefox 62.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0.2': + full_name: 'Mozilla Firefox 62.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '62.0': + full_name: 'Mozilla Firefox 62.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.2': + full_name: 'Mozilla Firefox 61.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0.1': + full_name: 'Mozilla Firefox 61.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '61.0': + full_name: 'Mozilla Firefox 61.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.2': + full_name: 'Mozilla Firefox 60.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0.1': + full_name: 'Mozilla Firefox 60.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Firefox 60.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.3': + full_name: 'Mozilla Firefox 59.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.2': + full_name: 'Mozilla Firefox 59.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0.1': + full_name: 'Mozilla Firefox 59.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '59.0': + full_name: 'Mozilla Firefox 59.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.2': + full_name: 'Mozilla Firefox 58.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0.1': + full_name: 'Mozilla Firefox 58.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '58.0': + full_name: 'Mozilla Firefox 58.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.4': + full_name: 'Mozilla Firefox 57.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.3': + full_name: 'Mozilla Firefox 57.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.2': + full_name: 'Mozilla Firefox 57.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0.1': + full_name: 'Mozilla Firefox 57.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '57.0': + full_name: 'Mozilla Firefox 57.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.2': + full_name: 'Mozilla Firefox 56.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0.1': + full_name: 'Mozilla Firefox 56.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '56.0': + full_name: 'Mozilla Firefox 56.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.3': + full_name: 'Mozilla Firefox 55.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.2': + full_name: 'Mozilla Firefox 55.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0.1': + full_name: 'Mozilla Firefox 55.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '55.0': + full_name: 'Mozilla Firefox 55.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0.1': + full_name: 'Mozilla Firefox 54.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '54.0': + full_name: 'Mozilla Firefox 54.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.3': + full_name: 'Mozilla Firefox 53.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0.2': + full_name: 'Mozilla Firefox 53.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '53.0': + full_name: 'Mozilla Firefox 53.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.2': + full_name: 'Mozilla Firefox 52.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0.1': + full_name: 'Mozilla Firefox 52.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.0': + full_name: 'Mozilla Firefox 52.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0.1': + full_name: 'Mozilla Firefox 51.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '51.0': + full_name: 'Mozilla Firefox 51.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.1.0': + full_name: 'Mozilla Firefox 50.1.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.2': + full_name: 'Mozilla Firefox 50.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0.1': + full_name: 'Mozilla Firefox 50.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '50.0': + full_name: 'Mozilla Firefox 50.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.2': + full_name: 'Mozilla Firefox 49.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0.1': + full_name: 'Mozilla Firefox 49.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '49.0': + full_name: 'Mozilla Firefox 49.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.2': + full_name: 'Mozilla Firefox 48.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0.1': + full_name: 'Mozilla Firefox 48.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '48.0': + full_name: 'Mozilla Firefox 48.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.2': + full_name: 'Mozilla Firefox 47.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0.1': + full_name: 'Mozilla Firefox 47.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '47.0': + full_name: 'Mozilla Firefox 47.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0.1': + full_name: 'Mozilla Firefox 46.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '46.0': + full_name: 'Mozilla Firefox 46.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.2': + full_name: 'Mozilla Firefox 45.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0.1': + full_name: 'Mozilla Firefox 45.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.0': + full_name: 'Mozilla Firefox 45.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.2': + full_name: 'Mozilla Firefox 44.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0.1': + full_name: 'Mozilla Firefox 44.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '44.0': + full_name: 'Mozilla Firefox 44.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.4': + full_name: 'Mozilla Firefox 43.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.3': + full_name: 'Mozilla Firefox 43.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.2': + full_name: 'Mozilla Firefox 43.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0.1': + full_name: 'Mozilla Firefox 43.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '43.0': + full_name: 'Mozilla Firefox 43.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '42.0': + full_name: 'Mozilla Firefox 42.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.2': + full_name: 'Mozilla Firefox 41.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0.1': + full_name: 'Mozilla Firefox 41.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '41.0': + full_name: 'Mozilla Firefox 41.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.3': + full_name: 'Mozilla Firefox 40.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0.2': + full_name: 'Mozilla Firefox 40.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '40.0': + full_name: 'Mozilla Firefox 40.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0.3': + full_name: 'Mozilla Firefox 39.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '39.0': + full_name: 'Mozilla Firefox 39.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.6': + full_name: 'Mozilla Firefox 38.0.6 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.5': + full_name: 'Mozilla Firefox 38.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0.1': + full_name: 'Mozilla Firefox 38.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.0': + full_name: 'Mozilla Firefox 38.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.2': + full_name: 'Mozilla Firefox 37.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0.1': + full_name: 'Mozilla Firefox 37.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '37.0': + full_name: 'Mozilla Firefox 37.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.4': + full_name: 'Mozilla Firefox 36.0.4 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.3': + full_name: 'Mozilla Firefox 36.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0.1': + full_name: 'Mozilla Firefox 36.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '36.0': + full_name: 'Mozilla Firefox 36.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0.1': + full_name: 'Mozilla Firefox 35.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '35.0': + full_name: 'Mozilla Firefox 35.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0.5': + full_name: 'Mozilla Firefox 34.0.5 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '34.0': + full_name: 'Mozilla Firefox 34.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1.1': + full_name: 'Mozilla Firefox 33.1.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.1': + full_name: 'Mozilla Firefox 33.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.3': + full_name: 'Mozilla Firefox 33.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.2': + full_name: 'Mozilla Firefox 33.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0.1': + full_name: 'Mozilla Firefox 33.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '33.0': + full_name: 'Mozilla Firefox 33.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.3': + full_name: 'Mozilla Firefox 32.0.3 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.2': + full_name: 'Mozilla Firefox 32.0.2 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0.1': + full_name: 'Mozilla Firefox 32.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '32.0': + full_name: 'Mozilla Firefox 32.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '31.0': + full_name: 'Mozilla Firefox 31.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '30.0': + full_name: 'Mozilla Firefox 30.0 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '29.0.1': + full_name: 'Mozilla Firefox 29.0.1 (x86 en-US)' + installer: 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe' + install_flags: '/s' + uninstaller: '%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:10,851 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,851 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.03101491928100586 +2020-03-06 11:05:10,851 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,867 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 11:05:10,867 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,867 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +# just 32-bit x86 installer available + + + + +gedit: + '2.30.1': + full_name: gedit 2.30.1 + installer: https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe + install_flags: '/sp- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\gedit\unins000.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,883 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0166165828704834 +2020-03-06 11:05:10,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,883 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 11:05:10,883 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.014680147171020508 +2020-03-06 11:05:10,898 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +# just 32-bit x86 installer available +# Gimp installs into %ProgramFiles on either cpu arch +gimp: + + '2.10.4': + full_name: 'GIMP 2.10.4' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.22': + full_name: 'GIMP 2.8.22' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.16': + full_name: 'GIMP 2.8.16' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + '2.8.14': + full_name: 'GIMP 2.8.14' + installer: 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe' + install_flags: '/SP- /SILENT /NORESTART' + uninstaller: '%ProgramFiles%\Gimp 2\uninst\unins000.exe' + uninstall_flags: '/SP- /SILENT /NORESTART' + msiexec: False + locale: en_US + restart: False + + +2020-03-06 11:05:10,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) +2020-03-06 11:05:10,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,914 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,914 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,914 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 11:05:10,929 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,929 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:10,929 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +git-extensions: + '2.48.05': + full_name: 'Git Extensions 2.48.05' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.48.03': + full_name: 'Git Extensions 2.48.03' + installer: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:10,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,929 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:10,929 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,945 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,945 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 11:05:10,945 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:10,976 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.031010150909423828 +2020-03-06 11:05:10,976 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available for git + + + + + + + +git: + + + + + + + + + + '2.23.0.windows.1': + full_name: Git version 2.23.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.22.0.windows.1': + full_name: Git version 2.22.0.windows.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.21.0': + full_name: Git version 2.21.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.1': + full_name: Git version 2.20.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.20.0': + full_name: Git version 2.20.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.2': + full_name: Git version 2.19.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.1': + full_name: Git version 2.19.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.19.0': + full_name: Git version 2.19.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.18.0': + full_name: Git version 2.18.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.1.2': + full_name: Git version 2.17.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.17.0': + full_name: Git version 2.17.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.3': + full_name: Git version 2.16.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.2': + full_name: Git version 2.16.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.16.0.2': + full_name: Git version 2.16.0.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.15.0': + full_name: Git version 2.15.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.14.2': + full_name: Git version 2.14.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.3': + full_name: Git version 2.13.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.13.1.2': + full_name: Git version 2.13.1.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.2': + full_name: Git version 2.12.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.12.1': + full_name: Git version 2.12.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0.3': + full_name: Git version 2.11.0.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.11.0': + full_name: Git version 2.11.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.2': + full_name: Git version 2.10.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.1': + full_name: Git version 2.10.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.10.0': + full_name: Git version 2.10.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.9.0': + full_name: Git version 2.9.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.4': + full_name: Git version 2.8.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.3': + full_name: Git version 2.8.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.2': + full_name: Git version 2.8.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.8.1': + full_name: Git version 2.8.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.2': + full_name: Git version 2.7.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.1': + full_name: Git version 2.7.1 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.7.0': + full_name: Git version 2.7.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.4': + full_name: Git version 2.6.4 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.6.2': + full_name: Git version 2.6.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.3': + full_name: Git version 2.5.3 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.2.2': + full_name: Git version 2.5.2.2 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + + + + + + + + + '2.5.0': + full_name: Git version 2.5.0 + installer: https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe + # It is impossible to downgrade git silently. It will always pop a message + # that will cause salt to hang. `/SUPPRESSMSGBOXES` will suppress that + # warning allowing salt to continue, but the package will not downgrade + install_flags: /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES + uninstaller: forfiles + uninstall_flags: '/p "%ProgramFiles%\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"' + msiexec: False + locale: en_US + reboot: False + + +msysgit: + '1.9.5-preview20150319': + full_name: 'Git version 1.9.5-preview20150319' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART ' + msiexec: False + locale: en_US + reboot: False + '1.9.5-preview20141217': + full_name: 'Git version 1.9.5-preview20141217' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe' + install_flags: '/VERYSILENT /NORESTART /SP- /NOCANCEL' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + '1.9.4-preview20140815': + full_name: 'Git version 1.9.4-preview20140815' + installer: 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe' + install_flags: '/VERYSILENT /NOREBOOT' + uninstaller: '%ProgramFiles(x86)%\Git\unins000.exe' + uninstall_flags: '/VERYSILENT /NOREBOOT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:10,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:10,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015380382537841797 +2020-03-06 11:05:10,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:10,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:10,992 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 11:05:11,008 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,008 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,008 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +# just 32-bit x86 installer available + + + +glarysoft-absolute-uninstaller: + '5.3.1.23': + full_name: 'Absolute Uninstaller 5.3.1.23' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '5.3.1.21': + full_name: 'Absolute Uninstaller 5.3.1.21' + installer: 'https://download.glarysoft.com/ausetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Glarysoft\Absolute Uninstaller 5\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,008 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,024 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,024 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,024 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 11:05:11,024 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,039 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.015590190887451172 +2020-03-06 11:05:11,039 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +# just 32-bit x86 installer available + + + +gnucash: + '2.6.5': + full_name: 'GnuCash 2.6.5' + installer: 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe' + install_flags: '/SILENT' + uninstaller: '%ProgramFiles(x86)%\gnucash\uninstall\gnucash\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:11,039 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,039 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,054 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,054 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,054 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 11:05:11,054 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,070 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.016266822814941406 +2020-03-06 11:05:11,086 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +# "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. +# See https://golang.org/ + + + + + +# Hint: the versionWithTrailingZero is required, because golang sets the version field in Windows to e.g. 1.14.0 or 1.13.0 if 1.14 or 1.13 is installed. +# If we dont do that the version can not be removed anymore via saltstack. + +golang: + + + '1.2.2': + + full_name: 'Go Programming Language amd64 go1.2.2' + installer: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.2.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.0': + + full_name: 'Go Programming Language amd64 go1.3' + installer: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.1': + + full_name: 'Go Programming Language amd64 go1.3.1' + installer: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.2': + + full_name: 'Go Programming Language amd64 go1.3.2' + installer: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.3.3': + + full_name: 'Go Programming Language amd64 go1.3.3' + installer: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.3.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.0': + + full_name: 'Go Programming Language amd64 go1.4' + installer: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.1': + + full_name: 'Go Programming Language amd64 go1.4.1' + installer: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.2': + + full_name: 'Go Programming Language amd64 go1.4.2' + installer: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.4.3': + + full_name: 'Go Programming Language amd64 go1.4.3' + installer: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.4.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.0': + + full_name: 'Go Programming Language amd64 go1.5' + installer: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.1': + + full_name: 'Go Programming Language amd64 go1.5.1' + installer: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.2': + + full_name: 'Go Programming Language amd64 go1.5.2' + installer: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.3': + + full_name: 'Go Programming Language amd64 go1.5.3' + installer: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.5.4': + + full_name: 'Go Programming Language amd64 go1.5.4' + installer: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.5.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.0': + + full_name: 'Go Programming Language amd64 go1.6' + installer: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.1': + + full_name: 'Go Programming Language amd64 go1.6.1' + installer: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.2': + + full_name: 'Go Programming Language amd64 go1.6.2' + installer: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.3': + + full_name: 'Go Programming Language amd64 go1.6.3' + installer: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.6.4': + + full_name: 'Go Programming Language amd64 go1.6.4' + installer: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.6.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.0': + + full_name: 'Go Programming Language amd64 go1.7' + installer: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.1': + + full_name: 'Go Programming Language amd64 go1.7.1' + installer: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.2': + + full_name: 'Go Programming Language amd64 go1.7.2' + installer: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.3': + + full_name: 'Go Programming Language amd64 go1.7.3' + installer: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.4': + + full_name: 'Go Programming Language amd64 go1.7.4' + installer: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.5': + + full_name: 'Go Programming Language amd64 go1.7.5' + installer: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.7.6': + + full_name: 'Go Programming Language amd64 go1.7.6' + installer: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.7.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.0': + + full_name: 'Go Programming Language amd64 go1.8' + installer: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.1': + + full_name: 'Go Programming Language amd64 go1.8.1' + installer: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.2': + + full_name: 'Go Programming Language amd64 go1.8.2' + installer: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.3': + + full_name: 'Go Programming Language amd64 go1.8.3' + installer: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.4': + + full_name: 'Go Programming Language amd64 go1.8.4' + installer: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.5': + + full_name: 'Go Programming Language amd64 go1.8.5' + installer: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.6': + + full_name: 'Go Programming Language amd64 go1.8.6' + installer: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.8.7': + + full_name: 'Go Programming Language amd64 go1.8.7' + installer: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.8.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.0': + + full_name: 'Go Programming Language amd64 go1.9' + installer: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.1': + + full_name: 'Go Programming Language amd64 go1.9.1' + installer: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.2': + + full_name: 'Go Programming Language amd64 go1.9.2' + installer: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.3': + + full_name: 'Go Programming Language amd64 go1.9.3' + installer: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.4': + + full_name: 'Go Programming Language amd64 go1.9.4' + installer: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + + full_name: 'Go Programming Language amd64 go1.9.5' + installer: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.6': + + full_name: 'Go Programming Language amd64 go1.9.6' + installer: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.7': + + full_name: 'Go Programming Language amd64 go1.9.7' + installer: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.9.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.0': + + full_name: 'Go Programming Language amd64 go1.10' + installer: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.1': + + full_name: 'Go Programming Language amd64 go1.10.1' + installer: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.2': + + full_name: 'Go Programming Language amd64 go1.10.2' + installer: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.3': + + full_name: 'Go Programming Language amd64 go1.10.3' + installer: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.4': + + full_name: 'Go Programming Language amd64 go1.10.4' + installer: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.5': + + full_name: 'Go Programming Language amd64 go1.10.5' + installer: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.6': + + full_name: 'Go Programming Language amd64 go1.10.6' + installer: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.7': + + full_name: 'Go Programming Language amd64 go1.10.7' + installer: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.10.8': + + full_name: 'Go Programming Language amd64 go1.10.8' + installer: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.10.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.0': + + full_name: 'Go Programming Language amd64 go1.11' + installer: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.1': + + full_name: 'Go Programming Language amd64 go1.11.1' + installer: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.2': + + full_name: 'Go Programming Language amd64 go1.11.2' + installer: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.3': + + full_name: 'Go Programming Language amd64 go1.11.3' + installer: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.4': + + full_name: 'Go Programming Language amd64 go1.11.4' + installer: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.5': + + full_name: 'Go Programming Language amd64 go1.11.5' + installer: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.6': + + full_name: 'Go Programming Language amd64 go1.11.6' + installer: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.7': + + full_name: 'Go Programming Language amd64 go1.11.7' + installer: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.8': + + full_name: 'Go Programming Language amd64 go1.11.8' + installer: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.9': + + full_name: 'Go Programming Language amd64 go1.11.9' + installer: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.10': + + full_name: 'Go Programming Language amd64 go1.11.10' + installer: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.11': + + full_name: 'Go Programming Language amd64 go1.11.11' + installer: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.12': + + full_name: 'Go Programming Language amd64 go1.11.12' + installer: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.11.13': + + full_name: 'Go Programming Language amd64 go1.11.13' + installer: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.11.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.0': + + full_name: 'Go Programming Language amd64 go1.12' + installer: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.1': + + full_name: 'Go Programming Language amd64 go1.12.1' + installer: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.2': + + full_name: 'Go Programming Language amd64 go1.12.2' + installer: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.3': + + full_name: 'Go Programming Language amd64 go1.12.3' + installer: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.4': + + full_name: 'Go Programming Language amd64 go1.12.4' + installer: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.5': + + full_name: 'Go Programming Language amd64 go1.12.5' + installer: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.6': + + full_name: 'Go Programming Language amd64 go1.12.6' + installer: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.7': + + full_name: 'Go Programming Language amd64 go1.12.7' + installer: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.8': + + full_name: 'Go Programming Language amd64 go1.12.8' + installer: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.9': + + full_name: 'Go Programming Language amd64 go1.12.9' + installer: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.9.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.10': + + full_name: 'Go Programming Language amd64 go1.12.10' + installer: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.10.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.11': + + full_name: 'Go Programming Language amd64 go1.12.11' + installer: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.11.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.12': + + full_name: 'Go Programming Language amd64 go1.12.12' + installer: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.12.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.13': + + full_name: 'Go Programming Language amd64 go1.12.13' + installer: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.14': + + full_name: 'Go Programming Language amd64 go1.12.14' + installer: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.15': + + full_name: 'Go Programming Language amd64 go1.12.15' + installer: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.15.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.16': + + full_name: 'Go Programming Language amd64 go1.12.16' + installer: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.16.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.12.17': + + full_name: 'Go Programming Language amd64 go1.12.17' + installer: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.12.17.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.0': + + full_name: 'Go Programming Language amd64 go1.13' + installer: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.1': + + full_name: 'Go Programming Language amd64 go1.13.1' + installer: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.1.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.2': + + full_name: 'Go Programming Language amd64 go1.13.2' + installer: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.2.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.3': + + full_name: 'Go Programming Language amd64 go1.13.3' + installer: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.3.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.4': + + full_name: 'Go Programming Language amd64 go1.13.4' + installer: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.4.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.5': + + full_name: 'Go Programming Language amd64 go1.13.5' + installer: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.5.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.6': + + full_name: 'Go Programming Language amd64 go1.13.6' + installer: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.6.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.7': + + full_name: 'Go Programming Language amd64 go1.13.7' + installer: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.7.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.13.8': + + full_name: 'Go Programming Language amd64 go1.13.8' + installer: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.13.8.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.14.0': + + full_name: 'Go Programming Language amd64 go1.14' + installer: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + uninstaller: 'https://dl.google.com/go/go1.14.windows-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:11,102 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,102 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.015613317489624023 +2020-03-06 11:05:11,117 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,117 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,117 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 11:05:11,117 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,117 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,117 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +goodsync: + '9.9.46.6': + full_name: 'GoodSync' + installer: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.goodsync.com/download/GoodSync-Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,133 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,133 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,133 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,148 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,148 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 11:05:11,148 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,148 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,148 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +# just 32-bit x86 installer available + + + +gow: + 'Not Found': + full_name: 'Gow' + installer: 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Gow\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + # Gow - GNU on Windows - The lightweight alternative to Cygwin + # https://github.com/bmatzelle/gow/wiki + +2020-03-06 11:05:11,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,148 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,164 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,164 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,164 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 11:05:11,164 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,164 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,180 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +# just 32-bit x86 installer available + + + +gpg4win-light: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# Note: this 2.2.3 light installer has a bug and it needs to be fixed upstream +# Here are work around instructions under Issue #113 in the meantime +# https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 +# + +2020-03-06 11:05:11,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,180 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,180 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,180 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,180 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 11:05:11,195 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,195 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,195 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +# just 32-bit x86 installer available + + + +gpg4win-vanilla: + + '2.3.4': + full_name: 'Gpg4Win (2.3.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.3': + full_name: 'Gpg4Win (2.3.3)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.2': + full_name: 'Gpg4Win (2.3.2)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.1': + full_name: 'Gpg4Win (2.3.1)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.3.0': + full_name: 'Gpg4Win (2.3.0)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + full_name: 'Gpg4Win (2.2.4)' + installer: 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\GNU\GnuPG\gpg4win-uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:11,195 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,195 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,210 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,210 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,210 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 11:05:11,210 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,227 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.016246557235717773 +2020-03-06 11:05:11,227 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: + + +graylog-collector-sidecar: + + '0.1.6': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.5': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.4': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.3': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.2': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.1': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '0.1.0': + full_name: 'Graylog Collector Sidecar' + installer: 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles%\graylog\collector-sidecar\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:11,227 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,227 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,227 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,242 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,242 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 11:05:11,242 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,242 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,258 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +grepwin: + '1.6.682': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.673': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.661': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.6.646': + + full_name: 'grepWin x64' + installer: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + uninstaller: 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi' + + install_flags: '/qn ALLUSERS=1 /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,258 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,258 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,283 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,283 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 11:05:11,288 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,288 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,288 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +# just 32-bit x86 installer available + + + +gvim: + 'Not Found': + full_name: 'Vim 8.0.3' + installer: 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Vim\vim80\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,288 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,305 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,305 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,305 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 11:05:11,320 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,320 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,320 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +# Source: https://handbrake.fr +handbrake: + '0.10.5': + full_name: 'Handbrake 0.10.5' + + installer: 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Handbrake\uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,320 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,335 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,335 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,335 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 11:05:11,351 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,351 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,351 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +hipchat: + + + + '4.0.1650': + installer: 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe' + full_name: 'HipChat' + install_flags: '/sp /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\Atlassian\Hipchat4\unins000.exe' + uninstall_flags: '/sp /verysilent' + msiexec: False + reboot: False + +2020-03-06 11:05:11,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:05:11,351 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,351 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,367 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 11:05:11,367 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,367 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,383 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +hostsfileeditor: + '1.2.0': + + full_name: 'Hosts File Editor' + installer: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + uninstaller: https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,383 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,383 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,383 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,383 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 11:05:11,398 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.01553201675415039 +2020-03-06 11:05:11,398 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: + +hwinfo: + '5.70': + + full_name: 'HWiNFO64 Version 5.70' + installer: 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe' + uninstaller: '%PROGRAMFILES%\HWiNFO64\unins000.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstall_flags: '/VERYSILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,398 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,414 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 11:05:11,414 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.01601719856262207 +2020-03-06 11:05:11,430 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls +ice: + '3.6.1.2': + full_name: 'Ice 3.6.1.2' + installer: 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi' + uninstaller: '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,430 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,445 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,445 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 11:05:11,445 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,445 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,445 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +# just 32-bit x86 installer available + + + +icecast: + '2.4.2': + full_name: 'Icecast' + installer: 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Icecast\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,460 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,460 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,460 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,477 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 11:05:11,477 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.014805316925048828 +2020-03-06 11:05:11,492 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +icloud: + '7.3.0.20': + full_name: iCloud + installer: 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,492 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,508 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,508 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 11:05:11,508 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,524 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.01660013198852539 +2020-03-06 11:05:11,524 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +iismediaservices: + '4.1.0938.454': + full_name: 'IIS Media Services 4.1' + + installer: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '4.0.0938.54': + full_name: 'IIS Media Services 4.0' + + installer: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + '2.0.1': + full_name: 'IIS Media Services 2.0' + + installer: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + uninstaller: 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,524 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,524 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,524 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,538 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,538 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 11:05:11,538 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.01660919189453125 +2020-03-06 11:05:11,555 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +influx-capacitor: + '1.0.89': + full_name: 'Influx Capacitor' + installer: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + install_flags: '/q' + uninstaller: 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi' + uninstall_flags: '/q' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,555 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,555 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 11:05:11,570 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,570 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,570 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +inkscape: + '0.91': + full_name: 'Inkscape 0.91' + + installer: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + uninstaller: 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,570 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,570 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,570 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,585 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 11:05:11,585 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,585 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,602 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +# just 32-bit x86 installer available + + + +intellij-community: + + '14.1.4': + full_name: 'IntelliJ IDEAS Community Edition 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:11,602 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,602 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,602 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,602 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,602 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 11:05:11,602 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,617 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.014163732528686523 +2020-03-06 11:05:11,617 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +# just 32-bit x86 installer available + + + +intellij-ultimate: + + '14.1.4': + full_name: 'IntelliJ IDEAS Ultimate 14.1.4' + installer: 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\JetBrains\IntelliJ IDEA 14.1.4\bin\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:11,617 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,617 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,617 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,633 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,633 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 11:05:11,633 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,633 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +internet-evidence-finder: + '6.2.3.0001': + full_name: 'Internet Evidence Finder' + installer: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + install_flags: '/sp- /verysilent /norestart' + uninstaller: 'salt://win/repo-ng/ief/IEFv623.0001setup.exe' + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,633 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,649 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,649 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,649 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 11:05:11,649 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,649 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,649 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +irfanview-plugins: + '4.42': + + full_name: 'Irfanview Plugins 4.40' + installer: 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe' + # download manually from: http://www.irfanview.info/files/irfanview_plugins_x64_442_setup.exe and place on master + + install_flags: '/silent' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,649 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,663 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.01411747932434082 +2020-03-06 11:05:11,663 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,663 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,663 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 11:05:11,680 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,680 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +irfanview: + '4.51': + + full_name: 'IrfanView 64 (remove only)' + installer: 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe' + # download manually from: http://www.irfanview.info/files/iview451_x64_setup.exe and place on master + + install_flags: '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0' + uninstaller: '%ProgramFiles%\irfanview\iv_uninstall.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False +# install_flags +# folder: destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used +# silent: silent install - no prompts +# desktop: create desktop shortcut; 0 = no, 1 = yes (default: 0) +# thumbs: create desktop shortcut for thumbnails; 0 = no, 1 = yes (default: 0) +# group: create group in Start Menu; 0 = no, 1 = yes (default: 0) +# allusers: desktop/group links are for all users; 0 = current user, 1 = all users +# assoc: if used, set file associations; 0 = none, 1 = images only, 2 = select all (default: 0) +# assocallusers: if used, set associations for all users (Windows XP only) +# ini: if used, set custom INI file folder (system environment variables are allowed) + +2020-03-06 11:05:11,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,680 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,696 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,696 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 11:05:11,696 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,696 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,696 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +isapirewrite-lite: + '3.1.0112': + full_name: 'Helicon ISAPI_Rewrite 3 Lite' + + installer: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + uninstaller: 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi' + + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,696 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,710 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,710 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,710 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 11:05:11,710 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,710 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,710 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +itunes: + '12.8.0.150': + full_name: 'iTunes' + + installer: 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe' + uninstall_flags: | + '/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} & + msiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} & + msiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} & + msiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} & + msiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} & + msiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} & + exit 0' + # the above uninstalls: + # Bonjour64 v. 3.1.0.1 {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} + # Apple Software Update v. 2.6.0.1 {A30EA700-5515-48F0-88B0-9E99DC356B88} + # Apple Mobile Device Support (64-bit) v. 11.4.1.46 {C29B636B-9015-4ED1-A12F-6375A337F23B} + # Apple Application Support (32-bit) v. 6.6 {C56BA005-F02C-461B-ACA5-A0CE3E32578F} + # Apple Application Support (64-bit) v. 6.6 {D745E014-74DD-43A3-98DF-E7D38164B681} + # iTunes v. 12.8.0.150 {36F365B3-05C2-455D-9D96-B73829DE046D} + + install_flags: '/quiet /qn ALLUSERS=1 /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,726 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,726 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,726 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,726 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,726 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 11:05:11,726 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,726 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,743 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way +# to find manual download links for any version use: +# http://www.java.com/en/download/manual.jsp +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + +jdk8: + '8.0.1440.1': + + full_name: 'Java SE Development Kit 8 Update 144 (64-bit)' + installer: salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe + + install_flags: '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"' + uninstall_flags: '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,743 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,743 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,743 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,743 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,743 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 11:05:11,758 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,758 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,758 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +jre: + '7.0.790': + + full_name: 'Java 7 Update 79 (64-bit)' + installer: 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart' + + uninstaller: 'msiexec.exe' + install_flags: '/s REBOOT=Suppress SPONSORS=0' + msiexec: False + locale: en_US + reboot: False + # due to winrepo installer limitations you need to manually download the exe from + # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 + # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way + +2020-03-06 11:05:11,758 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,758 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,773 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 11:05:11,773 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,790 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +# due to winrepo installer limitations you need to manually download the exe from +# http://www.java.com/en/download/manual.jsp +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... +# Do NOT use the 'archive' versions download page, use the 'manual' one above. The 'archive' one will give +# you more versions and also different builds. IF you do use these, make sure you adapt your sls file accordingly. +# http://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html + + + +jre8: + + + + '8.0.2010.9': + + full_name: 'Java 8 Update 201 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2110.9': + + full_name: 'Java 8 Update 211 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2210.9': + + full_name: 'Java 8 Update 221 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2310.9': + + full_name: 'Java 8 Update 231 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + '8.0.2410.7': + + full_name: 'Java 8 Update 241 (64-bit)' + installer: 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe' + uninstall_flags: '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart' + + install_flags: '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:11,790 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,790 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,790 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,790 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,790 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 11:05:11,804 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,804 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,804 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +jungledisk-server-management: + '3.23.0.2': + full_name: 'Jungle Disk Server Management' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-management64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,804 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,804 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,804 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,804 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,804 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 11:05:11,820 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,820 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +jungledisk-server: + '3.23.0.2': + full_name: 'Jungle Disk Server' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-server-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,836 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,836 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,836 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 11:05:11,836 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,836 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +jungledisk-workgroup: + '3.23.0.2': + full_name: 'Jungle Disk Workgroup' + + installer: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + uninstaller: 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe' + install_flags: '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + uninstall_flags: '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log' + + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,836 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,851 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.014653205871582031 +2020-03-06 11:05:11,851 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,851 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,851 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 11:05:11,851 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.015630006790161133 +2020-03-06 11:05:11,867 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +kdiff3: + 'Not Found': + full_name: 'KDiff3 (remove only)' + + installer: 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe' + + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\KDiff3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,867 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 11:05:11,882 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,882 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,882 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +# Keepass 2.x installation from https://keepass.info/ +# to keep the versioning in the format of "2..minor", two seperate version arrays are created. + + + +# Hint: Version 2.24 is the first version that provides a msi-package, all versions before had a -Setup.exe + + +keepass-2x: + + + '2.24.0': + full_name: 'KeePass 2.24' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.25.0': + full_name: 'KeePass 2.25' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.26.0': + full_name: 'KeePass 2.26' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.27.0': + full_name: 'KeePass 2.27' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.28.0': + full_name: 'KeePass 2.28' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.29.0': + full_name: 'KeePass 2.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.30.0': + full_name: 'KeePass 2.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.31.0': + full_name: 'KeePass 2.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.32.0': + full_name: 'KeePass 2.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.33.0': + full_name: 'KeePass 2.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.34.0': + full_name: 'KeePass 2.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.35.0': + full_name: 'KeePass 2.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.36.0': + full_name: 'KeePass 2.36' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.37.0': + full_name: 'KeePass 2.37' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.38.0': + full_name: 'KeePass 2.38' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.0': + full_name: 'KeePass 2.39' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.40.0': + full_name: 'KeePass 2.40' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.41.0': + full_name: 'KeePass 2.41' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.0': + full_name: 'KeePass 2.42' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.43.0': + full_name: 'KeePass 2.43' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.44.0': + full_name: 'KeePass 2.44' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.39.1': + full_name: 'KeePass 2.39.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.42.1': + full_name: 'KeePass 2.42.1' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.015618562698364258 +2020-03-06 11:05:11,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,898 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 11:05:11,898 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,913 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +keepass: + '1.35.0': + full_name: 'KeePass 1.35' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.34.0': + full_name: 'KeePass 1.34' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.33.0': + full_name: 'KeePass 1.33' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.32.0': + full_name: 'KeePass 1.32' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.31.0': + full_name: 'KeePass 1.31' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.30.0': + full_name: 'KeePass 1.30' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.29.0': + full_name: 'KeePass 1.29' + installer: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,913 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,913 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,913 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,913 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 11:05:11,929 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,929 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,929 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +# just 32-bit x86 installer available + + + +lastpass: + 'Not Found': + full_name: 'LastPass (uninstall only)' + + installer: 'https://lastpass.eu/sync/lastpass_x64.exe' + + install_flags: '-si --userinstallie --userinstallff --userinstallchrome' + uninstaller: '%PROGRAMFILES(x86)%\LastPass\lastpass.exe' + uninstall_flags: '-sb' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:11,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,929 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,945 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,945 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,945 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 11:05:11,945 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,945 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,945 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +# NOTE: If the lazarus installation directory exists the installation will +# pop up a dialog box. This will cause the minion to hang because it +# is waiting for the user to click continue on a dialog box that will +# never be seen. So, before running this, make sure the lazarus +# installation directory is not present. +# If doing an upgrade that means you'll have to do something like the +# following: +# pkg.remove lazarus +# file.remove c:\lazarus +# pkg.install lazarus + + +lazarus: + + '1.8.0': + full_name: Lazarus 1.8.0 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + '1.6.4': + full_name: Lazarus 1.6.4 + + installer: https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe + + install_flags: /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + uninstaller: C:\\lazarus\\unins000.exe + uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES + + +2020-03-06 11:05:11,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) +2020-03-06 11:05:11,960 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.015626907348632812 +2020-03-06 11:05:11,960 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,960 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,960 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 11:05:11,960 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,976 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.015630483627319336 +2020-03-06 11:05:11,976 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +libreoffice: + + '5.3.5.2': + full_name: 'LibreOffice 5.3.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.3.6.1': + full_name: 'LibreOffice 5.3.6.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.6.2': + full_name: 'LibreOffice 5.4.6.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.4.7.2': + full_name: 'LibreOffice 5.4.7.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.0.5.2': + full_name: 'LibreOffice 6.0.5.2' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.2.7.1': + full_name: 'LibreOffice 6.2.7.1' + + installer: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + uninstaller: 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:11,976 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,976 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:11,976 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:11,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:11,992 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 11:05:11,992 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:11,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:11,992 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +logparser: + '2.2.10': + full_name: 'Log Parser 2.2' + installer: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:11,992 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:11,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,008 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,008 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,008 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 11:05:12,023 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,023 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +# just 32-bit x86 installer available + + + +maas360bootanalyzer: + '1.0.0': + full_name: 'MaaS360 Boot Analyzer v 1.0.0' + installer: 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe' + + install_flags: | + '/S & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v UninstallString /d "C:\Program Files (x86)\BootAnalyzer\Uninstall.exe" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" & + reg ADD HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" & + exit 0' + + uninstaller: '%PROGRAMFILES(x86)%\MaaS360\BootAnalyzer\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False +# download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory + +2020-03-06 11:05:12,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,039 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,039 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,039 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 11:05:12,039 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,039 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,056 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.malwarebytes.org +malwarebytes: + '3.5.1.2522': + full_name: 'Malwarebytes Anti-Malware version 2.0.4.1028' + installer: 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Malwarebytes Anti-Malware\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: Falsea + +2020-03-06 11:05:12,056 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) +2020-03-06 11:05:12,056 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,056 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,056 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,056 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 11:05:12,073 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,101 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.02870917320251465 +2020-03-06 11:05:12,101 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +#MariaDB https://downloads.mariadb.org/mariadb/+releases/ +#only stable versions are listed + + + + + + + + +mariadb: + + + '5.5.63.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.62.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.61.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.60.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.59.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.58.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.57.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.56.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.55.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.54.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.53.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.52.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.51.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.50.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.49.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.48.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.47.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.0.38.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.37.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.36.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.35.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.34.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.33.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.32.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.29.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.28.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.27.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.26.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.25.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.23.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.19.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.18.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.17.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.16.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.2.22.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.21.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.20.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.19.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.18.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.16.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.15.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.14.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.13.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.12.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.11.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.10.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.9.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.8.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.2.6.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.1.38.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.37.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.36.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.35.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.34.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.33.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.32.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.31.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.30.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.29.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.28.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.27.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.26.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.25.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.24.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.23.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.22.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.21.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.19.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.18.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.17.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.16.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.14.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.13.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.12.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.11.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.10.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.9.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.1.8.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 11:05:12,117 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:05:12,132 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.030885696411132812 +2020-03-06 11:05:12,132 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,132 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,132 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 11:05:12,132 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,132 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,148 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +mercurial: + '3.1.1': + + full_name: 'Mercurial 3.1.1 (x64)' + installer: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + uninstaller: 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:12,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,148 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,148 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,148 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,148 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 11:05:12,148 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,164 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.01564168930053711 +2020-03-06 11:05:12,164 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +messageanalyzer: + '4.0.7551.0': + full_name: 'Microsoft Message Analyzer' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi' + + install_flags: '/quiet /norestart' + uninstaller: '{1CC02C23-8FCD-487E-860C-311EC0A0C933}' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:12,164 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,164 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,164 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,164 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,164 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 11:05:12,179 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,179 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,179 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +microsoft-build-tools: + '14.0.23107': + + full_name: 'Microsoft Build Tools 14.0 (amd64)' + uninstall_flags: '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart' + + installer: 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe' + install_flags: '/Q /NoRestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,179 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,195 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,195 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,195 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 11:05:12,195 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,195 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,195 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +mikogo: + '5.3.0': + full_name: 'Mikogo' + installer: 'https://download.mikogo4.com/mikogo-starter.exe' + install_flags: '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0' + uninstaller: '%AppData%\Mikogo\remover.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,195 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.016114473342895508 +2020-03-06 11:05:12,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,211 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 11:05:12,211 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,211 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +miktex-basic: + '2.9': + full_name: 'MiKTeX 2.9' + + installer: 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe' + + install_flags: '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\MiKTeX 2.9\"' + uninstaller: 'cmd' + uninstall_flags: | + '/c del /Q /F /S "%ProgramFiles%\MiKTeX 2.9\" & + reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MiKTeX 2.9" /f & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,227 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,227 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,227 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 11:05:12,227 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,227 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,227 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +mongodb: + '3.3.5': + full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6': + full_name: 'MongoDB 3.2.6 2008R2Plus (64 bit)' + installer: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:12,227 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,227 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,243 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,243 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,243 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 11:05:12,243 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,243 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,258 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available +ms-mbsa: + '2.3.2211': + + installer: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + uninstaller: 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi' + + full_name: 'Microsoft Baseline Security Analyzer 2.3' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:12,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,258 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,258 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,258 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,258 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 11:05:12,273 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,273 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,273 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +ms-vcpp-2005-atl-redist_x64: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,273 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,289 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,289 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,289 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 11:05:12,289 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,289 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,289 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +ms-vcpp-2005-atl-redist_x86: + '8.0.50727.42': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,289 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,289 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,305 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,305 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,305 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 11:05:12,305 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,305 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,305 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +ms-vcpp-2005-redist_x64: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,305 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,320 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,320 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,320 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 11:05:12,320 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,320 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,320 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +ms-vcpp-2005-redist_x86: + '8.0.56336': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,320 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,336 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,336 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,336 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 11:05:12,336 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,336 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,336 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +ms-vcpp-2005-sp1-mfc-redist_x64: + '8.0.61000': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,336 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,336 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,336 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,352 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,352 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 11:05:12,352 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,352 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,352 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +ms-vcpp-2005-sp1-mfc-redist_x86: + '8.0.61001': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,367 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015624046325683594 +2020-03-06 11:05:12,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,367 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 11:05:12,367 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,383 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.01611804962158203 +2020-03-06 11:05:12,383 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +ms-vcpp-2005-sp1-redist_x64: + '8.0.59192': + full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,383 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,383 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,383 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,383 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 11:05:12,383 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.01513671875 +2020-03-06 11:05:12,398 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +ms-vcpp-2005-sp1-redist_x86: + '8.0.59193': + full_name: 'Microsoft Visual C++ 2005 Redistributable' + installer: 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe' + install_flags: '/q' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,398 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,398 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,398 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 11:05:12,398 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,415 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.016106128692626953 +2020-03-06 11:05:12,415 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +ms-vcpp-2008-redist_x64: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' + installer: 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,415 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,415 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,415 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,415 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,415 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 11:05:12,430 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,430 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +ms-vcpp-2008-redist_x86: + '9.0.21022': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' + installer: 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,430 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,430 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,430 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 11:05:12,430 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,446 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.01610279083251953 +2020-03-06 11:05:12,446 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +ms-vcpp-2008-sp1-atl-redist_x64: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,446 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,446 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,446 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,446 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 11:05:12,460 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,460 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.014661788940429688 +2020-03-06 11:05:12,460 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +ms-vcpp-2008-sp1-atl-redist_x86: + '9.0.30729.4148': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' + installer: 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,460 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,460 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,460 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,460 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 11:05:12,477 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,477 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,477 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +ms-vcpp-2008-sp1-mfc-redist_x64: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,477 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,477 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,477 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,492 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 11:05:12,492 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,492 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +ms-vcpp-2008-sp1-mfc-redist_x86: + '9.0.30729.6161': + full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' + installer: 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe' + install_flags: '/qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,492 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,492 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,508 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 11:05:12,508 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,508 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,508 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +ms-vcpp-2010-sp1-mfc-redist_x64: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,508 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,508 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,523 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,523 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,523 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 11:05:12,523 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,523 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,523 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +ms-vcpp-2010-sp1-mfc-redist_x86: + '10.0.40219': + full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' + installer: 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe' + install_flags: '/q /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,523 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,523 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,539 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,539 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,539 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 11:05:12,539 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,539 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,539 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +ms-vcpp-2012-redist_x64: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: '%ProgramData%\Package Cache\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\vcredist_x64.exe' + uninstall_flags: '/quiet /uninstall /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,539 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,539 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,539 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,555 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 11:05:12,555 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,555 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +ms-vcpp-2012-redist_x86: + '11.0.61030.0': + full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' + installer: 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: '"%ProgramData%\Package Cache\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\vcredist_x86.exe"' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,555 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,571 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,571 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 11:05:12,571 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,571 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,571 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +ms-vcpp-2013-redist_x64: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,571 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,586 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 11:05:12,586 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,586 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +ms-vcpp-2013-redist_x86: + '12.0.30501.0': + full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' + installer: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,586 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,602 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.01612257957458496 +2020-03-06 11:05:12,602 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,602 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,602 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 11:05:12,617 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,617 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,617 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +ms-vcpp-2015-build-tools: + '14.0.25420.1': + full_name: 'Microsoft Visual C++ Build Tools' + installer: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + install_flags: '/Q /Silent /NoRestart' + uninstaller: 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe' + uninstall_flags: '/Q /U /Silent /NoRestart' + locale: en_US + reboot: False + +2020-03-06 11:05:12,617 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,617 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,617 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,617 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,617 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 11:05:12,633 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,633 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +ms-vcpp-2015-redist_x64: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} + # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} + +2020-03-06 11:05:12,633 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,633 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,648 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,648 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 11:05:12,648 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,648 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,648 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +ms-vcpp-2015-redist_x86: + '14.0.24215.1': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' + installer: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.24215 {e2803110-78b3-4664-a479-3611a381656a} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.24215 {d992c12e-cab2-426f-bde3-fb8c53950b0d} + '14.0.23026.0': + full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026' + installer: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} + # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} + +2020-03-06 11:05:12,648 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,663 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.015177011489868164 +2020-03-06 11:05:12,664 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,664 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,664 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 11:05:12,664 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,664 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,664 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +ms-vcpp-2017-redist_x64: + '14.20.27508.1': + full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + '14.20.27508': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508' + installer: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,664 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.01662898063659668 +2020-03-06 11:05:12,680 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,680 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,680 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 11:05:12,680 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,695 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.014637470245361328 +2020-03-06 11:05:12,695 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +ms-vcpp-2017-redist_x86: + '14.11.25325.0': + full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' + installer: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + install_flags: '/quiet /norestart' + uninstaller: 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe' + uninstall_flags: '/uninstall /quiet /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:12,695 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,695 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,695 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 11:05:12,711 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,711 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,711 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: + + + + +mucommander: + + '0.9.2': + full_name: 'muCommander (remove only)' + installer: 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe' + uninstaller: '%PROGRAMFILES(x86)%\muCommander\uninstaller.exe' + install_flags: '/S' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 11:05:12,711 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,711 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,727 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,727 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,727 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 11:05:12,727 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,727 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,727 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +mysql-essential: + '5.1.73': + full_name: 'MySQL Server 5.1' + + installer: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:12,727 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,743 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.016597747802734375 +2020-03-06 11:05:12,743 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,743 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,743 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 11:05:12,743 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,743 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,743 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +mysql-installer-community: + '1.4.3.0': + full_name: 'MySQL Installer - Community' + installer: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# +# Read for MySQL Server 5.6.23.0 Community installation instructions: +# https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html +# https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html + +2020-03-06 11:05:12,759 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,759 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,759 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,759 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,759 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 11:05:12,773 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,773 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +mysql-workbench-community: + + '8.0.15': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.14': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + '8.0.13': + full_name: 'MySQL Workbench 8.0 CE' + installer: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html + + +2020-03-06 11:05:12,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,789 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,789 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 11:05:12,789 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,804 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.015137910842895508 +2020-03-06 11:05:12,804 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +never10: + '1.3': + full_name: 'Never 10 (GRC)' + installer: 'https://www.grc.com/files/never10.exe' + install_flags: 'update delete disable' + uninstaller: '' + uninstall_flags: '' + msiexec: False + locale: en_US + reboot: False +# download it from https://www.grc.com/never10.htm + +2020-03-06 11:05:12,804 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,804 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:12,804 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,804 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,822 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 11:05:12,822 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,822 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,822 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +# Please note that per +# https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows +# the MSI uninstall does not remove files or settings, +# and the service must be stopped beforehand. +# +# So this uninstall is not going to work. + +newrelic-infra: + + '1.0.279': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.292': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.296': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.301': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.311': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.316': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.323': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.336': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.338': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.341': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.673': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.677': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.682': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.690': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.703': + full_name: 'New Relic Infrastructure Agent' + installer: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:12,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,840 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.01807546615600586 +2020-03-06 11:05:12,840 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,852 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,852 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 11:05:12,852 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,852 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,878 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +nextcloud-client: + + '2.2.3.4': + full_name: 'Nextcloud Client 2.2.3.4' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.2.4.2': + full_name: 'Nextcloud Client 2.2.4.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.1.8': + full_name: 'Nextcloud Client 2.3.1.8' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.2.1': + full_name: 'Nextcloud Client 2.3.2.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.3.3.1': + full_name: 'Nextcloud Client 2.3.3.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.0': + full_name: 'Nextcloud Client 2.5.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.1': + full_name: 'Nextcloud Client 2.5.1' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.2': + full_name: 'Nextcloud Client 2.5.2' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.5.3': + full_name: 'Nextcloud Client 2.5.3' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + '2.6.0': + full_name: 'Nextcloud Client 2.6.0' + installer: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + install_flags: '/S' + uninstaller: 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe' + uninstall_flags: '/S' + locale: en_US + reboot: False + + +2020-03-06 11:05:12,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,882 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.004395008087158203 +2020-03-06 11:05:12,882 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,882 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,882 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 11:05:12,898 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:12,898 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: + + +# just 32-bit x86 installer available + + + +nmap: + + '7.70': + full_name: 'Nmap 7.70' + installer: 'https://nmap.org/dist/nmap-7.70-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '7.60': + full_name: 'Nmap 7.60' + installer: 'https://nmap.org/dist/nmap-7.60-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Nmap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:12,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,914 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.016377687454223633 +2020-03-06 11:05:12,914 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:12,914 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:12,914 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 11:05:12,914 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:12,930 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.01549983024597168 +2020-03-06 11:05:12,930 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +node.js-lts: + + '12.13.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.17.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.11.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '6.9.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:12,992 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:12,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0619046688079834 +2020-03-06 11:05:12,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,007 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,007 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 11:05:13,007 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0160064697265625 +2020-03-06 11:05:13,023 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +node.js: + + '13.1.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.6.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '12.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '11.14.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '10.15.3': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + uninstaller: 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '9.11.2': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + uninstaller: 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.16.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.10.1': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '7.0.0': + full_name: 'Node.js' + + installer: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + uninstaller: 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:13,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,039 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,039 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,039 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 11:05:13,039 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,055 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.016135692596435547 +2020-03-06 11:05:13,055 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +nomacs: + + '3.8.0': + full_name: 'nomacs - Image Lounge' + installer: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:13,055 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,055 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,055 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,071 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,071 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 11:05:13,071 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,087 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.016187429428100586 +2020-03-06 11:05:13,087 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +# just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. + + + +npp: + + + '7.7.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.6.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.9': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.8': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.7': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.6': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.5': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.4': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.3': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.5.1': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + '7.4.2': + full_name: 'Notepad++ (32-bit x86)' + installer: 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Notepad++\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +# the 64-bit installer is available from: +# https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe + +2020-03-06 11:05:13,087 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,101 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.014124155044555664 +2020-03-06 11:05:13,101 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,101 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,101 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 11:05:13,117 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,117 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,134 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +nsclient: + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2039': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.2029': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1046': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.1044': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + # versions prior to 0.5.xxxx had 3 dots + + + + '0.5.0062': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.23': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.4.19': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.143': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + + + + + + '0.4.3.88': + + full_name: 'NSClient++ (x64)' + installer: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + uninstaller: 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:13,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,134 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,134 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,148 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,148 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 11:05:13,148 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,165 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.01658177375793457 +2020-03-06 11:05:13,165 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +# Define versions + + +nsis: + + + '2.51': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.50': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.49': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.48': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.47': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.46': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0b2': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0b1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.03': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02.1': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.02': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.01': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0': + full_name: 'Nullsoft Install System' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + install_flags: '/S' + + uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' + + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:13,165 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,165 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,165 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,180 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,180 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 11:05:13,196 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.014869928359985352 +2020-03-06 11:05:13,211 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +# Install Meinberg NTP daemon for Windows +# Note: To do a silent installation, this installer needs a setup file named +# setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. +# The file is documented at +# https://www.meinberg.de/german/sw/readme-ntpinstaller.htm#unattended + + + +ntp: + + '4.2.8p13': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p12': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.2.8p11': + full_name: 'Network Time Protocol' + installer: 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe' + install_flags: '/USE_FILE=C:\\ProgramData\\NTP\\setup.ini' + uninstaller: '%ProgramFiles(x86)%\\NTP\\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:13,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,228 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,228 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,228 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 11:05:13,228 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,242 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.014539003372192383 +2020-03-06 11:05:13,259 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: + + + +nunit-console: + + + '3.7.0': + full_name: 'NUnit Console 3.7.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.8.0': + full_name: 'NUnit Console 3.8.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '3.9.0': + full_name: 'NUnit Console 3.9.0' + + + + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + +2020-03-06 11:05:13,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:05:13,259 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,273 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,273 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,273 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 11:05:13,273 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,273 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,288 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +nxlog: + '2.10.2150': + full_name: 'NXLog-CE' + installer: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + install_flags: '/quiet /norestart' + uninstaller: 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:13,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,288 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,288 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,288 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,288 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 11:05:13,304 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,304 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,304 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +octopus-tentacle: + 'latest': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://octopus.com/downloads/latest/OctopusTentacle64' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://octopus.com/downloads/latest/OctopusTentacle64' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.17': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.16': + full_name: 'Octopus Deploy Tentacle' + installer: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:13,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,321 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,321 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,321 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,321 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 11:05:13,336 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,336 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,336 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +# Source: http://openlp.org/ +# just 32-bit x86 installer available + + + + +openlp: + + '2.4.6': + full_name: 'OpenLP 2.4.6' + installer: 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + full_name: 'OpenLP 2.2.1' + installer: 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe' + install_flags: '/SP- /VERYSILENT /NORESTART' + uninstaller: '%ProgramFiles(x86)%\OpenLP\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:13,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,352 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.015663623809814453 +2020-03-06 11:05:13,352 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,352 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,352 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 11:05:13,352 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,352 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,367 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +openoffice: + '4.1.2': + full_name: 'OpenOffice 4.1.2' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart' + msiexec: False + locale: en_US + reboot: False + '4.1.1': + full_name: 'OpenOffice 4.1.1' + installer: 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe' + install_flags: '/S' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart' + msiexec: False + locale: en_US + reboot: False +# +# for other languages replace the two occurrences of 'en-US' +# in the download URL with your local two or four letter code below: +# +# 'el', 'en-GB', 'es', 'eu', 'ca', +# 'ca-XR', 'ca-XV', 'cs', 'ru', 'zh-CN', +# 'zh-TW', 'vi', 'ta', 'th', 'tr', 'sk', +# 'sl', 'sr', 'sv', 'pl', 'pt', 'pt-BR', +# 'nb', 'nl', 'lt', 'km', 'ko', 'ja', +# 'it', 'he', 'hi', 'hu', 'gd', 'gl', +# 'fi', 'fr', 'da', 'de', 'bg', 'ast' +# + +2020-03-06 11:05:13,367 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,367 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,367 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 11:05:13,367 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,384 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.016687870025634766 +2020-03-06 11:05:13,384 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +openvpn: + +# Combined installer since v2.4+ so no arch needed + + '2.4.7-I607-Win7': + full_name: 'OpenVPN 2.4.7-I607-Win7 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win7.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.6-I602': + full_name: 'OpenVPN 2.4.6-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.5-I601': + full_name: 'OpenVPN 2.4.5-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.4-I601': + full_name: 'OpenVPN 2.4.4-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I602': + full_name: 'OpenVPN 2.4.3-I602 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.4.3-I601': + full_name: 'OpenVPN 2.4.3-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + + '2.3.17-I601': + full_name: 'OpenVPN 2.3.17-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.12-I601': + full_name: 'OpenVPN 2.3.12-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.11-I601': + full_name: 'OpenVPN 2.3.11-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.10-I603': + full_name: 'OpenVPN 2.3.10-I603 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.8-I601': + full_name: 'OpenVPN 2.3.8-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.3.6-I601': + full_name: 'OpenVPN 2.3.6-I601 ' # Note: the OpenVPN installer adds a space at the end of its install string + installer: 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe' + install_flags: '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1' + uninstaller: '%ProgramFiles%\OpenVPN\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +# +# https://chocolatey.org/packages/openvpn +# Install with the following options: +# /SELECTSHORTCUTS=1 - create the start menu shortcuts +# /SELECTOPENVPN=1 - OpenVPN itself +# /SELECTSERVICE=1 - install the OpenVPN service +# /SELECTTAP=1 - install the TAP device driver +# /SELECTOPENVPNGUI=1 - install the default OpenVPN GUI +# /SELECTASSOCIATIONS=1 - associate with .ovpn files +# /SELECTOPENSSLUTILITIES=1 - install the utilities for generating public-private key pairs +# /SELECTEASYRSA=1 - install the RSA X509 certificate management scripts +# /SELECTPATH=1 - add openvpn.exe in PATH +# /SELECTOPENSSLDLLS=1 - dependencies - OpenSSL DLL's +# /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's +# /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's + +2020-03-06 11:05:13,399 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win7', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win7 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win7.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,399 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,399 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,399 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,399 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 11:05:13,414 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,414 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,414 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +# Performant endpoint visibility https://osquery.io/ + + + +osquery: + + '3.3.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.3.0': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.6': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '3.2.4': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '2.11.2': + full_name: 'osquery' + installer: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 11:05:13,429 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:05:13,429 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,429 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,429 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,429 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 11:05:13,429 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,445 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.015617609024047852 +2020-03-06 11:05:13,445 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +# just 32-bit x86 installer available + + + + + + + + + +ossec-agent: + + + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:13,445 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,461 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.016100406646728516 +2020-03-06 11:05:13,461 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,461 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,461 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 11:05:13,461 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,477 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.015718698501586914 +2020-03-06 11:05:13,477 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +owncloud: + + + + + '2.2.4.6408': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2.6192': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1.6146': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0.6076': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.1.1.5837': + full_name: 'ownCloud' + installer: 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ownCloud\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:13,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,477 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,477 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,477 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,477 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 11:05:13,492 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,492 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +pandoc: + '1.17.0.2': + full_name: 'Pandoc 1.17.0.2' + installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:13,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,507 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.015575408935546875 +2020-03-06 11:05:13,507 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,507 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,507 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 11:05:13,524 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,524 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,524 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +parallels-client-15: + '15.0.3869': + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + uninstaller: 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# The latest RAS clients can be downloaded for FREE from: +# https://www.parallels.com/uk/products/ras/download/links/ + +2020-03-06 11:05:13,524 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,524 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,524 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,539 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,539 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 11:05:13,539 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,539 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,539 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +pass4win: + '1.2.3.7': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + '1.2.1.9': + full_name: 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.' + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + installer: 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe' + + uninstaller: '"{ PROGRAM_FILES }\Pass4Win\uninstall.exe"' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:13,555 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,555 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 11:05:13,555 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,571 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +passware-kit-agent: + '13.1.7657': + full_name: 'Passware Kit Agent (64-bit)' + installer: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:13,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,571 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,571 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,571 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,571 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 11:05:13,571 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.015484094619750977 +2020-03-06 11:05:13,586 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +passware-kit-forensic: + '13.1.7657': + full_name: 'Passware Kit Forensic (64-bit)' + installer: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + install_flags: '/qn /norestart' + uninstaller: 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:13,586 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,586 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 11:05:13,586 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,601 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.01504659652709961 +2020-03-06 11:05:13,601 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +# Source: https://patchmypc.net/ +patchmypc-free: + '3.0.1.1': + full_name: 'PatchMyPC' + installer: 'https://patchmypc.net/freeupdater/PatchMyPC.exe' + install_flags: | + ' & cmd /c taskkill /F /IM PatchMyPC.exe & + xcopy /q /c /r /y "c:\salt\var\cache\salt\minion\extrn_files\base\patchmypc.net\freeupdater\PatchMyPC.exe" "%SystemRoot%" & + exit 0' + uninstaller: 'cmd' + uninstall_flags: | + '/c taskkill /F /IM PatchMyPC.exe & + del /q /f "%SystemRoot%"\PatchMyPC.exe & + exit 0' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:13,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,601 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,601 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,623 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,623 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 11:05:13,623 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,623 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,634 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +pdf24creator: + + '8.8.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.8.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.2': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.7.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.1': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.6.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '8.5.0': + full_name: 'PDF24 Creator' + installer: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + install_flags: 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn' + uninstaller: 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +# Source: https://en.pdf24.org/ +# Packagin info Source: https://chocolatey.org/packages/pdf24 + +2020-03-06 11:05:13,634 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,634 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,634 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,634 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,634 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 11:05:13,650 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,650 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,650 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +# just 32-bit x86 installer available + + + +pdfcreator: + '2.5.0': + full_name: 'PDFCreator' + installer: 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe' + install_flags: '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-' + uninstaller: '%ProgramFiles(x86)%\PDFCreator\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:13,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,650 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,650 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,668 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,668 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 11:05:13,680 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,680 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +peazip: + '6.0.0': + + full_name: 'PeaZip 6.0.0 (WIN64)' + installer: 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles%\PeaZip\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:13,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,695 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 11:05:13,695 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,711 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.01580357551574707 +2020-03-06 11:05:13,711 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: + + + + +pgadmin4: + + '2.1': + full_name: 'pgAdmin 4 version 2.1' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0': + full_name: 'pgAdmin 4 version 2.0' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v2\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6': + full_name: 'pgAdmin 4 version 1.6' + installer: 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe' + install_flags: '/SP- /verysilent /norestart' + + uninstaller: '%ProgramFiles(x86)%\pgAdmin 4\v1\unins000.exe' + + uninstall_flags: '/verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:13,711 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,730 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.018899917602539062 +2020-03-06 11:05:13,730 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,730 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,730 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 11:05:13,745 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,745 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,745 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +pgina: + '3.1.8.0': + full_name: 'pGina v3.1.8.0' + installer: 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe' + install_flags: '/silent ' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:13,745 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,745 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,758 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,758 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,758 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 11:05:13,758 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,758 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,773 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: + +# just 32-bit x86 installer available + + + +pidgin: + + '2.12.0': + full_name: 'Pidgin' + installer: 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Pidgin\pidgin-uninst.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:13,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,773 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 11:05:13,789 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,789 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,789 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +# Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: +# salt mid pkg.install postgresql version='"9.6"' + + + +postgresql: + '9.6': + full_name: 'PostgreSQL 9.6 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.6\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.5': + full_name: 'PostgreSQL 9.5 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.5\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.4': + full_name: 'PostgreSQL 9.4 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.4\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + '9.3': + full_name: 'PostgreSQL 9.3 ' + installer: 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe' + install_flags: ' --unattendedmodeui minimal --mode unattended --superpassword postgres' + uninstaller: '%ProgramFiles%\PostgreSQL\9.3\uninstall-postgresql.exe' + uninstall_flags: ' --mode unattended' + locale: en_US + msiexec: False + reboot: False + + +2020-03-06 11:05:13,789 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:05:13,805 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.016380786895751953 +2020-03-06 11:05:13,805 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,805 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,805 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 11:05:13,820 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,836 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +### NOTE: You must accept the PowerBI Desktop EULA by setting the +### Pillar key `powerbi:desktop:accept_eula` to `True` in order to +### install this package. You can find a copy of the EULA at +### https://powerbi.microsoft.com/en-us/desktop-eula/. + +powerbi-desktop: + ## version 4.0.1 - https://www.microsoft.com/en-us/download/details.aspx?id=45331 + '2.59.5135.421': &powerbi-desktop + full_name: + "Microsoft PowerBI Desktop (x64)" + installer: &msi401 + "https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi" + install_flags: &flags + /qn + /norestart + ACCEPT_EULA=0 + uninstaller: *msi401 + uninstall_flags: *flags + msiexec: True + reboot: False + +2020-03-06 11:05:13,836 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:05:13,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,836 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,836 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,851 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 11:05:13,851 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,851 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:13,851 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +#PowerShell Core https://github.com/PowerShell/PowerShell + + + +powershell-core: + + '6.1.3.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.2.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.1.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.1.0.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '6.0.5.0': + + full_name: 'PowerShell 6-x64' + installer: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + uninstaller: 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + +2020-03-06 11:05:13,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:05:13,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,883 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 11:05:13,883 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.015523672103881836 +2020-03-06 11:05:13,898 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +# Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems +# WMI Exporter: https://github.com/martinlindhe/wmi_exporter +# Prometheus Monitoring: https://prometheus.io/ + +prometheus-wmi-exporter: + + '0.9.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.8.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.7.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.6.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.5.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.4': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.4.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.3': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.2': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.1': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.3.0': + full_name: 'WMI Exporter' + + installer: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + uninstaller: 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:13,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,914 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.015237569808959961 +2020-03-06 11:05:13,914 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,914 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,914 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 11:05:13,930 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,946 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.01597738265991211 +2020-03-06 11:05:13,946 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +putty: + + '0.73.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi' + + full_name: 'PuTTY release 0.73 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.72.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi' + + full_name: 'PuTTY release 0.72 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.71.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi' + + full_name: 'PuTTY release 0.71 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.70.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi' + + full_name: 'PuTTY release 0.70 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.69.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi' + + full_name: 'PuTTY release 0.69 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + '0.68.0.0': + + + installer: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + uninstaller: 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi' + + full_name: 'PuTTY release 0.68 (64-bit)' + install_flags: '/qn' + uninstall_flags: '/qn' + msiexec: True + locale: en_US + reboot: False + + + + + + '0.67': + full_name: 'PuTTY release 0.67' + installer: 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.66': + full_name: 'PuTTY release 0.66' + installer: 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.65': + full_name: 'PuTTY release 0.65' + installer: 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + '0.64': + full_name: 'PuTTY release 0.64' + installer: 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\PuTTY\unins000.exe' + uninstall_flags: '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:13,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,946 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:13,962 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:13,962 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:13,976 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 11:05:13,976 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:13,993 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.016451597213745117 +2020-03-06 11:05:13,993 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +python2_x64: + + + + + '2.7.1150': + full_name: 'Python 2.7.1 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16 (64-bit)' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + install_flags: '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:13,993 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:13,993 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,007 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,007 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,007 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 11:05:14,023 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,039 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +python2_x86: + + + + + '2.7.1150': + full_name: 'Python 2.7.1' + installer: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.2150': + full_name: 'Python 2.7.2' + installer: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.3150': + full_name: 'Python 2.7.3' + installer: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.4150': + full_name: 'Python 2.7.4' + installer: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.5150': + full_name: 'Python 2.7.5' + installer: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.6150': + full_name: 'Python 2.7.6' + installer: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.7150': + full_name: 'Python 2.7.7' + installer: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.8150': + full_name: 'Python 2.7.8' + installer: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.9150': + full_name: 'Python 2.7.9' + installer: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.10150': + full_name: 'Python 2.7.10' + installer: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.11150': + full_name: 'Python 2.7.11' + installer: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.12150': + full_name: 'Python 2.7.12' + installer: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.13150': + full_name: 'Python 2.7.13' + installer: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.14150': + full_name: 'Python 2.7.14' + installer: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.15150': + full_name: 'Python 2.7.15' + installer: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + + '2.7.16150': + full_name: 'Python 2.7.16' + installer: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + install_flags: '/qn /norestart ALLUSERS=1' + uninstaller: 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:14,039 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,039 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,039 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,054 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,054 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 11:05:14,054 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,071 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.016584396362304688 +2020-03-06 11:05:14,071 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: + + +python3_x64: + + '3.8.150.0': + full_name: 'Python 3.8.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.4150.0': + full_name: 'Python 3.7.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 Core Interpreter (64-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:14,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,086 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.015540361404418945 +2020-03-06 11:05:14,086 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,086 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,086 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 11:05:14,101 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,101 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,118 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: + + +python3_x86: + + '3.7.4150.0': + full_name: 'Python 3.7.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.3150.0': + full_name: 'Python 3.7.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.7.150.0': + full_name: 'Python 3.7.0 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.8150.0': + full_name: 'Python 3.6.8 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.6.6150.0': + full_name: 'Python 3.6.6 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.4150.0': + full_name: 'Python 3.5.4 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.2150.0': + full_name: 'Python 3.5.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + '3.5.1150.0': + full_name: 'Python 3.5.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + install_flags: '/quiet InstallAllUsers=1' + uninstaller: 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe' + uninstall_flags: '/quiet /uninstall' + msiexec: False + locale: en_US + reboot: False + + + '3.4.3150': + full_name: 'Python 3.4.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.2150': + full_name: 'Python 3.4.2 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.4.1150': + full_name: 'Python 3.4.1 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3150': + full_name: 'Python 3.3.3 (32-bit)' + installer: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:14,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,118 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,133 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,133 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,133 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 11:05:14,133 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,133 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,149 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +qemu: + '2018.05.19': + full_name: 'QEMU' + installer: 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe' + uninstaller: '%PROGRAMFILES%\qemu\qemu-uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,149 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,149 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,149 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,149 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,149 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 11:05:14,164 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,180 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.015702009201049805 +2020-03-06 11:05:14,180 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: + + + + +queueexplorerpro: + '4.1.5': + full_name: 'QueueExplorer Professional 4.1.5' + installer: 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\QueueExplorer Professional\unins000.exe' + uninstall_flags: '/SILENT' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,180 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,196 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,196 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,196 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 11:05:14,196 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.01570725440979004 +2020-03-06 11:05:14,211 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +quicktime: + '7.79.80.95': + full_name: 'QuickTime 7' + #installer: 'https://secure-appldnld.apple.com/quicktime/031-27600-20150820-F20FB1EF-6710-46BD-99B3-7DCF1253B310/QuickTimeInstaller.exe' + installer: 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe' + + uninstall_flags: | + '/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart & + msiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart & + msiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart & + msiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart & + exit 0' + + install_flags: '/quiet /qn /norestart' + uninstaller: 'msiexec.exe' + msiexec: False + locale: en_US + reboot: False + # the above uninstalls: + # Apple Software Update v. 2.1.4.131 {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} + # Apple Application Support v. 4.1.2 {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} + # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} + # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} + +2020-03-06 11:05:14,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,227 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 11:05:14,227 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,227 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,242 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: + +rabbitmq: + + '3.6.9': + full_name: 'RabbitMQ Server 3.6.9' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.7.7': + full_name: 'RabbitMQ Server 3.7.7' + installer: 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe' + install_flags: '/S' + uninstaller: 'C:\Program Files\RabbitMQ Server\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:14,242 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,242 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,258 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,258 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,258 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 11:05:14,273 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,273 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,273 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +rakudo-star_x86: + '1.0.0': + full_name: 'Rakudo Star 2016.01' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:14,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,290 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.01711249351501465 +2020-03-06 11:05:14,290 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,290 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,290 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 11:05:14,305 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,305 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,338 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +rakudo-star_x64: + '1.0.0': + full_name: 'Rakudo Star 2016.04' + installer: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + install_flags: '/qn /norestart' + uninstaller: 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:14,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,338 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,351 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,351 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,351 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 11:05:14,351 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,367 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.016295194625854492 +2020-03-06 11:05:14,367 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +rasclient: + + '16': + + + full_name: 'Parallels Client-64 bit' + installer: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + uninstaller: 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:14,367 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,383 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.01568317413330078 +2020-03-06 11:05:14,383 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,383 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,383 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 11:05:14,398 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,398 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +rdcman: + '2.7.14060': + full_name: 'Remote Desktop Connection Manager' + installer: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + install_flags: 'ALLUSERS=1 /quiet /norestart' + uninstaller: 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:14,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,414 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.01613640785217285 +2020-03-06 11:05:14,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,414 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 11:05:14,430 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,430 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: + + +rocketchat: + + '2.13.1': + full_name: 'Rocket.Chat+ 2.13.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.13.0': + full_name: 'Rocket.Chat+ 2.13.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.12.0': + full_name: 'Rocket.Chat+ 2.12.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.5': + full_name: 'Rocket.Chat+ 2.10.5' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.4': + full_name: 'Rocket.Chat+ 2.10.4' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.3': + full_name: 'Rocket.Chat+ 2.10.3' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.2': + full_name: 'Rocket.Chat+ 2.10.2' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.10.1': + full_name: 'Rocket.Chat+ 2.10.1' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + '2.9.0': + full_name: 'Rocket.Chat+ 2.9.0' + installer: 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe' + install_flags: '/S /allusers' + uninstaller: '%ProgramFiles%\rocketchat\Uninstall Rocket.Chat+.exe' + uninstall_flags: '/S /allusers' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:14,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,446 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.015689611434936523 +2020-03-06 11:05:14,446 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,446 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,461 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 11:05:14,461 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,461 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,461 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +rubyinstaller_x64: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647-x64' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200-x64\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:14,476 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,476 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,476 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,476 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,476 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 11:05:14,476 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.015636205673217773 +2020-03-06 11:05:14,492 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +rubyinstaller_x86: + + '2.2.3-p173': + full_name: 'Ruby 2.2.3-p173' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby22\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.1.7-p400': + full_name: 'Ruby 2.1.7-p400' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby21\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '2.0.0-p647': + full_name: 'Ruby 2.0.0-p647' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby200\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '1.9.3-p551': + full_name: 'Ruby 1.9.3-p551' + installer: 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe' + install_flags: '/verysilent' + uninstaller: 'C:\Ruby193\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:14,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,507 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,507 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,507 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 11:05:14,507 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,524 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.01679086685180664 +2020-03-06 11:05:14,524 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Salt added support for Py3 with 2017.7.0. As a result, the package names have +# changed to denote the Python version included with the install. So add new +# versions of the 2017.7 branch here. Versions from older branches will be +# added below. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion: + + '3000': + full_name: 'Salt Minion 3000' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Add versions from older branches here: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + '2016.11.10': + full_name: 'Salt Minion 2016.11.10' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.9': + full_name: 'Salt Minion 2016.11.9' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.8': + full_name: 'Salt Minion 2016.11.8' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.7': + full_name: 'Salt Minion 2016.11.7' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.6': + full_name: 'Salt Minion 2016.11.6' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.5': + full_name: 'Salt Minion 2016.11.5' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.4': + full_name: 'Salt Minion 2016.11.4' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.3': + full_name: 'Salt Minion 2016.11.3' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.2': + full_name: 'Salt Minion 2016.11.2' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.1': + full_name: 'Salt Minion 2016.11.1' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2016.11.0': + full_name: 'Salt Minion 2016.11.0' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe' + + + #install_flags: '/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}' + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 11:05:14,524 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 11:05:14,539 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.01479792594909668 +2020-03-06 11:05:14,539 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,539 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,539 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 11:05:14,539 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,554 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.015283584594726562 +2020-03-06 11:05:14,554 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# This software definition will only work in versions of Salt newer than +# 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which +# allowed us to launch the installer using the Windows task manager. +# This option is not available in earlier versions of Salt. So, while this +# software definition will allow you to install versions of Salt older than +# 2015.8.2 you will not be able to use pkg.install to upgrade Salt again. You +# will have to upgrade Salt through another means. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +salt-minion-py3: + + '3000': + full_name: 'Salt Minion 3000 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.3': + full_name: 'Salt Minion 2019.2.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.2': + full_name: 'Salt Minion 2019.2.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.1': + full_name: 'Salt Minion 2019.2.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2019.2.0': + full_name: 'Salt Minion 2019.2.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.5': + full_name: 'Salt Minion 2018.3.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.4': + full_name: 'Salt Minion 2018.3.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.3': + full_name: 'Salt Minion 2018.3.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.2': + full_name: 'Salt Minion 2018.3.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.1': + full_name: 'Salt Minion 2018.3.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2018.3.0': + full_name: 'Salt Minion 2018.3.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.8': + full_name: 'Salt Minion 2017.7.8 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.7': + full_name: 'Salt Minion 2017.7.7 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.6': + full_name: 'Salt Minion 2017.7.6 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.5': + full_name: 'Salt Minion 2017.7.5 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.4': + full_name: 'Salt Minion 2017.7.4 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.3': + full_name: 'Salt Minion 2017.7.3 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.2': + full_name: 'Salt Minion 2017.7.2 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.1': + full_name: 'Salt Minion 2017.7.1 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + '2017.7.0': + full_name: 'Salt Minion 2017.7.0 (Python 3)' + + installer: 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe' + + + # install_flags: "/S /master={{ salt['pillar.get']('salt:master', 'salt.domain.tld') }} /minion-id={{ salt['pillar.get']('salt:minion:ids:' ~ grains['host'] }}" + + install_flags: '/S' + uninstaller: 'C:\salt\uninst.exe' + uninstall_flags: '/S' + refresh: true + msiexec: False + use_scheduler: True + reboot: False + + + +2020-03-06 11:05:14,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) +2020-03-06 11:05:14,571 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.016168594360351562 +2020-03-06 11:05:14,571 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,571 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,571 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 11:05:14,586 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,586 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +sandboxie: + '4.20': + + full_name: 'Sandboxie 4.20 (64-bit)' + installer: 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe' + uninstaller: 'C:\Windows\Installer\SandboxieInstall64.exe' + + install_flags: '/S' + uninstall_flags: '/remove' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,586 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,601 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,601 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 11:05:14,601 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,601 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,601 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +scaleout: + latest: + + full_name: 'ScaleOut StateServer x64 Edition' + installer: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + uninstaller: 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi' + + install_flags: '/quiet' + uninstall_flags: '/quiet' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:14,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,617 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.015649080276489258 +2020-03-06 11:05:14,617 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,617 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,617 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 11:05:14,633 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,633 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +# just 32-bit x86 installer available + + + +secunia.psi: + '3.0.0.10004': + full_name: 'Secunia PSI' + installer: 'http://secunia.com/PSISetup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Secunia\PSI\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,633 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,649 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,649 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,649 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 11:05:14,649 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,665 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.015540122985839844 +2020-03-06 11:05:14,665 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: + + + + + + +sensu: + + '1.4.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.0.2': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.28.4': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.5': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.26.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '0.25.3': + full_name: 'Sensu' + installer: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:14,665 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.015225887298583984 +2020-03-06 11:05:14,680 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,680 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,680 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 11:05:14,696 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,696 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,696 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +sharpdevelop: + '5.1.5134': + full_name: 'SharpDevelop 5.1 RC' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '4.4.9749': + full_name: 'SharpDevelop 4.4' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.2.6466': + full_name: 'SharpDevelop 3.2.1' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '2.2.2648': + full_name: 'SharpDevelop 2.2' + installer: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:14,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,711 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.014698982238769531 +2020-03-06 11:05:14,711 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,711 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,711 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 11:05:14,711 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,726 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.015636205673217773 +2020-03-06 11:05:14,726 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +# just 32-bit x86 installer available + + + +skitch: + '2.3.2.176': + full_name: 'Skitch' + installer: 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe' + install_flags: '--mode unattended' + uninstaller: '%ProgramFiles(x86)%\Evernote\Skitch\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,726 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,726 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,726 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,726 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,742 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 11:05:14,742 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,742 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,742 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +skype-msi: + '7.41.101': + full_name: 'Skypeâ„¢ 7.41' + installer: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.151': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.40.103': + full_name: 'Skypeâ„¢ 7.40' + installer: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + install_flags: '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst' + uninstaller: 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# you can always get latest msi from: +# http://www.skype.com/go/getskype-msi (but version number keeps increasing) +# +# for explanation of silent switches read: +# http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 +# you can also check microsite http://skype.techygeekshome.info/ + +2020-03-06 11:05:14,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,742 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,757 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,757 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,757 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 11:05:14,757 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.015627384185791016 +2020-03-06 11:05:14,773 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +# just 32-bit x86 installer available + + + + +skype: + '8.31': + full_name: 'Skype version 8.31' + installer: 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe' + install_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\Microsoft\Skype for Desktop\unins000.exe' + uninstall_flags: '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:14,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,789 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,789 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 11:05:14,789 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,789 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,789 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +#MSI machine-wide deployment package +#The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. +#It is multi-client-capable, meaning that it can be used by multiple users on one machine, +#keeping their profiles separately in %ROAMINGAPPDATA%. Using this method, Slack will not receive automatic updates. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-machine-msi: + + '3.3.7.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.6.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.3.3.0': + full_name: 'Slack' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:14,789 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,805 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.016116857528686523 +2020-03-06 11:05:14,805 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,805 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,805 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 11:05:14,805 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,805 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,820 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +#MSI for per-user deployment package +#The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. +#The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. +#https://get.slack.help/hc/en-us/articles/212475728-Deploy-Slack-via-Microsoft-Installer + +slack-user-msi: + latest: + full_name: 'Slack Machine-Wide Installer' + + installer: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + uninstaller: 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:14,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,820 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 11:05:14,820 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.015119314193725586 +2020-03-06 11:05:14,836 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +slack: + 3.4.0: + full_name: Slack + installer: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + install_flags: '/qn /norestart' + uninstaller: https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 11:05:14,836 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:05:14,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,836 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,836 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,836 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 11:05:14,836 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,853 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.01710367202758789 +2020-03-06 11:05:14,853 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +# just 32-bit x86 installer available + + + +smartmontools: + '6.4 2015-06-04 r4109 (sf-6.4-1)': + full_name: 'smartmontools' + installer: 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\smartmontools\uninst-smartmontools.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,853 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,853 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,853 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,853 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,867 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 11:05:14,867 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,867 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +# just 32-bit x86 installer available + + + +snmptools: + 'Not Found': + full_name: 'SnmpTools 2' + installer: 'https://erwan.labalec.fr/snmptools/snmptools32.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\SnmpTools\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,883 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 11:05:14,883 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,883 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,898 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: + +soapui: + + '5.4.0': + full_name: 'SoapUI 5.4.0 5.4.0' + + installer: 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe' + + install_flags: '-q' + uninstaller: '%ProgramFiles%\SmartBear\SoapUI-5.4.0\uninstall.exe' + uninstall_flags: '-q' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:14,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,898 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,898 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 11:05:14,914 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,914 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,914 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +# just 32-bit x86 installer available + + + +# Source: http://software.informer.com/ +software-informer: + 'Not Found': + full_name: 'Software Informer' + installer: 'https://files.informer.com/siinst.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + uninstaller: '%ProgramFiles(x86)%\Software Informer\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,914 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,930 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.016495943069458008 +2020-03-06 11:05:14,930 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,930 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,930 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 11:05:14,945 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,945 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,945 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +sourcetree: + + '2.3.1.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.2.4.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.11.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.1.2.5': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.0.20.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.10.23.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + + + '1.9.13.7': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.10.0': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.9.20': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.9.6.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.8.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.7.0.32509': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.6.25': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.5.2': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.4.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.3.3': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.2.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.1.1': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.0.8': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + '0.9.4': + full_name: 'SourceTree' + installer: 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe' + install_flags: '/exenoui /qn /norestart' + uninstaller: 'msiexec.exe' + uninstall_flags: '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:14,961 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,961 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.016124725341796875 +2020-03-06 11:05:14,961 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,976 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:14,976 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 11:05:14,976 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:14,976 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:14,976 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +# just 32-bit x86 installer available + + + +spybot-anti-beacon: + '1.6': + full_name: 'Spybot Anti-Beacon' + installer: 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot Anti-Beacon\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:14,993 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:14,993 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:14,993 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:14,993 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,008 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 11:05:15,008 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,008 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,023 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +# just 32-bit x86 installer available + + + +# Source: http://www.safer-networking.org/ +spybot: + '2.4': + full_name: 'Spybot - Search & Destroy' + installer: 'http://spybotupdates.com/files/spybot-2.4.exe' + install_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + uninstaller: '%ProgramFiles(x86)%\Spybot - Search & Destroy 2\unins000.exe' + uninstall_flags: '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-' + msiexec: False + locale: en_US + reboot: False +# alternative download URLs +# http://www.spybotupdates.biz/files/spybot-2.4.exe +# http://spybot-mirror.com/files/spybot-2.4.exe + +2020-03-06 11:05:15,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,023 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,023 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,023 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,023 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 11:05:15,039 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,039 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,039 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +# -*- coding: utf-8 -*- +# vim: ft=sls + + + +sscserv-free: + + '3.6.1': + full_name: 'SSC Serv 3.6.1 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '3.5.0': + full_name: 'SSC Serv 3.5.0 Free Edition' + installer: 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%PROGRAMFILES%\SSC Serv\unins000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:15,039 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,056 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.017086029052734375 +2020-03-06 11:05:15,056 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,056 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,056 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 11:05:15,056 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,071 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.015491962432861328 +2020-03-06 11:05:15,071 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +steam: + latest: + full_name: 'Steam' + installer: 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe' + install_flags: '/S' + uninstaller: + "C:\\Program Files (x86)\\Steam\\uninstaller.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 11:05:15,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,071 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,071 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,071 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,071 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 11:05:15,086 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,086 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,086 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +stellarium: + '0.16.1': + full_name: 'Stellarium 0.16.1' + + installer: 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe' + + install_flags: '/silent' + uninstaller: '%ProgramFiles%\Stellarium\unins000.exe' + uninstall_flags: '/silent' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,101 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.01507115364074707 +2020-03-06 11:05:15,101 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,101 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,101 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 11:05:15,101 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,101 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,118 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +strawberryperl_x64: + + '5.26.1001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl (64-bit)' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:15,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,118 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,118 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,118 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,118 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 11:05:15,133 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,133 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,133 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +strawberryperl_x86: + + '5.26.1001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '5.24.3001': + full_name: 'Strawberry Perl' + installer: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + uninstaller: 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi' + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:15,133 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,133 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,149 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,149 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,149 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 11:05:15,149 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,149 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,164 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +# just 32-bit x86 installer available + + + +stunnel: + '5.30': + full_name: 'stunnel installed for AllUsers' + installer: 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\stunnel\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,164 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,164 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,164 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,164 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,164 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 11:05:15,164 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,164 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,180 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +subinacl: + '5.2.3790.1164': + full_name: 'Windows Resource Kit Tools - SubInAcl.exe' + installer: 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:15,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,180 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,180 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,180 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,180 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 11:05:15,196 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,196 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,196 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: + + + +sumatrapdf: + '3.1.2': + full_name: 'SumatraPDF' + installer: 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe' + install_flags: '/s /opt' + uninstaller: '%ProgramFiles%\SumatraPDF\uninstall.exe' + uninstall_flags: '/s' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,196 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,196 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,196 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,211 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,211 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 11:05:15,211 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,211 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +svn: + '1.8.13': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '1.8.11': + full_name: 'Subversion' + installer: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + install_flags: '/quiet' + uninstaller: 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:15,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,211 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,227 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,227 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,227 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 11:05:15,227 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,227 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,242 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer: + latest: + full_name: 'TeamViewer 14' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,242 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,242 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,242 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,242 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,242 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 11:05:15,258 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,258 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,274 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +# just 32-bit x86 installer available + + + + + + + +teamviewer_host: + latest: + full_name: 'TeamViewer 14 Host' + installer: 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\TeamViewer\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,274 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,274 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,274 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,274 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,274 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 11:05:15,289 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,289 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,289 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +# just 32-bit x86 installer available + + + +teracopy: + 'Not Found': + full_name: 'TeraCopy 2.3' + installer: 'http://storage.googleapis.com/codesector/teracopy.exe' + install_flags: | + '/SP- /verysilent /suppressmsgboxes /norestart & + reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TeraCopy_is1 /v DisplayVersion /d 2.3 & + exit 0' + uninstaller: '%ProgramFiles(x86)%\TeraCopy\unins000.exe' + uninstall_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,289 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,305 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.016055822372436523 +2020-03-06 11:05:15,305 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,305 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,305 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 11:05:15,326 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,336 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.009825944900512695 +2020-03-06 11:05:15,336 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +# just 32-bit x86 installer available + + + +texmaker: + 'Not Found': + full_name: 'Texmaker' + installer: 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES(x86)%\Texmaker\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,336 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,336 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,336 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,352 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,352 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 11:05:15,352 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,352 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,352 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: + +texniccenter: + '2.02 Stable': + full_name: 'TeXnicCenter Version 2.02 Stable' + + installer: 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES%\TeXnicCenter\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,352 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,367 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 11:05:15,367 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,367 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,384 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +# just 32-bit x86 installer available + + + +texstudio: + '2.10.8': + full_name: 'TeXstudio 2.10.8' + installer: 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXstudio\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,384 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,384 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,384 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,384 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 11:05:15,398 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,398 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +# just 32-bit x86 installer available + + + +texworks: + '0.6.1': + full_name: 'TeXworks 0.6.1' + installer: 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%PROGRAMFILES(x86)%\TeXworks\unins000.exe' + uninstall_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,414 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,414 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 11:05:15,414 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,431 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.016895055770874023 +2020-03-06 11:05:15,431 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +# just 32-bit x86 installer available + + + +thunderbird: + + '60.6.1': + full_name: 'Mozilla Thunderbird 60.6.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.6.0': + full_name: 'Mozilla Thunderbird 60.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.3': + full_name: 'Mozilla Thunderbird 60.5.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.2': + full_name: 'Mozilla Thunderbird 60.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.1': + full_name: 'Mozilla Thunderbird 60.5.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.5.0': + full_name: 'Mozilla Thunderbird 60.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.4.0': + full_name: 'Mozilla Thunderbird 60.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.3': + full_name: 'Mozilla Thunderbird 60.3.3 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.2': + full_name: 'Mozilla Thunderbird 60.3.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.1': + full_name: 'Mozilla Thunderbird 60.3.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.3.0': + full_name: 'Mozilla Thunderbird 60.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.2.1': + full_name: 'Mozilla Thunderbird 60.2.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '60.0': + full_name: 'Mozilla Thunderbird 60.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.1': + full_name: 'Mozilla Thunderbird 52.9.1 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.9.0': + full_name: 'Mozilla Thunderbird 52.9.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.8.0': + full_name: 'Mozilla Thunderbird 52.8.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.6.0': + full_name: 'Mozilla Thunderbird 52.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.5.2': + full_name: 'Mozilla Thunderbird 52.5.2 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '52.3.0': + full_name: 'Mozilla Thunderbird 52.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.6.0': + full_name: 'Mozilla Thunderbird 45.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '45.4.0': + full_name: 'Mozilla Thunderbird 45.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.6.0': + full_name: 'Mozilla Thunderbird 38.6.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.5.0': + full_name: 'Mozilla Thunderbird 38.5.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.4.0': + full_name: 'Mozilla Thunderbird 38.4.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.3.0': + full_name: 'Mozilla Thunderbird 38.3.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.2.0': + full_name: 'Mozilla Thunderbird 38.2.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '38.1.0': + full_name: 'Mozilla Thunderbird 38.1.0 (x86 en-GB)' + installer: 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe' + install_flags: '-ms' + uninstaller: '%ProgramFiles(x86)%\Mozilla Thunderbird\uninstall\helper.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:15,445 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,445 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.01440739631652832 +2020-03-06 11:05:15,445 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,445 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,445 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 11:05:15,445 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,462 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0165560245513916 +2020-03-06 11:05:15,462 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +tightvnc: + + + '2.8.27.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.23.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.11.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.8.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.5.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.8.2.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + + '2.7.10.0': + full_name: 'TightVNC' + + + + + installer: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + uninstaller: 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi' + + install_flags: '/quiet /norestart' + uninstall_flags: '/quiet /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:15,462 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,462 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,476 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,476 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,476 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 11:05:15,476 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.015617132186889648 +2020-03-06 11:05:15,492 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +todotxt.net: + 'Not Found': + # both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + full_name: 'todotxt.net v3.2.0.0' + installer: 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Hughesoft\todotxt.net\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,492 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,508 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,508 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 11:05:15,508 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,508 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,508 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +todour: + '2.03': + full_name: 'Todour version 2.03' + installer: 'https://nerdur.com/Todour-2.03.exe' + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + uninstaller: '%ProgramFiles(x86)%\Todour\unins000.exe' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,508 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,508 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,523 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,523 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,523 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 11:05:15,523 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,540 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.01710796356201172 +2020-03-06 11:05:15,540 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +# just 32-bit x86 installer available + + + +# Source: http://wiki.bazaar.canonical.com/ +tortoise-bzr: + '2.5.1-1': + full_name: 'Bazaar 2.5.1' + installer: 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe' + install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + uninstaller: '%ProgramFiles(x86)%\Bazaar\uninst000.exe' + uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,540 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,540 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,540 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,540 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,555 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 11:05:15,555 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,555 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +# Source: https://tortoisegit.org/ +tortoise-git: + + '2.8.0.0': + + full_name: 'TortoiseGit 2.8.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.7.0.0': + + full_name: 'TortoiseGit 2.7.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.6.0.0': + + full_name: 'TortoiseGit 2.6.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.5.0.0': + + full_name: 'TortoiseGit 2.5.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.4.0.0': + + full_name: 'TortoiseGit 2.4.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.3.0.0': + + full_name: 'TortoiseGit 2.3.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0.0': + + full_name: 'TortoiseGit 2.2.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0.0': + + full_name: 'TortoiseGit 2.1.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0.0': + + full_name: 'TortoiseGit 2.0.0.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.16.0': + + full_name: 'TortoiseGit 1.8.16.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.15.0': + + full_name: 'TortoiseGit 1.8.15.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.14.0': + + full_name: 'TortoiseGit 1.8.14.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.13.0': + + full_name: 'TortoiseGit 1.8.13.0 (64 bit)' + installer: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + uninstaller: 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:15,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,571 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.015174150466918945 +2020-03-06 11:05:15,571 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,571 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,571 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 11:05:15,586 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,586 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +# Source: http://tortoisehg.bitbucket.org/ +tortoise-hg: + '3.6.2': + + full_name: 'TortoiseHg 3.6.2 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.3.0': + + full_name: 'TortoiseHg 3.3.0 (x64)' + installer: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + uninstaller: 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False +# Need to download from source site above, so it will append proper aws key credentials +# place downloaded msi in master's win_repo-ng + +2020-03-06 11:05:15,586 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,586 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,586 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,601 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,601 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 11:05:15,601 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,601 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,601 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +# Source: http://tortoisesvn.net/ +tortoise-svn: + '1.9.27285': + + full_name: 'TortoiseSVN 1.9.4.27285 (64 bit)' + installer: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + uninstaller: 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:15,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,619 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.01806497573852539 +2020-03-06 11:05:15,619 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,619 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,619 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 11:05:15,619 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.013671159744262695 +2020-03-06 11:05:15,633 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +# just 32-bit x86 installer available + + + +truecrypt: + '7.1a': + full_name: 'TrueCrypt 7.1a' + installer: 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\Truecrypt\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,633 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,633 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,649 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,649 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 11:05:15,649 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,665 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.01572704315185547 +2020-03-06 11:05:15,665 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +ultradefrag: + '7.0.2': + full_name: 'Ultra Defragmenter' + + installer: 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe' + + install_flags: '/S /FULL=1' + uninstaller: '%ProgramFiles%\UltraDefrag\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,665 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,665 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,665 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,665 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,665 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 11:05:15,680 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,680 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +urlrewrite: + '7.2.1952': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + uninstaller: 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '7.2.1980': + full_name: 'IIS URL Rewrite Module 2' + + installer: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:15,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,696 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.015552282333374023 +2020-03-06 11:05:15,696 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,696 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,696 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 11:05:15,696 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,712 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.01618170738220215 +2020-03-06 11:05:15,712 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +usbdlm: + '5.2.7.0': + + full_name: 'USB Drive Letter Manager (x64)' + installer: http://www.uwe-sieber.de/files/usbdlm_x64.msi + uninstaller: http://www.uwe-sieber.de/files/usbdlm_x64.msi + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:15,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,712 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,712 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,712 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,730 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 11:05:15,730 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,743 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.012764930725097656 +2020-03-06 11:05:15,743 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +vagrant: + + + '2.2.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.2.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.1.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '2.0.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.8': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + '1.9.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.9.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.7': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.6': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.8.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.7.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.5': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.6.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.4': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.5.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.3': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.2': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.1': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '1.4.0': + full_name: 'Vagrant' + installer: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:15,758 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,758 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.014562845230102539 +2020-03-06 11:05:15,758 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,773 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 11:05:15,773 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,773 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +vcforpython27: + '9.0.1.30729': + full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' + installer: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + install_flags: '/qn ALLUSERS=1 /norestart' + uninstaller: 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:15,789 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,789 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,789 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,789 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,789 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 11:05:15,804 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,804 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,804 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: + + + + +vcxsrv: + + '1.20.0.0': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '1.19.6.4': + full_name: 'VcXsrv' + + installer: 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe' + + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\VcXsrv\uninstall.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:15,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,820 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 11:05:15,836 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,836 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: + + +verysleepy: + '0.90': + full_name: 'Very Sleepy CS version 0.90' + installer: 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe' + uninstaller: '%ProgramFiles%\Very Sleepy CS\unins000.exe' + install_flags: '/SP- /NORESTART /SILENT' + uninstall_flags: '/SILENT' + cache_dir: True + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,836 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,836 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,852 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,852 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,852 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 11:05:15,867 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,867 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + + + + +veyon: + + '4.0.7': + full_name: 'Veyon 4.0.7' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '4.0.6': + full_name: 'Veyon 4.0.6' + installer: 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe' + install_flags: '/S /Master' + uninstaller: '%ProgramFiles%\Veyon\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:15,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,883 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 11:05:15,883 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,898 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.015150785446166992 +2020-03-06 11:05:15,915 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +# Version 5.1 and older are no longer supported by Oracle +# https://www.virtualbox.org/wiki/Download_Old_Builds + + + +virtualbox: + + '6.0.4': + full_name: 'Oracle VM VirtualBox 6.0.4' + installer: 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.2.26': + full_name: 'Oracle VM VirtualBox 5.2.26' + installer: 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.1.38': + full_name: 'Oracle VM VirtualBox 5.1.38' + installer: 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart' + + msiexec: False + locale: en_US + reboot: False + + + + '5.0.40': + full_name: 'Oracle VM VirtualBox 5.0.40' + installer: 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe' + install_flags: '--silent' + uninstaller: 'msiexec.exe' + + uninstall_flags: '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart' + + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:15,915 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,915 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,915 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,915 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,915 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 11:05:15,929 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,929 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,929 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: + + + + +viscosity: + + '1.7.14.1595': + full_name: Viscosity 1.7.14 (1595) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.7.12.1581': + full_name: Viscosity 1.7.12 (1581) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + '1.6.8.1477': + full_name: Viscosity 1.6.8 (1477) + installer: https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe + install_flags: /SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES + uninstaller: net + uninstall_flags: stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES" + msiexec: False + reboot: False + + +2020-03-06 11:05:15,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:05:15,946 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.016111135482788086 +2020-03-06 11:05:15,946 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,946 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,946 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 11:05:15,961 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,961 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,961 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +#Vivaldi is a Chromium-based browser +#https://vivaldi.com + + + +vivaldi: + latest: + full_name: 'Vivaldi' + + installer: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + uninstaller: 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe' + + install_flags: '--vivaldi-silent --do-not-launch-chrome --system-level' + uninstall_flags: '--uninstall --force-uninstall --system-level --vivaldi' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:15,961 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,961 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,961 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,977 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,977 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 11:05:15,977 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:15,977 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:15,992 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +vlc: + + '3.0.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.7': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.5': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.4': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + full_name: 'VLC media player' + + installer: 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\VideoLAN\VLC\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:15,992 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:15,992 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:15,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:15,992 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:15,992 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 11:05:16,008 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,008 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,008 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +vs-community: + 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) + full_name: + Visual Studio Community 2017 + installer: + https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe + install_flags: + --quiet + --norestart + --wait + uninstaller: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe" + uninstall_flags: + /uninstall + --force + --quiet + --norestart + reboot: False + +2020-03-06 11:05:16,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,008 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,024 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,024 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,024 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 11:05:16,024 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,039 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.015423059463500977 +2020-03-06 11:05:16,039 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +# due to winrepo installer limitations you need to manually download x86 + x64 System installer from +# https://code.visualstudio.com/Download +# and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... + + + +vscode: + + '1.36.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.36.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.37.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.37.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.38.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.38.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.1': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.1.exe' + installer: 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + '1.39.2': + full_name: 'Microsoft Visual Studio Code' + +# installer: 'salt://win/repo-ng/vscode/VSCodeSetup-x64-1.39.2.exe' + installer: 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe' + + uninstaller: '%ProgramFiles%\Microsoft VS Code\unins000.exe' + install_flags: '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"' + uninstall_flags: '/VERYSILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:16,039 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,039 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,055 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,055 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,055 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 11:05:16,055 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,055 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,055 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +vsee: + '15.0.0.707': + full_name: 'VSee' + installer: 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe' + install_flags: '-no_autorun' + uninstaller: '%AppData%\VSeeInstall\vseeUninstall.exe' + uninstall_flags: '-no_confirm' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,055 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,070 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.014771461486816406 +2020-03-06 11:05:16,070 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,070 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,070 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 11:05:16,070 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,070 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,086 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +vs_remotetools_2017: + latest: + full_name: 'Remote Tools for Visual Studio 2017' + + installer: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + uninstaller: 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe' + arch: x64 + + install_flags: '/install /passive /quiet' + uninstall_flags: '/uninstall /passive /quiet' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,086 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,086 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,086 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,086 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 11:05:16,102 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,102 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,102 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +wamp-server-3: + '3.1.3': + + full_name: 'Wampserver64 3.1.3' + installer: 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe' + uninstaller: 'c:\wamp64\uninstall_services.bat' + uninstall_flags: '& c:\wamp64\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + + install_flags: '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,102 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,102 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,102 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,117 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,117 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 11:05:16,117 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,117 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,117 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: + + +wamp-stack: + + '7.1.27-1': + full_name: 'Bitnami WAMP Stack 7.1.27-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-7.1.27-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + '5.6.40-1': + full_name: 'Bitnami WAMP Stack 5.6.40-1' + installer: 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe' + install_flags: '--mode unattended --base_password ChangeMe --apache_server_port 8080' + uninstaller: 'C:\Bitnami\wampstack-5.6.40-1\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:16,117 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,117 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,133 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,133 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,133 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 11:05:16,133 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,133 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,133 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +webdeploy: + '3.1237.1764': + full_name: 'Microsoft Web Deploy 3.5' + + installer: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:16,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,148 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.015142679214477539 +2020-03-06 11:05:16,148 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,148 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,148 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 11:05:16,148 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,148 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,165 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +webplatforminstaller: + '5.0.50430.0': + full_name: 'Microsoft Web Platform Installer 5.0' + + installer: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + uninstaller: 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:16,165 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,165 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,165 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,165 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,165 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 11:05:16,179 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,179 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,179 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +# Source: http://winappmanager.herokuapp.com/ + + + +win-app-manager: + '15.01.11': + full_name: 'WinAppManager' + installer: 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinApp Manager\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,179 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,179 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,196 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,196 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 11:05:16,196 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,196 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,196 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: + + + +windirstat: + 'Not Found': + full_name: 'WinDirStat 1.1.2' + installer: 'http://download01.windirstat.info/windirstat1_1_2_setup.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\WinDirStat\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,196 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,212 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.015632152557373047 +2020-03-06 11:05:16,212 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,212 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,212 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 11:05:16,226 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,226 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,226 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +winhttpcertcfg: + '5.2.3790.1060': + full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' + installer: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + +2020-03-06 11:05:16,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,226 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,226 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,242 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,242 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 11:05:16,242 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,259 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.01665472984313965 +2020-03-06 11:05:16,259 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: + + + + +winmerge: + + '2.16.0': + full_name: 'WinMerge 2.16.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + '2.14.0': + full_name: 'WinMerge 2.14.0' + installer: 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinMerge\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:16,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,259 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,259 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,274 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,274 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 11:05:16,274 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,274 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,289 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +winmtr: + + '0.92': + + full_name: 'WinMTR_x64 0.92' + installer: 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe' + uninstaller: 'c:\utl\uninstall-winmtr_x64.exe' + + install_flags: '/D="c:\utl" /SILENT /NORESTART' + uninstall_flags: 'c:\utl\SSEun.dat /SILENT /NORESTART' + msiexec: False + locale: en_US + reboot: False + +# download exe from winmtr.net +# create two installers using http://www.ssesetup.com/ + +2020-03-06 11:05:16,289 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,289 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,289 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,304 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,304 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 11:05:16,304 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,304 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,321 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +winpcap: + '4.1.0.2980': + full_name: 'WinPcap 4.1.3' + installer: 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe' + install_flags: '/S' + uninstaller: '%PROGRAMFILES%\WinPcap\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,321 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,321 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,321 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,321 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 11:05:16,336 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,353 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.017246007919311523 +2020-03-06 11:05:16,353 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +#if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) + + +winrar: + + + '5.70.0': + + full_name: 'WinRAR 5.70 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-570.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '5.61.0': + + full_name: 'WinRAR 5.61 (64-bit)' + installer: 'https://www.rarlab.com/rar/winrar-x64-561.exe' + arch: x64 + + uninstaller: '%ProgramFiles%\WinRAR\uninstall.exe' + install_flags: '/S' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + + +2020-03-06 11:05:16,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,353 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,353 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,367 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,367 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 11:05:16,367 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,383 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.015516519546508789 +2020-03-06 11:05:16,383 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: + + + +winscp: + + '5.17': + full_name: 'WinSCP 5.17' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.9': + full_name: 'WinSCP 5.15.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.7': + full_name: 'WinSCP 5.15.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.5': + full_name: 'WinSCP 5.15.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.4': + full_name: 'WinSCP 5.15.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.3': + full_name: 'WinSCP 5.15.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.2': + full_name: 'WinSCP 5.15.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15.1': + full_name: 'WinSCP 5.15.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.15': + full_name: 'WinSCP 5.15' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.9': + full_name: 'WinSCP 5.13.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.8': + full_name: 'WinSCP 5.13.8' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.7': + full_name: 'WinSCP 5.13.7' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.6': + full_name: 'WinSCP 5.13.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.5': + full_name: 'WinSCP 5.13.5' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.4': + full_name: 'WinSCP 5.13.4' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.3': + full_name: 'WinSCP 5.13.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.2': + full_name: 'WinSCP 5.13.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13.1': + full_name: 'WinSCP 5.13.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.13': + full_name: 'WinSCP 5.13' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.3': + full_name: 'WinSCP 5.11.3' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.2': + full_name: 'WinSCP 5.11.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.11.1': + full_name: 'WinSCP 5.11.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.6': + full_name: 'WinSCP 5.9.6' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.2': + full_name: 'WinSCP 5.9.2' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9.1': + full_name: 'WinSCP 5.9.1' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + '5.9': + full_name: 'WinSCP 5.9' + installer: 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe' + install_flags: '/SP- /verysilent /norestart' + uninstaller: '%ProgramFiles(x86)%\WinSCP\unins000.exe' + uninstall_flags: '/verysilent' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:16,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,398 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.015591621398925781 +2020-03-06 11:05:16,398 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,398 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,414 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 11:05:16,414 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,430 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.016249418258666992 +2020-03-06 11:05:16,430 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +wireshark: + + '3.0.4': + + full_name: 'Wireshark 3.0.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.3': + + full_name: 'Wireshark 3.0.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.2': + + full_name: 'Wireshark 3.0.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.1': + + full_name: 'Wireshark 3.0.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '3.0.0': + + full_name: 'Wireshark 3.0.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.6': + + full_name: 'Wireshark 2.6.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.5': + + full_name: 'Wireshark 2.6.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.4': + + full_name: 'Wireshark 2.6.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.3': + + full_name: 'Wireshark 2.6.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.2': + + full_name: 'Wireshark 2.6.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.1': + + full_name: 'Wireshark 2.6.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.6.0': + + full_name: 'Wireshark 2.6.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.12': + + full_name: 'Wireshark 2.4.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.11': + + full_name: 'Wireshark 2.4.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.10': + + full_name: 'Wireshark 2.4.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.9': + + full_name: 'Wireshark 2.4.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.8': + + full_name: 'Wireshark 2.4.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.7': + + full_name: 'Wireshark 2.4.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.6': + + full_name: 'Wireshark 2.4.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.5': + + full_name: 'Wireshark 2.4.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.4': + + full_name: 'Wireshark 2.4.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.3': + + full_name: 'Wireshark 2.4.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.2': + + full_name: 'Wireshark 2.4.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.1': + + full_name: 'Wireshark 2.4.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.4.0': + + full_name: 'Wireshark 2.4.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.17': + + full_name: 'Wireshark 2.2.17 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.16': + + full_name: 'Wireshark 2.2.16 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.15': + + full_name: 'Wireshark 2.2.15 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.14': + + full_name: 'Wireshark 2.2.14 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.13': + + full_name: 'Wireshark 2.2.13 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.12': + + full_name: 'Wireshark 2.2.12 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.11': + + full_name: 'Wireshark 2.2.11 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.10': + + full_name: 'Wireshark 2.2.10 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.9': + + full_name: 'Wireshark 2.2.9 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.8': + + full_name: 'Wireshark 2.2.8 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.7': + + full_name: 'Wireshark 2.2.7 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.6': + + full_name: 'Wireshark 2.2.6 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.5': + + full_name: 'Wireshark 2.2.5 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.4': + + full_name: 'Wireshark 2.2.4 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.3': + + full_name: 'Wireshark 2.2.3 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.2': + + full_name: 'Wireshark 2.2.2 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.1': + + full_name: 'Wireshark 2.2.1 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '2.2.0': + + full_name: 'Wireshark 2.2.0 64-bit' + installer: 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe' + + install_flags: '/S /desktopicon=yes /quicklaunchicon=yes' + uninstaller: '%ProgramFiles%\Wireshark\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:16,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,446 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.015626907348632812 +2020-03-06 11:05:16,446 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,446 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,446 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 11:05:16,461 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,461 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,461 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +# source: http://www.kls-soft.com/wscc/ +wscc: + '2.5.0.4': + full_name: 'WSCC 2.5.0.4' + installer: 'http://www.kls-soft.com/downloads/wscc_setup.exe' + install_flags: '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + + uninstaller: '%PROGRAMFILES(x86)%\WSCC\unins000.exe' + + uninstall_flags: '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,461 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,461 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,461 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,477 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,477 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 11:05:16,477 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,477 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,492 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +# Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 +# https://github.com/zeffy/wufuc + + + + + + +wufuc: + + '1.0.1.201': + full_name: 'wufuc' + installer: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + +2020-03-06 11:05:16,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,492 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,492 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,492 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,492 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 11:05:16,508 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,508 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,508 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +xampp: + '7.2.6.0': + full_name: 'XAMPP 7.2.6' + installer: 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe' + install_flags: '--mode unattended' + uninstaller: 'c:\xampp\uninstall.exe' + uninstall_flags: '--mode unattended' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,508 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,508 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,508 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,508 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,524 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 11:05:16,524 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,524 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,524 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +# just 32-bit x86 installer available + + + +# http://www.straightrunning.com/XmingNotes/setupcmdline.htm +xming: + '6.9.0.31': + full_name: 'Xming 6.9.0.31' + installer: 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe' + install_flags: '/SP- /verysilent /suppressmsgboxes /norestart' + uninstaller: '%ProgramFiles(x86)%\Xming\unins000.exe' + uninstall_flags: '/SP- /verysilent /norestart' + msiexec: False + locale: en_US + reboot: False + +2020-03-06 11:05:16,524 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,524 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,540 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,540 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,540 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 11:05:16,540 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,540 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,555 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: + + +yubikey-manager: + + '1.1.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '1.0.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.2': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.1': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + '0.5.0': + full_name: 'YubiKey Manager' + + installer: 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe' + + install_flags: '/S' + uninstaller: '%ProgramFiles%\Yubico\YubiKey Manager\ykman-uninstall.exe' + uninstall_flags: '/S' + reboot: False + + +2020-03-06 11:05:16,555 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,555 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,555 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,555 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 11:05:16,570 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,570 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,570 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +yubikey-personalization-tool: + '3.1.24': + full_name: 'YubiKey Personalization Tool' + installer: 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe' + install_flags: '/S' + uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" + uninstall_flags: '/S' + reboot: False + +2020-03-06 11:05:16,570 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,570 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,570 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,587 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,587 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 11:05:16,587 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,602 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.015725135803222656 +2020-03-06 11:05:16,602 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.0.9.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.10.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.11.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.12.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.13.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.14.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.15.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.0.16.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '4.2.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.5.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.6.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + + +2020-03-06 11:05:16,602 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,602 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,617 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,617 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,617 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 11:05:16,617 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,617 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,633 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: + +zoom: + latest: + full_name: 'Zoom' + installer: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + install_flags: '/qn /norestart' + uninstaller: 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + +2020-03-06 11:05:16,633 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 11:05:16,633 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,633 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,633 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,633 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 11:05:16,633 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,649 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.01620197296142578 +2020-03-06 11:05:16,649 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +# Software Definition File for Elasticsearch Auditbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +auditbeat: + + '7.3.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Auditbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:05:16,649 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,649 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,649 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,649 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,649 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 11:05:16,664 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,664 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,664 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +chocolatey: + latest: + full_name: 'Chocolatey' + installer: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd' + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd' + cache_dir: True + +# this software also has it's own salt execution module, which you might prefer to use, see +# http://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html +# for usage examples see +# https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 + + +2020-03-06 11:05:16,664 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,664 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,664 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,664 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,664 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 11:05:16,680 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,680 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,680 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: + + + + +erlang: + + '19.3': + full_name: 'Erlang OTP 19 (8.3)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"' + uninstaller: '%ProgramFiles%\erl8.3\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + '21.0.1': + full_name: 'Erlang OTP 21 (10.0.1)' + installer: 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd' + install_flags: '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"' + uninstaller: '%ProgramFiles%\erl10.0.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + +2020-03-06 11:05:16,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 11:05:16,695 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.01573777198791504 +2020-03-06 11:05:16,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,695 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,695 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 11:05:16,712 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,712 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,712 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +# Software Definition File for Elasticsearch Filebeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +filebeat: + + '7.3.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Filebeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:05:16,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,729 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0171358585357666 +2020-03-06 11:05:16,729 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,729 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,729 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 11:05:16,729 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,742 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.013187170028686523 +2020-03-06 11:05:16,742 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +# Software Definition File for Elasticsearch Functionbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +functionbeat: + + '7.3.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Functionbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:05:16,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,742 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,742 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,742 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,742 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 11:05:16,758 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,758 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,773 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +# just 32-bit x86 installer available + + + + +gpg4win: + + 3.1.7: + full_name: 'Gpg4win (3.1.7)' + installer: 'http://files.gpg4win.org/gpg4win-3.1.7.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.3: + full_name: 'Gpg4win (3.0.3)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 3.0.0: + full_name: 'Gpg4win (3.0.0)' + installer: 'http://files.gpg4win.org/gpg4win-3.0.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.4: + full_name: 'Gpg4win (2.3.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.3: + full_name: 'Gpg4win (2.3.3)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.3.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.2: + full_name: 'Gpg4win (2.3.2)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.2.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.1: + full_name: 'Gpg4win (2.3.1)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.1.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.3.0: + full_name: 'Gpg4win (2.3.0)' + installer: 'http://files.gpg4win.org/gpg4win-2.3.0.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + 2.2.4: + full_name: 'Gpg4win (2.2.4)' + installer: 'http://files.gpg4win.org/gpg4win-2.2.4.exe' + install_flags: '/S /C=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\silent.ini' + uninstaller: '%ProgramFiles(x86)%\gpg4win\gpg4win-uninstall.exe' + uninstall_flags: '/S' + cache_file: salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini + msiexec: False + reboot: False + + +2020-03-06 11:05:16,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:05:16,773 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,773 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 11:05:16,789 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,789 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,789 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +# Software Definition File for Elasticsearch Heartbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +heartbeat: + + '7.3.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Heartbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:05:16,789 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,789 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,789 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,805 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,805 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 11:05:16,805 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.015620708465576172 +2020-03-06 11:05:16,820 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +# Software Definition File for Elasticsearch Metricbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +metricbeat: + + '7.3.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Metricbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:05:16,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,820 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,820 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,820 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 11:05:16,839 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,839 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,839 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +# Software Definition File for Elasticsearch Packetbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +packetbeat: + + '7.3.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Packetbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:05:16,839 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,839 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,851 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,851 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,851 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 11:05:16,851 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,851 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,851 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: + + + + + +pycharm-pro: + + 191.6605.12: + installer: 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe' + full_name: 'JetBrains Pycharm 2019.1.1' + install_flags: '/S /CONFIG=C:\salt\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\silent.config' + cache_file: salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config + uninstaller: '%ProgramFiles(x86)%\JetBrains\PyCharm 2019.1.1\Uninstall.exe' + uninstall_flags: '/S' + msiexec: False + reboot: False + + +2020-03-06 11:05:16,867 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) +2020-03-06 11:05:16,867 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,867 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,867 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 11:05:16,867 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,883 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.016119003295898438 +2020-03-06 11:05:16,883 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +# just 32-bit x86 installer available + + + +stayawake: + + '1.0': + full_name: 'StayAwake' + installer: 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd' + install_flags: '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"' + uninstaller: '%PROGRAMFILES(x86)%\StayAwake\uninstall.exe' + uninstall_flags: '/S' + + +2020-03-06 11:05:16,883 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) +2020-03-06 11:05:16,883 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,883 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,883 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 11:05:16,899 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,899 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,899 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +# Software Definition File for Elasticsearch Winlogbeat + +# Uses the following associated scripts +# - install.cmd +# - install.ps1 +# - remove.cmd + + + +winlogbeat: + + '7.3.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.3.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.2.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.2.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '7.1.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 7.1.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.2': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.2 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.1': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.1 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + '6.8.0': + full_name: 'Winlogbeat' + installer: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd' + install_flags: 6.8.0 + uninstaller: 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd' + cache_dir: True + + +2020-03-06 11:05:16,899 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,899 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,915 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,915 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,915 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 11:05:16,915 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,915 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 11:05:16,915 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +############################################################# +# Windows +############################################################# +# + + +2020-03-06 11:05:16,915 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +{} +2020-03-06 11:05:16,930 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.015259265899658203 +2020-03-06 11:05:16,930 [salt.loaded.int.module.win_pkg:1213][DEBUG ][4836] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 11:05:16,930 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:16,930 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:16,930 [salt.template :59 ][DEBUG ][4836] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 11:05:16,930 [salt.utils.jinja :85 ][DEBUG ][4836] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 11:05:16,946 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.016123056411743164 +2020-03-06 11:05:16,946 [salt.template :120 ][DEBUG ][4836] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +# only 32-bit (x86) installer available + + + +zipinstaller: + '1.21': + full_name: 'ZipInstaller' + installer: 'salt://win/repo-ng/zipinstaller/zipinst.exe' + + install_flags: '/i zipinst_x64.zip' + + uninstaller: 'zipinst.exe' + uninstall_flags: '/uninst "c:\utl\uninst1~.nsu"' + msiexec: False + locale: en_US + reboot: False + cache_dir: True +# Description: +# This is a 32-bit zip archive program installer that installes directly from zip archives and creates shortcuts and un-install entries +# automatically, exactly as defined in a simple '~zipinst~.zic' if it finds it inside the zip archive. +# +# All it takes is calling up 'zipinst.exe /i .zip' that contains a file called '~zipinst~.zic', which itself is in *.ini file +# format and contains, directives about where it should install etc. +# +# Source: +# http://www.nirsoft.net/utils/zipinst.html +# http://www.nirsoft.net/utils/zipinst.exe +# http://www.nirsoft.net/utils/zipinst.zip (need to add '~zipinst~.zic' to it) +# you have to insert the '~zipinst~.zic' file into the 'zipinst.zip' file +# and place the resulting zipinst.zip into the 'salt://win/repo-ng/zipinstaller/' on your master +# as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache +# + +2020-03-06 11:05:16,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4836] Results of YAML rendering: +OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) +2020-03-06 11:05:16,946 [salt.template :26 ][PROFILE ][4836] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 11:05:16,964 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 11:05:16,964 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 11:05:16,992 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: Volume in drive C is Windows 2019 + Volume Serial Number is 7CC7-4EE7 + + Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng + +03/06/2020 02:05 PM . +03/06/2020 02:05 PM .. +03/06/2020 02:05 PM 927 7zip.sls +03/06/2020 02:05 PM 723 activeperl_x64.sls +03/06/2020 02:05 PM 973 activeperl_x86.sls +03/06/2020 02:05 PM 798 adobeair.sls +03/06/2020 02:05 PM 956 adobereader-dc-classic.sls +03/06/2020 02:05 PM 851 adobereader-xi.sls +03/06/2020 02:05 PM 830 adobereader.sls +03/06/2020 02:05 PM 589 adobeshockwaveplayer.sls +03/06/2020 02:05 PM 775 adv-ip-scanner.sls +03/06/2020 02:05 PM 787 adv-port-scanner.sls +03/06/2020 02:05 PM 769 advancedlogging.sls +03/06/2020 02:05 PM 373 anydesk-msi.sls +03/06/2020 02:05 PM 597 anydesk.sls +03/06/2020 02:05 PM 803 applicationrequestrouting.sls +03/06/2020 02:05 PM 370 aspnet-mvc1.sls +03/06/2020 02:05 PM 439 atom.sls +03/06/2020 02:05 PM 655 audacity.sls +03/06/2020 02:05 PM auditbeat +03/06/2020 02:05 PM 1,768 autohotkey.sls +03/06/2020 02:05 PM 611 autoit.sls +03/06/2020 02:05 PM 670 autopsy.sls +03/06/2020 02:05 PM 659 awscli.sls +03/06/2020 02:05 PM 799 azuredatastudio.sls +03/06/2020 02:05 PM 422 bandizip.sls +03/06/2020 02:05 PM 563 belarc-advisor.sls +03/06/2020 02:05 PM 367 bginfo4x.sls +03/06/2020 02:05 PM 547 bitnami-nginxstack.sls +03/06/2020 02:05 PM 568 bitvise.sls +03/06/2020 02:05 PM 777 blender.sls +03/06/2020 02:05 PM 395 bootracer.sls +03/06/2020 02:05 PM 664 bulkrenameutility.sls +03/06/2020 02:05 PM 661 bulk_extractor.sls +03/06/2020 02:05 PM 476 ccleaner-slim.sls +03/06/2020 02:05 PM 445 ccleaner.sls +03/06/2020 02:05 PM 606 cdburnerxp.sls +03/06/2020 02:05 PM 594 cdroller.sls +03/06/2020 02:05 PM 658 check-mk-agent-msi.sls +03/06/2020 02:05 PM 451 check-mk-agent.sls +03/06/2020 02:05 PM chocolatey +03/06/2020 02:05 PM 394 chrome-rdp.sls +03/06/2020 02:05 PM 375 chrome.sls +03/06/2020 02:05 PM 1,296 clamav.sls +03/06/2020 02:05 PM 1,200 clamwin.sls +03/06/2020 02:05 PM 500 classicshell.sls +03/06/2020 02:05 PM 1,521 clink.sls +03/06/2020 02:05 PM 617 conemu.sls +03/06/2020 02:05 PM 687 cpu-z.sls +03/06/2020 02:05 PM 2,833 curl.sls +03/06/2020 02:05 PM 374 cyberduck-cli.sls +03/06/2020 02:05 PM 616 cyberduck-msi.sls +03/06/2020 02:05 PM 639 cyberduck.sls +03/06/2020 02:05 PM 751 defraggler.sls +03/06/2020 02:05 PM 2,637 dotnet.sls +03/06/2020 02:05 PM 643 dropbox.sls +03/06/2020 02:05 PM 683 duplicati.sls +03/06/2020 02:05 PM 712 dvdstyler.sls +03/06/2020 02:05 PM 737 echo-desktop.sls +03/06/2020 02:05 PM 1,327 eea.sls +03/06/2020 02:05 PM 423 emet.sls +03/06/2020 02:05 PM 625 emsisoft-anti-malware.sls +03/06/2020 02:05 PM 721 eraser.sls +03/06/2020 02:05 PM erlang +03/06/2020 02:05 PM 982 evernote.sls +03/06/2020 02:05 PM 531 fiddler.sls +03/06/2020 02:05 PM filebeat +03/06/2020 02:05 PM 660 filehippo-app-manager.sls +03/06/2020 02:05 PM 1,271 filezilla.sls +03/06/2020 02:05 PM 1,115 firefox-esr_x64.sls +03/06/2020 02:05 PM 1,396 firefox-esr_x86.sls +03/06/2020 02:05 PM 1,365 firefox_x64.sls +03/06/2020 02:05 PM 1,870 firefox_x86.sls +03/06/2020 02:05 PM functionbeat +03/06/2020 02:05 PM 552 gedit.sls +03/06/2020 02:05 PM 822 gimp.sls +03/06/2020 02:05 PM 953 git-extensions.sls +03/06/2020 02:05 PM 3,855 git.sls +03/06/2020 02:05 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 02:05 PM 563 gnucash.sls +03/06/2020 02:05 PM 2,152 golang.sls +03/06/2020 02:05 PM 320 goodsync.sls +03/06/2020 02:05 PM 601 gow.sls +03/06/2020 02:05 PM gpg4win +03/06/2020 02:05 PM 847 gpg4win-light.sls +03/06/2020 02:05 PM 621 gpg4win-vanilla.sls +03/06/2020 02:05 PM 544 graylog-collector-sidecar.sls +03/06/2020 02:05 PM 2,661 grepwin.sls +03/06/2020 02:05 PM 505 gvim.sls +03/06/2020 02:05 PM 622 handbrake.sls +03/06/2020 02:05 PM heartbeat +03/06/2020 02:05 PM 503 hipchat.sls +03/06/2020 02:05 PM 771 hostsfileeditor.sls +03/06/2020 02:05 PM 623 hwinfo.sls +03/06/2020 02:05 PM 339 ice.sls +03/06/2020 02:05 PM 493 icecast.sls +03/06/2020 02:05 PM 377 icloud.sls +03/06/2020 02:05 PM 2,197 iismediaservices.sls +03/06/2020 02:05 PM 358 influx-capacitor.sls +03/06/2020 02:05 PM 644 inkscape.sls +03/06/2020 02:05 PM 646 intellij-community.sls +03/06/2020 02:05 PM 618 intellij-ultimate.sls +03/06/2020 02:05 PM 360 internet-evidence-finder.sls +03/06/2020 02:05 PM 702 irfanview-plugins.sls +03/06/2020 02:05 PM 1,610 irfanview.sls +03/06/2020 02:05 PM 697 isapirewrite-lite.sls +03/06/2020 02:05 PM 2,602 itunes.sls +03/06/2020 02:05 PM 1,279 jdk8.sls +03/06/2020 02:05 PM 1,200 jre.sls +03/06/2020 02:05 PM 1,480 jre8.sls +03/06/2020 02:05 PM 995 jungledisk-server-management.sls +03/06/2020 02:05 PM 891 jungledisk-server.sls +03/06/2020 02:05 PM 921 jungledisk-workgroup.sls +03/06/2020 02:05 PM 518 kdiff3.sls +03/06/2020 02:05 PM 1,091 keepass-2x.sls +03/06/2020 02:05 PM 2,655 keepass.sls +03/06/2020 02:05 PM 673 lastpass.sls +03/06/2020 02:05 PM 1,329 lazarus.sls +03/06/2020 02:05 PM 951 libreoffice.sls +03/06/2020 02:05 PM 419 logparser.sls +03/06/2020 02:05 PM 2,627 maas360bootanalyzer.sls +03/06/2020 02:05 PM 722 malwarebytes.sls +03/06/2020 02:05 PM 1,884 mariadb.sls +03/06/2020 02:05 PM 653 mercurial.sls +03/06/2020 02:05 PM 649 messageanalyzer.sls +03/06/2020 02:05 PM metricbeat +03/06/2020 02:05 PM 603 microsoft-build-tools.sls +03/06/2020 02:05 PM 317 mikogo.sls +03/06/2020 02:05 PM 766 miktex-basic.sls +03/06/2020 02:05 PM 787 mongodb.sls +03/06/2020 02:05 PM 831 ms-mbsa.sls +03/06/2020 02:05 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 02:05 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 02:05 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 02:05 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 02:05 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 02:05 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 02:05 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 02:05 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 02:05 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 02:05 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 02:05 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 02:05 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 02:05 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 02:05 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 02:05 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 02:05 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 02:05 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 02:05 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 02:05 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 02:05 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 02:05 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 02:05 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 02:05 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 02:05 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 02:05 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 02:05 PM 585 mucommander.sls +03/06/2020 02:05 PM 638 mysql-essential.sls +03/06/2020 02:05 PM 632 mysql-installer-community.sls +03/06/2020 02:05 PM 639 mysql-workbench.sls +03/06/2020 02:05 PM 298 never10.sls +03/06/2020 02:05 PM 929 newrelic-infra.sls +03/06/2020 02:05 PM 526 nextcloud-client.sls +03/06/2020 02:05 PM 584 nmap.sls +03/06/2020 02:05 PM 709 node.js-lts.sls +03/06/2020 02:05 PM 733 node.js.sls +03/06/2020 02:05 PM 368 nomacs.sls +03/06/2020 02:05 PM 985 npp.sls +03/06/2020 02:05 PM 1,252 nsclient.sls +03/06/2020 02:05 PM 826 nsis.sls +03/06/2020 02:05 PM 902 ntp.sls +03/06/2020 02:05 PM 793 nunit-console.sls +03/06/2020 02:05 PM 363 nxlog.sls +03/06/2020 02:05 PM 1,081 octopus-tentacle.sls +03/06/2020 02:05 PM 678 openlp.sls +03/06/2020 02:05 PM 1,192 openoffice.sls +03/06/2020 02:05 PM 2,130 openvpn.sls +03/06/2020 02:05 PM 587 osquery.sls +03/06/2020 02:05 PM 878 ossec-agent.sls +03/06/2020 02:05 PM 590 owncloud.sls +03/06/2020 02:05 PM packetbeat +03/06/2020 02:05 PM 400 pandoc.sls +03/06/2020 02:05 PM 814 parallels-client-15.sls +03/06/2020 02:05 PM 1,709 pass4win.sls +03/06/2020 02:05 PM 378 passware-kit-agent.sls +03/06/2020 02:05 PM 416 passware-kit-forensic.sls +03/06/2020 02:05 PM 656 patchmypc-free.sls +03/06/2020 02:05 PM 638 pdf24creator.sls +03/06/2020 02:05 PM 567 pdfcreator.sls +03/06/2020 02:05 PM 611 peazip.sls +03/06/2020 02:05 PM 812 pgadmin4.sls +03/06/2020 02:05 PM 235 pgina.sls +03/06/2020 02:05 PM 617 pidgin.sls +03/06/2020 02:05 PM 1,898 postgresql.sls +03/06/2020 02:05 PM 997 powerbi-desktop.sls +03/06/2020 02:05 PM 864 powershell-core.sls +03/06/2020 02:05 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 02:05 PM 1,488 putty.sls +03/06/2020 02:05 PM pycharm-pro +03/06/2020 02:05 PM 567 python2_x64.sls +03/06/2020 02:05 PM 526 python2_x86.sls +03/06/2020 02:05 PM 1,540 python3_x64.sls +03/06/2020 02:05 PM 1,435 python3_x86.sls +03/06/2020 02:05 PM 449 qemu.sls +03/06/2020 02:05 PM 562 queueexplorerpro.sls +03/06/2020 02:05 PM 1,542 quicktime.sls +03/06/2020 02:05 PM 495 rabbitmq.sls +03/06/2020 02:05 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 02:05 PM 375 rakudo-star_x64.sls +03/06/2020 02:05 PM 888 rasclient.sls +03/06/2020 02:05 PM 444 rdcman.sls +03/06/2020 02:05 PM 609 rocketchat.sls +03/06/2020 02:05 PM 526 rubyinstaller_x64.sls +03/06/2020 02:05 PM 551 rubyinstaller_x86.sls +03/06/2020 02:05 PM 3,719 salt-minion-py2.sls +03/06/2020 02:05 PM 2,050 salt-minion-py3.sls +03/06/2020 02:05 PM 562 sandboxie.sls +03/06/2020 02:05 PM 581 scaleout.sls +03/06/2020 02:05 PM 476 secunia.psi.sls +03/06/2020 02:05 PM 1,190 sensu.sls +03/06/2020 02:05 PM 1,827 sharpdevelop.sls +03/06/2020 02:05 PM 539 skitch.sls +03/06/2020 02:05 PM 1,533 skype-msi.sls +03/06/2020 02:05 PM 708 skype.sls +03/06/2020 02:05 PM 1,244 slack-machine-msi.sls +03/06/2020 02:05 PM 1,023 slack-user-msi.sls +03/06/2020 02:05 PM 329 slack.sls +03/06/2020 02:05 PM 591 smartmontools.sls +03/06/2020 02:05 PM 556 snmptools.sls +03/06/2020 02:05 PM 653 soapui.sls +03/06/2020 02:05 PM 623 software-informer.sls +03/06/2020 02:05 PM 1,039 sourcetree.sls +03/06/2020 02:05 PM 591 spybot-anti-beacon.sls +03/06/2020 02:05 PM 765 spybot.sls +03/06/2020 02:05 PM 664 sscserv-free.sls +03/06/2020 02:05 PM stayawake +03/06/2020 02:05 PM 443 steam.sls +03/06/2020 02:05 PM 658 stellarium.sls +03/06/2020 02:05 PM 540 strawberryperl_x64.sls +03/06/2020 02:05 PM 531 strawberryperl_x86.sls +03/06/2020 02:05 PM 521 stunnel.sls +03/06/2020 02:05 PM 398 subinacl.sls +03/06/2020 02:05 PM 467 sumatrapdf.sls +03/06/2020 02:05 PM 769 svn.sls +03/06/2020 02:05 PM 534 teamviewer.sls +03/06/2020 02:05 PM 549 teamviewer_host.sls +03/06/2020 02:05 PM 749 teracopy.sls +03/06/2020 02:05 PM 491 texmaker.sls +03/06/2020 02:05 PM 709 texniccenter.sls +03/06/2020 02:05 PM 639 texstudio.sls +03/06/2020 02:05 PM 643 texworks.sls +03/06/2020 02:05 PM 937 thunderbird.sls +03/06/2020 02:05 PM 1,014 tightvnc.sls +03/06/2020 02:05 PM 623 todotxt.net.sls +03/06/2020 02:05 PM 551 todour.sls +03/06/2020 02:05 PM 630 tortoise-bzr.sls +03/06/2020 02:05 PM 983 tortoise-git.sls +03/06/2020 02:05 PM 1,367 tortoise-hg.sls +03/06/2020 02:05 PM 897 tortoise-svn.sls +03/06/2020 02:05 PM 503 truecrypt.sls +03/06/2020 02:05 PM 662 ultradefrag.sls +03/06/2020 02:05 PM 1,598 urlrewrite.sls +03/06/2020 02:05 PM 560 usbdlm.sls +03/06/2020 02:05 PM 1,361 vagrant.sls +03/06/2020 02:05 PM 479 vcforpython27.sls +03/06/2020 02:05 PM 820 vcxsrv.sls +03/06/2020 02:05 PM 434 verysleepy.sls +03/06/2020 02:05 PM 611 veyon.sls +03/06/2020 02:05 PM 2,570 virtualbox.sls +03/06/2020 02:05 PM 794 viscosity.sls +03/06/2020 02:05 PM 657 vivaldi.sls +03/06/2020 02:05 PM 739 vlc.sls +03/06/2020 02:05 PM 713 vs-community.sls +03/06/2020 02:05 PM 1,388 vscode.sls +03/06/2020 02:05 PM 325 vsee.sls +03/06/2020 02:05 PM 640 vs_remotetools_2017.sls +03/06/2020 02:05 PM 835 wamp-server-3.sls +03/06/2020 02:05 PM 585 wamp-stack.sls +03/06/2020 02:05 PM 775 webdeploy.sls +03/06/2020 02:05 PM 842 webplatforminstaller.sls +03/06/2020 02:05 PM 610 win-app-manager.sls +03/06/2020 02:05 PM 467 windirstat.sls +03/06/2020 02:05 PM 468 winhttpcertcfg.sls +03/06/2020 02:05 PM winlogbeat +03/06/2020 02:05 PM 618 winmerge.sls +03/06/2020 02:05 PM 737 winmtr.sls +03/06/2020 02:05 PM 288 winpcap.sls +03/06/2020 02:05 PM 825 winrar.sls +03/06/2020 02:05 PM 828 winscp.sls +03/06/2020 02:05 PM 1,136 wireshark.sls +03/06/2020 02:05 PM wmi_provider +03/06/2020 02:05 PM 539 wscc.sls +03/06/2020 02:05 PM 726 wufuc.sls +03/06/2020 02:05 PM 352 xampp.sls +03/06/2020 02:05 PM 649 xming.sls +03/06/2020 02:05 PM 621 yubikey-manager.sls +03/06/2020 02:05 PM 546 yubikey-personalization-tool.sls +03/06/2020 02:05 PM 1,119 zabbix-agent.sls +03/06/2020 02:05 PM zipinstaller +03/06/2020 02:05 PM 278 zoom.sls + 284 File(s) 232,192 bytes + 16 Dir(s) 49,812,647,936 bytes free +2020-03-06 11:05:17,008 [salt.state :938 ][DEBUG ][4836] Last command return code: 0 +2020-03-06 11:05:17,008 [salt.state :320 ][INFO ][4836] {'pkg.refresh_db': {'failed': 0, 'total': 298, 'success': 298}} +2020-03-06 11:05:17,008 [salt.state :1997][INFO ][4836] Completed state [pkg.refresh_db] at time 11:05:17.008621 (duration_in_ms=14178.26) +2020-03-06 11:05:17,008 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 11:05:17,027 [salt.state :1819][INFO ][4836] Running state [7zip] at time 11:05:17.027171 +2020-03-06 11:05:17,027 [salt.state :1852][INFO ][4836] Executing state pkg.installed for [7zip] +2020-03-06 11:05:17,039 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 11:05:17,039 [salt.loaded.int.module.win_pkg:802 ][INFO ][4836] Refresh skipped, age of winrepo metadata in seconds (0.09319472312927246) is less than winrepo_cache_expire_min (1800) +2020-03-06 11:05:17,039 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.093195) +2020-03-06 11:05:17,127 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,127 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,154 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:05:17,167 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 11:05:17,181 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:05:17,181 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.234935) +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,196 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,209 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,209 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,209 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,209 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,209 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:17,209 [salt.utils.http :234 ][DEBUG ][4836] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 11:05:17,209 [salt.utils.http :235 ][DEBUG ][4836] Using backend: tornado +2020-03-06 11:05:19,616 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 11:05:20,241 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.294922) +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,241 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,260 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,260 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,260 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,260 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,260 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,275 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 11:05:20,275 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.328613) +2020-03-06 11:05:20,275 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,275 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,275 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,275 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,275 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,275 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:20,289 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 11:05:20,336 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 11:05:20,336 [salt.state :320 ][INFO ][4836] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 11:05:20,336 [salt.state :1000][DEBUG ][4836] Refreshing modules... +2020-03-06 11:05:20,366 [salt.state :966 ][INFO ][4836] Loading fresh modules for state activity +2020-03-06 11:05:20,413 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:20,413 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:20,428 [salt.state :1997][INFO ][4836] Completed state [7zip] at time 11:05:20.428589 (duration_in_ms=3401.418) +2020-03-06 11:05:20,428 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded config.option +2020-03-06 11:05:20,444 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pkg.install +2020-03-06 11:05:20,444 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pkg.installed +2020-03-06 11:05:20,444 [salt.state :1819][INFO ][4836] Running state [kdiff3] at time 11:05:20.444211 +2020-03-06 11:05:20,444 [salt.state :1852][INFO ][4836] Executing state pkg.installed for [kdiff3] +2020-03-06 11:05:20,913 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt.secret_key, ret: _|- +2020-03-06 11:05:20,913 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt:secret_key, ret: _|- +2020-03-06 11:05:21,101 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet.api_key, ret: _|- +2020-03-06 11:05:21,116 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet:api_key, ret: _|- +2020-03-06 11:05:21,335 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded reg.read_value +2020-03-06 11:05:21,444 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops.api_key, ret: _|- +2020-03-06 11:05:21,444 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops:api_key, ret: _|- +2020-03-06 11:05:26,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded platform.is_windows +2020-03-06 11:05:26,773 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded path.which +2020-03-06 11:05:26,803 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 11:05:26,819 [salt.loaded.int.module.win_pkg:802 ][INFO ][4836] Refresh skipped, age of winrepo metadata in seconds (9.873350381851196) is less than winrepo_cache_expire_min (1800) +2020-03-06 11:05:26,819 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:09.873350) +2020-03-06 11:05:26,819 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,819 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,819 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,819 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,819 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,835 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,855 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:05:26,866 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 11:05:26,881 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:05:26,881 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:09.935121) +2020-03-06 11:05:26,881 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,881 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,881 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,898 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:26,913 [salt.utils.http :234 ][DEBUG ][4836] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 11:05:26,913 [salt.utils.http :235 ][DEBUG ][4836] Using backend: tornado +2020-03-06 11:05:57,232 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 11:05:58,326 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:41.379517) +2020-03-06 11:05:58,345 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,345 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,345 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,345 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,345 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,345 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,345 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,357 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 11:05:58,357 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:41.410809) +2020-03-06 11:05:58,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:05:58,390 [salt.state :320 ][INFO ][4836] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 11:05:58,390 [salt.state :1000][DEBUG ][4836] Refreshing modules... +2020-03-06 11:05:58,423 [salt.state :966 ][INFO ][4836] Loading fresh modules for state activity +2020-03-06 11:05:58,482 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:05:58,482 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:05:58,482 [salt.state :1997][INFO ][4836] Completed state [kdiff3] at time 11:05:58.482430 (duration_in_ms=38038.219) +2020-03-06 11:05:58,482 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded config.option +2020-03-06 11:05:58,498 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pkg.install +2020-03-06 11:05:58,498 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pkg.installed +2020-03-06 11:05:58,498 [salt.state :1819][INFO ][4836] Running state [git] at time 11:05:58.498072 +2020-03-06 11:05:58,498 [salt.state :1852][INFO ][4836] Executing state pkg.installed for [git] +2020-03-06 11:05:58,919 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt.secret_key, ret: _|- +2020-03-06 11:05:58,935 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt:secret_key, ret: _|- +2020-03-06 11:05:59,154 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet.api_key, ret: _|- +2020-03-06 11:05:59,154 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet:api_key, ret: _|- +2020-03-06 11:05:59,326 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded reg.read_value +2020-03-06 11:05:59,466 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops.api_key, ret: _|- +2020-03-06 11:05:59,466 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops:api_key, ret: _|- +2020-03-06 11:06:05,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded platform.is_windows +2020-03-06 11:06:05,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded path.which +2020-03-06 11:06:05,482 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 11:06:05,482 [salt.loaded.int.module.win_pkg:802 ][INFO ][4836] Refresh skipped, age of winrepo metadata in seconds (48.53602409362793) is less than winrepo_cache_expire_min (1800) +2020-03-06 11:06:05,516 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:48.536024) +2020-03-06 11:06:05,516 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,516 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,516 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,544 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:06:05,561 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 11:06:05,576 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 11:06:05,576 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:00:48.630028) +2020-03-06 11:06:05,591 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,591 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,591 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,591 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,591 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,591 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:05,607 [salt.utils.http :234 ][DEBUG ][4836] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 11:06:05,626 [salt.utils.http :235 ][DEBUG ][4836] Using backend: tornado +2020-03-06 11:06:11,514 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 11:06:33,545 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:01:16.598833) +2020-03-06 11:06:33,561 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,561 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,561 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,576 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,592 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,613 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 11:06:33,613 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4836] Using existing pkg metadata db for saltenv 'base' (age is 0:01:16.666616) +2020-03-06 11:06:33,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,654 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,654 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,654 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,654 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-21-167699197-2696378714-1796317292-1000_Classes\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,654 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4836] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys + handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) +pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') +2020-03-06 11:06:33,654 [salt.state :320 ][INFO ][4836] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' + +2020-03-06 11:06:33,654 [salt.state :1000][DEBUG ][4836] Refreshing modules... +2020-03-06 11:06:33,701 [salt.state :966 ][INFO ][4836] Loading fresh modules for state activity +2020-03-06 11:06:33,763 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded jinja.render +2020-03-06 11:06:33,779 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded yaml.render +2020-03-06 11:06:33,779 [salt.state :1997][INFO ][4836] Completed state [git] at time 11:06:33.779399 (duration_in_ms=35281.327) +2020-03-06 11:06:33,779 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded config.option +2020-03-06 11:06:33,795 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded module.run +2020-03-06 11:06:33,795 [salt.state :1819][INFO ][4836] Running state [windows_environment.refresh.path] at time 11:06:33.795481 +2020-03-06 11:06:33,795 [salt.state :1852][INFO ][4836] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 11:06:33,795 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded windows_environment.refresh +2020-03-06 11:06:33,795 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded cmd.run +2020-03-06 11:06:33,795 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 11:06:33,842 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 11:06:33,842 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4836] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 11:06:33,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded environ.get +2020-03-06 11:06:33,842 [py.warnings :919 ][WARNING ][4836] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 11:06:33,842 [py.warnings :919 ][WARNING ][4836] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 11:06:33,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded event.fire +2020-03-06 11:06:33,858 [salt.utils.event :322 ][DEBUG ][4836] SaltEvent PUB socket URI: 4510 +2020-03-06 11:06:33,858 [salt.utils.event :323 ][DEBUG ][4836] SaltEvent PULL socket URI: 4511 +2020-03-06 11:06:33,858 [salt.utils.event :737 ][DEBUG ][4836] Sending event: tag = environ_setenv; data = {'_stamp': '2020-03-06T19:06:33.858467', 'permanent': False, 'clear_all': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'false_unsets': False} +2020-03-06 11:06:33,858 [salt.transport.ipc:364 ][DEBUG ][4836] Closing IPCMessageClient instance +2020-03-06 11:06:33,858 [salt.state :320 ][INFO ][4836] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 11:06:33,873 [salt.state :1997][INFO ][4836] Completed state [windows_environment.refresh.path] at time 11:06:33.873111 (duration_in_ms=77.63) +2020-03-06 11:06:33,873 [salt.state :1819][INFO ][4836] Running state [chocolatey.bootstrap] at time 11:06:33.873111 +2020-03-06 11:06:33,873 [salt.state :1852][INFO ][4836] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 11:06:34,513 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt.secret_key, ret: _|- +2020-03-06 11:06:34,513 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: ifttt:secret_key, ret: _|- +2020-03-06 11:06:34,810 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet.api_key, ret: _|- +2020-03-06 11:06:34,810 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: pushbullet:api_key, ret: _|- +2020-03-06 11:06:35,029 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded reg.read_value +2020-03-06 11:06:35,170 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops.api_key, ret: _|- +2020-03-06 11:06:35,170 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: victorops:api_key, ret: _|- +2020-03-06 11:06:40,716 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded platform.is_windows +2020-03-06 11:06:40,716 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded path.which +2020-03-06 11:06:40,764 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 11:06:40,810 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded apache.config +2020-03-06 11:06:40,810 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded apache.a2enconf +2020-03-06 11:06:40,826 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded apache.a2ensite +2020-03-06 11:06:40,842 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 11:06:40,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 11:06:40,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 11:06:40,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 11:06:40,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 11:06:40,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 11:06:40,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto3_sns.topic_exists +2020-03-06 11:06:40,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_apigateway.describe_apis +2020-03-06 11:06:40,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_asg.exists +2020-03-06 11:06:40,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cfn.exists +2020-03-06 11:06:40,858 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudtrail.exists +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_dynamodb.exists +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_ec2.get_key +2020-03-06 11:06:40,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elasticache.exists +2020-03-06 11:06:40,889 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 11:06:40,889 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elb.exists +2020-03-06 11:06:40,889 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 11:06:40,889 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_iam.get_user +2020-03-06 11:06:40,889 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_iam.role_exists +2020-03-06 11:06:40,889 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_iot.policy_exists +2020-03-06 11:06:40,889 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_kinesis.exists +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_kms.describe_key +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_lambda.function_exists +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_asg.exists +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_rds.exists +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_route53.get_record +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_s3.get_object_metadata +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_s3_bucket.exists +2020-03-06 11:06:40,904 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_secgroup.exists +2020-03-06 11:06:40,921 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_sns.exists +2020-03-06 11:06:40,921 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_sqs.exists +2020-03-06 11:06:40,921 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded boto_vpc.exists +2020-03-06 11:06:40,921 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded bower.list +2020-03-06 11:06:40,921 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded chef.client +2020-03-06 11:06:40,936 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded cimc.get_system_info +2020-03-06 11:06:40,936 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded cisconso.set_data_value +2020-03-06 11:06:40,936 [salt.loader :1577][DEBUG ][4836] Failed to import states cloud: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in + import salt.utils.cloud as suc + File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in + import salt.cloud +ImportError: No module named 'salt.cloud' +2020-03-06 11:06:40,936 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded ddns.update +2020-03-06 11:06:40,951 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded chassis.cmd +2020-03-06 11:06:40,967 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:06:40,983 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:06:40,999 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:06:41,014 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 11:06:41,217 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded esxi.cmd +2020-03-06 11:06:41,217 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 11:06:41,279 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: git version 2.23.0.windows.1 +2020-03-06 11:06:41,279 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded github.list_users +2020-03-06 11:06:41,295 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded glanceng.image_get +2020-03-06 11:06:41,295 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded elasticsearch.exists +2020-03-06 11:06:41,295 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: grafana_version, ret: _|- +2020-03-06 11:06:41,295 [salt.loaded.int.module.config:398 ][DEBUG ][4836] key: grafana_version, ret: _|- +2020-03-06 11:06:41,310 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded icinga2.generate_ticket +2020-03-06 11:06:41,310 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded ifttt.trigger_event +2020-03-06 11:06:41,326 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:06:41,342 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 11:06:41,357 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:06:41,373 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:06:41,389 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:06:41,404 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 11:06:41,436 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 11:06:41,436 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.domain_get +2020-03-06 11:06:41,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.endpoint_get +2020-03-06 11:06:41,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.group_get +2020-03-06 11:06:41,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.project_get +2020-03-06 11:06:41,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.role_get +2020-03-06 11:06:41,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.role_grant +2020-03-06 11:06:41,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.service_get +2020-03-06 11:06:41,451 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded keystoneng.user_get +2020-03-06 11:06:41,498 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 11:06:41,514 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 11:06:41,529 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. +2020-03-06 11:06:41,545 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. +2020-03-06 11:06:41,561 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:06:41,591 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. +2020-03-06 11:06:41,591 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:06:41,591 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:06:41,608 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:06:41,608 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded lxd.version +2020-03-06 11:06:41,608 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded memcached.status +2020-03-06 11:06:41,608 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mongodb.db_exists +2020-03-06 11:06:41,608 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mongodb.user_exists +2020-03-06 11:06:41,624 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:06:41,624 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:06:41,624 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:06:41,624 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded mssql.version +2020-03-06 11:06:41,639 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_networks +2020-03-06 11:06:41,639 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_subnets +2020-03-06 11:06:41,639 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_subnets +2020-03-06 11:06:41,639 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded neutronng.list_subnets +2020-03-06 11:06:41,655 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded npm.list +2020-03-06 11:06:41,655 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nxos.cmd +2020-03-06 11:06:41,671 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. +2020-03-06 11:06:41,687 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. +2020-03-06 11:06:41,687 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded panos.commit +2020-03-06 11:06:41,701 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pdbedit.create +2020-03-06 11:06:41,701 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded pecl.list +2020-03-06 11:06:41,718 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 11:06:41,718 [salt.loader :1577][DEBUG ][4836] Failed to import states ports: +Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module + mod = spec.loader.load_module() + File "", line 418, in _check_name_wrapper + File "", line 841, in load_module + File "", line 700, in load_module + File "", line 268, in _load_module_shim + File "", line 693, in _load + File "", line 673, in _load_unlocked + File "", line 697, in exec_module + File "", line 222, in _call_with_frames_removed + File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in + from salt.modules.freebsdports import _normalize, _options_file_exists +ImportError: No module named 'salt.modules.freebsdports' +2020-03-06 11:06:41,718 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.cluster_exists +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.user_exists +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.create_extension +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.group_create +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.datadir_init +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.language_create +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.privileges_grant +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.schema_exists +2020-03-06 11:06:41,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.tablespace_exists +2020-03-06 11:06:41,748 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded postgres.user_exists +2020-03-06 11:06:41,780 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 11:06:41,780 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded selinux.getenforce +2020-03-06 11:06:41,794 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded splunk.list_users +2020-03-06 11:06:41,794 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded splunk_search.get +2020-03-06 11:06:41,811 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 11:06:41,827 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded tomcat.status +2020-03-06 11:06:41,827 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded vagrant.version +2020-03-06 11:06:41,827 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded victorops.create_event +2020-03-06 11:06:41,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded win_iis.create_site +2020-03-06 11:06:41,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded win_snmp.get_agent_settings +2020-03-06 11:06:41,857 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded wordpress.show_plugin +2020-03-06 11:06:41,857 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded x509.get_pem_entry +2020-03-06 11:06:41,857 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded xmpp.send_msg +2020-03-06 11:06:41,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded zk_concurrency.lock +2020-03-06 11:06:41,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded zonecfg.create +2020-03-06 11:06:41,873 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded zookeeper.create +2020-03-06 11:06:41,889 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 11:06:41,889 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 11:06:42,107 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 11:06:42,107 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4836] retcode: 1 +2020-03-06 11:06:42,107 [salt.state :915 ][DEBUG ][4836] Last command return code: 1 +2020-03-06 11:06:42,107 [salt.utils.http :234 ][DEBUG ][4836] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 11:06:42,107 [salt.utils.http :235 ][DEBUG ][4836] Using backend: tornado +2020-03-06 11:06:42,342 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 11:06:50,061 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: Preparing: C:\84767f75fd5d75c89a7bf85c0d\header.bmp... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\SplashScreen.bmp... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\watermark.bmp... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\DisplayIcon.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Print.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate1.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate2.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate3.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate4.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate5.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate6.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate7.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Rotate8.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Save.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\Setup.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\stop.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\SysReqMet.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\SysReqNotMet.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Graphics\warn.ico... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1033\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1042\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1041\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1037\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1025\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1035\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1030\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1044\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1043\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1040\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1029\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1031\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1036\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1032\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1038\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\2052\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1028\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\3076\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1055\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1053\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\3082\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\2070\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1046\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1049\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1045\LocalizedData.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Client\Parameterinfo.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Extended\Parameterinfo.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\ParameterInfo.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Strings.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\UiInfo.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Client\UiInfo.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Extended\UiInfo.xml... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\SetupUi.xsd... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\DHtmlHeader.html... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1033\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1025\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1028\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1030\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1031\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1029\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1036\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1035\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1032\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1038\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1037\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1040\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1041\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1042\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1044\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1043\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1046\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1045\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1055\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1053\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\2052\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1049\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\3082\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\2070\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\3076\eula.rtf... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\Setup.exe... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\SetupUtility.exe... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\SetupEngine.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1025\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1033\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1029\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1030\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1035\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1031\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1036\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1032\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1028\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\2052\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\3076\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1042\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1041\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1037\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1044\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1053\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1055\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1040\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1045\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1046\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1049\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1038\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\2070\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\3082\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\1043\SetupResources.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\SetupUi.dll... +Preparing: C:\84767f75fd5d75c89a7bf85c0d\sqmapi.dll... +2020-03-06 11:06:50,061 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 11:07:02,888 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: Getting latest version of the Chocolatey package for download. +Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +Downloading 7-Zip commandline tool prior to extraction. +Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +Installing chocolatey on this machine +Creating ChocolateyInstall as an environment variable (targeting 'Machine') + Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +WARNING: It's very likely you will need to close and reopen your shell + before you can use choco. +Restricting write permissions to Administrators +We are setting up the Chocolatey package repository. +The packages themselves go to 'C:\ProgramData\chocolatey\lib' + (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' + and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. + +Creating Chocolatey folders if they do not already exist. + +WARNING: You can safely ignore errors related to missing log files when + upgrading from a version of Chocolatey less than 0.9.9. + 'Batch file could not be found' is also safe to ignore. + 'The system cannot find the file specified' - also safe. +chocolatey.nupkg file not installed in lib. + Attempting to locate it from bootstrapper. +PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +WARNING: Not setting tab completion: Profile file does not exist at +'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +Chocolatey (choco.exe) is now ready. +You can call choco from anywhere, command line or powershell by typing choco. +Run choco /? for a list of functions. +You may need to shut down and restart powershell and/or consoles + first prior to using choco. +Ensuring chocolatey commands are on the path +Ensuring chocolatey.nupkg is in the lib folder +2020-03-06 11:07:02,888 [salt.state :320 ][INFO ][4836] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 11:07:02,888 [salt.state :1997][INFO ][4836] Completed state [chocolatey.bootstrap] at time 11:07:02.888736 (duration_in_ms=29015.625) +2020-03-06 11:07:02,888 [salt.state :1819][INFO ][4836] Running state [notepadplusplus] at time 11:07:02.888736 +2020-03-06 11:07:02,888 [salt.state :1852][INFO ][4836] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 11:07:02,888 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:07:04,029 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: chocolatey|0.10.15 +2020-03-06 11:07:04,029 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 11:07:04,467 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: 0.10.15 +2020-03-06 11:07:04,483 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4836] output: 0.10.15 +2020-03-06 11:07:04,483 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 11:07:15,279 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +notepadplusplus +By installing you accept licenses for the packages. + +chocolatey-core.extension v1.3.5.1 [Approved] +chocolatey-core.extension package files install completed. Performing other installation steps. + Installed/updated chocolatey-core extensions. + The install of chocolatey-core.extension was successful. + Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' + +notepadplusplus.install v7.8.5 +notepadplusplus.install package files install completed. Performing other installation steps. +Installing 64-bit notepadplusplus.install... +notepadplusplus.install has been installed. +notepadplusplus.install installed to 'C:\Program Files\Notepad++' +Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program files\notepad++\notepad++.exe'. + notepadplusplus.install may be able to be automatically uninstalled. + The install of notepadplusplus.install was successful. + Software installed as 'exe', install location is likely default. + +notepadplusplus v7.8.5 [Approved] +notepadplusplus package files install completed. Performing other installation steps. + The install of notepadplusplus was successful. + Software install location not explicitly set, could be in package or + default install location if installer. + +Chocolatey installed 3/3 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 11:07:15,295 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:07:16,154 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 11:07:16,154 [salt.state :320 ][INFO ][4836] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 11:07:16,154 [salt.state :1997][INFO ][4836] Completed state [notepadplusplus] at time 11:07:16.154357 (duration_in_ms=13265.621) +2020-03-06 11:07:16,154 [salt.state :1819][INFO ][4836] Running state [windirstat] at time 11:07:16.154357 +2020-03-06 11:07:16,154 [salt.state :1852][INFO ][4836] Executing state chocolatey.installed for [windirstat] +2020-03-06 11:07:16,170 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:07:17,014 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 11:07:17,014 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 11:07:25,404 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 11:07:25,404 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 11:07:26,217 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: chocolatey|0.10.15 +chocolatey-core.extension|1.3.5.1 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +windirstat|1.1.2.20161210 +2020-03-06 11:07:26,217 [salt.state :320 ][INFO ][4836] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 11:07:26,217 [salt.state :1997][INFO ][4836] Completed state [windirstat] at time 11:07:26.217134 (duration_in_ms=10062.777) +2020-03-06 11:07:26,217 [salt.state :1819][INFO ][4836] Running state [telnet-client] at time 11:07:26.217134 +2020-03-06 11:07:26,232 [salt.state :1852][INFO ][4836] Executing state win_servermanager.installed for [telnet-client] +2020-03-06 11:07:26,232 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4836] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 11:07:26,232 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 11:07:27,532 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: [ + { + "DisplayName": "Active Directory Certificate Services", + "Name": "AD-Certificate", + "Installed": false + }, + { + "DisplayName": "Certification Authority", + "Name": "ADCS-Cert-Authority", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Policy Web Service", + "Name": "ADCS-Enroll-Web-Pol", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Web Service", + "Name": "ADCS-Enroll-Web-Svc", + "Installed": false + }, + { + "DisplayName": "Certification Authority Web Enrollment", + "Name": "ADCS-Web-Enrollment", + "Installed": false + }, + { + "DisplayName": "Network Device Enrollment Service", + "Name": "ADCS-Device-Enrollment", + "Installed": false + }, + { + "DisplayName": "Online Responder", + "Name": "ADCS-Online-Cert", + "Installed": false + }, + { + "DisplayName": "Active Directory Domain Services", + "Name": "AD-Domain-Services", + "Installed": false + }, + { + "DisplayName": "Active Directory Federation Services", + "Name": "ADFS-Federation", + "Installed": false + }, + { + "DisplayName": "Active Directory Lightweight Directory Services", + "Name": "ADLDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services", + "Name": "ADRMS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Server", + "Name": "ADRMS-Server", + "Installed": false + }, + { + "DisplayName": "Identity Federation Support", + "Name": "ADRMS-Identity", + "Installed": false + }, + { + "DisplayName": "Device Health Attestation", + "Name": "DeviceHealthAttestationService", + "Installed": false + }, + { + "DisplayName": "DHCP Server", + "Name": "DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server", + "Name": "DNS", + "Installed": false + }, + { + "DisplayName": "Fax Server", + "Name": "Fax", + "Installed": false + }, + { + "DisplayName": "File and Storage Services", + "Name": "FileAndStorage-Services", + "Installed": true + }, + { + "DisplayName": "File and iSCSI Services", + "Name": "File-Services", + "Installed": false + }, + { + "DisplayName": "File Server", + "Name": "FS-FileServer", + "Installed": false + }, + { + "DisplayName": "BranchCache for Network Files", + "Name": "FS-BranchCache", + "Installed": false + }, + { + "DisplayName": "Data Deduplication", + "Name": "FS-Data-Deduplication", + "Installed": false + }, + { + "DisplayName": "DFS Namespaces", + "Name": "FS-DFS-Namespace", + "Installed": false + }, + { + "DisplayName": "DFS Replication", + "Name": "FS-DFS-Replication", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager", + "Name": "FS-Resource-Manager", + "Installed": false + }, + { + "DisplayName": "File Server VSS Agent Service", + "Name": "FS-VSS-Agent", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Server", + "Name": "FS-iSCSITarget-Server", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Storage Provider (VDS and VSS hardware providers)", + "Name": "iSCSITarget-VSS-VDS", + "Installed": false + }, + { + "DisplayName": "Server for NFS", + "Name": "FS-NFS-Service", + "Installed": false + }, + { + "DisplayName": "Work Folders", + "Name": "FS-SyncShareService", + "Installed": false + }, + { + "DisplayName": "Storage Services", + "Name": "Storage-Services", + "Installed": true + }, + { + "DisplayName": "Host Guardian Service", + "Name": "HostGuardianServiceRole", + "Installed": false + }, + { + "DisplayName": "Hyper-V", + "Name": "Hyper-V", + "Installed": false + }, + { + "DisplayName": "Network Controller", + "Name": "NetworkController", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services", + "Name": "NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services", + "Name": "Print-Services", + "Installed": false + }, + { + "DisplayName": "Print Server", + "Name": "Print-Server", + "Installed": false + }, + { + "DisplayName": "Internet Printing", + "Name": "Print-Internet", + "Installed": false + }, + { + "DisplayName": "LPD Service", + "Name": "Print-LPD-Service", + "Installed": false + }, + { + "DisplayName": "Remote Access", + "Name": "RemoteAccess", + "Installed": false + }, + { + "DisplayName": "DirectAccess and VPN (RAS)", + "Name": "DirectAccess-VPN", + "Installed": false + }, + { + "DisplayName": "Routing", + "Name": "Routing", + "Installed": false + }, + { + "DisplayName": "Web Application Proxy", + "Name": "Web-Application-Proxy", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services", + "Name": "Remote-Desktop-Services", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Connection Broker", + "Name": "RDS-Connection-Broker", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway", + "Name": "RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing", + "Name": "RDS-Licensing", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Session Host", + "Name": "RDS-RD-Server", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Virtualization Host", + "Name": "RDS-Virtualization", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Web Access", + "Name": "RDS-Web-Access", + "Installed": false + }, + { + "DisplayName": "Volume Activation Services", + "Name": "VolumeActivation", + "Installed": false + }, + { + "DisplayName": "Web Server (IIS)", + "Name": "Web-Server", + "Installed": false + }, + { + "DisplayName": "Web Server", + "Name": "Web-WebServer", + "Installed": false + }, + { + "DisplayName": "Common HTTP Features", + "Name": "Web-Common-Http", + "Installed": false + }, + { + "DisplayName": "Default Document", + "Name": "Web-Default-Doc", + "Installed": false + }, + { + "DisplayName": "Directory Browsing", + "Name": "Web-Dir-Browsing", + "Installed": false + }, + { + "DisplayName": "HTTP Errors", + "Name": "Web-Http-Errors", + "Installed": false + }, + { + "DisplayName": "Static Content", + "Name": "Web-Static-Content", + "Installed": false + }, + { + "DisplayName": "HTTP Redirection", + "Name": "Web-Http-Redirect", + "Installed": false + }, + { + "DisplayName": "WebDAV Publishing", + "Name": "Web-DAV-Publishing", + "Installed": false + }, + { + "DisplayName": "Health and Diagnostics", + "Name": "Web-Health", + "Installed": false + }, + { + "DisplayName": "HTTP Logging", + "Name": "Web-Http-Logging", + "Installed": false + }, + { + "DisplayName": "Custom Logging", + "Name": "Web-Custom-Logging", + "Installed": false + }, + { + "DisplayName": "Logging Tools", + "Name": "Web-Log-Libraries", + "Installed": false + }, + { + "DisplayName": "ODBC Logging", + "Name": "Web-ODBC-Logging", + "Installed": false + }, + { + "DisplayName": "Request Monitor", + "Name": "Web-Request-Monitor", + "Installed": false + }, + { + "DisplayName": "Tracing", + "Name": "Web-Http-Tracing", + "Installed": false + }, + { + "DisplayName": "Performance", + "Name": "Web-Performance", + "Installed": false + }, + { + "DisplayName": "Static Content Compression", + "Name": "Web-Stat-Compression", + "Installed": false + }, + { + "DisplayName": "Dynamic Content Compression", + "Name": "Web-Dyn-Compression", + "Installed": false + }, + { + "DisplayName": "Security", + "Name": "Web-Security", + "Installed": false + }, + { + "DisplayName": "Request Filtering", + "Name": "Web-Filtering", + "Installed": false + }, + { + "DisplayName": "Basic Authentication", + "Name": "Web-Basic-Auth", + "Installed": false + }, + { + "DisplayName": "Centralized SSL Certificate Support", + "Name": "Web-CertProvider", + "Installed": false + }, + { + "DisplayName": "Client Certificate Mapping Authentication", + "Name": "Web-Client-Auth", + "Installed": false + }, + { + "DisplayName": "Digest Authentication", + "Name": "Web-Digest-Auth", + "Installed": false + }, + { + "DisplayName": "IIS Client Certificate Mapping Authentication", + "Name": "Web-Cert-Auth", + "Installed": false + }, + { + "DisplayName": "IP and Domain Restrictions", + "Name": "Web-IP-Security", + "Installed": false + }, + { + "DisplayName": "URL Authorization", + "Name": "Web-Url-Auth", + "Installed": false + }, + { + "DisplayName": "Windows Authentication", + "Name": "Web-Windows-Auth", + "Installed": false + }, + { + "DisplayName": "Application Development", + "Name": "Web-App-Dev", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 3.5", + "Name": "Web-Net-Ext", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 4.7", + "Name": "Web-Net-Ext45", + "Installed": false + }, + { + "DisplayName": "Application Initialization", + "Name": "Web-AppInit", + "Installed": false + }, + { + "DisplayName": "ASP", + "Name": "Web-ASP", + "Installed": false + }, + { + "DisplayName": "ASP.NET 3.5", + "Name": "Web-Asp-Net", + "Installed": false + }, + { + "DisplayName": "ASP.NET 4.7", + "Name": "Web-Asp-Net45", + "Installed": false + }, + { + "DisplayName": "CGI", + "Name": "Web-CGI", + "Installed": false + }, + { + "DisplayName": "ISAPI Extensions", + "Name": "Web-ISAPI-Ext", + "Installed": false + }, + { + "DisplayName": "ISAPI Filters", + "Name": "Web-ISAPI-Filter", + "Installed": false + }, + { + "DisplayName": "Server Side Includes", + "Name": "Web-Includes", + "Installed": false + }, + { + "DisplayName": "WebSocket Protocol", + "Name": "Web-WebSockets", + "Installed": false + }, + { + "DisplayName": "FTP Server", + "Name": "Web-Ftp-Server", + "Installed": false + }, + { + "DisplayName": "FTP Service", + "Name": "Web-Ftp-Service", + "Installed": false + }, + { + "DisplayName": "FTP Extensibility", + "Name": "Web-Ftp-Ext", + "Installed": false + }, + { + "DisplayName": "Management Tools", + "Name": "Web-Mgmt-Tools", + "Installed": false + }, + { + "DisplayName": "IIS Management Console", + "Name": "Web-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Compatibility", + "Name": "Web-Mgmt-Compat", + "Installed": false + }, + { + "DisplayName": "IIS 6 Metabase Compatibility", + "Name": "Web-Metabase", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Console", + "Name": "Web-Lgcy-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Scripting Tools", + "Name": "Web-Lgcy-Scripting", + "Installed": false + }, + { + "DisplayName": "IIS 6 WMI Compatibility", + "Name": "Web-WMI", + "Installed": false + }, + { + "DisplayName": "IIS Management Scripts and Tools", + "Name": "Web-Scripting-Tools", + "Installed": false + }, + { + "DisplayName": "Management Service", + "Name": "Web-Mgmt-Service", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services", + "Name": "WDS", + "Installed": false + }, + { + "DisplayName": "Deployment Server", + "Name": "WDS-Deployment", + "Installed": false + }, + { + "DisplayName": "Transport Server", + "Name": "WDS-Transport", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services", + "Name": "UpdateServices", + "Installed": false + }, + { + "DisplayName": "WID Connectivity", + "Name": "UpdateServices-WidDB", + "Installed": false + }, + { + "DisplayName": "WSUS Services", + "Name": "UpdateServices-Services", + "Installed": false + }, + { + "DisplayName": "SQL Server Connectivity", + "Name": "UpdateServices-DB", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 Features", + "Name": "NET-Framework-Features", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 (includes .NET 2.0 and 3.0)", + "Name": "NET-Framework-Core", + "Installed": false + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-HTTP-Activation", + "Installed": false + }, + { + "DisplayName": "Non-HTTP Activation", + "Name": "NET-Non-HTTP-Activ", + "Installed": false + }, + { + "DisplayName": ".NET Framework 4.7 Features", + "Name": "NET-Framework-45-Features", + "Installed": true + }, + { + "DisplayName": ".NET Framework 4.7", + "Name": "NET-Framework-45-Core", + "Installed": true + }, + { + "DisplayName": "ASP.NET 4.7", + "Name": "NET-Framework-45-ASPNET", + "Installed": false + }, + { + "DisplayName": "WCF Services", + "Name": "NET-WCF-Services45", + "Installed": true + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-WCF-HTTP-Activation45", + "Installed": false + }, + { + "DisplayName": "Message Queuing (MSMQ) Activation", + "Name": "NET-WCF-MSMQ-Activation45", + "Installed": false + }, + { + "DisplayName": "Named Pipe Activation", + "Name": "NET-WCF-Pipe-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Activation", + "Name": "NET-WCF-TCP-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Port Sharing", + "Name": "NET-WCF-TCP-PortSharing45", + "Installed": true + }, + { + "DisplayName": "Background Intelligent Transfer Service (BITS)", + "Name": "BITS", + "Installed": false + }, + { + "DisplayName": "IIS Server Extension", + "Name": "BITS-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "Compact Server", + "Name": "BITS-Compact-Server", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption", + "Name": "BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Network Unlock", + "Name": "BitLocker-NetworkUnlock", + "Installed": false + }, + { + "DisplayName": "BranchCache", + "Name": "BranchCache", + "Installed": false + }, + { + "DisplayName": "Client for NFS", + "Name": "NFS-Client", + "Installed": false + }, + { + "DisplayName": "Containers", + "Name": "Containers", + "Installed": false + }, + { + "DisplayName": "Data Center Bridging", + "Name": "Data-Center-Bridging", + "Installed": false + }, + { + "DisplayName": "Direct Play", + "Name": "Direct-Play", + "Installed": false + }, + { + "DisplayName": "Enhanced Storage", + "Name": "EnhancedStorage", + "Installed": false + }, + { + "DisplayName": "Failover Clustering", + "Name": "Failover-Clustering", + "Installed": false + }, + { + "DisplayName": "Group Policy Management", + "Name": "GPMC", + "Installed": false + }, + { + "DisplayName": "Host Guardian Hyper-V Support", + "Name": "HostGuardian", + "Installed": false + }, + { + "DisplayName": "I/O Quality of Service", + "Name": "DiskIo-QoS", + "Installed": false + }, + { + "DisplayName": "IIS Hostable Web Core", + "Name": "Web-WHC", + "Installed": false + }, + { + "DisplayName": "Internet Printing Client", + "Name": "Internet-Print-Client", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Server", + "Name": "IPAM", + "Installed": false + }, + { + "DisplayName": "iSNS Server service", + "Name": "ISNS", + "Installed": false + }, + { + "DisplayName": "LPR Port Monitor", + "Name": "LPR-Port-Monitor", + "Installed": false + }, + { + "DisplayName": "Management OData IIS Extension", + "Name": "ManagementOdata", + "Installed": false + }, + { + "DisplayName": "Media Foundation", + "Name": "Server-Media-Foundation", + "Installed": false + }, + { + "DisplayName": "Message Queuing", + "Name": "MSMQ", + "Installed": false + }, + { + "DisplayName": "Message Queuing Services", + "Name": "MSMQ-Services", + "Installed": false + }, + { + "DisplayName": "Message Queuing Server", + "Name": "MSMQ-Server", + "Installed": false + }, + { + "DisplayName": "Directory Service Integration", + "Name": "MSMQ-Directory", + "Installed": false + }, + { + "DisplayName": "HTTP Support", + "Name": "MSMQ-HTTP-Support", + "Installed": false + }, + { + "DisplayName": "Message Queuing Triggers", + "Name": "MSMQ-Triggers", + "Installed": false + }, + { + "DisplayName": "Multicasting Support", + "Name": "MSMQ-Multicasting", + "Installed": false + }, + { + "DisplayName": "Routing Service", + "Name": "MSMQ-Routing", + "Installed": false + }, + { + "DisplayName": "Message Queuing DCOM Proxy", + "Name": "MSMQ-DCOM", + "Installed": false + }, + { + "DisplayName": "Multipath I/O", + "Name": "Multipath-IO", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector", + "Name": "MultiPoint-Connector", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector Services", + "Name": "MultiPoint-Connector-Services", + "Installed": false + }, + { + "DisplayName": "MultiPoint Manager and MultiPoint Dashboard", + "Name": "MultiPoint-Tools", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing", + "Name": "NLB", + "Installed": false + }, + { + "DisplayName": "Network Virtualization", + "Name": "NetworkVirtualization", + "Installed": false + }, + { + "DisplayName": "Peer Name Resolution Protocol", + "Name": "PNRP", + "Installed": false + }, + { + "DisplayName": "Quality Windows Audio Video Experience", + "Name": "qWave", + "Installed": false + }, + { + "DisplayName": "RAS Connection Manager Administration Kit (CMAK)", + "Name": "CMAK", + "Installed": false + }, + { + "DisplayName": "Remote Assistance", + "Name": "Remote-Assistance", + "Installed": false + }, + { + "DisplayName": "Remote Differential Compression", + "Name": "RDC", + "Installed": false + }, + { + "DisplayName": "Remote Server Administration Tools", + "Name": "RSAT", + "Installed": false + }, + { + "DisplayName": "Feature Administration Tools", + "Name": "RSAT-Feature-Tools", + "Installed": false + }, + { + "DisplayName": "SMTP Server Tools", + "Name": "RSAT-SMTP", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Administration Utilities", + "Name": "RSAT-Feature-Tools-BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Tools", + "Name": "RSAT-Feature-Tools-BitLocker-RemoteAdminTool", + "Installed": false + }, + { + "DisplayName": "BitLocker Recovery Password Viewer", + "Name": "RSAT-Feature-Tools-BitLocker-BdeAducExt", + "Installed": false + }, + { + "DisplayName": "BITS Server Extensions Tools", + "Name": "RSAT-Bits-Server", + "Installed": false + }, + { + "DisplayName": "DataCenterBridging LLDP Tools", + "Name": "RSAT-DataCenterBridging-LLDP-Tools", + "Installed": false + }, + { + "DisplayName": "Failover Clustering Tools", + "Name": "RSAT-Clustering", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Management Tools", + "Name": "RSAT-Clustering-Mgmt", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Module for Windows PowerShell", + "Name": "RSAT-Clustering-PowerShell", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Automation Server", + "Name": "RSAT-Clustering-AutomationServer", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Command Interface", + "Name": "RSAT-Clustering-CmdInterface", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Client", + "Name": "IPAM-Client-Feature", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing Tools", + "Name": "RSAT-NLB", + "Installed": false + }, + { + "DisplayName": "Shielded VM Tools", + "Name": "RSAT-Shielded-VM-Tools", + "Installed": false + }, + { + "DisplayName": "SNMP Tools", + "Name": "RSAT-SNMP", + "Installed": false + }, + { + "DisplayName": "Storage Replica Module for Windows PowerShell", + "Name": "RSAT-Storage-Replica", + "Installed": false + }, + { + "DisplayName": "WINS Server Tools", + "Name": "RSAT-WINS", + "Installed": false + }, + { + "DisplayName": "Role Administration Tools", + "Name": "RSAT-Role-Tools", + "Installed": false + }, + { + "DisplayName": "AD DS and AD LDS Tools", + "Name": "RSAT-AD-Tools", + "Installed": false + }, + { + "DisplayName": "Active Directory module for Windows PowerShell", + "Name": "RSAT-AD-PowerShell", + "Installed": false + }, + { + "DisplayName": "AD DS Tools", + "Name": "RSAT-ADDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Administrative Center", + "Name": "RSAT-AD-AdminCenter", + "Installed": false + }, + { + "DisplayName": "AD DS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADDS-Tools", + "Installed": false + }, + { + "DisplayName": "AD LDS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADLDS", + "Installed": false + }, + { + "DisplayName": "Hyper-V Management Tools", + "Name": "RSAT-Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V GUI Management Tools", + "Name": "Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V Module for Windows PowerShell", + "Name": "Hyper-V-PowerShell", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services Tools", + "Name": "RSAT-RDS-Tools", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway Tools", + "Name": "RSAT-RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Diagnoser Tools", + "Name": "RSAT-RDS-Licensing-Diagnosis-UI", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Tools", + "Name": "RDS-Licensing-UI", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services Tools", + "Name": "UpdateServices-RSAT", + "Installed": false + }, + { + "DisplayName": "API and PowerShell cmdlets", + "Name": "UpdateServices-API", + "Installed": false + }, + { + "DisplayName": "User Interface Management Console", + "Name": "UpdateServices-UI", + "Installed": false + }, + { + "DisplayName": "Active Directory Certificate Services Tools", + "Name": "RSAT-ADCS", + "Installed": false + }, + { + "DisplayName": "Certification Authority Management Tools", + "Name": "RSAT-ADCS-Mgmt", + "Installed": false + }, + { + "DisplayName": "Online Responder Tools", + "Name": "RSAT-Online-Responder", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services Tools", + "Name": "RSAT-ADRMS", + "Installed": false + }, + { + "DisplayName": "DHCP Server Tools", + "Name": "RSAT-DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server Tools", + "Name": "RSAT-DNS-Server", + "Installed": false + }, + { + "DisplayName": "Fax Server Tools", + "Name": "RSAT-Fax", + "Installed": false + }, + { + "DisplayName": "File Services Tools", + "Name": "RSAT-File-Services", + "Installed": false + }, + { + "DisplayName": "DFS Management Tools", + "Name": "RSAT-DFS-Mgmt-Con", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager Tools", + "Name": "RSAT-FSRM-Mgmt", + "Installed": false + }, + { + "DisplayName": "Services for Network File System Management Tools", + "Name": "RSAT-NFS-Admin", + "Installed": false + }, + { + "DisplayName": "Network Controller Management Tools", + "Name": "RSAT-NetworkController", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services Tools", + "Name": "RSAT-NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services Tools", + "Name": "RSAT-Print-Services", + "Installed": false + }, + { + "DisplayName": "Remote Access Management Tools", + "Name": "RSAT-RemoteAccess", + "Installed": false + }, + { + "DisplayName": "Remote Access GUI and Command-Line Tools", + "Name": "RSAT-RemoteAccess-Mgmt", + "Installed": false + }, + { + "DisplayName": "Remote Access module for Windows PowerShell", + "Name": "RSAT-RemoteAccess-PowerShell", + "Installed": false + }, + { + "DisplayName": "Volume Activation Tools", + "Name": "RSAT-VA-Tools", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services Tools", + "Name": "WDS-AdminPack", + "Installed": false + }, + { + "DisplayName": "RPC over HTTP Proxy", + "Name": "RPC-over-HTTP-Proxy", + "Installed": false + }, + { + "DisplayName": "Setup and Boot Event Collection", + "Name": "Setup-and-Boot-Event-Collection", + "Installed": false + }, + { + "DisplayName": "Simple TCP/IP Services", + "Name": "Simple-TCPIP", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS File Sharing Support", + "Name": "FS-SMB1", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS Client", + "Name": "FS-SMB1-CLIENT", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS Server", + "Name": "FS-SMB1-SERVER", + "Installed": false + }, + { + "DisplayName": "SMB Bandwidth Limit", + "Name": "FS-SMBBW", + "Installed": false + }, + { + "DisplayName": "SMTP Server", + "Name": "SMTP-Server", + "Installed": false + }, + { + "DisplayName": "SNMP Service", + "Name": "SNMP-Service", + "Installed": false + }, + { + "DisplayName": "SNMP WMI Provider", + "Name": "SNMP-WMI-Provider", + "Installed": false + }, + { + "DisplayName": "Software Load Balancer", + "Name": "SoftwareLoadBalancer", + "Installed": false + }, + { + "DisplayName": "Storage Replica", + "Name": "Storage-Replica", + "Installed": false + }, + { + "DisplayName": "Telnet Client", + "Name": "Telnet-Client", + "Installed": false + }, + { + "DisplayName": "TFTP Client", + "Name": "TFTP-Client", + "Installed": false + }, + { + "DisplayName": "VM Shielding Tools for Fabric Management", + "Name": "FabricShieldedTools", + "Installed": false + }, + { + "DisplayName": "WebDAV Redirector", + "Name": "WebDAV-Redirector", + "Installed": false + }, + { + "DisplayName": "Windows Biometric Framework", + "Name": "Biometric-Framework", + "Installed": false + }, + { + "DisplayName": "Windows Defender Antivirus", + "Name": "Windows-Defender", + "Installed": true + }, + { + "DisplayName": "Windows Identity Foundation 3.5", + "Name": "Windows-Identity-Foundation", + "Installed": false + }, + { + "DisplayName": "Windows Internal Database", + "Name": "Windows-Internal-Database", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell", + "Name": "PowerShellRoot", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 5.1", + "Name": "PowerShell", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 2.0 Engine", + "Name": "PowerShell-V2", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell Desired State Configuration Service", + "Name": "DSC-Service", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell ISE", + "Name": "PowerShell-ISE", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell Web Access", + "Name": "WindowsPowerShellWebAccess", + "Installed": false + }, + { + "DisplayName": "Windows Process Activation Service", + "Name": "WAS", + "Installed": false + }, + { + "DisplayName": "Process Model", + "Name": "WAS-Process-Model", + "Installed": false + }, + { + "DisplayName": ".NET Environment 3.5", + "Name": "WAS-NET-Environment", + "Installed": false + }, + { + "DisplayName": "Configuration APIs", + "Name": "WAS-Config-APIs", + "Installed": false + }, + { + "DisplayName": "Windows Search Service", + "Name": "Search-Service", + "Installed": false + }, + { + "DisplayName": "Windows Server Backup", + "Name": "Windows-Server-Backup", + "Installed": false + }, + { + "DisplayName": "Windows Server Migration Tools", + "Name": "Migration", + "Installed": false + }, + { + "DisplayName": "Windows Standards-Based Storage Management", + "Name": "WindowsStorageManagementService", + "Installed": false + }, + { + "DisplayName": "Windows Subsystem for Linux", + "Name": "Microsoft-Windows-Subsystem-Linux", + "Installed": false + }, + { + "DisplayName": "Windows TIFF IFilter", + "Name": "Windows-TIFF-IFilter", + "Installed": false + }, + { + "DisplayName": "WinRM IIS Extension", + "Name": "WinRM-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "WINS Server", + "Name": "WINS", + "Installed": false + }, + { + "DisplayName": "Wireless LAN Service", + "Name": "Wireless-Networking", + "Installed": false + }, + { + "DisplayName": "WoW64 Support", + "Name": "WoW64-Support", + "Installed": true + }, + { + "DisplayName": "XPS Viewer", + "Name": "XPS-Viewer", + "Installed": true + } +] +2020-03-06 11:07:27,532 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4836] PowerShell: Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json +2020-03-06 11:07:27,532 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 11:07:52,451 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: { + "Success": true, + "RestartNeeded": 1, + "FeatureResult": [ + { + "Id": 44, + "Name": "Telnet-Client", + "DisplayName": "Telnet Client", + "Success": true, + "RestartNeeded": false, + "Message": "", + "SkipReason": 0 + } + ], + "ExitCode": 0 +} +2020-03-06 11:07:52,451 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4836] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 11:07:52,451 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 11:07:53,360 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4836] stdout: [ + { + "DisplayName": "Active Directory Certificate Services", + "Name": "AD-Certificate", + "Installed": false + }, + { + "DisplayName": "Certification Authority", + "Name": "ADCS-Cert-Authority", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Policy Web Service", + "Name": "ADCS-Enroll-Web-Pol", + "Installed": false + }, + { + "DisplayName": "Certificate Enrollment Web Service", + "Name": "ADCS-Enroll-Web-Svc", + "Installed": false + }, + { + "DisplayName": "Certification Authority Web Enrollment", + "Name": "ADCS-Web-Enrollment", + "Installed": false + }, + { + "DisplayName": "Network Device Enrollment Service", + "Name": "ADCS-Device-Enrollment", + "Installed": false + }, + { + "DisplayName": "Online Responder", + "Name": "ADCS-Online-Cert", + "Installed": false + }, + { + "DisplayName": "Active Directory Domain Services", + "Name": "AD-Domain-Services", + "Installed": false + }, + { + "DisplayName": "Active Directory Federation Services", + "Name": "ADFS-Federation", + "Installed": false + }, + { + "DisplayName": "Active Directory Lightweight Directory Services", + "Name": "ADLDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services", + "Name": "ADRMS", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Server", + "Name": "ADRMS-Server", + "Installed": false + }, + { + "DisplayName": "Identity Federation Support", + "Name": "ADRMS-Identity", + "Installed": false + }, + { + "DisplayName": "Device Health Attestation", + "Name": "DeviceHealthAttestationService", + "Installed": false + }, + { + "DisplayName": "DHCP Server", + "Name": "DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server", + "Name": "DNS", + "Installed": false + }, + { + "DisplayName": "Fax Server", + "Name": "Fax", + "Installed": false + }, + { + "DisplayName": "File and Storage Services", + "Name": "FileAndStorage-Services", + "Installed": true + }, + { + "DisplayName": "File and iSCSI Services", + "Name": "File-Services", + "Installed": false + }, + { + "DisplayName": "File Server", + "Name": "FS-FileServer", + "Installed": false + }, + { + "DisplayName": "BranchCache for Network Files", + "Name": "FS-BranchCache", + "Installed": false + }, + { + "DisplayName": "Data Deduplication", + "Name": "FS-Data-Deduplication", + "Installed": false + }, + { + "DisplayName": "DFS Namespaces", + "Name": "FS-DFS-Namespace", + "Installed": false + }, + { + "DisplayName": "DFS Replication", + "Name": "FS-DFS-Replication", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager", + "Name": "FS-Resource-Manager", + "Installed": false + }, + { + "DisplayName": "File Server VSS Agent Service", + "Name": "FS-VSS-Agent", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Server", + "Name": "FS-iSCSITarget-Server", + "Installed": false + }, + { + "DisplayName": "iSCSI Target Storage Provider (VDS and VSS hardware providers)", + "Name": "iSCSITarget-VSS-VDS", + "Installed": false + }, + { + "DisplayName": "Server for NFS", + "Name": "FS-NFS-Service", + "Installed": false + }, + { + "DisplayName": "Work Folders", + "Name": "FS-SyncShareService", + "Installed": false + }, + { + "DisplayName": "Storage Services", + "Name": "Storage-Services", + "Installed": true + }, + { + "DisplayName": "Host Guardian Service", + "Name": "HostGuardianServiceRole", + "Installed": false + }, + { + "DisplayName": "Hyper-V", + "Name": "Hyper-V", + "Installed": false + }, + { + "DisplayName": "Network Controller", + "Name": "NetworkController", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services", + "Name": "NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services", + "Name": "Print-Services", + "Installed": false + }, + { + "DisplayName": "Print Server", + "Name": "Print-Server", + "Installed": false + }, + { + "DisplayName": "Internet Printing", + "Name": "Print-Internet", + "Installed": false + }, + { + "DisplayName": "LPD Service", + "Name": "Print-LPD-Service", + "Installed": false + }, + { + "DisplayName": "Remote Access", + "Name": "RemoteAccess", + "Installed": false + }, + { + "DisplayName": "DirectAccess and VPN (RAS)", + "Name": "DirectAccess-VPN", + "Installed": false + }, + { + "DisplayName": "Routing", + "Name": "Routing", + "Installed": false + }, + { + "DisplayName": "Web Application Proxy", + "Name": "Web-Application-Proxy", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services", + "Name": "Remote-Desktop-Services", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Connection Broker", + "Name": "RDS-Connection-Broker", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway", + "Name": "RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing", + "Name": "RDS-Licensing", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Session Host", + "Name": "RDS-RD-Server", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Virtualization Host", + "Name": "RDS-Virtualization", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Web Access", + "Name": "RDS-Web-Access", + "Installed": false + }, + { + "DisplayName": "Volume Activation Services", + "Name": "VolumeActivation", + "Installed": false + }, + { + "DisplayName": "Web Server (IIS)", + "Name": "Web-Server", + "Installed": false + }, + { + "DisplayName": "Web Server", + "Name": "Web-WebServer", + "Installed": false + }, + { + "DisplayName": "Common HTTP Features", + "Name": "Web-Common-Http", + "Installed": false + }, + { + "DisplayName": "Default Document", + "Name": "Web-Default-Doc", + "Installed": false + }, + { + "DisplayName": "Directory Browsing", + "Name": "Web-Dir-Browsing", + "Installed": false + }, + { + "DisplayName": "HTTP Errors", + "Name": "Web-Http-Errors", + "Installed": false + }, + { + "DisplayName": "Static Content", + "Name": "Web-Static-Content", + "Installed": false + }, + { + "DisplayName": "HTTP Redirection", + "Name": "Web-Http-Redirect", + "Installed": false + }, + { + "DisplayName": "WebDAV Publishing", + "Name": "Web-DAV-Publishing", + "Installed": false + }, + { + "DisplayName": "Health and Diagnostics", + "Name": "Web-Health", + "Installed": false + }, + { + "DisplayName": "HTTP Logging", + "Name": "Web-Http-Logging", + "Installed": false + }, + { + "DisplayName": "Custom Logging", + "Name": "Web-Custom-Logging", + "Installed": false + }, + { + "DisplayName": "Logging Tools", + "Name": "Web-Log-Libraries", + "Installed": false + }, + { + "DisplayName": "ODBC Logging", + "Name": "Web-ODBC-Logging", + "Installed": false + }, + { + "DisplayName": "Request Monitor", + "Name": "Web-Request-Monitor", + "Installed": false + }, + { + "DisplayName": "Tracing", + "Name": "Web-Http-Tracing", + "Installed": false + }, + { + "DisplayName": "Performance", + "Name": "Web-Performance", + "Installed": false + }, + { + "DisplayName": "Static Content Compression", + "Name": "Web-Stat-Compression", + "Installed": false + }, + { + "DisplayName": "Dynamic Content Compression", + "Name": "Web-Dyn-Compression", + "Installed": false + }, + { + "DisplayName": "Security", + "Name": "Web-Security", + "Installed": false + }, + { + "DisplayName": "Request Filtering", + "Name": "Web-Filtering", + "Installed": false + }, + { + "DisplayName": "Basic Authentication", + "Name": "Web-Basic-Auth", + "Installed": false + }, + { + "DisplayName": "Centralized SSL Certificate Support", + "Name": "Web-CertProvider", + "Installed": false + }, + { + "DisplayName": "Client Certificate Mapping Authentication", + "Name": "Web-Client-Auth", + "Installed": false + }, + { + "DisplayName": "Digest Authentication", + "Name": "Web-Digest-Auth", + "Installed": false + }, + { + "DisplayName": "IIS Client Certificate Mapping Authentication", + "Name": "Web-Cert-Auth", + "Installed": false + }, + { + "DisplayName": "IP and Domain Restrictions", + "Name": "Web-IP-Security", + "Installed": false + }, + { + "DisplayName": "URL Authorization", + "Name": "Web-Url-Auth", + "Installed": false + }, + { + "DisplayName": "Windows Authentication", + "Name": "Web-Windows-Auth", + "Installed": false + }, + { + "DisplayName": "Application Development", + "Name": "Web-App-Dev", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 3.5", + "Name": "Web-Net-Ext", + "Installed": false + }, + { + "DisplayName": ".NET Extensibility 4.7", + "Name": "Web-Net-Ext45", + "Installed": false + }, + { + "DisplayName": "Application Initialization", + "Name": "Web-AppInit", + "Installed": false + }, + { + "DisplayName": "ASP", + "Name": "Web-ASP", + "Installed": false + }, + { + "DisplayName": "ASP.NET 3.5", + "Name": "Web-Asp-Net", + "Installed": false + }, + { + "DisplayName": "ASP.NET 4.7", + "Name": "Web-Asp-Net45", + "Installed": false + }, + { + "DisplayName": "CGI", + "Name": "Web-CGI", + "Installed": false + }, + { + "DisplayName": "ISAPI Extensions", + "Name": "Web-ISAPI-Ext", + "Installed": false + }, + { + "DisplayName": "ISAPI Filters", + "Name": "Web-ISAPI-Filter", + "Installed": false + }, + { + "DisplayName": "Server Side Includes", + "Name": "Web-Includes", + "Installed": false + }, + { + "DisplayName": "WebSocket Protocol", + "Name": "Web-WebSockets", + "Installed": false + }, + { + "DisplayName": "FTP Server", + "Name": "Web-Ftp-Server", + "Installed": false + }, + { + "DisplayName": "FTP Service", + "Name": "Web-Ftp-Service", + "Installed": false + }, + { + "DisplayName": "FTP Extensibility", + "Name": "Web-Ftp-Ext", + "Installed": false + }, + { + "DisplayName": "Management Tools", + "Name": "Web-Mgmt-Tools", + "Installed": false + }, + { + "DisplayName": "IIS Management Console", + "Name": "Web-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Compatibility", + "Name": "Web-Mgmt-Compat", + "Installed": false + }, + { + "DisplayName": "IIS 6 Metabase Compatibility", + "Name": "Web-Metabase", + "Installed": false + }, + { + "DisplayName": "IIS 6 Management Console", + "Name": "Web-Lgcy-Mgmt-Console", + "Installed": false + }, + { + "DisplayName": "IIS 6 Scripting Tools", + "Name": "Web-Lgcy-Scripting", + "Installed": false + }, + { + "DisplayName": "IIS 6 WMI Compatibility", + "Name": "Web-WMI", + "Installed": false + }, + { + "DisplayName": "IIS Management Scripts and Tools", + "Name": "Web-Scripting-Tools", + "Installed": false + }, + { + "DisplayName": "Management Service", + "Name": "Web-Mgmt-Service", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services", + "Name": "WDS", + "Installed": false + }, + { + "DisplayName": "Deployment Server", + "Name": "WDS-Deployment", + "Installed": false + }, + { + "DisplayName": "Transport Server", + "Name": "WDS-Transport", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services", + "Name": "UpdateServices", + "Installed": false + }, + { + "DisplayName": "WID Connectivity", + "Name": "UpdateServices-WidDB", + "Installed": false + }, + { + "DisplayName": "WSUS Services", + "Name": "UpdateServices-Services", + "Installed": false + }, + { + "DisplayName": "SQL Server Connectivity", + "Name": "UpdateServices-DB", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 Features", + "Name": "NET-Framework-Features", + "Installed": false + }, + { + "DisplayName": ".NET Framework 3.5 (includes .NET 2.0 and 3.0)", + "Name": "NET-Framework-Core", + "Installed": false + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-HTTP-Activation", + "Installed": false + }, + { + "DisplayName": "Non-HTTP Activation", + "Name": "NET-Non-HTTP-Activ", + "Installed": false + }, + { + "DisplayName": ".NET Framework 4.7 Features", + "Name": "NET-Framework-45-Features", + "Installed": true + }, + { + "DisplayName": ".NET Framework 4.7", + "Name": "NET-Framework-45-Core", + "Installed": true + }, + { + "DisplayName": "ASP.NET 4.7", + "Name": "NET-Framework-45-ASPNET", + "Installed": false + }, + { + "DisplayName": "WCF Services", + "Name": "NET-WCF-Services45", + "Installed": true + }, + { + "DisplayName": "HTTP Activation", + "Name": "NET-WCF-HTTP-Activation45", + "Installed": false + }, + { + "DisplayName": "Message Queuing (MSMQ) Activation", + "Name": "NET-WCF-MSMQ-Activation45", + "Installed": false + }, + { + "DisplayName": "Named Pipe Activation", + "Name": "NET-WCF-Pipe-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Activation", + "Name": "NET-WCF-TCP-Activation45", + "Installed": false + }, + { + "DisplayName": "TCP Port Sharing", + "Name": "NET-WCF-TCP-PortSharing45", + "Installed": true + }, + { + "DisplayName": "Background Intelligent Transfer Service (BITS)", + "Name": "BITS", + "Installed": false + }, + { + "DisplayName": "IIS Server Extension", + "Name": "BITS-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "Compact Server", + "Name": "BITS-Compact-Server", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption", + "Name": "BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Network Unlock", + "Name": "BitLocker-NetworkUnlock", + "Installed": false + }, + { + "DisplayName": "BranchCache", + "Name": "BranchCache", + "Installed": false + }, + { + "DisplayName": "Client for NFS", + "Name": "NFS-Client", + "Installed": false + }, + { + "DisplayName": "Containers", + "Name": "Containers", + "Installed": false + }, + { + "DisplayName": "Data Center Bridging", + "Name": "Data-Center-Bridging", + "Installed": false + }, + { + "DisplayName": "Direct Play", + "Name": "Direct-Play", + "Installed": false + }, + { + "DisplayName": "Enhanced Storage", + "Name": "EnhancedStorage", + "Installed": false + }, + { + "DisplayName": "Failover Clustering", + "Name": "Failover-Clustering", + "Installed": false + }, + { + "DisplayName": "Group Policy Management", + "Name": "GPMC", + "Installed": false + }, + { + "DisplayName": "Host Guardian Hyper-V Support", + "Name": "HostGuardian", + "Installed": false + }, + { + "DisplayName": "I/O Quality of Service", + "Name": "DiskIo-QoS", + "Installed": false + }, + { + "DisplayName": "IIS Hostable Web Core", + "Name": "Web-WHC", + "Installed": false + }, + { + "DisplayName": "Internet Printing Client", + "Name": "Internet-Print-Client", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Server", + "Name": "IPAM", + "Installed": false + }, + { + "DisplayName": "iSNS Server service", + "Name": "ISNS", + "Installed": false + }, + { + "DisplayName": "LPR Port Monitor", + "Name": "LPR-Port-Monitor", + "Installed": false + }, + { + "DisplayName": "Management OData IIS Extension", + "Name": "ManagementOdata", + "Installed": false + }, + { + "DisplayName": "Media Foundation", + "Name": "Server-Media-Foundation", + "Installed": false + }, + { + "DisplayName": "Message Queuing", + "Name": "MSMQ", + "Installed": false + }, + { + "DisplayName": "Message Queuing Services", + "Name": "MSMQ-Services", + "Installed": false + }, + { + "DisplayName": "Message Queuing Server", + "Name": "MSMQ-Server", + "Installed": false + }, + { + "DisplayName": "Directory Service Integration", + "Name": "MSMQ-Directory", + "Installed": false + }, + { + "DisplayName": "HTTP Support", + "Name": "MSMQ-HTTP-Support", + "Installed": false + }, + { + "DisplayName": "Message Queuing Triggers", + "Name": "MSMQ-Triggers", + "Installed": false + }, + { + "DisplayName": "Multicasting Support", + "Name": "MSMQ-Multicasting", + "Installed": false + }, + { + "DisplayName": "Routing Service", + "Name": "MSMQ-Routing", + "Installed": false + }, + { + "DisplayName": "Message Queuing DCOM Proxy", + "Name": "MSMQ-DCOM", + "Installed": false + }, + { + "DisplayName": "Multipath I/O", + "Name": "Multipath-IO", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector", + "Name": "MultiPoint-Connector", + "Installed": false + }, + { + "DisplayName": "MultiPoint Connector Services", + "Name": "MultiPoint-Connector-Services", + "Installed": false + }, + { + "DisplayName": "MultiPoint Manager and MultiPoint Dashboard", + "Name": "MultiPoint-Tools", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing", + "Name": "NLB", + "Installed": false + }, + { + "DisplayName": "Network Virtualization", + "Name": "NetworkVirtualization", + "Installed": false + }, + { + "DisplayName": "Peer Name Resolution Protocol", + "Name": "PNRP", + "Installed": false + }, + { + "DisplayName": "Quality Windows Audio Video Experience", + "Name": "qWave", + "Installed": false + }, + { + "DisplayName": "RAS Connection Manager Administration Kit (CMAK)", + "Name": "CMAK", + "Installed": false + }, + { + "DisplayName": "Remote Assistance", + "Name": "Remote-Assistance", + "Installed": false + }, + { + "DisplayName": "Remote Differential Compression", + "Name": "RDC", + "Installed": false + }, + { + "DisplayName": "Remote Server Administration Tools", + "Name": "RSAT", + "Installed": false + }, + { + "DisplayName": "Feature Administration Tools", + "Name": "RSAT-Feature-Tools", + "Installed": false + }, + { + "DisplayName": "SMTP Server Tools", + "Name": "RSAT-SMTP", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Administration Utilities", + "Name": "RSAT-Feature-Tools-BitLocker", + "Installed": false + }, + { + "DisplayName": "BitLocker Drive Encryption Tools", + "Name": "RSAT-Feature-Tools-BitLocker-RemoteAdminTool", + "Installed": false + }, + { + "DisplayName": "BitLocker Recovery Password Viewer", + "Name": "RSAT-Feature-Tools-BitLocker-BdeAducExt", + "Installed": false + }, + { + "DisplayName": "BITS Server Extensions Tools", + "Name": "RSAT-Bits-Server", + "Installed": false + }, + { + "DisplayName": "DataCenterBridging LLDP Tools", + "Name": "RSAT-DataCenterBridging-LLDP-Tools", + "Installed": false + }, + { + "DisplayName": "Failover Clustering Tools", + "Name": "RSAT-Clustering", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Management Tools", + "Name": "RSAT-Clustering-Mgmt", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Module for Windows PowerShell", + "Name": "RSAT-Clustering-PowerShell", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Automation Server", + "Name": "RSAT-Clustering-AutomationServer", + "Installed": false + }, + { + "DisplayName": "Failover Cluster Command Interface", + "Name": "RSAT-Clustering-CmdInterface", + "Installed": false + }, + { + "DisplayName": "IP Address Management (IPAM) Client", + "Name": "IPAM-Client-Feature", + "Installed": false + }, + { + "DisplayName": "Network Load Balancing Tools", + "Name": "RSAT-NLB", + "Installed": false + }, + { + "DisplayName": "Shielded VM Tools", + "Name": "RSAT-Shielded-VM-Tools", + "Installed": false + }, + { + "DisplayName": "SNMP Tools", + "Name": "RSAT-SNMP", + "Installed": false + }, + { + "DisplayName": "Storage Replica Module for Windows PowerShell", + "Name": "RSAT-Storage-Replica", + "Installed": false + }, + { + "DisplayName": "WINS Server Tools", + "Name": "RSAT-WINS", + "Installed": false + }, + { + "DisplayName": "Role Administration Tools", + "Name": "RSAT-Role-Tools", + "Installed": false + }, + { + "DisplayName": "AD DS and AD LDS Tools", + "Name": "RSAT-AD-Tools", + "Installed": false + }, + { + "DisplayName": "Active Directory module for Windows PowerShell", + "Name": "RSAT-AD-PowerShell", + "Installed": false + }, + { + "DisplayName": "AD DS Tools", + "Name": "RSAT-ADDS", + "Installed": false + }, + { + "DisplayName": "Active Directory Administrative Center", + "Name": "RSAT-AD-AdminCenter", + "Installed": false + }, + { + "DisplayName": "AD DS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADDS-Tools", + "Installed": false + }, + { + "DisplayName": "AD LDS Snap-Ins and Command-Line Tools", + "Name": "RSAT-ADLDS", + "Installed": false + }, + { + "DisplayName": "Hyper-V Management Tools", + "Name": "RSAT-Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V GUI Management Tools", + "Name": "Hyper-V-Tools", + "Installed": false + }, + { + "DisplayName": "Hyper-V Module for Windows PowerShell", + "Name": "Hyper-V-PowerShell", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Services Tools", + "Name": "RSAT-RDS-Tools", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Gateway Tools", + "Name": "RSAT-RDS-Gateway", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Diagnoser Tools", + "Name": "RSAT-RDS-Licensing-Diagnosis-UI", + "Installed": false + }, + { + "DisplayName": "Remote Desktop Licensing Tools", + "Name": "RDS-Licensing-UI", + "Installed": false + }, + { + "DisplayName": "Windows Server Update Services Tools", + "Name": "UpdateServices-RSAT", + "Installed": false + }, + { + "DisplayName": "API and PowerShell cmdlets", + "Name": "UpdateServices-API", + "Installed": false + }, + { + "DisplayName": "User Interface Management Console", + "Name": "UpdateServices-UI", + "Installed": false + }, + { + "DisplayName": "Active Directory Certificate Services Tools", + "Name": "RSAT-ADCS", + "Installed": false + }, + { + "DisplayName": "Certification Authority Management Tools", + "Name": "RSAT-ADCS-Mgmt", + "Installed": false + }, + { + "DisplayName": "Online Responder Tools", + "Name": "RSAT-Online-Responder", + "Installed": false + }, + { + "DisplayName": "Active Directory Rights Management Services Tools", + "Name": "RSAT-ADRMS", + "Installed": false + }, + { + "DisplayName": "DHCP Server Tools", + "Name": "RSAT-DHCP", + "Installed": false + }, + { + "DisplayName": "DNS Server Tools", + "Name": "RSAT-DNS-Server", + "Installed": false + }, + { + "DisplayName": "Fax Server Tools", + "Name": "RSAT-Fax", + "Installed": false + }, + { + "DisplayName": "File Services Tools", + "Name": "RSAT-File-Services", + "Installed": false + }, + { + "DisplayName": "DFS Management Tools", + "Name": "RSAT-DFS-Mgmt-Con", + "Installed": false + }, + { + "DisplayName": "File Server Resource Manager Tools", + "Name": "RSAT-FSRM-Mgmt", + "Installed": false + }, + { + "DisplayName": "Services for Network File System Management Tools", + "Name": "RSAT-NFS-Admin", + "Installed": false + }, + { + "DisplayName": "Network Controller Management Tools", + "Name": "RSAT-NetworkController", + "Installed": false + }, + { + "DisplayName": "Network Policy and Access Services Tools", + "Name": "RSAT-NPAS", + "Installed": false + }, + { + "DisplayName": "Print and Document Services Tools", + "Name": "RSAT-Print-Services", + "Installed": false + }, + { + "DisplayName": "Remote Access Management Tools", + "Name": "RSAT-RemoteAccess", + "Installed": false + }, + { + "DisplayName": "Remote Access GUI and Command-Line Tools", + "Name": "RSAT-RemoteAccess-Mgmt", + "Installed": false + }, + { + "DisplayName": "Remote Access module for Windows PowerShell", + "Name": "RSAT-RemoteAccess-PowerShell", + "Installed": false + }, + { + "DisplayName": "Volume Activation Tools", + "Name": "RSAT-VA-Tools", + "Installed": false + }, + { + "DisplayName": "Windows Deployment Services Tools", + "Name": "WDS-AdminPack", + "Installed": false + }, + { + "DisplayName": "RPC over HTTP Proxy", + "Name": "RPC-over-HTTP-Proxy", + "Installed": false + }, + { + "DisplayName": "Setup and Boot Event Collection", + "Name": "Setup-and-Boot-Event-Collection", + "Installed": false + }, + { + "DisplayName": "Simple TCP/IP Services", + "Name": "Simple-TCPIP", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS File Sharing Support", + "Name": "FS-SMB1", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS Client", + "Name": "FS-SMB1-CLIENT", + "Installed": false + }, + { + "DisplayName": "SMB 1.0/CIFS Server", + "Name": "FS-SMB1-SERVER", + "Installed": false + }, + { + "DisplayName": "SMB Bandwidth Limit", + "Name": "FS-SMBBW", + "Installed": false + }, + { + "DisplayName": "SMTP Server", + "Name": "SMTP-Server", + "Installed": false + }, + { + "DisplayName": "SNMP Service", + "Name": "SNMP-Service", + "Installed": false + }, + { + "DisplayName": "SNMP WMI Provider", + "Name": "SNMP-WMI-Provider", + "Installed": false + }, + { + "DisplayName": "Software Load Balancer", + "Name": "SoftwareLoadBalancer", + "Installed": false + }, + { + "DisplayName": "Storage Replica", + "Name": "Storage-Replica", + "Installed": false + }, + { + "DisplayName": "Telnet Client", + "Name": "Telnet-Client", + "Installed": true + }, + { + "DisplayName": "TFTP Client", + "Name": "TFTP-Client", + "Installed": false + }, + { + "DisplayName": "VM Shielding Tools for Fabric Management", + "Name": "FabricShieldedTools", + "Installed": false + }, + { + "DisplayName": "WebDAV Redirector", + "Name": "WebDAV-Redirector", + "Installed": false + }, + { + "DisplayName": "Windows Biometric Framework", + "Name": "Biometric-Framework", + "Installed": false + }, + { + "DisplayName": "Windows Defender Antivirus", + "Name": "Windows-Defender", + "Installed": true + }, + { + "DisplayName": "Windows Identity Foundation 3.5", + "Name": "Windows-Identity-Foundation", + "Installed": false + }, + { + "DisplayName": "Windows Internal Database", + "Name": "Windows-Internal-Database", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell", + "Name": "PowerShellRoot", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 5.1", + "Name": "PowerShell", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell 2.0 Engine", + "Name": "PowerShell-V2", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell Desired State Configuration Service", + "Name": "DSC-Service", + "Installed": false + }, + { + "DisplayName": "Windows PowerShell ISE", + "Name": "PowerShell-ISE", + "Installed": true + }, + { + "DisplayName": "Windows PowerShell Web Access", + "Name": "WindowsPowerShellWebAccess", + "Installed": false + }, + { + "DisplayName": "Windows Process Activation Service", + "Name": "WAS", + "Installed": false + }, + { + "DisplayName": "Process Model", + "Name": "WAS-Process-Model", + "Installed": false + }, + { + "DisplayName": ".NET Environment 3.5", + "Name": "WAS-NET-Environment", + "Installed": false + }, + { + "DisplayName": "Configuration APIs", + "Name": "WAS-Config-APIs", + "Installed": false + }, + { + "DisplayName": "Windows Search Service", + "Name": "Search-Service", + "Installed": false + }, + { + "DisplayName": "Windows Server Backup", + "Name": "Windows-Server-Backup", + "Installed": false + }, + { + "DisplayName": "Windows Server Migration Tools", + "Name": "Migration", + "Installed": false + }, + { + "DisplayName": "Windows Standards-Based Storage Management", + "Name": "WindowsStorageManagementService", + "Installed": false + }, + { + "DisplayName": "Windows Subsystem for Linux", + "Name": "Microsoft-Windows-Subsystem-Linux", + "Installed": false + }, + { + "DisplayName": "Windows TIFF IFilter", + "Name": "Windows-TIFF-IFilter", + "Installed": false + }, + { + "DisplayName": "WinRM IIS Extension", + "Name": "WinRM-IIS-Ext", + "Installed": false + }, + { + "DisplayName": "WINS Server", + "Name": "WINS", + "Installed": false + }, + { + "DisplayName": "Wireless LAN Service", + "Name": "Wireless-Networking", + "Installed": false + }, + { + "DisplayName": "WoW64 Support", + "Name": "WoW64-Support", + "Installed": true + }, + { + "DisplayName": "XPS Viewer", + "Name": "XPS-Viewer", + "Installed": true + } +] +2020-03-06 11:07:53,360 [salt.state :320 ][INFO ][4836] Made the following changes: +'Telnet-Client' changed from 'absent' to 'Telnet Client' + +2020-03-06 11:07:53,360 [salt.state :1997][INFO ][4836] Completed state [telnet-client] at time 11:07:53.360406 (duration_in_ms=27143.272) +2020-03-06 11:07:53,360 [salt.state :1819][INFO ][4836] Running state [windows.module.system.reboot] at time 11:07:53.360406 +2020-03-06 11:07:53,360 [salt.state :1852][INFO ][4836] Executing state module.run for [windows.module.system.reboot] +2020-03-06 11:07:53,389 [salt.utils.lazy :107 ][DEBUG ][4836] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 11:07:53,389 [salt.loaded.int.module.cmdmod:397 ][INFO ][4836] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 11:07:53,654 [salt.state :889 ][DEBUG ][4836] Last command return code: 0 +2020-03-06 11:07:53,654 [salt.loaded.int.module.win_system:1413][DEBUG ][4836] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 11:07:53,654 [salt.loaded.int.module.win_system:1348][DEBUG ][4836] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 11:07:53,654 [salt.loaded.int.module.win_system:1348][DEBUG ][4836] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 11:07:53,654 [salt.loaded.int.module.win_system:1387][DEBUG ][4836] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 11:07:53,670 [salt.loaded.int.module.win_system:1273][DEBUG ][4836] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 11:07:53,716 [salt.state :320 ][INFO ][4836] {'system.reboot': True} +2020-03-06 11:07:53,716 [salt.state :1997][INFO ][4836] Completed state [windows.module.system.reboot] at time 11:07:53.716868 (duration_in_ms=356.462) +2020-03-06 11:07:53,716 [salt.state :2801][DEBUG ][4836] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2124228392496 does not exist, no need to cleanup +2020-03-06 11:07:53,732 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded state.check_result +2020-03-06 11:07:53,748 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded highstate.output +2020-03-06 11:07:53,763 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,763 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,763 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,779 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,795 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,795 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,811 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,826 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,826 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,842 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,857 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,857 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,857 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,874 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,982 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,982 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,998 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,998 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 11:07:53,998 [salt.utils.lazy :104 ][DEBUG ][4836] LazyLoaded nested.output +2020-03-06 14:07:59,295 [salt.loader :747 ][DEBUG ][4132] Grains refresh requested. Refreshing grains. +2020-03-06 14:07:59,295 [salt.config :2190][DEBUG ][4132] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 14:07:59,295 [salt.config :2334][DEBUG ][4132] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 14:07:59,295 [salt.config :2190][DEBUG ][4132] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-windows-10-1709.kitchen.log b/test/results/py3-windows-10-1709.kitchen.log index fb13570..11478fc 100644 --- a/test/results/py3-windows-10-1709.kitchen.log +++ b/test/results/py3-windows-10-1709.kitchen.log @@ -1,1020 +1,1093 @@ -I, [2020-03-04T15:09:19.470699 #3730] INFO -- py3-windows-10-1709: -----> Cleaning up any prior instances of -I, [2020-03-04T15:09:19.470855 #3730] INFO -- py3-windows-10-1709: -----> Destroying ... -I, [2020-03-04T15:09:19.474255 #3730] INFO -- py3-windows-10-1709: Finished destroying (0m0.00s). -I, [2020-03-04T15:09:19.475305 #3730] INFO -- py3-windows-10-1709: -----> Testing -I, [2020-03-04T15:09:19.475418 #3730] INFO -- py3-windows-10-1709: -----> Creating ... -I, [2020-03-04T15:09:25.093880 #3730] INFO -- py3-windows-10-1709: Bringing machine 'default' up with 'virtualbox' provider... -I, [2020-03-04T15:09:25.799457 #3730] INFO -- py3-windows-10-1709: ==> default: Cloning VM... -I, [2020-03-04T15:09:26.214795 #3730] INFO -- py3-windows-10-1709: ==> default: Matching MAC address for NAT networking... -I, [2020-03-04T15:09:26.427633 #3730] INFO -- py3-windows-10-1709: ==> default: Checking if box 'StefanScherer/windows_10' version '2018.03.14' is up to date... -I, [2020-03-04T15:09:27.521311 #3730] INFO -- py3-windows-10-1709: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1709-112be022-c549-443d-8fc5-e1f622b9410d -I, [2020-03-04T15:09:32.986369 #3730] INFO -- py3-windows-10-1709: ==> default: Clearing any previously set network interfaces... -I, [2020-03-04T15:09:33.087958 #3730] INFO -- py3-windows-10-1709: ==> default: Preparing network interfaces based on configuration... -I, [2020-03-04T15:09:33.088423 #3730] INFO -- py3-windows-10-1709: default: Adapter 1: nat -I, [2020-03-04T15:09:33.195300 #3730] INFO -- py3-windows-10-1709: ==> default: Forwarding ports... -I, [2020-03-04T15:09:33.292465 #3730] INFO -- py3-windows-10-1709: default: 3389 (guest) => 3389 (host) (adapter 1) -I, [2020-03-04T15:09:33.293015 #3730] INFO -- py3-windows-10-1709: default: 5985 (guest) => 55985 (host) (adapter 1) -I, [2020-03-04T15:09:33.293534 #3730] INFO -- py3-windows-10-1709: default: 5986 (guest) => 55986 (host) (adapter 1) -I, [2020-03-04T15:09:33.293965 #3730] INFO -- py3-windows-10-1709: default: 22 (guest) => 2222 (host) (adapter 1) -I, [2020-03-04T15:09:33.606359 #3730] INFO -- py3-windows-10-1709: ==> default: Running 'pre-boot' VM customizations... -I, [2020-03-04T15:09:34.388312 #3730] INFO -- py3-windows-10-1709: ==> default: Booting VM... -I, [2020-03-04T15:09:36.870869 #3730] INFO -- py3-windows-10-1709: ==> default: Waiting for machine to boot. This may take a few minutes... -I, [2020-03-04T15:09:37.780175 #3730] INFO -- py3-windows-10-1709: default: WinRM address: 127.0.0.1:55985 -I, [2020-03-04T15:09:37.780345 #3730] INFO -- py3-windows-10-1709: default: WinRM username: vagrant -I, [2020-03-04T15:09:37.780689 #3730] INFO -- py3-windows-10-1709: default: WinRM execution_time_limit: PT2H -I, [2020-03-04T15:09:37.781026 #3730] INFO -- py3-windows-10-1709: default: WinRM transport: negotiate -I, [2020-03-04T15:09:58.887489 #3730] INFO -- py3-windows-10-1709: ==> default: Machine booted and ready! -I, [2020-03-04T15:09:58.916733 #3730] INFO -- py3-windows-10-1709: ==> default: Checking for guest additions in VM... -I, [2020-03-04T15:09:59.052778 #3730] INFO -- py3-windows-10-1709: default: The guest additions on this VM do not match the installed version of -I, [2020-03-04T15:09:59.052895 #3730] INFO -- py3-windows-10-1709: default: VirtualBox! In most cases this is fine, but in rare cases it can -I, [2020-03-04T15:09:59.052932 #3730] INFO -- py3-windows-10-1709: default: prevent things such as shared folders from working properly. If you see -I, [2020-03-04T15:09:59.052993 #3730] INFO -- py3-windows-10-1709: default: shared folder errors, please make sure the guest additions within the -I, [2020-03-04T15:09:59.053046 #3730] INFO -- py3-windows-10-1709: default: virtual machine match the version of VirtualBox you have installed on -I, [2020-03-04T15:09:59.053100 #3730] INFO -- py3-windows-10-1709: default: your host and reload your VM. -I, [2020-03-04T15:09:59.053144 #3730] INFO -- py3-windows-10-1709: default: -I, [2020-03-04T15:09:59.053189 #3730] INFO -- py3-windows-10-1709: default: Guest Additions Version: 5.2.8 -I, [2020-03-04T15:09:59.053227 #3730] INFO -- py3-windows-10-1709: default: VirtualBox Version: 6.1 -I, [2020-03-04T15:09:59.652095 #3730] INFO -- py3-windows-10-1709: ==> default: Mounting shared folders... -I, [2020-03-04T15:09:59.653275 #3730] INFO -- py3-windows-10-1709: default: /results => /mnt/c/tmp/results -I, [2020-03-04T15:10:06.230656 #3730] INFO -- py3-windows-10-1709: ==> default: Machine not provisioned because `--no-provision` is specified. -I, [2020-03-04T15:10:19.711633 #3730] INFO -- py3-windows-10-1709: [WinRM] Established -I, [2020-03-04T15:10:19.711806 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:10:19.733214 #3730] INFO -- py3-windows-10-1709: Vagrant instance created. -I, [2020-03-04T15:10:19.735355 #3730] INFO -- py3-windows-10-1709: Finished creating (1m0.26s). -I, [2020-03-04T15:10:19.735702 #3730] INFO -- py3-windows-10-1709: -----> Converging ... -I, [2020-03-04T15:10:19.738726 #3730] INFO -- py3-windows-10-1709: Preparing files for transfer -I, [2020-03-04T15:10:19.738958 #3730] INFO -- py3-windows-10-1709: Preparing salt-minion -I, [2020-03-04T15:10:19.745848 #3730] INFO -- py3-windows-10-1709: Preparing pillars into /srv/pillar -I, [2020-03-04T15:10:19.745986 #3730] INFO -- py3-windows-10-1709: pillars-from-files is deprecated in favor of pillars_from_files -I, [2020-03-04T15:10:19.750952 #3730] INFO -- py3-windows-10-1709: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula -I, [2020-03-04T15:10:19.948346 #3730] INFO -- py3-windows-10-1709: Preparing state_top -I, [2020-03-04T15:10:19.950159 #3730] INFO -- py3-windows-10-1709: Preparing scripts into /etc/salt/scripts -I, [2020-03-04T15:10:21.075763 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:10:21.076176 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:10:21.076668 #3730] INFO -- py3-windows-10-1709: Directory: C:\ -I, [2020-03-04T15:10:21.077061 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:10:21.077419 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:10:21.077878 #3730] INFO -- py3-windows-10-1709: Mode LastWriteTime Length Name -I, [2020-03-04T15:10:21.078306 #3730] INFO -- py3-windows-10-1709: ---- ------------- ------ ---- -I, [2020-03-04T15:10:21.078840 #3730] INFO -- py3-windows-10-1709: d----- 3/4/2020 12:10 PM temp -I, [2020-03-04T15:10:21.962044 #3730] INFO -- py3-windows-10-1709: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe -I, [2020-03-04T15:10:31.582939 #3730] INFO -- py3-windows-10-1709: Installing Salt minion -I, [2020-03-04T15:11:31.598774 #3730] INFO -- py3-windows-10-1709: Starting the Salt minion service -I, [2020-03-04T15:11:31.599249 #3730] INFO -- py3-windows-10-1709: Salt minion successfully installed -I, [2020-03-04T15:11:39.077323 #3730] INFO -- py3-windows-10-1709: You asked for latest and you have 2019.2.3 installed, sweet! -I, [2020-03-04T15:11:39.077758 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.078156 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.677821 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.678286 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.678731 #3730] INFO -- py3-windows-10-1709: Directory: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:11:39.679137 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.683455 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.684179 #3730] INFO -- py3-windows-10-1709: Mode LastWriteTime Length Name -I, [2020-03-04T15:11:39.684722 #3730] INFO -- py3-windows-10-1709: ---- ------------- ------ ---- -I, [2020-03-04T15:11:39.685326 #3730] INFO -- py3-windows-10-1709: d----- 3/4/2020 12:11 PM kitchen -I, [2020-03-04T15:11:39.685828 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.686218 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:11:39.703184 #3730] INFO -- py3-windows-10-1709: Transferring files to -I, [2020-03-04T15:12:26.584973 #3730] INFO -- py3-windows-10-1709: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:12:26.585623 #3730] INFO -- py3-windows-10-1709: At line:1 char:131 -I, [2020-03-04T15:12:26.586203 #3730] INFO -- py3-windows-10-1709: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... -I, [2020-03-04T15:12:26.586741 #3730] INFO -- py3-windows-10-1709: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -I, [2020-03-04T15:12:26.587234 #3730] INFO -- py3-windows-10-1709: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException -I, [2020-03-04T15:12:26.587736 #3730] INFO -- py3-windows-10-1709: + FullyQualifiedErrorId : NativeCommandError -I, [2020-03-04T15:12:26.588184 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:12:26.588611 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:12:26.589081 #3730] INFO -- py3-windows-10-1709: Traceback (most recent call last): -I, [2020-03-04T15:12:26.589588 #3730] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:12:26.590069 #3730] INFO -- py3-windows-10-1709: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:12:26.590578 #3730] INFO -- py3-windows-10-1709: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:12:26.591002 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:12:26.591551 #3730] INFO -- py3-windows-10-1709: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:12:26.592065 #3730] INFO -- py3-windows-10-1709: Traceback (most recent call last): -I, [2020-03-04T15:12:26.592612 #3730] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:12:26.593104 #3730] INFO -- py3-windows-10-1709: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:12:26.593615 #3730] INFO -- py3-windows-10-1709: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:12:26.594030 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:13:53.464164 #3730] INFO -- py3-windows-10-1709: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W -I, [2020-03-04T15:13:53.464855 #3730] INFO -- py3-windows-10-1709: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:13:53.465424 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:13:53.465935 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:13:53.466514 #3730] INFO -- py3-windows-10-1709: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P -I, [2020-03-04T15:13:53.467083 #3730] INFO -- py3-windows-10-1709: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:13:53.467560 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:13:53.468005 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.084277 #3730] INFO -- py3-windows-10-1709: local: -I, [2020-03-04T15:14:57.084782 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.085247 #3730] INFO -- py3-windows-10-1709: ID: windows.state.system.hostname.saltstack1 -I, [2020-03-04T15:14:57.085734 #3730] INFO -- py3-windows-10-1709: Function: system.hostname -I, [2020-03-04T15:14:57.086091 #3730] INFO -- py3-windows-10-1709: Name: saltstack1 -I, [2020-03-04T15:14:57.086547 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.086897 #3730] INFO -- py3-windows-10-1709: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot -I, [2020-03-04T15:14:57.087247 #3730] INFO -- py3-windows-10-1709: Started: 12:11:55.947748 -I, [2020-03-04T15:14:57.087622 #3730] INFO -- py3-windows-10-1709: Duration: 140.52 ms -I, [2020-03-04T15:14:57.087962 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.088315 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.088648 #3730] INFO -- py3-windows-10-1709: hostname: -I, [2020-03-04T15:14:57.088999 #3730] INFO -- py3-windows-10-1709: saltstack1 -I, [2020-03-04T15:14:57.089375 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.089741 #3730] INFO -- py3-windows-10-1709: ID: windows.state.system.computer_desc.description -I, [2020-03-04T15:14:57.090129 #3730] INFO -- py3-windows-10-1709: Function: system.computer_desc -I, [2020-03-04T15:14:57.090495 #3730] INFO -- py3-windows-10-1709: Name: Saltstack Computer Description -I, [2020-03-04T15:14:57.090914 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.091353 #3730] INFO -- py3-windows-10-1709: Comment: Computer description successfully changed to 'Saltstack Computer Description' -I, [2020-03-04T15:14:57.091737 #3730] INFO -- py3-windows-10-1709: Started: 12:11:56.088268 -I, [2020-03-04T15:14:57.092091 #3730] INFO -- py3-windows-10-1709: Duration: 3249.646 ms -I, [2020-03-04T15:14:57.092403 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.092732 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.093085 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.093416 #3730] INFO -- py3-windows-10-1709: Saltstack Computer Description -I, [2020-03-04T15:14:57.093804 #3730] INFO -- py3-windows-10-1709: old: -I, [2020-03-04T15:14:57.094343 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.094763 #3730] INFO -- py3-windows-10-1709: ID: windows.state.timezone.system.America/New_York -I, [2020-03-04T15:14:57.095139 #3730] INFO -- py3-windows-10-1709: Function: timezone.system -I, [2020-03-04T15:14:57.095482 #3730] INFO -- py3-windows-10-1709: Name: America/New_York -I, [2020-03-04T15:14:57.095791 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.096115 #3730] INFO -- py3-windows-10-1709: Comment: Set timezone America/New_York -I, [2020-03-04T15:14:57.096532 #3730] INFO -- py3-windows-10-1709: Started: 12:11:59.416224 -I, [2020-03-04T15:14:57.096948 #3730] INFO -- py3-windows-10-1709: Duration: 47.034 ms -I, [2020-03-04T15:14:57.097266 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.097565 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.097995 #3730] INFO -- py3-windows-10-1709: timezone: -I, [2020-03-04T15:14:57.098439 #3730] INFO -- py3-windows-10-1709: America/New_York -I, [2020-03-04T15:14:57.098872 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.099347 #3730] INFO -- py3-windows-10-1709: ID: windows.module.environ.items -I, [2020-03-04T15:14:57.099784 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.100221 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.100654 #3730] INFO -- py3-windows-10-1709: Comment: environ.items: Success -I, [2020-03-04T15:14:57.101115 #3730] INFO -- py3-windows-10-1709: Started: 12:11:59.494273 -I, [2020-03-04T15:14:57.101543 #3730] INFO -- py3-windows-10-1709: Duration: 15.639 ms -I, [2020-03-04T15:14:57.101964 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.102358 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.102677 #3730] INFO -- py3-windows-10-1709: environ.items: -I, [2020-03-04T15:14:57.103026 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.103325 #3730] INFO -- py3-windows-10-1709: ALLUSERSPROFILE: -I, [2020-03-04T15:14:57.103708 #3730] INFO -- py3-windows-10-1709: C:\ProgramData -I, [2020-03-04T15:14:57.104072 #3730] INFO -- py3-windows-10-1709: APPDATA: -I, [2020-03-04T15:14:57.104377 #3730] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Roaming -I, [2020-03-04T15:14:57.104734 #3730] INFO -- py3-windows-10-1709: COMMONPROGRAMFILES: -I, [2020-03-04T15:14:57.105148 #3730] INFO -- py3-windows-10-1709: C:\Program Files\Common Files -I, [2020-03-04T15:14:57.105512 #3730] INFO -- py3-windows-10-1709: COMMONPROGRAMFILES(X86): -I, [2020-03-04T15:14:57.105843 #3730] INFO -- py3-windows-10-1709: C:\Program Files (x86)\Common Files -I, [2020-03-04T15:14:57.106190 #3730] INFO -- py3-windows-10-1709: COMMONPROGRAMW6432: -I, [2020-03-04T15:14:57.106529 #3730] INFO -- py3-windows-10-1709: C:\Program Files\Common Files -I, [2020-03-04T15:14:57.106866 #3730] INFO -- py3-windows-10-1709: COMPUTERNAME: -I, [2020-03-04T15:14:57.107151 #3730] INFO -- py3-windows-10-1709: VAGRANT-10 -I, [2020-03-04T15:14:57.107453 #3730] INFO -- py3-windows-10-1709: COMSPEC: -I, [2020-03-04T15:14:57.107778 #3730] INFO -- py3-windows-10-1709: C:\Windows\system32\cmd.exe -I, [2020-03-04T15:14:57.108110 #3730] INFO -- py3-windows-10-1709: HOMEDRIVE: -I, [2020-03-04T15:14:57.108420 #3730] INFO -- py3-windows-10-1709: C: -I, [2020-03-04T15:14:57.108753 #3730] INFO -- py3-windows-10-1709: HOMEPATH: -I, [2020-03-04T15:14:57.109112 #3730] INFO -- py3-windows-10-1709: \Users\vagrant -I, [2020-03-04T15:14:57.109468 #3730] INFO -- py3-windows-10-1709: LOCALAPPDATA: -I, [2020-03-04T15:14:57.109949 #3730] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Local -I, [2020-03-04T15:14:57.110334 #3730] INFO -- py3-windows-10-1709: LOGONSERVER: -I, [2020-03-04T15:14:57.110695 #3730] INFO -- py3-windows-10-1709: \\VAGRANT-10 -I, [2020-03-04T15:14:57.111031 #3730] INFO -- py3-windows-10-1709: NUMBER_OF_PROCESSORS: -I, [2020-03-04T15:14:57.111374 #3730] INFO -- py3-windows-10-1709: 2 -I, [2020-03-04T15:14:57.111750 #3730] INFO -- py3-windows-10-1709: ONEDRIVE: -I, [2020-03-04T15:14:57.112096 #3730] INFO -- py3-windows-10-1709: C:\Users\vagrant\OneDrive -I, [2020-03-04T15:14:57.112497 #3730] INFO -- py3-windows-10-1709: OS: -I, [2020-03-04T15:14:57.113020 #3730] INFO -- py3-windows-10-1709: Windows_NT -I, [2020-03-04T15:14:57.113527 #3730] INFO -- py3-windows-10-1709: PATH: -I, [2020-03-04T15:14:57.114129 #3730] INFO -- py3-windows-10-1709: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 -I, [2020-03-04T15:14:57.114659 #3730] INFO -- py3-windows-10-1709: PATHEXT: -I, [2020-03-04T15:14:57.115213 #3730] INFO -- py3-windows-10-1709: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL -I, [2020-03-04T15:14:57.115720 #3730] INFO -- py3-windows-10-1709: PROCESSOR_ARCHITECTURE: -I, [2020-03-04T15:14:57.116122 #3730] INFO -- py3-windows-10-1709: AMD64 -I, [2020-03-04T15:14:57.116505 #3730] INFO -- py3-windows-10-1709: PROCESSOR_IDENTIFIER: -I, [2020-03-04T15:14:57.116905 #3730] INFO -- py3-windows-10-1709: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel -I, [2020-03-04T15:14:57.117292 #3730] INFO -- py3-windows-10-1709: PROCESSOR_LEVEL: -I, [2020-03-04T15:14:57.117685 #3730] INFO -- py3-windows-10-1709: 6 -I, [2020-03-04T15:14:57.118037 #3730] INFO -- py3-windows-10-1709: PROCESSOR_REVISION: -I, [2020-03-04T15:14:57.118535 #3730] INFO -- py3-windows-10-1709: 8e0c -I, [2020-03-04T15:14:57.118999 #3730] INFO -- py3-windows-10-1709: PROGRAMDATA: -I, [2020-03-04T15:14:57.119449 #3730] INFO -- py3-windows-10-1709: C:\ProgramData -I, [2020-03-04T15:14:57.119835 #3730] INFO -- py3-windows-10-1709: PROGRAMFILES: -I, [2020-03-04T15:14:57.120196 #3730] INFO -- py3-windows-10-1709: C:\Program Files -I, [2020-03-04T15:14:57.120571 #3730] INFO -- py3-windows-10-1709: PROGRAMFILES(X86): -I, [2020-03-04T15:14:57.120928 #3730] INFO -- py3-windows-10-1709: C:\Program Files (x86) -I, [2020-03-04T15:14:57.121319 #3730] INFO -- py3-windows-10-1709: PROGRAMW6432: -I, [2020-03-04T15:14:57.121711 #3730] INFO -- py3-windows-10-1709: C:\Program Files -I, [2020-03-04T15:14:57.122116 #3730] INFO -- py3-windows-10-1709: PROMPT: -I, [2020-03-04T15:14:57.122501 #3730] INFO -- py3-windows-10-1709: $P$G -I, [2020-03-04T15:14:57.122861 #3730] INFO -- py3-windows-10-1709: PSMODULEPATH: -I, [2020-03-04T15:14:57.123237 #3730] INFO -- py3-windows-10-1709: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules -I, [2020-03-04T15:14:57.123624 #3730] INFO -- py3-windows-10-1709: PUBLIC: -I, [2020-03-04T15:14:57.124066 #3730] INFO -- py3-windows-10-1709: C:\Users\Public -I, [2020-03-04T15:14:57.124487 #3730] INFO -- py3-windows-10-1709: PYTHON: -I, [2020-03-04T15:14:57.124935 #3730] INFO -- py3-windows-10-1709: C:\salt\bin\python.exe -I, [2020-03-04T15:14:57.125437 #3730] INFO -- py3-windows-10-1709: SALTDIR: -I, [2020-03-04T15:14:57.125849 #3730] INFO -- py3-windows-10-1709: C:\salt -I, [2020-03-04T15:14:57.126232 #3730] INFO -- py3-windows-10-1709: SCRIPT: -I, [2020-03-04T15:14:57.126595 #3730] INFO -- py3-windows-10-1709: C:\salt\bin\Scripts\salt-call -I, [2020-03-04T15:14:57.126950 #3730] INFO -- py3-windows-10-1709: SYSTEMDRIVE: -I, [2020-03-04T15:14:57.127400 #3730] INFO -- py3-windows-10-1709: C: -I, [2020-03-04T15:14:57.127770 #3730] INFO -- py3-windows-10-1709: SYSTEMROOT: -I, [2020-03-04T15:14:57.128149 #3730] INFO -- py3-windows-10-1709: C:\Windows -I, [2020-03-04T15:14:57.128496 #3730] INFO -- py3-windows-10-1709: TEMP: -I, [2020-03-04T15:14:57.128876 #3730] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:14:57.129373 #3730] INFO -- py3-windows-10-1709: TMP: -I, [2020-03-04T15:14:57.129788 #3730] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:14:57.130200 #3730] INFO -- py3-windows-10-1709: USERDOMAIN: -I, [2020-03-04T15:14:57.130572 #3730] INFO -- py3-windows-10-1709: VAGRANT-10 -I, [2020-03-04T15:14:57.130929 #3730] INFO -- py3-windows-10-1709: USERDOMAIN_ROAMINGPROFILE: -I, [2020-03-04T15:14:57.131297 #3730] INFO -- py3-windows-10-1709: VAGRANT-10 -I, [2020-03-04T15:14:57.131651 #3730] INFO -- py3-windows-10-1709: USERNAME: -I, [2020-03-04T15:14:57.132007 #3730] INFO -- py3-windows-10-1709: vagrant -I, [2020-03-04T15:14:57.132458 #3730] INFO -- py3-windows-10-1709: USERPROFILE: -I, [2020-03-04T15:14:57.132817 #3730] INFO -- py3-windows-10-1709: C:\Users\vagrant -I, [2020-03-04T15:14:57.133181 #3730] INFO -- py3-windows-10-1709: WINDIR: -I, [2020-03-04T15:14:57.133524 #3730] INFO -- py3-windows-10-1709: C:\Windows -I, [2020-03-04T15:14:57.133862 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.134283 #3730] INFO -- py3-windows-10-1709: ID: windows.module.user.current -I, [2020-03-04T15:14:57.134631 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.134975 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.135341 #3730] INFO -- py3-windows-10-1709: Comment: user.current: VAGRANT-10\vagrant -I, [2020-03-04T15:14:57.135716 #3730] INFO -- py3-windows-10-1709: Started: 12:11:59.509912 -I, [2020-03-04T15:14:57.136107 #3730] INFO -- py3-windows-10-1709: Duration: 62.33 ms -I, [2020-03-04T15:14:57.136441 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.136885 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.137425 #3730] INFO -- py3-windows-10-1709: user.current: -I, [2020-03-04T15:14:57.137993 #3730] INFO -- py3-windows-10-1709: VAGRANT-10\vagrant -I, [2020-03-04T15:14:57.138543 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.139010 #3730] INFO -- py3-windows-10-1709: ID: windows.module.status.uptime -I, [2020-03-04T15:14:57.139396 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.139744 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.140176 #3730] INFO -- py3-windows-10-1709: Comment: status.uptime: 0:02:19.650837 -I, [2020-03-04T15:14:57.140587 #3730] INFO -- py3-windows-10-1709: Started: 12:11:59.572242 -I, [2020-03-04T15:14:57.141011 #3730] INFO -- py3-windows-10-1709: Duration: 78.595 ms -I, [2020-03-04T15:14:57.141366 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.141712 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.142103 #3730] INFO -- py3-windows-10-1709: status.uptime: -I, [2020-03-04T15:14:57.142453 #3730] INFO -- py3-windows-10-1709: 0:02:19.650837 -I, [2020-03-04T15:14:57.142841 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.143232 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection -I, [2020-03-04T15:14:57.143605 #3730] INFO -- py3-windows-10-1709: Function: cmd.run -I, [2020-03-04T15:14:57.143977 #3730] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -I, [2020-03-04T15:14:57.144320 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.144693 #3730] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run -I, [2020-03-04T15:14:57.145146 #3730] INFO -- py3-windows-10-1709: Started: 12:11:59.681638 -I, [2020-03-04T15:14:57.145529 #3730] INFO -- py3-windows-10-1709: Duration: 3735.272 ms -I, [2020-03-04T15:14:57.145915 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.146257 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.146639 #3730] INFO -- py3-windows-10-1709: pid: -I, [2020-03-04T15:14:57.147011 #3730] INFO -- py3-windows-10-1709: 6436 -I, [2020-03-04T15:14:57.147457 #3730] INFO -- py3-windows-10-1709: retcode: -I, [2020-03-04T15:14:57.147858 #3730] INFO -- py3-windows-10-1709: 0 -I, [2020-03-04T15:14:57.148210 #3730] INFO -- py3-windows-10-1709: stderr: -I, [2020-03-04T15:14:57.148567 #3730] INFO -- py3-windows-10-1709: stdout: -I, [2020-03-04T15:14:57.148930 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.149383 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet -I, [2020-03-04T15:14:57.149761 #3730] INFO -- py3-windows-10-1709: Function: cmd.run -I, [2020-03-04T15:14:57.150146 #3730] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -I, [2020-03-04T15:14:57.150588 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.150996 #3730] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run -I, [2020-03-04T15:14:57.151359 #3730] INFO -- py3-windows-10-1709: Started: 12:12:03.416910 -I, [2020-03-04T15:14:57.151738 #3730] INFO -- py3-windows-10-1709: Duration: 1375.283 ms -I, [2020-03-04T15:14:57.152117 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.152500 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.152870 #3730] INFO -- py3-windows-10-1709: pid: -I, [2020-03-04T15:14:57.153233 #3730] INFO -- py3-windows-10-1709: 6236 -I, [2020-03-04T15:14:57.153673 #3730] INFO -- py3-windows-10-1709: retcode: -I, [2020-03-04T15:14:57.154038 #3730] INFO -- py3-windows-10-1709: 0 -I, [2020-03-04T15:14:57.154394 #3730] INFO -- py3-windows-10-1709: stderr: -I, [2020-03-04T15:14:57.154839 #3730] INFO -- py3-windows-10-1709: stdout: -I, [2020-03-04T15:14:57.155235 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.155729 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic -I, [2020-03-04T15:14:57.156303 #3730] INFO -- py3-windows-10-1709: Function: cmd.run -I, [2020-03-04T15:14:57.156822 #3730] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -I, [2020-03-04T15:14:57.157209 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.157596 #3730] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run -I, [2020-03-04T15:14:57.158058 #3730] INFO -- py3-windows-10-1709: Started: 12:12:04.792193 -I, [2020-03-04T15:14:57.158446 #3730] INFO -- py3-windows-10-1709: Duration: 1421.402 ms -I, [2020-03-04T15:14:57.158836 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.159242 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.159635 #3730] INFO -- py3-windows-10-1709: pid: -I, [2020-03-04T15:14:57.159998 #3730] INFO -- py3-windows-10-1709: 5720 -I, [2020-03-04T15:14:57.160405 #3730] INFO -- py3-windows-10-1709: retcode: -I, [2020-03-04T15:14:57.160766 #3730] INFO -- py3-windows-10-1709: 0 -I, [2020-03-04T15:14:57.161129 #3730] INFO -- py3-windows-10-1709: stderr: -I, [2020-03-04T15:14:57.161492 #3730] INFO -- py3-windows-10-1709: stdout: -I, [2020-03-04T15:14:57.161850 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.162304 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo -I, [2020-03-04T15:14:57.162686 #3730] INFO -- py3-windows-10-1709: Function: cmd.run -I, [2020-03-04T15:14:57.163040 #3730] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -I, [2020-03-04T15:14:57.163424 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.163845 #3730] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run -I, [2020-03-04T15:14:57.164345 #3730] INFO -- py3-windows-10-1709: Started: 12:12:06.213595 -I, [2020-03-04T15:14:57.164844 #3730] INFO -- py3-windows-10-1709: Duration: 1374.276 ms -I, [2020-03-04T15:14:57.165352 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.165862 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.166363 #3730] INFO -- py3-windows-10-1709: pid: -I, [2020-03-04T15:14:57.166899 #3730] INFO -- py3-windows-10-1709: 2980 -I, [2020-03-04T15:14:57.167406 #3730] INFO -- py3-windows-10-1709: retcode: -I, [2020-03-04T15:14:57.167901 #3730] INFO -- py3-windows-10-1709: 0 -I, [2020-03-04T15:14:57.168405 #3730] INFO -- py3-windows-10-1709: stderr: -I, [2020-03-04T15:14:57.168921 #3730] INFO -- py3-windows-10-1709: stdout: -I, [2020-03-04T15:14:57.169516 #3730] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 12:12:07.587871 Duration: 547.31 ms -I, [2020-03-04T15:14:57.169984 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.170483 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 -I, [2020-03-04T15:14:57.170951 #3730] INFO -- py3-windows-10-1709: Function: reg.present -I, [2020-03-04T15:14:57.171435 #3730] INFO -- py3-windows-10-1709: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:14:57.171888 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.172383 #3730] INFO -- py3-windows-10-1709: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:14:57.172846 #3730] INFO -- py3-windows-10-1709: Started: 12:12:08.151085 -I, [2020-03-04T15:14:57.173365 #3730] INFO -- py3-windows-10-1709: Duration: 17686.989 ms -I, [2020-03-04T15:14:57.173832 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.174297 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.174777 #3730] INFO -- py3-windows-10-1709: reg: -I, [2020-03-04T15:14:57.175265 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.175751 #3730] INFO -- py3-windows-10-1709: Added: -I, [2020-03-04T15:14:57.176242 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.183596 #3730] INFO -- py3-windows-10-1709: Entry: -I, [2020-03-04T15:14:57.184189 #3730] INFO -- py3-windows-10-1709: SystemDefaultTlsVersions -I, [2020-03-04T15:14:57.184699 #3730] INFO -- py3-windows-10-1709: Inheritance: -I, [2020-03-04T15:14:57.185134 #3730] INFO -- py3-windows-10-1709: True -I, [2020-03-04T15:14:57.185530 #3730] INFO -- py3-windows-10-1709: Key: -I, [2020-03-04T15:14:57.185935 #3730] INFO -- py3-windows-10-1709: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:14:57.186305 #3730] INFO -- py3-windows-10-1709: Owner: -I, [2020-03-04T15:14:57.186672 #3730] INFO -- py3-windows-10-1709: None -I, [2020-03-04T15:14:57.187103 #3730] INFO -- py3-windows-10-1709: Perms: -I, [2020-03-04T15:14:57.187505 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.187888 #3730] INFO -- py3-windows-10-1709: Deny: -I, [2020-03-04T15:14:57.188271 #3730] INFO -- py3-windows-10-1709: None -I, [2020-03-04T15:14:57.188685 #3730] INFO -- py3-windows-10-1709: Grant: -I, [2020-03-04T15:14:57.189251 #3730] INFO -- py3-windows-10-1709: None -I, [2020-03-04T15:14:57.189813 #3730] INFO -- py3-windows-10-1709: Value: -I, [2020-03-04T15:14:57.190358 #3730] INFO -- py3-windows-10-1709: 1 -I, [2020-03-04T15:14:57.190872 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.191417 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -I, [2020-03-04T15:14:57.191928 #3730] INFO -- py3-windows-10-1709: Function: reg.present -I, [2020-03-04T15:14:57.192427 #3730] INFO -- py3-windows-10-1709: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:14:57.192910 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.193448 #3730] INFO -- py3-windows-10-1709: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:14:57.193925 #3730] INFO -- py3-windows-10-1709: Started: 12:12:25.838074 -I, [2020-03-04T15:14:57.194385 #3730] INFO -- py3-windows-10-1709: Duration: 234.864 ms -I, [2020-03-04T15:14:57.194860 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.195345 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.195841 #3730] INFO -- py3-windows-10-1709: reg: -I, [2020-03-04T15:14:57.196326 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.196819 #3730] INFO -- py3-windows-10-1709: Added: -I, [2020-03-04T15:14:57.197322 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.197820 #3730] INFO -- py3-windows-10-1709: Entry: -I, [2020-03-04T15:14:57.198309 #3730] INFO -- py3-windows-10-1709: SystemDefaultTlsVersions -I, [2020-03-04T15:14:57.198812 #3730] INFO -- py3-windows-10-1709: Inheritance: -I, [2020-03-04T15:14:57.199298 #3730] INFO -- py3-windows-10-1709: True -I, [2020-03-04T15:14:57.199752 #3730] INFO -- py3-windows-10-1709: Key: -I, [2020-03-04T15:14:57.201024 #3730] INFO -- py3-windows-10-1709: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:14:57.201497 #3730] INFO -- py3-windows-10-1709: Owner: -I, [2020-03-04T15:14:57.201918 #3730] INFO -- py3-windows-10-1709: None -I, [2020-03-04T15:14:57.202262 #3730] INFO -- py3-windows-10-1709: Perms: -I, [2020-03-04T15:14:57.202618 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.202958 #3730] INFO -- py3-windows-10-1709: Deny: -I, [2020-03-04T15:14:57.203329 #3730] INFO -- py3-windows-10-1709: None -I, [2020-03-04T15:14:57.203688 #3730] INFO -- py3-windows-10-1709: Grant: -I, [2020-03-04T15:14:57.204056 #3730] INFO -- py3-windows-10-1709: None -I, [2020-03-04T15:14:57.204406 #3730] INFO -- py3-windows-10-1709: Value: -I, [2020-03-04T15:14:57.204741 #3730] INFO -- py3-windows-10-1709: 1 -I, [2020-03-04T15:14:57.205151 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.205552 #3730] INFO -- py3-windows-10-1709: ID: manually.update_git_repo-ng -I, [2020-03-04T15:14:57.205921 #3730] INFO -- py3-windows-10-1709: Function: archive.extracted -I, [2020-03-04T15:14:57.206288 #3730] INFO -- py3-windows-10-1709: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -I, [2020-03-04T15:14:57.206618 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.206998 #3730] INFO -- py3-windows-10-1709: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs -I, [2020-03-04T15:14:57.207366 #3730] INFO -- py3-windows-10-1709: Started: 12:12:26.072938 -I, [2020-03-04T15:14:57.207742 #3730] INFO -- py3-windows-10-1709: Duration: 1031.472 ms -I, [2020-03-04T15:14:57.208128 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.208505 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.208858 #3730] INFO -- py3-windows-10-1709: directories_created: -I, [2020-03-04T15:14:57.209310 #3730] INFO -- py3-windows-10-1709: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -I, [2020-03-04T15:14:57.209826 #3730] INFO -- py3-windows-10-1709: extracted_files: -I, [2020-03-04T15:14:57.210352 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ -I, [2020-03-04T15:14:57.210883 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.gitignore -I, [2020-03-04T15:14:57.211403 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis.yml -I, [2020-03-04T15:14:57.211913 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis/ -I, [2020-03-04T15:14:57.212448 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis/requirements.txt -I, [2020-03-04T15:14:57.212936 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis/tests.py -I, [2020-03-04T15:14:57.213427 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/7zip.sls -I, [2020-03-04T15:14:57.213909 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/LICENSE -I, [2020-03-04T15:14:57.214405 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/README.md -I, [2020-03-04T15:14:57.214910 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/_config.yml -I, [2020-03-04T15:14:57.215461 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/activeperl_x64.sls -I, [2020-03-04T15:14:57.216012 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/activeperl_x86.sls -I, [2020-03-04T15:14:57.216577 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobeair.sls -I, [2020-03-04T15:14:57.217109 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobereader-dc-classic.sls -I, [2020-03-04T15:14:57.217633 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobereader-xi.sls -I, [2020-03-04T15:14:57.218152 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobereader.sls -I, [2020-03-04T15:14:57.218678 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobeshockwaveplayer.sls -I, [2020-03-04T15:14:57.219211 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adv-ip-scanner.sls -I, [2020-03-04T15:14:57.219710 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adv-port-scanner.sls -I, [2020-03-04T15:14:57.220160 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/advancedlogging.sls -I, [2020-03-04T15:14:57.220640 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/anydesk-msi.sls -I, [2020-03-04T15:14:57.221029 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/anydesk.sls -I, [2020-03-04T15:14:57.221345 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/applicationrequestrouting.sls -I, [2020-03-04T15:14:57.221673 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/aspnet-mvc1.sls -I, [2020-03-04T15:14:57.222005 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/atom.sls -I, [2020-03-04T15:14:57.222321 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/audacity.sls -I, [2020-03-04T15:14:57.222694 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/ -I, [2020-03-04T15:14:57.223050 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/init.sls -I, [2020-03-04T15:14:57.223370 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/install.cmd -I, [2020-03-04T15:14:57.223690 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/install.ps1 -I, [2020-03-04T15:14:57.224017 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/remove.cmd -I, [2020-03-04T15:14:57.224318 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/autohotkey.sls -I, [2020-03-04T15:14:57.224652 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/autoit.sls -I, [2020-03-04T15:14:57.225031 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/autopsy.sls -I, [2020-03-04T15:14:57.225367 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/awscli.sls -I, [2020-03-04T15:14:57.225683 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/azuredatastudio.sls -I, [2020-03-04T15:14:57.226006 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bandizip.sls -I, [2020-03-04T15:14:57.226311 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/belarc-advisor.sls -I, [2020-03-04T15:14:57.226669 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bginfo4x.sls -I, [2020-03-04T15:14:57.227010 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bitnami-nginxstack.sls -I, [2020-03-04T15:14:57.227440 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bitvise.sls -I, [2020-03-04T15:14:57.227906 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/blender.sls -I, [2020-03-04T15:14:57.228265 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bootracer.sls -I, [2020-03-04T15:14:57.228622 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bulk_extractor.sls -I, [2020-03-04T15:14:57.228987 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bulkrenameutility.sls -I, [2020-03-04T15:14:57.229340 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ccleaner-slim.sls -I, [2020-03-04T15:14:57.229703 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ccleaner.sls -I, [2020-03-04T15:14:57.230100 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cdburnerxp.sls -I, [2020-03-04T15:14:57.230447 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cdroller.sls -I, [2020-03-04T15:14:57.230806 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/check-mk-agent-msi.sls -I, [2020-03-04T15:14:57.231139 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/check-mk-agent.sls -I, [2020-03-04T15:14:57.231478 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/ -I, [2020-03-04T15:14:57.231837 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/init.sls -I, [2020-03-04T15:14:57.232190 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/install.cmd -I, [2020-03-04T15:14:57.232635 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/uninstall.cmd -I, [2020-03-04T15:14:57.233156 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 -I, [2020-03-04T15:14:57.233660 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chrome-rdp.sls -I, [2020-03-04T15:14:57.234176 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chrome.sls -I, [2020-03-04T15:14:57.234692 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/clamav.sls -I, [2020-03-04T15:14:57.235208 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/clamwin.sls -I, [2020-03-04T15:14:57.235754 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/classicshell.sls -I, [2020-03-04T15:14:57.236252 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/clink.sls -I, [2020-03-04T15:14:57.236755 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/conemu.sls -I, [2020-03-04T15:14:57.237239 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cpu-z.sls -I, [2020-03-04T15:14:57.237751 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/curl.sls -I, [2020-03-04T15:14:57.238241 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cyberduck-cli.sls -I, [2020-03-04T15:14:57.238738 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cyberduck-msi.sls -I, [2020-03-04T15:14:57.239220 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cyberduck.sls -I, [2020-03-04T15:14:57.239732 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/defraggler.sls -I, [2020-03-04T15:14:57.240263 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/docs/ -I, [2020-03-04T15:14:57.240776 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/docs/ReadMe.md -I, [2020-03-04T15:14:57.241309 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/dotnet.sls -I, [2020-03-04T15:14:57.241811 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/dropbox.sls -I, [2020-03-04T15:14:57.242341 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/duplicati.sls -I, [2020-03-04T15:14:57.242836 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/dvdstyler.sls -I, [2020-03-04T15:14:57.243353 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/echo-desktop.sls -I, [2020-03-04T15:14:57.243848 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/eea.sls -I, [2020-03-04T15:14:57.244415 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/emet.sls -I, [2020-03-04T15:14:57.244948 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/emsisoft-anti-malware.sls -I, [2020-03-04T15:14:57.245536 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/eraser.sls -I, [2020-03-04T15:14:57.246223 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/erlang/ -I, [2020-03-04T15:14:57.246829 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/erlang/init.sls -I, [2020-03-04T15:14:57.247374 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/erlang/install.cmd -I, [2020-03-04T15:14:57.247901 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/evernote.sls -I, [2020-03-04T15:14:57.248414 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/fiddler.sls -I, [2020-03-04T15:14:57.248835 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/ -I, [2020-03-04T15:14:57.249212 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/init.sls -I, [2020-03-04T15:14:57.249563 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/install.cmd -I, [2020-03-04T15:14:57.249996 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/install.ps1 -I, [2020-03-04T15:14:57.250361 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/remove.cmd -I, [2020-03-04T15:14:57.250714 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filehippo-app-manager.sls -I, [2020-03-04T15:14:57.251094 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filezilla.sls -I, [2020-03-04T15:14:57.251556 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox-esr_x64.sls -I, [2020-03-04T15:14:57.251980 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox-esr_x86.sls -I, [2020-03-04T15:14:57.252347 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox_x64.sls -I, [2020-03-04T15:14:57.252745 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox_x86.sls -I, [2020-03-04T15:14:57.253178 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/ -I, [2020-03-04T15:14:57.253540 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/init.sls -I, [2020-03-04T15:14:57.253913 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/install.cmd -I, [2020-03-04T15:14:57.254290 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/install.ps1 -I, [2020-03-04T15:14:57.254693 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/remove.cmd -I, [2020-03-04T15:14:57.255059 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gedit.sls -I, [2020-03-04T15:14:57.255494 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gimp.sls -I, [2020-03-04T15:14:57.255958 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/git-extensions.sls -I, [2020-03-04T15:14:57.256314 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/git.sls -I, [2020-03-04T15:14:57.256713 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls -I, [2020-03-04T15:14:57.257120 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gnucash.sls -I, [2020-03-04T15:14:57.257523 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/golang.sls -I, [2020-03-04T15:14:57.257900 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/goodsync.sls -I, [2020-03-04T15:14:57.258231 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gow.sls -I, [2020-03-04T15:14:57.258670 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win-light.sls -I, [2020-03-04T15:14:57.259173 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win-vanilla.sls -I, [2020-03-04T15:14:57.259652 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win/ -I, [2020-03-04T15:14:57.260132 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win/init.sls -I, [2020-03-04T15:14:57.260601 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win/silent.ini -I, [2020-03-04T15:14:57.261108 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/graylog-collector-sidecar.sls -I, [2020-03-04T15:14:57.261588 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/grepwin.sls -I, [2020-03-04T15:14:57.262078 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gvim.sls -I, [2020-03-04T15:14:57.262540 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/handbrake.sls -I, [2020-03-04T15:14:57.263027 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/ -I, [2020-03-04T15:14:57.263483 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp -I, [2020-03-04T15:14:57.263869 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/init.sls -I, [2020-03-04T15:14:57.264210 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/install.cmd -I, [2020-03-04T15:14:57.264584 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/install.ps1 -I, [2020-03-04T15:14:57.264924 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/remove.cmd -I, [2020-03-04T15:14:57.265291 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/hipchat.sls -I, [2020-03-04T15:14:57.265675 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/hostsfileeditor.sls -I, [2020-03-04T15:14:57.266010 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/hwinfo.sls -I, [2020-03-04T15:14:57.266415 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ice.sls -I, [2020-03-04T15:14:57.266913 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/icecast.sls -I, [2020-03-04T15:14:57.267411 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/icloud.sls -I, [2020-03-04T15:14:57.267939 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/iismediaservices.sls -I, [2020-03-04T15:14:57.268416 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/influx-capacitor.sls -I, [2020-03-04T15:14:57.268932 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/inkscape.sls -I, [2020-03-04T15:14:57.269373 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/intellij-community.sls -I, [2020-03-04T15:14:57.269753 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/intellij-ultimate.sls -I, [2020-03-04T15:14:57.270105 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/internet-evidence-finder.sls -I, [2020-03-04T15:14:57.270494 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/irfanview-plugins.sls -I, [2020-03-04T15:14:57.270895 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/irfanview.sls -I, [2020-03-04T15:14:57.271243 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/isapirewrite-lite.sls -I, [2020-03-04T15:14:57.271597 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/itunes.sls -I, [2020-03-04T15:14:57.271927 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jdk8.sls -I, [2020-03-04T15:14:57.272364 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jre.sls -I, [2020-03-04T15:14:57.272759 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jre8.sls -I, [2020-03-04T15:14:57.273104 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jungledisk-server-management.sls -I, [2020-03-04T15:14:57.273525 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jungledisk-server.sls -I, [2020-03-04T15:14:57.273981 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jungledisk-workgroup.sls -I, [2020-03-04T15:14:57.274486 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/kdiff3.sls -I, [2020-03-04T15:14:57.274977 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/keepass-2x.sls -I, [2020-03-04T15:14:57.275473 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/keepass.sls -I, [2020-03-04T15:14:57.275941 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/lastpass.sls -I, [2020-03-04T15:14:57.276444 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/lazarus.sls -I, [2020-03-04T15:14:57.276935 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/libreoffice.sls -I, [2020-03-04T15:14:57.277438 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/logparser.sls -I, [2020-03-04T15:14:57.277910 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/maas360bootanalyzer.sls -I, [2020-03-04T15:14:57.278418 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/malwarebytes.sls -I, [2020-03-04T15:14:57.278868 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mariadb.sls -I, [2020-03-04T15:14:57.279265 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mercurial.sls -I, [2020-03-04T15:14:57.279601 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/messageanalyzer.sls -I, [2020-03-04T15:14:57.279958 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/ -I, [2020-03-04T15:14:57.280338 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp -I, [2020-03-04T15:14:57.280753 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/init.sls -I, [2020-03-04T15:14:57.281140 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/install.cmd -I, [2020-03-04T15:14:57.281534 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/install.ps1 -I, [2020-03-04T15:14:57.281962 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/remove.cmd -I, [2020-03-04T15:14:57.282529 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/microsoft-build-tools.sls -I, [2020-03-04T15:14:57.283102 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mikogo.sls -I, [2020-03-04T15:14:57.283683 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/miktex-basic.sls -I, [2020-03-04T15:14:57.284174 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mongodb.sls -I, [2020-03-04T15:14:57.284611 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-mbsa.sls -I, [2020-03-04T15:14:57.285183 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls -I, [2020-03-04T15:14:57.285680 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls -I, [2020-03-04T15:14:57.286146 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls -I, [2020-03-04T15:14:57.286574 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls -I, [2020-03-04T15:14:57.287062 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:14:57.287509 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:14:57.287912 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls -I, [2020-03-04T15:14:57.288331 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls -I, [2020-03-04T15:14:57.288863 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls -I, [2020-03-04T15:14:57.289347 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls -I, [2020-03-04T15:14:57.289764 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls -I, [2020-03-04T15:14:57.290187 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls -I, [2020-03-04T15:14:57.290587 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:14:57.291020 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:14:57.291468 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls -I, [2020-03-04T15:14:57.291908 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:14:57.292332 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls -I, [2020-03-04T15:14:57.292732 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls -I, [2020-03-04T15:14:57.293147 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls -I, [2020-03-04T15:14:57.293658 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls -I, [2020-03-04T15:14:57.294220 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls -I, [2020-03-04T15:14:57.294830 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls -I, [2020-03-04T15:14:57.295512 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls -I, [2020-03-04T15:14:57.296107 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls -I, [2020-03-04T15:14:57.296561 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls -I, [2020-03-04T15:14:57.297103 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mucommander.sls -I, [2020-03-04T15:14:57.297621 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mysql-essential.sls -I, [2020-03-04T15:14:57.298052 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mysql-installer-community.sls -I, [2020-03-04T15:14:57.298441 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mysql-workbench.sls -I, [2020-03-04T15:14:57.305724 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/never10.sls -I, [2020-03-04T15:14:57.306748 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/newrelic-infra.sls -I, [2020-03-04T15:14:57.307496 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nextcloud-client.sls -I, [2020-03-04T15:14:57.308170 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nmap.sls -I, [2020-03-04T15:14:57.308800 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/node.js-lts.sls -I, [2020-03-04T15:14:57.309396 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/node.js.sls -I, [2020-03-04T15:14:57.309998 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nomacs.sls -I, [2020-03-04T15:14:57.310630 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/npp.sls -I, [2020-03-04T15:14:57.311315 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nsclient.sls -I, [2020-03-04T15:14:57.312028 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nsis.sls -I, [2020-03-04T15:14:57.312705 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ntp.sls -I, [2020-03-04T15:14:57.313334 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nunit-console.sls -I, [2020-03-04T15:14:57.314011 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nxlog.sls -I, [2020-03-04T15:14:57.314744 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/octopus-tentacle.sls -I, [2020-03-04T15:14:57.315457 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/openlp.sls -I, [2020-03-04T15:14:57.316220 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/openoffice.sls -I, [2020-03-04T15:14:57.316948 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/openvpn.sls -I, [2020-03-04T15:14:57.317654 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/osquery.sls -I, [2020-03-04T15:14:57.318317 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ossec-agent.sls -I, [2020-03-04T15:14:57.318985 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/owncloud.sls -I, [2020-03-04T15:14:57.319575 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/ -I, [2020-03-04T15:14:57.320133 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/init.sls -I, [2020-03-04T15:14:57.320694 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/install.cmd -I, [2020-03-04T15:14:57.321205 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/install.ps1 -I, [2020-03-04T15:14:57.321768 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/remove.cmd -I, [2020-03-04T15:14:57.322371 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pandoc.sls -I, [2020-03-04T15:14:57.322984 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/parallels-client-15.sls -I, [2020-03-04T15:14:57.323566 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pass4win.sls -I, [2020-03-04T15:14:57.324109 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/passware-kit-agent.sls -I, [2020-03-04T15:14:57.324650 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/passware-kit-forensic.sls -I, [2020-03-04T15:14:57.325161 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/patchmypc-free.sls -I, [2020-03-04T15:14:57.325717 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pdf24creator.sls -I, [2020-03-04T15:14:57.326282 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pdfcreator.sls -I, [2020-03-04T15:14:57.326814 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/peazip.sls -I, [2020-03-04T15:14:57.327367 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pgadmin4.sls -I, [2020-03-04T15:14:57.327983 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pgina.sls -I, [2020-03-04T15:14:57.328561 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pidgin.sls -I, [2020-03-04T15:14:57.329121 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/postgresql.sls -I, [2020-03-04T15:14:57.329702 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/powerbi-desktop.sls -I, [2020-03-04T15:14:57.330250 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/powershell-core.sls -I, [2020-03-04T15:14:57.330772 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls -I, [2020-03-04T15:14:57.331238 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/putty.sls -I, [2020-03-04T15:14:57.331642 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/ -I, [2020-03-04T15:14:57.332036 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/init.sls -I, [2020-03-04T15:14:57.332429 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/silent.config -I, [2020-03-04T15:14:57.334268 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python2_x64.sls -I, [2020-03-04T15:14:57.334896 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python2_x86.sls -I, [2020-03-04T15:14:57.335340 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python3_x64.sls -I, [2020-03-04T15:14:57.335797 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python3_x86.sls -I, [2020-03-04T15:14:57.336228 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/qemu.sls -I, [2020-03-04T15:14:57.336603 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/queueexplorerpro.sls -I, [2020-03-04T15:14:57.337021 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/quicktime.sls -I, [2020-03-04T15:14:57.337439 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rabbitmq.sls -I, [2020-03-04T15:14:57.337870 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls -I, [2020-03-04T15:14:57.338253 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rakudo-star_x64.sls -I, [2020-03-04T15:14:57.338749 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rasclient.sls -I, [2020-03-04T15:14:57.339181 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rdcman.sls -I, [2020-03-04T15:14:57.339568 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rocketchat.sls -I, [2020-03-04T15:14:57.339975 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rubyinstaller_x64.sls -I, [2020-03-04T15:14:57.340361 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rubyinstaller_x86.sls -I, [2020-03-04T15:14:57.340803 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/salt-minion-py2.sls -I, [2020-03-04T15:14:57.341180 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/salt-minion-py3.sls -I, [2020-03-04T15:14:57.341541 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sandboxie.sls -I, [2020-03-04T15:14:57.341933 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/scaleout.sls -I, [2020-03-04T15:14:57.342363 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/secunia.psi.sls -I, [2020-03-04T15:14:57.342766 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sensu.sls -I, [2020-03-04T15:14:57.343116 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sharpdevelop.sls -I, [2020-03-04T15:14:57.343460 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/skitch.sls -I, [2020-03-04T15:14:57.343899 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/skype-msi.sls -I, [2020-03-04T15:14:57.344264 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/skype.sls -I, [2020-03-04T15:14:57.344811 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/slack-machine-msi.sls -I, [2020-03-04T15:14:57.345341 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/slack-user-msi.sls -I, [2020-03-04T15:14:57.345878 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/slack.sls -I, [2020-03-04T15:14:57.346418 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/smartmontools.sls -I, [2020-03-04T15:14:57.346966 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/snmptools.sls -I, [2020-03-04T15:14:57.347496 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/soapui.sls -I, [2020-03-04T15:14:57.348048 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/software-informer.sls -I, [2020-03-04T15:14:57.348576 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sourcetree.sls -I, [2020-03-04T15:14:57.349135 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/spybot-anti-beacon.sls -I, [2020-03-04T15:14:57.349681 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/spybot.sls -I, [2020-03-04T15:14:57.350195 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sscserv-free.sls -I, [2020-03-04T15:14:57.350780 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stayawake/ -I, [2020-03-04T15:14:57.351340 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stayawake/init.sls -I, [2020-03-04T15:14:57.351946 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stayawake/install.cmd -I, [2020-03-04T15:14:57.352516 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/steam.sls -I, [2020-03-04T15:14:57.353083 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stellarium.sls -I, [2020-03-04T15:14:57.353716 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/strawberryperl_x64.sls -I, [2020-03-04T15:14:57.354284 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/strawberryperl_x86.sls -I, [2020-03-04T15:14:57.354832 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stunnel.sls -I, [2020-03-04T15:14:57.355357 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/subinacl.sls -I, [2020-03-04T15:14:57.355893 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sumatrapdf.sls -I, [2020-03-04T15:14:57.356400 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/svn.sls -I, [2020-03-04T15:14:57.356919 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/teamviewer.sls -I, [2020-03-04T15:14:57.357453 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/teamviewer_host.sls -I, [2020-03-04T15:14:57.357953 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/teracopy.sls -I, [2020-03-04T15:14:57.358472 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texmaker.sls -I, [2020-03-04T15:14:57.358983 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texniccenter.sls -I, [2020-03-04T15:14:57.359507 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texstudio.sls -I, [2020-03-04T15:14:57.360026 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texworks.sls -I, [2020-03-04T15:14:57.360563 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/thunderbird.sls -I, [2020-03-04T15:14:57.361056 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tightvnc.sls -I, [2020-03-04T15:14:57.361587 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/todotxt.net.sls -I, [2020-03-04T15:14:57.362085 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/todour.sls -I, [2020-03-04T15:14:57.362598 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-bzr.sls -I, [2020-03-04T15:14:57.363073 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-git.sls -I, [2020-03-04T15:14:57.363582 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-hg.sls -I, [2020-03-04T15:14:57.364077 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-svn.sls -I, [2020-03-04T15:14:57.364586 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/truecrypt.sls -I, [2020-03-04T15:14:57.365066 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ultradefrag.sls -I, [2020-03-04T15:14:57.365563 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/urlrewrite.sls -I, [2020-03-04T15:14:57.366050 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/usbdlm.sls -I, [2020-03-04T15:14:57.366553 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vagrant.sls -I, [2020-03-04T15:14:57.367043 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vcforpython27.sls -I, [2020-03-04T15:14:57.367532 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vcxsrv.sls -I, [2020-03-04T15:14:57.367991 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/verysleepy.sls -I, [2020-03-04T15:14:57.368348 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/veyon.sls -I, [2020-03-04T15:14:57.368805 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/virtualbox.sls -I, [2020-03-04T15:14:57.369244 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/viscosity.sls -I, [2020-03-04T15:14:57.369596 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vivaldi.sls -I, [2020-03-04T15:14:57.369945 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vlc.sls -I, [2020-03-04T15:14:57.370268 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vs-community.sls -I, [2020-03-04T15:14:57.370688 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vs_remotetools_2017.sls -I, [2020-03-04T15:14:57.371066 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vscode.sls -I, [2020-03-04T15:14:57.371389 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vsee.sls -I, [2020-03-04T15:14:57.371826 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wamp-server-3.sls -I, [2020-03-04T15:14:57.372285 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wamp-stack.sls -I, [2020-03-04T15:14:57.372721 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/webdeploy.sls -I, [2020-03-04T15:14:57.373196 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/webplatforminstaller.sls -I, [2020-03-04T15:14:57.373653 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/win-app-manager.sls -I, [2020-03-04T15:14:57.469077 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/windirstat.sls -I, [2020-03-04T15:14:57.469656 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winhttpcertcfg.sls -I, [2020-03-04T15:14:57.470127 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/ -I, [2020-03-04T15:14:57.470536 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/init.sls -I, [2020-03-04T15:14:57.470926 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/install.cmd -I, [2020-03-04T15:14:57.471351 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/install.ps1 -I, [2020-03-04T15:14:57.471773 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/remove.cmd -I, [2020-03-04T15:14:57.472291 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winmerge.sls -I, [2020-03-04T15:14:57.472868 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winmtr.sls -I, [2020-03-04T15:14:57.473395 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winpcap.sls -I, [2020-03-04T15:14:57.473854 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winrar.sls -I, [2020-03-04T15:14:57.474397 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winscp.sls -I, [2020-03-04T15:14:57.474892 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wireshark.sls -I, [2020-03-04T15:14:57.475448 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/ -I, [2020-03-04T15:14:57.475958 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/README.md -I, [2020-03-04T15:14:57.476529 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/answer.txt -I, [2020-03-04T15:14:57.477072 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/init.sls -I, [2020-03-04T15:14:57.477579 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/majsetup.reg -I, [2020-03-04T15:14:57.478128 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wscc.sls -I, [2020-03-04T15:14:57.478658 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wufuc.sls -I, [2020-03-04T15:14:57.479204 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/xampp.sls -I, [2020-03-04T15:14:57.479721 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/xming.sls -I, [2020-03-04T15:14:57.480206 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/yubikey-manager.sls -I, [2020-03-04T15:14:57.480772 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/yubikey-personalization-tool.sls -I, [2020-03-04T15:14:57.481245 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zabbix-agent.sls -I, [2020-03-04T15:14:57.481623 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/ -I, [2020-03-04T15:14:57.482019 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/init.sls -I, [2020-03-04T15:14:57.482491 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic -I, [2020-03-04T15:14:57.482909 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic -I, [2020-03-04T15:14:57.483298 #3730] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zoom.sls -I, [2020-03-04T15:14:57.483658 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.484099 #3730] INFO -- py3-windows-10-1709: ID: rename-extract -I, [2020-03-04T15:14:57.484481 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.484950 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.485423 #3730] INFO -- py3-windows-10-1709: Comment: file.rename: True -I, [2020-03-04T15:14:57.485822 #3730] INFO -- py3-windows-10-1709: Started: 12:12:27.104410 -I, [2020-03-04T15:14:57.486170 #3730] INFO -- py3-windows-10-1709: Duration: 0.0 ms -I, [2020-03-04T15:14:57.486511 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.486914 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.487381 #3730] INFO -- py3-windows-10-1709: file.rename: -I, [2020-03-04T15:14:57.487768 #3730] INFO -- py3-windows-10-1709: True -I, [2020-03-04T15:14:57.488217 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.488709 #3730] INFO -- py3-windows-10-1709: ID: pkg.refresh_db -I, [2020-03-04T15:14:57.489075 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.489419 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.489906 #3730] INFO -- py3-windows-10-1709: Comment: check_cmd determined the state succeeded -I, [2020-03-04T15:14:57.490316 #3730] INFO -- py3-windows-10-1709: Started: 12:12:27.119219 -I, [2020-03-04T15:14:57.490691 #3730] INFO -- py3-windows-10-1709: Duration: 14391.109 ms -I, [2020-03-04T15:14:57.491027 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.491448 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.491942 #3730] INFO -- py3-windows-10-1709: pkg.refresh_db: -I, [2020-03-04T15:14:57.492411 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.492888 #3730] INFO -- py3-windows-10-1709: failed: -I, [2020-03-04T15:14:57.493351 #3730] INFO -- py3-windows-10-1709: 0 -I, [2020-03-04T15:14:57.493834 #3730] INFO -- py3-windows-10-1709: success: -I, [2020-03-04T15:14:57.494330 #3730] INFO -- py3-windows-10-1709: 298 -I, [2020-03-04T15:14:57.494843 #3730] INFO -- py3-windows-10-1709: total: -I, [2020-03-04T15:14:57.495256 #3730] INFO -- py3-windows-10-1709: 298 -I, [2020-03-04T15:14:57.495611 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.495998 #3730] INFO -- py3-windows-10-1709: ID: 7zip -I, [2020-03-04T15:14:57.496523 #3730] INFO -- py3-windows-10-1709: Function: pkg.installed -I, [2020-03-04T15:14:57.497054 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.497601 #3730] INFO -- py3-windows-10-1709: Comment: The following packages were installed/updated: 7zip=18.06.00.0 -I, [2020-03-04T15:14:57.498013 #3730] INFO -- py3-windows-10-1709: Started: 12:12:41.541748 -I, [2020-03-04T15:14:57.498507 #3730] INFO -- py3-windows-10-1709: Duration: 3764.968 ms -I, [2020-03-04T15:14:57.498857 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.499213 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.499619 #3730] INFO -- py3-windows-10-1709: 7zip: -I, [2020-03-04T15:14:57.499979 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.500464 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.500844 #3730] INFO -- py3-windows-10-1709: 18.06.00.0 -I, [2020-03-04T15:14:57.501209 #3730] INFO -- py3-windows-10-1709: old: -I, [2020-03-04T15:14:57.501671 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.502266 #3730] INFO -- py3-windows-10-1709: ID: git -I, [2020-03-04T15:14:57.502857 #3730] INFO -- py3-windows-10-1709: Function: pkg.installed -I, [2020-03-04T15:14:57.503434 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.513382 #3730] INFO -- py3-windows-10-1709: Comment: The following packages were installed/updated: git -I, [2020-03-04T15:14:57.514180 #3730] INFO -- py3-windows-10-1709: Started: 12:12:45.322663 -I, [2020-03-04T15:14:57.514797 #3730] INFO -- py3-windows-10-1709: Duration: 33296.619 ms -I, [2020-03-04T15:14:57.515358 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.515931 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.516501 #3730] INFO -- py3-windows-10-1709: git: -I, [2020-03-04T15:14:57.517025 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.517573 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.518093 #3730] INFO -- py3-windows-10-1709: 2.23.0.windows.1 -I, [2020-03-04T15:14:57.518569 #3730] INFO -- py3-windows-10-1709: old: -I, [2020-03-04T15:14:57.519116 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.519664 #3730] INFO -- py3-windows-10-1709: ID: kdiff3 -I, [2020-03-04T15:14:57.520264 #3730] INFO -- py3-windows-10-1709: Function: pkg.installed -I, [2020-03-04T15:14:57.520842 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.521399 #3730] INFO -- py3-windows-10-1709: Comment: The following packages were installed/updated: kdiff3 -I, [2020-03-04T15:14:57.521907 #3730] INFO -- py3-windows-10-1709: Started: 12:13:18.651052 -I, [2020-03-04T15:14:57.522407 #3730] INFO -- py3-windows-10-1709: Duration: 34234.05 ms -I, [2020-03-04T15:14:57.522957 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.523500 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.523988 #3730] INFO -- py3-windows-10-1709: kdiff3: -I, [2020-03-04T15:14:57.524586 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.525161 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.525695 #3730] INFO -- py3-windows-10-1709: Not Found -I, [2020-03-04T15:14:57.526207 #3730] INFO -- py3-windows-10-1709: old: -I, [2020-03-04T15:14:57.526706 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.527245 #3730] INFO -- py3-windows-10-1709: ID: windows_environment.refresh.path -I, [2020-03-04T15:14:57.527744 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.528273 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.528822 #3730] INFO -- py3-windows-10-1709: Comment: windows_environment.refresh: Success -I, [2020-03-04T15:14:57.529296 #3730] INFO -- py3-windows-10-1709: Started: 12:13:52.885102 -I, [2020-03-04T15:14:57.529796 #3730] INFO -- py3-windows-10-1709: Duration: 62.175 ms -I, [2020-03-04T15:14:57.530256 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.530737 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.531231 #3730] INFO -- py3-windows-10-1709: windows_environment.refresh: -I, [2020-03-04T15:14:57.531833 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.532368 #3730] INFO -- py3-windows-10-1709: PATH: -I, [2020-03-04T15:14:57.532961 #3730] INFO -- py3-windows-10-1709: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd -I, [2020-03-04T15:14:57.533457 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.533952 #3730] INFO -- py3-windows-10-1709: ID: chocolatey.bootstrap -I, [2020-03-04T15:14:57.534412 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.534885 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.535291 #3730] INFO -- py3-windows-10-1709: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:14:57.535675 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.536186 #3730] INFO -- py3-windows-10-1709: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:14:57.536543 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.536891 #3730] INFO -- py3-windows-10-1709: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:14:57.537321 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.538928 #3730] INFO -- py3-windows-10-1709: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:14:57.539369 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.539763 #3730] INFO -- py3-windows-10-1709: Installing chocolatey on this machine -I, [2020-03-04T15:14:57.540170 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.540730 #3730] INFO -- py3-windows-10-1709: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:14:57.541149 #3730] INFO -- py3-windows-10-1709: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:14:57.541479 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.541855 #3730] INFO -- py3-windows-10-1709: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:14:57.542281 #3730] INFO -- py3-windows-10-1709: before you can use choco. -I, [2020-03-04T15:14:57.542659 #3730] INFO -- py3-windows-10-1709: Restricting write permissions to Administrators -I, [2020-03-04T15:14:57.543069 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.543553 #3730] INFO -- py3-windows-10-1709: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:14:57.543892 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.544259 #3730] INFO -- py3-windows-10-1709: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:14:57.544681 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.545116 #3730] INFO -- py3-windows-10-1709: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:14:57.545447 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.545793 #3730] INFO -- py3-windows-10-1709: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:14:57.546140 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.546593 #3730] INFO -- py3-windows-10-1709: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:14:57.546937 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.547275 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.547591 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.548036 #3730] INFO -- py3-windows-10-1709: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:14:57.548392 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.548737 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.549200 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.549732 #3730] INFO -- py3-windows-10-1709: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:14:57.550287 #3730] INFO -- py3-windows-10-1709: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:14:57.550823 #3730] INFO -- py3-windows-10-1709: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:14:57.551390 #3730] INFO -- py3-windows-10-1709: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:14:57.551950 #3730] INFO -- py3-windows-10-1709: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:14:57.552510 #3730] INFO -- py3-windows-10-1709: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:14:57.552965 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.553424 #3730] INFO -- py3-windows-10-1709: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:14:57.553799 #3730] INFO -- py3-windows-10-1709: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:14:57.554210 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.554559 #3730] INFO -- py3-windows-10-1709: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:14:57.554911 #3730] INFO -- py3-windows-10-1709: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:14:57.555292 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.555699 #3730] INFO -- py3-windows-10-1709: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:14:57.556031 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.556388 #3730] INFO -- py3-windows-10-1709: Run choco /? for a list of functions. -I, [2020-03-04T15:14:57.556759 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.557237 #3730] INFO -- py3-windows-10-1709: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:14:57.557551 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.557924 #3730] INFO -- py3-windows-10-1709: first prior to using choco. -I, [2020-03-04T15:14:57.558285 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.558697 #3730] INFO -- py3-windows-10-1709: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:14:57.559061 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.559407 #3730] INFO -- py3-windows-10-1709: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:14:57.559782 #3730] INFO -- py3-windows-10-1709: Started: 12:13:52.947277 -I, [2020-03-04T15:14:57.560191 #3730] INFO -- py3-windows-10-1709: Duration: 29782.157 ms -I, [2020-03-04T15:14:57.560597 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.560958 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.561295 #3730] INFO -- py3-windows-10-1709: chocolatey.bootstrap: -I, [2020-03-04T15:14:57.561734 #3730] INFO -- py3-windows-10-1709: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:14:57.562317 #3730] INFO -- py3-windows-10-1709: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:14:57.562883 #3730] INFO -- py3-windows-10-1709: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:14:57.563522 #3730] INFO -- py3-windows-10-1709: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:14:57.564113 #3730] INFO -- py3-windows-10-1709: Installing chocolatey on this machine -I, [2020-03-04T15:14:57.564736 #3730] INFO -- py3-windows-10-1709: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:14:57.565371 #3730] INFO -- py3-windows-10-1709: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:14:57.565955 #3730] INFO -- py3-windows-10-1709: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:14:57.566474 #3730] INFO -- py3-windows-10-1709: before you can use choco. -I, [2020-03-04T15:14:57.567039 #3730] INFO -- py3-windows-10-1709: Restricting write permissions to Administrators -I, [2020-03-04T15:14:57.567558 #3730] INFO -- py3-windows-10-1709: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:14:57.568096 #3730] INFO -- py3-windows-10-1709: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:14:57.568627 #3730] INFO -- py3-windows-10-1709: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:14:57.569187 #3730] INFO -- py3-windows-10-1709: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:14:57.569751 #3730] INFO -- py3-windows-10-1709: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:14:57.570294 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.570840 #3730] INFO -- py3-windows-10-1709: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:14:57.571331 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.571885 #3730] INFO -- py3-windows-10-1709: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:14:57.572424 #3730] INFO -- py3-windows-10-1709: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:14:57.573005 #3730] INFO -- py3-windows-10-1709: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:14:57.573558 #3730] INFO -- py3-windows-10-1709: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:14:57.574119 #3730] INFO -- py3-windows-10-1709: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:14:57.574691 #3730] INFO -- py3-windows-10-1709: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:14:57.575238 #3730] INFO -- py3-windows-10-1709: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:14:57.575830 #3730] INFO -- py3-windows-10-1709: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:14:57.576448 #3730] INFO -- py3-windows-10-1709: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:14:57.577079 #3730] INFO -- py3-windows-10-1709: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:14:57.577714 #3730] INFO -- py3-windows-10-1709: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:14:57.578325 #3730] INFO -- py3-windows-10-1709: Run choco /? for a list of functions. -I, [2020-03-04T15:14:57.578946 #3730] INFO -- py3-windows-10-1709: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:14:57.579495 #3730] INFO -- py3-windows-10-1709: first prior to using choco. -I, [2020-03-04T15:14:57.580295 #3730] INFO -- py3-windows-10-1709: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:14:57.581029 #3730] INFO -- py3-windows-10-1709: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:14:57.581629 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.582202 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.chocolatey.notepadplusplus -I, [2020-03-04T15:14:57.582779 #3730] INFO -- py3-windows-10-1709: Function: chocolatey.installed -I, [2020-03-04T15:14:57.583319 #3730] INFO -- py3-windows-10-1709: Name: notepadplusplus -I, [2020-03-04T15:14:57.583874 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.584433 #3730] INFO -- py3-windows-10-1709: Comment: -I, [2020-03-04T15:14:57.584969 #3730] INFO -- py3-windows-10-1709: Started: 12:14:22.744565 -I, [2020-03-04T15:14:57.585548 #3730] INFO -- py3-windows-10-1709: Duration: 13859.931 ms -I, [2020-03-04T15:14:57.586111 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.586676 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.587178 #3730] INFO -- py3-windows-10-1709: notepadplusplus: -I, [2020-03-04T15:14:57.587703 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.588214 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.588788 #3730] INFO -- py3-windows-10-1709: - 7.8.4 -I, [2020-03-04T15:14:57.589426 #3730] INFO -- py3-windows-10-1709: old: -I, [2020-03-04T15:14:57.590001 #3730] INFO -- py3-windows-10-1709: notepadplusplus.install: -I, [2020-03-04T15:14:57.590531 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.591038 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.591595 #3730] INFO -- py3-windows-10-1709: - 7.8.4 -I, [2020-03-04T15:14:57.592177 #3730] INFO -- py3-windows-10-1709: old: -I, [2020-03-04T15:14:57.592807 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.593475 #3730] INFO -- py3-windows-10-1709: ID: windows.system.packages.chocolatey.windirstat -I, [2020-03-04T15:14:57.594063 #3730] INFO -- py3-windows-10-1709: Function: chocolatey.installed -I, [2020-03-04T15:14:57.594635 #3730] INFO -- py3-windows-10-1709: Name: windirstat -I, [2020-03-04T15:14:57.595227 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.595805 #3730] INFO -- py3-windows-10-1709: Comment: -I, [2020-03-04T15:14:57.596436 #3730] INFO -- py3-windows-10-1709: Started: 12:14:36.604496 -I, [2020-03-04T15:14:57.596998 #3730] INFO -- py3-windows-10-1709: Duration: 10811.656 ms -I, [2020-03-04T15:14:57.597592 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.598154 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.598746 #3730] INFO -- py3-windows-10-1709: windirstat: -I, [2020-03-04T15:14:57.599387 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.599993 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.600580 #3730] INFO -- py3-windows-10-1709: - 1.1.2.20161210 -I, [2020-03-04T15:14:57.601140 #3730] INFO -- py3-windows-10-1709: old: -I, [2020-03-04T15:14:57.601681 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.602283 #3730] INFO -- py3-windows-10-1709: ID: windows.system.desktop.optional_features.installed.TelnetClient -I, [2020-03-04T15:14:57.602761 #3730] INFO -- py3-windows-10-1709: Function: dism.feature_installed -I, [2020-03-04T15:14:57.603186 #3730] INFO -- py3-windows-10-1709: Name: TelnetClient -I, [2020-03-04T15:14:57.603713 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.604353 #3730] INFO -- py3-windows-10-1709: Comment: Installed TelnetClient -I, [2020-03-04T15:14:57.605026 #3730] INFO -- py3-windows-10-1709: Started: 12:14:47.416152 -I, [2020-03-04T15:14:57.605535 #3730] INFO -- py3-windows-10-1709: Duration: 8953.41 ms -I, [2020-03-04T15:14:57.606081 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.606613 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.607207 #3730] INFO -- py3-windows-10-1709: feature: -I, [2020-03-04T15:14:57.607810 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.608395 #3730] INFO -- py3-windows-10-1709: new: -I, [2020-03-04T15:14:57.608943 #3730] INFO -- py3-windows-10-1709: TelnetClient -I, [2020-03-04T15:14:57.609456 #3730] INFO -- py3-windows-10-1709: pid: -I, [2020-03-04T15:14:57.609988 #3730] INFO -- py3-windows-10-1709: 964 -I, [2020-03-04T15:14:57.610466 #3730] INFO -- py3-windows-10-1709: retcode: -I, [2020-03-04T15:14:57.610996 #3730] INFO -- py3-windows-10-1709: 0 -I, [2020-03-04T15:14:57.611489 #3730] INFO -- py3-windows-10-1709: stderr: -I, [2020-03-04T15:14:57.611983 #3730] INFO -- py3-windows-10-1709: stdout: -I, [2020-03-04T15:14:57.612435 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.612924 #3730] INFO -- py3-windows-10-1709: ID: windows.module.system.reboot -I, [2020-03-04T15:14:57.613375 #3730] INFO -- py3-windows-10-1709: Function: module.run -I, [2020-03-04T15:14:57.613827 #3730] INFO -- py3-windows-10-1709: Result: True -I, [2020-03-04T15:14:57.614266 #3730] INFO -- py3-windows-10-1709: Comment: system.reboot: True -I, [2020-03-04T15:14:57.614722 #3730] INFO -- py3-windows-10-1709: Started: 12:14:56.385844 -I, [2020-03-04T15:14:57.615180 #3730] INFO -- py3-windows-10-1709: Duration: 296.044 ms -I, [2020-03-04T15:14:57.615670 #3730] INFO -- py3-windows-10-1709: Changes: -I, [2020-03-04T15:14:57.616174 #3730] INFO -- py3-windows-10-1709: ---------- -I, [2020-03-04T15:14:57.616696 #3730] INFO -- py3-windows-10-1709: system.reboot: -I, [2020-03-04T15:14:57.617202 #3730] INFO -- py3-windows-10-1709: True -I, [2020-03-04T15:14:57.617715 #3730] INFO -- py3-windows-10-1709: -I, [2020-03-04T15:14:57.618248 #3730] INFO -- py3-windows-10-1709: Summary for local -I, [2020-03-04T15:14:57.618792 #3730] INFO -- py3-windows-10-1709: ------------- -I, [2020-03-04T15:14:57.619297 #3730] INFO -- py3-windows-10-1709: Succeeded: 25 (changed=24) -I, [2020-03-04T15:14:57.619842 #3730] INFO -- py3-windows-10-1709: Failed: 0 -I, [2020-03-04T15:14:57.620359 #3730] INFO -- py3-windows-10-1709: ------------- -I, [2020-03-04T15:14:57.620899 #3730] INFO -- py3-windows-10-1709: Total states run: 25 -I, [2020-03-04T15:14:57.621414 #3730] INFO -- py3-windows-10-1709: Total run time: 180.453 s -I, [2020-03-04T15:14:57.655084 #3730] INFO -- py3-windows-10-1709: Downloading files from -I, [2020-03-04T15:14:57.826264 #3730] INFO -- py3-windows-10-1709: Finished converging (4m38.09s). -I, [2020-03-04T15:14:57.826492 #3730] INFO -- py3-windows-10-1709: -----> Setting up ... -I, [2020-03-04T15:14:57.835526 #3730] INFO -- py3-windows-10-1709: Finished setting up (0m0.00s). -I, [2020-03-04T15:14:57.835769 #3730] INFO -- py3-windows-10-1709: -----> Verifying ... -I, [2020-03-04T15:14:59.267662 #3730] INFO -- py3-windows-10-1709: Loaded default -I, [2020-03-04T15:15:03.092248 #3730] INFO -- py3-windows-10-1709: [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). -I, [2020-03-04T15:15:50.694422 #3730] INFO -- py3-windows-10-1709: Finished verifying (0m52.86s). -I, [2020-03-04T15:15:50.695758 #3730] INFO -- py3-windows-10-1709: -----> Destroying ... -I, [2020-03-04T15:15:59.780180 #3730] INFO -- py3-windows-10-1709: ==> default: Forcing shutdown of VM... -I, [2020-03-04T15:16:01.592121 #3730] INFO -- py3-windows-10-1709: ==> default: Destroying VM and associated drives... -I, [2020-03-04T15:16:02.408226 #3730] INFO -- py3-windows-10-1709: Vagrant instance destroyed. -I, [2020-03-04T15:16:02.409637 #3730] INFO -- py3-windows-10-1709: Finished destroying (0m11.71s). -I, [2020-03-04T15:16:02.410783 #3730] INFO -- py3-windows-10-1709: Finished testing (6m42.94s). +I, [2020-03-06T13:11:06.189022 #17731] INFO -- py3-windows-10-1709: -----> Cleaning up any prior instances of +I, [2020-03-06T13:11:06.189255 #17731] INFO -- py3-windows-10-1709: -----> Destroying ... +I, [2020-03-06T13:11:06.191002 #17731] INFO -- py3-windows-10-1709: Finished destroying (0m0.00s). +I, [2020-03-06T13:11:06.192662 #17731] INFO -- py3-windows-10-1709: -----> Testing +I, [2020-03-06T13:11:06.192818 #17731] INFO -- py3-windows-10-1709: -----> Creating ... +I, [2020-03-06T13:11:12.576676 #17731] INFO -- py3-windows-10-1709: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:11:13.659045 #17731] INFO -- py3-windows-10-1709: ==> default: Cloning VM... +I, [2020-03-06T13:11:14.199428 #17731] INFO -- py3-windows-10-1709: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:11:14.451094 #17731] INFO -- py3-windows-10-1709: ==> default: Checking if box 'StefanScherer/windows_10' version '2018.03.14' is up to date... +I, [2020-03-06T13:11:15.751381 #17731] INFO -- py3-windows-10-1709: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1709-47d506dc-b1d9-437e-bfe1-1a4665634a2f +I, [2020-03-06T13:11:19.513842 #17731] INFO -- py3-windows-10-1709: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:11:19.706193 #17731] INFO -- py3-windows-10-1709: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:11:19.707982 #17731] INFO -- py3-windows-10-1709: default: Adapter 1: nat +I, [2020-03-06T13:11:19.982584 #17731] INFO -- py3-windows-10-1709: ==> default: Forwarding ports... +I, [2020-03-06T13:11:20.180617 #17731] INFO -- py3-windows-10-1709: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:11:20.182414 #17731] INFO -- py3-windows-10-1709: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:11:20.183584 #17731] INFO -- py3-windows-10-1709: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:11:20.184355 #17731] INFO -- py3-windows-10-1709: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:11:20.728063 #17731] INFO -- py3-windows-10-1709: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:11:21.952206 #17731] INFO -- py3-windows-10-1709: ==> default: Booting VM... +I, [2020-03-06T13:11:24.838749 #17731] INFO -- py3-windows-10-1709: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:11:26.744030 #17731] INFO -- py3-windows-10-1709: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:11:26.744431 #17731] INFO -- py3-windows-10-1709: default: WinRM username: vagrant +I, [2020-03-06T13:11:26.744730 #17731] INFO -- py3-windows-10-1709: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:11:26.745082 #17731] INFO -- py3-windows-10-1709: default: WinRM transport: negotiate +I, [2020-03-06T13:11:49.081525 #17731] INFO -- py3-windows-10-1709: ==> default: Machine booted and ready! +I, [2020-03-06T13:11:49.111941 #17731] INFO -- py3-windows-10-1709: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:11:49.306619 #17731] INFO -- py3-windows-10-1709: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T13:11:49.306777 #17731] INFO -- py3-windows-10-1709: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T13:11:49.306839 #17731] INFO -- py3-windows-10-1709: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T13:11:49.306897 #17731] INFO -- py3-windows-10-1709: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T13:11:49.306939 #17731] INFO -- py3-windows-10-1709: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T13:11:49.306978 #17731] INFO -- py3-windows-10-1709: default: your host and reload your VM. +I, [2020-03-06T13:11:49.307026 #17731] INFO -- py3-windows-10-1709: default: +I, [2020-03-06T13:11:49.307071 #17731] INFO -- py3-windows-10-1709: default: Guest Additions Version: 5.2.8 +I, [2020-03-06T13:11:49.307122 #17731] INFO -- py3-windows-10-1709: default: VirtualBox Version: 6.1 +I, [2020-03-06T13:11:50.014871 #17731] INFO -- py3-windows-10-1709: ==> default: Mounting shared folders... +I, [2020-03-06T13:11:50.016377 #17731] INFO -- py3-windows-10-1709: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:11:58.032191 #17731] INFO -- py3-windows-10-1709: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:12:12.715887 #17731] INFO -- py3-windows-10-1709: [WinRM] Established +I, [2020-03-06T13:12:12.716004 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:12:12.740666 #17731] INFO -- py3-windows-10-1709: Vagrant instance created. +I, [2020-03-06T13:12:12.742455 #17731] INFO -- py3-windows-10-1709: Finished creating (1m6.55s). +I, [2020-03-06T13:12:12.742661 #17731] INFO -- py3-windows-10-1709: -----> Converging ... +I, [2020-03-06T13:12:12.745002 #17731] INFO -- py3-windows-10-1709: Preparing files for transfer +I, [2020-03-06T13:12:12.745168 #17731] INFO -- py3-windows-10-1709: Preparing salt-minion +I, [2020-03-06T13:12:12.751074 #17731] INFO -- py3-windows-10-1709: Preparing pillars into /srv/pillar +I, [2020-03-06T13:12:12.751215 #17731] INFO -- py3-windows-10-1709: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:12:12.755048 #17731] INFO -- py3-windows-10-1709: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:12:12.916296 #17731] INFO -- py3-windows-10-1709: Preparing state_top +I, [2020-03-06T13:12:12.917857 #17731] INFO -- py3-windows-10-1709: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:12:14.453591 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:12:14.454811 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:12:14.456213 #17731] INFO -- py3-windows-10-1709: Directory: C:\ +I, [2020-03-06T13:12:14.457270 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:12:14.457909 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:12:14.458443 #17731] INFO -- py3-windows-10-1709: Mode LastWriteTime Length Name +I, [2020-03-06T13:12:14.459068 #17731] INFO -- py3-windows-10-1709: ---- ------------- ------ ---- +I, [2020-03-06T13:12:14.459698 #17731] INFO -- py3-windows-10-1709: d----- 3/6/2020 10:12 AM temp +I, [2020-03-06T13:12:15.709025 #17731] INFO -- py3-windows-10-1709: Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe +I, [2020-03-06T13:12:31.837586 #17731] INFO -- py3-windows-10-1709: Installing Salt minion +I, [2020-03-06T13:13:31.116670 #17731] INFO -- py3-windows-10-1709: Starting the Salt minion service +I, [2020-03-06T13:13:31.117116 #17731] INFO -- py3-windows-10-1709: Salt minion successfully installed +I, [2020-03-06T13:13:40.370048 #17731] INFO -- py3-windows-10-1709: You asked for latest and you have 3000 installed, sweet! +I, [2020-03-06T13:13:40.370459 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:40.370876 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:42.203169 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:42.203789 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:42.204932 #17731] INFO -- py3-windows-10-1709: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:13:42.205558 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:42.206041 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:42.206664 #17731] INFO -- py3-windows-10-1709: Mode LastWriteTime Length Name +I, [2020-03-06T13:13:42.207403 #17731] INFO -- py3-windows-10-1709: ---- ------------- ------ ---- +I, [2020-03-06T13:13:42.208269 #17731] INFO -- py3-windows-10-1709: d----- 3/6/2020 10:13 AM kitchen +I, [2020-03-06T13:13:42.208805 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:42.209361 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:13:42.225051 #17731] INFO -- py3-windows-10-1709: Transferring files to +I, [2020-03-06T13:14:37.210127 #17731] INFO -- py3-windows-10-1709: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:14:37.210536 #17731] INFO -- py3-windows-10-1709: At line:1 char:131 +I, [2020-03-06T13:14:37.210919 #17731] INFO -- py3-windows-10-1709: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:14:37.211340 #17731] INFO -- py3-windows-10-1709: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:14:37.211710 #17731] INFO -- py3-windows-10-1709: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:14:37.212022 #17731] INFO -- py3-windows-10-1709: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:14:37.212287 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:14:37.212552 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:14:37.212975 #17731] INFO -- py3-windows-10-1709: Traceback (most recent call last): +I, [2020-03-06T13:14:37.213339 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:14:37.213694 #17731] INFO -- py3-windows-10-1709: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:14:37.214115 #17731] INFO -- py3-windows-10-1709: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:14:37.214410 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:14:37.214722 #17731] INFO -- py3-windows-10-1709: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:14:37.215013 #17731] INFO -- py3-windows-10-1709: Traceback (most recent call last): +I, [2020-03-06T13:14:37.215395 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:14:37.215699 #17731] INFO -- py3-windows-10-1709: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:14:37.216004 #17731] INFO -- py3-windows-10-1709: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:14:37.216273 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:15:34.885794 #17731] INFO -- py3-windows-10-1709: [ERROR ] An exception occurred in this state: Traceback (most recent call last): +I, [2020-03-06T13:15:34.886357 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call +I, [2020-03-06T13:15:34.886835 #17731] INFO -- py3-windows-10-1709: **cdata['kwargs']) +I, [2020-03-06T13:15:34.887356 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper +I, [2020-03-06T13:15:34.887773 #17731] INFO -- py3-windows-10-1709: return f(*args, **kwargs) +I, [2020-03-06T13:15:34.888150 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed +I, [2020-03-06T13:15:34.888476 #17731] INFO -- py3-windows-10-1709: **kwargs) +I, [2020-03-06T13:15:34.888914 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install +I, [2020-03-06T13:15:34.889259 #17731] INFO -- py3-windows-10-1709: cached_pkg = __salt__['cp.cache_file'](installer, saltenv) +I, [2020-03-06T13:15:34.889599 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file +I, [2020-03-06T13:15:34.889927 #17731] INFO -- py3-windows-10-1709: result = _client().cache_file(path, saltenv, source_hash=source_hash) +I, [2020-03-06T13:15:34.890290 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file +I, [2020-03-06T13:15:34.890608 #17731] INFO -- py3-windows-10-1709: path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) +I, [2020-03-06T13:15:34.890902 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url +I, [2020-03-06T13:15:34.891249 #17731] INFO -- py3-windows-10-1709: raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +I, [2020-03-06T13:15:34.891602 #17731] INFO -- py3-windows-10-1709: salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe +I, [2020-03-06T13:15:34.891892 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:15:34.892189 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:16:01.186232 #17731] INFO -- py3-windows-10-1709: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:16:01.186672 #17731] INFO -- py3-windows-10-1709: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:16:01.187005 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:16:01.187328 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:16:01.187789 #17731] INFO -- py3-windows-10-1709: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:16:01.188202 #17731] INFO -- py3-windows-10-1709: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:16:01.188541 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:16:01.188846 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.348785 #17731] INFO -- py3-windows-10-1709: local: +I, [2020-03-06T13:17:22.349530 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.350304 #17731] INFO -- py3-windows-10-1709: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:17:22.351004 #17731] INFO -- py3-windows-10-1709: Function: system.hostname +I, [2020-03-06T13:17:22.351465 #17731] INFO -- py3-windows-10-1709: Name: saltstack1 +I, [2020-03-06T13:17:22.352151 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.352818 #17731] INFO -- py3-windows-10-1709: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:17:22.353487 #17731] INFO -- py3-windows-10-1709: Started: 10:13:59.874796 +I, [2020-03-06T13:17:22.353956 #17731] INFO -- py3-windows-10-1709: Duration: 155.695 ms +I, [2020-03-06T13:17:22.354595 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.355320 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.356157 #17731] INFO -- py3-windows-10-1709: hostname: +I, [2020-03-06T13:17:22.356771 #17731] INFO -- py3-windows-10-1709: saltstack1 +I, [2020-03-06T13:17:22.357361 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.357892 #17731] INFO -- py3-windows-10-1709: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:17:22.358444 #17731] INFO -- py3-windows-10-1709: Function: system.computer_desc +I, [2020-03-06T13:17:22.358962 #17731] INFO -- py3-windows-10-1709: Name: Saltstack Computer Description +I, [2020-03-06T13:17:22.359619 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.360247 #17731] INFO -- py3-windows-10-1709: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:17:22.360717 #17731] INFO -- py3-windows-10-1709: Started: 10:14:00.030491 +I, [2020-03-06T13:17:22.361347 #17731] INFO -- py3-windows-10-1709: Duration: 3218.702 ms +I, [2020-03-06T13:17:22.361971 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.362615 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.363119 #17731] INFO -- py3-windows-10-1709: new: +I, [2020-03-06T13:17:22.363665 #17731] INFO -- py3-windows-10-1709: Saltstack Computer Description +I, [2020-03-06T13:17:22.364109 #17731] INFO -- py3-windows-10-1709: old: +I, [2020-03-06T13:17:22.364506 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.364841 #17731] INFO -- py3-windows-10-1709: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:17:22.365272 #17731] INFO -- py3-windows-10-1709: Function: timezone.system +I, [2020-03-06T13:17:22.365669 #17731] INFO -- py3-windows-10-1709: Name: America/New_York +I, [2020-03-06T13:17:22.366077 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.366483 #17731] INFO -- py3-windows-10-1709: Comment: Set timezone America/New_York +I, [2020-03-06T13:17:22.366886 #17731] INFO -- py3-windows-10-1709: Started: 10:14:03.359479 +I, [2020-03-06T13:17:22.367304 #17731] INFO -- py3-windows-10-1709: Duration: 46.255 ms +I, [2020-03-06T13:17:22.367688 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.368068 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.368520 #17731] INFO -- py3-windows-10-1709: timezone: +I, [2020-03-06T13:17:22.368890 #17731] INFO -- py3-windows-10-1709: America/New_York +I, [2020-03-06T13:17:22.369287 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.369649 #17731] INFO -- py3-windows-10-1709: ID: windows.module.environ.items +I, [2020-03-06T13:17:22.370078 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:22.370434 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.370838 #17731] INFO -- py3-windows-10-1709: Comment: environ.items: Success +I, [2020-03-06T13:17:22.371240 #17731] INFO -- py3-windows-10-1709: Started: 10:14:03.437118 +I, [2020-03-06T13:17:22.371562 #17731] INFO -- py3-windows-10-1709: Duration: 15.812 ms +I, [2020-03-06T13:17:22.371895 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.372211 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.372588 #17731] INFO -- py3-windows-10-1709: environ.items: +I, [2020-03-06T13:17:22.372915 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.373202 #17731] INFO -- py3-windows-10-1709: ALLUSERSPROFILE: +I, [2020-03-06T13:17:22.373498 #17731] INFO -- py3-windows-10-1709: C:\ProgramData +I, [2020-03-06T13:17:22.373899 #17731] INFO -- py3-windows-10-1709: APPDATA: +I, [2020-03-06T13:17:22.374314 #17731] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:17:22.374754 #17731] INFO -- py3-windows-10-1709: COMMONPROGRAMFILES: +I, [2020-03-06T13:17:22.375138 #17731] INFO -- py3-windows-10-1709: C:\Program Files\Common Files +I, [2020-03-06T13:17:22.375525 #17731] INFO -- py3-windows-10-1709: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:17:22.375932 #17731] INFO -- py3-windows-10-1709: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:17:22.376259 #17731] INFO -- py3-windows-10-1709: COMMONPROGRAMW6432: +I, [2020-03-06T13:17:22.376651 #17731] INFO -- py3-windows-10-1709: C:\Program Files\Common Files +I, [2020-03-06T13:17:22.377047 #17731] INFO -- py3-windows-10-1709: COMPUTERNAME: +I, [2020-03-06T13:17:22.377456 #17731] INFO -- py3-windows-10-1709: VAGRANT-10 +I, [2020-03-06T13:17:22.377893 #17731] INFO -- py3-windows-10-1709: COMSPEC: +I, [2020-03-06T13:17:22.378349 #17731] INFO -- py3-windows-10-1709: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:17:22.378777 #17731] INFO -- py3-windows-10-1709: HOMEDRIVE: +I, [2020-03-06T13:17:22.379172 #17731] INFO -- py3-windows-10-1709: C: +I, [2020-03-06T13:17:22.379583 #17731] INFO -- py3-windows-10-1709: HOMEPATH: +I, [2020-03-06T13:17:22.380023 #17731] INFO -- py3-windows-10-1709: \Users\vagrant +I, [2020-03-06T13:17:22.380425 #17731] INFO -- py3-windows-10-1709: LOCALAPPDATA: +I, [2020-03-06T13:17:22.380855 #17731] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:17:22.381217 #17731] INFO -- py3-windows-10-1709: LOGONSERVER: +I, [2020-03-06T13:17:22.381606 #17731] INFO -- py3-windows-10-1709: \\VAGRANT-10 +I, [2020-03-06T13:17:22.381998 #17731] INFO -- py3-windows-10-1709: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:17:22.382316 #17731] INFO -- py3-windows-10-1709: 2 +I, [2020-03-06T13:17:22.382651 #17731] INFO -- py3-windows-10-1709: ONEDRIVE: +I, [2020-03-06T13:17:22.383025 #17731] INFO -- py3-windows-10-1709: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:17:22.383456 #17731] INFO -- py3-windows-10-1709: OS: +I, [2020-03-06T13:17:22.383894 #17731] INFO -- py3-windows-10-1709: Windows_NT +I, [2020-03-06T13:17:22.384360 #17731] INFO -- py3-windows-10-1709: PATH: +I, [2020-03-06T13:17:22.384858 #17731] INFO -- py3-windows-10-1709: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:17:22.385306 #17731] INFO -- py3-windows-10-1709: PATHEXT: +I, [2020-03-06T13:17:22.385765 #17731] INFO -- py3-windows-10-1709: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:17:22.386129 #17731] INFO -- py3-windows-10-1709: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:17:22.386520 #17731] INFO -- py3-windows-10-1709: AMD64 +I, [2020-03-06T13:17:22.386937 #17731] INFO -- py3-windows-10-1709: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:17:22.387378 #17731] INFO -- py3-windows-10-1709: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:17:22.387869 #17731] INFO -- py3-windows-10-1709: PROCESSOR_LEVEL: +I, [2020-03-06T13:17:22.388302 #17731] INFO -- py3-windows-10-1709: 6 +I, [2020-03-06T13:17:22.388725 #17731] INFO -- py3-windows-10-1709: PROCESSOR_REVISION: +I, [2020-03-06T13:17:22.389137 #17731] INFO -- py3-windows-10-1709: 8e0c +I, [2020-03-06T13:17:22.389558 #17731] INFO -- py3-windows-10-1709: PROGRAMDATA: +I, [2020-03-06T13:17:22.389976 #17731] INFO -- py3-windows-10-1709: C:\ProgramData +I, [2020-03-06T13:17:22.390417 #17731] INFO -- py3-windows-10-1709: PROGRAMFILES: +I, [2020-03-06T13:17:22.390829 #17731] INFO -- py3-windows-10-1709: C:\Program Files +I, [2020-03-06T13:17:22.391262 #17731] INFO -- py3-windows-10-1709: PROGRAMFILES(X86): +I, [2020-03-06T13:17:22.391713 #17731] INFO -- py3-windows-10-1709: C:\Program Files (x86) +I, [2020-03-06T13:17:22.392112 #17731] INFO -- py3-windows-10-1709: PROGRAMW6432: +I, [2020-03-06T13:17:22.392567 #17731] INFO -- py3-windows-10-1709: C:\Program Files +I, [2020-03-06T13:17:22.392993 #17731] INFO -- py3-windows-10-1709: PROMPT: +I, [2020-03-06T13:17:22.393461 #17731] INFO -- py3-windows-10-1709: $P$G +I, [2020-03-06T13:17:22.393907 #17731] INFO -- py3-windows-10-1709: PSMODULEPATH: +I, [2020-03-06T13:17:22.394451 #17731] INFO -- py3-windows-10-1709: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:17:22.395073 #17731] INFO -- py3-windows-10-1709: PUBLIC: +I, [2020-03-06T13:17:22.395682 #17731] INFO -- py3-windows-10-1709: C:\Users\Public +I, [2020-03-06T13:17:22.396222 #17731] INFO -- py3-windows-10-1709: PYTHON: +I, [2020-03-06T13:17:22.396774 #17731] INFO -- py3-windows-10-1709: C:\salt\bin\python.exe +I, [2020-03-06T13:17:22.397335 #17731] INFO -- py3-windows-10-1709: SALTDIR: +I, [2020-03-06T13:17:22.397967 #17731] INFO -- py3-windows-10-1709: C:\salt +I, [2020-03-06T13:17:22.398584 #17731] INFO -- py3-windows-10-1709: SCRIPT: +I, [2020-03-06T13:17:22.399182 #17731] INFO -- py3-windows-10-1709: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:17:22.399794 #17731] INFO -- py3-windows-10-1709: SYSTEMDRIVE: +I, [2020-03-06T13:17:22.400372 #17731] INFO -- py3-windows-10-1709: C: +I, [2020-03-06T13:17:22.400966 #17731] INFO -- py3-windows-10-1709: SYSTEMROOT: +I, [2020-03-06T13:17:22.401570 #17731] INFO -- py3-windows-10-1709: C:\Windows +I, [2020-03-06T13:17:22.402173 #17731] INFO -- py3-windows-10-1709: TEMP: +I, [2020-03-06T13:17:22.402794 #17731] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:17:22.403392 #17731] INFO -- py3-windows-10-1709: TMP: +I, [2020-03-06T13:17:22.403986 #17731] INFO -- py3-windows-10-1709: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:17:22.404631 #17731] INFO -- py3-windows-10-1709: USERDOMAIN: +I, [2020-03-06T13:17:22.405244 #17731] INFO -- py3-windows-10-1709: VAGRANT-10 +I, [2020-03-06T13:17:22.405847 #17731] INFO -- py3-windows-10-1709: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:17:22.406421 #17731] INFO -- py3-windows-10-1709: VAGRANT-10 +I, [2020-03-06T13:17:22.406926 #17731] INFO -- py3-windows-10-1709: USERNAME: +I, [2020-03-06T13:17:22.407443 #17731] INFO -- py3-windows-10-1709: vagrant +I, [2020-03-06T13:17:22.407965 #17731] INFO -- py3-windows-10-1709: USERPROFILE: +I, [2020-03-06T13:17:22.408531 #17731] INFO -- py3-windows-10-1709: C:\Users\vagrant +I, [2020-03-06T13:17:22.409077 #17731] INFO -- py3-windows-10-1709: WINDIR: +I, [2020-03-06T13:17:22.409670 #17731] INFO -- py3-windows-10-1709: C:\Windows +I, [2020-03-06T13:17:22.410281 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.410856 #17731] INFO -- py3-windows-10-1709: ID: windows.module.user.current +I, [2020-03-06T13:17:22.411427 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:22.411983 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.412608 #17731] INFO -- py3-windows-10-1709: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:17:22.413183 #17731] INFO -- py3-windows-10-1709: Started: 10:14:03.452930 +I, [2020-03-06T13:17:22.413727 #17731] INFO -- py3-windows-10-1709: Duration: 124.46 ms +I, [2020-03-06T13:17:22.414318 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.414909 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.415510 #17731] INFO -- py3-windows-10-1709: user.current: +I, [2020-03-06T13:17:22.416112 #17731] INFO -- py3-windows-10-1709: VAGRANT-10\vagrant +I, [2020-03-06T13:17:22.416682 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.417275 #17731] INFO -- py3-windows-10-1709: ID: windows.module.status.uptime +I, [2020-03-06T13:17:22.417868 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:22.418485 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.419051 #17731] INFO -- py3-windows-10-1709: Comment: status.uptime: 0:02:35.656472 +I, [2020-03-06T13:17:22.419648 #17731] INFO -- py3-windows-10-1709: Started: 10:14:03.577390 +I, [2020-03-06T13:17:22.420248 #17731] INFO -- py3-windows-10-1709: Duration: 79.082 ms +I, [2020-03-06T13:17:22.420820 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.421418 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.422027 #17731] INFO -- py3-windows-10-1709: status.uptime: +I, [2020-03-06T13:17:22.422634 #17731] INFO -- py3-windows-10-1709: 0:02:35.656472 +I, [2020-03-06T13:17:22.423221 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.423880 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:17:22.424490 #17731] INFO -- py3-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:17:22.425105 #17731] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage +I, [2020-03-06T13:17:22.425700 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.426330 #17731] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run +I, [2020-03-06T13:17:22.426894 #17731] INFO -- py3-windows-10-1709: Started: 10:14:03.687679 +I, [2020-03-06T13:17:22.427420 #17731] INFO -- py3-windows-10-1709: Duration: 2796.42 ms +I, [2020-03-06T13:17:22.427951 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.428454 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.428999 #17731] INFO -- py3-windows-10-1709: pid: +I, [2020-03-06T13:17:22.429505 #17731] INFO -- py3-windows-10-1709: 4512 +I, [2020-03-06T13:17:22.430002 #17731] INFO -- py3-windows-10-1709: retcode: +I, [2020-03-06T13:17:22.430509 #17731] INFO -- py3-windows-10-1709: 0 +I, [2020-03-06T13:17:22.431017 #17731] INFO -- py3-windows-10-1709: stderr: +I, [2020-03-06T13:17:22.431524 #17731] INFO -- py3-windows-10-1709: stdout: +I, [2020-03-06T13:17:22.432058 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.432592 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:17:22.433090 #17731] INFO -- py3-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:17:22.433616 #17731] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage +I, [2020-03-06T13:17:22.434134 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.434691 #17731] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run +I, [2020-03-06T13:17:22.435217 #17731] INFO -- py3-windows-10-1709: Started: 10:14:06.484099 +I, [2020-03-06T13:17:22.435741 #17731] INFO -- py3-windows-10-1709: Duration: 1311.943 ms +I, [2020-03-06T13:17:22.436266 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.436789 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.437341 #17731] INFO -- py3-windows-10-1709: pid: +I, [2020-03-06T13:17:22.437920 #17731] INFO -- py3-windows-10-1709: 6972 +I, [2020-03-06T13:17:22.438528 #17731] INFO -- py3-windows-10-1709: retcode: +I, [2020-03-06T13:17:22.439054 #17731] INFO -- py3-windows-10-1709: 0 +I, [2020-03-06T13:17:22.439616 #17731] INFO -- py3-windows-10-1709: stderr: +I, [2020-03-06T13:17:22.440142 #17731] INFO -- py3-windows-10-1709: stdout: +I, [2020-03-06T13:17:22.440678 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.441239 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:17:22.441848 #17731] INFO -- py3-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:17:22.442447 #17731] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage +I, [2020-03-06T13:17:22.443020 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.443532 #17731] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run +I, [2020-03-06T13:17:22.443980 #17731] INFO -- py3-windows-10-1709: Started: 10:14:07.796042 +I, [2020-03-06T13:17:22.444562 #17731] INFO -- py3-windows-10-1709: Duration: 1281.335 ms +I, [2020-03-06T13:17:22.445150 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.445740 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.446319 #17731] INFO -- py3-windows-10-1709: pid: +I, [2020-03-06T13:17:22.446855 #17731] INFO -- py3-windows-10-1709: 6596 +I, [2020-03-06T13:17:22.447423 #17731] INFO -- py3-windows-10-1709: retcode: +I, [2020-03-06T13:17:22.447983 #17731] INFO -- py3-windows-10-1709: 0 +I, [2020-03-06T13:17:22.448583 #17731] INFO -- py3-windows-10-1709: stderr: +I, [2020-03-06T13:17:22.449128 #17731] INFO -- py3-windows-10-1709: stdout: +I, [2020-03-06T13:17:22.449694 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.450246 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:17:22.450796 #17731] INFO -- py3-windows-10-1709: Function: cmd.run +I, [2020-03-06T13:17:22.451396 #17731] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage +I, [2020-03-06T13:17:22.451945 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.452544 #17731] INFO -- py3-windows-10-1709: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run +I, [2020-03-06T13:17:22.453159 #17731] INFO -- py3-windows-10-1709: Started: 10:14:09.092997 +I, [2020-03-06T13:17:22.453742 #17731] INFO -- py3-windows-10-1709: Duration: 1281.562 ms +I, [2020-03-06T13:17:22.454377 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.455032 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.455660 #17731] INFO -- py3-windows-10-1709: pid: +I, [2020-03-06T13:17:22.456223 #17731] INFO -- py3-windows-10-1709: 932 +I, [2020-03-06T13:17:22.456757 #17731] INFO -- py3-windows-10-1709: retcode: +I, [2020-03-06T13:17:22.457318 #17731] INFO -- py3-windows-10-1709: 0 +I, [2020-03-06T13:17:22.457851 #17731] INFO -- py3-windows-10-1709: stderr: +I, [2020-03-06T13:17:22.467503 #17731] INFO -- py3-windows-10-1709: stdout: +I, [2020-03-06T13:17:22.468385 #17731] INFO -- py3-windows-10-1709: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:14:10.400435 Duration: 489.521 ms +I, [2020-03-06T13:17:22.469045 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.469658 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:17:22.470282 #17731] INFO -- py3-windows-10-1709: Function: reg.present +I, [2020-03-06T13:17:22.470926 #17731] INFO -- py3-windows-10-1709: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:17:22.471506 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.472103 #17731] INFO -- py3-windows-10-1709: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:17:22.472700 #17731] INFO -- py3-windows-10-1709: Started: 10:14:10.905916 +I, [2020-03-06T13:17:22.473309 #17731] INFO -- py3-windows-10-1709: Duration: 25530.731 ms +I, [2020-03-06T13:17:22.473919 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.474499 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.475120 #17731] INFO -- py3-windows-10-1709: reg: +I, [2020-03-06T13:17:22.475610 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.476115 #17731] INFO -- py3-windows-10-1709: Added: +I, [2020-03-06T13:17:22.476597 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.477059 #17731] INFO -- py3-windows-10-1709: Entry: +I, [2020-03-06T13:17:22.477536 #17731] INFO -- py3-windows-10-1709: SystemDefaultTlsVersions +I, [2020-03-06T13:17:22.478005 #17731] INFO -- py3-windows-10-1709: Inheritance: +I, [2020-03-06T13:17:22.478571 #17731] INFO -- py3-windows-10-1709: True +I, [2020-03-06T13:17:22.478990 #17731] INFO -- py3-windows-10-1709: Key: +I, [2020-03-06T13:17:22.479396 #17731] INFO -- py3-windows-10-1709: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:17:22.479831 #17731] INFO -- py3-windows-10-1709: Owner: +I, [2020-03-06T13:17:22.480304 #17731] INFO -- py3-windows-10-1709: None +I, [2020-03-06T13:17:22.480787 #17731] INFO -- py3-windows-10-1709: Perms: +I, [2020-03-06T13:17:22.481219 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.481599 #17731] INFO -- py3-windows-10-1709: Deny: +I, [2020-03-06T13:17:22.482005 #17731] INFO -- py3-windows-10-1709: None +I, [2020-03-06T13:17:22.482470 #17731] INFO -- py3-windows-10-1709: Grant: +I, [2020-03-06T13:17:22.482839 #17731] INFO -- py3-windows-10-1709: None +I, [2020-03-06T13:17:22.483224 #17731] INFO -- py3-windows-10-1709: Value: +I, [2020-03-06T13:17:22.483588 #17731] INFO -- py3-windows-10-1709: 1 +I, [2020-03-06T13:17:22.484042 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.485864 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:17:22.486656 #17731] INFO -- py3-windows-10-1709: Function: reg.present +I, [2020-03-06T13:17:22.487298 #17731] INFO -- py3-windows-10-1709: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:17:22.487837 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.488404 #17731] INFO -- py3-windows-10-1709: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:17:22.488925 #17731] INFO -- py3-windows-10-1709: Started: 10:14:36.452501 +I, [2020-03-06T13:17:22.489444 #17731] INFO -- py3-windows-10-1709: Duration: 219.024 ms +I, [2020-03-06T13:17:22.490062 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.490639 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.491144 #17731] INFO -- py3-windows-10-1709: reg: +I, [2020-03-06T13:17:22.491566 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.492129 #17731] INFO -- py3-windows-10-1709: Added: +I, [2020-03-06T13:17:22.492683 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.493255 #17731] INFO -- py3-windows-10-1709: Entry: +I, [2020-03-06T13:17:22.493769 #17731] INFO -- py3-windows-10-1709: SystemDefaultTlsVersions +I, [2020-03-06T13:17:22.494295 #17731] INFO -- py3-windows-10-1709: Inheritance: +I, [2020-03-06T13:17:22.494801 #17731] INFO -- py3-windows-10-1709: True +I, [2020-03-06T13:17:22.495325 #17731] INFO -- py3-windows-10-1709: Key: +I, [2020-03-06T13:17:22.495833 #17731] INFO -- py3-windows-10-1709: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:17:22.496342 #17731] INFO -- py3-windows-10-1709: Owner: +I, [2020-03-06T13:17:22.496829 #17731] INFO -- py3-windows-10-1709: None +I, [2020-03-06T13:17:22.497313 #17731] INFO -- py3-windows-10-1709: Perms: +I, [2020-03-06T13:17:22.497775 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.498243 #17731] INFO -- py3-windows-10-1709: Deny: +I, [2020-03-06T13:17:22.498700 #17731] INFO -- py3-windows-10-1709: None +I, [2020-03-06T13:17:22.499180 #17731] INFO -- py3-windows-10-1709: Grant: +I, [2020-03-06T13:17:22.499639 #17731] INFO -- py3-windows-10-1709: None +I, [2020-03-06T13:17:22.500117 #17731] INFO -- py3-windows-10-1709: Value: +I, [2020-03-06T13:17:22.500594 #17731] INFO -- py3-windows-10-1709: 1 +I, [2020-03-06T13:17:22.501120 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.501610 #17731] INFO -- py3-windows-10-1709: ID: manually.update_git_repo-ng +I, [2020-03-06T13:17:22.502099 #17731] INFO -- py3-windows-10-1709: Function: archive.extracted +I, [2020-03-06T13:17:22.502613 #17731] INFO -- py3-windows-10-1709: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:17:22.503134 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.503707 #17731] INFO -- py3-windows-10-1709: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:17:22.504227 #17731] INFO -- py3-windows-10-1709: Started: 10:14:36.687189 +I, [2020-03-06T13:17:22.504748 #17731] INFO -- py3-windows-10-1709: Duration: 1062.208 ms +I, [2020-03-06T13:17:22.505226 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.505752 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.506269 #17731] INFO -- py3-windows-10-1709: directories_created: +I, [2020-03-06T13:17:22.506807 #17731] INFO -- py3-windows-10-1709: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:17:22.507332 #17731] INFO -- py3-windows-10-1709: extracted_files: +I, [2020-03-06T13:17:22.507947 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ +I, [2020-03-06T13:17:22.508409 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:17:22.508868 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:17:22.509298 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:17:22.509826 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:17:22.510422 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:17:22.511012 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:17:22.511571 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:17:22.512140 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:17:22.512690 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:17:22.513189 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:17:22.513654 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:17:22.514022 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:17:22.514441 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:17:22.514803 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:17:22.515146 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:17:22.515657 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:17:22.516166 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:17:22.516709 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:17:22.517167 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:17:22.517607 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:17:22.518097 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:17:22.518546 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:17:22.518957 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:17:22.519378 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:17:22.519816 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:17:22.520243 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:17:22.520681 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:17:22.521281 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:17:22.521684 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:17:22.522051 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:17:22.522443 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:17:22.522792 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:17:22.523166 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:17:22.523751 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:17:22.524334 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:17:22.524859 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:17:22.525409 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:17:22.525944 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:17:22.526502 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:17:22.527031 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:17:22.527605 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:17:22.528151 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:17:22.528700 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:17:22.529247 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:17:22.529789 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:17:22.530358 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:17:22.530895 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:17:22.531449 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:17:22.531957 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:17:22.532504 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:17:22.533034 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:17:22.533581 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:17:22.534156 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:17:22.534727 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:17:22.535315 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:17:22.535817 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:17:22.536325 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:17:22.536809 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:17:22.537302 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:17:22.537769 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:17:22.538254 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:17:22.538724 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:17:22.539219 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:17:22.539687 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:17:22.540172 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:17:22.540655 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:17:22.541153 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:17:22.541605 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:17:22.542076 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:17:22.542547 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:17:22.543051 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:17:22.543559 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:17:22.544086 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:17:22.544609 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:17:22.545154 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:17:22.545681 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:17:22.546225 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:17:22.546743 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:17:22.547242 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:17:22.547751 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:17:22.548356 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:17:22.548880 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:17:22.549358 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:17:22.549803 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:17:22.550192 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:17:22.550704 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:17:22.551202 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:17:22.551628 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:17:22.552024 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:17:22.552548 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:17:22.553005 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:17:22.553502 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:17:22.554116 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:17:22.554678 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:17:22.555124 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:17:22.555594 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:17:22.556095 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:17:22.556565 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:17:22.556954 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:17:22.557392 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:17:22.557843 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:17:22.558332 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:17:22.558745 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:17:22.559172 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:17:22.559587 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:17:22.560026 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:17:22.560482 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:17:22.560865 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:17:22.561420 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:17:22.561841 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:17:22.562278 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:17:22.562831 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:17:22.563285 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:17:22.563735 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:17:22.564297 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:17:22.564921 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:17:22.565584 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:17:22.566200 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:17:22.566803 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:17:22.567420 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:17:22.567997 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:17:22.568544 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:17:22.569004 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:17:22.569551 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:17:22.569962 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:17:22.570343 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:17:22.570785 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:17:22.571306 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:17:22.571747 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:17:22.572199 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:17:22.572696 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:17:22.573184 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:17:22.573631 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:17:22.574099 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:17:22.574564 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:17:22.575036 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:17:22.575545 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:17:22.576028 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:17:22.576515 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:17:22.577089 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:17:22.577545 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:17:22.578040 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:17:22.578596 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:17:22.579088 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:17:22.579483 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:17:22.579906 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:17:22.580335 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:17:22.580719 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:17:22.581165 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:17:22.581626 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:17:22.582072 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:17:22.582641 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:17:22.583241 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:17:22.583798 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:17:22.584353 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:17:22.584890 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:17:22.585401 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:17:22.585926 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:17:22.586445 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:17:22.586973 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:17:22.587497 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:17:22.588108 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:17:22.588683 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:17:22.589283 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:17:22.589886 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:17:22.590473 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:17:22.591070 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:17:22.591625 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:17:22.592256 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:17:22.592922 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:17:22.593566 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:17:22.594231 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:17:22.594875 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:17:22.595450 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:17:22.596098 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:17:22.596754 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:17:22.597347 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:17:22.597964 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:17:22.598583 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:17:22.608342 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:17:22.609240 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:17:22.609962 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:17:22.610608 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:17:22.611248 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:17:22.611890 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:17:22.612574 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:17:22.613215 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:17:22.613845 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:17:22.614595 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:17:22.615300 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:17:22.615929 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:17:22.616676 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:17:22.617498 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:17:22.618261 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:17:22.618847 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:17:22.619405 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:17:22.619838 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:17:22.620340 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:17:22.620946 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:17:22.621544 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:17:22.622135 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:17:22.622720 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:17:22.623321 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:17:22.623911 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:17:22.624364 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:17:22.624821 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:17:22.625247 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:17:22.625677 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:17:22.626169 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:17:22.626624 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:17:22.627069 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:17:22.627540 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:17:22.627999 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:17:22.628523 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:17:22.629108 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:17:22.629668 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:17:22.630234 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:17:22.630801 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:17:22.631357 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:17:22.631938 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:17:22.632498 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:17:22.633061 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:17:22.633631 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:17:22.634204 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:17:22.634825 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:17:22.635381 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:17:22.635959 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:17:22.636520 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:17:22.637103 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:17:22.637700 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:17:22.638280 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:17:22.638850 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:17:22.639390 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:17:22.639976 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:17:22.640562 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:17:22.641131 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:17:22.641707 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:17:22.642243 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:17:22.642833 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:17:22.643445 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:17:22.643974 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:17:22.644442 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:17:22.644870 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:17:22.645314 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:17:22.645763 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:17:22.646254 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:17:22.646788 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:17:22.647241 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:17:22.647677 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:17:22.648123 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:17:22.648615 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:17:22.649084 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:17:22.649589 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:17:22.650099 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:17:22.650559 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:17:22.651029 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:17:22.651568 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:17:22.652074 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:17:22.652588 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:17:22.653189 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:17:22.653758 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:17:22.654325 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:17:22.654884 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:17:22.655446 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:17:22.656015 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:17:22.656594 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:17:22.657151 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:17:22.657693 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:17:22.658271 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:17:22.658838 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:17:22.659418 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:17:22.660002 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:17:22.660573 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:17:22.661160 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:17:22.661700 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:17:22.662232 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:17:22.662795 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:17:22.663362 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:17:22.663938 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:17:22.664481 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:17:22.664999 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:17:22.665476 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:17:22.665922 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:17:22.666412 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:17:22.666924 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:17:22.667491 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:17:22.668103 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:17:22.668625 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:17:22.669124 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:17:22.669562 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:17:22.670064 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:17:22.670537 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:17:22.671058 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:17:22.671685 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:17:22.672478 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:17:22.673048 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:17:22.673524 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:17:22.673940 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:17:22.674379 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:17:22.674773 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:17:22.675263 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:17:22.675822 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:17:22.676351 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:17:22.676901 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:17:22.677327 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:17:22.677807 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:17:22.678299 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:17:22.678764 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:17:22.679150 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:17:22.679549 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:17:22.680000 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:17:22.680478 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:17:22.680874 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:17:22.681361 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:17:22.681747 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:17:22.682124 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:17:22.682595 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:17:22.682974 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:17:22.683370 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:17:22.683874 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:17:22.684425 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:17:22.684949 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:17:22.685476 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:17:22.685880 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:17:22.686286 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:17:22.686705 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:17:22.873743 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:17:22.874352 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:17:22.874944 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:17:22.875436 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:17:22.875842 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:17:22.876265 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:17:22.876785 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:17:22.877317 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:17:22.877949 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:17:22.878464 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:17:22.878956 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:17:22.879421 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:17:22.879873 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:17:22.880363 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:17:22.880878 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:17:22.881282 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:17:22.881751 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:17:22.882266 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:17:22.882770 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:17:22.883312 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:17:22.883761 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:17:22.884243 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:17:22.884842 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:17:22.885361 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:17:22.885863 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:17:22.886422 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:17:22.887024 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:17:22.887610 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:17:22.888209 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:17:22.888820 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:17:22.889374 #17731] INFO -- py3-windows-10-1709: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:17:22.889950 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.890540 #17731] INFO -- py3-windows-10-1709: ID: rename-extract +I, [2020-03-06T13:17:22.891085 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:22.891631 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.892154 #17731] INFO -- py3-windows-10-1709: Comment: file.rename: True +I, [2020-03-06T13:17:22.892694 #17731] INFO -- py3-windows-10-1709: Started: 10:14:37.749397 +I, [2020-03-06T13:17:22.893205 #17731] INFO -- py3-windows-10-1709: Duration: 0.0 ms +I, [2020-03-06T13:17:22.903025 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.903719 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.904350 #17731] INFO -- py3-windows-10-1709: file.rename: +I, [2020-03-06T13:17:22.904955 #17731] INFO -- py3-windows-10-1709: True +I, [2020-03-06T13:17:22.905533 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.906091 #17731] INFO -- py3-windows-10-1709: ID: pkg.refresh_db +I, [2020-03-06T13:17:22.906710 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:22.907212 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.907678 #17731] INFO -- py3-windows-10-1709: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:17:22.908137 #17731] INFO -- py3-windows-10-1709: Started: 10:14:37.749397 +I, [2020-03-06T13:17:22.908623 #17731] INFO -- py3-windows-10-1709: Duration: 15265.869 ms +I, [2020-03-06T13:17:22.909106 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.909505 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.909977 #17731] INFO -- py3-windows-10-1709: pkg.refresh_db: +I, [2020-03-06T13:17:22.910386 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.910906 #17731] INFO -- py3-windows-10-1709: failed: +I, [2020-03-06T13:17:22.911305 #17731] INFO -- py3-windows-10-1709: 0 +I, [2020-03-06T13:17:22.911787 #17731] INFO -- py3-windows-10-1709: success: +I, [2020-03-06T13:17:22.912225 #17731] INFO -- py3-windows-10-1709: 298 +I, [2020-03-06T13:17:22.912688 #17731] INFO -- py3-windows-10-1709: total: +I, [2020-03-06T13:17:22.913203 #17731] INFO -- py3-windows-10-1709: 298 +I, [2020-03-06T13:17:22.913668 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.914099 #17731] INFO -- py3-windows-10-1709: ID: 7zip +I, [2020-03-06T13:17:22.914537 #17731] INFO -- py3-windows-10-1709: Function: pkg.installed +I, [2020-03-06T13:17:22.914942 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.915485 #17731] INFO -- py3-windows-10-1709: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:17:22.916073 #17731] INFO -- py3-windows-10-1709: Started: 10:14:53.046589 +I, [2020-03-06T13:17:22.916632 #17731] INFO -- py3-windows-10-1709: Duration: 5796.856 ms +I, [2020-03-06T13:17:22.917219 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.917838 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.918400 #17731] INFO -- py3-windows-10-1709: 7zip: +I, [2020-03-06T13:17:22.918970 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.919522 #17731] INFO -- py3-windows-10-1709: new: +I, [2020-03-06T13:17:22.920100 #17731] INFO -- py3-windows-10-1709: 18.06.00.0 +I, [2020-03-06T13:17:22.920692 #17731] INFO -- py3-windows-10-1709: old: +I, [2020-03-06T13:17:22.921235 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.921826 #17731] INFO -- py3-windows-10-1709: ID: kdiff3 +I, [2020-03-06T13:17:22.922363 #17731] INFO -- py3-windows-10-1709: Function: pkg.installed +I, [2020-03-06T13:17:22.922892 #17731] INFO -- py3-windows-10-1709: Result: False +I, [2020-03-06T13:17:22.923453 #17731] INFO -- py3-windows-10-1709: Comment: An exception occurred in this state: Traceback (most recent call last): +I, [2020-03-06T13:17:22.924083 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call +I, [2020-03-06T13:17:22.924728 #17731] INFO -- py3-windows-10-1709: **cdata['kwargs']) +I, [2020-03-06T13:17:22.925378 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper +I, [2020-03-06T13:17:22.926073 #17731] INFO -- py3-windows-10-1709: return f(*args, **kwargs) +I, [2020-03-06T13:17:22.926792 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed +I, [2020-03-06T13:17:22.927390 #17731] INFO -- py3-windows-10-1709: **kwargs) +I, [2020-03-06T13:17:22.928043 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install +I, [2020-03-06T13:17:22.928680 #17731] INFO -- py3-windows-10-1709: cached_pkg = __salt__['cp.cache_file'](installer, saltenv) +I, [2020-03-06T13:17:22.929301 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file +I, [2020-03-06T13:17:22.929938 #17731] INFO -- py3-windows-10-1709: result = _client().cache_file(path, saltenv, source_hash=source_hash) +I, [2020-03-06T13:17:22.930554 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file +I, [2020-03-06T13:17:22.931165 #17731] INFO -- py3-windows-10-1709: path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) +I, [2020-03-06T13:17:22.931800 #17731] INFO -- py3-windows-10-1709: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url +I, [2020-03-06T13:17:22.932433 #17731] INFO -- py3-windows-10-1709: raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +I, [2020-03-06T13:17:22.934052 #17731] INFO -- py3-windows-10-1709: salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe +I, [2020-03-06T13:17:22.934800 #17731] INFO -- py3-windows-10-1709: Started: 10:14:58.921575 +I, [2020-03-06T13:17:22.935434 #17731] INFO -- py3-windows-10-1709: Duration: 35421.791 ms +I, [2020-03-06T13:17:22.936003 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.936585 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.937148 #17731] INFO -- py3-windows-10-1709: ID: git +I, [2020-03-06T13:17:22.937757 #17731] INFO -- py3-windows-10-1709: Function: pkg.installed +I, [2020-03-06T13:17:22.938324 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.938882 #17731] INFO -- py3-windows-10-1709: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:17:22.939420 #17731] INFO -- py3-windows-10-1709: Started: 10:15:34.359009 +I, [2020-03-06T13:17:22.939873 #17731] INFO -- py3-windows-10-1709: Duration: 26202.759 ms +I, [2020-03-06T13:17:22.940371 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.940826 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.941373 #17731] INFO -- py3-windows-10-1709: git: +I, [2020-03-06T13:17:22.941864 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.942294 #17731] INFO -- py3-windows-10-1709: new: +I, [2020-03-06T13:17:22.942739 #17731] INFO -- py3-windows-10-1709: 2.23.0.windows.1 +I, [2020-03-06T13:17:22.943176 #17731] INFO -- py3-windows-10-1709: old: +I, [2020-03-06T13:17:22.943583 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.944167 #17731] INFO -- py3-windows-10-1709: ID: windows_environment.refresh.path +I, [2020-03-06T13:17:22.944750 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:22.945336 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.945904 #17731] INFO -- py3-windows-10-1709: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:17:22.946489 #17731] INFO -- py3-windows-10-1709: Started: 10:16:00.577394 +I, [2020-03-06T13:17:22.947088 #17731] INFO -- py3-windows-10-1709: Duration: 78.306 ms +I, [2020-03-06T13:17:22.947625 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.948228 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.948801 #17731] INFO -- py3-windows-10-1709: windows_environment.refresh: +I, [2020-03-06T13:17:22.949402 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.949996 #17731] INFO -- py3-windows-10-1709: PATH: +I, [2020-03-06T13:17:22.950597 #17731] INFO -- py3-windows-10-1709: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:17:22.951223 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.951794 #17731] INFO -- py3-windows-10-1709: ID: chocolatey.bootstrap +I, [2020-03-06T13:17:22.952383 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:22.952952 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:22.953523 #17731] INFO -- py3-windows-10-1709: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:17:22.954025 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.954579 #17731] INFO -- py3-windows-10-1709: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:17:22.955102 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.955666 #17731] INFO -- py3-windows-10-1709: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:17:22.956196 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.956848 #17731] INFO -- py3-windows-10-1709: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:17:22.957370 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.957949 #17731] INFO -- py3-windows-10-1709: Installing chocolatey on this machine +I, [2020-03-06T13:17:22.958417 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.958989 #17731] INFO -- py3-windows-10-1709: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:17:22.959571 #17731] INFO -- py3-windows-10-1709: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:17:22.960072 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.960634 #17731] INFO -- py3-windows-10-1709: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:17:22.961241 #17731] INFO -- py3-windows-10-1709: before you can use choco. +I, [2020-03-06T13:17:22.961850 #17731] INFO -- py3-windows-10-1709: Restricting write permissions to Administrators +I, [2020-03-06T13:17:22.962348 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.962934 #17731] INFO -- py3-windows-10-1709: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:17:22.963410 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.963993 #17731] INFO -- py3-windows-10-1709: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:17:22.964497 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.965086 #17731] INFO -- py3-windows-10-1709: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:17:22.965602 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.966159 #17731] INFO -- py3-windows-10-1709: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:17:22.966655 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.967199 #17731] INFO -- py3-windows-10-1709: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:17:22.967763 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.968311 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.968810 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.969352 #17731] INFO -- py3-windows-10-1709: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:17:22.969876 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.970457 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.970944 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.971498 #17731] INFO -- py3-windows-10-1709: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:17:22.972001 #17731] INFO -- py3-windows-10-1709: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:17:22.972577 #17731] INFO -- py3-windows-10-1709: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:17:22.973162 #17731] INFO -- py3-windows-10-1709: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:17:22.973778 #17731] INFO -- py3-windows-10-1709: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:17:22.974392 #17731] INFO -- py3-windows-10-1709: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:17:22.974888 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.975480 #17731] INFO -- py3-windows-10-1709: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:17:22.976046 #17731] INFO -- py3-windows-10-1709: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:17:22.976538 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.977105 #17731] INFO -- py3-windows-10-1709: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:17:22.977740 #17731] INFO -- py3-windows-10-1709: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:17:22.978275 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.978866 #17731] INFO -- py3-windows-10-1709: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:17:22.979400 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.979980 #17731] INFO -- py3-windows-10-1709: Run choco /? for a list of functions. +I, [2020-03-06T13:17:22.980511 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.981069 #17731] INFO -- py3-windows-10-1709: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:17:22.981587 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.982161 #17731] INFO -- py3-windows-10-1709: first prior to using choco. +I, [2020-03-06T13:17:22.982664 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.983258 #17731] INFO -- py3-windows-10-1709: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:17:22.983762 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.984344 #17731] INFO -- py3-windows-10-1709: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:17:22.984889 #17731] INFO -- py3-windows-10-1709: Started: 10:16:00.655700 +I, [2020-03-06T13:17:22.985466 #17731] INFO -- py3-windows-10-1709: Duration: 39343.589 ms +I, [2020-03-06T13:17:22.986004 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:22.986619 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:22.987125 #17731] INFO -- py3-windows-10-1709: chocolatey.bootstrap: +I, [2020-03-06T13:17:22.987549 #17731] INFO -- py3-windows-10-1709: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:17:22.988003 #17731] INFO -- py3-windows-10-1709: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:17:22.988479 #17731] INFO -- py3-windows-10-1709: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:17:22.988989 #17731] INFO -- py3-windows-10-1709: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:17:22.989497 #17731] INFO -- py3-windows-10-1709: Installing chocolatey on this machine +I, [2020-03-06T13:17:22.990050 #17731] INFO -- py3-windows-10-1709: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:17:22.990529 #17731] INFO -- py3-windows-10-1709: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:17:22.990984 #17731] INFO -- py3-windows-10-1709: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:17:22.991381 #17731] INFO -- py3-windows-10-1709: before you can use choco. +I, [2020-03-06T13:17:22.991833 #17731] INFO -- py3-windows-10-1709: Restricting write permissions to Administrators +I, [2020-03-06T13:17:22.992259 #17731] INFO -- py3-windows-10-1709: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:17:22.992752 #17731] INFO -- py3-windows-10-1709: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:17:22.993201 #17731] INFO -- py3-windows-10-1709: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:17:22.993686 #17731] INFO -- py3-windows-10-1709: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:17:22.994176 #17731] INFO -- py3-windows-10-1709: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:17:22.994596 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.994994 #17731] INFO -- py3-windows-10-1709: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:17:22.995481 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:22.995938 #17731] INFO -- py3-windows-10-1709: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:17:22.996360 #17731] INFO -- py3-windows-10-1709: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:17:22.996805 #17731] INFO -- py3-windows-10-1709: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:17:22.997238 #17731] INFO -- py3-windows-10-1709: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:17:22.997677 #17731] INFO -- py3-windows-10-1709: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:17:22.998089 #17731] INFO -- py3-windows-10-1709: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:17:22.998507 #17731] INFO -- py3-windows-10-1709: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:17:22.998954 #17731] INFO -- py3-windows-10-1709: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:17:22.999660 #17731] INFO -- py3-windows-10-1709: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:17:23.000326 #17731] INFO -- py3-windows-10-1709: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:17:23.000987 #17731] INFO -- py3-windows-10-1709: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:17:23.001548 #17731] INFO -- py3-windows-10-1709: Run choco /? for a list of functions. +I, [2020-03-06T13:17:23.002194 #17731] INFO -- py3-windows-10-1709: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:17:23.002797 #17731] INFO -- py3-windows-10-1709: first prior to using choco. +I, [2020-03-06T13:17:23.003382 #17731] INFO -- py3-windows-10-1709: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:17:23.004009 #17731] INFO -- py3-windows-10-1709: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:17:23.004553 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.005184 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:17:23.005791 #17731] INFO -- py3-windows-10-1709: Function: chocolatey.installed +I, [2020-03-06T13:17:23.006351 #17731] INFO -- py3-windows-10-1709: Name: notepadplusplus +I, [2020-03-06T13:17:23.006915 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:23.007441 #17731] INFO -- py3-windows-10-1709: Comment: +I, [2020-03-06T13:17:23.008005 #17731] INFO -- py3-windows-10-1709: Started: 10:16:39.999289 +I, [2020-03-06T13:17:23.008561 #17731] INFO -- py3-windows-10-1709: Duration: 16984.207 ms +I, [2020-03-06T13:17:23.009089 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:23.009604 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.010086 #17731] INFO -- py3-windows-10-1709: notepadplusplus: +I, [2020-03-06T13:17:23.010581 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.011040 #17731] INFO -- py3-windows-10-1709: new: +I, [2020-03-06T13:17:23.011524 #17731] INFO -- py3-windows-10-1709: - 7.8.5 +I, [2020-03-06T13:17:23.011990 #17731] INFO -- py3-windows-10-1709: old: +I, [2020-03-06T13:17:23.012536 #17731] INFO -- py3-windows-10-1709: notepadplusplus.install: +I, [2020-03-06T13:17:23.013060 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.013618 #17731] INFO -- py3-windows-10-1709: new: +I, [2020-03-06T13:17:23.014138 #17731] INFO -- py3-windows-10-1709: - 7.8.5 +I, [2020-03-06T13:17:23.014715 #17731] INFO -- py3-windows-10-1709: old: +I, [2020-03-06T13:17:23.015253 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.015831 #17731] INFO -- py3-windows-10-1709: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:17:23.016419 #17731] INFO -- py3-windows-10-1709: Function: chocolatey.installed +I, [2020-03-06T13:17:23.016961 #17731] INFO -- py3-windows-10-1709: Name: windirstat +I, [2020-03-06T13:17:23.017552 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:23.018118 #17731] INFO -- py3-windows-10-1709: Comment: +I, [2020-03-06T13:17:23.018702 #17731] INFO -- py3-windows-10-1709: Started: 10:16:56.983496 +I, [2020-03-06T13:17:23.019302 #17731] INFO -- py3-windows-10-1709: Duration: 14750.718 ms +I, [2020-03-06T13:17:23.019892 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:23.020497 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.021086 #17731] INFO -- py3-windows-10-1709: windirstat: +I, [2020-03-06T13:17:23.021681 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.022292 #17731] INFO -- py3-windows-10-1709: new: +I, [2020-03-06T13:17:23.022897 #17731] INFO -- py3-windows-10-1709: - 1.1.2.20161210 +I, [2020-03-06T13:17:23.023488 #17731] INFO -- py3-windows-10-1709: old: +I, [2020-03-06T13:17:23.024043 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.024674 #17731] INFO -- py3-windows-10-1709: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:17:23.025292 #17731] INFO -- py3-windows-10-1709: Function: dism.feature_installed +I, [2020-03-06T13:17:23.025843 #17731] INFO -- py3-windows-10-1709: Name: TelnetClient +I, [2020-03-06T13:17:23.026424 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:23.026993 #17731] INFO -- py3-windows-10-1709: Comment: Installed TelnetClient +I, [2020-03-06T13:17:23.027588 #17731] INFO -- py3-windows-10-1709: Started: 10:17:11.734214 +I, [2020-03-06T13:17:23.028156 #17731] INFO -- py3-windows-10-1709: Duration: 9655.902 ms +I, [2020-03-06T13:17:23.028707 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:23.029312 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.029859 #17731] INFO -- py3-windows-10-1709: feature: +I, [2020-03-06T13:17:23.030442 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.031029 #17731] INFO -- py3-windows-10-1709: new: +I, [2020-03-06T13:17:23.031607 #17731] INFO -- py3-windows-10-1709: - TelnetClient +I, [2020-03-06T13:17:23.032194 #17731] INFO -- py3-windows-10-1709: pid: +I, [2020-03-06T13:17:23.032754 #17731] INFO -- py3-windows-10-1709: 5996 +I, [2020-03-06T13:17:23.033356 #17731] INFO -- py3-windows-10-1709: retcode: +I, [2020-03-06T13:17:23.033943 #17731] INFO -- py3-windows-10-1709: 0 +I, [2020-03-06T13:17:23.042598 #17731] INFO -- py3-windows-10-1709: stderr: +I, [2020-03-06T13:17:23.043345 #17731] INFO -- py3-windows-10-1709: stdout: +I, [2020-03-06T13:17:23.043981 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.044502 #17731] INFO -- py3-windows-10-1709: ID: windows.module.system.reboot +I, [2020-03-06T13:17:23.044985 #17731] INFO -- py3-windows-10-1709: Function: module.run +I, [2020-03-06T13:17:23.045462 #17731] INFO -- py3-windows-10-1709: Result: True +I, [2020-03-06T13:17:23.045932 #17731] INFO -- py3-windows-10-1709: Comment: system.reboot: True +I, [2020-03-06T13:17:23.046422 #17731] INFO -- py3-windows-10-1709: Started: 10:17:21.390116 +I, [2020-03-06T13:17:23.046963 #17731] INFO -- py3-windows-10-1709: Duration: 359.591 ms +I, [2020-03-06T13:17:23.047429 #17731] INFO -- py3-windows-10-1709: Changes: +I, [2020-03-06T13:17:23.047919 #17731] INFO -- py3-windows-10-1709: ---------- +I, [2020-03-06T13:17:23.048401 #17731] INFO -- py3-windows-10-1709: system.reboot: +I, [2020-03-06T13:17:23.048893 #17731] INFO -- py3-windows-10-1709: True +I, [2020-03-06T13:17:23.049377 #17731] INFO -- py3-windows-10-1709: +I, [2020-03-06T13:17:23.050015 #17731] INFO -- py3-windows-10-1709: Summary for local +I, [2020-03-06T13:17:23.050639 #17731] INFO -- py3-windows-10-1709: ------------- +I, [2020-03-06T13:17:23.051223 #17731] INFO -- py3-windows-10-1709: Succeeded: 24 (changed=23) +I, [2020-03-06T13:17:23.051861 #17731] INFO -- py3-windows-10-1709: Failed: 1 +I, [2020-03-06T13:17:23.052468 #17731] INFO -- py3-windows-10-1709: ------------- +I, [2020-03-06T13:17:23.053057 #17731] INFO -- py3-windows-10-1709: Total states run: 25 +I, [2020-03-06T13:17:23.053688 #17731] INFO -- py3-windows-10-1709: Total run time: 201.472 s +E, [2020-03-06T13:17:23.251794 #17731] ERROR -- py3-windows-10-1709: Converge failed on instance . +E, [2020-03-06T13:17:23.251975 #17731] ERROR -- py3-windows-10-1709: ------Exception------- +E, [2020-03-06T13:17:23.252012 #17731] ERROR -- py3-windows-10-1709: Class: Kitchen::ActionFailed +E, [2020-03-06T13:17:23.252036 #17731] ERROR -- py3-windows-10-1709: Message: WinRM exited (2) for command: [(get-content $env:TEMP\kitchen\etc\salt\minion) -replace '\$env:TEMP', $env:TEMP | set-content $env:TEMP\kitchen\etc\salt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir=$env:TEMP\kitchen\etc\salt state.highstate --log-level=warning --retcode-passthrough 2>&1 ; exit $LASTEXITCODE] +E, [2020-03-06T13:17:23.252058 #17731] ERROR -- py3-windows-10-1709: ---------------------- +E, [2020-03-06T13:17:23.252078 #17731] ERROR -- py3-windows-10-1709: ------Backtrace------- +E, [2020-03-06T13:17:23.252098 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:95:in `rescue in call' +E, [2020-03-06T13:17:23.252120 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:94:in `call' +E, [2020-03-06T13:17:23.252141 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:409:in `block in converge_action' +E, [2020-03-06T13:17:23.252161 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:552:in `synchronize_or_call' +E, [2020-03-06T13:17:23.252181 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:514:in `block in action' +E, [2020-03-06T13:17:23.252201 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T13:17:23.252223 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:513:in `action' +E, [2020-03-06T13:17:23.252246 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:404:in `converge_action' +E, [2020-03-06T13:17:23.252270 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:382:in `block (2 levels) in transition_to' +E, [2020-03-06T13:17:23.252291 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/lifecycle_hooks.rb:45:in `run_with_hooks' +E, [2020-03-06T13:17:23.252315 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:381:in `block in transition_to' +E, [2020-03-06T13:17:23.252335 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `each' +E, [2020-03-06T13:17:23.252356 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `transition_to' +E, [2020-03-06T13:17:23.252377 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:162:in `verify' +E, [2020-03-06T13:17:23.252399 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:191:in `block in test' +E, [2020-03-06T13:17:23.252420 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T13:17:23.252443 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:187:in `test' +E, [2020-03-06T13:17:23.252465 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `public_send' +E, [2020-03-06T13:17:23.252486 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `run_action_in_thread' +E, [2020-03-06T13:17:23.252507 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:169:in `block (2 levels) in run_action' +E, [2020-03-06T13:17:23.252529 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/logging-2.2.2/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context' +E, [2020-03-06T13:17:23.252566 #17731] ERROR -- py3-windows-10-1709: ----End Backtrace----- +E, [2020-03-06T13:17:23.252591 #17731] ERROR -- py3-windows-10-1709: ---Nested Exception--- +E, [2020-03-06T13:17:23.252612 #17731] ERROR -- py3-windows-10-1709: Class: Kitchen::Transport::WinrmFailed +E, [2020-03-06T13:17:23.252634 #17731] ERROR -- py3-windows-10-1709: Message: WinRM exited (2) for command: [(get-content $env:TEMP\kitchen\etc\salt\minion) -replace '\$env:TEMP', $env:TEMP | set-content $env:TEMP\kitchen\etc\salt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir=$env:TEMP\kitchen\etc\salt state.highstate --log-level=warning --retcode-passthrough 2>&1 ; exit $LASTEXITCODE] +E, [2020-03-06T13:17:23.252655 #17731] ERROR -- py3-windows-10-1709: ---------------------- +E, [2020-03-06T13:17:23.252674 #17731] ERROR -- py3-windows-10-1709: ------Backtrace------- +E, [2020-03-06T13:17:23.252700 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:95:in `rescue in call' +E, [2020-03-06T13:17:23.252734 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:94:in `call' +E, [2020-03-06T13:17:23.252762 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:409:in `block in converge_action' +E, [2020-03-06T13:17:23.252795 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:552:in `synchronize_or_call' +E, [2020-03-06T13:17:23.252830 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:514:in `block in action' +E, [2020-03-06T13:17:23.252863 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T13:17:23.252890 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:513:in `action' +E, [2020-03-06T13:17:23.252912 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:404:in `converge_action' +E, [2020-03-06T13:17:23.252932 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:382:in `block (2 levels) in transition_to' +E, [2020-03-06T13:17:23.252951 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/lifecycle_hooks.rb:45:in `run_with_hooks' +E, [2020-03-06T13:17:23.252970 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:381:in `block in transition_to' +E, [2020-03-06T13:17:23.252991 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `each' +E, [2020-03-06T13:17:23.253010 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `transition_to' +E, [2020-03-06T13:17:23.253029 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:162:in `verify' +E, [2020-03-06T13:17:23.253052 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:191:in `block in test' +E, [2020-03-06T13:17:23.253072 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T13:17:23.253091 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:187:in `test' +E, [2020-03-06T13:17:23.253110 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `public_send' +E, [2020-03-06T13:17:23.253130 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `run_action_in_thread' +E, [2020-03-06T13:17:23.253150 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:169:in `block (2 levels) in run_action' +E, [2020-03-06T13:17:23.253170 #17731] ERROR -- py3-windows-10-1709: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/logging-2.2.2/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context' +E, [2020-03-06T13:17:23.253189 #17731] ERROR -- py3-windows-10-1709: ----End Backtrace----- +I, [2020-03-06T13:17:23.261559 #17731] INFO -- py3-windows-10-1709: -----> Destroying ... +I, [2020-03-06T13:17:36.759340 #17731] INFO -- py3-windows-10-1709: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:17:38.722830 #17731] INFO -- py3-windows-10-1709: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:17:39.539723 #17731] INFO -- py3-windows-10-1709: Vagrant instance destroyed. +I, [2020-03-06T13:17:39.541106 #17731] INFO -- py3-windows-10-1709: Finished destroying (0m16.28s). diff --git a/test/results/py3-windows-10-1709.log b/test/results/py3-windows-10-1709.log index 13ab057..9b23b26 100644 --- a/test/results/py3-windows-10-1709.log +++ b/test/results/py3-windows-10-1709.log @@ -1,15 +1,13 @@ -Wed Mar 4 15:08:59 EST 2020 -commit 83df63b728d6440d0a2e75a16942f0c1d8916fb0 +Fri Mar 6 13:10:43 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Author: Peter Mudd -Date: Mon Mar 2 12:13:52 2020 -0500 +Date: Fri Mar 6 12:43:24 2020 -0500 - feat: convert `template-formula` to `windows-formula` - - BREAKING CHANGE: changed all state names and ids + feat: support saltstack 3000 CURRENT BRANCH COMMIT ID -83df63b728d6440d0a2e75a16942f0c1d8916fb0 +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e CURRENT RELEASE TAG -v1.0.1 +v1.0.0 -----> Starting Test Kitchen (v2.3.4) -----> Cleaning up any prior instances of -----> Destroying ... @@ -20,7 +18,7 @@ v1.0.1 ==> default: Cloning VM... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'StefanScherer/windows_10' version '2018.03.14' is up to date... - ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1709-112be022-c549-443d-8fc5-e1f622b9410d + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1709-47d506dc-b1d9-437e-bfe1-1a4665634a2f ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat @@ -53,7 +51,7 @@ v1.0.1 [WinRM] Established Vagrant instance created. - Finished creating (1m0.26s). + Finished creating (1m6.55s). -----> Converging ... Preparing files for transfer Preparing salt-minion @@ -69,12 +67,12 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:10 PM temp - Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + d----- 3/6/2020 10:12 AM temp + Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe Installing Salt minion Starting the Salt minion service Salt minion successfully installed - You asked for latest and you have 2019.2.3 installed, sweet! + You asked for latest and you have 3000 installed, sweet! @@ -84,7 +82,7 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:11 PM kitchen + d----- 3/6/2020 10:13 AM kitchen Transferring files to @@ -97,24 +95,42 @@ v1.0.1 Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') - [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W - environ[key] = redata.sub(a, value) + [ERROR ] An exception occurred in this state: Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) + salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + + local: ---------- ID: windows.state.system.hostname.saltstack1 @@ -122,8 +138,8 @@ v1.0.1 Name: saltstack1 Result: True Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot - Started: 12:11:55.947748 - Duration: 140.52 ms + Started: 10:13:59.874796 + Duration: 155.695 ms Changes: ---------- hostname: @@ -134,8 +150,8 @@ v1.0.1 Name: Saltstack Computer Description Result: True Comment: Computer description successfully changed to 'Saltstack Computer Description' - Started: 12:11:56.088268 - Duration: 3249.646 ms + Started: 10:14:00.030491 + Duration: 3218.702 ms Changes: ---------- new: @@ -147,8 +163,8 @@ v1.0.1 Name: America/New_York Result: True Comment: Set timezone America/New_York - Started: 12:11:59.416224 - Duration: 47.034 ms + Started: 10:14:03.359479 + Duration: 46.255 ms Changes: ---------- timezone: @@ -158,8 +174,8 @@ v1.0.1 Function: module.run Result: True Comment: environ.items: Success - Started: 12:11:59.494273 - Duration: 15.639 ms + Started: 10:14:03.437118 + Duration: 15.812 ms Changes: ---------- environ.items: @@ -247,8 +263,8 @@ v1.0.1 Function: module.run Result: True Comment: user.current: VAGRANT-10\vagrant - Started: 12:11:59.509912 - Duration: 62.33 ms + Started: 10:14:03.452930 + Duration: 124.46 ms Changes: ---------- user.current: @@ -257,25 +273,25 @@ v1.0.1 ID: windows.module.status.uptime Function: module.run Result: True - Comment: status.uptime: 0:02:19.650837 - Started: 12:11:59.572242 - Duration: 78.595 ms + Comment: status.uptime: 0:02:35.656472 + Started: 10:14:03.577390 + Duration: 79.082 ms Changes: ---------- status.uptime: - 0:02:19.650837 + 0:02:35.656472 ---------- ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection Function: cmd.run Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run - Started: 12:11:59.681638 - Duration: 3735.272 ms + Started: 10:14:03.687679 + Duration: 2796.42 ms Changes: ---------- pid: - 6436 + 4512 retcode: 0 stderr: @@ -286,12 +302,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run - Started: 12:12:03.416910 - Duration: 1375.283 ms + Started: 10:14:06.484099 + Duration: 1311.943 ms Changes: ---------- pid: - 6236 + 6972 retcode: 0 stderr: @@ -302,12 +318,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run - Started: 12:12:04.792193 - Duration: 1421.402 ms + Started: 10:14:07.796042 + Duration: 1281.335 ms Changes: ---------- pid: - 5720 + 6596 retcode: 0 stderr: @@ -318,25 +334,25 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run - Started: 12:12:06.213595 - Duration: 1374.276 ms + Started: 10:14:09.092997 + Duration: 1281.562 ms Changes: ---------- pid: - 2980 + 932 retcode: 0 stderr: stdout: - Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 12:12:07.587871 Duration: 547.31 ms + Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:14:10.400435 Duration: 489.521 ms ---------- ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 Function: reg.present Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:12:08.151085 - Duration: 17686.989 ms + Started: 10:14:10.905916 + Duration: 25530.731 ms Changes: ---------- reg: @@ -365,8 +381,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:12:25.838074 - Duration: 234.864 ms + Started: 10:14:36.452501 + Duration: 219.024 ms Changes: ---------- reg: @@ -395,8 +411,8 @@ v1.0.1 Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng Result: True Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs - Started: 12:12:26.072938 - Duration: 1031.472 ms + Started: 10:14:36.687189 + Duration: 1062.208 ms Changes: ---------- directories_created: @@ -765,7 +781,7 @@ v1.0.1 Function: module.run Result: True Comment: file.rename: True - Started: 12:12:27.104410 + Started: 10:14:37.749397 Duration: 0.0 ms Changes: ---------- @@ -776,8 +792,8 @@ v1.0.1 Function: module.run Result: True Comment: check_cmd determined the state succeeded - Started: 12:12:27.119219 - Duration: 14391.109 ms + Started: 10:14:37.749397 + Duration: 15265.869 ms Changes: ---------- pkg.refresh_db: @@ -793,8 +809,8 @@ v1.0.1 Function: pkg.installed Result: True Comment: The following packages were installed/updated: 7zip=18.06.00.0 - Started: 12:12:41.541748 - Duration: 3764.968 ms + Started: 10:14:53.046589 + Duration: 5796.856 ms Changes: ---------- 7zip: @@ -802,13 +818,36 @@ v1.0.1 new: 18.06.00.0 old: + ---------- + ID: kdiff3 + Function: pkg.installed + Result: False + Comment: An exception occurred in this state: Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) + salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe + Started: 10:14:58.921575 + Duration: 35421.791 ms + Changes: ---------- ID: git Function: pkg.installed Result: True Comment: The following packages were installed/updated: git - Started: 12:12:45.322663 - Duration: 33296.619 ms + Started: 10:15:34.359009 + Duration: 26202.759 ms Changes: ---------- git: @@ -816,27 +855,13 @@ v1.0.1 new: 2.23.0.windows.1 old: - ---------- - ID: kdiff3 - Function: pkg.installed - Result: True - Comment: The following packages were installed/updated: kdiff3 - Started: 12:13:18.651052 - Duration: 34234.05 ms - Changes: - ---------- - kdiff3: - ---------- - new: - Not Found - old: ---------- ID: windows_environment.refresh.path Function: module.run Result: True Comment: windows_environment.refresh: Success - Started: 12:13:52.885102 - Duration: 62.175 ms + Started: 10:16:00.577394 + Duration: 78.306 ms Changes: ---------- windows_environment.refresh: @@ -904,8 +929,8 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder - Started: 12:13:52.947277 - Duration: 29782.157 ms + Started: 10:16:00.655700 + Duration: 39343.589 ms Changes: ---------- chocolatey.bootstrap: @@ -949,19 +974,19 @@ v1.0.1 Name: notepadplusplus Result: True Comment: - Started: 12:14:22.744565 - Duration: 13859.931 ms + Started: 10:16:39.999289 + Duration: 16984.207 ms Changes: ---------- notepadplusplus: ---------- new: - - 7.8.4 + - 7.8.5 old: notepadplusplus.install: ---------- new: - - 7.8.4 + - 7.8.5 old: ---------- ID: windows.system.packages.chocolatey.windirstat @@ -969,8 +994,8 @@ v1.0.1 Name: windirstat Result: True Comment: - Started: 12:14:36.604496 - Duration: 10811.656 ms + Started: 10:16:56.983496 + Duration: 14750.718 ms Changes: ---------- windirstat: @@ -984,16 +1009,16 @@ v1.0.1 Name: TelnetClient Result: True Comment: Installed TelnetClient - Started: 12:14:47.416152 - Duration: 8953.41 ms + Started: 10:17:11.734214 + Duration: 9655.902 ms Changes: ---------- feature: ---------- new: - TelnetClient + - TelnetClient pid: - 964 + 5996 retcode: 0 stderr: @@ -1003,8 +1028,8 @@ v1.0.1 Function: module.run Result: True Comment: system.reboot: True - Started: 12:14:56.385844 - Duration: 296.044 ms + Started: 10:17:21.390116 + Duration: 359.591 ms Changes: ---------- system.reboot: @@ -1012,69 +1037,16 @@ v1.0.1 Summary for local ------------- - Succeeded: 25 (changed=24) - Failed: 0 + Succeeded: 24 (changed=23) + Failed: 1 ------------- Total states run: 25 - Total run time: 180.453 s - Downloading files from - Finished converging (4m38.09s). ------> Setting up ... - Finished setting up (0m0.00s). ------> Verifying ... - Loaded default - [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). -`[WSMAN ERROR CODE: 995]: The I/O operation has been aborted because of either a thread exit or an application request. `, target may be rebooting after highstate. Remaining retries: 20 -`execution expired`, target may be rebooting after highstate. Remaining retries: 19 -`execution expired`, target may be rebooting after highstate. Remaining retries: 18 -`execution expired`, target may be rebooting after highstate. Remaining retries: 17 -INFO: Got pillar from the target minion using WinRM. - -Profile: SaltStack Windows Formula (default) -Version: (not specified) -Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 - - ✔ Operating System: - ✔ windows_10_enterprise_evaluation should include "windows" - ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled - ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed - ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey - ✔ Chocolatey package notepadplusplus should be installed - ✔ Chocolatey package windirstat should be installed - ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" - ↺ Windows Features: salt.formula.windows.system.server.features - ↺ Skipped control due to only_if condition: only supported on servers - ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap - ✔ Command: `choco` should exist - ✔ Windows Timezone: salt.states.timezone.system - ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set - ✔ Windows Optional Features: salt.states.win_dism.feature_installed - ✔ Windows Optional Feature: `TelnetClient` should be installed - ✔ Windows Computer Hostname: salt.states.win_system.hostname - ✔ System Information hostname should cmp == "saltstack1" - ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" - ✔ Windows Computer Description: salt.states.win_system.computer_desc - ✔ Powershell stdout should match "Saltstack Computer Description" - ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed - ✔ System Package Git should be installed - ✔ System Package 7-Zip should be installed - ✔ System Package 7-Zip version should cmp == "18.06.00.0" - ✔ System Package KDiff3 should be installed - - -Profile Summary: 9 successful controls, 0 control failures, 1 control skipped -Test Summary: 19 successful, 0 failures, 1 skipped - Finished verifying (0m52.86s). + Total run time: 201.472 s -----> Destroying ... ==> default: Forcing shutdown of VM... ==> default: Destroying VM and associated drives... Vagrant instance destroyed. - Finished destroying (0m11.71s). - Finished testing (6m42.94s). ------> Test Kitchen is finished. (6m56.00s) + Finished destroying (0m16.28s). +KITCHEN TEST DID NOT COMPLETE SUCCESSFULLY. KITCHEN TEST EXIT CODE -0 +20 diff --git a/test/results/py3-windows-10-1709.salt.log b/test/results/py3-windows-10-1709.salt.log index 9cf8ba7..c904679 100755 --- a/test/results/py3-windows-10-1709.salt.log +++ b/test/results/py3-windows-10-1709.salt.log @@ -1,31 +1,31 @@ -2020-03-04 12:11:44,994 [salt.loader :747 ][DEBUG ][7072] Grains refresh requested. Refreshing grains. -2020-03-04 12:11:45,010 [salt.config :2190][DEBUG ][7072] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 12:11:45,026 [salt.config :2334][DEBUG ][7072] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 12:11:45,026 [salt.config :2190][DEBUG ][7072] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 12:11:50,681 [salt.pillar :57 ][DEBUG ][7072] Determining pillar cache -2020-03-04 12:11:50,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:11:50,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:11:50,759 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 12:11:50,775 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:11:50,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015897274017333984 -2020-03-04 12:11:50,791 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +2020-03-06 10:13:48,905 [salt.loader :770 ][DEBUG ][3700] Grains refresh requested. Refreshing grains. +2020-03-06 10:13:48,905 [salt.config :2111][DEBUG ][3700] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:13:48,921 [salt.config :2255][DEBUG ][3700] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:13:48,921 [salt.config :2111][DEBUG ][3700] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:13:54,077 [salt.pillar :57 ][DEBUG ][3700] Determining pillar cache +2020-03-06 10:13:54,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:13:54,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:13:54,171 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:13:54,171 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:13:54,187 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.01565265655517578 +2020-03-06 10:13:54,187 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: --- base: "*": - windows -2020-03-04 12:11:50,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:54,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:11:50,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:50,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded confirm_top.confirm_top -2020-03-04 12:11:50,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded compound_match.match -2020-03-04 12:11:50,822 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][7072] compound_match: vagrant-10 ? * -2020-03-04 12:11:50,837 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded glob_match.match -2020-03-04 12:11:50,837 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][7072] compound_match vagrant-10 ? "*" => "True" -2020-03-04 12:11:50,837 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 12:11:50,853 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:11:50,853 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:50,853 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +2020-03-06 10:13:54,187 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:54,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded confirm_top.confirm_top +2020-03-06 10:13:54,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded compound_match.match +2020-03-06 10:13:54,218 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3700] compound_match: vagrant-10 ? * +2020-03-06 10:13:54,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded glob_match.match +2020-03-06 10:13:54,218 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3700] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:13:54,234 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:13:54,234 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:13:54,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.014758110046386719 +2020-03-06 10:13:54,249 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: # -*- coding: utf-8 -*- # vim: ft=yaml --- @@ -427,283 +427,292 @@ windows: password_never_expires: false disallow_change_password: false -2020-03-04 12:11:50,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:54,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 12:11:50,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.016164064407348633 -2020-03-04 12:11:50,901 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:11:50,901 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:11:51,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded state.highstate -2020-03-04 12:11:51,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded direct_call.execute -2020-03-04 12:11:51,088 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded grains.get -2020-03-04 12:11:51,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded saltutil.is_running -2020-03-04 12:11:51,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded config.get -2020-03-04 12:11:51,400 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: test, ret: _|- -2020-03-04 12:11:51,432 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,260 [git.cmd :722 ][DEBUG ][7072] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) -2020-03-04 12:11:52,322 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,322 [salt.fileserver :502 ][DEBUG ][7072] Updating roots fileserver cache -2020-03-04 12:11:52,384 [salt.state :736 ][DEBUG ][7072] Gathering pillar data for state run -2020-03-04 12:11:52,384 [salt.state :750 ][DEBUG ][7072] Finished gathering pillar data for state run -2020-03-04 12:11:52,384 [salt.state :966 ][INFO ][7072] Loading fresh modules for state activity -2020-03-04 12:11:52,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:11:52,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:11:52,431 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' -2020-03-04 12:11:52,431 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' -2020-03-04 12:11:52,431 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' -2020-03-04 12:11:52,431 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:52,447 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'top.sls' -2020-03-04 12:11:52,447 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls -2020-03-04 12:11:52,447 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:52,478 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,478 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,478 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.030768871307373047 -2020-03-04 12:11:52,478 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +2020-03-06 10:13:54,264 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.01572442054748535 +2020-03-06 10:13:54,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:13:54,312 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:13:54,484 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded state.highstate +2020-03-06 10:13:54,484 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded direct_call.execute +2020-03-06 10:13:54,514 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded grains.get +2020-03-06 10:13:54,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded saltutil.is_running +2020-03-06 10:13:54,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded config.get +2020-03-06 10:13:54,827 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: test, ret: _|- +2020-03-06 10:13:54,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:55,749 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:13:55,749 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:13:55,828 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:55,828 [salt.fileserver :502 ][DEBUG ][3700] Updating roots fileserver cache +2020-03-06 10:13:55,906 [salt.state :735 ][DEBUG ][3700] Gathering pillar data for state run +2020-03-06 10:13:55,906 [salt.state :749 ][DEBUG ][3700] Finished gathering pillar data for state run +2020-03-06 10:13:55,906 [salt.state :1014][INFO ][3700] Loading fresh modules for state activity +2020-03-06 10:13:55,953 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:13:55,953 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:13:55,953 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:13:55,953 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:13:55,968 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:13:55,968 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:55,983 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:13:55,983 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:13:55,983 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:56,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,030 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.04702329635620117 +2020-03-06 10:13:56,030 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: --- base: "*": - windows -2020-03-04 12:11:52,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:56,030 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:11:52,494 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:52,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded confirm_top.confirm_top -2020-03-04 12:11:52,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded compound_match.match -2020-03-04 12:11:52,494 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][7072] compound_match: vagrant-10 ? * -2020-03-04 12:11:52,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded glob_match.match -2020-03-04 12:11:52,494 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][7072] compound_match vagrant-10 ? "*" => "True" -2020-03-04 12:11:52,510 [salt.fileclient :1368][DEBUG ][7072] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. -2020-03-04 12:11:52,510 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded saltutil.sync_all -2020-03-04 12:11:52,510 [salt.loaded.int.module.saltutil:968 ][DEBUG ][7072] Syncing all -2020-03-04 12:11:52,510 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' -2020-03-04 12:11:52,525 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,541 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,541 [salt.utils.extmods:90 ][INFO ][7072] Syncing clouds for environment 'base' -2020-03-04 12:11:52,541 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_clouds, for base) -2020-03-04 12:11:52,541 [salt.fileclient :234 ][INFO ][7072] Caching directory '_clouds/' for environment 'base' -2020-03-04 12:11:52,557 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,557 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' -2020-03-04 12:11:52,557 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' -2020-03-04 12:11:52,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,603 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,603 [salt.utils.extmods:90 ][INFO ][7072] Syncing beacons for environment 'base' -2020-03-04 12:11:52,603 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_beacons, for base) -2020-03-04 12:11:52,603 [salt.fileclient :234 ][INFO ][7072] Caching directory '_beacons/' for environment 'base' -2020-03-04 12:11:52,603 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,603 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' -2020-03-04 12:11:52,603 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' -2020-03-04 12:11:52,635 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,635 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,651 [salt.utils.extmods:90 ][INFO ][7072] Syncing modules for environment 'base' -2020-03-04 12:11:52,651 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_modules, for base) -2020-03-04 12:11:52,651 [salt.fileclient :234 ][INFO ][7072] Caching directory '_modules/' for environment 'base' -2020-03-04 12:11:52,651 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:11:52,666 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:11:52,666 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:11:52,666 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:52,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' -2020-03-04 12:11:52,682 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' -2020-03-04 12:11:52,682 [salt.utils.extmods:119 ][INFO ][7072] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' -2020-03-04 12:11:52,682 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' -2020-03-04 12:11:52,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,713 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,713 [salt.utils.extmods:90 ][INFO ][7072] Syncing states for environment 'base' -2020-03-04 12:11:52,713 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_states, for base) -2020-03-04 12:11:52,713 [salt.fileclient :234 ][INFO ][7072] Caching directory '_states/' for environment 'base' -2020-03-04 12:11:52,729 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,729 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' -2020-03-04 12:11:52,729 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' -2020-03-04 12:11:52,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,759 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,759 [salt.utils.extmods:90 ][INFO ][7072] Syncing sdb for environment 'base' -2020-03-04 12:11:52,759 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_sdb, for base) -2020-03-04 12:11:52,759 [salt.fileclient :234 ][INFO ][7072] Caching directory '_sdb/' for environment 'base' -2020-03-04 12:11:52,759 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,775 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' -2020-03-04 12:11:52,775 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' -2020-03-04 12:11:52,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,807 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,807 [salt.utils.extmods:90 ][INFO ][7072] Syncing grains for environment 'base' -2020-03-04 12:11:52,807 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_grains, for base) -2020-03-04 12:11:52,807 [salt.fileclient :234 ][INFO ][7072] Caching directory '_grains/' for environment 'base' -2020-03-04 12:11:52,807 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,807 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' -2020-03-04 12:11:52,807 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' -2020-03-04 12:11:52,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,838 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,853 [salt.utils.extmods:90 ][INFO ][7072] Syncing renderers for environment 'base' -2020-03-04 12:11:52,853 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_renderers, for base) -2020-03-04 12:11:52,853 [salt.fileclient :234 ][INFO ][7072] Caching directory '_renderers/' for environment 'base' -2020-03-04 12:11:52,853 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,853 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' -2020-03-04 12:11:52,853 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' -2020-03-04 12:11:52,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,885 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,885 [salt.utils.extmods:90 ][INFO ][7072] Syncing returners for environment 'base' -2020-03-04 12:11:52,900 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_returners, for base) -2020-03-04 12:11:52,900 [salt.fileclient :234 ][INFO ][7072] Caching directory '_returners/' for environment 'base' -2020-03-04 12:11:52,900 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,900 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' -2020-03-04 12:11:52,900 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' -2020-03-04 12:11:52,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,932 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,932 [salt.utils.extmods:90 ][INFO ][7072] Syncing output for environment 'base' -2020-03-04 12:11:52,947 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_output, for base) -2020-03-04 12:11:52,947 [salt.fileclient :234 ][INFO ][7072] Caching directory '_output/' for environment 'base' -2020-03-04 12:11:52,947 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,947 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' -2020-03-04 12:11:52,947 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' -2020-03-04 12:11:52,979 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:52,979 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:52,979 [salt.utils.extmods:90 ][INFO ][7072] Syncing utils for environment 'base' -2020-03-04 12:11:52,979 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_utils, for base) -2020-03-04 12:11:52,979 [salt.fileclient :234 ][INFO ][7072] Caching directory '_utils/' for environment 'base' -2020-03-04 12:11:52,994 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:52,994 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' -2020-03-04 12:11:52,994 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' -2020-03-04 12:11:53,010 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:53,025 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:53,025 [salt.utils.extmods:90 ][INFO ][7072] Syncing log_handlers for environment 'base' -2020-03-04 12:11:53,025 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_log_handlers, for base) -2020-03-04 12:11:53,025 [salt.fileclient :234 ][INFO ][7072] Caching directory '_log_handlers/' for environment 'base' -2020-03-04 12:11:53,025 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:53,041 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' -2020-03-04 12:11:53,041 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' -2020-03-04 12:11:53,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:53,072 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:53,072 [salt.utils.extmods:90 ][INFO ][7072] Syncing proxy for environment 'base' -2020-03-04 12:11:53,072 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_proxy, for base) -2020-03-04 12:11:53,072 [salt.fileclient :234 ][INFO ][7072] Caching directory '_proxy/' for environment 'base' -2020-03-04 12:11:53,072 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:53,072 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' -2020-03-04 12:11:53,072 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' -2020-03-04 12:11:53,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:53,119 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:53,119 [salt.utils.extmods:90 ][INFO ][7072] Syncing engines for environment 'base' -2020-03-04 12:11:53,119 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_engines, for base) -2020-03-04 12:11:53,119 [salt.fileclient :234 ][INFO ][7072] Caching directory '_engines/' for environment 'base' -2020-03-04 12:11:53,119 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:53,119 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' -2020-03-04 12:11:53,119 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' -2020-03-04 12:11:53,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:53,150 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:53,166 [salt.utils.extmods:90 ][INFO ][7072] Syncing thorium for environment 'base' -2020-03-04 12:11:53,166 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_thorium, for base) -2020-03-04 12:11:53,166 [salt.fileclient :234 ][INFO ][7072] Caching directory '_thorium/' for environment 'base' -2020-03-04 12:11:53,166 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:53,166 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' -2020-03-04 12:11:53,181 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' -2020-03-04 12:11:53,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:53,212 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:53,212 [salt.utils.extmods:90 ][INFO ][7072] Syncing serializers for environment 'base' -2020-03-04 12:11:53,212 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_serializers, for base) -2020-03-04 12:11:53,228 [salt.fileclient :234 ][INFO ][7072] Caching directory '_serializers/' for environment 'base' -2020-03-04 12:11:53,228 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:53,228 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' -2020-03-04 12:11:53,228 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' -2020-03-04 12:11:53,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:53,260 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:53,260 [salt.utils.extmods:90 ][INFO ][7072] Syncing matchers for environment 'base' -2020-03-04 12:11:53,260 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_matchers, for base) -2020-03-04 12:11:53,260 [salt.fileclient :234 ][INFO ][7072] Caching directory '_matchers/' for environment 'base' -2020-03-04 12:11:53,260 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:53,275 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' -2020-03-04 12:11:53,275 [salt.utils.extmods:79 ][INFO ][7072] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' -2020-03-04 12:11:53,290 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:53,306 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:53,306 [salt.utils.extmods:90 ][INFO ][7072] Syncing pillar for environment 'base' -2020-03-04 12:11:53,306 [salt.utils.extmods:94 ][INFO ][7072] Loading cache from salt://_pillar, for base) -2020-03-04 12:11:53,306 [salt.fileclient :234 ][INFO ][7072] Caching directory '_pillar/' for environment 'base' -2020-03-04 12:11:53,306 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:53,306 [salt.utils.extmods:109 ][DEBUG ][7072] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' -2020-03-04 12:11:53,306 [salt.state :1000][DEBUG ][7072] Refreshing modules... -2020-03-04 12:11:53,338 [salt.state :966 ][INFO ][7072] Loading fresh modules for state activity -2020-03-04 12:11:53,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:11:53,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:11:53,369 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows.sls' in saltenv 'base' -2020-03-04 12:11:53,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:11:53,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:11:53,385 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' -2020-03-04 12:11:53,401 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,401 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' -2020-03-04 12:11:53,401 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls -2020-03-04 12:11:53,401 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:53,432 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:53,432 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:53,432 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' -2020-03-04 12:11:53,432 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,447 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' -2020-03-04 12:11:53,463 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:53,463 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:53,463 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' -2020-03-04 12:11:53,463 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,478 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' -2020-03-04 12:11:53,494 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:53,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:53,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:53,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,510 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' -2020-03-04 12:11:53,510 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:53,510 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:53,510 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:53,510 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,526 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' -2020-03-04 12:11:53,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:53,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:53,541 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' -2020-03-04 12:11:53,541 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,572 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' -2020-03-04 12:11:53,603 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:53,603 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:53,603 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:53,603 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,619 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' -2020-03-04 12:11:53,634 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:53,634 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:53,634 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:53,634 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,650 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' -2020-03-04 12:11:53,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded config.get -2020-03-04 12:11:53,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded grains.filter_by -2020-03-04 12:11:53,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.2652595043182373 -2020-03-04 12:11:53,666 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +2020-03-06 10:13:56,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:56,030 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded confirm_top.confirm_top +2020-03-06 10:13:56,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded compound_match.match +2020-03-06 10:13:56,046 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3700] compound_match: vagrant-10 ? * +2020-03-06 10:13:56,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded glob_match.match +2020-03-06 10:13:56,046 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3700] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:13:56,046 [salt.fileclient :1376][DEBUG ][3700] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:13:56,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded saltutil.sync_all +2020-03-06 10:13:56,061 [salt.loaded.int.module.saltutil:1009][DEBUG ][3700] Syncing all +2020-03-06 10:13:56,061 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:13:56,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,093 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,093 [salt.utils.extmods:90 ][INFO ][3700] Syncing clouds for environment 'base' +2020-03-06 10:13:56,093 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_clouds, for base) +2020-03-06 10:13:56,093 [salt.fileclient :234 ][INFO ][3700] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:13:56,124 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,124 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:13:56,124 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:13:56,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,155 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,155 [salt.utils.extmods:90 ][INFO ][3700] Syncing beacons for environment 'base' +2020-03-06 10:13:56,155 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_beacons, for base) +2020-03-06 10:13:56,155 [salt.fileclient :234 ][INFO ][3700] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:13:56,171 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,171 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:13:56,171 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:13:56,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,233 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,233 [salt.utils.extmods:90 ][INFO ][3700] Syncing modules for environment 'base' +2020-03-06 10:13:56,233 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_modules, for base) +2020-03-06 10:13:56,233 [salt.fileclient :234 ][INFO ][3700] Caching directory '_modules/' for environment 'base' +2020-03-06 10:13:56,233 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:13:56,249 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:13:56,249 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:13:56,249 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:56,265 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:13:56,265 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:13:56,265 [salt.utils.extmods:119 ][INFO ][3700] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:13:56,265 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:13:56,295 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,327 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,327 [salt.utils.extmods:90 ][INFO ][3700] Syncing states for environment 'base' +2020-03-06 10:13:56,327 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_states, for base) +2020-03-06 10:13:56,327 [salt.fileclient :234 ][INFO ][3700] Caching directory '_states/' for environment 'base' +2020-03-06 10:13:56,327 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,327 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:13:56,343 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:13:56,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,374 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,374 [salt.utils.extmods:90 ][INFO ][3700] Syncing sdb for environment 'base' +2020-03-06 10:13:56,374 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_sdb, for base) +2020-03-06 10:13:56,374 [salt.fileclient :234 ][INFO ][3700] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:13:56,374 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,374 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:13:56,374 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:13:56,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,421 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,421 [salt.utils.extmods:90 ][INFO ][3700] Syncing grains for environment 'base' +2020-03-06 10:13:56,421 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_grains, for base) +2020-03-06 10:13:56,421 [salt.fileclient :234 ][INFO ][3700] Caching directory '_grains/' for environment 'base' +2020-03-06 10:13:56,421 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,421 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:13:56,421 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:13:56,453 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,453 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,453 [salt.utils.extmods:90 ][INFO ][3700] Syncing renderers for environment 'base' +2020-03-06 10:13:56,467 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_renderers, for base) +2020-03-06 10:13:56,467 [salt.fileclient :234 ][INFO ][3700] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:13:56,467 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,467 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:13:56,467 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:13:56,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,499 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,499 [salt.utils.extmods:90 ][INFO ][3700] Syncing returners for environment 'base' +2020-03-06 10:13:56,515 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_returners, for base) +2020-03-06 10:13:56,515 [salt.fileclient :234 ][INFO ][3700] Caching directory '_returners/' for environment 'base' +2020-03-06 10:13:56,515 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,515 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:13:56,515 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:13:56,531 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,546 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,546 [salt.utils.extmods:90 ][INFO ][3700] Syncing output for environment 'base' +2020-03-06 10:13:56,546 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_output, for base) +2020-03-06 10:13:56,546 [salt.fileclient :234 ][INFO ][3700] Caching directory '_output/' for environment 'base' +2020-03-06 10:13:56,562 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,562 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:13:56,562 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:13:56,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,593 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,593 [salt.utils.extmods:90 ][INFO ][3700] Syncing utils for environment 'base' +2020-03-06 10:13:56,593 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_utils, for base) +2020-03-06 10:13:56,593 [salt.fileclient :234 ][INFO ][3700] Caching directory '_utils/' for environment 'base' +2020-03-06 10:13:56,593 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,593 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:13:56,593 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:13:56,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,640 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,640 [salt.utils.extmods:90 ][INFO ][3700] Syncing log_handlers for environment 'base' +2020-03-06 10:13:56,640 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:13:56,640 [salt.fileclient :234 ][INFO ][3700] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:13:56,640 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,640 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:13:56,640 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\executors' +2020-03-06 10:13:56,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,671 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,686 [salt.utils.extmods:90 ][INFO ][3700] Syncing executors for environment 'base' +2020-03-06 10:13:56,686 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_executors, for base) +2020-03-06 10:13:56,686 [salt.fileclient :234 ][INFO ][3700] Caching directory '_executors/' for environment 'base' +2020-03-06 10:13:56,686 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,686 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_executors' +2020-03-06 10:13:56,686 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:13:56,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,749 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,749 [salt.utils.extmods:90 ][INFO ][3700] Syncing proxy for environment 'base' +2020-03-06 10:13:56,749 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_proxy, for base) +2020-03-06 10:13:56,749 [salt.fileclient :234 ][INFO ][3700] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:13:56,749 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,749 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:13:56,749 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:13:56,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,796 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,796 [salt.utils.extmods:90 ][INFO ][3700] Syncing engines for environment 'base' +2020-03-06 10:13:56,796 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_engines, for base) +2020-03-06 10:13:56,796 [salt.fileclient :234 ][INFO ][3700] Caching directory '_engines/' for environment 'base' +2020-03-06 10:13:56,796 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,796 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:13:56,796 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:13:56,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,827 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,827 [salt.utils.extmods:90 ][INFO ][3700] Syncing thorium for environment 'base' +2020-03-06 10:13:56,843 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_thorium, for base) +2020-03-06 10:13:56,843 [salt.fileclient :234 ][INFO ][3700] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:13:56,843 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,843 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:13:56,843 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:13:56,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,874 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,874 [salt.utils.extmods:90 ][INFO ][3700] Syncing serializers for environment 'base' +2020-03-06 10:13:56,874 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_serializers, for base) +2020-03-06 10:13:56,874 [salt.fileclient :234 ][INFO ][3700] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:13:56,874 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,890 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:13:56,890 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:13:56,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,920 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,920 [salt.utils.extmods:90 ][INFO ][3700] Syncing matchers for environment 'base' +2020-03-06 10:13:56,920 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_matchers, for base) +2020-03-06 10:13:56,920 [salt.fileclient :234 ][INFO ][3700] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:13:56,920 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,920 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:13:56,937 [salt.utils.extmods:79 ][INFO ][3700] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:13:56,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:56,968 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:56,968 [salt.utils.extmods:90 ][INFO ][3700] Syncing pillar for environment 'base' +2020-03-06 10:13:56,968 [salt.utils.extmods:94 ][INFO ][3700] Loading cache from salt://_pillar, for base) +2020-03-06 10:13:56,968 [salt.fileclient :234 ][INFO ][3700] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:13:56,968 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:56,968 [salt.utils.extmods:109 ][DEBUG ][3700] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:13:56,983 [salt.state :1048][DEBUG ][3700] Refreshing modules... +2020-03-06 10:13:56,999 [salt.state :1014][INFO ][3700] Loading fresh modules for state activity +2020-03-06 10:13:57,052 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:13:57,052 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:13:57,052 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:13:57,062 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:13:57,062 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:13:57,062 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:13:57,062 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,062 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:13:57,062 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:13:57,077 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,093 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,093 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:13:57,093 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,093 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:13:57,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,124 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,124 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,140 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:13:57,140 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,140 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,140 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,140 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,156 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:13:57,156 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,156 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,156 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,171 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:13:57,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,186 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,186 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,186 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:13:57,202 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,202 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,202 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,202 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,218 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:13:57,218 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,233 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:13:57,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded config.get +2020-03-06 10:13:57,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded grains.filter_by +2020-03-06 10:13:57,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.17223668098449707 +2020-03-06 10:13:57,249 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .states - .modules - .system -2020-03-04 12:11:53,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.states', '.modules', '.system'])]) -2020-03-04 12:11:53,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:53,682 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:11:53,682 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:11:53,682 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' -2020-03-04 12:11:53,682 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,698 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' -2020-03-04 12:11:53,698 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls -2020-03-04 12:11:53,698 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:53,712 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:11:53,728 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:11:53,728 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' -2020-03-04 12:11:53,728 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,728 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' -2020-03-04 12:11:53,791 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:53,791 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:53,822 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:53,822 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:53,838 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:53,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:53,838 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:53,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:53,853 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:53,853 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:53,869 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:53,869 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:53,884 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:53,884 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:53,884 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.1865401268005371 -2020-03-04 12:11:53,884 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +2020-03-06 10:13:57,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,264 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:13:57,264 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:13:57,264 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:13:57,264 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,280 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:13:57,280 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:13:57,280 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,296 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:13:57,296 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:13:57,296 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:13:57,321 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,327 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:13:57,389 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,389 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,405 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,405 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,421 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,436 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,436 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,436 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,452 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,452 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,467 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,467 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,467 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.18741607666015625 +2020-03-06 10:13:57,467 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -722,34 +731,34 @@ windows.state.timezone.system.America/New_York: -2020-03-04 12:11:53,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) -2020-03-04 12:11:53,900 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:53,900 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:11:53,900 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:11:53,900 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' -2020-03-04 12:11:53,916 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:53,916 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' -2020-03-04 12:11:53,916 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls -2020-03-04 12:11:53,916 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:53,932 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:11:53,932 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:11:53,979 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:53,979 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:53,994 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:53,994 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:53,994 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:53,994 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,010 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,010 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,010 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,010 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,010 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,010 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,025 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,025 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.12493515014648438 -2020-03-04 12:11:54,041 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +2020-03-06 10:13:57,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,483 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:13:57,483 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:13:57,483 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:13:57,499 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,499 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:13:57,499 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:13:57,521 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,531 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:13:57,531 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:13:57,561 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,578 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,593 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,593 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,593 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,593 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,608 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,608 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,608 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,624 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,624 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,624 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.1181032657623291 +2020-03-06 10:13:57,640 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -777,33 +786,33 @@ windows.module.status.uptime: - windows.module.user.current -2020-03-04 12:11:54,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) -2020-03-04 12:11:54,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,041 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system.sls' in saltenv 'base' -2020-03-04 12:11:54,056 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:11:54,056 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:11:54,056 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' -2020-03-04 12:11:54,056 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,072 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' -2020-03-04 12:11:54,072 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls -2020-03-04 12:11:54,072 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,072 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,088 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,103 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,103 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,103 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,103 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,103 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,103 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,119 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,119 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,119 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.0626218318939209 -2020-03-04 12:11:54,135 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +2020-03-06 10:13:57,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,640 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:13:57,655 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:13:57,655 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:13:57,655 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:13:57,655 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,655 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:13:57,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:13:57,671 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,671 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,671 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,702 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,702 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,702 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,717 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,717 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,717 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,717 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,717 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,733 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,733 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,733 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,733 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.0783548355102539 +2020-03-06 10:13:57,749 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls # sls: windows.system windows system @@ -820,19 +829,19 @@ include: - .desktop -2020-03-04 12:11:54,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.packages', '.server', '.desktop'])]) -2020-03-04 12:11:54,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,150 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' -2020-03-04 12:11:54,150 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:11:54,150 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:11:54,150 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' -2020-03-04 12:11:54,150 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,166 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' -2020-03-04 12:11:54,166 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls -2020-03-04 12:11:54,166 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.015982389450073242 -2020-03-04 12:11:54,182 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +2020-03-06 10:13:57,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,749 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:13:57,749 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:13:57,765 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:13:57,765 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:13:57,765 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,765 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:13:57,781 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:13:57,781 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,781 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:57,781 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -841,67 +850,67 @@ include: - .powershell - .saltstack - .chocolatey -2020-03-04 12:11:54,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,781 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) -2020-03-04 12:11:54,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,182 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' -2020-03-04 12:11:54,197 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:11:54,197 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:11:54,197 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:11:54,197 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,197 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' -2020-03-04 12:11:54,197 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls -2020-03-04 12:11:54,212 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,212 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:54,212 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +2020-03-06 10:13:57,781 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,781 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:13:57,796 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:13:57,796 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:13:57,796 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:13:57,796 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,811 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:13:57,811 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:13:57,811 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,811 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:57,811 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .remove-provisioned-apps -2020-03-04 12:11:54,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,811 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.remove-provisioned-apps'])]) -2020-03-04 12:11:54,212 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,228 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:11:54,228 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:11:54,228 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:11:54,228 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,228 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:11:54,244 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls -2020-03-04 12:11:54,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:54,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +2020-03-06 10:13:57,811 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,827 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:13:57,827 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:13:57,827 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:13:57,827 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,827 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:13:57,827 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:13:57,843 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:57,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .removed -2020-03-04 12:11:54,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.removed'])]) -2020-03-04 12:11:54,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,260 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:11:54,260 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:11:54,260 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:11:54,260 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,275 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' -2020-03-04 12:11:54,275 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls -2020-03-04 12:11:54,275 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,291 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,307 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,307 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,307 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,322 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,322 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,322 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,338 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,338 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,338 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,338 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,353 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,353 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.09353137016296387 -2020-03-04 12:11:54,369 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +2020-03-06 10:13:57,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,843 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:13:57,843 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:13:57,843 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:13:57,858 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,858 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:13:57,858 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:13:57,858 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,874 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,874 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:57,890 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,890 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:57,905 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,905 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:57,905 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,905 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:57,905 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,905 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:57,921 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,921 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:57,921 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,921 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:57,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.07825636863708496 +2020-03-06 10:13:57,937 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -945,87 +954,87 @@ windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Port -2020-03-04 12:11:54,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) -2020-03-04 12:11:54,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,369 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' -2020-03-04 12:11:54,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:11:54,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:11:54,385 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:11:54,385 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,400 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' -2020-03-04 12:11:54,400 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls -2020-03-04 12:11:54,400 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:54,400 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +2020-03-06 10:13:57,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,937 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:13:57,937 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:13:57,952 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:13:57,952 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:13:57,952 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,952 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:13:57,952 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:13:57,968 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,968 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:57,968 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .modules - .framework -2020-03-04 12:11:54,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.framework'])]) -2020-03-04 12:11:54,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,400 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' -2020-03-04 12:11:54,416 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:11:54,416 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:11:54,416 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:11:54,431 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,431 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:11:54,431 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls -2020-03-04 12:11:54,431 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,431 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:54,431 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +2020-03-06 10:13:57,968 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:57,968 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:13:57,984 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:13:57,984 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:13:57,984 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:13:57,984 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:57,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:13:57,999 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:13:57,999 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:57,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:57,999 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .v4_5 -2020-03-04 12:11:54,447 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:57,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.v4_5'])]) -2020-03-04 12:11:54,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,447 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' -2020-03-04 12:11:54,447 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:11:54,447 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:11:54,463 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:11:54,463 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,463 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:11:54,463 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls -2020-03-04 12:11:54,463 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,479 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.01573920249938965 -2020-03-04 12:11:54,479 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +2020-03-06 10:13:58,014 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.015629291534423828 +2020-03-06 10:13:58,014 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:13:58,014 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:13:58,014 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:13:58,014 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:13:58,014 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,030 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:13:58,030 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:13:58,030 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:58,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:58,030 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .tls1_2 -2020-03-04 12:11:54,479 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:58,030 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.tls1_2'])]) -2020-03-04 12:11:54,479 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,494 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:11:54,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:11:54,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:11:54,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,494 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:11:54,494 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls -2020-03-04 12:11:54,510 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,510 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,510 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,525 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,525 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,557 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,557 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,557 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,557 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,573 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.06285667419433594 -2020-03-04 12:11:54,573 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +2020-03-06 10:13:58,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:58,046 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:13:58,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:13:58,046 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:13:58,046 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,046 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:13:58,046 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:13:58,061 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:58,061 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:58,061 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:58,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:58,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:58,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:58,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:58,093 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:58,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:58,093 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:58,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:58,108 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:58,108 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:58,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:58,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:58,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.0623631477355957 +2020-03-06 10:13:58,124 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1053,141 +1062,71 @@ windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversion - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} -2020-03-04 12:11:54,573 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:58,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) -2020-03-04 12:11:54,573 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:54,573 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' -2020-03-04 12:11:54,587 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:11:54,587 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:11:54,587 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:11:54,587 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,603 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' -2020-03-04 12:11:54,603 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls -2020-03-04 12:11:54,603 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:54,603 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +2020-03-06 10:13:58,139 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.015644311904907227 +2020-03-06 10:13:58,139 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:13:58,139 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:13:58,139 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:13:58,139 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:13:58,139 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,155 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:13:58,155 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:13:58,155 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:58,155 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:58,155 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:11:54,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:58,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:11:54,619 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.015649795532226562 -2020-03-04 12:11:54,619 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:11:54,619 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:11:54,619 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:11:54,619 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,634 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' -2020-03-04 12:11:54,634 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls -2020-03-04 12:11:54,634 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:54,650 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:11:54,650 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:11:54,650 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:11:54,650 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' -2020-03-04 12:11:54,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,666 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:54,682 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,682 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:54,698 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,698 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:54,698 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,698 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:54,698 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,698 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:54,713 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,713 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:54,713 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,713 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:54,728 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:11:54,728 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:11:54,744 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:11:54,744 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:54,744 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:11:54,979 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pkg.version -2020-03-04 12:11:54,979 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][7072] No winrepo.p cache file for saltenv 'base', creating one now -2020-03-04 12:11:54,979 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][7072] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) -2020-03-04 12:11:54,979 [salt.loaded.int.module.win_pkg:935 ][INFO ][7072] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:11:54,979 [salt.loaded.int.module.win_pkg:954 ][INFO ][7072] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:11:55,010 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cp.cache_dir -2020-03-04 12:11:55,041 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded roots.envs -2020-03-04 12:11:55,041 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:11:55,056 [salt.fileclient :234 ][INFO ][7072] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:11:55,056 [salt.fileserver :159 ][DEBUG ][7072] Returning file list from cache: age=3 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:11:55,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded reg.list_keys -2020-03-04 12:11:55,072 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,088 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,104 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.48490023612976074 -2020-03-04 12:11:55,119 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +2020-03-06 10:13:58,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:58,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:13:58,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:13:58,171 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:13:58,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,186 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:13:58,186 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:13:58,186 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:58,186 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:13:58,186 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:13:58,202 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:13:58,202 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,202 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:13:58,218 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:58,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:58,233 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:58,233 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:58,233 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:58,249 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:58,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:58,249 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:58,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:58,249 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:58,265 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:58,265 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:58,265 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:58,265 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:58,280 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:13:58,280 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:13:58,280 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:13:58,280 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:13:58,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded pkg.version +2020-03-06 10:13:58,843 [salt.loaded.int.module.win_pkg:827 ][DEBUG ][3700] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:13:58,843 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][3700] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:13:58,843 [salt.loaded.int.module.win_pkg:939 ][INFO ][3700] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:13:58,843 [salt.loaded.int.module.win_pkg:958 ][INFO ][3700] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:13:58,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cp.cache_dir +2020-03-06 10:13:58,889 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded roots.envs +2020-03-06 10:13:58,906 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:13:58,906 [salt.fileclient :234 ][INFO ][3700] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:13:58,906 [salt.fileserver :159 ][DEBUG ][3700] Returning file list from cache: age=3 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:13:58,937 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded reg.list_keys +2020-03-06 10:13:58,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.7507650852203369 +2020-03-06 10:13:58,937 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1196,17 +1135,17 @@ include: - .windows_software_repository 7zip: pkg.installed: - - version: 18.06.00.0 - refresh_minion_env_path: False + - version: 18.06.00.0 - require: - pkg.refresh_db -git: +kdiff3: pkg.installed: - - refresh_minion_env_path: True - require: - pkg.refresh_db -kdiff3: +git: pkg.installed: + - refresh_minion_env_path: True - require: - pkg.refresh_db windows_environment.refresh.path: @@ -1215,89 +1154,19 @@ windows_environment.refresh.path: - onchanges: - pkg: git -2020-03-04 12:11:55,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) -2020-03-04 12:11:55,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,135 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:11:55,135 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:11:55,135 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:11:55,135 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,135 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:11:55,135 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls -2020-03-04 12:11:55,150 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,150 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.094000) -2020-03-04 12:11:55,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,166 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,198 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,198 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:11:55,198 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.04743814468383789 -2020-03-04 12:11:55,198 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +2020-03-06 10:13:58,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:13:58,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:58,952 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:13:58,952 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:13:58,952 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:13:58,952 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,968 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:13:58,968 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:13:58,968 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:58,968 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.046306) +2020-03-06 10:13:58,983 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.015695571899414062 +2020-03-06 10:13:58,983 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1330,50 +1199,50 @@ pkg.refresh_db: attempts: 10 until: True interval: 5 -2020-03-04 12:11:55,198 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:58,983 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) -2020-03-04 12:11:55,198 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,198 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' -2020-03-04 12:11:55,212 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:11:55,212 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:11:55,212 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:11:55,212 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,212 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' -2020-03-04 12:11:55,212 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls -2020-03-04 12:11:55,228 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:55,228 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +2020-03-06 10:13:58,983 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:58,983 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:13:58,999 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:13:58,999 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:13:58,999 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:13:58,999 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:58,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:13:59,015 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:13:59,015 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,015 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:59,015 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:11:55,228 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:11:55,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,228 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:11:55,244 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:11:55,244 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:11:55,244 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,244 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:11:55,244 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls -2020-03-04 12:11:55,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,260 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,260 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,275 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,275 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,291 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,291 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,291 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,306 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,306 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,306 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,306 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.07825064659118652 -2020-03-04 12:11:55,322 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +2020-03-06 10:13:59,015 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,015 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:13:59,015 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:13:59,030 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:13:59,030 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,030 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:13:59,030 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:13:59,030 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,046 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,062 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,062 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,093 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,108 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,108 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,108 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.09402918815612793 +2020-03-06 10:13:59,124 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -1391,32 +1260,32 @@ windows.system.packages.chocolatey.windirstat: - name: windirstat - version: 1.1.2.20161210 -2020-03-04 12:11:55,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) -2020-03-04 12:11:55,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,338 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:11:55,338 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:11:55,338 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:11:55,338 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,338 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:11:55,338 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls -2020-03-04 12:11:55,354 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,354 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,354 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,369 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,369 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,400 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,400 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,400 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,400 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,400 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.062250614166259766 -2020-03-04 12:11:55,416 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +2020-03-06 10:13:59,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:13:59,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:13:59,139 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:13:59,139 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,139 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:13:59,139 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:13:59,139 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,155 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,155 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,187 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,187 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,187 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,187 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,187 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,187 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,203 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,203 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.07836270332336426 +2020-03-06 10:13:59,218 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: # -*- coding: utf-8 -*- # vim: ft=sls chocolatey.bootstrap: @@ -1426,149 +1295,149 @@ chocolatey.bootstrap: - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -2020-03-04 12:11:55,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) -2020-03-04 12:11:55,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,416 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' -2020-03-04 12:11:55,432 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:11:55,432 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:11:55,432 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' -2020-03-04 12:11:55,432 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,447 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' -2020-03-04 12:11:55,447 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls -2020-03-04 12:11:55,447 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:55,447 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +2020-03-06 10:13:59,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,218 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:13:59,218 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:13:59,234 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:13:59,234 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:13:59,234 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,234 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:13:59,234 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:13:59,249 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:59,249 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .features -2020-03-04 12:11:55,447 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.features'])]) -2020-03-04 12:11:55,463 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.015021324157714844 -2020-03-04 12:11:55,463 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' -2020-03-04 12:11:55,463 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:11:55,463 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:11:55,463 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' -2020-03-04 12:11:55,463 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,478 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' -2020-03-04 12:11:55,478 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls -2020-03-04 12:11:55,478 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,478 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:55,478 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +2020-03-06 10:13:59,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,249 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:13:59,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:13:59,265 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:13:59,265 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:13:59,265 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,265 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:13:59,265 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:13:59,265 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,281 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.01577019691467285 +2020-03-06 10:13:59,281 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:11:55,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:11:55,478 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,494 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:11:55,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:11:55,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:11:55,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,510 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' -2020-03-04 12:11:55,510 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls -2020-03-04 12:11:55,510 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,525 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:11:55,525 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:11:55,525 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:11:55,525 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,525 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' -2020-03-04 12:11:55,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,557 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,557 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,557 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,557 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,572 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,572 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,588 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,588 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,588 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,604 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.09454870223999023 -2020-03-04 12:11:55,604 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +2020-03-06 10:13:59,281 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,281 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:13:59,281 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:13:59,281 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:13:59,281 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:13:59,296 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:13:59,296 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,319 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:13:59,319 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:13:59,319 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:13:59,319 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,327 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:13:59,342 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,342 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,358 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,358 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,358 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,358 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,374 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,374 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,389 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,389 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,389 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,389 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.09370207786560059 +2020-03-06 10:13:59,405 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls -2020-03-04 12:11:55,604 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,405 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: {} -2020-03-04 12:11:55,604 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,604 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' -2020-03-04 12:11:55,619 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:11:55,619 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:11:55,619 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' -2020-03-04 12:11:55,619 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,619 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' -2020-03-04 12:11:55,634 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls -2020-03-04 12:11:55,634 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,634 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:55,634 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +2020-03-06 10:13:59,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,405 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:13:59,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:13:59,421 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:13:59,421 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:13:59,421 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,421 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:13:59,437 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:13:59,437 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,437 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:13:59,437 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .packages - .optional_features -2020-03-04 12:11:55,634 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.optional_features'])]) -2020-03-04 12:11:55,634 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,634 [salt.fileclient :1072][DEBUG ][7072] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' -2020-03-04 12:11:55,650 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:11:55,650 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:11:55,650 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:11:55,650 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' -2020-03-04 12:11:55,666 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls -2020-03-04 12:11:55,666 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:11:55,666 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +2020-03-06 10:13:59,437 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,437 [salt.fileclient :1080][DEBUG ][3700] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:13:59,437 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:13:59,452 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:13:59,452 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:13:59,452 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,452 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:13:59,452 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:13:59,452 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,468 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.015631914138793945 +2020-03-06 10:13:59,468 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .feature_installed -2020-03-04 12:11:55,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('include', ['.feature_installed'])]) -2020-03-04 12:11:55,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:11:55,682 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:11:55,682 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:11:55,682 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,682 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:11:55,682 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls -2020-03-04 12:11:55,682 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:11:55,697 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:11:55,697 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:11:55,697 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:11:55,697 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,713 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:11:55,728 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,728 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:11:55,744 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,744 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:11:55,744 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,744 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:11:55,744 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,760 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:11:55,760 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,760 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:11:55,760 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,760 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:11:55,760 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,760 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:11:55,792 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:11:55,792 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:11:55,792 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:11:55,792 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:11:55,792 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:11:55,806 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.12456464767456055 -2020-03-04 12:11:55,806 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +2020-03-06 10:13:59,468 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:13:59,468 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:13:59,468 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:13:59,468 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:13:59,468 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,484 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:13:59,484 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:13:59,484 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:13:59,484 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:13:59,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:13:59,499 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:13:59,499 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,499 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:13:59,515 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,515 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:13:59,530 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,530 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:13:59,530 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,530 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:13:59,546 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,546 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:13:59,546 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,546 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:13:59,546 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,546 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:13:59,562 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,562 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:13:59,577 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:13:59,577 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:13:59,577 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:13:59,577 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:13:59,592 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:13:59,592 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.1085968017578125 +2020-03-06 10:13:59,592 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls# -*- coding: utf-8 -*- # vim: ft=sls @@ -1581,1827 +1450,1844 @@ windows.system.desktop.optional_features.installed.TelnetClient: Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" -2020-03-04 12:11:55,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:13:59,592 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) -2020-03-04 12:11:55,806 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:11:55,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cmd.run -2020-03-04 12:11:55,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded system.get_computer_desc -2020-03-04 12:11:55,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded system.computer_desc -2020-03-04 12:11:55,947 [salt.state :1819][INFO ][7072] Running state [saltstack1] at time 12:11:55.947748 -2020-03-04 12:11:55,947 [salt.state :1852][INFO ][7072] Executing state system.hostname for [saltstack1] -2020-03-04 12:11:55,947 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:11:55,978 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: vagrant-10 -2020-03-04 12:11:55,978 [salt.loaded.int.module.cmdmod:1202][DEBUG ][7072] output: vagrant-10 -2020-03-04 12:11:55,978 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:11:55,994 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: vagrant-10 -2020-03-04 12:11:55,994 [salt.loaded.int.module.cmdmod:1202][DEBUG ][7072] output: vagrant-10 -2020-03-04 12:11:55,994 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' -2020-03-04 12:11:56,088 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 10:13:59,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.015645742416381836 +2020-03-06 10:13:59,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cmd.run +2020-03-06 10:13:59,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded system.get_computer_desc +2020-03-06 10:13:59,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded system.computer_desc +2020-03-06 10:13:59,874 [salt.state :1867][INFO ][3700] Running state [saltstack1] at time 10:13:59.874796 +2020-03-06 10:13:59,874 [salt.state :1900][INFO ][3700] Executing state system.hostname for [saltstack1] +2020-03-06 10:13:59,874 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:13:59,921 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: vagrant-10 +2020-03-06 10:13:59,921 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3700] output: vagrant-10 +2020-03-06 10:13:59,936 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:13:59,936 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: vagrant-10 +2020-03-06 10:13:59,936 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3700] output: vagrant-10 +2020-03-06 10:13:59,952 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:14:00,030 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:11:56,088 [salt.loaded.int.module.cmdmod:1202][DEBUG ][7072] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 10:14:00,030 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3700] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:11:56,088 [salt.state :320 ][INFO ][7072] {'hostname': 'saltstack1'} -2020-03-04 12:11:56,088 [salt.state :1997][INFO ][7072] Completed state [saltstack1] at time 12:11:56.088268 (duration_in_ms=140.52) -2020-03-04 12:11:56,088 [salt.state :1819][INFO ][7072] Running state [Saltstack Computer Description] at time 12:11:56.088268 -2020-03-04 12:11:56,088 [salt.state :1852][INFO ][7072] Executing state system.computer_desc for [Saltstack Computer Description] -2020-03-04 12:11:59,337 [salt.state :320 ][INFO ][7072] {'new': 'Saltstack Computer Description', 'old': ''} -2020-03-04 12:11:59,337 [salt.state :1997][INFO ][7072] Completed state [Saltstack Computer Description] at time 12:11:59.337914 (duration_in_ms=3249.646) -2020-03-04 12:11:59,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded platform.is_windows -2020-03-04 12:11:59,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded path.which -2020-03-04 12:11:59,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded timezone.get_zone -2020-03-04 12:11:59,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded timezone.system -2020-03-04 12:11:59,416 [salt.state :1819][INFO ][7072] Running state [America/New_York] at time 12:11:59.416224 -2020-03-04 12:11:59,416 [salt.state :1852][INFO ][7072] Executing state timezone.system for [America/New_York] -2020-03-04 12:11:59,416 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' -2020-03-04 12:11:59,463 [salt.state :320 ][INFO ][7072] {'timezone': 'America/New_York'} -2020-03-04 12:11:59,463 [salt.state :1997][INFO ][7072] Completed state [America/New_York] at time 12:11:59.463258 (duration_in_ms=47.034) -2020-03-04 12:11:59,479 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded module.run -2020-03-04 12:11:59,494 [salt.state :1819][INFO ][7072] Running state [windows.module.environ.items] at time 12:11:59.494273 -2020-03-04 12:11:59,494 [salt.state :1852][INFO ][7072] Executing state module.run for [windows.module.environ.items] -2020-03-04 12:11:59,509 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded environ.items -2020-03-04 12:11:59,509 [salt.state :320 ][INFO ][7072] {'environ.items': {'NUMBER_OF_PROCESSORS': '2', 'PROMPT': '$P$G', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'HOMEPATH': '\\Users\\vagrant', 'PROGRAMDATA': 'C:\\ProgramData', 'SYSTEMDRIVE': 'C:', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'USERNAME': 'vagrant', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PROCESSOR_LEVEL': '6', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'LOGONSERVER': '\\\\VAGRANT-10', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'USERDOMAIN': 'VAGRANT-10', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'OS': 'Windows_NT', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'HOMEDRIVE': 'C:', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PUBLIC': 'C:\\Users\\Public', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'SALTDIR': 'C:\\salt', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'SYSTEMROOT': 'C:\\Windows', 'USERPROFILE': 'C:\\Users\\vagrant', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'COMPUTERNAME': 'VAGRANT-10', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'WINDIR': 'C:\\Windows', 'PROCESSOR_REVISION': '8e0c', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROGRAMW6432': 'C:\\Program Files'}} -2020-03-04 12:11:59,509 [salt.state :1997][INFO ][7072] Completed state [windows.module.environ.items] at time 12:11:59.509912 (duration_in_ms=15.639) -2020-03-04 12:11:59,509 [salt.state :1819][INFO ][7072] Running state [windows.module.user.current] at time 12:11:59.509912 -2020-03-04 12:11:59,509 [salt.state :1852][INFO ][7072] Executing state module.run for [windows.module.user.current] -2020-03-04 12:11:59,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded user.current -2020-03-04 12:11:59,572 [salt.state :320 ][INFO ][7072] {'user.current': 'VAGRANT-10\\vagrant'} -2020-03-04 12:11:59,572 [salt.state :1997][INFO ][7072] Completed state [windows.module.user.current] at time 12:11:59.572242 (duration_in_ms=62.33) -2020-03-04 12:11:59,572 [salt.state :1819][INFO ][7072] Running state [windows.module.status.uptime] at time 12:11:59.572242 -2020-03-04 12:11:59,572 [salt.state :1852][INFO ][7072] Executing state module.run for [windows.module.status.uptime] -2020-03-04 12:11:59,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded status.uptime -2020-03-04 12:11:59,650 [salt.state :320 ][INFO ][7072] {'status.uptime': '0:02:19.650837'} -2020-03-04 12:11:59,650 [salt.state :1997][INFO ][7072] Completed state [windows.module.status.uptime] at time 12:11:59.650837 (duration_in_ms=78.595) -2020-03-04 12:11:59,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cmd.run -2020-03-04 12:11:59,681 [salt.state :1819][INFO ][7072] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 12:11:59.681638 -2020-03-04 12:11:59,697 [salt.state :1852][INFO ][7072] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] -2020-03-04 12:11:59,697 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:01,775 [salt.loaded.int.states.cmd:343 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:12:01,790 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:03,416 [salt.state :320 ][INFO ][7072] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 6436} -2020-03-04 12:12:03,416 [salt.state :1997][INFO ][7072] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 12:12:03.416910 (duration_in_ms=3735.272) -2020-03-04 12:12:03,416 [salt.state :1819][INFO ][7072] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 12:12:03.416910 -2020-03-04 12:12:03,416 [salt.state :1852][INFO ][7072] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] -2020-03-04 12:12:03,416 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:03,962 [salt.loaded.int.states.cmd:343 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:12:03,962 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:04,792 [salt.state :320 ][INFO ][7072] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 6236} -2020-03-04 12:12:04,792 [salt.state :1997][INFO ][7072] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 12:12:04.792193 (duration_in_ms=1375.283) -2020-03-04 12:12:04,792 [salt.state :1819][INFO ][7072] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 12:12:04.792193 -2020-03-04 12:12:04,792 [salt.state :1852][INFO ][7072] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] -2020-03-04 12:12:04,792 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:05,322 [salt.loaded.int.states.cmd:343 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:12:05,322 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:06,213 [salt.state :320 ][INFO ][7072] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 5720} -2020-03-04 12:12:06,213 [salt.state :1997][INFO ][7072] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 12:12:06.213595 (duration_in_ms=1421.402) -2020-03-04 12:12:06,213 [salt.state :1819][INFO ][7072] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 12:12:06.213595 -2020-03-04 12:12:06,213 [salt.state :1852][INFO ][7072] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] -2020-03-04 12:12:06,229 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:06,760 [salt.loaded.int.states.cmd:343 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:12:06,760 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:07,587 [salt.state :320 ][INFO ][7072] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 2980} -2020-03-04 12:12:07,587 [salt.state :1997][INFO ][7072] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 12:12:07.587871 (duration_in_ms=1374.276) -2020-03-04 12:12:07,587 [salt.state :1819][INFO ][7072] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 12:12:07.587871 -2020-03-04 12:12:07,603 [salt.state :1852][INFO ][7072] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] -2020-03-04 12:12:07,603 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:08,135 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][7072] retcode: 1 -2020-03-04 12:12:08,135 [salt.loaded.int.states.cmd:343 ][DEBUG ][7072] Last command return code: 1 -2020-03-04 12:12:08,135 [salt.state :320 ][INFO ][7072] onlyif condition is false -2020-03-04 12:12:08,135 [salt.state :1997][INFO ][7072] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 12:12:08.135181 (duration_in_ms=547.31) -2020-03-04 12:12:08,151 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded reg.present -2020-03-04 12:12:08,151 [salt.state :1819][INFO ][7072] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:12:08.151085 -2020-03-04 12:12:08,151 [salt.state :1852][INFO ][7072] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:12:10,197 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt.secret_key, ret: _|- -2020-03-04 12:12:10,197 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt:secret_key, ret: _|- -2020-03-04 12:12:11,916 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet.api_key, ret: _|- -2020-03-04 12:12:11,916 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet:api_key, ret: _|- -2020-03-04 12:12:12,947 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops.api_key, ret: _|- -2020-03-04 12:12:12,947 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops:api_key, ret: _|- -2020-03-04 12:12:18,900 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:12:18,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded apache.a2enconf -2020-03-04 12:12:18,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded apache.a2enmod -2020-03-04 12:12:18,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded apache.a2ensite -2020-03-04 12:12:18,979 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:12:19,010 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:12:19,041 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:12:19,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:12:19,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:12:19,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:12:19,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:12:19,182 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:12:19,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_asg.exists -2020-03-04 12:12:19,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cfn.exists -2020-03-04 12:12:19,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:12:19,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:12:19,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:12:19,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:12:19,276 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:12:19,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:12:19,306 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_dynamodb.exists -2020-03-04 12:12:19,337 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_ec2.get_key -2020-03-04 12:12:19,353 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elasticache.exists -2020-03-04 12:12:19,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:12:19,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elb.exists -2020-03-04 12:12:19,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:12:19,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_iam.get_user -2020-03-04 12:12:19,432 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_iam.role_exists -2020-03-04 12:12:19,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_iot.policy_exists -2020-03-04 12:12:19,478 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_kinesis.exists -2020-03-04 12:12:19,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_kms.describe_key -2020-03-04 12:12:19,509 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_lambda.function_exists -2020-03-04 12:12:19,525 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_asg.exists -2020-03-04 12:12:19,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_rds.exists -2020-03-04 12:12:19,557 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_route53.get_record -2020-03-04 12:12:19,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:12:19,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:12:19,604 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_secgroup.exists -2020-03-04 12:12:19,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_sns.exists -2020-03-04 12:12:19,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_sqs.exists -2020-03-04 12:12:19,651 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_vpc.exists -2020-03-04 12:12:19,665 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded bower.list -2020-03-04 12:12:19,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded chef.client -2020-03-04 12:12:19,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cimc.get_system_info -2020-03-04 12:12:19,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cisconso.set_data_value -2020-03-04 12:12:19,759 [salt.loader :1577][DEBUG ][7072] Failed to import states cloud: +2020-03-06 10:14:00,030 [salt.state :320 ][INFO ][3700] {'hostname': 'saltstack1'} +2020-03-06 10:14:00,030 [salt.state :2045][INFO ][3700] Completed state [saltstack1] at time 10:14:00.030491 (duration_in_ms=155.695) +2020-03-06 10:14:00,030 [salt.state :1867][INFO ][3700] Running state [Saltstack Computer Description] at time 10:14:00.030491 +2020-03-06 10:14:00,046 [salt.state :1900][INFO ][3700] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:14:03,249 [salt.state :320 ][INFO ][3700] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 10:14:03,249 [salt.state :2045][INFO ][3700] Completed state [Saltstack Computer Description] at time 10:14:03.249193 (duration_in_ms=3218.702) +2020-03-06 10:14:03,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded platform.is_windows +2020-03-06 10:14:03,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded path.which +2020-03-06 10:14:03,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded timezone.get_zone +2020-03-06 10:14:03,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded timezone.system +2020-03-06 10:14:03,359 [salt.state :1867][INFO ][3700] Running state [America/New_York] at time 10:14:03.359479 +2020-03-06 10:14:03,359 [salt.state :1900][INFO ][3700] Executing state timezone.system for [America/New_York] +2020-03-06 10:14:03,359 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:14:03,405 [salt.state :320 ][INFO ][3700] {'timezone': 'America/New_York'} +2020-03-06 10:14:03,405 [salt.state :2045][INFO ][3700] Completed state [America/New_York] at time 10:14:03.405734 (duration_in_ms=46.255) +2020-03-06 10:14:03,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded module.run +2020-03-06 10:14:03,437 [salt.state :1867][INFO ][3700] Running state [windows.module.environ.items] at time 10:14:03.437118 +2020-03-06 10:14:03,437 [salt.state :1900][INFO ][3700] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:14:03,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded environ.items +2020-03-06 10:14:03,452 [salt.state :320 ][INFO ][3700] {'environ.items': {'ALLUSERSPROFILE': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'PROCESSOR_REVISION': '8e0c', 'HOMEDRIVE': 'C:', 'PUBLIC': 'C:\\Users\\Public', 'PROGRAMW6432': 'C:\\Program Files', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'USERDOMAIN': 'VAGRANT-10', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'USERNAME': 'vagrant', 'HOMEPATH': '\\Users\\vagrant', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'COMPUTERNAME': 'VAGRANT-10', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'SALTDIR': 'C:\\salt', 'SYSTEMROOT': 'C:\\Windows', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'OS': 'Windows_NT', 'USERPROFILE': 'C:\\Users\\vagrant', 'PROMPT': '$P$G', 'WINDIR': 'C:\\Windows', 'PROCESSOR_LEVEL': '6', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'NUMBER_OF_PROCESSORS': '2', 'SYSTEMDRIVE': 'C:', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMFILES': 'C:\\Program Files', 'LOGONSERVER': '\\\\VAGRANT-10', 'PYTHON': 'C:\\salt\\bin\\python.exe'}} +2020-03-06 10:14:03,452 [salt.state :2045][INFO ][3700] Completed state [windows.module.environ.items] at time 10:14:03.452930 (duration_in_ms=15.812) +2020-03-06 10:14:03,452 [salt.state :1867][INFO ][3700] Running state [windows.module.user.current] at time 10:14:03.452930 +2020-03-06 10:14:03,452 [salt.state :1900][INFO ][3700] Executing state module.run for [windows.module.user.current] +2020-03-06 10:14:03,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded user.current +2020-03-06 10:14:03,577 [salt.state :320 ][INFO ][3700] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:14:03,577 [salt.state :2045][INFO ][3700] Completed state [windows.module.user.current] at time 10:14:03.577390 (duration_in_ms=124.46) +2020-03-06 10:14:03,577 [salt.state :1867][INFO ][3700] Running state [windows.module.status.uptime] at time 10:14:03.577390 +2020-03-06 10:14:03,577 [salt.state :1900][INFO ][3700] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:14:03,656 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded status.uptime +2020-03-06 10:14:03,656 [salt.state :320 ][INFO ][3700] {'status.uptime': '0:02:35.656472'} +2020-03-06 10:14:03,656 [salt.state :2045][INFO ][3700] Completed state [windows.module.status.uptime] at time 10:14:03.656472 (duration_in_ms=79.082) +2020-03-06 10:14:03,687 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cmd.run +2020-03-06 10:14:03,687 [salt.state :1867][INFO ][3700] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:14:03.687679 +2020-03-06 10:14:03,687 [salt.state :1900][INFO ][3700] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] +2020-03-06 10:14:03,687 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:04,795 [salt.loaded.int.states.cmd:344 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:14:04,795 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:06,484 [salt.state :320 ][INFO ][3700] {'pid': 4512, 'stderr': '', 'stdout': '', 'retcode': 0} +2020-03-06 10:14:06,484 [salt.state :2045][INFO ][3700] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:14:06.484099 (duration_in_ms=2796.42) +2020-03-06 10:14:06,484 [salt.state :1867][INFO ][3700] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:14:06.484099 +2020-03-06 10:14:06,484 [salt.state :1900][INFO ][3700] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] +2020-03-06 10:14:06,484 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:07,030 [salt.loaded.int.states.cmd:344 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:14:07,030 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:07,796 [salt.state :320 ][INFO ][3700] {'pid': 6972, 'stderr': '', 'stdout': '', 'retcode': 0} +2020-03-06 10:14:07,796 [salt.state :2045][INFO ][3700] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:14:07.796042 (duration_in_ms=1311.943) +2020-03-06 10:14:07,796 [salt.state :1867][INFO ][3700] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:14:07.796042 +2020-03-06 10:14:07,812 [salt.state :1900][INFO ][3700] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] +2020-03-06 10:14:07,812 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:08,280 [salt.loaded.int.states.cmd:344 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:14:08,280 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:09,077 [salt.state :320 ][INFO ][3700] {'pid': 6596, 'stderr': '', 'stdout': '', 'retcode': 0} +2020-03-06 10:14:09,077 [salt.state :2045][INFO ][3700] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:14:09.077377 (duration_in_ms=1281.335) +2020-03-06 10:14:09,092 [salt.state :1867][INFO ][3700] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:14:09.092997 +2020-03-06 10:14:09,092 [salt.state :1900][INFO ][3700] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] +2020-03-06 10:14:09,092 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:09,577 [salt.loaded.int.states.cmd:344 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:14:09,577 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:10,374 [salt.state :320 ][INFO ][3700] {'pid': 932, 'stderr': '', 'stdout': '', 'retcode': 0} +2020-03-06 10:14:10,374 [salt.state :2045][INFO ][3700] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:14:10.374559 (duration_in_ms=1281.562) +2020-03-06 10:14:10,400 [salt.state :1867][INFO ][3700] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:14:10.400435 +2020-03-06 10:14:10,400 [salt.state :1900][INFO ][3700] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] +2020-03-06 10:14:10,400 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:10,889 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][3700] retcode: 1 +2020-03-06 10:14:10,889 [salt.loaded.int.states.cmd:344 ][DEBUG ][3700] Last command return code: 1 +2020-03-06 10:14:10,889 [salt.state :320 ][INFO ][3700] onlyif condition is false +2020-03-06 10:14:10,889 [salt.state :2045][INFO ][3700] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:14:10.889956 (duration_in_ms=489.521) +2020-03-06 10:14:10,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded reg.present +2020-03-06 10:14:10,905 [salt.state :1867][INFO ][3700] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:14:10.905916 +2020-03-06 10:14:10,905 [salt.state :1900][INFO ][3700] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:14:12,030 [salt.config :2215][DEBUG ][3700] Missing configuration file: /etc/salt/minion +2020-03-06 10:14:12,030 [salt.config :3612][DEBUG ][3700] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:14:12,264 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:14:12,264 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:14:13,327 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:14:13,343 [salt.loader :1671][DEBUG ][3700] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:12:19,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded ddns.update -2020-03-04 12:12:19,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded chassis.cmd -2020-03-04 12:12:19,869 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:12:19,900 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:12:19,916 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:12:19,947 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:12:20,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded esxi.cmd -2020-03-04 12:12:20,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded git.version -2020-03-04 12:12:20,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded github.list_users -2020-03-04 12:12:20,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded glanceng.image_get -2020-03-04 12:12:20,464 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded elasticsearch.exists -2020-03-04 12:12:20,509 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: grafana_version, ret: _|- -2020-03-04 12:12:20,526 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: grafana_version, ret: _|- -2020-03-04 12:12:20,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded icinga2.generate_ticket -2020-03-04 12:12:20,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded ifttt.trigger_event -2020-03-04 12:12:20,682 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:12:20,697 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:12:20,728 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:12:20,759 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:12:20,775 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:12:20,806 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:12:20,931 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:12:20,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.domain_get -2020-03-04 12:12:20,962 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:12:20,962 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.group_get -2020-03-04 12:12:20,979 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.project_get -2020-03-04 12:12:20,998 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.role_get -2020-03-04 12:12:21,009 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.role_grant -2020-03-04 12:12:21,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.service_get -2020-03-04 12:12:21,041 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.user_get -2020-03-04 12:12:21,072 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:12:21,134 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:12:21,197 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:12:21,213 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:12:21,260 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:12:21,291 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:12:21,306 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:12:21,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:12:21,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:12:21,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:12:21,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded memcached.status -2020-03-04 12:12:21,431 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mongodb.db_exists -2020-03-04 12:12:21,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mongodb.user_exists -2020-03-04 12:12:21,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:12:21,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:12:21,479 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:12:21,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:12:21,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_networks -2020-03-04 12:12:21,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_subnets -2020-03-04 12:12:21,682 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_subnets -2020-03-04 12:12:21,682 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_subnets -2020-03-04 12:12:21,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded npm.list -2020-03-04 12:12:21,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nxos.cmd -2020-03-04 12:12:21,791 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:12:21,822 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:12:21,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded panos.commit -2020-03-04 12:12:21,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pdbedit.create -2020-03-04 12:12:21,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pecl.list -2020-03-04 12:12:23,119 [pip.vcs :60 ][DEBUG ][7072] Registered VCS backend: git -2020-03-04 12:12:23,479 [pip.vcs :60 ][DEBUG ][7072] Registered VCS backend: hg -2020-03-04 12:12:23,557 [pip.pep425tags :79 ][DEBUG ][7072] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:12:23,557 [pip.pep425tags :79 ][DEBUG ][7072] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:12:23,557 [pip.pep425tags :79 ][DEBUG ][7072] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:12:23,557 [pip.pep425tags :79 ][DEBUG ][7072] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:12:24,025 [pip.vcs :60 ][DEBUG ][7072] Registered VCS backend: svn -2020-03-04 12:12:24,041 [pip.vcs :60 ][DEBUG ][7072] Registered VCS backend: bzr -2020-03-04 12:12:24,416 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:12:24,431 [salt.loader :1577][DEBUG ][7072] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:14:15,499 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: ifttt.secret_key, ret: _|- +2020-03-06 10:14:15,499 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: ifttt:secret_key, ret: _|- +2020-03-06 10:14:18,483 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: pushbullet.api_key, ret: _|- +2020-03-06 10:14:18,483 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: pushbullet:api_key, ret: _|- +2020-03-06 10:14:19,624 [salt.loader :1671][DEBUG ][3700] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:12:24,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.cluster_exists -2020-03-04 12:12:24,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.user_exists -2020-03-04 12:12:24,479 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.create_extension -2020-03-04 12:12:24,479 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.group_create -2020-03-04 12:12:24,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.datadir_init -2020-03-04 12:12:24,510 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.language_create -2020-03-04 12:12:24,525 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.privileges_grant -2020-03-04 12:12:24,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.schema_exists -2020-03-04 12:12:24,557 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.tablespace_exists -2020-03-04 12:12:24,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.user_exists -2020-03-04 12:12:24,744 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:12:24,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded selinux.getenforce -2020-03-04 12:12:24,904 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded splunk.list_users -2020-03-04 12:12:24,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded splunk_search.get -2020-03-04 12:12:24,994 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:12:25,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded tomcat.status -2020-03-04 12:12:25,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded vagrant.version -2020-03-04 12:12:25,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded victorops.create_event -2020-03-04 12:12:25,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded win_iis.create_site -2020-03-04 12:12:25,307 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded win_servermanager.install -2020-03-04 12:12:25,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:12:25,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded wordpress.show_plugin -2020-03-04 12:12:25,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded x509.get_pem_entry -2020-03-04 12:12:25,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded xmpp.send_msg -2020-03-04 12:12:25,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded zk_concurrency.lock -2020-03-04 12:12:25,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded zonecfg.create -2020-03-04 12:12:25,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded zookeeper.create -2020-03-04 12:12:25,604 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:12:25,604 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:12:25,790 [salt.state :889 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:12:25,806 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded dacl.check_perms -2020-03-04 12:12:25,806 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][7072] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:12:25,806 [salt.loaded.int.utils.win_dacl:1186][ERROR ][7072] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:14:20,046 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: victorops.api_key, ret: _|- +2020-03-06 10:14:20,046 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: victorops:api_key, ret: _|- +2020-03-06 10:14:28,484 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad acme.cert: 'acme' __virtual__ returned False: The ACME execution module cannot be loaded: letsencrypt-auto not installed. +2020-03-06 10:14:28,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded alternatives.auto +2020-03-06 10:14:28,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded apache.config +2020-03-06 10:14:28,611 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded apache.a2enconf +2020-03-06 10:14:28,625 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded apache.a2enmod +2020-03-06 10:14:28,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded apache.a2ensite +2020-03-06 10:14:28,671 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:14:28,703 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded at.at +2020-03-06 10:14:28,749 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:14:28,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:14:28,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:14:28,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:14:28,842 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:14:28,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded disk.tune +2020-03-06 10:14:28,922 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:14:28,936 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:14:28,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:14:28,968 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:14:28,984 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:14:29,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_asg.exists +2020-03-06 10:14:29,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cfn.exists +2020-03-06 10:14:29,030 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:14:29,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:14:29,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:14:29,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:14:29,093 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:14:29,109 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:14:29,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_dynamodb.exists +2020-03-06 10:14:29,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_ec2.get_key +2020-03-06 10:14:29,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elasticache.exists +2020-03-06 10:14:29,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:14:29,203 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elb.exists +2020-03-06 10:14:29,203 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:14:29,233 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_iam.get_user +2020-03-06 10:14:29,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_iam.role_exists +2020-03-06 10:14:29,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_iot.policy_exists +2020-03-06 10:14:29,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_kinesis.exists +2020-03-06 10:14:29,312 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_kms.describe_key +2020-03-06 10:14:29,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_lambda.function_exists +2020-03-06 10:14:29,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_asg.exists +2020-03-06 10:14:29,358 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_rds.exists +2020-03-06 10:14:29,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_route53.get_record +2020-03-06 10:14:29,390 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:14:29,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:14:29,437 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_secgroup.exists +2020-03-06 10:14:29,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_sns.exists +2020-03-06 10:14:29,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_sqs.exists +2020-03-06 10:14:29,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_vpc.exists +2020-03-06 10:14:29,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded bower.list +2020-03-06 10:14:29,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded chef.client +2020-03-06 10:14:29,619 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cimc.get_system_info +2020-03-06 10:14:29,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cisconso.set_data_value +2020-03-06 10:14:29,687 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cron.list_tab +2020-03-06 10:14:29,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded ddns.update +2020-03-06 10:14:29,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded chassis.cmd +2020-03-06 10:14:29,842 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:14:29,890 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:14:29,937 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:14:29,968 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:14:30,061 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded eselect.exec_action +2020-03-06 10:14:30,389 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded esxi.cmd +2020-03-06 10:14:30,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded git.version +2020-03-06 10:14:30,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded github.list_users +2020-03-06 10:14:30,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded glanceng.image_get +2020-03-06 10:14:30,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded glusterfs.list_volumes +2020-03-06 10:14:30,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded elasticsearch.exists +2020-03-06 10:14:30,734 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: grafana_version, ret: _|- +2020-03-06 10:14:30,749 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: grafana_version, ret: _|- +2020-03-06 10:14:30,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded icinga2.generate_ticket +2020-03-06 10:14:30,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded ifttt.trigger_event +2020-03-06 10:14:30,905 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:14:30,937 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:14:30,968 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:14:30,999 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:14:31,031 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:14:31,077 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:14:31,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded ipset.version +2020-03-06 10:14:31,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded iptables.version +2020-03-06 10:14:31,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded kapacitor.version +2020-03-06 10:14:31,264 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:14:31,264 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keyboard.get_sys +2020-03-06 10:14:31,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystone.auth +2020-03-06 10:14:31,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.domain_get +2020-03-06 10:14:31,312 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:14:31,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.group_get +2020-03-06 10:14:31,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.project_get +2020-03-06 10:14:31,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.role_get +2020-03-06 10:14:31,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.role_grant +2020-03-06 10:14:31,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.service_get +2020-03-06 10:14:31,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.user_get +2020-03-06 10:14:31,390 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystore.list +2020-03-06 10:14:31,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded kmod.available +2020-03-06 10:14:31,437 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:14:31,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded layman.add +2020-03-06 10:14:31,546 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:14:31,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded logadm.list_conf +2020-03-06 10:14:31,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded logrotate.show_conf +2020-03-06 10:14:31,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lvs.get_rules +2020-03-06 10:14:31,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lvs.get_rules +2020-03-06 10:14:31,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:14:31,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:14:31,670 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:14:31,670 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:14:31,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded makeconf.get_var +2020-03-06 10:14:31,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded memcached.status +2020-03-06 10:14:31,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded mongodb.db_exists +2020-03-06 10:14:31,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded mongodb.user_exists +2020-03-06 10:14:31,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded monit.summary +2020-03-06 10:14:32,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_networks +2020-03-06 10:14:32,078 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_subnets +2020-03-06 10:14:32,078 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_subnets +2020-03-06 10:14:32,092 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_subnets +2020-03-06 10:14:32,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nftables.version +2020-03-06 10:14:32,140 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded npm.list +2020-03-06 10:14:32,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nxos.cmd +2020-03-06 10:14:32,186 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded openvswitch.bridge_create +2020-03-06 10:14:32,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded openvswitch.port_add +2020-03-06 10:14:32,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded panos.commit +2020-03-06 10:14:32,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded pdbedit.create +2020-03-06 10:14:32,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded pecl.list +2020-03-06 10:14:33,452 [pip.vcs :60 ][DEBUG ][3700] Registered VCS backend: git +2020-03-06 10:14:33,781 [pip.vcs :60 ][DEBUG ][3700] Registered VCS backend: hg +2020-03-06 10:14:33,859 [pip.pep425tags :79 ][DEBUG ][3700] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:14:33,859 [pip.pep425tags :79 ][DEBUG ][3700] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:14:33,874 [pip.pep425tags :79 ][DEBUG ][3700] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:14:33,874 [pip.pep425tags :79 ][DEBUG ][3700] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:14:34,296 [pip.vcs :60 ][DEBUG ][3700] Registered VCS backend: svn +2020-03-06 10:14:34,312 [pip.vcs :60 ][DEBUG ][3700] Registered VCS backend: bzr +2020-03-06 10:14:34,686 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:14:34,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:14:34,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.cluster_exists +2020-03-06 10:14:34,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.user_exists +2020-03-06 10:14:34,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.create_extension +2020-03-06 10:14:34,765 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.group_create +2020-03-06 10:14:34,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.datadir_init +2020-03-06 10:14:34,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.language_create +2020-03-06 10:14:34,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.privileges_grant +2020-03-06 10:14:34,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.schema_exists +2020-03-06 10:14:34,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.tablespace_exists +2020-03-06 10:14:34,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.user_exists +2020-03-06 10:14:34,936 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded quota.report +2020-03-06 10:14:34,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:14:35,046 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:14:35,093 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:14:35,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded selinux.getenforce +2020-03-06 10:14:35,312 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:14:35,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded snapper.diff +2020-03-06 10:14:35,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded splunk.list_users +2020-03-06 10:14:35,390 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded splunk_search.get +2020-03-06 10:14:35,499 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:14:35,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded tomcat.status +2020-03-06 10:14:35,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded trafficserver.set_config +2020-03-06 10:14:35,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded vagrant.version +2020-03-06 10:14:35,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded victorops.create_event +2020-03-06 10:14:35,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded virt.node_info +2020-03-06 10:14:35,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded win_iis.create_site +2020-03-06 10:14:35,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded win_servermanager.install +2020-03-06 10:14:35,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:14:35,971 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded wordpress.show_plugin +2020-03-06 10:14:35,984 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded x509.get_pem_entry +2020-03-06 10:14:35,999 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded xmpp.send_msg +2020-03-06 10:14:36,140 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded zk_concurrency.lock +2020-03-06 10:14:36,170 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded zonecfg.create +2020-03-06 10:14:36,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded zookeeper.create +2020-03-06 10:14:36,233 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:14:36,233 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:14:36,421 [salt.state :906 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:14:36,421 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][3700] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:14:36,436 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3700] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:14:36,436 [salt.loaded.int.utils.win_dacl:1186][ERROR ][3700] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:12:25,822 [salt.state :320 ][INFO ][7072] {'reg': {'Added': {'Entry': 'SystemDefaultTlsVersions', 'Owner': None, 'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Grant': None, 'Deny': None}, 'Inheritance': True}}} -2020-03-04 12:12:25,838 [salt.state :1997][INFO ][7072] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:12:25.838074 (duration_in_ms=17686.989) -2020-03-04 12:12:25,838 [salt.state :1819][INFO ][7072] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:12:25.838074 -2020-03-04 12:12:25,838 [salt.state :1852][INFO ][7072] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:12:25,853 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:12:25,853 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' -2020-03-04 12:12:26,057 [salt.state :889 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:12:26,072 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][7072] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:12:26,072 [salt.loaded.int.utils.win_dacl:1186][ERROR ][7072] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +2020-03-06 10:14:36,436 [salt.state :320 ][INFO ][3700] {'reg': {'Added': {'Owner': None, 'Perms': {'Deny': None, 'Grant': None}, 'Inheritance': True, 'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319'}}} +2020-03-06 10:14:36,436 [salt.state :2045][INFO ][3700] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:14:36.436647 (duration_in_ms=25530.731) +2020-03-06 10:14:36,452 [salt.state :1867][INFO ][3700] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:14:36.452501 +2020-03-06 10:14:36,452 [salt.state :1900][INFO ][3700] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:14:36,468 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:14:36,468 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:14:36,671 [salt.state :906 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:14:36,671 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][3700] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:14:36,671 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3700] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:14:36,671 [salt.loaded.int.utils.win_dacl:1186][ERROR ][3700] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:12:26,072 [salt.state :320 ][INFO ][7072] {'reg': {'Added': {'Entry': 'SystemDefaultTlsVersions', 'Owner': None, 'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Grant': None, 'Deny': None}, 'Inheritance': True}}} -2020-03-04 12:12:26,072 [salt.state :1997][INFO ][7072] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:12:26.072938 (duration_in_ms=234.864) -2020-03-04 12:12:26,072 [salt.state :1819][INFO ][7072] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:12:26.072938 -2020-03-04 12:12:26,072 [salt.state :1852][INFO ][7072] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] -2020-03-04 12:12:26,088 [salt.utils.http :234 ][DEBUG ][7072] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method -2020-03-04 12:12:26,088 [salt.utils.http :235 ][DEBUG ][7072] Using backend: tornado -2020-03-04 12:12:26,619 [salt.loaded.int.states.archive:976 ][DEBUG ][7072] file.cached: {'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'result': True} -2020-03-04 12:12:26,635 [salt.loaded.int.states.archive:91 ][DEBUG ][7072] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:12:26,635 [salt.loaded.int.states.archive:996 ][DEBUG ][7072] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected -2020-03-04 12:12:26,697 [salt.loaded.int.module.win_file:1463][DEBUG ][7072] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win -2020-03-04 12:12:26,697 [salt.loaded.int.module.win_file:1463][DEBUG ][7072] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -2020-03-04 12:12:26,697 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][7072] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:12:26,697 [salt.loaded.int.states.archive:1247][DEBUG ][7072] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:12:27,088 [salt.loaded.int.states.archive:1543][DEBUG ][7072] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:12:27,088 [salt.state :320 ][INFO ][7072] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} -2020-03-04 12:12:27,104 [salt.state :1997][INFO ][7072] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:12:27.104410 (duration_in_ms=1031.472) -2020-03-04 12:12:27,104 [salt.state :1819][INFO ][7072] Running state [rename-extract] at time 12:12:27.104410 -2020-03-04 12:12:27,104 [salt.state :1852][INFO ][7072] Executing state module.run for [rename-extract] -2020-03-04 12:12:27,104 [salt.state :320 ][INFO ][7072] {'file.rename': True} -2020-03-04 12:12:27,104 [salt.state :1997][INFO ][7072] Completed state [rename-extract] at time 12:12:27.104410 (duration_in_ms=0.0) -2020-03-04 12:12:27,119 [salt.state :1819][INFO ][7072] Running state [pkg.refresh_db] at time 12:12:27.119219 -2020-03-04 12:12:27,119 [salt.state :1852][INFO ][7072] Executing state module.run for [pkg.refresh_db] -2020-03-04 12:12:27,119 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][7072] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:32.062478) -2020-03-04 12:12:27,119 [salt.loaded.int.module.win_pkg:935 ][INFO ][7072] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:12:27,119 [salt.loaded.int.module.win_pkg:954 ][INFO ][7072] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:12:27,119 [salt.fileclient :234 ][INFO ][7072] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:12:27,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:12:27,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:12:27,385 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:12:27,385 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,400 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:12:27,416 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:12:27,416 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:12:27,416 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:12:27,416 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,431 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:12:27,431 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:12:27,431 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:12:27,447 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:12:27,447 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,447 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:12:27,463 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:12:27,463 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:12:27,463 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:12:27,463 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,478 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:12:27,478 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:12:27,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:12:27,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:12:27,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,494 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:12:27,510 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:12:27,510 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:12:27,510 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:12:27,510 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,525 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:12:27,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:12:27,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:12:27,541 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:12:27,541 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,557 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:12:27,557 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:12:27,557 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:12:27,557 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:12:27,572 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,572 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:12:27,588 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:12:27,588 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:12:27,588 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:12:27,588 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,604 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:12:27,604 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:12:27,604 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:12:27,604 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:12:27,619 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,619 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:12:27,635 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:12:27,635 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:12:27,635 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:12:27,635 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,635 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:12:27,651 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:12:27,651 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:12:27,651 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:12:27,651 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:12:27,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:12:27,666 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:12:27,681 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:12:27,681 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,681 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:12:27,697 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:12:27,697 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:12:27,697 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:12:27,697 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,697 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:12:27,713 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:12:27,713 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:12:27,713 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:12:27,713 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,729 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:12:27,729 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:12:27,744 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:12:27,744 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:12:27,744 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,744 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:12:27,759 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:12:27,759 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:12:27,759 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:12:27,759 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,775 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:12:27,775 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:12:27,775 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:12:27,775 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:12:27,791 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,791 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:12:27,806 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:12:27,806 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:12:27,806 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:12:27,806 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,806 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:12:27,822 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:12:27,822 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:12:27,822 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:12:27,822 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,838 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:12:27,838 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:12:27,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:12:27,853 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:12:27,853 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,853 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:12:27,869 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:12:27,869 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:12:27,869 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:12:27,869 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,869 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:12:27,885 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:12:27,885 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:12:27,885 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:12:27,885 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,900 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:12:27,900 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:12:27,900 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:12:27,900 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:12:27,916 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,916 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:12:27,932 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:12:27,932 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:12:27,932 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:12:27,932 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,932 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:12:27,948 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:12:27,948 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:12:27,948 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:12:27,948 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,963 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:12:27,963 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:12:27,978 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:12:27,978 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:12:27,978 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:27,978 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:12:27,994 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:12:27,994 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:12:27,994 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:12:27,994 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,010 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:12:28,025 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:12:28,041 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:12:28,041 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:12:28,041 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,041 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:12:28,056 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:12:28,056 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:12:28,056 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:12:28,056 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,072 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:12:28,072 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:12:28,072 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:12:28,072 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:12:28,087 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,087 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:12:28,103 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:12:28,103 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:12:28,103 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:12:28,103 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,103 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:12:28,119 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:12:28,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:12:28,119 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:12:28,119 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,134 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:12:28,134 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:12:28,134 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:12:28,134 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:12:28,150 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,150 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:12:28,150 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:12:28,166 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:12:28,166 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:12:28,166 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,166 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:12:28,182 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:12:28,182 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:12:28,182 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:12:28,182 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,197 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:12:28,197 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:12:28,197 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:12:28,197 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:12:28,212 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,212 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:12:28,212 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:12:28,228 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:12:28,228 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:12:28,228 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,228 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:12:28,244 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:12:28,244 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:12:28,244 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:12:28,244 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,259 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:12:28,259 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:12:28,259 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:12:28,259 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:12:28,259 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,275 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:12:28,275 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:12:28,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:12:28,291 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:12:28,291 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,291 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:12:28,306 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:12:28,306 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:12:28,306 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:12:28,306 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,306 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:12:28,322 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:12:28,322 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:12:28,322 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:12:28,322 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,338 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:12:28,338 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:12:28,353 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:12:28,353 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:12:28,353 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,353 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:12:28,369 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:12:28,369 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:12:28,369 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:12:28,369 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,369 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:12:28,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:12:28,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:12:28,400 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:12:28,400 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,400 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:12:28,416 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:12:28,416 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:12:28,416 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:12:28,416 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,416 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:12:28,432 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:12:28,432 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:12:28,432 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:12:28,432 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,447 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:12:28,447 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:12:28,447 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:12:28,447 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:12:28,463 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,463 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:12:28,479 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:12:28,479 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:12:28,479 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:12:28,479 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,479 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:12:28,494 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:12:28,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:12:28,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:12:28,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,510 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:12:28,510 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:12:28,510 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:12:28,525 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:12:28,525 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,525 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:12:28,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:12:28,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:12:28,541 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:12:28,541 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,541 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:12:28,557 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:12:28,557 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:12:28,557 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:12:28,557 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,572 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:12:28,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:12:28,588 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:12:28,588 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:12:28,588 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,588 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:12:28,603 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:12:28,603 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:12:28,603 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:12:28,603 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,619 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:12:28,619 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:12:28,619 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:12:28,619 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:12:28,619 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,635 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:12:28,650 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:12:28,650 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:12:28,650 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:12:28,650 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,650 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:12:28,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:12:28,666 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:12:28,666 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:12:28,666 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,681 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:12:28,681 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:12:28,681 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:12:28,681 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:12:28,697 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,697 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:12:28,712 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:12:28,712 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:12:28,712 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:12:28,712 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,712 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:12:28,728 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:12:28,728 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:12:28,728 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:12:28,728 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,744 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:12:28,744 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:12:28,759 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:12:28,759 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:12:28,759 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,759 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:12:28,776 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:12:28,776 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:12:28,776 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:12:28,776 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,776 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:12:28,791 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:12:28,791 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:12:28,791 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:12:28,791 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,806 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:12:28,806 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:12:28,822 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:12:28,822 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:12:28,822 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,822 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:12:28,838 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:12:28,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:12:28,838 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:12:28,838 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,853 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:12:28,853 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:12:28,853 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:12:28,853 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:12:28,853 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,869 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:12:28,884 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:12:28,884 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:12:28,884 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:12:28,884 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,884 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:12:28,901 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:12:28,901 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:12:28,901 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:12:28,901 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,916 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:12:28,916 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:12:28,931 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:12:28,931 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:12:28,931 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,931 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:12:28,947 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:12:28,947 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:12:28,947 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:12:28,963 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,963 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:12:28,979 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:12:28,979 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:12:28,979 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:12:28,979 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:28,979 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:12:28,994 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:12:28,994 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:12:28,994 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:12:28,994 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,010 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:12:29,010 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:12:29,025 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:12:29,025 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:12:29,025 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,025 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:12:29,041 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:12:29,041 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:12:29,041 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:12:29,041 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,056 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:12:29,056 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:12:29,072 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:12:29,072 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:12:29,072 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,072 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:12:29,088 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:12:29,088 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:12:29,088 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:12:29,088 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,088 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:12:29,104 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:12:29,104 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:12:29,104 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:12:29,104 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,119 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:12:29,134 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:12:29,134 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:12:29,134 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:12:29,134 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,134 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:12:29,150 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:12:29,150 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:12:29,150 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:12:29,150 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,166 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:12:29,166 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:12:29,182 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:12:29,182 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:12:29,182 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,182 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:12:29,197 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:12:29,197 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:12:29,197 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:12:29,197 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,213 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:12:29,213 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:12:29,213 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:12:29,229 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:12:29,229 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,229 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:12:29,245 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:12:29,245 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:12:29,245 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:12:29,245 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,245 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:12:29,259 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:12:29,259 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:12:29,259 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:12:29,259 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,275 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:12:29,275 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:12:29,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:12:29,291 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:12:29,291 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,291 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:12:29,307 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:12:29,307 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:12:29,307 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:12:29,307 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,307 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:12:29,322 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:12:29,322 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:12:29,322 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:12:29,322 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,338 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:12:29,338 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:12:29,354 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:12:29,354 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:12:29,354 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,354 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:12:29,369 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:12:29,369 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:12:29,369 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:12:29,369 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,369 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:12:29,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:12:29,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:12:29,385 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:12:29,385 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,401 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:12:29,401 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:12:29,401 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:12:29,416 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:12:29,416 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,416 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:12:29,432 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:12:29,432 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:12:29,432 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:12:29,432 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,432 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:12:29,478 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:12:29,478 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:12:29,478 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:12:29,478 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,494 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:12:29,494 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:12:29,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:12:29,510 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:12:29,510 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,510 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:12:29,526 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:12:29,526 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:12:29,526 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:12:29,526 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,541 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:12:29,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:12:29,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:12:29,541 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:12:29,556 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,556 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:12:29,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:12:29,572 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:12:29,572 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:12:29,572 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,572 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:12:29,588 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:12:29,588 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:12:29,588 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:12:29,588 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,604 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:12:29,604 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:12:29,604 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:12:29,604 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:12:29,619 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,619 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:12:29,635 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:12:29,635 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:12:29,635 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:12:29,635 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,635 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:12:29,650 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:12:29,650 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:12:29,650 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:12:29,650 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:12:29,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:12:29,666 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:12:29,681 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:12:29,681 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,681 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:12:29,697 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:12:29,697 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:12:29,697 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:12:29,697 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,697 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:12:29,712 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:12:29,712 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:12:29,712 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:12:29,712 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,728 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:12:29,728 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:12:29,744 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:12:29,744 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:12:29,744 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,744 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:12:29,759 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:12:29,759 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:12:29,759 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:12:29,759 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,775 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:12:29,775 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:12:29,775 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:12:29,775 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:12:29,791 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,791 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:12:29,806 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:12:29,806 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:12:29,806 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:12:29,806 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,806 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:12:29,822 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:12:29,822 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:12:29,822 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:12:29,822 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,838 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:12:29,838 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:12:29,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:12:29,853 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:12:29,853 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,869 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:12:29,869 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:12:29,869 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:12:29,869 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:12:29,884 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,884 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:12:29,900 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:12:29,900 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:12:29,900 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:12:29,900 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,900 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:12:29,916 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:12:29,916 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:12:29,916 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:12:29,916 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,932 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:12:29,932 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:12:29,947 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:12:29,947 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:12:29,947 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,947 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:12:29,962 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:12:29,962 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:12:29,962 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:12:29,962 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,978 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:12:29,978 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:12:29,978 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:12:29,978 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:12:29,994 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:29,994 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:12:30,009 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:12:30,009 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:12:30,009 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:12:30,009 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,025 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:12:30,025 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:12:30,025 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:12:30,041 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:12:30,041 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,041 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:12:30,056 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:12:30,056 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:12:30,056 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:12:30,056 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,072 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:12:30,072 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:12:30,072 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:12:30,072 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:12:30,088 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,088 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:12:30,103 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:12:30,103 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:12:30,103 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:12:30,103 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,103 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:12:30,119 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:12:30,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:12:30,119 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:12:30,119 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,135 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:12:30,135 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:12:30,150 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:12:30,150 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:12:30,150 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,150 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:12:30,166 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:12:30,166 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:12:30,166 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:12:30,166 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,182 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:12:30,182 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:12:30,197 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:12:30,197 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:12:30,197 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,197 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:12:30,213 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:12:30,213 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:12:30,213 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:12:30,213 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,228 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:12:30,228 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:12:30,228 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:12:30,228 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:12:30,228 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,244 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:12:30,260 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:12:30,260 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:12:30,260 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:12:30,260 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,260 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:12:30,276 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:12:30,276 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:12:30,276 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:12:30,276 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,291 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:12:30,291 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:12:30,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:12:30,307 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:12:30,307 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,307 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:12:30,323 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:12:30,323 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:12:30,323 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:12:30,323 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,323 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:12:30,337 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,337 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,337 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,337 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,353 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,369 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,369 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,369 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,369 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,369 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,384 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:12:30,384 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:12:30,384 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:12:30,384 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,400 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:12:30,400 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:12:30,400 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:12:30,416 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:12:30,416 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,416 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:12:30,431 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:12:30,431 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:12:30,431 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:12:30,431 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,431 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:12:30,447 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:12:30,447 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:12:30,447 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:12:30,447 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,463 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:12:30,463 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:12:30,463 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:12:30,479 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:12:30,479 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,479 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:12:30,494 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:12:30,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:12:30,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:12:30,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,494 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:12:30,509 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,509 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,509 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,509 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,525 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:12:30,525 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,541 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,541 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,541 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,556 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:12:30,556 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:12:30,556 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:12:30,556 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,572 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:12:30,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,572 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,572 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,572 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,588 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:12:30,588 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:12:30,604 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:12:30,604 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:12:30,604 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,604 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:12:30,620 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:12:30,620 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:12:30,620 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:12:30,620 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,634 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:12:30,634 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:12:30,634 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:12:30,634 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:12:30,634 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,650 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:12:30,650 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:12:30,666 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:12:30,666 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:12:30,666 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:12:30,682 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:12:30,682 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:12:30,682 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:12:30,682 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,697 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:12:30,697 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:12:30,697 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:12:30,697 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:12:30,697 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,713 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:12:30,729 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:12:30,729 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:12:30,729 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:12:30,729 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,729 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:12:30,744 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:12:30,744 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:12:30,744 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:12:30,744 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,759 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:12:30,759 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:12:30,759 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:12:30,775 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:12:30,775 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,775 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:12:30,791 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:12:30,791 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:12:30,791 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:12:30,791 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,791 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:12:30,807 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:12:30,807 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:12:30,807 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:12:30,807 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,822 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:12:30,822 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:12:30,822 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:12:30,838 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:12:30,838 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,838 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:12:30,853 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:12:30,853 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:12:30,853 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:12:30,853 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,853 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:12:30,869 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:12:30,869 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:12:30,869 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:12:30,869 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,885 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:12:30,885 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:12:30,901 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:12:30,901 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:12:30,901 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,901 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:12:30,916 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:12:30,916 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:12:30,916 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:12:30,916 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,931 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:12:30,931 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:12:30,931 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:12:30,947 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:12:30,947 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,947 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:12:30,963 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:12:30,963 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:12:30,963 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:12:30,963 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,978 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:12:30,978 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:12:30,978 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:12:30,978 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:12:30,978 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:30,994 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:12:30,994 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:12:31,010 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:12:31,010 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:12:31,010 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,010 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:12:31,025 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:12:31,025 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:12:31,025 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:12:31,025 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,041 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:12:31,041 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:12:31,057 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:12:31,057 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:12:31,057 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,057 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:12:31,072 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:12:31,072 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:12:31,072 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:12:31,072 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,088 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:12:31,088 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:12:31,088 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:12:31,103 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:12:31,103 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,103 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:12:31,119 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:12:31,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:12:31,119 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:12:31,119 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,119 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:12:31,135 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:12:31,135 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:12:31,135 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:12:31,135 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,150 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:12:31,150 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:12:31,166 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:12:31,166 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:12:31,166 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,185 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:12:31,197 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:12:31,197 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:12:31,197 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:12:31,197 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,213 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:12:31,213 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:12:31,213 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:12:31,229 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:12:31,229 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,229 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:12:31,244 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:12:31,244 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:12:31,244 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:12:31,244 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,260 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:12:31,260 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:12:31,275 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:12:31,275 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:12:31,275 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,296 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:12:31,296 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:12:31,307 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:12:31,307 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:12:31,307 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,307 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:12:31,322 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:12:31,322 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:12:31,322 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:12:31,322 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,337 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:12:31,337 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:12:31,353 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:12:31,353 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:12:31,353 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,353 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:12:31,369 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:12:31,369 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:12:31,369 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:12:31,369 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,385 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:12:31,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:12:31,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:12:31,400 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:12:31,400 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,400 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:12:31,415 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:12:31,415 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:12:31,415 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:12:31,415 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,431 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:12:31,431 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:12:31,431 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:12:31,447 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:12:31,447 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,447 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:12:31,463 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:12:31,463 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:12:31,463 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:12:31,463 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,478 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:12:31,478 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:12:31,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:12:31,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:12:31,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,494 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:12:31,510 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:12:31,510 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:12:31,510 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:12:31,510 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,525 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:12:31,525 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:12:31,525 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:12:31,525 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:12:31,541 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,541 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:12:31,556 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:12:31,556 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:12:31,556 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:12:31,556 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,556 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:12:31,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:12:31,572 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:12:31,572 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:12:31,572 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,592 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:12:31,604 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:12:31,604 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:12:31,604 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:12:31,604 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,619 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:12:31,619 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:12:31,619 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:12:31,619 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:12:31,635 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,635 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:12:31,651 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:12:31,651 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:12:31,651 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:12:31,651 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:12:31,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:12:31,666 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:12:31,681 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:12:31,681 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,681 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:12:31,697 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:12:31,697 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:12:31,697 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:12:31,697 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,712 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:12:31,712 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:12:31,712 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:12:31,712 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:12:31,728 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,728 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:12:31,744 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:12:31,744 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:12:31,744 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:12:31,744 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,760 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:12:31,775 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:12:31,775 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:12:31,775 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:12:31,775 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,775 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:12:31,791 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:12:31,791 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:12:31,791 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:12:31,791 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,806 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:12:31,806 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:12:31,806 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:12:31,822 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:12:31,822 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,822 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:12:31,838 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:12:31,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:12:31,838 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:12:31,838 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,838 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:12:31,854 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:12:31,854 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:12:31,854 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:12:31,854 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,869 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:12:31,869 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:12:31,884 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:12:31,884 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:12:31,884 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,884 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:12:31,900 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:12:31,900 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:12:31,900 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:12:31,900 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,916 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:12:31,916 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:12:31,916 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:12:31,916 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:12:31,916 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,931 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:12:31,947 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:12:31,947 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:12:31,947 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:12:31,947 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,947 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:12:31,963 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:12:31,963 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:12:31,963 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:12:31,963 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,979 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:12:31,979 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:12:31,979 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:12:31,994 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:12:31,994 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:31,994 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:12:32,010 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:12:32,010 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:12:32,010 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:12:32,010 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,026 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:12:32,026 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:12:32,026 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:12:32,026 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:12:32,026 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,041 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:12:32,056 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:12:32,056 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:12:32,056 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:12:32,056 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,056 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:12:32,072 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:12:32,072 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:12:32,072 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:12:32,072 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,090 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:12:32,103 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:12:32,103 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:12:32,103 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:12:32,103 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,103 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:12:32,119 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:12:32,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:12:32,134 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:12:32,134 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,134 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:12:32,150 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:12:32,150 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:12:32,150 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:12:32,150 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,166 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:12:32,166 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:12:32,166 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:12:32,166 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:12:32,182 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,202 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:12:32,213 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:12:32,213 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:12:32,213 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:12:32,213 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,229 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:12:32,229 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:12:32,229 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:12:32,229 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:12:32,229 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,244 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:12:32,260 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:12:32,260 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:12:32,260 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:12:32,260 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,260 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:12:32,276 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:12:32,276 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:12:32,276 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:12:32,276 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,291 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:12:32,291 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:12:32,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:12:32,306 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:12:32,306 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,306 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:12:32,322 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:12:32,322 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:12:32,322 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:12:32,322 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,338 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:12:32,338 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:12:32,338 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:12:32,338 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:12:32,338 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,354 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:12:32,369 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:12:32,369 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:12:32,369 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:12:32,369 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,369 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:12:32,385 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:12:32,385 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:12:32,385 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:12:32,385 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,401 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:12:32,401 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:12:32,401 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:12:32,401 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:12:32,416 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,416 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:12:32,431 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:12:32,431 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:12:32,431 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:12:32,431 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,431 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:12:32,447 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:12:32,447 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:12:32,447 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:12:32,447 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,462 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:12:32,462 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:12:32,462 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:12:32,478 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:12:32,478 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,478 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:12:32,494 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:12:32,494 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:12:32,494 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:12:32,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,494 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:12:32,510 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:12:32,510 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:12:32,510 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:12:32,525 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,525 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:12:32,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:12:32,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:12:32,541 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:12:32,541 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,541 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:12:32,556 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:12:32,556 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:12:32,556 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:12:32,556 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,572 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:12:32,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:12:32,588 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:12:32,588 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:12:32,588 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,588 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:12:32,603 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:12:32,603 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:12:32,603 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:12:32,603 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,603 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:12:32,619 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:12:32,619 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:12:32,619 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:12:32,619 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,635 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:12:32,635 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:12:32,635 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:12:32,650 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:12:32,650 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,650 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:12:32,665 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:12:32,665 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:12:32,665 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:12:32,665 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,665 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:12:32,681 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:12:32,681 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:12:32,681 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:12:32,681 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,697 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:12:32,697 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:12:32,712 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:12:32,712 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:12:32,712 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,712 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:12:32,728 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:12:32,728 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:12:32,728 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:12:32,728 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,744 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:12:32,744 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:12:32,744 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:12:32,744 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:12:32,744 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,760 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:12:32,760 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:12:32,775 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:12:32,775 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:12:32,775 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,775 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:12:32,791 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:12:32,791 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:12:32,791 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:12:32,791 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,791 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:12:32,807 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:12:32,807 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:12:32,807 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:12:32,807 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,822 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:12:32,822 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:12:32,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:12:32,838 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:12:32,838 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,838 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:12:32,853 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:12:32,853 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:12:32,853 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:12:32,853 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,869 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:12:32,869 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:12:32,869 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:12:32,869 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:12:32,884 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,884 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:12:32,884 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:12:32,900 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:12:32,900 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:12:32,900 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,900 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:12:32,917 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:12:32,917 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:12:32,917 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:12:32,917 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,931 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:12:32,931 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:12:32,931 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:12:32,931 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:12:32,947 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,947 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:12:32,963 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:12:32,963 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:12:32,963 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:12:32,963 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,963 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:12:32,978 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:12:32,978 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:12:32,978 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:12:32,978 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:32,994 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:12:32,994 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:12:32,994 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:12:33,010 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:12:33,010 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,010 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:12:33,025 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:12:33,025 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:12:33,025 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:12:33,025 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,042 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:12:33,042 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:12:33,042 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:12:33,056 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:12:33,056 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,056 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:12:33,072 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:12:33,072 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:12:33,072 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:12:33,072 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,072 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:12:33,088 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:12:33,088 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:12:33,088 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:12:33,088 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,103 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:12:33,103 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:12:33,119 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:12:33,119 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:12:33,119 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,119 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:12:33,135 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:12:33,135 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:12:33,135 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:12:33,135 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,151 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:12:33,151 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:12:33,151 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:12:33,166 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:12:33,166 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,166 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:12:33,200 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:12:33,200 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:12:33,200 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:12:33,200 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,213 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:12:33,213 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:12:33,229 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:12:33,229 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:12:33,229 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,229 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:12:33,244 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:12:33,244 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:12:33,244 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:12:33,244 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,260 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:12:33,260 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:12:33,260 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:12:33,260 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:12:33,275 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,275 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:12:33,291 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:12:33,291 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:12:33,291 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:12:33,291 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,291 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:12:33,306 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:12:33,306 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:12:33,306 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:12:33,306 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,322 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:12:33,322 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:12:33,322 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:12:33,337 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:12:33,337 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,337 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:12:33,353 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:12:33,353 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:12:33,353 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:12:33,353 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,353 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:12:33,369 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:12:33,369 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:12:33,369 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:12:33,369 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,384 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:12:33,384 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:12:33,400 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:12:33,400 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:12:33,400 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,400 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:12:33,416 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:12:33,416 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:12:33,416 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:12:33,416 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,432 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:12:33,432 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:12:33,432 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:12:33,432 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:12:33,447 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,447 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:12:33,463 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:12:33,463 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:12:33,463 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:12:33,463 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,478 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:12:33,478 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:12:33,478 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:12:33,478 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:12:33,494 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,494 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:12:33,509 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:12:33,509 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:12:33,509 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:12:33,509 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,509 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:12:33,525 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:12:33,525 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:12:33,525 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:12:33,525 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,541 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:12:33,541 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:12:33,541 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:12:33,556 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:12:33,556 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,556 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:12:33,572 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:12:33,572 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:12:33,572 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:12:33,572 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,572 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:12:33,588 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:12:33,588 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:12:33,588 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:12:33,588 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,604 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:12:33,604 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:12:33,619 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:12:33,619 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:12:33,619 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,619 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:12:33,635 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:12:33,635 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:12:33,635 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:12:33,635 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,635 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:12:33,651 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:12:33,651 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:12:33,651 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:12:33,651 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,666 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:12:33,666 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:12:33,681 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:12:33,681 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:12:33,681 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,681 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:12:33,697 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:12:33,697 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:12:33,697 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:12:33,697 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,697 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:12:33,713 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:12:33,713 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:12:33,713 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:12:33,713 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,729 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:12:33,729 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:12:33,745 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:12:33,745 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:12:33,745 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,745 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:12:33,760 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:12:33,760 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:12:33,760 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:12:33,760 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,775 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:12:33,775 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:12:33,775 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:12:33,775 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:12:33,791 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,791 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:12:33,822 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:12:33,838 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:12:33,838 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:12:33,838 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,838 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:12:33,854 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:12:33,854 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:12:33,869 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:12:33,869 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,869 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:12:33,885 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:12:33,885 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:12:33,885 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:12:33,885 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,885 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:12:33,901 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:12:33,901 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:12:33,901 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:12:33,901 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,916 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:12:33,916 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:12:33,916 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:12:33,932 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:12:33,932 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,932 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:12:33,947 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:12:33,947 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:12:33,947 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:12:33,947 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,963 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:12:33,963 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:12:33,963 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:12:33,963 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:12:33,963 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,978 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:12:33,994 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:12:33,994 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:12:33,994 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:12:33,994 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:33,994 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:12:34,010 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:12:34,010 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:12:34,010 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:12:34,010 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:34,026 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:12:34,026 [salt.fileclient :1093][DEBUG ][7072] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:12:34,041 [salt.fileclient :1101][DEBUG ][7072] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:12:34,041 [salt.fileclient :1121][DEBUG ][7072] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:12:34,041 [salt.fileclient :1149][DEBUG ][7072] No dest file found -2020-03-04 12:12:34,041 [salt.fileclient :1230][INFO ][7072] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:12:34,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,057 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls -2020-03-04 12:12:34,057 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.015094995498657227 -2020-03-04 12:12:34,072 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +2020-03-06 10:14:36,671 [salt.state :320 ][INFO ][3700] {'reg': {'Added': {'Owner': None, 'Perms': {'Deny': None, 'Grant': None}, 'Inheritance': True, 'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319'}}} +2020-03-06 10:14:36,671 [salt.state :2045][INFO ][3700] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:14:36.671525 (duration_in_ms=219.024) +2020-03-06 10:14:36,687 [salt.state :1867][INFO ][3700] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:14:36.687189 +2020-03-06 10:14:36,687 [salt.state :1900][INFO ][3700] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:14:36,687 [salt.utils.http :234 ][DEBUG ][3700] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:14:36,687 [salt.utils.http :235 ][DEBUG ][3700] Using backend: tornado +2020-03-06 10:14:37,281 [salt.loaded.int.states.archive:1039][DEBUG ][3700] file.cached: {'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}} +2020-03-06 10:14:37,281 [salt.loaded.int.states.archive:91 ][DEBUG ][3700] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:14:37,281 [salt.loaded.int.states.archive:1059][DEBUG ][3700] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:14:37,343 [salt.loaded.int.module.win_file:1463][DEBUG ][3700] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:14:37,343 [salt.loaded.int.module.win_file:1463][DEBUG ][3700] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:14:37,359 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3700] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:14:37,359 [salt.loaded.int.states.archive:1344][DEBUG ][3700] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:14:37,733 [salt.loaded.int.states.archive:1643][DEBUG ][3700] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:14:37,749 [salt.state :320 ][INFO ][3700] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} +2020-03-06 10:14:37,749 [salt.state :2045][INFO ][3700] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:14:37.749397 (duration_in_ms=1062.208) +2020-03-06 10:14:37,749 [salt.state :1867][INFO ][3700] Running state [rename-extract] at time 10:14:37.749397 +2020-03-06 10:14:37,749 [salt.state :1900][INFO ][3700] Executing state module.run for [rename-extract] +2020-03-06 10:14:37,749 [salt.state :320 ][INFO ][3700] {'file.rename': True} +2020-03-06 10:14:37,749 [salt.state :2045][INFO ][3700] Completed state [rename-extract] at time 10:14:37.749397 (duration_in_ms=0.0) +2020-03-06 10:14:37,749 [salt.state :1867][INFO ][3700] Running state [pkg.refresh_db] at time 10:14:37.749397 +2020-03-06 10:14:37,749 [salt.state :1900][INFO ][3700] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:14:37,765 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][3700] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:38.827696) +2020-03-06 10:14:37,765 [salt.loaded.int.module.win_pkg:939 ][INFO ][3700] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:14:37,765 [salt.loaded.int.module.win_pkg:958 ][INFO ][3700] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:14:37,780 [salt.fileclient :234 ][INFO ][3700] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:14:37,983 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:14:37,983 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:14:37,983 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:14:37,999 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:37,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:14:38,015 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:14:38,015 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:14:38,015 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:14:38,015 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,015 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:14:38,031 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:14:38,031 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:14:38,031 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:14:38,031 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,046 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:14:38,046 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:14:38,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:14:38,046 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:14:38,062 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,062 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:14:38,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:14:38,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:14:38,077 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:14:38,077 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,077 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:14:38,093 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:14:38,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:14:38,093 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:14:38,093 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,108 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:14:38,108 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:14:38,108 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:14:38,108 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:14:38,124 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,124 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:14:38,140 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:14:38,140 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:14:38,140 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:14:38,140 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,140 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:14:38,156 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:14:38,156 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:14:38,156 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:14:38,156 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,170 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:14:38,170 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:14:38,170 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:14:38,186 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:14:38,186 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,202 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:14:38,202 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:14:38,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:14:38,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:14:38,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,218 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:14:38,233 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:14:38,233 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:14:38,233 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:14:38,233 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,249 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:14:38,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:14:38,249 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:14:38,265 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:14:38,265 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,265 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:14:38,280 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:14:38,280 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:14:38,280 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:14:38,280 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:14:38,296 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:14:38,296 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:14:38,311 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:14:38,311 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,311 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:14:38,327 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:14:38,327 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:14:38,327 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:14:38,327 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,343 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:14:38,343 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:14:38,343 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:14:38,358 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:14:38,358 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,358 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:14:38,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:14:38,374 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:14:38,374 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:14:38,374 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,390 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:14:38,390 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:14:38,390 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:14:38,405 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:14:38,405 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,405 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:14:38,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:14:38,421 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:14:38,421 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:14:38,421 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,437 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:14:38,437 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:14:38,437 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:14:38,452 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:14:38,452 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,452 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:14:38,468 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:14:38,468 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:14:38,483 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:14:38,483 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,483 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:14:38,499 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:14:38,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:14:38,499 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:14:38,499 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,514 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:14:38,530 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:14:38,530 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:14:38,530 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:14:38,530 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,546 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:14:38,562 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:14:38,562 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:14:38,562 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:14:38,562 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,577 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:14:38,593 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:14:38,593 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:14:38,593 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:14:38,593 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,608 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:14:38,608 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:14:38,608 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:14:38,608 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:14:38,624 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,624 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:14:38,640 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:14:38,640 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:14:38,640 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:14:38,640 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,640 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:14:38,655 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:14:38,655 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:14:38,655 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:14:38,655 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,670 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:14:38,686 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:14:38,686 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:14:38,686 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:14:38,686 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,702 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:14:38,718 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:14:38,718 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:14:38,718 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:14:38,718 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,733 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:14:38,733 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:14:38,749 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:14:38,749 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:14:38,749 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,749 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:14:38,765 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:14:38,765 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:14:38,765 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:14:38,765 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,781 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:14:38,796 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:14:38,796 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:14:38,796 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:14:38,796 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,796 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:14:38,812 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:14:38,812 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:14:38,812 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:14:38,812 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,827 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:14:38,843 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:14:38,843 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:14:38,843 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:14:38,843 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,843 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:14:38,858 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:14:38,858 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:14:38,858 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:14:38,874 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,874 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:14:38,889 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:14:38,889 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:14:38,889 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:14:38,905 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,905 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:14:38,921 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:14:38,921 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:14:38,921 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:14:38,936 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,936 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:14:38,952 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:14:38,952 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:14:38,952 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:14:38,968 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,968 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:14:38,983 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:14:38,983 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:14:38,983 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:14:38,983 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:38,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:14:39,014 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:14:39,014 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:14:39,014 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:14:39,014 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,030 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:14:39,046 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:14:39,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:14:39,046 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:14:39,046 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,061 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:14:39,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:14:39,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:14:39,077 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:14:39,077 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,092 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:14:39,108 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:14:39,108 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:14:39,108 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:14:39,108 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,124 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:14:39,139 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:14:39,139 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:14:39,139 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:14:39,139 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,155 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:14:39,155 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:14:39,155 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:14:39,155 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:14:39,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,171 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:14:39,187 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:14:39,187 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:14:39,187 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:14:39,187 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,202 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:14:39,218 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:14:39,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:14:39,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:14:39,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,233 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:14:39,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:14:39,249 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:14:39,249 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:14:39,249 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,280 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:14:39,296 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:14:39,296 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:14:39,296 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:14:39,296 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:14:39,312 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:14:39,312 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:14:39,312 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:14:39,327 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,327 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:14:39,343 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:14:39,343 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:14:39,343 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:14:39,343 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,359 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:14:39,359 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:14:39,359 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:14:39,374 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:14:39,374 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,374 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:14:39,390 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:14:39,390 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:14:39,390 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:14:39,390 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,405 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:14:39,405 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:14:39,405 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:14:39,421 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:14:39,421 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,421 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:14:39,437 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:14:39,437 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:14:39,437 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:14:39,437 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,452 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:14:39,452 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:14:39,452 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:14:39,452 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:14:39,468 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,468 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:14:39,483 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:14:39,483 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:14:39,483 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:14:39,483 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,499 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:14:39,499 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:14:39,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:14:39,515 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:14:39,515 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,515 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:14:39,530 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:14:39,530 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:14:39,530 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:14:39,530 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,546 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:14:39,562 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:14:39,562 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:14:39,562 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:14:39,562 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,562 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:14:39,577 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:14:39,577 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:14:39,577 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:14:39,593 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,593 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:14:39,608 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:14:39,608 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:14:39,608 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:14:39,608 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,608 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:14:39,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:14:39,624 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:14:39,624 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:14:39,624 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,639 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:14:39,639 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:14:39,655 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:14:39,655 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:14:39,655 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,655 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:14:39,671 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:14:39,671 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:14:39,671 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:14:39,671 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,687 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:14:39,687 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:14:39,702 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:14:39,702 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:14:39,702 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,702 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:14:39,718 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:14:39,718 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:14:39,718 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:14:39,718 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,734 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:14:39,734 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:14:39,749 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:14:39,749 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:14:39,749 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,749 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:14:39,765 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:14:39,765 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:14:39,765 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:14:39,765 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,780 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:14:39,780 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:14:39,780 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:14:39,780 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:14:39,796 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,796 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:14:39,811 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:14:39,811 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:14:39,811 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:14:39,811 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,811 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:14:39,828 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:14:39,828 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:14:39,828 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:14:39,828 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,843 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:14:39,843 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:14:39,858 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:14:39,858 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:14:39,858 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,858 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:14:39,874 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:14:39,874 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:14:39,874 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:14:39,874 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,890 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:14:39,890 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:14:39,890 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:14:39,890 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:14:39,905 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,905 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:14:39,921 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:14:39,921 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:14:39,921 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:14:39,921 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,921 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:14:39,937 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:14:39,937 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:14:39,937 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:14:39,937 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,952 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:14:39,952 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:14:39,968 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:14:39,968 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:14:39,968 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,968 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:14:39,984 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:14:39,984 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:14:39,984 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:14:39,984 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:39,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:14:39,999 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:14:39,999 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:14:39,999 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:14:40,014 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,014 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:14:40,030 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:14:40,030 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:14:40,030 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:14:40,030 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,030 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:14:40,046 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:14:40,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:14:40,046 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:14:40,046 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,062 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:14:40,062 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:14:40,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:14:40,077 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:14:40,077 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,077 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:14:40,093 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:14:40,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:14:40,093 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:14:40,093 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,108 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:14:40,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:14:40,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:14:40,124 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:14:40,124 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,124 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:14:40,140 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:14:40,140 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:14:40,140 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:14:40,140 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,156 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:14:40,156 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:14:40,156 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:14:40,171 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:14:40,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,171 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:14:40,186 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:14:40,186 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:14:40,186 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:14:40,186 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,186 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:14:40,202 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:14:40,202 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:14:40,202 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:14:40,202 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,218 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:14:40,218 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:14:40,233 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:14:40,233 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:14:40,233 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,252 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:14:40,264 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:14:40,264 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:14:40,264 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:14:40,264 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,264 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:14:40,280 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:14:40,280 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:14:40,280 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:14:40,280 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:14:40,296 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:14:40,311 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:14:40,311 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:14:40,311 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,311 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:14:40,327 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:14:40,327 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:14:40,327 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:14:40,327 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,343 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:14:40,343 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:14:40,343 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:14:40,359 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:14:40,359 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,359 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:14:40,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:14:40,374 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:14:40,374 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:14:40,374 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,389 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:14:40,389 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:14:40,389 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:14:40,389 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:14:40,405 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,405 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:14:40,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:14:40,421 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:14:40,421 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:14:40,421 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,421 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:14:40,436 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:14:40,436 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:14:40,452 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:14:40,452 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,468 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:14:40,484 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:14:40,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:14:40,499 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:14:40,499 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,515 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:14:40,531 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:14:40,531 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:14:40,531 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:14:40,531 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,546 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:14:40,561 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:14:40,561 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:14:40,561 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:14:40,561 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,577 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:14:40,593 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:14:40,593 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:14:40,593 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:14:40,593 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,593 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:14:40,609 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:14:40,609 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:14:40,609 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:14:40,609 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,624 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:14:40,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:14:40,639 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:14:40,639 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:14:40,639 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,639 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:14:40,655 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:14:40,655 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:14:40,655 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:14:40,655 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,670 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:14:40,686 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:14:40,686 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:14:40,686 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:14:40,686 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,702 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:14:40,718 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:14:40,718 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:14:40,718 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:14:40,718 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,718 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:14:40,734 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:14:40,734 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:14:40,734 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:14:40,734 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,749 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:14:40,764 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:14:40,764 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:14:40,764 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:14:40,764 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,764 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:14:40,780 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:14:40,780 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:14:40,780 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:14:40,796 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,796 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:14:40,827 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:14:40,827 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:14:40,827 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:14:40,827 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,842 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:14:40,842 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:14:40,842 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:14:40,842 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:14:40,842 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,858 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:14:40,858 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:14:40,875 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:14:40,875 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:14:40,875 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,905 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:14:40,905 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:14:40,905 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:14:40,921 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:14:40,921 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,921 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:14:40,936 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:14:40,936 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:14:40,936 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:14:40,936 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,952 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:14:40,968 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:14:40,968 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:14:40,968 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:14:40,968 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,968 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:14:40,983 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:14:40,983 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:14:40,983 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:14:40,983 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:40,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:14:41,015 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:14:41,015 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:14:41,015 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:14:41,015 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,030 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:14:41,030 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:14:41,030 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:14:41,030 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:14:41,046 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,046 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:14:41,061 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:14:41,061 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:14:41,061 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:14:41,061 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,077 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:14:41,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:14:41,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:14:41,093 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:14:41,093 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,093 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:14:41,109 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:14:41,109 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:14:41,109 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:14:41,109 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,124 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:14:41,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:14:41,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:14:41,139 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:14:41,139 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,139 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:14:41,155 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:14:41,155 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:14:41,155 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:14:41,155 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,155 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:14:41,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:14:41,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:14:41,171 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:14:41,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,187 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:14:41,187 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:14:41,202 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:14:41,202 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:14:41,202 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,202 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:14:41,218 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:14:41,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:14:41,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:14:41,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,234 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:14:41,234 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:14:41,249 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:14:41,249 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:14:41,249 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,249 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:14:41,264 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:14:41,264 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:14:41,264 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:14:41,264 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,280 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:14:41,280 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:14:41,280 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:14:41,280 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:14:41,296 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:14:41,312 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,312 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,312 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,312 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,327 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,327 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,327 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,327 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,343 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,343 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,359 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:14:41,359 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:14:41,359 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:14:41,359 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,359 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:14:41,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:14:41,374 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:14:41,374 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:14:41,374 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,390 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:14:41,390 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:14:41,390 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:14:41,390 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:14:41,405 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,405 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:14:41,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:14:41,421 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:14:41,421 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:14:41,421 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,421 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:14:41,437 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:14:41,437 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:14:41,437 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:14:41,437 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,452 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:14:41,452 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:14:41,468 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:14:41,468 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:14:41,468 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,468 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:14:41,483 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,483 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,483 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,483 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,499 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:14:41,499 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,499 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,515 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,515 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,546 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:14:41,546 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:14:41,546 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:14:41,546 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,546 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:14:41,562 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,562 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,562 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,562 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,577 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:14:41,577 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:14:41,577 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:14:41,577 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:14:41,593 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,593 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:14:41,608 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:14:41,608 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:14:41,608 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:14:41,608 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,608 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:14:41,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:14:41,624 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:14:41,624 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:14:41,624 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,640 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:14:41,655 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:14:41,655 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:14:41,655 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:14:41,655 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,655 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:14:41,671 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:14:41,671 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:14:41,671 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:14:41,671 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,687 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:14:41,687 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:14:41,702 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:14:41,702 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:14:41,702 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,702 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:14:41,718 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:14:41,718 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:14:41,718 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:14:41,718 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,733 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:14:41,733 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:14:41,733 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:14:41,749 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:14:41,749 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,765 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:14:41,780 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:14:41,780 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:14:41,780 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:14:41,780 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,780 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:14:41,796 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:14:41,796 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:14:41,796 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:14:41,796 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,811 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:14:41,811 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:14:41,811 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:14:41,827 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:14:41,827 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,827 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:14:41,843 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:14:41,859 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:14:41,859 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:14:41,859 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,859 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:14:41,875 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:14:41,875 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:14:41,875 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:14:41,875 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,889 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:14:41,905 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:14:41,905 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:14:41,905 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:14:41,905 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,921 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:14:41,921 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:14:41,921 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:14:41,921 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:14:41,936 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,936 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:14:41,952 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:14:41,952 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:14:41,952 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:14:41,952 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,952 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:14:41,968 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:14:41,968 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:14:41,968 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:14:41,968 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,984 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:14:41,984 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:14:41,999 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:14:41,999 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:14:41,999 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:41,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:14:42,014 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:14:42,014 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:14:42,014 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:14:42,014 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,014 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:14:42,030 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:14:42,030 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:14:42,030 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:14:42,030 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,046 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:14:42,062 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:14:42,062 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:14:42,062 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:14:42,062 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,062 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:14:42,078 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:14:42,078 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:14:42,078 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:14:42,078 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,092 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:14:42,092 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:14:42,092 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:14:42,092 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:14:42,108 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,108 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:14:42,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:14:42,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:14:42,124 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:14:42,124 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,124 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:14:42,139 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:14:42,139 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:14:42,139 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:14:42,139 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,155 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:14:42,155 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:14:42,155 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:14:42,171 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:14:42,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,171 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:14:42,186 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:14:42,186 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:14:42,186 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:14:42,186 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,186 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:14:42,202 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:14:42,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:14:42,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:14:42,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,218 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:14:42,233 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:14:42,233 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:14:42,233 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:14:42,249 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,249 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:14:42,264 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:14:42,264 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:14:42,264 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:14:42,264 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:14:42,296 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:14:42,296 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:14:42,296 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:14:42,311 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,311 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:14:42,327 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:14:42,327 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:14:42,327 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:14:42,327 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,327 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:14:42,343 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:14:42,343 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:14:42,343 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:14:42,343 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,358 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:14:42,358 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:14:42,358 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:14:42,358 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:14:42,358 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,374 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:14:42,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:14:42,390 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:14:42,390 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:14:42,390 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,390 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:14:42,405 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:14:42,405 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:14:42,405 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:14:42,405 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,421 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:14:42,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:14:42,421 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:14:42,436 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:14:42,436 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,436 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:14:42,452 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:14:42,452 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:14:42,452 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:14:42,452 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,452 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:14:42,468 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:14:42,468 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:14:42,468 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:14:42,468 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,483 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:14:42,483 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:14:42,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:14:42,499 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:14:42,499 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,499 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:14:42,515 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:14:42,515 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:14:42,515 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:14:42,515 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,515 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:14:42,530 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:14:42,530 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:14:42,530 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:14:42,530 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,546 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:14:42,561 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:14:42,561 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:14:42,561 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:14:42,561 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,577 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:14:42,577 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:14:42,593 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:14:42,593 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:14:42,593 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,593 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:14:42,608 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:14:42,608 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:14:42,608 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:14:42,608 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,608 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:14:42,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:14:42,624 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:14:42,624 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:14:42,624 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,639 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:14:42,639 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:14:42,655 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:14:42,655 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:14:42,655 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,655 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:14:42,671 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:14:42,671 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:14:42,671 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:14:42,671 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,687 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:14:42,702 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:14:42,702 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:14:42,702 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:14:42,702 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,718 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:14:42,734 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:14:42,734 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:14:42,734 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:14:42,734 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,749 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:14:42,765 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:14:42,765 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:14:42,765 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:14:42,780 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,780 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:14:42,796 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:14:42,796 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:14:42,796 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:14:42,796 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,811 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:14:42,827 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:14:42,827 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:14:42,827 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:14:42,827 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,827 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:14:42,843 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:14:42,843 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:14:42,843 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:14:42,843 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,858 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:14:42,858 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:14:42,858 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:14:42,874 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:14:42,874 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,874 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:14:42,890 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:14:42,890 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:14:42,890 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:14:42,890 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,906 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:14:42,906 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:14:42,920 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:14:42,920 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:14:42,920 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,920 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:14:42,936 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:14:42,936 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:14:42,936 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:14:42,936 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,952 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:14:42,952 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:14:42,952 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:14:42,952 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:14:42,968 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:42,968 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:14:42,983 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:14:42,983 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:14:42,983 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:14:42,983 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,015 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:14:43,015 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:14:43,015 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:14:43,015 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:14:43,030 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,030 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:14:43,046 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:14:43,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:14:43,046 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:14:43,046 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,062 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:14:43,062 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:14:43,078 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:14:43,078 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:14:43,078 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,092 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:14:43,092 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:14:43,108 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:14:43,108 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:14:43,108 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,108 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:14:43,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:14:43,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:14:43,124 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:14:43,124 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,139 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:14:43,139 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:14:43,155 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:14:43,155 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:14:43,155 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,155 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:14:43,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:14:43,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:14:43,171 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:14:43,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,186 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:14:43,186 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:14:43,186 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:14:43,186 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:14:43,202 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,202 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:14:43,218 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:14:43,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:14:43,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:14:43,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,218 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:14:43,234 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:14:43,234 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:14:43,234 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:14:43,249 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,249 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:14:43,265 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:14:43,265 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:14:43,265 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:14:43,265 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,280 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:14:43,280 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:14:43,296 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:14:43,296 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:14:43,296 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:14:43,311 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:14:43,311 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:14:43,311 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:14:43,311 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,327 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:14:43,327 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:14:43,327 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:14:43,327 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:14:43,343 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,343 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:14:43,358 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:14:43,358 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:14:43,358 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:14:43,358 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,374 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:14:43,390 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:14:43,390 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:14:43,390 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:14:43,390 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,405 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:14:43,405 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:14:43,405 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:14:43,405 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:14:43,405 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,421 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:14:43,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:14:43,436 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:14:43,436 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:14:43,436 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,436 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:14:43,452 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:14:43,452 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:14:43,452 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:14:43,452 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,468 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:14:43,468 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:14:43,468 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:14:43,484 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:14:43,484 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,484 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:14:43,499 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:14:43,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:14:43,499 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:14:43,499 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,499 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:14:43,522 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:14:43,522 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:14:43,531 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:14:43,531 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,531 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:14:43,546 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:14:43,546 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:14:43,573 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:14:43,573 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,577 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:14:43,593 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:14:43,593 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:14:43,593 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:14:43,593 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,593 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:14:43,609 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:14:43,609 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:14:43,609 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:14:43,609 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,624 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:14:43,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:14:43,640 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:14:43,640 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:14:43,640 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,640 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:14:43,655 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:14:43,655 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:14:43,655 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:14:43,655 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,671 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:14:43,671 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:14:43,671 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:14:43,671 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:14:43,686 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,686 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:14:43,702 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:14:43,702 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:14:43,702 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:14:43,702 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,718 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:14:43,718 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:14:43,718 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:14:43,718 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:14:43,733 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,733 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:14:43,749 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:14:43,749 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:14:43,749 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:14:43,765 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,780 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:14:43,811 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:14:43,811 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:14:43,811 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:14:43,811 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,827 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:14:43,827 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:14:43,827 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:14:43,827 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:14:43,843 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,843 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:14:43,859 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:14:43,859 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:14:43,859 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:14:43,859 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,859 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:14:43,874 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:14:43,874 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:14:43,874 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:14:43,874 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,890 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:14:43,906 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:14:43,906 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:14:43,906 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:14:43,906 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,920 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:14:43,920 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:14:43,920 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:14:43,920 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:14:43,920 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,936 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:14:43,936 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:14:43,952 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:14:43,952 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:14:43,952 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,952 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:14:43,968 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:14:43,968 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:14:43,968 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:14:43,968 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,983 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:14:43,983 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:14:43,983 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:14:43,983 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:14:43,999 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:43,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:14:44,015 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:14:44,015 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:14:44,015 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:14:44,015 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,015 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:14:44,031 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:14:44,031 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:14:44,031 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:14:44,031 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,046 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:14:44,046 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:14:44,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:14:44,061 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:14:44,061 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,061 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:14:44,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:14:44,077 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:14:44,077 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:14:44,077 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,077 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:14:44,093 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:14:44,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:14:44,093 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:14:44,093 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,109 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:14:44,109 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:14:44,109 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:14:44,124 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:14:44,124 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,124 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:14:44,140 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:14:44,140 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:14:44,140 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:14:44,140 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,140 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:14:44,156 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:14:44,156 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:14:44,156 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:14:44,156 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,171 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:14:44,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:14:44,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:14:44,186 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:14:44,186 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,202 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:14:44,202 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:14:44,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:14:44,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:14:44,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,218 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:14:44,234 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:14:44,234 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:14:44,234 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:14:44,234 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,249 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:14:44,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:14:44,264 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:14:44,264 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:14:44,264 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,264 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:14:44,280 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:14:44,280 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:14:44,280 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:14:44,280 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:14:44,296 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:14:44,296 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:14:44,312 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:14:44,312 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,312 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:14:44,328 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:14:44,328 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:14:44,328 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:14:44,328 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,342 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:14:44,342 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:14:44,342 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:14:44,358 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:14:44,358 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,358 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:14:44,374 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:14:44,374 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:14:44,374 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:14:44,374 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,389 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:14:44,389 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:14:44,389 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:14:44,405 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:14:44,405 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,405 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:14:44,421 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:14:44,421 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:14:44,421 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:14:44,421 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,421 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:14:44,436 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:14:44,436 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:14:44,436 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:14:44,436 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,452 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:14:44,452 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:14:44,468 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:14:44,468 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:14:44,468 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,468 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:14:44,483 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:14:44,483 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:14:44,483 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:14:44,483 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,499 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:14:44,499 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:14:44,499 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:14:44,499 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:14:44,515 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,541 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:14:44,546 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:14:44,546 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:14:44,546 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:14:44,546 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,572 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:14:44,577 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:14:44,577 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:14:44,577 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:14:44,577 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,593 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:14:44,593 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:14:44,609 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:14:44,609 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:14:44,609 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,609 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:14:44,624 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:14:44,624 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:14:44,624 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:14:44,624 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,624 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:14:44,640 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:14:44,640 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:14:44,640 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:14:44,640 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,656 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:14:44,656 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:14:44,671 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:14:44,671 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:14:44,671 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,671 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:14:44,686 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:14:44,686 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:14:44,686 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:14:44,686 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,702 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:14:44,733 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:14:44,733 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:14:44,749 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:14:44,749 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,749 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:14:44,765 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:14:44,765 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:14:44,765 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:14:44,765 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,765 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:14:44,781 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:14:44,781 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:14:44,781 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:14:44,781 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,795 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:14:44,795 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:14:44,811 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:14:44,811 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:14:44,811 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,811 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:14:44,827 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:14:44,827 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:14:44,827 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:14:44,827 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,843 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:14:44,874 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:14:44,874 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:14:44,874 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:14:44,874 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,905 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:14:44,936 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:14:44,936 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:14:44,936 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:14:44,936 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,936 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:14:44,952 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:14:44,952 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:14:44,952 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:14:44,952 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,968 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:14:44,968 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:14:44,968 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:14:44,983 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:14:44,983 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,983 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:14:44,999 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:14:44,999 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:14:44,999 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:14:44,999 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:44,999 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:14:45,014 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:14:45,014 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:14:45,014 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:14:45,014 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,031 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:14:45,031 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:14:45,046 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:14:45,046 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:14:45,046 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,046 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:14:45,062 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:14:45,062 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:14:45,062 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:14:45,062 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,077 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:14:45,077 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:14:45,093 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:14:45,093 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:14:45,093 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,093 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:14:45,109 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:14:45,109 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:14:45,109 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:14:45,109 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,124 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:14:45,124 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:14:45,124 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:14:45,124 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:14:45,124 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,140 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:14:45,155 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:14:45,155 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:14:45,155 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:14:45,155 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,155 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:14:45,171 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:14:45,171 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:14:45,171 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:14:45,171 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,186 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:14:45,186 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:14:45,186 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:14:45,186 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:14:45,202 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,202 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:14:45,202 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:14:45,218 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:14:45,218 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:14:45,218 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,218 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:14:45,234 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:14:45,234 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:14:45,234 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:14:45,234 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,249 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:14:45,249 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:14:45,265 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:14:45,265 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:14:45,265 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,265 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:14:45,280 [salt.fileclient :1101][DEBUG ][3700] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:14:45,280 [salt.fileclient :1109][DEBUG ][3700] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:14:45,280 [salt.fileclient :1129][DEBUG ][3700] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:14:45,280 [salt.fileclient :1157][DEBUG ][3700] No dest file found +2020-03-06 10:14:45,296 [salt.fileclient :1238][INFO ][3700] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:14:45,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,296 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:14:45,311 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,327 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.03160214424133301 +2020-03-06 10:14:45,327 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -3532,15 +3418,15 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a -2020-03-04 12:12:34,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,327 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('7zip', OrderedDict([('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,088 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,088 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,088 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls -2020-03-04 12:12:34,088 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,088 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,088 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +2020-03-06 10:14:45,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.015631437301635742 +2020-03-06 10:14:45,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,343 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:14:45,359 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,359 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,374 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: activeperl_x64: '5.22.4': @@ -3574,15 +3460,15 @@ activeperl_x64: reboot: False -2020-03-04 12:12:34,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,104 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.01609349250793457 -2020-03-04 12:12:34,104 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,104 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,104 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls -2020-03-04 12:12:34,104 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.015148639678955078 -2020-03-04 12:12:34,119 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +2020-03-06 10:14:45,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,389 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:14:45,389 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,389 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,389 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: activeperl_x86: '5.22.4': @@ -3598,15 +3484,15 @@ activeperl_x86: reboot: False -2020-03-04 12:12:34,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,405 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,135 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls -2020-03-04 12:12:34,135 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,135 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +2020-03-06 10:14:45,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,405 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:14:45,421 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,421 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: adobeair: latest: full_name: 'Adobe AIR' @@ -3627,15 +3513,15 @@ adobeair: locale: en_US reboot: False -2020-03-04 12:12:34,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,150 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls -2020-03-04 12:12:34,150 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,166 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +2020-03-06 10:14:45,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,437 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,437 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:14:45,437 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,437 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,452 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: # to understand what is meant by "classic" see # http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html @@ -3829,15 +3715,15 @@ adobereader-dc-classic: reboot: False -2020-03-04 12:12:34,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,166 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,166 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,166 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,182 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls -2020-03-04 12:12:34,182 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,182 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +2020-03-06 10:14:45,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,468 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:14:45,468 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,468 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,483 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: adobereader-xi: '11.0.10': full_name: 'Adobe Reader XI (11.0.10)' @@ -3858,15 +3744,15 @@ adobereader-xi: locale: en_US reboot: False -2020-03-04 12:12:34,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,197 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls -2020-03-04 12:12:34,197 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,197 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +2020-03-06 10:14:45,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,499 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:14:45,499 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,514 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.015642642974853516 +2020-03-06 10:14:45,514 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: adobereader: '10.1.4': full_name: 'Adobe Reader X (10.1.4)' @@ -3887,15 +3773,15 @@ adobereader: locale: en_US reboot: False -2020-03-04 12:12:34,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,514 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,212 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,212 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,212 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls -2020-03-04 12:12:34,212 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,212 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,212 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +2020-03-06 10:14:45,514 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,514 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,530 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:14:45,530 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,530 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,546 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: adobeshockwaveplayer: latest: full_name: 'Adobe Shockwave Player 12.2' @@ -3909,15 +3795,15 @@ adobeshockwaveplayer: # # Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version -2020-03-04 12:12:34,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.015633106231689453 -2020-03-04 12:12:34,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,228 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls -2020-03-04 12:12:34,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: +2020-03-06 10:14:45,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,562 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:14:45,562 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.014647483825683594 +2020-03-06 10:14:45,577 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: @@ -3940,15 +3826,15 @@ adv-ip-scanner: # http://www.advanced-ip-scanner.com # a product of: www.radmin.com -2020-03-04 12:12:34,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,260 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls -2020-03-04 12:12:34,260 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,260 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,260 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: +2020-03-06 10:14:45,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,592 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:14:45,592 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.01561284065246582 +2020-03-06 10:14:45,608 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: @@ -3971,15 +3857,15 @@ adv-port-scanner: # http://www.advanced-port-scanner.com # a product of: www.radmin.com -2020-03-04 12:12:34,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,276 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.016080379486083984 -2020-03-04 12:12:34,276 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,276 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,276 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls -2020-03-04 12:12:34,291 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,291 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +2020-03-06 10:14:45,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,624 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:14:45,624 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.016124486923217773 +2020-03-06 10:14:45,640 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: advancedlogging: '1.0.0625.10': full_name: 'IIS Advanced Logging 1.0' @@ -3993,15 +3879,15 @@ advancedlogging: locale: en_US reboot: False -2020-03-04 12:12:34,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,307 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,307 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls -2020-03-04 12:12:34,307 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,322 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +2020-03-06 10:14:45,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,655 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:14:45,655 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,655 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: # just 32-bit x86 msi package available @@ -4017,15 +3903,15 @@ anydesk-msi: locale: en_US reboot: False -2020-03-04 12:12:34,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,322 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls -2020-03-04 12:12:34,322 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0156252384185791 -2020-03-04 12:12:34,338 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +2020-03-06 10:14:45,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:14:45,687 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,687 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: # just 32-bit x86 installer available @@ -4045,15 +3931,15 @@ anydesk: locale: en_US reboot: False -2020-03-04 12:12:34,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,353 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls -2020-03-04 12:12:34,353 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,353 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +2020-03-06 10:14:45,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,703 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,703 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,703 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:14:45,703 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,717 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.014647483825683594 +2020-03-06 10:14:45,717 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: applicationrequestrouting: '3.0.1952': full_name: 'Microsoft Application Request Routing 3.0' @@ -4067,15 +3953,15 @@ applicationrequestrouting: locale: en_US reboot: False -2020-03-04 12:12:34,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,369 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls -2020-03-04 12:12:34,369 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.015900135040283203 -2020-03-04 12:12:34,385 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +2020-03-06 10:14:45,717 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,733 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:14:45,733 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,733 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: aspnet-mvc1: '1.0.0.0': full_name: 'Microsoft ASP.NET MVC 1.0' @@ -4087,15 +3973,15 @@ aspnet-mvc1: locale: en_US reboot: False -2020-03-04 12:12:34,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,385 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls -2020-03-04 12:12:34,400 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,400 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: +2020-03-06 10:14:45,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.01586318016052246 +2020-03-06 10:14:45,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,749 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:14:45,765 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,765 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,765 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: atom: @@ -4160,15 +4046,15 @@ atom: reboot: False -2020-03-04 12:12:34,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,416 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls -2020-03-04 12:12:34,416 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,416 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: +2020-03-06 10:14:45,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,780 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:14:45,796 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,796 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: @@ -4196,15 +4082,15 @@ audacity: reboot: False -2020-03-04 12:12:34,432 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,432 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,432 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,432 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,432 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls -2020-03-04 12:12:34,432 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,448 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.015771150588989258 -2020-03-04 12:12:34,448 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: +2020-03-06 10:14:45,812 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,812 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:14:45,827 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.015661239624023438 +2020-03-06 10:14:45,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: @@ -4246,15 +4132,15 @@ autohotkey: locale: en_US reboot: False -2020-03-04 12:12:34,448 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,448 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,448 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,448 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,462 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls -2020-03-04 12:12:34,462 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,462 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,462 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: +2020-03-06 10:14:45,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,859 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:14:45,859 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,859 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,874 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: autoit: @@ -4271,15 +4157,15 @@ autoit: reboot: False -2020-03-04 12:12:34,462 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,462 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,478 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,478 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,478 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls -2020-03-04 12:12:34,478 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,478 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,478 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +2020-03-06 10:14:45,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,889 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:14:45,889 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,889 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,889 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: autopsy: '4.3.0': full_name: 'Autopsy' @@ -4293,15 +4179,15 @@ autopsy: locale: en_US reboot: False -2020-03-04 12:12:34,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,889 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,478 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,494 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls -2020-03-04 12:12:34,494 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,494 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,494 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +2020-03-06 10:14:45,905 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.015627384185791016 +2020-03-06 10:14:45,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,905 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:14:45,905 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.016028165817260742 +2020-03-06 10:14:45,921 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available awscli: @@ -4317,15 +4203,15 @@ awscli: locale: en_US reboot: False -2020-03-04 12:12:34,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,510 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,510 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,510 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,510 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls -2020-03-04 12:12:34,525 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,525 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,525 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +2020-03-06 10:14:45,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,937 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,937 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:14:45,937 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,953 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.01594090461730957 +2020-03-06 10:14:45,953 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: # due to winrepo installer limitations you need to manually download the exe from # https://go.microsoft.com/fwlink/?linkid=2049975 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... @@ -4343,15 +4229,15 @@ azuredatastudio: locale: en_US reboot: False -2020-03-04 12:12:34,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,953 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,525 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,525 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,540 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,540 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls -2020-03-04 12:12:34,540 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,540 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,540 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +2020-03-06 10:14:45,953 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:45,953 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,967 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,967 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:14:45,967 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,967 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,967 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: #the provider only offers the download of the latest version @@ -4367,15 +4253,15 @@ bandizip: locale: en_US reboot: False -2020-03-04 12:12:34,540 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:45,967 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,540 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,556 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls -2020-03-04 12:12:34,556 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.015715599060058594 -2020-03-04 12:12:34,572 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +2020-03-06 10:14:45,983 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.015727996826171875 +2020-03-06 10:14:45,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:45,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:45,983 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:14:45,999 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:45,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:45,999 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: # just 32-bit x86 installer available @@ -4391,15 +4277,15 @@ belarc-advisor: locale: en_US reboot: False -2020-03-04 12:12:34,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,014 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,588 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls -2020-03-04 12:12:34,588 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,588 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +2020-03-06 10:14:46,014 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.015711545944213867 +2020-03-06 10:14:46,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,014 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:14:46,030 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,030 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: bginfo4x: '3.3.6': full_name: 'BGINFO4X for Windows 3.3.6' @@ -4411,15 +4297,15 @@ bginfo4x: locale: en_US reboot: False -2020-03-04 12:12:34,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,030 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,604 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls -2020-03-04 12:12:34,604 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,604 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,604 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +2020-03-06 10:14:46,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,030 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,030 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,046 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:14:46,046 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,046 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: # source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe bitnami-nginxstack: '1.8.0-0': @@ -4432,15 +4318,15 @@ bitnami-nginxstack: locale: en_US reboot: False -2020-03-04 12:12:34,604 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,604 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,620 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,620 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,620 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls -2020-03-04 12:12:34,620 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,620 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,634 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +2020-03-06 10:14:46,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,062 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:14:46,062 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.01563549041748047 +2020-03-06 10:14:46,077 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -4460,15 +4346,15 @@ bitvise: -2020-03-04 12:12:34,634 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,077 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,634 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,634 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,634 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,634 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls -2020-03-04 12:12:34,650 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,650 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,650 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +2020-03-06 10:14:46,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,093 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:14:46,093 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,093 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,093 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available blender: @@ -4484,15 +4370,15 @@ blender: locale: en_US reboot: False -2020-03-04 12:12:34,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.015670061111450195 -2020-03-04 12:12:34,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,666 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls -2020-03-04 12:12:34,666 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,681 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.01563858985900879 -2020-03-04 12:12:34,681 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +2020-03-06 10:14:46,093 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,108 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:14:46,108 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,108 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,124 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: bootracer: '6.50.0.450': full_name: 'BootRacer' @@ -4505,15 +4391,15 @@ bootracer: reboot: False # download zip archive manually and unpack msi to slat master winrepo-ng directory -2020-03-04 12:12:34,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,681 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,681 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls -2020-03-04 12:12:34,697 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,697 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: +2020-03-06 10:14:46,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,124 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:14:46,124 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,140 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.016112089157104492 +2020-03-06 10:14:46,140 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: bulkrenameutility: @@ -4531,15 +4417,15 @@ bulkrenameutility: -2020-03-04 12:12:34,697 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,713 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls -2020-03-04 12:12:34,713 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,713 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,713 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +2020-03-06 10:14:46,140 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,156 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,156 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,156 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:14:46,156 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.015636444091796875 +2020-03-06 10:14:46,171 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: # just 32-bit x86 installer available @@ -4577,15 +4463,15 @@ bulk_extractor: reboot: False -2020-03-04 12:12:34,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.015663862228393555 -2020-03-04 12:12:34,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,728 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls -2020-03-04 12:12:34,728 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,744 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: +2020-03-06 10:14:46,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,187 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,187 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:14:46,187 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,187 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,187 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: ccleaner-slim: @@ -4634,15 +4520,15 @@ ccleaner-slim: reboot: False -2020-03-04 12:12:34,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,744 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,744 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls -2020-03-04 12:12:34,759 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,759 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,759 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: +2020-03-06 10:14:46,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,202 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:14:46,218 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,218 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: ccleaner: @@ -4669,15 +4555,15 @@ ccleaner: reboot: False -2020-03-04 12:12:34,759 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,759 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,775 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls -2020-03-04 12:12:34,775 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,791 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +2020-03-06 10:14:46,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,233 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,233 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,233 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:14:46,233 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.016126394271850586 +2020-03-06 10:14:46,249 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -4693,15 +4579,15 @@ cdburnerxp: locale: en_US reboot: False -2020-03-04 12:12:34,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,791 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls -2020-03-04 12:12:34,791 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,807 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.015928030014038086 -2020-03-04 12:12:34,807 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +2020-03-06 10:14:46,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,249 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:14:46,265 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,265 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: # just 32-bit x86 installer available @@ -4717,15 +4603,15 @@ cdroller: locale: en_US reboot: False -2020-03-04 12:12:34,807 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,807 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,807 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls -2020-03-04 12:12:34,822 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,822 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +2020-03-06 10:14:46,281 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,281 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,281 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,281 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:14:46,281 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.015008211135864258 +2020-03-06 10:14:46,296 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: check-mk-agent-msi: '1.5.0.3268': @@ -4939,15 +4825,15 @@ check-mk-agent-msi: reboot: False -2020-03-04 12:12:34,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,838 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls -2020-03-04 12:12:34,838 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,838 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,854 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +2020-03-06 10:14:46,311 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.015616655349731445 +2020-03-06 10:14:46,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,327 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:14:46,343 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,343 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: check-mk-agent: 'Not Found': full_name: 'Check_MK Agent 1.2.8b4' @@ -4961,15 +4847,15 @@ check-mk-agent: locale: en_US reboot: False -2020-03-04 12:12:34,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,854 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,854 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls -2020-03-04 12:12:34,854 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.014930248260498047 -2020-03-04 12:12:34,869 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +2020-03-06 10:14:46,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,358 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,358 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,358 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:14:46,358 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,358 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,358 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: chrome-rdp: latest: full_name: 'Chrome Remote Desktop Host' @@ -4981,15 +4867,15 @@ chrome-rdp: locale: en_US reboot: False -2020-03-04 12:12:34,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,869 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls -2020-03-04 12:12:34,869 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,884 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.01570439338684082 -2020-03-04 12:12:34,884 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +2020-03-06 10:14:46,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.015633344650268555 +2020-03-06 10:14:46,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,374 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:14:46,390 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,390 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: chrome: latest: full_name: 'Google Chrome' @@ -5001,15 +4887,15 @@ chrome: locale: en_US reboot: False -2020-03-04 12:12:34,884 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,884 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,884 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,884 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,884 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls -2020-03-04 12:12:34,900 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,900 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,900 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +2020-03-06 10:14:46,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,405 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:14:46,405 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,421 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: clamav: '0.99.1': @@ -5036,15 +4922,15 @@ clamav: uninstaller: 'msiexec.exe' uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' -2020-03-04 12:12:34,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) -2020-03-04 12:12:34,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.015662193298339844 -2020-03-04 12:12:34,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,916 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls -2020-03-04 12:12:34,916 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,931 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +2020-03-06 10:14:46,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,421 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:14:46,421 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,437 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.015642881393432617 +2020-03-06 10:14:46,437 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: # just 32-bit x86 installer available @@ -5078,15 +4964,15 @@ clamwin: locale: en_US reboot: False -2020-03-04 12:12:34,931 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,931 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,931 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,931 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,931 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls -2020-03-04 12:12:34,931 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.015624761581420898 -2020-03-04 12:12:34,947 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +2020-03-06 10:14:46,437 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,437 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,452 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:14:46,452 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,452 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: classicshell: '4.2.4': full_name: 'Classic Shell' @@ -5100,15 +4986,15 @@ classicshell: locale: en_US reboot: False -2020-03-04 12:12:34,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,963 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls -2020-03-04 12:12:34,963 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,963 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:34,963 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +2020-03-06 10:14:46,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,467 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,467 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,467 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:14:46,467 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.015875577926635742 +2020-03-06 10:14:46,483 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: # just 32-bit x86 installer available @@ -5152,15 +5038,15 @@ clink: reboot: False # https://mridgers.github.io/clink/ -2020-03-04 12:12:34,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,978 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.015818119049072266 -2020-03-04 12:12:34,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,978 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls -2020-03-04 12:12:34,978 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:34,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.015642642974853516 -2020-03-04 12:12:34,994 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +2020-03-06 10:14:46,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,483 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,483 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,483 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:14:46,499 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,499 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: conemu: '11.160.5290': @@ -5174,15 +5060,15 @@ conemu: locale: en_US reboot: False -2020-03-04 12:12:34,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:34,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:34,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:34,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:34,994 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls -2020-03-04 12:12:35,010 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,010 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,010 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +2020-03-06 10:14:46,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,515 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:14:46,515 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,531 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.015939950942993164 +2020-03-06 10:14:46,531 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: cpu-z: '1.86': @@ -5428,15 +5314,15 @@ cpu-z: reboot: False -2020-03-04 12:12:35,010 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,026 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.015692710876464844 -2020-03-04 12:12:35,026 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,026 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,026 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls -2020-03-04 12:12:35,026 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0158843994140625 -2020-03-04 12:12:35,041 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +2020-03-06 10:14:46,531 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,531 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,545 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,545 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:14:46,545 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,545 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,561 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available curl: @@ -5500,15 +5386,15 @@ curl: # Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, # so you might not be calling the right 'curl' -2020-03-04 12:12:35,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,561 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,041 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,056 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls -2020-03-04 12:12:35,056 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,056 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,056 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +2020-03-06 10:14:46,561 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,561 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:14:46,577 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,577 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: cyberduck-cli: '1.0.0.0': full_name: 'Cyberduck CLI' @@ -5520,15 +5406,15 @@ cyberduck-cli: locale: en_US reboot: False -2020-03-04 12:12:35,056 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,056 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,072 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls -2020-03-04 12:12:35,072 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,087 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,087 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +2020-03-06 10:14:46,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,593 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:14:46,593 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,593 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,593 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: # just 32-bit x86 installer available @@ -5537,10 +5423,10 @@ OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name cyberduck-msi: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5549,10 +5435,10 @@ cyberduck-msi: - '6.8.2.28974': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5561,10 +5447,10 @@ cyberduck-msi: - '6.9.0.29768': + '6.8.2.28974': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5573,15 +5459,15 @@ cyberduck-msi: -2020-03-04 12:12:35,087 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,087 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,087 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,087 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,087 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls -2020-03-04 12:12:35,103 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,103 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,103 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +2020-03-06 10:14:46,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:14:46,609 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,609 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:14:46,625 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,625 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,625 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: # just 32-bit x86 installer available @@ -5590,10 +5476,10 @@ OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_ cyberduck: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5602,10 +5488,10 @@ cyberduck: - '6.8.2.28974': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5614,10 +5500,10 @@ cyberduck: - '6.9.0.29768': + '6.8.2.28974': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5626,15 +5512,15 @@ cyberduck: -2020-03-04 12:12:35,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,103 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,119 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls -2020-03-04 12:12:35,119 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,119 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +2020-03-06 10:14:46,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:14:46,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.015212535858154297 +2020-03-06 10:14:46,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,640 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:14:46,640 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.015619993209838867 +2020-03-06 10:14:46,655 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: # just 32-bit x86 installer available @@ -5659,15 +5545,15 @@ defraggler: locale: en_US reboot: False -2020-03-04 12:12:35,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,135 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls -2020-03-04 12:12:35,135 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,151 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.016103744506835938 -2020-03-04 12:12:35,151 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +2020-03-06 10:14:46,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:14:46,671 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,671 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: dotnet: '4.6.01590': full_name: 'Microsoft .NET Framework 4.6.2' @@ -5714,15 +5600,15 @@ dotnet: locale: en_US reboot: False -2020-03-04 12:12:35,151 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,151 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,151 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,165 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,165 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls -2020-03-04 12:12:35,165 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,165 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,181 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +2020-03-06 10:14:46,686 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.015645265579223633 +2020-03-06 10:14:46,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,686 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:14:46,686 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.015935420989990234 +2020-03-06 10:14:46,702 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: # just 32-bit x86 installer available @@ -5743,15 +5629,15 @@ dropbox: locale: en_US reboot: False -2020-03-04 12:12:35,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,702 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,181 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,181 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,181 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,181 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls -2020-03-04 12:12:35,181 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.015994787216186523 -2020-03-04 12:12:35,197 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +2020-03-06 10:14:46,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,718 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:14:46,718 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,718 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,718 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: duplicati: '1.3.4': @@ -5768,15 +5654,15 @@ duplicati: cache_dir: False use_scheduler: False -2020-03-04 12:12:35,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) -2020-03-04 12:12:35,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,213 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls -2020-03-04 12:12:35,213 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,213 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +2020-03-06 10:14:46,718 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,733 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:14:46,733 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,733 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available dvdstyler: @@ -5792,15 +5678,15 @@ dvdstyler: locale: en_US reboot: False -2020-03-04 12:12:35,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,733 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,228 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls -2020-03-04 12:12:35,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +2020-03-06 10:14:46,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,749 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:14:46,749 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,767 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.01728510856628418 +2020-03-06 10:14:46,767 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: echo-desktop: '3.0.4': full_name: @@ -5812,15 +5698,15 @@ echo-desktop: uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" -2020-03-04 12:12:35,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) -2020-03-04 12:12:35,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,260 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls -2020-03-04 12:12:35,260 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,260 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,276 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +2020-03-06 10:14:46,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.013382434844970703 +2020-03-06 10:14:46,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,780 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:14:46,796 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,796 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: eea: # '5.0.2260.1': # full_name: 'ESET Endpoint Antivirus' @@ -5852,15 +5738,15 @@ eea: # download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ # for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB -2020-03-04 12:12:35,276 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) -2020-03-04 12:12:35,276 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,276 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,276 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,276 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls -2020-03-04 12:12:35,276 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.01563286781311035 -2020-03-04 12:12:35,291 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +2020-03-06 10:14:46,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,812 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:14:46,812 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,812 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,812 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: emet: '5.5': full_name: 'EMET 5.5' @@ -5872,15 +5758,15 @@ emet: locale: en_US reboot: False -2020-03-04 12:12:35,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,291 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls -2020-03-04 12:12:35,306 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,306 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,306 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +2020-03-06 10:14:46,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,845 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,845 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:14:46,845 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,845 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,845 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: # just 32-bit x86 installer available @@ -5897,15 +5783,15 @@ emsisoft-anti-malware: locale: en_US reboot: False -2020-03-04 12:12:35,306 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,858 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,306 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,306 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,322 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls -2020-03-04 12:12:35,322 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.016115188598632812 -2020-03-04 12:12:35,338 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: +2020-03-06 10:14:46,858 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,858 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:14:46,858 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.015638113021850586 +2020-03-06 10:14:46,874 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: eraser: @@ -5931,15 +5817,15 @@ eraser: reboot: False -2020-03-04 12:12:35,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,353 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls -2020-03-04 12:12:35,353 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,353 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +2020-03-06 10:14:46,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,889 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:14:46,889 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,889 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,889 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: evernote: '6.9.7.6770': full_name: 'Evernote v. 6.9.7' @@ -5969,15 +5855,15 @@ evernote: locale: en_US reboot: False -2020-03-04 12:12:35,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,889 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,369 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls -2020-03-04 12:12:35,369 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,369 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +2020-03-06 10:14:46,889 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,906 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:14:46,906 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,906 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,906 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: # just 32-bit x86 installer available @@ -5993,15 +5879,15 @@ fiddler: locale: en_US reboot: False -2020-03-04 12:12:35,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.01586437225341797 -2020-03-04 12:12:35,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,385 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls -2020-03-04 12:12:35,385 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,400 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +2020-03-06 10:14:46,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,921 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:14:46,921 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,936 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.015631437301635742 +2020-03-06 10:14:46,936 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: # just 32-bit x86 installer available @@ -6019,15 +5905,15 @@ filehippo-app-manager: reboot: False # download manually and place on master salt://win/repo-ng/filehippo-app-manager -2020-03-04 12:12:35,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,936 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,400 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls -2020-03-04 12:12:35,400 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.015676498413085938 -2020-03-04 12:12:35,416 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: +2020-03-06 10:14:46,936 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:46,936 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,952 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:14:46,952 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:46,968 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: filezilla: @@ -6801,15 +6687,15 @@ filezilla: reboot: False -2020-03-04 12:12:35,432 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:46,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.031308650970458984 -2020-03-04 12:12:35,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,447 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls -2020-03-04 12:12:35,447 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,463 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.01562356948852539 -2020-03-04 12:12:35,463 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +2020-03-06 10:14:46,983 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.014883995056152344 +2020-03-06 10:14:46,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:46,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:46,983 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:14:46,983 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:46,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.015832901000976562 +2020-03-06 10:14:46,999 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: firefox-esr_x64: '68.5.0': @@ -7473,15 +7359,15 @@ firefox-esr_x64: reboot: False -2020-03-04 12:12:35,479 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,479 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.016022682189941406 -2020-03-04 12:12:35,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,494 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls -2020-03-04 12:12:35,510 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,510 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,510 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +2020-03-06 10:14:47,015 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.015725135803222656 +2020-03-06 10:14:47,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,030 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,030 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:14:47,030 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.016069412231445312 +2020-03-06 10:14:47,046 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: firefox-esr_x86: @@ -8258,15 +8144,15 @@ firefox-esr_x86: reboot: False -2020-03-04 12:12:35,541 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,061 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015619277954101562 -2020-03-04 12:12:35,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,541 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls -2020-03-04 12:12:35,557 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,557 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,572 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +2020-03-06 10:14:47,061 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.01484537124633789 +2020-03-06 10:14:47,061 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,061 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,077 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:14:47,077 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,093 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: firefox_x64: '73.0': @@ -9250,15 +9136,15 @@ firefox_x64: reboot: False -2020-03-04 12:12:35,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,109 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.016015052795410156 -2020-03-04 12:12:35,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,603 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,603 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls -2020-03-04 12:12:35,603 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,635 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.03173327445983887 -2020-03-04 12:12:35,635 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +2020-03-06 10:14:47,109 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.015638113021850586 +2020-03-06 10:14:47,109 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,124 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:14:47,124 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,140 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.0159299373626709 +2020-03-06 10:14:47,155 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: firefox_x86: @@ -10605,15 +10491,15 @@ firefox_x86: reboot: False -2020-03-04 12:12:35,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.0312647819519043 -2020-03-04 12:12:35,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,666 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls -2020-03-04 12:12:35,682 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,682 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,682 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +2020-03-06 10:14:47,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.01594090461730957 +2020-03-06 10:14:47,187 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,187 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,187 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:14:47,202 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,202 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: # just 32-bit x86 installer available @@ -10630,15 +10516,15 @@ gedit: locale: en_US reboot: False -2020-03-04 12:12:35,682 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,698 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.015888452529907227 -2020-03-04 12:12:35,698 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,698 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,698 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls -2020-03-04 12:12:35,698 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,712 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.014829397201538086 -2020-03-04 12:12:35,712 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +2020-03-06 10:14:47,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,218 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:14:47,234 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,234 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,234 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: # just 32-bit x86 installer available # Gimp installs into %ProgramFiles on either cpu arch gimp: @@ -10684,15 +10570,15 @@ gimp: restart: False -2020-03-04 12:12:35,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) -2020-03-04 12:12:35,712 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,712 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,728 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls -2020-03-04 12:12:35,728 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,728 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +2020-03-06 10:14:47,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,249 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:14:47,249 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,265 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: git-extensions: '2.48.05': full_name: 'Git Extensions 2.48.05' @@ -10713,15 +10599,15 @@ git-extensions: locale: en_US reboot: False -2020-03-04 12:12:35,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,744 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls -2020-03-04 12:12:35,744 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,760 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.015639543533325195 -2020-03-04 12:12:35,760 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +2020-03-06 10:14:47,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,265 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,280 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:14:47,280 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.015952587127685547 +2020-03-06 10:14:47,296 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available for git @@ -11560,15 +11446,15 @@ msysgit: locale: en_US reboot: False -2020-03-04 12:12:35,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015801668167114258 -2020-03-04 12:12:35,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,791 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls -2020-03-04 12:12:35,791 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,791 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +2020-03-06 10:14:47,311 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015614986419677734 +2020-03-06 10:14:47,311 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,311 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,311 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:14:47,327 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,327 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,327 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: # just 32-bit x86 installer available @@ -11593,15 +11479,15 @@ glarysoft-absolute-uninstaller: locale: en_US reboot: False -2020-03-04 12:12:35,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,327 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,807 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls -2020-03-04 12:12:35,807 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.015645980834960938 -2020-03-04 12:12:35,822 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +2020-03-06 10:14:47,327 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,343 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:14:47,343 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,358 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: # just 32-bit x86 installer available @@ -11618,15 +11504,15 @@ gnucash: reboot: False -2020-03-04 12:12:35,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,838 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls -2020-03-04 12:12:35,838 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,853 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.01536417007446289 -2020-03-04 12:12:35,853 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +2020-03-06 10:14:47,358 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,358 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,358 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,358 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:14:47,374 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.01564621925354004 +2020-03-06 10:14:47,390 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: # "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. # See https://golang.org/ @@ -12849,15 +12735,15 @@ golang: reboot: False -2020-03-04 12:12:35,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,405 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.015754222869873047 -2020-03-04 12:12:35,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,885 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls -2020-03-04 12:12:35,885 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,885 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +2020-03-06 10:14:47,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.01544952392578125 +2020-03-06 10:14:47,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,421 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:14:47,421 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,421 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: goodsync: '9.9.46.6': full_name: 'GoodSync' @@ -12869,15 +12755,15 @@ goodsync: locale: en_US reboot: False -2020-03-04 12:12:35,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,901 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,901 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,901 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls -2020-03-04 12:12:35,901 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.01562666893005371 -2020-03-04 12:12:35,916 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +2020-03-06 10:14:47,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,436 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,436 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:14:47,436 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,436 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: # just 32-bit x86 installer available @@ -12895,15 +12781,15 @@ gow: # Gow - GNU on Windows - The lightweight alternative to Cygwin # https://github.com/bmatzelle/gow/wiki -2020-03-04 12:12:35,916 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,932 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls -2020-03-04 12:12:35,932 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,932 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,932 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +2020-03-06 10:14:47,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,452 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:14:47,452 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,468 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: # just 32-bit x86 installer available @@ -12977,15 +12863,15 @@ gpg4win-light: # https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 # -2020-03-04 12:12:35,932 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.01561594009399414 -2020-03-04 12:12:35,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,947 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls -2020-03-04 12:12:35,963 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,963 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,963 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +2020-03-06 10:14:47,468 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,468 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:14:47,468 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.015629053115844727 +2020-03-06 10:14:47,483 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: # just 32-bit x86 installer available @@ -13053,15 +12939,15 @@ gpg4win-vanilla: reboot: False -2020-03-04 12:12:35,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,963 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:35,979 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:35,979 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:35,979 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls -2020-03-04 12:12:35,994 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:35,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:35,994 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: +2020-03-06 10:14:47,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,483 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,499 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:14:47,499 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,515 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: graylog-collector-sidecar: @@ -13137,15 +13023,15 @@ graylog-collector-sidecar: reboot: False -2020-03-04 12:12:35,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:35,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,009 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,009 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,009 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls -2020-03-04 12:12:36,009 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,025 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,025 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +2020-03-06 10:14:47,515 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,530 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:14:47,530 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.015683889389038086 +2020-03-06 10:14:47,546 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: grepwin: '1.6.682': @@ -13192,15 +13078,15 @@ grepwin: locale: en_US reboot: False -2020-03-04 12:12:36,025 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,025 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,041 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls -2020-03-04 12:12:36,041 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,041 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +2020-03-06 10:14:47,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,571 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,571 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:14:47,577 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,577 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: # just 32-bit x86 installer available @@ -13216,15 +13102,15 @@ gvim: locale: en_US reboot: False -2020-03-04 12:12:36,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,057 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls -2020-03-04 12:12:36,057 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,057 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,072 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +2020-03-06 10:14:47,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,592 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:14:47,592 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,592 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,608 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available # Source: https://handbrake.fr @@ -13241,15 +13127,15 @@ handbrake: locale: en_US reboot: False -2020-03-04 12:12:36,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,072 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls -2020-03-04 12:12:36,072 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,087 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.015674114227294922 -2020-03-04 12:12:36,087 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +2020-03-06 10:14:47,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,608 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:14:47,608 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.01566290855407715 +2020-03-06 10:14:47,624 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: hipchat: @@ -13263,15 +13149,15 @@ hipchat: msiexec: False reboot: False -2020-03-04 12:12:36,087 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,639 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:12:36,087 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,087 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,087 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,104 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls -2020-03-04 12:12:36,104 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,104 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,104 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +2020-03-06 10:14:47,639 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,655 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:14:47,655 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.015714645385742188 +2020-03-06 10:14:47,671 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: hostsfileeditor: '1.2.0': @@ -13285,15 +13171,15 @@ hostsfileeditor: locale: en_US reboot: False -2020-03-04 12:12:36,104 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,104 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,119 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls -2020-03-04 12:12:36,119 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,135 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: +2020-03-06 10:14:47,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:14:47,687 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,687 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: hwinfo: '5.70': @@ -13308,15 +13194,15 @@ hwinfo: locale: en_US reboot: False -2020-03-04 12:12:36,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,135 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls -2020-03-04 12:12:36,150 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,150 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +2020-03-06 10:14:47,703 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.016037464141845703 +2020-03-06 10:14:47,703 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,703 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,703 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:14:47,703 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,717 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.01472616195678711 +2020-03-06 10:14:47,717 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: # -*- coding: utf-8 -*- # vim: ft=sls ice: @@ -13330,15 +13216,15 @@ ice: locale: en_US reboot: False -2020-03-04 12:12:36,150 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,166 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,166 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,166 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls -2020-03-04 12:12:36,166 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,166 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,182 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +2020-03-06 10:14:47,717 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,717 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:14:47,717 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,734 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0161592960357666 +2020-03-06 10:14:47,734 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: # just 32-bit x86 installer available @@ -13354,15 +13240,15 @@ icecast: locale: en_US reboot: False -2020-03-04 12:12:36,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,182 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,182 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,182 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls -2020-03-04 12:12:36,198 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,198 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,198 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +2020-03-06 10:14:47,734 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,734 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:14:47,749 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,749 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: icloud: '7.3.0.20': full_name: iCloud @@ -13374,15 +13260,15 @@ icloud: locale: en_US reboot: False -2020-03-04 12:12:36,198 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,198 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,198 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,198 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,213 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls -2020-03-04 12:12:36,213 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,213 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +2020-03-06 10:14:47,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,765 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:14:47,765 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.015642166137695312 +2020-03-06 10:14:47,780 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: iismediaservices: '4.1.0938.454': full_name: 'IIS Media Services 4.1' @@ -13418,15 +13304,15 @@ iismediaservices: locale: en_US reboot: False -2020-03-04 12:12:36,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.015654563903808594 -2020-03-04 12:12:36,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,228 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls -2020-03-04 12:12:36,228 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +2020-03-06 10:14:47,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,796 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:14:47,796 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,796 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: influx-capacitor: '1.0.89': full_name: 'Influx Capacitor' @@ -13438,15 +13324,15 @@ influx-capacitor: locale: en_US reboot: False -2020-03-04 12:12:36,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,244 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls -2020-03-04 12:12:36,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,260 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.015624761581420898 -2020-03-04 12:12:36,260 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +2020-03-06 10:14:47,812 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.015820980072021484 +2020-03-06 10:14:47,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,812 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:14:47,812 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.015314340591430664 +2020-03-06 10:14:47,827 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: inkscape: '0.91': full_name: 'Inkscape 0.91' @@ -13460,15 +13346,15 @@ inkscape: locale: en_US reboot: False -2020-03-04 12:12:36,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,260 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,275 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls -2020-03-04 12:12:36,275 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,275 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,275 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +2020-03-06 10:14:47,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,843 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:14:47,843 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: # just 32-bit x86 installer available @@ -13486,15 +13372,15 @@ intellij-community: reboot: False -2020-03-04 12:12:36,275 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,858 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,275 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,291 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls -2020-03-04 12:12:36,291 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,306 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.014760017395019531 -2020-03-04 12:12:36,306 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +2020-03-06 10:14:47,858 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,858 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:14:47,858 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.016033172607421875 +2020-03-06 10:14:47,874 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: # just 32-bit x86 installer available @@ -13512,15 +13398,15 @@ intellij-ultimate: reboot: False -2020-03-04 12:12:36,306 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,306 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,306 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,306 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,306 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls -2020-03-04 12:12:36,322 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,322 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +2020-03-06 10:14:47,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,890 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:14:47,890 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,890 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,890 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: internet-evidence-finder: '6.2.3.0001': full_name: 'Internet Evidence Finder' @@ -13532,15 +13418,15 @@ internet-evidence-finder: locale: en_US reboot: False -2020-03-04 12:12:36,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,338 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls -2020-03-04 12:12:36,338 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,353 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +2020-03-06 10:14:47,890 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,906 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:14:47,906 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,906 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,906 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: irfanview-plugins: '4.42': @@ -13555,15 +13441,15 @@ irfanview-plugins: locale: en_US reboot: False -2020-03-04 12:12:36,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,353 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,353 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,353 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls -2020-03-04 12:12:36,353 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.015676498413085938 -2020-03-04 12:12:36,369 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +2020-03-06 10:14:47,906 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,921 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:14:47,921 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,921 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available irfanview: @@ -13590,15 +13476,15 @@ irfanview: # assocallusers: if used, set associations for all users (Windows XP only) # ini: if used, set custom INI file folder (system environment variables are allowed) -2020-03-04 12:12:36,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,385 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls -2020-03-04 12:12:36,385 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,385 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +2020-03-06 10:14:47,936 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.015724897384643555 +2020-03-06 10:14:47,936 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,936 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,936 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:14:47,936 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,936 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:47,952 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: isapirewrite-lite: '3.1.0112': full_name: 'Helicon ISAPI_Rewrite 3 Lite' @@ -13612,15 +13498,15 @@ isapirewrite-lite: locale: en_US reboot: False -2020-03-04 12:12:36,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,401 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,401 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls -2020-03-04 12:12:36,401 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,401 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,401 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +2020-03-06 10:14:47,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:47,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:47,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:47,952 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:14:47,968 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:47,984 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.015611410140991211 +2020-03-06 10:14:47,984 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available itunes: '12.8.0.150': @@ -13649,15 +13535,15 @@ itunes: locale: en_US reboot: False -2020-03-04 12:12:36,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:47,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.015634536743164062 -2020-03-04 12:12:36,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,432 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls -2020-03-04 12:12:36,432 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,432 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,432 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +2020-03-06 10:14:47,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.015639066696166992 +2020-03-06 10:14:48,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,015 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:14:48,031 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,031 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,031 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way @@ -13680,15 +13566,15 @@ jdk8: locale: en_US reboot: False -2020-03-04 12:12:36,432 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,432 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,432 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,448 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,448 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls -2020-03-04 12:12:36,448 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,448 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,448 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +2020-03-06 10:14:48,031 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,031 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,046 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:14:48,046 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,062 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available jre: @@ -13707,15 +13593,15 @@ jre: # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way -2020-03-04 12:12:36,448 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,463 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.015107154846191406 -2020-03-04 12:12:36,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,463 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls -2020-03-04 12:12:36,479 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,479 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,479 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +2020-03-06 10:14:48,062 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,062 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:14:48,078 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,078 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.015945911407470703 +2020-03-06 10:14:48,078 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://www.java.com/en/download/manual.jsp # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... @@ -13795,15 +13681,15 @@ jre8: -2020-03-04 12:12:36,479 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,494 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.015753746032714844 -2020-03-04 12:12:36,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,494 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls -2020-03-04 12:12:36,494 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,509 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.015207767486572266 -2020-03-04 12:12:36,509 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +2020-03-06 10:14:48,078 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,092 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,092 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,092 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:14:48,092 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,092 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,108 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: jungledisk-server-management: '3.23.0.2': full_name: 'Jungle Disk Server Management' @@ -13817,15 +13703,15 @@ jungledisk-server-management: locale: en_US reboot: False -2020-03-04 12:12:36,509 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,108 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,509 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,509 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,525 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,525 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls -2020-03-04 12:12:36,525 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,525 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,525 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +2020-03-06 10:14:48,108 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,108 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:14:48,134 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,139 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.004885196685791016 +2020-03-06 10:14:48,139 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: jungledisk-server: '3.23.0.2': full_name: 'Jungle Disk Server' @@ -13839,15 +13725,15 @@ jungledisk-server: locale: en_US reboot: False -2020-03-04 12:12:36,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,139 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.01599597930908203 -2020-03-04 12:12:36,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,541 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls -2020-03-04 12:12:36,541 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,557 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +2020-03-06 10:14:48,139 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,139 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:14:48,139 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,155 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.01574540138244629 +2020-03-06 10:14:48,155 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: jungledisk-workgroup: '3.23.0.2': full_name: 'Jungle Disk Workgroup' @@ -13861,15 +13747,15 @@ jungledisk-workgroup: locale: en_US reboot: False -2020-03-04 12:12:36,557 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,155 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,557 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,557 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,557 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,557 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls -2020-03-04 12:12:36,572 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,572 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +2020-03-06 10:14:48,155 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,155 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:14:48,171 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,171 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: kdiff3: 'Not Found': full_name: 'KDiff3 (remove only)' @@ -13883,15 +13769,15 @@ kdiff3: locale: en_US reboot: False -2020-03-04 12:12:36,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,587 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,587 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,587 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls -2020-03-04 12:12:36,603 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,603 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +2020-03-06 10:14:48,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,187 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:14:48,187 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,187 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,187 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: # Keepass 2.x installation from https://keepass.info/ # to keep the versioning in the format of "2..minor", two seperate version arrays are created. @@ -14155,15 +14041,15 @@ keepass-2x: locale: en_US reboot: False -2020-03-04 12:12:36,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,619 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.015711545944213867 -2020-03-04 12:12:36,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,619 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls -2020-03-04 12:12:36,634 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,634 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,634 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +2020-03-06 10:14:48,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,202 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:14:48,218 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,218 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: keepass: '1.35.0': full_name: 'KeePass 1.35' @@ -14229,15 +14115,15 @@ keepass: locale: en_US reboot: False -2020-03-04 12:12:36,634 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,634 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,650 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls -2020-03-04 12:12:36,650 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,650 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,666 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +2020-03-06 10:14:48,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,234 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,234 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:14:48,234 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,234 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,249 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: # just 32-bit x86 installer available @@ -14255,15 +14141,15 @@ lastpass: locale: en_US reboot: False -2020-03-04 12:12:36,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,681 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls -2020-03-04 12:12:36,681 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.015675783157348633 -2020-03-04 12:12:36,697 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +2020-03-06 10:14:48,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,249 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:14:48,249 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.01568126678466797 +2020-03-06 10:14:48,265 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: # NOTE: If the lazarus installation directory exists the installation will # pop up a dialog box. This will cause the minion to hang because it # is waiting for the user to click continue on a dialog box that will @@ -14297,15 +14183,15 @@ lazarus: uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES -2020-03-04 12:12:36,697 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) -2020-03-04 12:12:36,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,697 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls -2020-03-04 12:12:36,713 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,713 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,713 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +2020-03-06 10:14:48,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,265 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,280 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:14:48,280 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.015655517578125 +2020-03-06 10:14:48,296 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: libreoffice: '5.3.5.2': @@ -14381,15 +14267,15 @@ libreoffice: reboot: False -2020-03-04 12:12:36,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,713 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,729 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,729 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,729 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls -2020-03-04 12:12:36,729 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,729 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,744 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +2020-03-06 10:14:48,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,311 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,311 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:14:48,311 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,311 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,311 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: logparser: '2.2.10': full_name: 'Log Parser 2.2' @@ -14401,15 +14287,15 @@ logparser: locale: en_US reboot: False -2020-03-04 12:12:36,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,744 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,744 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls -2020-03-04 12:12:36,759 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.015895605087280273 -2020-03-04 12:12:36,775 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +2020-03-06 10:14:48,311 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,327 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:14:48,327 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,327 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,327 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: # just 32-bit x86 installer available @@ -14436,15 +14322,15 @@ maas360bootanalyzer: reboot: False # download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory -2020-03-04 12:12:36,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,791 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls -2020-03-04 12:12:36,791 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,791 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +2020-03-06 10:14:48,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,343 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:14:48,358 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.015619039535522461 +2020-03-06 10:14:48,374 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: # just 32-bit x86 installer available @@ -14461,15 +14347,15 @@ malwarebytes: locale: en_US reboot: Falsea -2020-03-04 12:12:36,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) -2020-03-04 12:12:36,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,806 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,806 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,806 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls -2020-03-04 12:12:36,822 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,838 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.01595616340637207 -2020-03-04 12:12:36,838 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +2020-03-06 10:14:48,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,391 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,391 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,391 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:14:48,405 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.04690885543823242 +2020-03-06 10:14:48,468 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: #MariaDB https://downloads.mariadb.org/mariadb/+releases/ #only stable versions are listed @@ -14815,919 +14701,919 @@ mariadb: - '10.0.38.0': + '10.3.13.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.37.0': + '10.3.12.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.36.0': + '10.3.11.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.35.0': + '10.3.10.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.34.0': + '10.3.9.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.33.0': + '10.3.8.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.32.0': + '10.3.7.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.31.0': + + + '10.2.22.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.30.0': + '10.2.21.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.29.0': + '10.2.20.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.28.0': + '10.2.19.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.27.0': + '10.2.18.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.26.0': + '10.2.17.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.25.0': + '10.2.16.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.24.0': + '10.2.15.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.23.0': + '10.2.14.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.22.0': + '10.2.13.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.21.0': + '10.2.12.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.20.0': + '10.2.11.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.19.0': + '10.2.10.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.18.0': + '10.2.9.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.17.0': + '10.2.8.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.16.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + '10.2.7.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.15.0': + '10.2.6.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.14.0': + + + '5.5.63.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.13.0': + '5.5.62.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.12.0': + '5.5.61.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.11.0': + '5.5.60.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.10.0': + '5.5.59.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.2.22.0': + '5.5.58.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.21.0': + '5.5.57.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.20.0': + '5.5.56.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.19.0': + '5.5.55.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.18.0': + '5.5.54.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.17.0': + '5.5.53.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.16.0': + '5.5.52.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.15.0': + '5.5.51.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.14.0': + '5.5.50.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.13.0': + '5.5.49.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.12.0': + '5.5.48.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.11.0': + '5.5.47.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.10.0': + '5.5.46.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.9.0': + '5.5.45.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.8.0': + '5.5.44.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.7.0': + '5.5.43.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.6.0': + '5.5.42.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.3.13.0': + '5.5.41.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.12.0': + '5.5.40.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.11.0': + '5.5.39.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.10.0': + '5.5.38.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.9.0': + '5.5.37.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.8.0': + '5.5.36.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.7.0': + '5.5.35.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '5.5.63.0': + '5.5.34.0': full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.62.0': + + + '10.0.38.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.61.0': + '10.0.37.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.60.0': + '10.0.36.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.59.0': + '10.0.35.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.58.0': + '10.0.34.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.57.0': + '10.0.33.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.56.0': + '10.0.32.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.55.0': + '10.0.31.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.54.0': + '10.0.30.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.53.0': + '10.0.29.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.52.0': + '10.0.28.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.51.0': + '10.0.27.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.50.0': + '10.0.26.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.49.0': + '10.0.25.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.48.0': + '10.0.24.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.47.0': + '10.0.23.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.46.0': + '10.0.22.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.45.0': + '10.0.21.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.44.0': + '10.0.20.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.43.0': + '10.0.19.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.42.0': + '10.0.18.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.41.0': + '10.0.17.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.40.0': + '10.0.16.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.39.0': + '10.0.15.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.38.0': + '10.0.14.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.37.0': + '10.0.13.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.36.0': + '10.0.12.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.35.0': + '10.0.11.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.34.0': + '10.0.10.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15736,15 +15622,15 @@ mariadb: -2020-03-04 12:12:36,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('mariadb', OrderedDict([('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:12:36,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.01580524444580078 -2020-03-04 12:12:36,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,885 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls -2020-03-04 12:12:36,885 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,885 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +2020-03-06 10:14:48,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:14:48,484 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.01563549041748047 +2020-03-06 10:14:48,484 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,484 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,484 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:14:48,499 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,499 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: mercurial: '3.1.1': @@ -15758,15 +15644,15 @@ mercurial: locale: en_US reboot: False -2020-03-04 12:12:36,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,900 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls -2020-03-04 12:12:36,900 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,900 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,900 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +2020-03-06 10:14:48,515 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.015918493270874023 +2020-03-06 10:14:48,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,515 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:14:48,530 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,530 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,530 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: messageanalyzer: '4.0.7551.0': full_name: 'Microsoft Message Analyzer' @@ -15781,15 +15667,15 @@ messageanalyzer: locale: en_US reboot: False -2020-03-04 12:12:36,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.01583385467529297 -2020-03-04 12:12:36,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,916 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls -2020-03-04 12:12:36,916 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,932 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +2020-03-06 10:14:48,530 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,546 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:14:48,546 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,546 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: microsoft-build-tools: '14.0.23107': @@ -15803,15 +15689,15 @@ microsoft-build-tools: locale: en_US reboot: False -2020-03-04 12:12:36,932 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,932 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,932 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls -2020-03-04 12:12:36,947 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,947 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +2020-03-06 10:14:48,562 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,562 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:14:48,578 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,578 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,578 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: mikogo: '5.3.0': full_name: 'Mikogo' @@ -15823,15 +15709,15 @@ mikogo: locale: en_US reboot: False -2020-03-04 12:12:36,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,963 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls -2020-03-04 12:12:36,963 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,963 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,963 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +2020-03-06 10:14:48,578 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,592 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:14:48,592 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,592 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,592 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: miktex-basic: '2.9': full_name: 'MiKTeX 2.9' @@ -15848,15 +15734,15 @@ miktex-basic: locale: en_US reboot: False -2020-03-04 12:12:36,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,592 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,963 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,978 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls -2020-03-04 12:12:36,978 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:36,978 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:36,978 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +2020-03-06 10:14:48,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.015906572341918945 +2020-03-06 10:14:48,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,608 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:14:48,624 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.015659093856811523 +2020-03-06 10:14:48,624 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: mongodb: '3.3.5': full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' @@ -15877,15 +15763,15 @@ mongodb: locale: en_US reboot: False -2020-03-04 12:12:36,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:36,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:36,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:36,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:36,994 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls -2020-03-04 12:12:36,994 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,010 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.015761375427246094 -2020-03-04 12:12:37,010 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +2020-03-06 10:14:48,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,640 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:14:48,640 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,640 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ms-mbsa: '2.3.2211': @@ -15900,15 +15786,15 @@ ms-mbsa: locale: en_US reboot: False -2020-03-04 12:12:37,010 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,010 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,010 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,010 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,010 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls -2020-03-04 12:12:37,026 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,026 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,026 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +2020-03-06 10:14:48,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,655 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:14:48,655 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,655 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: ms-vcpp-2005-atl-redist_x64: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15920,15 +15806,15 @@ ms-vcpp-2005-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,026 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,026 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,026 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,042 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,042 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls -2020-03-04 12:12:37,042 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,042 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,042 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +2020-03-06 10:14:48,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:14:48,671 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,686 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: ms-vcpp-2005-atl-redist_x86: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15940,15 +15826,15 @@ ms-vcpp-2005-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,042 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,042 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,056 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls -2020-03-04 12:12:37,056 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,056 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,056 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +2020-03-06 10:14:48,686 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,702 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:14:48,702 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,702 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: ms-vcpp-2005-redist_x64: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15960,15 +15846,15 @@ ms-vcpp-2005-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,056 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,702 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,056 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,072 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls -2020-03-04 12:12:37,072 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,072 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +2020-03-06 10:14:48,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,718 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:14:48,718 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,718 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,718 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: ms-vcpp-2005-redist_x86: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15980,15 +15866,15 @@ ms-vcpp-2005-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,088 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.015718698501586914 -2020-03-04 12:12:37,088 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,088 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,088 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls -2020-03-04 12:12:37,088 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,088 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,088 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +2020-03-06 10:14:48,718 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,733 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:14:48,733 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,749 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: ms-vcpp-2005-sp1-mfc-redist_x64: '8.0.61000': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16000,15 +15886,15 @@ ms-vcpp-2005-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,103 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,103 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls -2020-03-04 12:12:37,119 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,119 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +2020-03-06 10:14:48,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,749 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:14:48,765 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,765 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,765 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: ms-vcpp-2005-sp1-mfc-redist_x86: '8.0.61001': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16020,15 +15906,15 @@ ms-vcpp-2005-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,135 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls -2020-03-04 12:12:37,135 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,135 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +2020-03-06 10:14:48,765 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,780 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:14:48,780 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,796 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: ms-vcpp-2005-sp1-redist_x64: '8.0.59192': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16040,15 +15926,15 @@ ms-vcpp-2005-sp1-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,151 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,151 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls -2020-03-04 12:12:37,151 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,151 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,151 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +2020-03-06 10:14:48,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,796 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:14:48,812 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,812 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,812 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: ms-vcpp-2005-sp1-redist_x86: '8.0.59193': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16060,15 +15946,15 @@ ms-vcpp-2005-sp1-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,151 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,151 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,167 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,167 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,167 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls -2020-03-04 12:12:37,167 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,181 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.014841794967651367 -2020-03-04 12:12:37,181 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +2020-03-06 10:14:48,812 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,812 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:14:48,827 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,827 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: ms-vcpp-2008-redist_x64: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' @@ -16080,15 +15966,15 @@ ms-vcpp-2008-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,181 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,181 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,181 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,181 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls -2020-03-04 12:12:37,197 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,197 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +2020-03-06 10:14:48,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,843 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:14:48,843 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: ms-vcpp-2008-redist_x86: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' @@ -16100,15 +15986,15 @@ ms-vcpp-2008-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.01563405990600586 -2020-03-04 12:12:37,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,213 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls -2020-03-04 12:12:37,213 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,228 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +2020-03-06 10:14:48,859 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.015828847885131836 +2020-03-06 10:14:48,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,859 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:14:48,859 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,859 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,874 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: ms-vcpp-2008-sp1-atl-redist_x64: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' @@ -16120,15 +16006,15 @@ ms-vcpp-2008-sp1-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,228 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,228 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,228 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls -2020-03-04 12:12:37,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +2020-03-06 10:14:48,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,874 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:14:48,874 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,890 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.015640735626220703 +2020-03-06 10:14:48,890 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: ms-vcpp-2008-sp1-atl-redist_x86: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' @@ -16140,15 +16026,15 @@ ms-vcpp-2008-sp1-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,260 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls -2020-03-04 12:12:37,260 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,260 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,260 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +2020-03-06 10:14:48,890 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,890 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:14:48,906 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,906 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,906 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: ms-vcpp-2008-sp1-mfc-redist_x64: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' @@ -16160,15 +16046,15 @@ ms-vcpp-2008-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,275 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,275 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,275 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,275 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,275 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls -2020-03-04 12:12:37,275 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.015780925750732422 -2020-03-04 12:12:37,291 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +2020-03-06 10:14:48,906 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,921 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:14:48,921 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,921 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: ms-vcpp-2008-sp1-mfc-redist_x86: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' @@ -16180,15 +16066,15 @@ ms-vcpp-2008-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,291 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls -2020-03-04 12:12:37,307 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,307 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +2020-03-06 10:14:48,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,937 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,937 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:14:48,937 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,937 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: ms-vcpp-2010-sp1-mfc-redist_x64: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' @@ -16200,15 +16086,15 @@ ms-vcpp-2010-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,307 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,307 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,322 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls -2020-03-04 12:12:37,322 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,322 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +2020-03-06 10:14:48,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,952 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:14:48,952 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,952 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: ms-vcpp-2010-sp1-mfc-redist_x86: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' @@ -16220,15 +16106,15 @@ ms-vcpp-2010-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,338 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls -2020-03-04 12:12:37,338 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,338 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +2020-03-06 10:14:48,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,968 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,968 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,968 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:14:48,968 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,968 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:48,968 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: ms-vcpp-2012-redist_x64: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' @@ -16240,15 +16126,15 @@ ms-vcpp-2012-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,354 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,354 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,354 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls -2020-03-04 12:12:37,354 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,354 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,354 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +2020-03-06 10:14:48,983 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.015646934509277344 +2020-03-06 10:14:48,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,983 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:14:48,983 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:48,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.015692472457885742 +2020-03-06 10:14:48,999 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: ms-vcpp-2012-redist_x86: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' @@ -16260,15 +16146,15 @@ ms-vcpp-2012-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,370 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:48,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,370 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.015832185745239258 -2020-03-04 12:12:37,370 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,370 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,370 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls -2020-03-04 12:12:37,370 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,384 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.014705657958984375 -2020-03-04 12:12:37,384 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +2020-03-06 10:14:48,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:48,999 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:48,999 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:48,999 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:14:49,015 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,015 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,015 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: ms-vcpp-2013-redist_x64: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' @@ -16280,15 +16166,15 @@ ms-vcpp-2013-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,384 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,384 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,384 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,384 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls -2020-03-04 12:12:37,400 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,400 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +2020-03-06 10:14:49,015 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,031 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:14:49,031 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,031 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,031 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: ms-vcpp-2013-redist_x86: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' @@ -16300,15 +16186,15 @@ ms-vcpp-2013-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,416 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls -2020-03-04 12:12:37,416 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,416 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +2020-03-06 10:14:49,031 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,046 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:14:49,046 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,046 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: ms-vcpp-2015-build-tools: '14.0.25420.1': full_name: 'Microsoft Visual C++ Build Tools' @@ -16319,15 +16205,15 @@ ms-vcpp-2015-build-tools: locale: en_US reboot: False -2020-03-04 12:12:37,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,431 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,431 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,431 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,431 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls -2020-03-04 12:12:37,431 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.015947580337524414 -2020-03-04 12:12:37,447 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +2020-03-06 10:14:49,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,061 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,061 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,061 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:14:49,077 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,077 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: ms-vcpp-2015-redist_x64: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' @@ -16352,15 +16238,15 @@ ms-vcpp-2015-redist_x64: # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} -2020-03-04 12:12:37,447 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,077 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,447 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls -2020-03-04 12:12:37,463 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,463 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,463 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +2020-03-06 10:14:49,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,093 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,093 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:14:49,093 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,093 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,108 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: ms-vcpp-2015-redist_x86: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' @@ -16385,15 +16271,15 @@ ms-vcpp-2015-redist_x86: # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} -2020-03-04 12:12:37,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,108 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,479 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.015722990036010742 -2020-03-04 12:12:37,479 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,479 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,479 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls -2020-03-04 12:12:37,479 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,479 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,494 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +2020-03-06 10:14:49,108 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,108 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:14:49,108 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.01564311981201172 +2020-03-06 10:14:49,124 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: ms-vcpp-2017-redist_x64: '14.20.27508.1': full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' @@ -16414,15 +16300,15 @@ ms-vcpp-2017-redist_x64: locale: en_US reboot: False -2020-03-04 12:12:37,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,494 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,494 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls -2020-03-04 12:12:37,510 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,510 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,510 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +2020-03-06 10:14:49,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,124 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:14:49,140 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,140 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,140 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: ms-vcpp-2017-redist_x86: '14.11.25325.0': full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' @@ -16434,15 +16320,15 @@ ms-vcpp-2017-redist_x86: locale: en_US reboot: False -2020-03-04 12:12:37,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,510 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,525 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,525 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,525 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls -2020-03-04 12:12:37,541 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,541 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: +2020-03-06 10:14:49,140 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,140 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,155 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:14:49,155 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,155 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,171 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: @@ -16459,15 +16345,15 @@ mucommander: reboot: False -2020-03-04 12:12:37,541 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,556 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls -2020-03-04 12:12:37,556 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,556 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,556 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +2020-03-06 10:14:49,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,171 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:14:49,171 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,187 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.015854597091674805 +2020-03-06 10:14:49,187 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: mysql-essential: '5.1.73': full_name: 'MySQL Server 5.1' @@ -16481,15 +16367,15 @@ mysql-essential: locale: en_US reboot: False -2020-03-04 12:12:37,556 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.015645742416381836 -2020-03-04 12:12:37,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,572 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls -2020-03-04 12:12:37,572 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.015623807907104492 -2020-03-04 12:12:37,588 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +2020-03-06 10:14:49,187 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,187 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,202 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:14:49,202 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,202 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: mysql-installer-community: '1.4.3.0': full_name: 'MySQL Installer - Community' @@ -16505,15 +16391,15 @@ mysql-installer-community: # https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html # https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html -2020-03-04 12:12:37,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,603 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,603 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls -2020-03-04 12:12:37,603 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,603 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +2020-03-06 10:14:49,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,218 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:14:49,218 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,234 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: mysql-workbench-community: '8.0.15': @@ -16550,15 +16436,15 @@ mysql-workbench-community: # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html -2020-03-04 12:12:37,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,619 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls -2020-03-04 12:12:37,619 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,619 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,619 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +2020-03-06 10:14:49,234 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,234 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,249 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:14:49,249 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,264 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: never10: '1.3': full_name: 'Never 10 (GRC)' @@ -16571,15 +16457,15 @@ never10: reboot: False # download it from https://www.grc.com/never10.htm -2020-03-04 12:12:37,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,264 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,619 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,634 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,634 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,634 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls -2020-03-04 12:12:37,650 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,650 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,650 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +2020-03-06 10:14:49,264 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,280 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:14:49,280 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,280 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,296 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: # Please note that per # https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows # the MSI uninstall does not remove files or settings, @@ -16740,15 +16626,15 @@ newrelic-infra: reboot: False -2020-03-04 12:12:37,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,650 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,666 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls -2020-03-04 12:12:37,666 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,682 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.016011714935302734 -2020-03-04 12:12:37,682 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +2020-03-06 10:14:49,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,312 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,312 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:14:49,312 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,312 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,312 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: nextcloud-client: '2.2.3.4': @@ -16842,15 +16728,15 @@ nextcloud-client: reboot: False -2020-03-04 12:12:37,682 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,682 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,697 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls -2020-03-04 12:12:37,697 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,697 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: +2020-03-06 10:14:49,327 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.015629291534423828 +2020-03-06 10:14:49,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,327 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:14:49,327 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.016104698181152344 +2020-03-06 10:14:49,343 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: # just 32-bit x86 installer available @@ -16880,15 +16766,15 @@ nmap: reboot: False -2020-03-04 12:12:37,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,712 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,712 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,712 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,712 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls -2020-03-04 12:12:37,712 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.01584768295288086 -2020-03-04 12:12:37,728 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +2020-03-06 10:14:49,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,358 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,358 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:14:49,358 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.01564478874206543 +2020-03-06 10:14:49,374 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: node.js-lts: '12.13.1': @@ -16976,15 +16862,15 @@ node.js-lts: reboot: False -2020-03-04 12:12:37,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,744 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls -2020-03-04 12:12:37,744 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,744 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,744 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +2020-03-06 10:14:49,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,374 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:14:49,390 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,390 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: node.js: '13.1.0': @@ -17108,15 +16994,15 @@ node.js: reboot: False -2020-03-04 12:12:37,760 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,760 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,760 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,760 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,760 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls -2020-03-04 12:12:37,775 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,775 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +2020-03-06 10:14:49,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,405 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:14:49,405 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,405 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: nomacs: '3.8.0': @@ -17130,15 +17016,15 @@ nomacs: reboot: False -2020-03-04 12:12:37,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,791 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls -2020-03-04 12:12:37,791 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,806 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.015623092651367188 -2020-03-04 12:12:37,806 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +2020-03-06 10:14:49,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,421 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:14:49,421 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,437 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.01609659194946289 +2020-03-06 10:14:49,437 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: # just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. @@ -17335,15 +17221,15 @@ npp: # the 64-bit installer is available from: # https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe -2020-03-04 12:12:37,853 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,853 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.04675459861755371 -2020-03-04 12:12:37,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,869 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls -2020-03-04 12:12:37,869 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.016118288040161133 -2020-03-04 12:12:37,885 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +2020-03-06 10:14:49,437 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,452 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:14:49,467 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,467 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,467 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: nsclient: @@ -17500,15 +17386,15 @@ nsclient: reboot: False -2020-03-04 12:12:37,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,900 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls -2020-03-04 12:12:37,900 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,900 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,900 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +2020-03-06 10:14:49,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.016027212142944336 +2020-03-06 10:14:49,483 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,483 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,483 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:14:49,483 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,500 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.01610732078552246 +2020-03-06 10:14:49,500 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: # Define versions @@ -17541,9 +17427,9 @@ nsis: - '3.03': + '2.51': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17553,9 +17439,9 @@ nsis: locale: en_US reboot: False - '3.02.1': + '2.50': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17565,9 +17451,9 @@ nsis: locale: en_US reboot: False - '3.02': + '2.49': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17577,9 +17463,9 @@ nsis: locale: en_US reboot: False - '3.01': + '2.48': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17589,9 +17475,9 @@ nsis: locale: en_US reboot: False - '3.0': + '2.47': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17601,11 +17487,9 @@ nsis: locale: en_US reboot: False - - - '2.51': + '2.46': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17615,9 +17499,11 @@ nsis: locale: en_US reboot: False - '2.50': + + + '3.03': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17627,9 +17513,9 @@ nsis: locale: en_US reboot: False - '2.49': + '3.02.1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17639,9 +17525,9 @@ nsis: locale: en_US reboot: False - '2.48': + '3.02': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17651,9 +17537,9 @@ nsis: locale: en_US reboot: False - '2.47': + '3.01': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17663,9 +17549,9 @@ nsis: locale: en_US reboot: False - '2.46': + '3.0': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17677,15 +17563,15 @@ nsis: -2020-03-04 12:12:37,916 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,916 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls -2020-03-04 12:12:37,931 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,931 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,931 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +2020-03-06 10:14:49,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:14:49,500 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,514 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,514 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,514 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:14:49,514 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,514 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,530 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: # Install Meinberg NTP daemon for Windows # Note: To do a silent installation, this installer needs a setup file named # setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. @@ -17727,15 +17613,15 @@ ntp: reboot: False -2020-03-04 12:12:37,931 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,931 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,947 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls -2020-03-04 12:12:37,947 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,962 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.015636920928955078 -2020-03-04 12:12:37,962 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: +2020-03-06 10:14:49,530 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,530 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:14:49,546 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,562 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: @@ -17784,15 +17670,15 @@ nunit-console: -2020-03-04 12:12:37,962 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:12:37,962 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,978 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls -2020-03-04 12:12:37,978 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:37,978 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:37,978 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +2020-03-06 10:14:49,562 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,562 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:14:49,562 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.015634536743164062 +2020-03-06 10:14:49,577 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: nxlog: '2.10.2150': full_name: 'NXLog-CE' @@ -17804,15 +17690,15 @@ nxlog: locale: en_US reboot: False -2020-03-04 12:12:37,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:37,978 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:37,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:37,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:37,994 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls -2020-03-04 12:12:37,994 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,009 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.01562786102294922 -2020-03-04 12:12:38,009 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +2020-03-06 10:14:49,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,577 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:14:49,593 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,593 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,593 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -17850,15 +17736,15 @@ octopus-tentacle: reboot: False -2020-03-04 12:12:38,025 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,025 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,041 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls -2020-03-04 12:12:38,041 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,041 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +2020-03-06 10:14:49,593 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,609 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:14:49,609 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,609 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,625 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: # Source: http://openlp.org/ # just 32-bit x86 installer available @@ -17888,15 +17774,15 @@ openlp: reboot: False -2020-03-04 12:12:38,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,057 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls -2020-03-04 12:12:38,057 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,057 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,057 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +2020-03-06 10:14:49,625 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,625 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,625 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,625 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:14:49,639 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,639 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,639 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: openoffice: '4.1.2': full_name: 'OpenOffice 4.1.2' @@ -17929,15 +17815,15 @@ openoffice: # 'fi', 'fr', 'da', 'de', 'bg', 'ast' # -2020-03-04 12:12:38,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,639 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,072 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls -2020-03-04 12:12:38,072 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,088 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.015768051147460938 -2020-03-04 12:12:38,088 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +2020-03-06 10:14:49,639 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,639 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:14:49,655 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,671 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18109,15 +17995,15 @@ openvpn: # /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's # /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's -2020-03-04 12:12:38,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,104 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.015681743621826172 -2020-03-04 12:12:38,104 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,104 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,104 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls -2020-03-04 12:12:38,119 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,119 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +2020-03-06 10:14:49,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:14:49,686 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,686 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,686 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: # Performant endpoint visibility https://osquery.io/ @@ -18170,15 +18056,15 @@ osquery: reboot: False -2020-03-04 12:12:38,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:12:38,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,135 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,135 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls -2020-03-04 12:12:38,135 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.015161991119384766 -2020-03-04 12:12:38,150 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +2020-03-06 10:14:49,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.01569056510925293 +2020-03-06 10:14:49,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,702 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:14:49,702 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,718 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.015845298767089844 +2020-03-06 10:14:49,718 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: # just 32-bit x86 installer available @@ -18192,9 +18078,9 @@ OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osqu ossec-agent: - '3.0.0': - full_name: 'OSSEC HIDS 3.0.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18204,9 +18090,9 @@ ossec-agent: - '3.2.0': - full_name: 'OSSEC HIDS 3.2.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18216,9 +18102,9 @@ ossec-agent: - '3.1.0': - full_name: 'OSSEC HIDS 3.1.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18228,9 +18114,9 @@ ossec-agent: - '2.9.3': - full_name: 'OSSEC HIDS 2.9.3' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18240,9 +18126,9 @@ ossec-agent: - '2.9.0': - full_name: 'OSSEC HIDS 2.9.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18252,9 +18138,9 @@ ossec-agent: - '3.0.1': - full_name: 'OSSEC HIDS 3.0.1' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18264,9 +18150,9 @@ ossec-agent: - '2.9.4': - full_name: 'OSSEC HIDS 2.9.4' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18276,9 +18162,9 @@ ossec-agent: - '2.9.2': - full_name: 'OSSEC HIDS 2.9.2' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18288,15 +18174,15 @@ ossec-agent: -2020-03-04 12:12:38,150 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('ossec-agent', OrderedDict([('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,166 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,166 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls -2020-03-04 12:12:38,166 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,166 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,166 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +2020-03-06 10:14:49,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:14:49,718 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,734 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:14:49,734 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,750 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.01593017578125 +2020-03-06 10:14:49,750 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: owncloud: @@ -18353,15 +18239,15 @@ owncloud: reboot: False -2020-03-04 12:12:38,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,750 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.015773773193359375 -2020-03-04 12:12:38,182 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,182 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,182 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls -2020-03-04 12:12:38,182 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.01563882827758789 -2020-03-04 12:12:38,197 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +2020-03-06 10:14:49,750 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,750 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,764 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:14:49,780 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.016020536422729492 +2020-03-06 10:14:49,780 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: pandoc: '1.17.0.2': full_name: 'Pandoc 1.17.0.2' @@ -18373,15 +18259,15 @@ pandoc: locale: en_US reboot: False -2020-03-04 12:12:38,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,197 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls -2020-03-04 12:12:38,213 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,213 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +2020-03-06 10:14:49,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,796 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:14:49,796 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,812 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: parallels-client-15: '15.0.3869': @@ -18397,15 +18283,15 @@ parallels-client-15: # The latest RAS clients can be downloaded for FREE from: # https://www.parallels.com/uk/products/ras/download/links/ -2020-03-04 12:12:38,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,229 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls -2020-03-04 12:12:38,229 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,229 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,229 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +2020-03-06 10:14:49,812 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,812 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:14:49,812 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.015685319900512695 +2020-03-06 10:14:49,827 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18436,15 +18322,15 @@ pass4win: locale: en_US reboot: False -2020-03-04 12:12:38,229 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0156705379486084 -2020-03-04 12:12:38,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,244 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls -2020-03-04 12:12:38,259 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,259 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,259 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +2020-03-06 10:14:49,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,843 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:14:49,843 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: passware-kit-agent: '13.1.7657': full_name: 'Passware Kit Agent (64-bit)' @@ -18456,15 +18342,15 @@ passware-kit-agent: locale: en_US reboot: False -2020-03-04 12:12:38,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,259 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,259 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,275 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,275 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls -2020-03-04 12:12:38,275 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,275 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,291 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +2020-03-06 10:14:49,858 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.015060901641845703 +2020-03-06 10:14:49,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,882 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:14:49,882 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,882 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,882 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: passware-kit-forensic: '13.1.7657': full_name: 'Passware Kit Forensic (64-bit)' @@ -18476,15 +18362,15 @@ passware-kit-forensic: locale: en_US reboot: False -2020-03-04 12:12:38,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,307 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,307 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls -2020-03-04 12:12:38,307 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,322 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +2020-03-06 10:14:49,890 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,890 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:14:49,890 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,905 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,905 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: # Source: https://patchmypc.net/ patchmypc-free: '3.0.1.1': @@ -18503,15 +18389,15 @@ patchmypc-free: locale: en_US reboot: False -2020-03-04 12:12:38,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,322 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls -2020-03-04 12:12:38,337 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,337 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,353 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +2020-03-06 10:14:49,905 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,905 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:14:49,921 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,921 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: pdf24creator: '8.8.2': @@ -18607,15 +18493,15 @@ pdf24creator: # Source: https://en.pdf24.org/ # Packagin info Source: https://chocolatey.org/packages/pdf24 -2020-03-04 12:12:38,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,353 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,353 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,369 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls -2020-03-04 12:12:38,369 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,384 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +2020-03-06 10:14:49,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,937 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,937 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,937 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:14:49,937 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.015614509582519531 +2020-03-06 10:14:49,952 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: # just 32-bit x86 installer available @@ -18631,15 +18517,15 @@ pdfcreator: locale: en_US reboot: False -2020-03-04 12:12:38,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,384 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,384 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,384 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,384 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls -2020-03-04 12:12:38,400 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,400 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +2020-03-06 10:14:49,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,968 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,968 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,968 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:14:49,968 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,968 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,968 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: peazip: '6.0.0': @@ -18653,15 +18539,15 @@ peazip: locale: en_US reboot: False -2020-03-04 12:12:38,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,983 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,416 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls -2020-03-04 12:12:38,416 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,431 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.015759944915771484 -2020-03-04 12:12:38,431 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: +2020-03-06 10:14:49,983 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:49,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:49,983 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:49,983 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:14:49,999 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:49,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:49,999 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: @@ -18705,15 +18591,15 @@ pgadmin4: reboot: False -2020-03-04 12:12:38,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:49,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,431 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,447 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls -2020-03-04 12:12:38,447 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,463 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.015935182571411133 -2020-03-04 12:12:38,463 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +2020-03-06 10:14:49,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,015 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,015 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:14:50,015 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,031 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.01563286781311035 +2020-03-06 10:14:50,031 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: pgina: '3.1.8.0': full_name: 'pGina v3.1.8.0' @@ -18723,15 +18609,15 @@ pgina: locale: en_US reboot: False -2020-03-04 12:12:38,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,463 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,479 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,479 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls -2020-03-04 12:12:38,479 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,494 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.01570749282836914 -2020-03-04 12:12:38,494 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: +2020-03-06 10:14:50,031 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,031 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,031 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,031 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:14:50,046 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,046 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: # just 32-bit x86 installer available @@ -18750,15 +18636,15 @@ pidgin: reboot: False -2020-03-04 12:12:38,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,494 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,510 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,510 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls -2020-03-04 12:12:38,510 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,510 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,526 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +2020-03-06 10:14:50,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,062 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:14:50,062 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,062 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,062 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: # Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: # salt mid pkg.install postgresql version='"9.6"' @@ -18803,15 +18689,15 @@ postgresql: reboot: False -2020-03-04 12:12:38,526 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,077 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:12:38,526 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,526 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,541 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls -2020-03-04 12:12:38,541 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,557 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +2020-03-06 10:14:50,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,077 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:14:50,077 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,093 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.015152215957641602 +2020-03-06 10:14:50,093 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: ### NOTE: You must accept the PowerBI Desktop EULA by setting the ### Pillar key `powerbi:desktop:accept_eula` to `True` in order to ### install this package. You can find a copy of the EULA at @@ -18833,15 +18719,15 @@ powerbi-desktop: msiexec: True reboot: False -2020-03-04 12:12:38,557 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:12:38,557 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,557 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,557 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,572 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls -2020-03-04 12:12:38,572 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.015670061111450195 -2020-03-04 12:12:38,588 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +2020-03-06 10:14:50,093 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,093 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,108 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:14:50,108 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.015610933303833008 +2020-03-06 10:14:50,124 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: #PowerShell Core https://github.com/PowerShell/PowerShell @@ -18904,15 +18790,15 @@ powershell-core: reboot: False -2020-03-04 12:12:38,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:12:38,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,604 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,604 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,604 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls -2020-03-04 12:12:38,619 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,619 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,619 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +2020-03-06 10:14:50,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,140 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,140 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:14:50,140 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,140 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,140 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: # Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems # WMI Exporter: https://github.com/martinlindhe/wmi_exporter # Prometheus Monitoring: https://prometheus.io/ @@ -19112,15 +18998,15 @@ prometheus-wmi-exporter: reboot: False -2020-03-04 12:12:38,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,156 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,635 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.015781641006469727 -2020-03-04 12:12:38,635 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,635 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,650 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls -2020-03-04 12:12:38,650 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.015651464462280273 -2020-03-04 12:12:38,666 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +2020-03-06 10:14:50,156 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,156 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,156 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,171 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:14:50,171 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,171 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: putty: '0.73.0.0': @@ -19246,15 +19132,15 @@ putty: reboot: False -2020-03-04 12:12:38,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,682 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,682 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls -2020-03-04 12:12:38,682 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.015151262283325195 -2020-03-04 12:12:38,697 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +2020-03-06 10:14:50,187 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,187 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,187 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,187 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:14:50,202 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,202 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: python2_x64: @@ -19466,15 +19352,15 @@ python2_x64: reboot: False -2020-03-04 12:12:38,697 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,713 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls -2020-03-04 12:12:38,713 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015629291534423828 -2020-03-04 12:12:38,728 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +2020-03-06 10:14:50,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,218 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:14:50,218 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,233 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015717267990112305 +2020-03-06 10:14:50,233 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: python2_x86: @@ -19686,15 +19572,15 @@ python2_x86: reboot: False -2020-03-04 12:12:38,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,233 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,744 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls -2020-03-04 12:12:38,744 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,760 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.015625 -2020-03-04 12:12:38,760 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: +2020-03-06 10:14:50,233 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,233 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,249 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:14:50,249 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.01600813865661621 +2020-03-06 10:14:50,265 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: python3_x64: @@ -19831,15 +19717,15 @@ python3_x64: reboot: False -2020-03-04 12:12:38,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.015642881393432617 -2020-03-04 12:12:38,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,775 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls -2020-03-04 12:12:38,791 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,807 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.015934228897094727 -2020-03-04 12:12:38,807 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: +2020-03-06 10:14:50,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,265 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,281 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,281 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:14:50,281 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,281 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,296 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: python3_x86: @@ -19966,15 +19852,15 @@ python3_x86: reboot: False -2020-03-04 12:12:38,807 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.015095233917236328 -2020-03-04 12:12:38,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,822 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls -2020-03-04 12:12:38,822 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,839 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.01658773422241211 -2020-03-04 12:12:38,839 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +2020-03-06 10:14:50,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,311 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:14:50,311 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,311 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,311 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -19991,15 +19877,15 @@ qemu: locale: en_US reboot: False -2020-03-04 12:12:38,839 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,839 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,839 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,854 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls -2020-03-04 12:12:38,854 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.015613794326782227 -2020-03-04 12:12:38,869 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: +2020-03-06 10:14:50,311 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,327 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,327 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:14:50,327 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,327 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,327 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: @@ -20015,15 +19901,15 @@ queueexplorerpro: locale: en_US reboot: False -2020-03-04 12:12:38,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,885 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls -2020-03-04 12:12:38,900 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,900 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,900 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +2020-03-06 10:14:50,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,343 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:14:50,343 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,359 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.01604628562927246 +2020-03-06 10:14:50,359 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: quicktime: '7.79.80.95': full_name: 'QuickTime 7' @@ -20048,15 +19934,15 @@ quicktime: # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} -2020-03-04 12:12:38,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,900 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,916 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls -2020-03-04 12:12:38,916 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,931 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.01563549041748047 -2020-03-04 12:12:38,931 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: +2020-03-06 10:14:50,359 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,359 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:14:50,374 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,374 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: rabbitmq: @@ -20081,15 +19967,15 @@ rabbitmq: reboot: False -2020-03-04 12:12:38,931 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,931 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,931 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,947 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls -2020-03-04 12:12:38,947 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,947 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +2020-03-06 10:14:50,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,390 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:14:50,390 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,390 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: rakudo-star_x86: '1.0.0': full_name: 'Rakudo Star 2016.01' @@ -20101,15 +19987,15 @@ rakudo-star_x86: locale: en_US reboot: False -2020-03-04 12:12:38,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,962 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.015630483627319336 -2020-03-04 12:12:38,962 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,962 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,962 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls -2020-03-04 12:12:38,962 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,962 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:38,978 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +2020-03-06 10:14:50,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,405 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:14:50,405 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,405 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: rakudo-star_x64: '1.0.0': full_name: 'Rakudo Star 2016.04' @@ -20121,15 +20007,15 @@ rakudo-star_x64: locale: en_US reboot: False -2020-03-04 12:12:38,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,405 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,978 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:38,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:38,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:38,978 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls -2020-03-04 12:12:38,978 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:38,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.01612091064453125 -2020-03-04 12:12:38,994 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +2020-03-06 10:14:50,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,421 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:14:50,421 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.015743255615234375 +2020-03-06 10:14:50,436 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: rasclient: '16': @@ -20146,15 +20032,15 @@ rasclient: reboot: False -2020-03-04 12:12:38,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:38,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,010 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,010 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,010 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls -2020-03-04 12:12:39,010 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,010 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,026 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +2020-03-06 10:14:50,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,436 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,452 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:14:50,452 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,452 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: rdcman: '2.7.14060': full_name: 'Remote Desktop Connection Manager' @@ -20166,15 +20052,15 @@ rdcman: locale: en_US reboot: False -2020-03-04 12:12:39,026 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,026 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,026 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,026 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,026 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls -2020-03-04 12:12:39,041 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,041 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: +2020-03-06 10:14:50,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,468 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:14:50,468 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,468 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,468 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: rocketchat: @@ -20270,15 +20156,15 @@ rocketchat: reboot: False -2020-03-04 12:12:39,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,057 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls -2020-03-04 12:12:39,057 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.014905452728271484 -2020-03-04 12:12:39,072 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +2020-03-06 10:14:50,484 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,484 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,484 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,484 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:14:50,499 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,499 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: rubyinstaller_x64: '2.2.3-p173': @@ -20312,15 +20198,15 @@ rubyinstaller_x64: reboot: False -2020-03-04 12:12:39,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,088 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls -2020-03-04 12:12:39,088 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,088 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,103 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +2020-03-06 10:14:50,515 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.015644311904907227 +2020-03-06 10:14:50,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,515 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:14:50,515 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,531 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.015785694122314453 +2020-03-06 10:14:50,531 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: rubyinstaller_x86: '2.2.3-p173': @@ -20364,15 +20250,15 @@ rubyinstaller_x86: reboot: False -2020-03-04 12:12:39,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,103 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,103 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls -2020-03-04 12:12:39,119 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,119 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +2020-03-06 10:14:50,531 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,531 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,531 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,531 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:14:50,546 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,546 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -20892,15 +20778,15 @@ salt-minion: -2020-03-04 12:12:39,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,561 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:12:39,134 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,150 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls -2020-03-04 12:12:39,150 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,166 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +2020-03-06 10:14:50,561 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.014728069305419922 +2020-03-06 10:14:50,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,577 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:14:50,577 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,577 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -21234,15 +21120,15 @@ salt-minion-py3: -2020-03-04 12:12:39,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:12:39,186 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.019385576248168945 -2020-03-04 12:12:39,186 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,186 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,197 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls -2020-03-04 12:12:39,197 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,197 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +2020-03-06 10:14:50,593 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.015966415405273438 +2020-03-06 10:14:50,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,593 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:14:50,609 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,609 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,609 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: sandboxie: '4.20': @@ -21256,15 +21142,15 @@ sandboxie: locale: en_US reboot: False -2020-03-04 12:12:39,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,213 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls -2020-03-04 12:12:39,213 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,213 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +2020-03-06 10:14:50,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.014677762985229492 +2020-03-06 10:14:50,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,624 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:14:50,624 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,639 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: scaleout: latest: @@ -21278,15 +21164,15 @@ scaleout: locale: en_US reboot: False -2020-03-04 12:12:39,229 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,639 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,229 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,229 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,229 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,229 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls -2020-03-04 12:12:39,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.014862537384033203 -2020-03-04 12:12:39,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +2020-03-06 10:14:50,639 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,639 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:14:50,639 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.015639543533325195 +2020-03-06 10:14:50,655 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: # just 32-bit x86 installer available @@ -21302,15 +21188,15 @@ secunia.psi: locale: en_US reboot: False -2020-03-04 12:12:39,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,260 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls -2020-03-04 12:12:39,260 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,276 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.015621662139892578 -2020-03-04 12:12:39,276 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: +2020-03-06 10:14:50,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:14:50,671 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,687 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: @@ -21380,15 +21266,15 @@ sensu: reboot: False -2020-03-04 12:12:39,276 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,276 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,276 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,291 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls -2020-03-04 12:12:39,291 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,291 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +2020-03-06 10:14:50,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,687 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,687 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,702 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:14:50,702 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,702 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: sharpdevelop: '5.1.5134': full_name: 'SharpDevelop 5.1 RC' @@ -21427,15 +21313,15 @@ sharpdevelop: locale: en_US reboot: False -2020-03-04 12:12:39,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,702 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.015613317489624023 -2020-03-04 12:12:39,307 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,307 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,307 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls -2020-03-04 12:12:39,322 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,322 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +2020-03-06 10:14:50,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,718 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:14:50,718 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.01448678970336914 +2020-03-06 10:14:50,733 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: # just 32-bit x86 installer available @@ -21451,15 +21337,15 @@ skitch: locale: en_US reboot: False -2020-03-04 12:12:39,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,733 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,337 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,337 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,337 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls -2020-03-04 12:12:39,337 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,337 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,337 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +2020-03-06 10:14:50,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,749 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:14:50,749 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,749 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: skype-msi: '7.41.101': full_name: 'Skypeâ„¢ 7.41' @@ -21495,15 +21381,15 @@ skype-msi: # http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 # you can also check microsite http://skype.techygeekshome.info/ -2020-03-04 12:12:39,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.015641212463378906 -2020-03-04 12:12:39,353 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,353 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,353 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls -2020-03-04 12:12:39,353 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.015744686126708984 -2020-03-04 12:12:39,369 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +2020-03-06 10:14:50,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,764 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:14:50,764 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,764 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,764 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: # just 32-bit x86 installer available @@ -21521,15 +21407,15 @@ skype: reboot: False -2020-03-04 12:12:39,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,385 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls -2020-03-04 12:12:39,385 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,385 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +2020-03-06 10:14:50,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,780 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:14:50,780 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.015622615814208984 +2020-03-06 10:14:50,796 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: #MSI machine-wide deployment package #The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. #It is multi-client-capable, meaning that it can be used by multiple users on one machine, @@ -21575,15 +21461,15 @@ slack-machine-msi: reboot: False -2020-03-04 12:12:39,401 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,401 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.015957355499267578 -2020-03-04 12:12:39,401 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,401 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,401 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls -2020-03-04 12:12:39,401 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,415 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.014853477478027344 -2020-03-04 12:12:39,415 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +2020-03-06 10:14:50,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,811 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:14:50,811 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,811 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,811 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: #MSI for per-user deployment package #The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. #The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. @@ -21602,15 +21488,15 @@ slack-user-msi: locale: en_US reboot: False -2020-03-04 12:12:39,415 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,415 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,415 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,431 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,431 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls -2020-03-04 12:12:39,431 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,431 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,431 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +2020-03-06 10:14:50,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,827 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:14:50,827 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: slack: 3.4.0: full_name: Slack @@ -21621,15 +21507,15 @@ slack: msiexec: True reboot: False -2020-03-04 12:12:39,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:12:39,431 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,447 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls -2020-03-04 12:12:39,447 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,463 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +2020-03-06 10:14:50,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,843 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:14:50,843 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,858 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.015735864639282227 +2020-03-06 10:14:50,858 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: # just 32-bit x86 installer available @@ -21645,15 +21531,15 @@ smartmontools: locale: en_US reboot: False -2020-03-04 12:12:39,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,858 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,463 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,463 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls -2020-03-04 12:12:39,479 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,479 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,479 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +2020-03-06 10:14:50,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.015619993209838867 +2020-03-06 10:14:50,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,890 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:14:50,890 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,906 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.015665292739868164 +2020-03-06 10:14:50,906 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: # just 32-bit x86 installer available @@ -21669,15 +21555,15 @@ snmptools: locale: en_US reboot: False -2020-03-04 12:12:39,479 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,494 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.014894247055053711 -2020-03-04 12:12:39,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,494 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls -2020-03-04 12:12:39,494 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,509 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.015619993209838867 -2020-03-04 12:12:39,509 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: +2020-03-06 10:14:50,906 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,906 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:14:50,920 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,920 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:50,920 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: soapui: @@ -21694,15 +21580,15 @@ soapui: reboot: False -2020-03-04 12:12:39,509 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,920 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,509 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,509 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,509 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,525 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls -2020-03-04 12:12:39,525 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,525 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,525 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +2020-03-06 10:14:50,920 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,936 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,936 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,936 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:14:50,936 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:50,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.01576709747314453 +2020-03-06 10:14:50,952 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: # just 32-bit x86 installer available @@ -21719,15 +21605,15 @@ software-informer: locale: en_US reboot: False -2020-03-04 12:12:39,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:50,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,525 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,541 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls -2020-03-04 12:12:39,541 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,556 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +2020-03-06 10:14:50,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:50,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:50,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:50,952 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:14:50,967 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,014 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.04685521125793457 +2020-03-06 10:14:51,014 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: sourcetree: '2.3.1.0': @@ -21943,15 +21829,15 @@ sourcetree: reboot: False -2020-03-04 12:12:39,556 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,030 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,556 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,572 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls -2020-03-04 12:12:39,572 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,572 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +2020-03-06 10:14:51,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,030 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,030 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,030 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:14:51,046 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,046 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: # just 32-bit x86 installer available @@ -21967,15 +21853,15 @@ spybot-anti-beacon: locale: en_US reboot: False -2020-03-04 12:12:39,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,588 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls -2020-03-04 12:12:39,603 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,603 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +2020-03-06 10:14:51,062 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,062 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:14:51,062 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.015616893768310547 +2020-03-06 10:14:51,077 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: # just 32-bit x86 installer available @@ -21995,15 +21881,15 @@ spybot: # http://www.spybotupdates.biz/files/spybot-2.4.exe # http://spybot-mirror.com/files/spybot-2.4.exe -2020-03-04 12:12:39,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,077 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,619 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls -2020-03-04 12:12:39,619 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,634 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.01565241813659668 -2020-03-04 12:12:39,634 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +2020-03-06 10:14:51,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,077 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:14:51,093 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,093 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,093 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -22032,15 +21918,15 @@ sscserv-free: reboot: False -2020-03-04 12:12:39,634 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,109 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,634 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,634 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,634 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,651 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls -2020-03-04 12:12:39,651 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,651 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,651 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +2020-03-06 10:14:51,109 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,109 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,109 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,109 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:14:51,109 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.015880823135375977 +2020-03-06 10:14:51,124 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: steam: latest: full_name: 'Steam' @@ -22051,15 +21937,15 @@ steam: uninstall_flags: '/S' reboot: False -2020-03-04 12:12:39,651 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.015002250671386719 -2020-03-04 12:12:39,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,666 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls -2020-03-04 12:12:39,681 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,681 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,681 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +2020-03-06 10:14:51,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,139 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:14:51,139 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,139 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,139 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available stellarium: @@ -22075,15 +21961,15 @@ stellarium: locale: en_US reboot: False -2020-03-04 12:12:39,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,139 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,681 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,698 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,698 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,698 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls -2020-03-04 12:12:39,698 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,698 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,712 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +2020-03-06 10:14:51,139 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,155 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,155 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:14:51,171 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,171 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: strawberryperl_x64: '5.26.1001': @@ -22107,15 +21993,15 @@ strawberryperl_x64: reboot: False -2020-03-04 12:12:39,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,712 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,712 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,712 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,712 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls -2020-03-04 12:12:39,728 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,728 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +2020-03-06 10:14:51,171 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,171 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,187 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,187 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:14:51,187 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.014647960662841797 +2020-03-06 10:14:51,202 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: strawberryperl_x86: '5.26.1001': @@ -22139,15 +22025,15 @@ strawberryperl_x86: reboot: False -2020-03-04 12:12:39,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,744 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls -2020-03-04 12:12:39,744 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,759 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.015639781951904297 -2020-03-04 12:12:39,759 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +2020-03-06 10:14:51,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,217 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:14:51,217 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,217 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,217 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: # just 32-bit x86 installer available @@ -22163,15 +22049,15 @@ stunnel: locale: en_US reboot: False -2020-03-04 12:12:39,759 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,217 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,759 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,759 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,759 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,759 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls -2020-03-04 12:12:39,775 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,775 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +2020-03-06 10:14:51,217 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,233 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,233 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,233 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:14:51,233 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.01577019691467285 +2020-03-06 10:14:51,249 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: subinacl: '5.2.3790.1164': full_name: 'Windows Resource Kit Tools - SubInAcl.exe' @@ -22183,15 +22069,15 @@ subinacl: locale: en_US reboot: False -2020-03-04 12:12:39,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,791 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls -2020-03-04 12:12:39,791 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,791 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: +2020-03-06 10:14:51,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,249 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:14:51,264 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,264 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,264 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: @@ -22206,15 +22092,15 @@ sumatrapdf: locale: en_US reboot: False -2020-03-04 12:12:39,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,264 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,806 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,806 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,806 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,806 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls -2020-03-04 12:12:39,806 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.016015291213989258 -2020-03-04 12:12:39,822 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +2020-03-06 10:14:51,264 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,264 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,280 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:14:51,280 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,280 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,280 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: svn: '1.8.13': full_name: 'Subversion' @@ -22235,15 +22121,15 @@ svn: locale: en_US reboot: False -2020-03-04 12:12:39,822 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,822 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls -2020-03-04 12:12:39,838 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,838 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,838 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +2020-03-06 10:14:51,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,296 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:14:51,312 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,312 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,312 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: # just 32-bit x86 installer available @@ -22263,15 +22149,15 @@ teamviewer: locale: en_US reboot: False -2020-03-04 12:12:39,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,853 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.014995574951171875 -2020-03-04 12:12:39,853 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,853 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,853 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls -2020-03-04 12:12:39,853 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.01621699333190918 -2020-03-04 12:12:39,869 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +2020-03-06 10:14:51,312 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,328 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,328 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,328 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:14:51,328 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,328 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,342 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: # just 32-bit x86 installer available @@ -22291,15 +22177,15 @@ teamviewer_host: locale: en_US reboot: False -2020-03-04 12:12:39,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,342 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,869 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls -2020-03-04 12:12:39,885 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,885 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +2020-03-06 10:14:51,342 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,342 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,342 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,342 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:14:51,358 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,358 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,358 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: # just 32-bit x86 installer available @@ -22318,15 +22204,15 @@ teracopy: locale: en_US reboot: False -2020-03-04 12:12:39,885 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,885 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,901 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,901 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,901 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls -2020-03-04 12:12:39,901 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,901 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,901 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +2020-03-06 10:14:51,358 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,374 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:14:51,374 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,396 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.02185654640197754 +2020-03-06 10:14:51,396 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: # just 32-bit x86 installer available @@ -22342,15 +22228,15 @@ texmaker: locale: en_US reboot: False -2020-03-04 12:12:39,916 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,396 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,916 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls -2020-03-04 12:12:39,916 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,931 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.015716075897216797 -2020-03-04 12:12:39,931 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: +2020-03-06 10:14:51,405 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.009412288665771484 +2020-03-06 10:14:51,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,405 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:14:51,405 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.01562952995300293 +2020-03-06 10:14:51,421 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: texniccenter: '2.02 Stable': @@ -22365,15 +22251,15 @@ texniccenter: locale: en_US reboot: False -2020-03-04 12:12:39,931 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,931 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,931 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,931 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,931 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls -2020-03-04 12:12:39,947 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,947 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +2020-03-06 10:14:51,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,421 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:14:51,436 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,436 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: # just 32-bit x86 installer available @@ -22389,15 +22275,15 @@ texstudio: locale: en_US reboot: False -2020-03-04 12:12:39,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,947 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,963 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls -2020-03-04 12:12:39,963 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,963 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,978 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +2020-03-06 10:14:51,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,436 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,452 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:14:51,452 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,467 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: # just 32-bit x86 installer available @@ -22413,15 +22299,15 @@ texworks: locale: en_US reboot: False -2020-03-04 12:12:39,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,467 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:39,978 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:39,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:39,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:39,978 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls -2020-03-04 12:12:39,994 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:39,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:39,994 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +2020-03-06 10:14:51,467 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,467 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,467 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,467 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:14:51,467 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.015659093856811523 +2020-03-06 10:14:51,483 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: # just 32-bit x86 installer available @@ -22699,15 +22585,15 @@ thunderbird: reboot: False -2020-03-04 12:12:40,010 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,025 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.015628814697265625 -2020-03-04 12:12:40,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,025 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls -2020-03-04 12:12:40,025 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.015778541564941406 -2020-03-04 12:12:40,041 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +2020-03-06 10:14:51,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.015705108642578125 +2020-03-06 10:14:51,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,499 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:14:51,499 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,515 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.016054391860961914 +2020-03-06 10:14:51,515 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: tightvnc: @@ -22823,15 +22709,15 @@ tightvnc: reboot: False -2020-03-04 12:12:40,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,057 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,057 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls -2020-03-04 12:12:40,057 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.015700817108154297 -2020-03-04 12:12:40,072 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +2020-03-06 10:14:51,515 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,530 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:14:51,530 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,530 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,530 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: todotxt.net: 'Not Found': # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22847,15 +22733,15 @@ todotxt.net: locale: en_US reboot: False -2020-03-04 12:12:40,072 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,072 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,087 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,087 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls -2020-03-04 12:12:40,087 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,087 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,087 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +2020-03-06 10:14:51,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.015830516815185547 +2020-03-06 10:14:51,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,546 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:14:51,562 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,562 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,562 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22871,15 +22757,15 @@ todour: locale: en_US reboot: False -2020-03-04 12:12:40,087 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,087 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,103 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,103 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls -2020-03-04 12:12:40,103 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,103 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,119 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +2020-03-06 10:14:51,562 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,577 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:14:51,577 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,577 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: # just 32-bit x86 installer available @@ -22896,15 +22782,15 @@ tortoise-bzr: locale: en_US reboot: False -2020-03-04 12:12:40,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,119 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls -2020-03-04 12:12:40,119 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.016121625900268555 -2020-03-04 12:12:40,135 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +2020-03-06 10:14:51,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,592 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:14:51,592 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.01564168930053711 +2020-03-06 10:14:51,608 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: # Source: https://tortoisegit.org/ tortoise-git: @@ -23065,15 +22951,15 @@ tortoise-git: reboot: False -2020-03-04 12:12:40,135 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,135 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,150 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls -2020-03-04 12:12:40,150 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,166 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +2020-03-06 10:14:51,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,608 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:14:51,624 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,624 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: # Source: http://tortoisehg.bitbucket.org/ tortoise-hg: '3.6.2': @@ -23101,15 +22987,15 @@ tortoise-hg: # Need to download from source site above, so it will append proper aws key credentials # place downloaded msi in master's win_repo-ng -2020-03-04 12:12:40,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,166 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,166 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,166 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,166 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls -2020-03-04 12:12:40,182 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,182 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +2020-03-06 10:14:51,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,639 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:14:51,639 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,639 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,639 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: # Source: http://tortoisesvn.net/ tortoise-svn: '1.9.27285': @@ -23125,15 +23011,15 @@ tortoise-svn: reboot: False -2020-03-04 12:12:40,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,639 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,198 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.015895605087280273 -2020-03-04 12:12:40,198 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,198 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,198 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls -2020-03-04 12:12:40,198 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.014923572540283203 -2020-03-04 12:12:40,213 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +2020-03-06 10:14:51,639 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,655 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,655 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:14:51,655 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,655 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,655 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: # just 32-bit x86 installer available @@ -23149,15 +23035,15 @@ truecrypt: locale: en_US reboot: False -2020-03-04 12:12:40,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,228 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls -2020-03-04 12:12:40,228 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,228 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +2020-03-06 10:14:51,671 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:14:51,687 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,687 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ultradefrag: @@ -23173,15 +23059,15 @@ ultradefrag: locale: en_US reboot: False -2020-03-04 12:12:40,228 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,228 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,244 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls -2020-03-04 12:12:40,244 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +2020-03-06 10:14:51,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,702 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:14:51,702 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,702 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,717 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available urlrewrite: @@ -23208,15 +23094,15 @@ urlrewrite: locale: en_US reboot: False -2020-03-04 12:12:40,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,259 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,259 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,259 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,259 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls -2020-03-04 12:12:40,259 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,275 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.015622615814208984 -2020-03-04 12:12:40,275 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +2020-03-06 10:14:51,717 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,717 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:14:51,733 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,733 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: usbdlm: '5.2.7.0': @@ -23230,15 +23116,15 @@ usbdlm: locale: en_US reboot: False -2020-03-04 12:12:40,275 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,733 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,275 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,275 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,275 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,275 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls -2020-03-04 12:12:40,291 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.016286373138427734 -2020-03-04 12:12:40,307 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +2020-03-06 10:14:51,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,749 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:14:51,749 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,764 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: vagrant: @@ -23744,15 +23630,15 @@ vagrant: reboot: False -2020-03-04 12:12:40,307 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,781 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,322 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.014855146408081055 -2020-03-04 12:12:40,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,322 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls -2020-03-04 12:12:40,322 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,337 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.015668869018554688 -2020-03-04 12:12:40,337 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +2020-03-06 10:14:51,781 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.01607656478881836 +2020-03-06 10:14:51,781 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,781 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,796 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:14:51,796 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,796 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: vcforpython27: '9.0.1.30729': full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' @@ -23764,15 +23650,15 @@ vcforpython27: locale: en_US reboot: False -2020-03-04 12:12:40,337 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,337 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,337 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,337 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,337 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls -2020-03-04 12:12:40,353 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,353 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: +2020-03-06 10:14:51,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,811 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:14:51,811 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,811 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,827 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: @@ -23804,15 +23690,15 @@ vcxsrv: reboot: False -2020-03-04 12:12:40,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,369 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls -2020-03-04 12:12:40,369 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,384 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.01563858985900879 -2020-03-04 12:12:40,384 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: +2020-03-06 10:14:51,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,827 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:14:51,843 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: verysleepy: @@ -23827,15 +23713,15 @@ verysleepy: locale: en_US reboot: False -2020-03-04 12:12:40,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,384 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,384 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,384 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,384 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls -2020-03-04 12:12:40,384 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.015652894973754883 -2020-03-04 12:12:40,400 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +2020-03-06 10:14:51,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,858 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:14:51,858 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,858 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,874 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -23866,15 +23752,15 @@ veyon: reboot: False -2020-03-04 12:12:40,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,400 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,416 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls -2020-03-04 12:12:40,416 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,432 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.015921592712402344 -2020-03-04 12:12:40,432 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +2020-03-06 10:14:51,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,874 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:14:51,874 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,889 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.01568317413330078 +2020-03-06 10:14:51,889 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: # Version 5.1 and older are no longer supported by Oracle # https://www.virtualbox.org/wiki/Download_Old_Builds @@ -23937,15 +23823,15 @@ virtualbox: reboot: False -2020-03-04 12:12:40,432 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.015620946884155273 -2020-03-04 12:12:40,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,447 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,447 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls -2020-03-04 12:12:40,447 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,464 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.01608586311340332 -2020-03-04 12:12:40,464 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: +2020-03-06 10:14:51,905 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,905 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:14:51,921 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,921 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,921 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: @@ -23980,15 +23866,15 @@ viscosity: reboot: False -2020-03-04 12:12:40,464 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,941 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:12:40,464 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,464 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,464 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,478 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls -2020-03-04 12:12:40,478 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,478 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,478 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +2020-03-06 10:14:51,941 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,941 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,941 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,941 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:14:51,952 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:51,952 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: #Vivaldi is a Chromium-based browser #https://vivaldi.com @@ -24007,15 +23893,15 @@ vivaldi: locale: en_US reboot: False -2020-03-04 12:12:40,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,478 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,494 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,494 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls -2020-03-04 12:12:40,494 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,509 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.01575160026550293 -2020-03-04 12:12:40,509 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +2020-03-06 10:14:51,952 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,968 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,968 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:14:51,968 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,984 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.01613306999206543 +2020-03-06 10:14:51,984 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available vlc: @@ -24165,15 +24051,15 @@ vlc: reboot: False -2020-03-04 12:12:40,509 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:51,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,509 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,509 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,526 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,526 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls -2020-03-04 12:12:40,526 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,526 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,541 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +2020-03-06 10:14:51,984 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:51,984 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:51,984 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:51,999 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:14:51,999 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:51,999 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,014 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: vs-community: 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) full_name: @@ -24192,15 +24078,15 @@ vs-community: --norestart reboot: False -2020-03-04 12:12:40,541 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,014 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,541 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,557 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,557 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls -2020-03-04 12:12:40,557 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,557 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,572 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +2020-03-06 10:14:52,014 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,014 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:14:52,014 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.015767574310302734 +2020-03-06 10:14:52,030 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: # due to winrepo installer limitations you need to manually download x86 + x64 System installer from # https://code.visualstudio.com/Download # and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... @@ -24276,15 +24162,15 @@ vscode: -2020-03-04 12:12:40,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,030 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,572 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,572 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls -2020-03-04 12:12:40,588 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,588 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +2020-03-06 10:14:52,030 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,046 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,046 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:14:52,046 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,046 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: vsee: '15.0.0.707': full_name: 'VSee' @@ -24296,15 +24182,15 @@ vsee: locale: en_US reboot: False -2020-03-04 12:12:40,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,588 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,588 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,588 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls -2020-03-04 12:12:40,603 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,603 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +2020-03-06 10:14:52,046 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,062 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,062 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:14:52,062 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,062 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,062 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: vs_remotetools_2017: latest: full_name: 'Remote Tools for Visual Studio 2017' @@ -24319,15 +24205,15 @@ vs_remotetools_2017: locale: en_US reboot: False -2020-03-04 12:12:40,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,603 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,603 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,619 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls -2020-03-04 12:12:40,619 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,619 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,619 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +2020-03-06 10:14:52,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.014850616455078125 +2020-03-06 10:14:52,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,077 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:14:52,077 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,077 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,093 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: wamp-server-3: '3.1.3': @@ -24341,15 +24227,15 @@ wamp-server-3: locale: en_US reboot: False -2020-03-04 12:12:40,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,619 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,635 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,635 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,635 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls -2020-03-04 12:12:40,635 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,650 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.015163183212280273 -2020-03-04 12:12:40,650 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: +2020-03-06 10:14:52,093 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,093 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,093 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,093 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:14:52,093 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,108 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.01561427116394043 +2020-03-06 10:14:52,108 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: wamp-stack: @@ -24375,15 +24261,15 @@ wamp-stack: reboot: False -2020-03-04 12:12:40,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,108 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,650 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,650 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,666 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls -2020-03-04 12:12:40,666 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,666 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +2020-03-06 10:14:52,108 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,108 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,124 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:14:52,124 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,124 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,140 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: webdeploy: '3.1237.1764': full_name: 'Microsoft Web Deploy 3.5' @@ -24397,15 +24283,15 @@ webdeploy: locale: en_US reboot: False -2020-03-04 12:12:40,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,666 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,681 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls -2020-03-04 12:12:40,681 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,681 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,681 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +2020-03-06 10:14:52,140 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,140 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,140 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,140 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:14:52,156 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,156 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,156 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: webplatforminstaller: '5.0.50430.0': full_name: 'Microsoft Web Platform Installer 5.0' @@ -24419,15 +24305,15 @@ webplatforminstaller: locale: en_US reboot: False -2020-03-04 12:12:40,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,156 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,697 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.015683650970458984 -2020-03-04 12:12:40,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,697 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls -2020-03-04 12:12:40,697 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,713 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.015623807907104492 -2020-03-04 12:12:40,713 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +2020-03-06 10:14:52,156 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,170 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,170 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,170 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:14:52,170 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,170 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,170 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: # Source: http://winappmanager.herokuapp.com/ @@ -24443,15 +24329,15 @@ win-app-manager: locale: en_US reboot: False -2020-03-04 12:12:40,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,170 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,713 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,713 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls -2020-03-04 12:12:40,713 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0156402587890625 -2020-03-04 12:12:40,728 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: +2020-03-06 10:14:52,186 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0159151554107666 +2020-03-06 10:14:52,186 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,186 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,186 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:14:52,186 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.015655040740966797 +2020-03-06 10:14:52,202 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: @@ -24466,15 +24352,15 @@ windirstat: locale: en_US reboot: False -2020-03-04 12:12:40,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,728 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,744 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls -2020-03-04 12:12:40,744 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,744 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,744 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +2020-03-06 10:14:52,202 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,202 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,202 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:14:52,202 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.01594710350036621 +2020-03-06 10:14:52,218 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: winhttpcertcfg: '5.2.3790.1060': full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' @@ -24486,15 +24372,15 @@ winhttpcertcfg: locale: en_US reboot: False -2020-03-04 12:12:40,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,744 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,759 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,759 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,759 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls -2020-03-04 12:12:40,759 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,759 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,759 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: +2020-03-06 10:14:52,218 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,218 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,218 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:14:52,234 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,234 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,234 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: @@ -24522,15 +24408,15 @@ winmerge: reboot: False -2020-03-04 12:12:40,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,775 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,775 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,775 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls -2020-03-04 12:12:40,775 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.015665531158447266 -2020-03-04 12:12:40,791 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +2020-03-06 10:14:52,234 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,249 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,249 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:14:52,249 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,249 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,265 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: winmtr: '0.92': @@ -24548,15 +24434,15 @@ winmtr: # download exe from winmtr.net # create two installers using http://www.ssesetup.com/ -2020-03-04 12:12:40,791 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,791 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,807 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls -2020-03-04 12:12:40,807 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,807 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,807 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +2020-03-06 10:14:52,265 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,265 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,265 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,280 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:14:52,280 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,280 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,280 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: winpcap: '4.1.0.2980': full_name: 'WinPcap 4.1.3' @@ -24568,15 +24454,15 @@ winpcap: locale: en_US reboot: False -2020-03-04 12:12:40,807 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,280 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,807 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,822 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls -2020-03-04 12:12:40,822 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,822 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,838 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +2020-03-06 10:14:52,280 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,296 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,296 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:14:52,296 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,296 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,296 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: #if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) @@ -24611,15 +24497,15 @@ winrar: -2020-03-04 12:12:40,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,838 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,838 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls -2020-03-04 12:12:40,853 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,853 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,853 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: +2020-03-06 10:14:52,311 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,311 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,311 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,311 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:14:52,311 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,327 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.015711069107055664 +2020-03-06 10:14:52,327 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: @@ -24886,15 +24772,15 @@ winscp: reboot: False -2020-03-04 12:12:40,869 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,327 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,869 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,885 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls -2020-03-04 12:12:40,885 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,900 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.01563286781311035 -2020-03-04 12:12:40,900 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +2020-03-06 10:14:52,343 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.01566171646118164 +2020-03-06 10:14:52,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,343 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:14:52,343 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,358 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.015647411346435547 +2020-03-06 10:14:52,358 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available wireshark: @@ -25416,15 +25302,15 @@ wireshark: reboot: False -2020-03-04 12:12:40,900 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,916 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.015758514404296875 -2020-03-04 12:12:40,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,916 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls -2020-03-04 12:12:40,916 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,932 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.01600193977355957 -2020-03-04 12:12:40,932 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +2020-03-06 10:14:52,374 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.0156252384185791 +2020-03-06 10:14:52,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,374 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,390 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:14:52,390 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,390 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: # source: http://www.kls-soft.com/wscc/ wscc: '2.5.0.4': @@ -25439,15 +25325,15 @@ wscc: locale: en_US reboot: False -2020-03-04 12:12:40,932 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,932 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,932 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls -2020-03-04 12:12:40,947 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,947 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,947 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +2020-03-06 10:14:52,390 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,390 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,405 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,405 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:14:52,405 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.01588892936706543 +2020-03-06 10:14:52,421 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: # Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 # https://github.com/zeffy/wufuc @@ -25469,15 +25355,15 @@ wufuc: reboot: False -2020-03-04 12:12:40,947 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,962 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0156252384185791 -2020-03-04 12:12:40,962 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,962 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,962 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls -2020-03-04 12:12:40,962 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,962 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:40,978 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +2020-03-06 10:14:52,421 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,421 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,436 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:14:52,436 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,436 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: xampp: '7.2.6.0': full_name: 'XAMPP 7.2.6' @@ -25489,15 +25375,15 @@ xampp: locale: en_US reboot: False -2020-03-04 12:12:40,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,436 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,978 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,978 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:40,978 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls -2020-03-04 12:12:40,978 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:40,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.015625715255737305 -2020-03-04 12:12:40,994 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +2020-03-06 10:14:52,436 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,436 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,452 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,452 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:14:52,452 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,452 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: # just 32-bit x86 installer available @@ -25514,15 +25400,15 @@ xming: locale: en_US reboot: False -2020-03-04 12:12:40,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:40,994 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:40,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:40,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,009 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls -2020-03-04 12:12:41,009 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,009 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,025 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: +2020-03-06 10:14:52,452 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,468 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,468 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:14:52,468 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,468 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,483 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: yubikey-manager: @@ -25588,15 +25474,15 @@ yubikey-manager: reboot: False -2020-03-04 12:12:41,025 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:12:41,025 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,025 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls -2020-03-04 12:12:41,041 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,041 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +2020-03-06 10:14:52,483 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,483 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,483 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,483 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:14:52,499 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,499 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: yubikey-personalization-tool: '3.1.24': full_name: 'YubiKey Personalization Tool' @@ -25605,21 +25491,71 @@ yubikey-personalization-tool: uninstaller: "C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe" uninstall_flags: '/S' reboot: False - -2020-03-04 12:12:41,041 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:12:41,041 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,056 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,056 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls -2020-03-04 12:12:41,056 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,072 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.015854597091674805 -2020-03-04 12:12:41,072 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: -# both 32-bit (x86) AND a 64-bit (AMD64) installer available + +2020-03-06 10:14:52,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) +2020-03-06 10:14:52,499 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,499 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,515 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,515 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:14:52,515 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,530 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.014808177947998047 +2020-03-06 10:14:52,530 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +# both 32-bit (x86) AND a 64-bit (AMD64) installer available + + + +zabbix-agent: + + + '3.0.26.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '3.0.27.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.0.28.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + '3.0.29.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False -zabbix-agent: '4.0.9.2400': @@ -25843,66 +25779,16 @@ zabbix-agent: reboot: False - - '3.0.26.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '3.0.27.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '3.0.28.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '3.0.29.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - -2020-03-04 12:12:41,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: -OrderedDict([('zabbix-agent', OrderedDict([('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:41,088 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.015908002853393555 -2020-03-04 12:12:41,088 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,088 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,088 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls -2020-03-04 12:12:41,103 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,103 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,103 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: +2020-03-06 10:14:52,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:14:52,546 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.016031980514526367 +2020-03-06 10:14:52,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,546 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:14:52,562 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,562 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,562 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: zoom: latest: @@ -25914,15 +25800,15 @@ zoom: msiexec: True reboot: False -2020-03-04 12:12:41,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:12:41,103 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,119 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,119 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls -2020-03-04 12:12:41,119 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,119 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,134 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +2020-03-06 10:14:52,562 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,562 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,577 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:14:52,577 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,577 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: # Software Definition File for Elasticsearch Auditbeat # Uses the following associated scripts @@ -25984,15 +25870,15 @@ auditbeat: cache_dir: True -2020-03-04 12:12:41,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,134 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,134 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,134 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,134 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls -2020-03-04 12:12:41,134 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.015642166137695312 -2020-03-04 12:12:41,150 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +2020-03-06 10:14:52,577 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,592 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,592 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:14:52,592 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.01566934585571289 +2020-03-06 10:14:52,608 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: chocolatey: latest: full_name: 'Chocolatey' @@ -26006,15 +25892,15 @@ chocolatey: # https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 -2020-03-04 12:12:41,150 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,150 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,150 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,150 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls -2020-03-04 12:12:41,166 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,166 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,166 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: +2020-03-06 10:14:52,608 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,608 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:14:52,624 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,624 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,624 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: @@ -26042,15 +25928,15 @@ erlang: reboot: False -2020-03-04 12:12:41,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:12:41,182 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,182 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,182 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,182 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls -2020-03-04 12:12:41,182 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.015615463256835938 -2020-03-04 12:12:41,197 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +2020-03-06 10:14:52,640 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,640 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:14:52,656 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,656 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,656 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: # Software Definition File for Elasticsearch Filebeat # Uses the following associated scripts @@ -26112,15 +25998,15 @@ filebeat: cache_dir: True -2020-03-04 12:12:41,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,197 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,197 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,213 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,213 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls -2020-03-04 12:12:41,213 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,213 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,213 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +2020-03-06 10:14:52,656 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,671 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,671 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:14:52,687 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,687 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: # Software Definition File for Elasticsearch Functionbeat # Uses the following associated scripts @@ -26182,15 +26068,15 @@ functionbeat: cache_dir: True -2020-03-04 12:12:41,213 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,229 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.015828371047973633 -2020-03-04 12:12:41,229 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,229 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,229 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls -2020-03-04 12:12:41,229 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.015103578567504883 -2020-03-04 12:12:41,244 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +2020-03-06 10:14:52,687 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,702 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:14:52,702 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,717 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,717 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: # just 32-bit x86 installer available @@ -26289,15 +26175,15 @@ gpg4win: reboot: False -2020-03-04 12:12:41,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:12:41,244 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,244 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,260 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,260 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls -2020-03-04 12:12:41,260 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,260 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,260 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +2020-03-06 10:14:52,717 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,717 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,717 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:14:52,733 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,733 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,733 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: # Software Definition File for Elasticsearch Heartbeat # Uses the following associated scripts @@ -26359,15 +26245,15 @@ heartbeat: cache_dir: True -2020-03-04 12:12:41,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,275 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.015640735626220703 -2020-03-04 12:12:41,275 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,275 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,275 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls -2020-03-04 12:12:41,275 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.01574254035949707 -2020-03-04 12:12:41,291 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +2020-03-06 10:14:52,749 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.01569056510925293 +2020-03-06 10:14:52,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,749 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:14:52,749 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,765 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.016121387481689453 +2020-03-06 10:14:52,780 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: # Software Definition File for Elasticsearch Metricbeat # Uses the following associated scripts @@ -26429,15 +26315,15 @@ metricbeat: cache_dir: True -2020-03-04 12:12:41,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,291 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,291 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls -2020-03-04 12:12:41,307 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,307 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +2020-03-06 10:14:52,780 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,780 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:14:52,796 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,796 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,796 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: # Software Definition File for Elasticsearch Packetbeat # Uses the following associated scripts @@ -26499,15 +26385,15 @@ packetbeat: cache_dir: True -2020-03-04 12:12:41,307 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,811 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,307 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,323 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,323 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,323 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls -2020-03-04 12:12:41,323 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,323 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,338 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: +2020-03-06 10:14:52,811 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,811 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:14:52,811 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.01569509506225586 +2020-03-06 10:14:52,827 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: @@ -26526,15 +26412,15 @@ pycharm-pro: reboot: False -2020-03-04 12:12:41,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:12:41,338 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,338 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,338 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls -2020-03-04 12:12:41,353 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,353 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,353 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +2020-03-06 10:14:52,827 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,843 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:14:52,843 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,843 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,843 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: # just 32-bit x86 installer available @@ -26549,15 +26435,15 @@ stayawake: uninstall_flags: '/S' -2020-03-04 12:12:41,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) -2020-03-04 12:12:41,369 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.015838623046875 -2020-03-04 12:12:41,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,369 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls -2020-03-04 12:12:41,369 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.016121864318847656 -2020-03-04 12:12:41,385 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +2020-03-06 10:14:52,858 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.015630483627319336 +2020-03-06 10:14:52,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,858 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,858 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:14:52,858 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.015687942504882812 +2020-03-06 10:14:52,874 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: # Software Definition File for Elasticsearch Winlogbeat # Uses the following associated scripts @@ -26619,31 +26505,31 @@ winlogbeat: cache_dir: True -2020-03-04 12:12:41,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,385 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,385 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,400 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls -2020-03-04 12:12:41,400 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.015703439712524414 -2020-03-04 12:12:41,416 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +2020-03-06 10:14:52,874 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,890 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:14:52,890 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,890 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:14:52,905 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: ############################################################# # Windows ############################################################# # -2020-03-04 12:12:41,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: {} -2020-03-04 12:12:41,416 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:12:41,416 [salt.loaded.int.module.win_pkg:1213][DEBUG ][7072] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing -2020-03-04 12:12:41,416 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:41,432 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:41,432 [salt.template :59 ][DEBUG ][7072] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls -2020-03-04 12:12:41,432 [salt.utils.jinja :85 ][DEBUG ][7072] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:12:41,432 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:12:41,432 [salt.template :120 ][DEBUG ][7072] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +2020-03-06 10:14:52,905 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,905 [salt.loaded.int.module.win_pkg:1217][DEBUG ][3700] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:14:52,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:52,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:52,921 [salt.template :59 ][DEBUG ][3700] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:14:52,921 [salt.utils.jinja :85 ][DEBUG ][3700] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:14:52,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.015619516372680664 +2020-03-06 10:14:52,937 [salt.template :120 ][DEBUG ][3700] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: # only 32-bit (x86) installer available @@ -26677,1265 +26563,456 @@ zipinstaller: # as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache # -2020-03-04 12:12:41,432 [salt.loaded.int.render.yaml:80 ][DEBUG ][7072] Results of YAML rendering: +2020-03-06 10:14:52,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][3700] Results of YAML rendering: OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) -2020-03-04 12:12:41,447 [salt.template :26 ][PROFILE ][7072] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.01565098762512207 -2020-03-04 12:12:41,462 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 12:12:41,462 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 12:12:41,510 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: Volume in drive C is Windows 10 +2020-03-06 10:14:52,937 [salt.template :30 ][PROFILE ][3700] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:14:52,952 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:14:52,968 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:14:53,015 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Volume in drive C is Windows 10 Volume Serial Number is A4D6-10A7 Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng -03/04/2020 03:12 PM . -03/04/2020 03:12 PM .. -03/04/2020 03:12 PM 927 7zip.sls -03/04/2020 03:12 PM 723 activeperl_x64.sls -03/04/2020 03:12 PM 973 activeperl_x86.sls -03/04/2020 03:12 PM 798 adobeair.sls -03/04/2020 03:12 PM 956 adobereader-dc-classic.sls -03/04/2020 03:12 PM 851 adobereader-xi.sls -03/04/2020 03:12 PM 830 adobereader.sls -03/04/2020 03:12 PM 589 adobeshockwaveplayer.sls -03/04/2020 03:12 PM 775 adv-ip-scanner.sls -03/04/2020 03:12 PM 787 adv-port-scanner.sls -03/04/2020 03:12 PM 769 advancedlogging.sls -03/04/2020 03:12 PM 373 anydesk-msi.sls -03/04/2020 03:12 PM 597 anydesk.sls -03/04/2020 03:12 PM 803 applicationrequestrouting.sls -03/04/2020 03:12 PM 370 aspnet-mvc1.sls -03/04/2020 03:12 PM 439 atom.sls -03/04/2020 03:12 PM 655 audacity.sls -03/04/2020 03:12 PM auditbeat -03/04/2020 03:12 PM 1,768 autohotkey.sls -03/04/2020 03:12 PM 611 autoit.sls -03/04/2020 03:12 PM 670 autopsy.sls -03/04/2020 03:12 PM 659 awscli.sls -03/04/2020 03:12 PM 799 azuredatastudio.sls -03/04/2020 03:12 PM 422 bandizip.sls -03/04/2020 03:12 PM 563 belarc-advisor.sls -03/04/2020 03:12 PM 367 bginfo4x.sls -03/04/2020 03:12 PM 547 bitnami-nginxstack.sls -03/04/2020 03:12 PM 568 bitvise.sls -03/04/2020 03:12 PM 777 blender.sls -03/04/2020 03:12 PM 395 bootracer.sls -03/04/2020 03:12 PM 664 bulkrenameutility.sls -03/04/2020 03:12 PM 661 bulk_extractor.sls -03/04/2020 03:12 PM 476 ccleaner-slim.sls -03/04/2020 03:12 PM 445 ccleaner.sls -03/04/2020 03:12 PM 606 cdburnerxp.sls -03/04/2020 03:12 PM 594 cdroller.sls -03/04/2020 03:12 PM 658 check-mk-agent-msi.sls -03/04/2020 03:12 PM 451 check-mk-agent.sls -03/04/2020 03:12 PM chocolatey -03/04/2020 03:12 PM 394 chrome-rdp.sls -03/04/2020 03:12 PM 375 chrome.sls -03/04/2020 03:12 PM 1,296 clamav.sls -03/04/2020 03:12 PM 1,200 clamwin.sls -03/04/2020 03:12 PM 500 classicshell.sls -03/04/2020 03:12 PM 1,521 clink.sls -03/04/2020 03:12 PM 617 conemu.sls -03/04/2020 03:12 PM 687 cpu-z.sls -03/04/2020 03:12 PM 2,833 curl.sls -03/04/2020 03:12 PM 374 cyberduck-cli.sls -03/04/2020 03:12 PM 616 cyberduck-msi.sls -03/04/2020 03:12 PM 639 cyberduck.sls -03/04/2020 03:12 PM 751 defraggler.sls -03/04/2020 03:12 PM 2,637 dotnet.sls -03/04/2020 03:12 PM 643 dropbox.sls -03/04/2020 03:12 PM 683 duplicati.sls -03/04/2020 03:12 PM 712 dvdstyler.sls -03/04/2020 03:12 PM 737 echo-desktop.sls -03/04/2020 03:12 PM 1,327 eea.sls -03/04/2020 03:12 PM 423 emet.sls -03/04/2020 03:12 PM 625 emsisoft-anti-malware.sls -03/04/2020 03:12 PM 721 eraser.sls -03/04/2020 03:12 PM erlang -03/04/2020 03:12 PM 982 evernote.sls -03/04/2020 03:12 PM 531 fiddler.sls -03/04/2020 03:12 PM filebeat -03/04/2020 03:12 PM 660 filehippo-app-manager.sls -03/04/2020 03:12 PM 1,271 filezilla.sls -03/04/2020 03:12 PM 1,115 firefox-esr_x64.sls -03/04/2020 03:12 PM 1,396 firefox-esr_x86.sls -03/04/2020 03:12 PM 1,365 firefox_x64.sls -03/04/2020 03:12 PM 1,870 firefox_x86.sls -03/04/2020 03:12 PM functionbeat -03/04/2020 03:12 PM 552 gedit.sls -03/04/2020 03:12 PM 822 gimp.sls -03/04/2020 03:12 PM 953 git-extensions.sls -03/04/2020 03:12 PM 3,855 git.sls -03/04/2020 03:12 PM 848 glarysoft-absolute-uninstaller.sls -03/04/2020 03:12 PM 563 gnucash.sls -03/04/2020 03:12 PM 2,152 golang.sls -03/04/2020 03:12 PM 320 goodsync.sls -03/04/2020 03:12 PM 601 gow.sls -03/04/2020 03:12 PM gpg4win -03/04/2020 03:12 PM 847 gpg4win-light.sls -03/04/2020 03:12 PM 621 gpg4win-vanilla.sls -03/04/2020 03:12 PM 544 graylog-collector-sidecar.sls -03/04/2020 03:12 PM 2,661 grepwin.sls -03/04/2020 03:12 PM 505 gvim.sls -03/04/2020 03:12 PM 622 handbrake.sls -03/04/2020 03:12 PM heartbeat -03/04/2020 03:12 PM 503 hipchat.sls -03/04/2020 03:12 PM 771 hostsfileeditor.sls -03/04/2020 03:12 PM 623 hwinfo.sls -03/04/2020 03:12 PM 339 ice.sls -03/04/2020 03:12 PM 493 icecast.sls -03/04/2020 03:12 PM 377 icloud.sls -03/04/2020 03:12 PM 2,197 iismediaservices.sls -03/04/2020 03:12 PM 358 influx-capacitor.sls -03/04/2020 03:12 PM 644 inkscape.sls -03/04/2020 03:12 PM 646 intellij-community.sls -03/04/2020 03:12 PM 618 intellij-ultimate.sls -03/04/2020 03:12 PM 360 internet-evidence-finder.sls -03/04/2020 03:12 PM 702 irfanview-plugins.sls -03/04/2020 03:12 PM 1,610 irfanview.sls -03/04/2020 03:12 PM 697 isapirewrite-lite.sls -03/04/2020 03:12 PM 2,602 itunes.sls -03/04/2020 03:12 PM 1,279 jdk8.sls -03/04/2020 03:12 PM 1,200 jre.sls -03/04/2020 03:12 PM 1,480 jre8.sls -03/04/2020 03:12 PM 995 jungledisk-server-management.sls -03/04/2020 03:12 PM 891 jungledisk-server.sls -03/04/2020 03:12 PM 921 jungledisk-workgroup.sls -03/04/2020 03:12 PM 518 kdiff3.sls -03/04/2020 03:12 PM 1,091 keepass-2x.sls -03/04/2020 03:12 PM 2,655 keepass.sls -03/04/2020 03:12 PM 673 lastpass.sls -03/04/2020 03:12 PM 1,329 lazarus.sls -03/04/2020 03:12 PM 951 libreoffice.sls -03/04/2020 03:12 PM 419 logparser.sls -03/04/2020 03:12 PM 2,627 maas360bootanalyzer.sls -03/04/2020 03:12 PM 722 malwarebytes.sls -03/04/2020 03:12 PM 1,884 mariadb.sls -03/04/2020 03:12 PM 653 mercurial.sls -03/04/2020 03:12 PM 649 messageanalyzer.sls -03/04/2020 03:12 PM metricbeat -03/04/2020 03:12 PM 603 microsoft-build-tools.sls -03/04/2020 03:12 PM 317 mikogo.sls -03/04/2020 03:12 PM 766 miktex-basic.sls -03/04/2020 03:12 PM 787 mongodb.sls -03/04/2020 03:12 PM 831 ms-mbsa.sls -03/04/2020 03:12 PM 419 ms-vcpp-2005-atl-redist_x64.sls -03/04/2020 03:12 PM 413 ms-vcpp-2005-atl-redist_x86.sls -03/04/2020 03:12 PM 412 ms-vcpp-2005-redist_x64.sls -03/04/2020 03:12 PM 406 ms-vcpp-2005-redist_x86.sls -03/04/2020 03:12 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls -03/04/2020 03:12 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls -03/04/2020 03:12 PM 416 ms-vcpp-2005-sp1-redist_x64.sls -03/04/2020 03:12 PM 410 ms-vcpp-2005-sp1-redist_x86.sls -03/04/2020 03:12 PM 434 ms-vcpp-2008-redist_x64.sls -03/04/2020 03:12 PM 434 ms-vcpp-2008-redist_x86.sls -03/04/2020 03:12 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls -03/04/2020 03:12 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls -03/04/2020 03:12 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls -03/04/2020 03:12 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls -03/04/2020 03:12 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls -03/04/2020 03:12 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls -03/04/2020 03:12 PM 493 ms-vcpp-2012-redist_x64.sls -03/04/2020 03:12 PM 495 ms-vcpp-2012-redist_x86.sls -03/04/2020 03:12 PM 503 ms-vcpp-2013-redist_x64.sls -03/04/2020 03:12 PM 503 ms-vcpp-2013-redist_x86.sls -03/04/2020 03:12 PM 481 ms-vcpp-2015-build-tools.sls -03/04/2020 03:12 PM 1,407 ms-vcpp-2015-redist_x64.sls -03/04/2020 03:12 PM 1,407 ms-vcpp-2015-redist_x86.sls -03/04/2020 03:12 PM 1,166 ms-vcpp-2017-redist_x64.sls -03/04/2020 03:12 PM 539 ms-vcpp-2017-redist_x86.sls -03/04/2020 03:12 PM 585 mucommander.sls -03/04/2020 03:12 PM 638 mysql-essential.sls -03/04/2020 03:12 PM 632 mysql-installer-community.sls -03/04/2020 03:12 PM 639 mysql-workbench.sls -03/04/2020 03:12 PM 298 never10.sls -03/04/2020 03:12 PM 929 newrelic-infra.sls -03/04/2020 03:12 PM 526 nextcloud-client.sls -03/04/2020 03:12 PM 584 nmap.sls -03/04/2020 03:12 PM 709 node.js-lts.sls -03/04/2020 03:12 PM 733 node.js.sls -03/04/2020 03:12 PM 368 nomacs.sls -03/04/2020 03:12 PM 985 npp.sls -03/04/2020 03:12 PM 1,252 nsclient.sls -03/04/2020 03:12 PM 826 nsis.sls -03/04/2020 03:12 PM 902 ntp.sls -03/04/2020 03:12 PM 793 nunit-console.sls -03/04/2020 03:12 PM 363 nxlog.sls -03/04/2020 03:12 PM 1,081 octopus-tentacle.sls -03/04/2020 03:12 PM 678 openlp.sls -03/04/2020 03:12 PM 1,192 openoffice.sls -03/04/2020 03:12 PM 2,130 openvpn.sls -03/04/2020 03:12 PM 587 osquery.sls -03/04/2020 03:12 PM 878 ossec-agent.sls -03/04/2020 03:12 PM 590 owncloud.sls -03/04/2020 03:12 PM packetbeat -03/04/2020 03:12 PM 400 pandoc.sls -03/04/2020 03:12 PM 814 parallels-client-15.sls -03/04/2020 03:12 PM 1,709 pass4win.sls -03/04/2020 03:12 PM 378 passware-kit-agent.sls -03/04/2020 03:12 PM 416 passware-kit-forensic.sls -03/04/2020 03:12 PM 656 patchmypc-free.sls -03/04/2020 03:12 PM 638 pdf24creator.sls -03/04/2020 03:12 PM 567 pdfcreator.sls -03/04/2020 03:12 PM 611 peazip.sls -03/04/2020 03:12 PM 812 pgadmin4.sls -03/04/2020 03:12 PM 235 pgina.sls -03/04/2020 03:12 PM 617 pidgin.sls -03/04/2020 03:12 PM 1,898 postgresql.sls -03/04/2020 03:12 PM 997 powerbi-desktop.sls -03/04/2020 03:12 PM 864 powershell-core.sls -03/04/2020 03:12 PM 1,172 prometheus-wmi-exporter.sls -03/04/2020 03:12 PM 1,488 putty.sls -03/04/2020 03:12 PM pycharm-pro -03/04/2020 03:12 PM 567 python2_x64.sls -03/04/2020 03:12 PM 526 python2_x86.sls -03/04/2020 03:12 PM 1,540 python3_x64.sls -03/04/2020 03:12 PM 1,435 python3_x86.sls -03/04/2020 03:12 PM 449 qemu.sls -03/04/2020 03:12 PM 562 queueexplorerpro.sls -03/04/2020 03:12 PM 1,542 quicktime.sls -03/04/2020 03:12 PM 495 rabbitmq.sls -03/04/2020 03:12 PM 379 rakudo-star-no-jit_x86.sls -03/04/2020 03:12 PM 375 rakudo-star_x64.sls -03/04/2020 03:12 PM 888 rasclient.sls -03/04/2020 03:12 PM 444 rdcman.sls -03/04/2020 03:12 PM 609 rocketchat.sls -03/04/2020 03:12 PM 526 rubyinstaller_x64.sls -03/04/2020 03:12 PM 551 rubyinstaller_x86.sls -03/04/2020 03:12 PM 3,719 salt-minion-py2.sls -03/04/2020 03:12 PM 2,050 salt-minion-py3.sls -03/04/2020 03:12 PM 562 sandboxie.sls -03/04/2020 03:12 PM 581 scaleout.sls -03/04/2020 03:12 PM 476 secunia.psi.sls -03/04/2020 03:12 PM 1,190 sensu.sls -03/04/2020 03:12 PM 1,827 sharpdevelop.sls -03/04/2020 03:12 PM 539 skitch.sls -03/04/2020 03:12 PM 1,533 skype-msi.sls -03/04/2020 03:12 PM 708 skype.sls -03/04/2020 03:12 PM 1,244 slack-machine-msi.sls -03/04/2020 03:12 PM 1,023 slack-user-msi.sls -03/04/2020 03:12 PM 329 slack.sls -03/04/2020 03:12 PM 591 smartmontools.sls -03/04/2020 03:12 PM 556 snmptools.sls -03/04/2020 03:12 PM 653 soapui.sls -03/04/2020 03:12 PM 623 software-informer.sls -03/04/2020 03:12 PM 1,039 sourcetree.sls -03/04/2020 03:12 PM 591 spybot-anti-beacon.sls -03/04/2020 03:12 PM 765 spybot.sls -03/04/2020 03:12 PM 664 sscserv-free.sls -03/04/2020 03:12 PM stayawake -03/04/2020 03:12 PM 443 steam.sls -03/04/2020 03:12 PM 658 stellarium.sls -03/04/2020 03:12 PM 540 strawberryperl_x64.sls -03/04/2020 03:12 PM 531 strawberryperl_x86.sls -03/04/2020 03:12 PM 521 stunnel.sls -03/04/2020 03:12 PM 398 subinacl.sls -03/04/2020 03:12 PM 467 sumatrapdf.sls -03/04/2020 03:12 PM 769 svn.sls -03/04/2020 03:12 PM 534 teamviewer.sls -03/04/2020 03:12 PM 549 teamviewer_host.sls -03/04/2020 03:12 PM 749 teracopy.sls -03/04/2020 03:12 PM 491 texmaker.sls -03/04/2020 03:12 PM 709 texniccenter.sls -03/04/2020 03:12 PM 639 texstudio.sls -03/04/2020 03:12 PM 643 texworks.sls -03/04/2020 03:12 PM 937 thunderbird.sls -03/04/2020 03:12 PM 1,014 tightvnc.sls -03/04/2020 03:12 PM 623 todotxt.net.sls -03/04/2020 03:12 PM 551 todour.sls -03/04/2020 03:12 PM 630 tortoise-bzr.sls -03/04/2020 03:12 PM 983 tortoise-git.sls -03/04/2020 03:12 PM 1,367 tortoise-hg.sls -03/04/2020 03:12 PM 897 tortoise-svn.sls -03/04/2020 03:12 PM 503 truecrypt.sls -03/04/2020 03:12 PM 662 ultradefrag.sls -03/04/2020 03:12 PM 1,598 urlrewrite.sls -03/04/2020 03:12 PM 560 usbdlm.sls -03/04/2020 03:12 PM 1,361 vagrant.sls -03/04/2020 03:12 PM 479 vcforpython27.sls -03/04/2020 03:12 PM 820 vcxsrv.sls -03/04/2020 03:12 PM 434 verysleepy.sls -03/04/2020 03:12 PM 611 veyon.sls -03/04/2020 03:12 PM 2,570 virtualbox.sls -03/04/2020 03:12 PM 794 viscosity.sls -03/04/2020 03:12 PM 657 vivaldi.sls -03/04/2020 03:12 PM 739 vlc.sls -03/04/2020 03:12 PM 713 vs-community.sls -03/04/2020 03:12 PM 1,388 vscode.sls -03/04/2020 03:12 PM 325 vsee.sls -03/04/2020 03:12 PM 640 vs_remotetools_2017.sls -03/04/2020 03:12 PM 835 wamp-server-3.sls -03/04/2020 03:12 PM 585 wamp-stack.sls -03/04/2020 03:12 PM 775 webdeploy.sls -03/04/2020 03:12 PM 842 webplatforminstaller.sls -03/04/2020 03:12 PM 610 win-app-manager.sls -03/04/2020 03:12 PM 467 windirstat.sls -03/04/2020 03:12 PM 468 winhttpcertcfg.sls -03/04/2020 03:12 PM winlogbeat -03/04/2020 03:12 PM 618 winmerge.sls -03/04/2020 03:12 PM 737 winmtr.sls -03/04/2020 03:12 PM 288 winpcap.sls -03/04/2020 03:12 PM 825 winrar.sls -03/04/2020 03:12 PM 828 winscp.sls -03/04/2020 03:12 PM 1,136 wireshark.sls -03/04/2020 03:12 PM wmi_provider -03/04/2020 03:12 PM 539 wscc.sls -03/04/2020 03:12 PM 726 wufuc.sls -03/04/2020 03:12 PM 352 xampp.sls -03/04/2020 03:12 PM 649 xming.sls -03/04/2020 03:12 PM 621 yubikey-manager.sls -03/04/2020 03:12 PM 546 yubikey-personalization-tool.sls -03/04/2020 03:12 PM 1,119 zabbix-agent.sls -03/04/2020 03:12 PM zipinstaller -03/04/2020 03:12 PM 278 zoom.sls +03/06/2020 01:14 PM . +03/06/2020 01:14 PM .. +03/06/2020 01:14 PM 927 7zip.sls +03/06/2020 01:14 PM 723 activeperl_x64.sls +03/06/2020 01:14 PM 973 activeperl_x86.sls +03/06/2020 01:14 PM 798 adobeair.sls +03/06/2020 01:14 PM 956 adobereader-dc-classic.sls +03/06/2020 01:14 PM 851 adobereader-xi.sls +03/06/2020 01:14 PM 830 adobereader.sls +03/06/2020 01:14 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:14 PM 775 adv-ip-scanner.sls +03/06/2020 01:14 PM 787 adv-port-scanner.sls +03/06/2020 01:14 PM 769 advancedlogging.sls +03/06/2020 01:14 PM 373 anydesk-msi.sls +03/06/2020 01:14 PM 597 anydesk.sls +03/06/2020 01:14 PM 803 applicationrequestrouting.sls +03/06/2020 01:14 PM 370 aspnet-mvc1.sls +03/06/2020 01:14 PM 439 atom.sls +03/06/2020 01:14 PM 655 audacity.sls +03/06/2020 01:14 PM auditbeat +03/06/2020 01:14 PM 1,768 autohotkey.sls +03/06/2020 01:14 PM 611 autoit.sls +03/06/2020 01:14 PM 670 autopsy.sls +03/06/2020 01:14 PM 659 awscli.sls +03/06/2020 01:14 PM 799 azuredatastudio.sls +03/06/2020 01:14 PM 422 bandizip.sls +03/06/2020 01:14 PM 563 belarc-advisor.sls +03/06/2020 01:14 PM 367 bginfo4x.sls +03/06/2020 01:14 PM 547 bitnami-nginxstack.sls +03/06/2020 01:14 PM 568 bitvise.sls +03/06/2020 01:14 PM 777 blender.sls +03/06/2020 01:14 PM 395 bootracer.sls +03/06/2020 01:14 PM 664 bulkrenameutility.sls +03/06/2020 01:14 PM 661 bulk_extractor.sls +03/06/2020 01:14 PM 476 ccleaner-slim.sls +03/06/2020 01:14 PM 445 ccleaner.sls +03/06/2020 01:14 PM 606 cdburnerxp.sls +03/06/2020 01:14 PM 594 cdroller.sls +03/06/2020 01:14 PM 658 check-mk-agent-msi.sls +03/06/2020 01:14 PM 451 check-mk-agent.sls +03/06/2020 01:14 PM chocolatey +03/06/2020 01:14 PM 394 chrome-rdp.sls +03/06/2020 01:14 PM 375 chrome.sls +03/06/2020 01:14 PM 1,296 clamav.sls +03/06/2020 01:14 PM 1,200 clamwin.sls +03/06/2020 01:14 PM 500 classicshell.sls +03/06/2020 01:14 PM 1,521 clink.sls +03/06/2020 01:14 PM 617 conemu.sls +03/06/2020 01:14 PM 687 cpu-z.sls +03/06/2020 01:14 PM 2,833 curl.sls +03/06/2020 01:14 PM 374 cyberduck-cli.sls +03/06/2020 01:14 PM 616 cyberduck-msi.sls +03/06/2020 01:14 PM 639 cyberduck.sls +03/06/2020 01:14 PM 751 defraggler.sls +03/06/2020 01:14 PM 2,637 dotnet.sls +03/06/2020 01:14 PM 643 dropbox.sls +03/06/2020 01:14 PM 683 duplicati.sls +03/06/2020 01:14 PM 712 dvdstyler.sls +03/06/2020 01:14 PM 737 echo-desktop.sls +03/06/2020 01:14 PM 1,327 eea.sls +03/06/2020 01:14 PM 423 emet.sls +03/06/2020 01:14 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:14 PM 721 eraser.sls +03/06/2020 01:14 PM erlang +03/06/2020 01:14 PM 982 evernote.sls +03/06/2020 01:14 PM 531 fiddler.sls +03/06/2020 01:14 PM filebeat +03/06/2020 01:14 PM 660 filehippo-app-manager.sls +03/06/2020 01:14 PM 1,271 filezilla.sls +03/06/2020 01:14 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:14 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:14 PM 1,365 firefox_x64.sls +03/06/2020 01:14 PM 1,870 firefox_x86.sls +03/06/2020 01:14 PM functionbeat +03/06/2020 01:14 PM 552 gedit.sls +03/06/2020 01:14 PM 822 gimp.sls +03/06/2020 01:14 PM 953 git-extensions.sls +03/06/2020 01:14 PM 3,855 git.sls +03/06/2020 01:14 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:14 PM 563 gnucash.sls +03/06/2020 01:14 PM 2,152 golang.sls +03/06/2020 01:14 PM 320 goodsync.sls +03/06/2020 01:14 PM 601 gow.sls +03/06/2020 01:14 PM gpg4win +03/06/2020 01:14 PM 847 gpg4win-light.sls +03/06/2020 01:14 PM 621 gpg4win-vanilla.sls +03/06/2020 01:14 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:14 PM 2,661 grepwin.sls +03/06/2020 01:14 PM 505 gvim.sls +03/06/2020 01:14 PM 622 handbrake.sls +03/06/2020 01:14 PM heartbeat +03/06/2020 01:14 PM 503 hipchat.sls +03/06/2020 01:14 PM 771 hostsfileeditor.sls +03/06/2020 01:14 PM 623 hwinfo.sls +03/06/2020 01:14 PM 339 ice.sls +03/06/2020 01:14 PM 493 icecast.sls +03/06/2020 01:14 PM 377 icloud.sls +03/06/2020 01:14 PM 2,197 iismediaservices.sls +03/06/2020 01:14 PM 358 influx-capacitor.sls +03/06/2020 01:14 PM 644 inkscape.sls +03/06/2020 01:14 PM 646 intellij-community.sls +03/06/2020 01:14 PM 618 intellij-ultimate.sls +03/06/2020 01:14 PM 360 internet-evidence-finder.sls +03/06/2020 01:14 PM 702 irfanview-plugins.sls +03/06/2020 01:14 PM 1,610 irfanview.sls +03/06/2020 01:14 PM 697 isapirewrite-lite.sls +03/06/2020 01:14 PM 2,602 itunes.sls +03/06/2020 01:14 PM 1,279 jdk8.sls +03/06/2020 01:14 PM 1,200 jre.sls +03/06/2020 01:14 PM 1,480 jre8.sls +03/06/2020 01:14 PM 995 jungledisk-server-management.sls +03/06/2020 01:14 PM 891 jungledisk-server.sls +03/06/2020 01:14 PM 921 jungledisk-workgroup.sls +03/06/2020 01:14 PM 518 kdiff3.sls +03/06/2020 01:14 PM 1,091 keepass-2x.sls +03/06/2020 01:14 PM 2,655 keepass.sls +03/06/2020 01:14 PM 673 lastpass.sls +03/06/2020 01:14 PM 1,329 lazarus.sls +03/06/2020 01:14 PM 951 libreoffice.sls +03/06/2020 01:14 PM 419 logparser.sls +03/06/2020 01:14 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:14 PM 722 malwarebytes.sls +03/06/2020 01:14 PM 1,884 mariadb.sls +03/06/2020 01:14 PM 653 mercurial.sls +03/06/2020 01:14 PM 649 messageanalyzer.sls +03/06/2020 01:14 PM metricbeat +03/06/2020 01:14 PM 603 microsoft-build-tools.sls +03/06/2020 01:14 PM 317 mikogo.sls +03/06/2020 01:14 PM 766 miktex-basic.sls +03/06/2020 01:14 PM 787 mongodb.sls +03/06/2020 01:14 PM 831 ms-mbsa.sls +03/06/2020 01:14 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:14 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:14 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:14 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:14 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:14 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:14 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:14 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:14 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:14 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:14 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:14 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:14 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:14 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:14 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:14 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:14 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:14 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:14 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:14 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:14 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:14 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:14 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:14 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:14 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:14 PM 585 mucommander.sls +03/06/2020 01:14 PM 638 mysql-essential.sls +03/06/2020 01:14 PM 632 mysql-installer-community.sls +03/06/2020 01:14 PM 639 mysql-workbench.sls +03/06/2020 01:14 PM 298 never10.sls +03/06/2020 01:14 PM 929 newrelic-infra.sls +03/06/2020 01:14 PM 526 nextcloud-client.sls +03/06/2020 01:14 PM 584 nmap.sls +03/06/2020 01:14 PM 709 node.js-lts.sls +03/06/2020 01:14 PM 733 node.js.sls +03/06/2020 01:14 PM 368 nomacs.sls +03/06/2020 01:14 PM 985 npp.sls +03/06/2020 01:14 PM 1,252 nsclient.sls +03/06/2020 01:14 PM 826 nsis.sls +03/06/2020 01:14 PM 902 ntp.sls +03/06/2020 01:14 PM 793 nunit-console.sls +03/06/2020 01:14 PM 363 nxlog.sls +03/06/2020 01:14 PM 1,081 octopus-tentacle.sls +03/06/2020 01:14 PM 678 openlp.sls +03/06/2020 01:14 PM 1,192 openoffice.sls +03/06/2020 01:14 PM 2,130 openvpn.sls +03/06/2020 01:14 PM 587 osquery.sls +03/06/2020 01:14 PM 878 ossec-agent.sls +03/06/2020 01:14 PM 590 owncloud.sls +03/06/2020 01:14 PM packetbeat +03/06/2020 01:14 PM 400 pandoc.sls +03/06/2020 01:14 PM 814 parallels-client-15.sls +03/06/2020 01:14 PM 1,709 pass4win.sls +03/06/2020 01:14 PM 378 passware-kit-agent.sls +03/06/2020 01:14 PM 416 passware-kit-forensic.sls +03/06/2020 01:14 PM 656 patchmypc-free.sls +03/06/2020 01:14 PM 638 pdf24creator.sls +03/06/2020 01:14 PM 567 pdfcreator.sls +03/06/2020 01:14 PM 611 peazip.sls +03/06/2020 01:14 PM 812 pgadmin4.sls +03/06/2020 01:14 PM 235 pgina.sls +03/06/2020 01:14 PM 617 pidgin.sls +03/06/2020 01:14 PM 1,898 postgresql.sls +03/06/2020 01:14 PM 997 powerbi-desktop.sls +03/06/2020 01:14 PM 864 powershell-core.sls +03/06/2020 01:14 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:14 PM 1,488 putty.sls +03/06/2020 01:14 PM pycharm-pro +03/06/2020 01:14 PM 567 python2_x64.sls +03/06/2020 01:14 PM 526 python2_x86.sls +03/06/2020 01:14 PM 1,540 python3_x64.sls +03/06/2020 01:14 PM 1,435 python3_x86.sls +03/06/2020 01:14 PM 449 qemu.sls +03/06/2020 01:14 PM 562 queueexplorerpro.sls +03/06/2020 01:14 PM 1,542 quicktime.sls +03/06/2020 01:14 PM 495 rabbitmq.sls +03/06/2020 01:14 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:14 PM 375 rakudo-star_x64.sls +03/06/2020 01:14 PM 888 rasclient.sls +03/06/2020 01:14 PM 444 rdcman.sls +03/06/2020 01:14 PM 609 rocketchat.sls +03/06/2020 01:14 PM 526 rubyinstaller_x64.sls +03/06/2020 01:14 PM 551 rubyinstaller_x86.sls +03/06/2020 01:14 PM 3,719 salt-minion-py2.sls +03/06/2020 01:14 PM 2,050 salt-minion-py3.sls +03/06/2020 01:14 PM 562 sandboxie.sls +03/06/2020 01:14 PM 581 scaleout.sls +03/06/2020 01:14 PM 476 secunia.psi.sls +03/06/2020 01:14 PM 1,190 sensu.sls +03/06/2020 01:14 PM 1,827 sharpdevelop.sls +03/06/2020 01:14 PM 539 skitch.sls +03/06/2020 01:14 PM 1,533 skype-msi.sls +03/06/2020 01:14 PM 708 skype.sls +03/06/2020 01:14 PM 1,244 slack-machine-msi.sls +03/06/2020 01:14 PM 1,023 slack-user-msi.sls +03/06/2020 01:14 PM 329 slack.sls +03/06/2020 01:14 PM 591 smartmontools.sls +03/06/2020 01:14 PM 556 snmptools.sls +03/06/2020 01:14 PM 653 soapui.sls +03/06/2020 01:14 PM 623 software-informer.sls +03/06/2020 01:14 PM 1,039 sourcetree.sls +03/06/2020 01:14 PM 591 spybot-anti-beacon.sls +03/06/2020 01:14 PM 765 spybot.sls +03/06/2020 01:14 PM 664 sscserv-free.sls +03/06/2020 01:14 PM stayawake +03/06/2020 01:14 PM 443 steam.sls +03/06/2020 01:14 PM 658 stellarium.sls +03/06/2020 01:14 PM 540 strawberryperl_x64.sls +03/06/2020 01:14 PM 531 strawberryperl_x86.sls +03/06/2020 01:14 PM 521 stunnel.sls +03/06/2020 01:14 PM 398 subinacl.sls +03/06/2020 01:14 PM 467 sumatrapdf.sls +03/06/2020 01:14 PM 769 svn.sls +03/06/2020 01:14 PM 534 teamviewer.sls +03/06/2020 01:14 PM 549 teamviewer_host.sls +03/06/2020 01:14 PM 749 teracopy.sls +03/06/2020 01:14 PM 491 texmaker.sls +03/06/2020 01:14 PM 709 texniccenter.sls +03/06/2020 01:14 PM 639 texstudio.sls +03/06/2020 01:14 PM 643 texworks.sls +03/06/2020 01:14 PM 937 thunderbird.sls +03/06/2020 01:14 PM 1,014 tightvnc.sls +03/06/2020 01:14 PM 623 todotxt.net.sls +03/06/2020 01:14 PM 551 todour.sls +03/06/2020 01:14 PM 630 tortoise-bzr.sls +03/06/2020 01:14 PM 983 tortoise-git.sls +03/06/2020 01:14 PM 1,367 tortoise-hg.sls +03/06/2020 01:14 PM 897 tortoise-svn.sls +03/06/2020 01:14 PM 503 truecrypt.sls +03/06/2020 01:14 PM 662 ultradefrag.sls +03/06/2020 01:14 PM 1,598 urlrewrite.sls +03/06/2020 01:14 PM 560 usbdlm.sls +03/06/2020 01:14 PM 1,361 vagrant.sls +03/06/2020 01:14 PM 479 vcforpython27.sls +03/06/2020 01:14 PM 820 vcxsrv.sls +03/06/2020 01:14 PM 434 verysleepy.sls +03/06/2020 01:14 PM 611 veyon.sls +03/06/2020 01:14 PM 2,570 virtualbox.sls +03/06/2020 01:14 PM 794 viscosity.sls +03/06/2020 01:14 PM 657 vivaldi.sls +03/06/2020 01:14 PM 739 vlc.sls +03/06/2020 01:14 PM 713 vs-community.sls +03/06/2020 01:14 PM 1,388 vscode.sls +03/06/2020 01:14 PM 325 vsee.sls +03/06/2020 01:14 PM 640 vs_remotetools_2017.sls +03/06/2020 01:14 PM 835 wamp-server-3.sls +03/06/2020 01:14 PM 585 wamp-stack.sls +03/06/2020 01:14 PM 775 webdeploy.sls +03/06/2020 01:14 PM 842 webplatforminstaller.sls +03/06/2020 01:14 PM 610 win-app-manager.sls +03/06/2020 01:14 PM 467 windirstat.sls +03/06/2020 01:14 PM 468 winhttpcertcfg.sls +03/06/2020 01:14 PM winlogbeat +03/06/2020 01:14 PM 618 winmerge.sls +03/06/2020 01:14 PM 737 winmtr.sls +03/06/2020 01:14 PM 288 winpcap.sls +03/06/2020 01:14 PM 825 winrar.sls +03/06/2020 01:14 PM 828 winscp.sls +03/06/2020 01:14 PM 1,136 wireshark.sls +03/06/2020 01:14 PM wmi_provider +03/06/2020 01:14 PM 539 wscc.sls +03/06/2020 01:14 PM 726 wufuc.sls +03/06/2020 01:14 PM 352 xampp.sls +03/06/2020 01:14 PM 649 xming.sls +03/06/2020 01:14 PM 621 yubikey-manager.sls +03/06/2020 01:14 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:14 PM 1,119 zabbix-agent.sls +03/06/2020 01:14 PM zipinstaller +03/06/2020 01:14 PM 278 zoom.sls 284 File(s) 232,192 bytes - 16 Dir(s) 49,621,061,632 bytes free -2020-03-04 12:12:41,510 [salt.state :938 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:12:41,510 [salt.state :320 ][INFO ][7072] {'pkg.refresh_db': {'failed': 0, 'success': 298, 'total': 298}} -2020-03-04 12:12:41,510 [salt.state :1997][INFO ][7072] Completed state [pkg.refresh_db] at time 12:12:41.510328 (duration_in_ms=14391.109) -2020-03-04 12:12:41,525 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. -2020-03-04 12:12:41,541 [salt.state :1819][INFO ][7072] Running state [7zip] at time 12:12:41.541748 -2020-03-04 12:12:41,541 [salt.state :1852][INFO ][7072] Executing state pkg.installed for [7zip] -2020-03-04 12:12:41,556 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:12:41,556 [salt.loaded.int.module.win_pkg:802 ][INFO ][7072] Refresh skipped, age of winrepo metadata in seconds (0.10867547988891602) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:12:41,556 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.108675) -2020-03-04 12:12:41,682 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,682 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,682 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,682 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,682 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,713 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:12:41,744 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:12:41,760 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:12:41,760 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.312260) -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:41,791 [salt.utils.http :234 ][DEBUG ][7072] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method -2020-03-04 12:12:41,807 [salt.utils.http :235 ][DEBUG ][7072] Using backend: tornado -2020-03-04 12:12:44,416 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' -2020-03-04 12:12:45,072 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.624881) -2020-03-04 12:12:45,072 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,072 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,087 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,103 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,103 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,119 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:12:45,119 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.671227) -2020-03-04 12:12:45,119 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,119 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,119 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,119 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,135 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,151 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:45,167 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. -2020-03-04 12:12:45,186 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. -2020-03-04 12:12:45,186 [salt.state :320 ][INFO ][7072] Made the following changes: + 16 Dir(s) 49,585,500,160 bytes free +2020-03-06 10:14:53,015 [salt.state :986 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:14:53,015 [salt.state :320 ][INFO ][3700] {'pkg.refresh_db': {'total': 298, 'success': 298, 'failed': 0}} +2020-03-06 10:14:53,015 [salt.state :2045][INFO ][3700] Completed state [pkg.refresh_db] at time 10:14:53.015266 (duration_in_ms=15265.869) +2020-03-06 10:14:53,030 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:14:53,046 [salt.state :1867][INFO ][3700] Running state [7zip] at time 10:14:53.046589 +2020-03-06 10:14:53,046 [salt.state :1900][INFO ][3700] Executing state pkg.installed for [7zip] +2020-03-06 10:14:53,109 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:14:53,124 [salt.loaded.int.module.win_pkg:806 ][INFO ][3700] Refresh skipped, age of winrepo metadata in seconds (0.18783235549926758) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:14:53,124 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.187832) +2020-03-06 10:14:53,249 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:14:53,264 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:14:53,296 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:14:53,296 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.358953) +2020-03-06 10:14:53,296 [salt.utils.http :234 ][DEBUG ][3700] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:14:53,311 [salt.utils.http :235 ][DEBUG ][3700] Using backend: tornado +2020-03-06 10:14:57,827 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:14:58,593 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:05.655935) +2020-03-06 10:14:58,624 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:14:58,624 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:05.687662) +2020-03-06 10:14:58,656 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:14:58,671 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:14:58,671 [salt.state :320 ][INFO ][3700] Made the following changes: '7zip' changed from 'absent' to '18.06.00.0' -2020-03-04 12:12:45,197 [salt.state :1000][DEBUG ][7072] Refreshing modules... -2020-03-04 12:12:45,228 [salt.state :966 ][INFO ][7072] Loading fresh modules for state activity -2020-03-04 12:12:45,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:12:45,291 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:12:45,306 [salt.state :1997][INFO ][7072] Completed state [7zip] at time 12:12:45.306716 (duration_in_ms=3764.968) -2020-03-04 12:12:45,306 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded config.option -2020-03-04 12:12:45,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pkg.install -2020-03-04 12:12:45,322 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pkg.installed -2020-03-04 12:12:45,322 [salt.state :1819][INFO ][7072] Running state [git] at time 12:12:45.322663 -2020-03-04 12:12:45,322 [salt.state :1852][INFO ][7072] Executing state pkg.installed for [git] -2020-03-04 12:12:45,947 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt.secret_key, ret: _|- -2020-03-04 12:12:45,947 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt:secret_key, ret: _|- -2020-03-04 12:12:46,244 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet.api_key, ret: _|- -2020-03-04 12:12:46,260 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet:api_key, ret: _|- -2020-03-04 12:12:46,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded reg.read_value -2020-03-04 12:12:46,603 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops.api_key, ret: _|- -2020-03-04 12:12:46,603 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops:api_key, ret: _|- -2020-03-04 12:12:52,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded platform.is_windows -2020-03-04 12:12:52,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded path.which -2020-03-04 12:12:52,666 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:12:52,666 [salt.loaded.int.module.win_pkg:802 ][INFO ][7072] Refresh skipped, age of winrepo metadata in seconds (11.218985080718994) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:12:52,666 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:11.218985) -2020-03-04 12:12:52,666 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,666 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,681 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,697 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,713 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:12:52,729 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:12:52,744 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:12:52,744 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:11.296146) -2020-03-04 12:12:52,759 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,759 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,759 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,759 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,759 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,759 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,759 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,775 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +2020-03-06 10:14:58,686 [salt.state :1048][DEBUG ][3700] Refreshing modules... +2020-03-06 10:14:58,734 [salt.state :1014][INFO ][3700] Loading fresh modules for state activity +2020-03-06 10:14:58,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:14:58,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:14:58,843 [salt.state :2045][INFO ][3700] Completed state [7zip] at time 10:14:58.843445 (duration_in_ms=5796.856) +2020-03-06 10:14:58,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded config.option +2020-03-06 10:14:58,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded pkg.install +2020-03-06 10:14:58,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded pkg.installed +2020-03-06 10:14:58,921 [salt.state :1867][INFO ][3700] Running state [kdiff3] at time 10:14:58.921575 +2020-03-06 10:14:58,921 [salt.state :1900][INFO ][3700] Executing state pkg.installed for [kdiff3] +2020-03-06 10:15:00,640 [salt.config :2215][DEBUG ][3700] Missing configuration file: /etc/salt/minion +2020-03-06 10:15:00,640 [salt.config :3612][DEBUG ][3700] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:15:00,827 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:15:00,842 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:15:01,358 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:15:01,358 [salt.loader :1671][DEBUG ][3700] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:15:02,233 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: ifttt.secret_key, ret: _|- +2020-03-06 10:15:02,233 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: ifttt:secret_key, ret: _|- +2020-03-06 10:15:03,343 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: pushbullet.api_key, ret: _|- +2020-03-06 10:15:03,343 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: pushbullet:api_key, ret: _|- +2020-03-06 10:15:03,781 [salt.loader :1671][DEBUG ][3700] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,791 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:15:04,171 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: victorops.api_key, ret: _|- +2020-03-06 10:15:04,171 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: victorops:api_key, ret: _|- +2020-03-06 10:15:13,812 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:15:13,812 [salt.loaded.int.module.win_pkg:806 ][INFO ][3700] Refresh skipped, age of winrepo metadata in seconds (20.87512969970703) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:15:13,812 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:20.875130) +2020-03-06 10:15:13,842 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:15:13,874 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:15:13,889 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:15:13,889 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:20.952798) +2020-03-06 10:15:13,905 [salt.utils.http :234 ][DEBUG ][3700] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:15:13,905 [salt.utils.http :235 ][DEBUG ][3700] Using backend: tornado +2020-03-06 10:15:34,312 [salt.state :1987][DEBUG ][3700] An exception occurred in this state: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:12:52,791 [salt.utils.http :234 ][DEBUG ][7072] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method -2020-03-04 12:12:52,791 [salt.utils.http :235 ][DEBUG ][7072] Using backend: tornado -2020-03-04 12:12:56,510 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' -2020-03-04 12:13:18,384 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:36.936966) -2020-03-04 12:13:18,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,400 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,416 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,432 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,432 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:13:18,447 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:36.999820) -2020-03-04 12:13:18,447 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,447 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,447 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,463 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,478 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,478 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,478 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:18,478 [salt.state :320 ][INFO ][7072] Made the following changes: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe +2020-03-06 10:15:34,343 [salt.state :322 ][ERROR ][3700] An exception occurred in this state: Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe + +2020-03-06 10:15:34,343 [salt.state :2045][INFO ][3700] Completed state [kdiff3] at time 10:15:34.343366 (duration_in_ms=35421.791) +2020-03-06 10:15:34,359 [salt.state :1867][INFO ][3700] Running state [git] at time 10:15:34.359009 +2020-03-06 10:15:34,359 [salt.state :1900][INFO ][3700] Executing state pkg.installed for [git] +2020-03-06 10:15:34,390 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:15:34,390 [salt.loaded.int.module.win_pkg:806 ][INFO ][3700] Refresh skipped, age of winrepo metadata in seconds (41.453603982925415) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:15:34,390 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:41.453604) +2020-03-06 10:15:34,421 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:15:34,437 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:15:34,468 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:15:34,468 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:00:41.531683) +2020-03-06 10:15:34,483 [salt.utils.http :234 ][DEBUG ][3700] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:15:34,483 [salt.utils.http :235 ][DEBUG ][3700] Using backend: tornado +2020-03-06 10:15:38,374 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:16:00,296 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:01:07.359383) +2020-03-06 10:16:00,327 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:16:00,327 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3700] Using existing pkg metadata db for saltenv 'base' (age is 0:01:07.390575) +2020-03-06 10:16:00,343 [salt.state :320 ][INFO ][3700] Made the following changes: 'git' changed from 'absent' to '2.23.0.windows.1' -2020-03-04 12:13:18,478 [salt.state :1000][DEBUG ][7072] Refreshing modules... -2020-03-04 12:13:18,525 [salt.state :966 ][INFO ][7072] Loading fresh modules for state activity -2020-03-04 12:13:18,603 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:13:18,603 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:13:18,619 [salt.state :1997][INFO ][7072] Completed state [git] at time 12:13:18.619282 (duration_in_ms=33296.619) -2020-03-04 12:13:18,619 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded config.option -2020-03-04 12:13:18,635 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pkg.install -2020-03-04 12:13:18,635 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pkg.installed -2020-03-04 12:13:18,651 [salt.state :1819][INFO ][7072] Running state [kdiff3] at time 12:13:18.651052 -2020-03-04 12:13:18,651 [salt.state :1852][INFO ][7072] Executing state pkg.installed for [kdiff3] -2020-03-04 12:13:19,322 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt.secret_key, ret: _|- -2020-03-04 12:13:19,322 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt:secret_key, ret: _|- -2020-03-04 12:13:19,635 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet.api_key, ret: _|- -2020-03-04 12:13:19,650 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet:api_key, ret: _|- -2020-03-04 12:13:19,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded reg.read_value -2020-03-04 12:13:20,072 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops.api_key, ret: _|- -2020-03-04 12:13:20,072 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops:api_key, ret: _|- -2020-03-04 12:13:25,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded platform.is_windows -2020-03-04 12:13:25,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded path.which -2020-03-04 12:13:25,948 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:13:25,948 [salt.loaded.int.module.win_pkg:802 ][INFO ][7072] Refresh skipped, age of winrepo metadata in seconds (44.50042009353638) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:13:25,948 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:44.500420) -2020-03-04 12:13:25,948 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,962 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,978 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,978 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,978 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,978 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,978 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:25,994 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:13:26,009 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:13:26,025 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:13:26,025 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:00:44.577980) -2020-03-04 12:13:26,042 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,042 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,042 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,042 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,042 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,042 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,056 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:26,072 [salt.utils.http :234 ][DEBUG ][7072] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method -2020-03-04 12:13:26,072 [salt.utils.http :235 ][DEBUG ][7072] Using backend: tornado -2020-03-04 12:13:51,228 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' -2020-03-04 12:13:52,682 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:01:11.234124) -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,698 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,712 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,728 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:13:52,728 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][7072] Using existing pkg metadata db for saltenv 'base' (age is 0:01:11.280518) -2020-03-04 12:13:52,744 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,744 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,744 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,744 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,744 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,744 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-21-3999504958-164372517-1785504569-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][7072] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:13:52,760 [salt.state :320 ][INFO ][7072] Made the following changes: -'kdiff3' changed from 'absent' to 'Not Found' - -2020-03-04 12:13:52,775 [salt.state :1000][DEBUG ][7072] Refreshing modules... -2020-03-04 12:13:52,806 [salt.state :966 ][INFO ][7072] Loading fresh modules for state activity -2020-03-04 12:13:52,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded jinja.render -2020-03-04 12:13:52,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded yaml.render -2020-03-04 12:13:52,885 [salt.state :1997][INFO ][7072] Completed state [kdiff3] at time 12:13:52.885102 (duration_in_ms=34234.05) -2020-03-04 12:13:52,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded config.option -2020-03-04 12:13:52,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded module.run -2020-03-04 12:13:52,885 [salt.state :1819][INFO ][7072] Running state [windows_environment.refresh.path] at time 12:13:52.885102 -2020-03-04 12:13:52,900 [salt.state :1852][INFO ][7072] Executing state module.run for [windows_environment.refresh.path] -2020-03-04 12:13:52,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded windows_environment.refresh -2020-03-04 12:13:52,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cmd.run -2020-03-04 12:13:52,900 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' -2020-03-04 12:13:52,916 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: +2020-03-06 10:16:00,343 [salt.state :1048][DEBUG ][3700] Refreshing modules... +2020-03-06 10:16:00,437 [salt.state :1014][INFO ][3700] Loading fresh modules for state activity +2020-03-06 10:16:00,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded jinja.render +2020-03-06 10:16:00,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded yaml.render +2020-03-06 10:16:00,561 [salt.state :2045][INFO ][3700] Completed state [git] at time 10:16:00.561768 (duration_in_ms=26202.759) +2020-03-06 10:16:00,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded config.option +2020-03-06 10:16:00,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded module.run +2020-03-06 10:16:00,577 [salt.state :1867][INFO ][3700] Running state [windows_environment.refresh.path] at time 10:16:00.577394 +2020-03-06 10:16:00,577 [salt.state :1900][INFO ][3700] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:16:00,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded windows_environment.refresh +2020-03-06 10:16:00,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cmd.run +2020-03-06 10:16:00,593 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:16:00,624 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe OS REG_SZ Windows_NT @@ -27951,7 +27028,7 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:13:52,932 [salt.loaded.int.module.cmdmod:1202][DEBUG ][7072] output: +2020-03-06 10:16:00,624 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3700] output: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe OS REG_SZ Windows_NT @@ -27967,313 +27044,326 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:13:52,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded environ.get -2020-03-04 12:13:52,932 [py.warnings :919 ][WARNING ][7072] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +2020-03-06 10:16:00,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded environ.get +2020-03-06 10:16:00,640 [py.warnings :919 ][WARNING ][3700] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) -2020-03-04 12:13:52,932 [py.warnings :919 ][WARNING ][7072] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +2020-03-06 10:16:00,640 [py.warnings :919 ][WARNING ][3700] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) -2020-03-04 12:13:52,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded event.fire -2020-03-04 12:13:52,947 [salt.utils.event :322 ][DEBUG ][7072] SaltEvent PUB socket URI: 4510 -2020-03-04 12:13:52,947 [salt.utils.event :323 ][DEBUG ][7072] SaltEvent PULL socket URI: 4511 -2020-03-04 12:13:52,947 [salt.utils.event :737 ][DEBUG ][7072] Sending event: tag = environ_setenv; data = {'permanent': False, 'clear_all': False, '_stamp': '2020-03-04T20:13:52.947277', 'false_unsets': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 12:13:52,947 [salt.transport.ipc:364 ][DEBUG ][7072] Closing IPCMessageClient instance -2020-03-04 12:13:52,947 [salt.state :320 ][INFO ][7072] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 12:13:52,947 [salt.state :1997][INFO ][7072] Completed state [windows_environment.refresh.path] at time 12:13:52.947277 (duration_in_ms=62.175) -2020-03-04 12:13:52,947 [salt.state :1819][INFO ][7072] Running state [chocolatey.bootstrap] at time 12:13:52.947277 -2020-03-04 12:13:52,962 [salt.state :1852][INFO ][7072] Executing state module.run for [chocolatey.bootstrap] -2020-03-04 12:13:53,901 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt.secret_key, ret: _|- -2020-03-04 12:13:53,901 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: ifttt:secret_key, ret: _|- -2020-03-04 12:13:54,229 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet.api_key, ret: _|- -2020-03-04 12:13:54,229 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: pushbullet:api_key, ret: _|- -2020-03-04 12:13:54,463 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded reg.read_value -2020-03-04 12:13:54,603 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops.api_key, ret: _|- -2020-03-04 12:13:54,603 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: victorops:api_key, ret: _|- -2020-03-04 12:14:01,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded platform.is_windows -2020-03-04 12:14:01,666 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded path.which -2020-03-04 12:14:01,713 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:14:01,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded apache.config -2020-03-04 12:14:01,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded apache.a2enconf -2020-03-04 12:14:01,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded apache.a2ensite -2020-03-04 12:14:01,806 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:14:01,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:14:01,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:14:01,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:14:01,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:14:01,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:14:01,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:14:01,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:14:01,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_asg.exists -2020-03-04 12:14:01,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cfn.exists -2020-03-04 12:14:01,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:14:01,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:14:01,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:14:01,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:14:01,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:14:01,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:14:01,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_dynamodb.exists -2020-03-04 12:14:01,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_ec2.get_key -2020-03-04 12:14:01,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elasticache.exists -2020-03-04 12:14:01,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:14:01,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elb.exists -2020-03-04 12:14:01,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:14:01,885 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_iam.get_user -2020-03-04 12:14:01,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_iam.role_exists -2020-03-04 12:14:01,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_iot.policy_exists -2020-03-04 12:14:01,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_kinesis.exists -2020-03-04 12:14:01,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_kms.describe_key -2020-03-04 12:14:01,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_lambda.function_exists -2020-03-04 12:14:01,900 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_asg.exists -2020-03-04 12:14:01,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_rds.exists -2020-03-04 12:14:01,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_route53.get_record -2020-03-04 12:14:01,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:14:01,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:14:01,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_secgroup.exists -2020-03-04 12:14:01,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_sns.exists -2020-03-04 12:14:01,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_sqs.exists -2020-03-04 12:14:01,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded boto_vpc.exists -2020-03-04 12:14:01,932 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded bower.list -2020-03-04 12:14:01,948 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded chef.client -2020-03-04 12:14:01,948 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cimc.get_system_info -2020-03-04 12:14:01,948 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded cisconso.set_data_value -2020-03-04 12:14:01,963 [salt.loader :1577][DEBUG ][7072] Failed to import states cloud: +2020-03-06 10:16:00,640 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded event.fire +2020-03-06 10:16:00,640 [salt.utils.event :310 ][DEBUG ][3700] SaltEvent PUB socket URI: 4510 +2020-03-06 10:16:00,655 [salt.utils.event :311 ][DEBUG ][3700] SaltEvent PULL socket URI: 4511 +2020-03-06 10:16:00,655 [salt.utils.event :736 ][DEBUG ][3700] Sending event: tag = environ_setenv; data = {'false_unsets': False, 'permanent': False, 'clear_all': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, '_stamp': '2020-03-06T18:16:00.655700'} +2020-03-06 10:16:00,655 [salt.transport.ipc:363 ][DEBUG ][3700] Closing IPCMessageClient instance +2020-03-06 10:16:00,655 [salt.state :320 ][INFO ][3700] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:16:00,655 [salt.state :2045][INFO ][3700] Completed state [windows_environment.refresh.path] at time 10:16:00.655700 (duration_in_ms=78.306) +2020-03-06 10:16:00,655 [salt.state :1867][INFO ][3700] Running state [chocolatey.bootstrap] at time 10:16:00.655700 +2020-03-06 10:16:00,655 [salt.state :1900][INFO ][3700] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:16:02,374 [salt.config :2215][DEBUG ][3700] Missing configuration file: /etc/salt/minion +2020-03-06 10:16:02,390 [salt.config :3612][DEBUG ][3700] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:16:02,530 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:16:02,608 [git.cmd :722 ][DEBUG ][3700] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:16:03,249 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:16:03,249 [salt.loader :1671][DEBUG ][3700] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:14:01,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded ddns.update -2020-03-04 12:14:01,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded chassis.cmd -2020-03-04 12:14:01,978 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:14:02,010 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:14:02,025 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:14:02,041 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:14:02,292 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded esxi.cmd -2020-03-04 12:14:02,306 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:02,369 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: git version 2.23.0.windows.1 -2020-03-04 12:14:02,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded github.list_users -2020-03-04 12:14:02,369 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded glanceng.image_get -2020-03-04 12:14:02,384 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded elasticsearch.exists -2020-03-04 12:14:02,384 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: grafana_version, ret: _|- -2020-03-04 12:14:02,384 [salt.loaded.int.module.config:398 ][DEBUG ][7072] key: grafana_version, ret: _|- -2020-03-04 12:14:02,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded icinga2.generate_ticket -2020-03-04 12:14:02,400 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded ifttt.trigger_event -2020-03-04 12:14:02,416 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:14:02,431 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:14:02,463 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:14:02,478 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:14:02,494 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:14:02,509 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:14:02,541 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:14:02,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.domain_get -2020-03-04 12:14:02,541 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:14:02,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.group_get -2020-03-04 12:14:02,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.project_get -2020-03-04 12:14:02,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.role_get -2020-03-04 12:14:02,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.role_grant -2020-03-04 12:14:02,556 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.service_get -2020-03-04 12:14:02,572 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded keystoneng.user_get -2020-03-04 12:14:02,587 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:14:02,603 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:14:02,619 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:14:02,635 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:14:02,666 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:14:02,681 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:14:02,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:14:02,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:14:02,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:14:02,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded lxd.version -2020-03-04 12:14:02,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded memcached.status -2020-03-04 12:14:02,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mongodb.db_exists -2020-03-04 12:14:02,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mongodb.user_exists -2020-03-04 12:14:02,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:14:02,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:14:02,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:14:02,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded mssql.version -2020-03-04 12:14:02,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_networks -2020-03-04 12:14:02,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_subnets -2020-03-04 12:14:02,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_subnets -2020-03-04 12:14:02,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded neutronng.list_subnets -2020-03-04 12:14:02,759 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded npm.list -2020-03-04 12:14:02,759 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nxos.cmd -2020-03-04 12:14:02,775 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:14:02,791 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:14:02,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded panos.commit -2020-03-04 12:14:02,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pdbedit.create -2020-03-04 12:14:02,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded pecl.list -2020-03-04 12:14:02,838 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:14:02,838 [salt.loader :1577][DEBUG ][7072] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:16:04,077 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: ifttt.secret_key, ret: _|- +2020-03-06 10:16:04,077 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: ifttt:secret_key, ret: _|- +2020-03-06 10:16:05,327 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: pushbullet.api_key, ret: _|- +2020-03-06 10:16:05,327 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: pushbullet:api_key, ret: _|- +2020-03-06 10:16:05,952 [salt.loader :1671][DEBUG ][3700] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:14:02,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.cluster_exists -2020-03-04 12:14:02,838 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.user_exists -2020-03-04 12:14:02,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.create_extension -2020-03-04 12:14:02,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.group_create -2020-03-04 12:14:02,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.datadir_init -2020-03-04 12:14:02,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.language_create -2020-03-04 12:14:02,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.privileges_grant -2020-03-04 12:14:02,854 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.schema_exists -2020-03-04 12:14:02,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.tablespace_exists -2020-03-04 12:14:02,869 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded postgres.user_exists -2020-03-04 12:14:02,901 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:14:02,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded selinux.getenforce -2020-03-04 12:14:02,916 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded splunk.list_users -2020-03-04 12:14:02,931 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded splunk_search.get -2020-03-04 12:14:02,947 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:14:02,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded tomcat.status -2020-03-04 12:14:02,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded vagrant.version -2020-03-04 12:14:02,963 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded victorops.create_event -2020-03-04 12:14:02,979 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded win_iis.create_site -2020-03-04 12:14:02,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded win_servermanager.install -2020-03-04 12:14:02,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:14:02,994 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded wordpress.show_plugin -2020-03-04 12:14:03,009 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded x509.get_pem_entry -2020-03-04 12:14:03,009 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded xmpp.send_msg -2020-03-04 12:14:03,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded zk_concurrency.lock -2020-03-04 12:14:03,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded zonecfg.create -2020-03-04 12:14:03,025 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded zookeeper.create -2020-03-04 12:14:03,041 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:14:03,057 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' -2020-03-04 12:14:03,276 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: INFO: Could not find files for the given pattern(s). -2020-03-04 12:14:03,276 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][7072] retcode: 1 -2020-03-04 12:14:03,276 [salt.state :915 ][DEBUG ][7072] Last command return code: 1 -2020-03-04 12:14:03,292 [salt.utils.http :234 ][DEBUG ][7072] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method -2020-03-04 12:14:03,292 [salt.utils.http :235 ][DEBUG ][7072] Using backend: tornado -2020-03-04 12:14:03,556 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:10,353 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: Preparing: C:\5bb8c37de459c97a91edc213\header.bmp... -Preparing: C:\5bb8c37de459c97a91edc213\SplashScreen.bmp... -Preparing: C:\5bb8c37de459c97a91edc213\watermark.bmp... -Preparing: C:\5bb8c37de459c97a91edc213\DisplayIcon.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Print.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate1.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate2.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate3.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate4.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate5.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate6.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate7.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Rotate8.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Save.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\Setup.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\stop.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\SysReqMet.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\SysReqNotMet.ico... -Preparing: C:\5bb8c37de459c97a91edc213\Graphics\warn.ico... -Preparing: C:\5bb8c37de459c97a91edc213\1033\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1042\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1041\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1037\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1025\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1035\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1030\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1044\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1043\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1040\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1029\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1031\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1036\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1032\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1038\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\2052\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1028\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\3076\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1055\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1053\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\3082\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\2070\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1046\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1049\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\1045\LocalizedData.xml... -Preparing: C:\5bb8c37de459c97a91edc213\Client\Parameterinfo.xml... -Preparing: C:\5bb8c37de459c97a91edc213\Extended\Parameterinfo.xml... -Preparing: C:\5bb8c37de459c97a91edc213\ParameterInfo.xml... -Preparing: C:\5bb8c37de459c97a91edc213\Strings.xml... -Preparing: C:\5bb8c37de459c97a91edc213\UiInfo.xml... -Preparing: C:\5bb8c37de459c97a91edc213\Client\UiInfo.xml... -Preparing: C:\5bb8c37de459c97a91edc213\Extended\UiInfo.xml... -Preparing: C:\5bb8c37de459c97a91edc213\SetupUi.xsd... -Preparing: C:\5bb8c37de459c97a91edc213\DHtmlHeader.html... -Preparing: C:\5bb8c37de459c97a91edc213\1033\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1025\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1028\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1030\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1031\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1029\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1036\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1035\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1032\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1038\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1037\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1040\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1041\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1042\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1044\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1043\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1046\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1045\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1055\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1053\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\2052\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\1049\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\3082\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\2070\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\3076\eula.rtf... -Preparing: C:\5bb8c37de459c97a91edc213\Setup.exe... -Preparing: C:\5bb8c37de459c97a91edc213\SetupUtility.exe... -Preparing: C:\5bb8c37de459c97a91edc213\SetupEngine.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1025\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1033\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1029\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1030\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1035\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1031\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1036\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1032\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1028\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\2052\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\3076\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1042\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1041\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1037\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1044\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1053\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1055\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1040\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1045\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1046\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1049\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1038\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\2070\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\3082\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\1043\SetupResources.dll... -Preparing: C:\5bb8c37de459c97a91edc213\SetupUi.dll... -Preparing: C:\5bb8c37de459c97a91edc213\sqmapi.dll... -2020-03-04 12:14:10,353 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' -2020-03-04 12:14:22,729 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: Getting latest version of the Chocolatey package for download. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:16:06,312 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: victorops.api_key, ret: _|- +2020-03-06 10:16:06,312 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: victorops:api_key, ret: _|- +2020-03-06 10:16:15,514 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:16:15,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded acme.cert +2020-03-06 10:16:15,530 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded alternatives.auto +2020-03-06 10:16:15,608 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded apache.config +2020-03-06 10:16:15,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded apache.a2enconf +2020-03-06 10:16:15,624 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded apache.a2ensite +2020-03-06 10:16:15,640 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:16:15,656 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded at.at +2020-03-06 10:16:15,671 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:16:15,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:16:15,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:16:15,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:16:15,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:16:15,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded disk.tune +2020-03-06 10:16:15,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:16:15,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:16:15,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:16:15,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:16:15,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:16:15,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_asg.exists +2020-03-06 10:16:15,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cfn.exists +2020-03-06 10:16:15,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:16:15,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:16:15,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:16:15,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:16:15,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:16:15,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:16:15,734 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_dynamodb.exists +2020-03-06 10:16:15,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_ec2.get_key +2020-03-06 10:16:15,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elasticache.exists +2020-03-06 10:16:15,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:16:15,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elb.exists +2020-03-06 10:16:15,749 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:16:15,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_iam.get_user +2020-03-06 10:16:15,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_iam.role_exists +2020-03-06 10:16:15,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_iot.policy_exists +2020-03-06 10:16:15,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_kinesis.exists +2020-03-06 10:16:15,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_kms.describe_key +2020-03-06 10:16:15,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_lambda.function_exists +2020-03-06 10:16:15,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_asg.exists +2020-03-06 10:16:15,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_rds.exists +2020-03-06 10:16:15,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_route53.get_record +2020-03-06 10:16:15,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:16:15,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:16:15,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_secgroup.exists +2020-03-06 10:16:15,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_sns.exists +2020-03-06 10:16:15,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_sqs.exists +2020-03-06 10:16:15,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded boto_vpc.exists +2020-03-06 10:16:15,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded bower.list +2020-03-06 10:16:15,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded chef.client +2020-03-06 10:16:15,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cimc.get_system_info +2020-03-06 10:16:15,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cisconso.set_data_value +2020-03-06 10:16:15,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded cron.list_tab +2020-03-06 10:16:15,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded ddns.update +2020-03-06 10:16:15,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded chassis.cmd +2020-03-06 10:16:15,859 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:16:15,892 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:16:15,921 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:16:15,937 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:16:15,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded eselect.exec_action +2020-03-06 10:16:16,280 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded esxi.cmd +2020-03-06 10:16:16,311 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:16:16,343 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: git version 2.23.0.windows.1 +2020-03-06 10:16:16,343 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded github.list_users +2020-03-06 10:16:16,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded glanceng.image_get +2020-03-06 10:16:16,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded glusterfs.list_volumes +2020-03-06 10:16:16,359 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded elasticsearch.exists +2020-03-06 10:16:16,374 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: grafana_version, ret: _|- +2020-03-06 10:16:16,374 [salt.loaded.int.module.config:483 ][DEBUG ][3700] key: grafana_version, ret: _|- +2020-03-06 10:16:16,390 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded icinga2.generate_ticket +2020-03-06 10:16:16,390 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded ifttt.trigger_event +2020-03-06 10:16:16,421 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:16:16,437 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:16:16,467 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:16:16,483 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:16:16,515 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:16:16,531 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:16:16,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded ipset.version +2020-03-06 10:16:16,546 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded iptables.version +2020-03-06 10:16:16,561 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded kapacitor.version +2020-03-06 10:16:16,577 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:16:16,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keyboard.get_sys +2020-03-06 10:16:16,577 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystone.auth +2020-03-06 10:16:16,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.domain_get +2020-03-06 10:16:16,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:16:16,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.group_get +2020-03-06 10:16:16,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.project_get +2020-03-06 10:16:16,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.role_get +2020-03-06 10:16:16,593 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.role_grant +2020-03-06 10:16:16,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.service_get +2020-03-06 10:16:16,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystoneng.user_get +2020-03-06 10:16:16,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded keystore.list +2020-03-06 10:16:16,609 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded kmod.available +2020-03-06 10:16:16,639 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:16:16,639 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded layman.add +2020-03-06 10:16:16,671 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:16:16,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded logadm.list_conf +2020-03-06 10:16:16,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded logrotate.show_conf +2020-03-06 10:16:16,686 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lvs.get_rules +2020-03-06 10:16:16,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lvs.get_rules +2020-03-06 10:16:16,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:16:16,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:16:16,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:16:16,702 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded lxd.version +2020-03-06 10:16:16,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded makeconf.get_var +2020-03-06 10:16:16,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded memcached.status +2020-03-06 10:16:16,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded mongodb.db_exists +2020-03-06 10:16:16,718 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded mongodb.user_exists +2020-03-06 10:16:16,733 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded monit.summary +2020-03-06 10:16:16,750 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_networks +2020-03-06 10:16:16,750 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_subnets +2020-03-06 10:16:16,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_subnets +2020-03-06 10:16:16,764 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded neutronng.list_subnets +2020-03-06 10:16:16,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nftables.version +2020-03-06 10:16:16,780 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded npm.list +2020-03-06 10:16:16,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nxos.cmd +2020-03-06 10:16:16,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded openvswitch.bridge_create +2020-03-06 10:16:16,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded openvswitch.port_add +2020-03-06 10:16:16,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded panos.commit +2020-03-06 10:16:16,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded pdbedit.create +2020-03-06 10:16:16,812 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded pecl.list +2020-03-06 10:16:16,843 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:16:16,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:16:16,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.cluster_exists +2020-03-06 10:16:16,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.user_exists +2020-03-06 10:16:16,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.create_extension +2020-03-06 10:16:16,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.group_create +2020-03-06 10:16:16,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.datadir_init +2020-03-06 10:16:16,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.language_create +2020-03-06 10:16:16,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.privileges_grant +2020-03-06 10:16:16,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.schema_exists +2020-03-06 10:16:16,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.tablespace_exists +2020-03-06 10:16:16,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded postgres.user_exists +2020-03-06 10:16:16,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded quota.report +2020-03-06 10:16:16,906 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:16:16,936 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:16:16,968 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:16:16,984 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded selinux.getenforce +2020-03-06 10:16:16,999 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:16:17,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded snapper.diff +2020-03-06 10:16:17,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded splunk.list_users +2020-03-06 10:16:17,014 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded splunk_search.get +2020-03-06 10:16:17,046 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:16:17,061 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded tomcat.status +2020-03-06 10:16:17,061 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded trafficserver.set_config +2020-03-06 10:16:17,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded vagrant.version +2020-03-06 10:16:17,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded victorops.create_event +2020-03-06 10:16:17,077 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded virt.node_info +2020-03-06 10:16:17,093 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded win_iis.create_site +2020-03-06 10:16:17,109 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded win_servermanager.install +2020-03-06 10:16:17,109 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:16:17,109 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded wordpress.show_plugin +2020-03-06 10:16:17,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded x509.get_pem_entry +2020-03-06 10:16:17,124 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded xmpp.send_msg +2020-03-06 10:16:17,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded zk_concurrency.lock +2020-03-06 10:16:17,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded zonecfg.create +2020-03-06 10:16:17,139 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded zookeeper.create +2020-03-06 10:16:17,155 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:16:17,171 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:16:17,374 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:16:17,374 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][3700] retcode: 1 +2020-03-06 10:16:17,374 [salt.state :951 ][DEBUG ][3700] Last command return code: 1 +2020-03-06 10:16:17,390 [salt.utils.http :234 ][DEBUG ][3700] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:16:17,390 [salt.utils.http :235 ][DEBUG ][3700] Using backend: tornado +2020-03-06 10:16:17,593 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:16:24,389 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Preparing: C:\ba015ee42a70f66c0fc070\header.bmp... +Preparing: C:\ba015ee42a70f66c0fc070\SplashScreen.bmp... +Preparing: C:\ba015ee42a70f66c0fc070\watermark.bmp... +Preparing: C:\ba015ee42a70f66c0fc070\DisplayIcon.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Print.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate1.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate2.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate3.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate4.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate5.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate6.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate7.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Rotate8.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Save.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\Setup.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\stop.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\SysReqMet.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\SysReqNotMet.ico... +Preparing: C:\ba015ee42a70f66c0fc070\Graphics\warn.ico... +Preparing: C:\ba015ee42a70f66c0fc070\1033\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1042\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1041\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1037\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1025\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1035\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1030\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1044\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1043\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1040\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1029\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1031\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1036\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1032\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1038\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\2052\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1028\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\3076\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1055\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1053\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\3082\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\2070\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1046\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1049\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\1045\LocalizedData.xml... +Preparing: C:\ba015ee42a70f66c0fc070\Client\Parameterinfo.xml... +Preparing: C:\ba015ee42a70f66c0fc070\Extended\Parameterinfo.xml... +Preparing: C:\ba015ee42a70f66c0fc070\ParameterInfo.xml... +Preparing: C:\ba015ee42a70f66c0fc070\Strings.xml... +Preparing: C:\ba015ee42a70f66c0fc070\UiInfo.xml... +Preparing: C:\ba015ee42a70f66c0fc070\Client\UiInfo.xml... +Preparing: C:\ba015ee42a70f66c0fc070\Extended\UiInfo.xml... +Preparing: C:\ba015ee42a70f66c0fc070\SetupUi.xsd... +Preparing: C:\ba015ee42a70f66c0fc070\DHtmlHeader.html... +Preparing: C:\ba015ee42a70f66c0fc070\1033\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1025\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1028\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1030\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1031\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1029\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1036\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1035\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1032\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1038\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1037\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1040\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1041\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1042\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1044\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1043\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1046\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1045\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1055\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1053\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\2052\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\1049\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\3082\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\2070\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\3076\eula.rtf... +Preparing: C:\ba015ee42a70f66c0fc070\Setup.exe... +Preparing: C:\ba015ee42a70f66c0fc070\SetupUtility.exe... +Preparing: C:\ba015ee42a70f66c0fc070\SetupEngine.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1025\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1033\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1029\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1030\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1035\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1031\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1036\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1032\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1028\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\2052\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\3076\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1042\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1041\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1037\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1044\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1053\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1055\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1040\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1045\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1046\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1049\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1038\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\2070\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\3082\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\1043\SetupResources.dll... +Preparing: C:\ba015ee42a70f66c0fc070\SetupUi.dll... +Preparing: C:\ba015ee42a70f66c0fc070\sqmapi.dll... +2020-03-06 10:16:24,405 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:16:39,999 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Getting latest version of the Chocolatey package for download. Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. Downloading 7-Zip commandline tool prior to extraction. Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... @@ -28307,17 +27397,17 @@ You may need to shut down and restart powershell and/or consoles first prior to using choco. Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder -2020-03-04 12:14:22,729 [salt.state :320 ][INFO ][7072] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} -2020-03-04 12:14:22,729 [salt.state :1997][INFO ][7072] Completed state [chocolatey.bootstrap] at time 12:14:22.729434 (duration_in_ms=29782.157) -2020-03-04 12:14:22,744 [salt.state :1819][INFO ][7072] Running state [notepadplusplus] at time 12:14:22.744565 -2020-03-04 12:14:22,744 [salt.state :1852][INFO ][7072] Executing state chocolatey.installed for [notepadplusplus] -2020-03-04 12:14:22,744 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:23,963 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: chocolatey|0.10.15 -2020-03-04 12:14:23,963 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:24,728 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: 0.10.15 -2020-03-04 12:14:24,728 [salt.loaded.int.module.cmdmod:1202][DEBUG ][7072] output: 0.10.15 -2020-03-04 12:14:24,728 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:35,479 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: Chocolatey v0.10.15 +2020-03-06 10:16:39,999 [salt.state :320 ][INFO ][3700] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:16:39,999 [salt.state :2045][INFO ][3700] Completed state [chocolatey.bootstrap] at time 10:16:39.999289 (duration_in_ms=39343.589) +2020-03-06 10:16:39,999 [salt.state :1867][INFO ][3700] Running state [notepadplusplus] at time 10:16:39.999289 +2020-03-06 10:16:39,999 [salt.state :1900][INFO ][3700] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:16:39,999 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:16:41,499 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: chocolatey|0.10.15 +2020-03-06 10:16:41,499 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:16:42,436 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: 0.10.15 +2020-03-06 10:16:42,452 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3700] output: 0.10.15 +2020-03-06 10:16:42,452 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:16:55,562 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28338,7 +27428,7 @@ chocolatey-core.extension package files install completed. Performing other inst The install of chocolatey-core.extension was successful. Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' -notepadplusplus.install v7.8.4 [Approved] +notepadplusplus.install v7.8.5 notepadplusplus.install package files install completed. Performing other installation steps. Installing 64-bit notepadplusplus.install... notepadplusplus.install has been installed. @@ -28348,37 +27438,33 @@ Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program fi The install of notepadplusplus.install was successful. Software installed as 'exe', install location is likely default. -notepadplusplus v7.8.4 [Approved] +notepadplusplus v7.8.5 [Approved] notepadplusplus package files install completed. Performing other installation steps. The install of notepadplusplus was successful. Software install location not explicitly set, could be in package or default install location if installer. Chocolatey installed 3/3 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). - -Enjoy using Chocolatey? Explore more amazing features to take your -experience to the next level at - https://chocolatey.org/compare -2020-03-04 12:14:35,479 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:36,604 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: chocolatey|0.10.15 + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:16:55,562 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:16:56,968 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:14:36,604 [salt.state :320 ][INFO ][7072] Made the following changes: -'notepadplusplus.install' changed from 'absent' to '['7.8.4']' -'notepadplusplus' changed from 'absent' to '['7.8.4']' - -2020-03-04 12:14:36,604 [salt.state :1997][INFO ][7072] Completed state [notepadplusplus] at time 12:14:36.604496 (duration_in_ms=13859.931) -2020-03-04 12:14:36,604 [salt.state :1819][INFO ][7072] Running state [windirstat] at time 12:14:36.604496 -2020-03-04 12:14:36,604 [salt.state :1852][INFO ][7072] Executing state chocolatey.installed for [windirstat] -2020-03-04 12:14:36,619 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:37,744 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: chocolatey|0.10.15 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:16:56,968 [salt.state :320 ][INFO ][3700] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:16:56,983 [salt.state :2045][INFO ][3700] Completed state [notepadplusplus] at time 10:16:56.983496 (duration_in_ms=16984.207) +2020-03-06 10:16:56,983 [salt.state :1867][INFO ][3700] Running state [windirstat] at time 10:16:56.983496 +2020-03-06 10:16:56,983 [salt.state :1900][INFO ][3700] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:16:56,983 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:16:58,234 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:14:37,744 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:46,150 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: Chocolatey v0.10.15 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:16:58,249 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:17:09,858 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28402,24 +27488,28 @@ WinDirStat has been installed. Software installed to 'C:\Program Files (x86)\WinDirStat' Chocolatey installed 1/1 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:14:46,150 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:47,400 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: chocolatey|0.10.15 + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). + +Enjoy using Chocolatey? Explore more amazing features to take your +experience to the next level at + https://chocolatey.org/compare +2020-03-06 10:17:09,858 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:17:11,734 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 windirstat|1.1.2.20161210 -2020-03-04 12:14:47,400 [salt.state :320 ][INFO ][7072] Made the following changes: +2020-03-06 10:17:11,734 [salt.state :320 ][INFO ][3700] Made the following changes: 'windirstat' changed from 'absent' to '['1.1.2.20161210']' -2020-03-04 12:14:47,416 [salt.state :1997][INFO ][7072] Completed state [windirstat] at time 12:14:47.416152 (duration_in_ms=10811.656) -2020-03-04 12:14:47,416 [salt.state :1819][INFO ][7072] Running state [TelnetClient] at time 12:14:47.416152 -2020-03-04 12:14:47,416 [salt.state :1852][INFO ][7072] Executing state dism.feature_installed for [TelnetClient] -2020-03-04 12:14:47,416 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. -2020-03-04 12:14:47,431 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:14:52,072 [salt.state :889 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:14:52,072 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:53,228 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: +2020-03-06 10:17:11,734 [salt.state :2045][INFO ][3700] Completed state [windirstat] at time 10:17:11.734214 (duration_in_ms=14750.718) +2020-03-06 10:17:11,734 [salt.state :1867][INFO ][3700] Running state [TelnetClient] at time 10:17:11.734214 +2020-03-06 10:17:11,734 [salt.state :1900][INFO ][3700] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:17:11,749 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:17:11,764 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:17:16,171 [salt.state :906 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:17:16,171 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:17:17,718 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Deployment Image Servicing and Management tool Version: 10.0.16299.15 @@ -28854,7 +27944,7 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:14:53,228 [salt.loaded.int.module.cmdmod:1202][DEBUG ][7072] output: +2020-03-06 10:17:17,733 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3700] output: Deployment Image Servicing and Management tool Version: 10.0.16299.15 @@ -29289,9 +28379,9 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:14:53,228 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:55,369 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 12:14:56,353 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][7072] stdout: +2020-03-06 10:17:17,733 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:17:19,874 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:17:21,390 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3700] stdout: Deployment Image Servicing and Management tool Version: 10.0.16299.15 @@ -29726,7 +28816,7 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:14:56,369 [salt.loaded.int.module.cmdmod:1202][DEBUG ][7072] output: +2020-03-06 10:17:21,390 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3700] output: Deployment Image Servicing and Management tool Version: 10.0.16299.15 @@ -30161,44 +29251,42 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:14:56,369 [salt.state :320 ][INFO ][7072] {'stderr': '', 'stdout': '', 'retcode': 0, 'feature': {'new': 'TelnetClient'}, 'pid': 964} -2020-03-04 12:14:56,369 [salt.state :1997][INFO ][7072] Completed state [TelnetClient] at time 12:14:56.369562 (duration_in_ms=8953.41) -2020-03-04 12:14:56,385 [salt.state :1819][INFO ][7072] Running state [windows.module.system.reboot] at time 12:14:56.385844 -2020-03-04 12:14:56,385 [salt.state :1852][INFO ][7072] Executing state module.run for [windows.module.system.reboot] -2020-03-04 12:14:56,401 [salt.utils.lazy :107 ][DEBUG ][7072] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:14:56,401 [salt.loaded.int.module.cmdmod:397 ][INFO ][7072] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' -2020-03-04 12:14:56,619 [salt.state :889 ][DEBUG ][7072] Last command return code: 0 -2020-03-04 12:14:56,619 [salt.loaded.int.module.win_system:1413][DEBUG ][7072] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired -2020-03-04 12:14:56,634 [salt.loaded.int.module.win_system:1348][DEBUG ][7072] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:14:56,634 [salt.loaded.int.module.win_system:1348][DEBUG ][7072] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:14:56,634 [salt.loaded.int.module.win_system:1387][DEBUG ][7072] Unable to access key: SOFTWARE\Microsoft\ServerManager -2020-03-04 12:14:56,634 [salt.loaded.int.module.win_system:1273][DEBUG ][7072] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending -2020-03-04 12:14:56,681 [salt.state :320 ][INFO ][7072] {'system.reboot': True} -2020-03-04 12:14:56,681 [salt.state :1997][INFO ][7072] Completed state [windows.module.system.reboot] at time 12:14:56.681888 (duration_in_ms=296.044) -2020-03-04 12:14:56,681 [salt.state :2801][DEBUG ][7072] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1576543322240 does not exist, no need to cleanup -2020-03-04 12:14:56,681 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded state.check_result -2020-03-04 12:14:56,697 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded highstate.output -2020-03-04 12:14:56,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,713 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,728 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,744 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,760 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,760 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,760 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,776 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,776 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,791 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,807 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output -2020-03-04 12:14:56,822 [salt.utils.lazy :104 ][DEBUG ][7072] LazyLoaded nested.output +2020-03-06 10:17:21,390 [salt.state :320 ][INFO ][3700] {'feature': {'new': ['TelnetClient']}, 'pid': 5996, 'stderr': '', 'stdout': '', 'retcode': 0} +2020-03-06 10:17:21,390 [salt.state :2045][INFO ][3700] Completed state [TelnetClient] at time 10:17:21.390116 (duration_in_ms=9655.902) +2020-03-06 10:17:21,390 [salt.state :1867][INFO ][3700] Running state [windows.module.system.reboot] at time 10:17:21.390116 +2020-03-06 10:17:21,405 [salt.state :1900][INFO ][3700] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:17:21,421 [salt.utils.lazy :107 ][DEBUG ][3700] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:17:21,421 [salt.loaded.int.module.cmdmod:397 ][INFO ][3700] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:17:21,686 [salt.state :906 ][DEBUG ][3700] Last command return code: 0 +2020-03-06 10:17:21,686 [salt.loaded.int.module.win_system:1413][DEBUG ][3700] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:17:21,686 [salt.loaded.int.module.win_system:1348][DEBUG ][3700] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:17:21,686 [salt.loaded.int.module.win_system:1348][DEBUG ][3700] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:17:21,686 [salt.loaded.int.module.win_system:1387][DEBUG ][3700] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:17:21,686 [salt.loaded.int.module.win_system:1273][DEBUG ][3700] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:17:21,749 [salt.state :320 ][INFO ][3700] {'system.reboot': True} +2020-03-06 10:17:21,749 [salt.state :2045][INFO ][3700] Completed state [windows.module.system.reboot] at time 10:17:21.749707 (duration_in_ms=359.591) +2020-03-06 10:17:21,749 [salt.state :2921][DEBUG ][3700] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2488703276816 does not exist, no need to cleanup +2020-03-06 10:17:21,781 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded highstate.output +2020-03-06 10:17:21,781 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,781 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,796 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,811 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,827 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,843 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,859 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,874 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,890 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,905 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,921 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output +2020-03-06 10:17:21,952 [salt.utils.lazy :104 ][DEBUG ][3700] LazyLoaded nested.output diff --git a/test/results/py3-windows-10-1803.inspec.results.json b/test/results/py3-windows-10-1803.inspec.results.json index ffa7238..c0db3eb 100644 --- a/test/results/py3-windows-10-1803.inspec.results.json +++ b/test/results/py3-windows-10-1803.inspec.results.json @@ -1 +1 @@ -{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.17134"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001342,"start_time":"2020-03-04T15:08:41-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.4279311,"start_time":"2020-03-04T15:08:41-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0555196,"start_time":"2020-03-04T15:08:42-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0787078,"start_time":"2020-03-04T15:08:42-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0692292,"start_time":"2020-03-04T15:08:42-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0512297,"start_time":"2020-03-04T15:08:42-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0002468,"start_time":"2020-03-04T15:08:42-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":0.0001841,"start_time":"2020-03-04T15:08:42-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001736,"start_time":"2020-03-04T15:08:42-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":1.86e-05,"start_time":"2020-03-04T15:08:42-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0706359,"start_time":"2020-03-04T15:08:42-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5835344,"start_time":"2020-03-04T15:08:42-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":2.1934644,"start_time":"2020-03-04T15:08:43-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0221183,"start_time":"2020-03-04T15:08:45-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001674,"start_time":"2020-03-04T15:08:45-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1288456,"start_time":"2020-03-04T15:08:45-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.2154318,"start_time":"2020-03-04T15:08:45-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.2264327,"start_time":"2020-03-04T15:08:45-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1819914,"start_time":"2020-03-04T15:08:45-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1951807,"start_time":"2020-03-04T15:08:45-05:00"}]}],"status":"loaded"}],"statistics":{"duration":4.5406659},"version":"4.18.39"} \ No newline at end of file +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.17134"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001468,"start_time":"2020-03-06T13:10:26-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.219183,"start_time":"2020-03-06T13:10:26-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0302824,"start_time":"2020-03-06T13:10:26-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0303967,"start_time":"2020-03-06T13:10:26-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0309759,"start_time":"2020-03-06T13:10:26-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0319721,"start_time":"2020-03-06T13:10:26-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001309,"start_time":"2020-03-06T13:10:26-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":7.76e-05,"start_time":"2020-03-06T13:10:26-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001288,"start_time":"2020-03-06T13:10:26-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":8.3e-06,"start_time":"2020-03-06T13:10:26-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0524775,"start_time":"2020-03-06T13:10:26-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4299014,"start_time":"2020-03-06T13:10:26-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":1.5682782,"start_time":"2020-03-06T13:10:27-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0225495,"start_time":"2020-03-06T13:10:28-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001783,"start_time":"2020-03-06T13:10:28-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1431349,"start_time":"2020-03-06T13:10:28-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1779419,"start_time":"2020-03-06T13:10:29-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.154489,"start_time":"2020-03-06T13:10:29-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1414135,"start_time":"2020-03-06T13:10:29-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1607797,"start_time":"2020-03-06T13:10:29-05:00"}]}],"status":"loaded"}],"statistics":{"duration":3.2254752},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-windows-10-1803.inspec.results.txt b/test/results/py3-windows-10-1803.inspec.results.txt index 12d0a07..5ee551c 100644 --- a/test/results/py3-windows-10-1803.inspec.results.txt +++ b/test/results/py3-windows-10-1803.inspec.results.txt @@ -66,6 +66,6 @@ Pending: (Failures listed here are expected and do not affect your suite's statu # Not yet implemented # -Finished in 4.54 seconds (files took 4 minutes 29.4 seconds to load) +Finished in 3.23 seconds (files took 5 minutes 30 seconds to load) 20 examples, 0 failures, 1 pending diff --git a/test/results/py3-windows-10-1803.inspec.results.xml b/test/results/py3-windows-10-1803.inspec.results.xml index ff426be..258e9f3 100644 --- a/test/results/py3-windows-10-1803.inspec.results.xml +++ b/test/results/py3-windows-10-1803.inspec.results.xml @@ -1,27 +1,27 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/test/results/py3-windows-10-1803.kitchen.log b/test/results/py3-windows-10-1803.kitchen.log index 208076d..f40cd16 100644 --- a/test/results/py3-windows-10-1803.kitchen.log +++ b/test/results/py3-windows-10-1803.kitchen.log @@ -1,1021 +1,1021 @@ -I, [2020-03-04T15:04:17.343708 #3128] INFO -- py3-windows-10-1803: -----> Cleaning up any prior instances of -I, [2020-03-04T15:04:17.343844 #3128] INFO -- py3-windows-10-1803: -----> Destroying ... -I, [2020-03-04T15:04:17.345099 #3128] INFO -- py3-windows-10-1803: Finished destroying (0m0.00s). -I, [2020-03-04T15:04:17.346124 #3128] INFO -- py3-windows-10-1803: -----> Testing -I, [2020-03-04T15:04:17.346223 #3128] INFO -- py3-windows-10-1803: -----> Creating ... -I, [2020-03-04T15:04:23.185111 #3128] INFO -- py3-windows-10-1803: Bringing machine 'default' up with 'virtualbox' provider... -I, [2020-03-04T15:04:23.824614 #3128] INFO -- py3-windows-10-1803: ==> default: Cloning VM... -I, [2020-03-04T15:04:24.237149 #3128] INFO -- py3-windows-10-1803: ==> default: Matching MAC address for NAT networking... -I, [2020-03-04T15:04:24.466318 #3128] INFO -- py3-windows-10-1803: ==> default: Checking if box 'StefanScherer/windows_10' version '2018.09.12' is up to date... -I, [2020-03-04T15:04:26.011499 #3128] INFO -- py3-windows-10-1803: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1803-dae8ab7b-7a3e-4c99-b898-e4f81977a289 -I, [2020-03-04T15:04:28.394782 #3128] INFO -- py3-windows-10-1803: ==> default: Clearing any previously set network interfaces... -I, [2020-03-04T15:04:28.492355 #3128] INFO -- py3-windows-10-1803: ==> default: Preparing network interfaces based on configuration... -I, [2020-03-04T15:04:28.492874 #3128] INFO -- py3-windows-10-1803: default: Adapter 1: nat -I, [2020-03-04T15:04:28.602019 #3128] INFO -- py3-windows-10-1803: ==> default: Forwarding ports... -I, [2020-03-04T15:04:28.714840 #3128] INFO -- py3-windows-10-1803: default: 3389 (guest) => 3389 (host) (adapter 1) -I, [2020-03-04T15:04:28.715640 #3128] INFO -- py3-windows-10-1803: default: 5985 (guest) => 55985 (host) (adapter 1) -I, [2020-03-04T15:04:28.716145 #3128] INFO -- py3-windows-10-1803: default: 5986 (guest) => 55986 (host) (adapter 1) -I, [2020-03-04T15:04:28.716746 #3128] INFO -- py3-windows-10-1803: default: 22 (guest) => 2222 (host) (adapter 1) -I, [2020-03-04T15:04:29.092247 #3128] INFO -- py3-windows-10-1803: ==> default: Running 'pre-boot' VM customizations... -I, [2020-03-04T15:04:29.834362 #3128] INFO -- py3-windows-10-1803: ==> default: Booting VM... -I, [2020-03-04T15:04:32.245100 #3128] INFO -- py3-windows-10-1803: ==> default: Waiting for machine to boot. This may take a few minutes... -I, [2020-03-04T15:04:33.214423 #3128] INFO -- py3-windows-10-1803: default: WinRM address: 127.0.0.1:55985 -I, [2020-03-04T15:04:33.214742 #3128] INFO -- py3-windows-10-1803: default: WinRM username: vagrant -I, [2020-03-04T15:04:33.215101 #3128] INFO -- py3-windows-10-1803: default: WinRM execution_time_limit: PT2H -I, [2020-03-04T15:04:33.215425 #3128] INFO -- py3-windows-10-1803: default: WinRM transport: negotiate -I, [2020-03-04T15:04:54.336934 #3128] INFO -- py3-windows-10-1803: ==> default: Machine booted and ready! -I, [2020-03-04T15:04:54.378373 #3128] INFO -- py3-windows-10-1803: ==> default: Checking for guest additions in VM... -I, [2020-03-04T15:04:54.515806 #3128] INFO -- py3-windows-10-1803: default: The guest additions on this VM do not match the installed version of -I, [2020-03-04T15:04:54.515993 #3128] INFO -- py3-windows-10-1803: default: VirtualBox! In most cases this is fine, but in rare cases it can -I, [2020-03-04T15:04:54.516055 #3128] INFO -- py3-windows-10-1803: default: prevent things such as shared folders from working properly. If you see -I, [2020-03-04T15:04:54.516103 #3128] INFO -- py3-windows-10-1803: default: shared folder errors, please make sure the guest additions within the -I, [2020-03-04T15:04:54.516158 #3128] INFO -- py3-windows-10-1803: default: virtual machine match the version of VirtualBox you have installed on -I, [2020-03-04T15:04:54.516221 #3128] INFO -- py3-windows-10-1803: default: your host and reload your VM. -I, [2020-03-04T15:04:54.516275 #3128] INFO -- py3-windows-10-1803: default: -I, [2020-03-04T15:04:54.516340 #3128] INFO -- py3-windows-10-1803: default: Guest Additions Version: 5.2.16 -I, [2020-03-04T15:04:54.516392 #3128] INFO -- py3-windows-10-1803: default: VirtualBox Version: 6.1 -I, [2020-03-04T15:04:55.161538 #3128] INFO -- py3-windows-10-1803: ==> default: Mounting shared folders... -I, [2020-03-04T15:04:55.162601 #3128] INFO -- py3-windows-10-1803: default: /results => /mnt/c/tmp/results -I, [2020-03-04T15:05:00.680256 #3128] INFO -- py3-windows-10-1803: ==> default: Machine not provisioned because `--no-provision` is specified. -I, [2020-03-04T15:05:12.551264 #3128] INFO -- py3-windows-10-1803: [WinRM] Established -I, [2020-03-04T15:05:12.551406 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:12.567071 #3128] INFO -- py3-windows-10-1803: Vagrant instance created. -I, [2020-03-04T15:05:12.568992 #3128] INFO -- py3-windows-10-1803: Finished creating (0m55.22s). -I, [2020-03-04T15:05:12.569281 #3128] INFO -- py3-windows-10-1803: -----> Converging ... -I, [2020-03-04T15:05:12.571983 #3128] INFO -- py3-windows-10-1803: Preparing files for transfer -I, [2020-03-04T15:05:12.572169 #3128] INFO -- py3-windows-10-1803: Preparing salt-minion -I, [2020-03-04T15:05:12.577405 #3128] INFO -- py3-windows-10-1803: Preparing pillars into /srv/pillar -I, [2020-03-04T15:05:12.577541 #3128] INFO -- py3-windows-10-1803: pillars-from-files is deprecated in favor of pillars_from_files -I, [2020-03-04T15:05:12.581675 #3128] INFO -- py3-windows-10-1803: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula -I, [2020-03-04T15:05:12.740941 #3128] INFO -- py3-windows-10-1803: Preparing state_top -I, [2020-03-04T15:05:12.742814 #3128] INFO -- py3-windows-10-1803: Preparing scripts into /etc/salt/scripts -I, [2020-03-04T15:05:13.745314 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:13.745755 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:13.746120 #3128] INFO -- py3-windows-10-1803: Directory: C:\ -I, [2020-03-04T15:05:13.746400 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:13.746602 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:13.746885 #3128] INFO -- py3-windows-10-1803: Mode LastWriteTime Length Name -I, [2020-03-04T15:05:13.747300 #3128] INFO -- py3-windows-10-1803: ---- ------------- ------ ---- -I, [2020-03-04T15:05:13.747667 #3128] INFO -- py3-windows-10-1803: d----- 3/4/2020 12:05 PM temp -I, [2020-03-04T15:05:14.320329 #3128] INFO -- py3-windows-10-1803: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe -I, [2020-03-04T15:05:18.533544 #3128] INFO -- py3-windows-10-1803: Installing Salt minion -I, [2020-03-04T15:05:30.972419 #3128] INFO -- py3-windows-10-1803: Starting the Salt minion service -I, [2020-03-04T15:05:30.972862 #3128] INFO -- py3-windows-10-1803: Salt minion successfully installed -I, [2020-03-04T15:05:33.000266 #3128] INFO -- py3-windows-10-1803: You asked for latest and you have 2019.2.3 installed, sweet! -I, [2020-03-04T15:05:33.000712 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.001039 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.746054 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.746730 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.747360 #3128] INFO -- py3-windows-10-1803: Directory: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:05:33.747913 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.748419 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.749104 #3128] INFO -- py3-windows-10-1803: Mode LastWriteTime Length Name -I, [2020-03-04T15:05:33.749835 #3128] INFO -- py3-windows-10-1803: ---- ------------- ------ ---- -I, [2020-03-04T15:05:33.750542 #3128] INFO -- py3-windows-10-1803: d----- 3/4/2020 12:05 PM kitchen -I, [2020-03-04T15:05:33.751114 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.751642 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:05:33.775985 #3128] INFO -- py3-windows-10-1803: Transferring files to -I, [2020-03-04T15:06:04.175892 #3128] INFO -- py3-windows-10-1803: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:06:04.176406 #3128] INFO -- py3-windows-10-1803: At line:1 char:131 -I, [2020-03-04T15:06:04.176863 #3128] INFO -- py3-windows-10-1803: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... -I, [2020-03-04T15:06:04.177245 #3128] INFO -- py3-windows-10-1803: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -I, [2020-03-04T15:06:04.177606 #3128] INFO -- py3-windows-10-1803: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException -I, [2020-03-04T15:06:04.177962 #3128] INFO -- py3-windows-10-1803: + FullyQualifiedErrorId : NativeCommandError -I, [2020-03-04T15:06:04.178236 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:06:04.178489 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:06:04.178792 #3128] INFO -- py3-windows-10-1803: Traceback (most recent call last): -I, [2020-03-04T15:06:04.179133 #3128] INFO -- py3-windows-10-1803: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:06:04.179465 #3128] INFO -- py3-windows-10-1803: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:06:04.179735 #3128] INFO -- py3-windows-10-1803: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:06:04.179918 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:06:04.180145 #3128] INFO -- py3-windows-10-1803: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:06:04.180357 #3128] INFO -- py3-windows-10-1803: Traceback (most recent call last): -I, [2020-03-04T15:06:04.180586 #3128] INFO -- py3-windows-10-1803: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:06:04.180819 #3128] INFO -- py3-windows-10-1803: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:06:04.181093 #3128] INFO -- py3-windows-10-1803: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:06:04.181278 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:10.801341 #3128] INFO -- py3-windows-10-1803: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W -I, [2020-03-04T15:07:10.801823 #3128] INFO -- py3-windows-10-1803: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:07:10.802216 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:10.802537 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:10.802868 #3128] INFO -- py3-windows-10-1803: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P -I, [2020-03-04T15:07:10.803209 #3128] INFO -- py3-windows-10-1803: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:07:10.803548 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:10.803945 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:58.963247 #3128] INFO -- py3-windows-10-1803: local: -I, [2020-03-04T15:07:58.963727 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.964179 #3128] INFO -- py3-windows-10-1803: ID: windows.state.system.hostname.saltstack1 -I, [2020-03-04T15:07:58.964673 #3128] INFO -- py3-windows-10-1803: Function: system.hostname -I, [2020-03-04T15:07:58.965129 #3128] INFO -- py3-windows-10-1803: Name: saltstack1 -I, [2020-03-04T15:07:58.965596 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:58.966050 #3128] INFO -- py3-windows-10-1803: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot -I, [2020-03-04T15:07:58.966526 #3128] INFO -- py3-windows-10-1803: Started: 12:05:46.272890 -I, [2020-03-04T15:07:58.966939 #3128] INFO -- py3-windows-10-1803: Duration: 94.796 ms -I, [2020-03-04T15:07:58.967315 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:58.967642 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.967949 #3128] INFO -- py3-windows-10-1803: hostname: -I, [2020-03-04T15:07:58.968272 #3128] INFO -- py3-windows-10-1803: saltstack1 -I, [2020-03-04T15:07:58.968578 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.968884 #3128] INFO -- py3-windows-10-1803: ID: windows.state.system.computer_desc.description -I, [2020-03-04T15:07:58.969206 #3128] INFO -- py3-windows-10-1803: Function: system.computer_desc -I, [2020-03-04T15:07:58.969506 #3128] INFO -- py3-windows-10-1803: Name: Saltstack Computer Description -I, [2020-03-04T15:07:58.969802 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:58.970126 #3128] INFO -- py3-windows-10-1803: Comment: Computer description successfully changed to 'Saltstack Computer Description' -I, [2020-03-04T15:07:58.970433 #3128] INFO -- py3-windows-10-1803: Started: 12:05:46.367686 -I, [2020-03-04T15:07:58.970715 #3128] INFO -- py3-windows-10-1803: Duration: 2632.337 ms -I, [2020-03-04T15:07:58.971075 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:58.971411 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.971709 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:58.972028 #3128] INFO -- py3-windows-10-1803: Saltstack Computer Description -I, [2020-03-04T15:07:58.972340 #3128] INFO -- py3-windows-10-1803: old: -I, [2020-03-04T15:07:58.972620 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.972948 #3128] INFO -- py3-windows-10-1803: ID: windows.state.timezone.system.America/New_York -I, [2020-03-04T15:07:58.973263 #3128] INFO -- py3-windows-10-1803: Function: timezone.system -I, [2020-03-04T15:07:58.973628 #3128] INFO -- py3-windows-10-1803: Name: America/New_York -I, [2020-03-04T15:07:58.973937 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:58.974246 #3128] INFO -- py3-windows-10-1803: Comment: Set timezone America/New_York -I, [2020-03-04T15:07:58.974526 #3128] INFO -- py3-windows-10-1803: Started: 12:05:49.028638 -I, [2020-03-04T15:07:58.974813 #3128] INFO -- py3-windows-10-1803: Duration: 15.822 ms -I, [2020-03-04T15:07:58.975126 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:58.975410 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.975700 #3128] INFO -- py3-windows-10-1803: timezone: -I, [2020-03-04T15:07:58.976091 #3128] INFO -- py3-windows-10-1803: America/New_York -I, [2020-03-04T15:07:58.976392 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.976713 #3128] INFO -- py3-windows-10-1803: ID: windows.module.environ.items -I, [2020-03-04T15:07:58.977026 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:58.977326 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:58.977628 #3128] INFO -- py3-windows-10-1803: Comment: environ.items: Success -I, [2020-03-04T15:07:58.977955 #3128] INFO -- py3-windows-10-1803: Started: 12:05:49.044460 -I, [2020-03-04T15:07:58.978274 #3128] INFO -- py3-windows-10-1803: Duration: 15.768 ms -I, [2020-03-04T15:07:58.978572 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:58.978877 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.979267 #3128] INFO -- py3-windows-10-1803: environ.items: -I, [2020-03-04T15:07:58.979586 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:58.979923 #3128] INFO -- py3-windows-10-1803: ALLUSERSPROFILE: -I, [2020-03-04T15:07:58.980239 #3128] INFO -- py3-windows-10-1803: C:\ProgramData -I, [2020-03-04T15:07:58.980611 #3128] INFO -- py3-windows-10-1803: APPDATA: -I, [2020-03-04T15:07:58.980963 #3128] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Roaming -I, [2020-03-04T15:07:58.981275 #3128] INFO -- py3-windows-10-1803: COMMONPROGRAMFILES: -I, [2020-03-04T15:07:58.981653 #3128] INFO -- py3-windows-10-1803: C:\Program Files\Common Files -I, [2020-03-04T15:07:58.981995 #3128] INFO -- py3-windows-10-1803: COMMONPROGRAMFILES(X86): -I, [2020-03-04T15:07:58.982310 #3128] INFO -- py3-windows-10-1803: C:\Program Files (x86)\Common Files -I, [2020-03-04T15:07:58.982626 #3128] INFO -- py3-windows-10-1803: COMMONPROGRAMW6432: -I, [2020-03-04T15:07:58.983049 #3128] INFO -- py3-windows-10-1803: C:\Program Files\Common Files -I, [2020-03-04T15:07:58.983372 #3128] INFO -- py3-windows-10-1803: COMPUTERNAME: -I, [2020-03-04T15:07:58.983828 #3128] INFO -- py3-windows-10-1803: VAGRANT-10 -I, [2020-03-04T15:07:58.984195 #3128] INFO -- py3-windows-10-1803: COMSPEC: -I, [2020-03-04T15:07:58.984559 #3128] INFO -- py3-windows-10-1803: C:\Windows\system32\cmd.exe -I, [2020-03-04T15:07:58.984900 #3128] INFO -- py3-windows-10-1803: DRIVERDATA: -I, [2020-03-04T15:07:58.985209 #3128] INFO -- py3-windows-10-1803: C:\Windows\System32\Drivers\DriverData -I, [2020-03-04T15:07:58.985551 #3128] INFO -- py3-windows-10-1803: HOMEDRIVE: -I, [2020-03-04T15:07:58.985885 #3128] INFO -- py3-windows-10-1803: C: -I, [2020-03-04T15:07:58.986247 #3128] INFO -- py3-windows-10-1803: HOMEPATH: -I, [2020-03-04T15:07:58.986638 #3128] INFO -- py3-windows-10-1803: \Users\vagrant -I, [2020-03-04T15:07:58.986971 #3128] INFO -- py3-windows-10-1803: LOCALAPPDATA: -I, [2020-03-04T15:07:58.987304 #3128] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Local -I, [2020-03-04T15:07:58.987681 #3128] INFO -- py3-windows-10-1803: LOGONSERVER: -I, [2020-03-04T15:07:58.988013 #3128] INFO -- py3-windows-10-1803: \\VAGRANT-10 -I, [2020-03-04T15:07:58.988318 #3128] INFO -- py3-windows-10-1803: NUMBER_OF_PROCESSORS: -I, [2020-03-04T15:07:58.988648 #3128] INFO -- py3-windows-10-1803: 2 -I, [2020-03-04T15:07:58.989052 #3128] INFO -- py3-windows-10-1803: ONEDRIVE: -I, [2020-03-04T15:07:58.989356 #3128] INFO -- py3-windows-10-1803: C:\Users\vagrant\OneDrive -I, [2020-03-04T15:07:58.989663 #3128] INFO -- py3-windows-10-1803: OS: -I, [2020-03-04T15:07:58.989970 #3128] INFO -- py3-windows-10-1803: Windows_NT -I, [2020-03-04T15:07:58.990411 #3128] INFO -- py3-windows-10-1803: PATH: -I, [2020-03-04T15:07:58.990824 #3128] INFO -- py3-windows-10-1803: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 -I, [2020-03-04T15:07:58.991194 #3128] INFO -- py3-windows-10-1803: PATHEXT: -I, [2020-03-04T15:07:58.991557 #3128] INFO -- py3-windows-10-1803: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL -I, [2020-03-04T15:07:58.992004 #3128] INFO -- py3-windows-10-1803: PROCESSOR_ARCHITECTURE: -I, [2020-03-04T15:07:58.992447 #3128] INFO -- py3-windows-10-1803: AMD64 -I, [2020-03-04T15:07:58.992933 #3128] INFO -- py3-windows-10-1803: PROCESSOR_IDENTIFIER: -I, [2020-03-04T15:07:58.993412 #3128] INFO -- py3-windows-10-1803: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel -I, [2020-03-04T15:07:58.993924 #3128] INFO -- py3-windows-10-1803: PROCESSOR_LEVEL: -I, [2020-03-04T15:07:58.994402 #3128] INFO -- py3-windows-10-1803: 6 -I, [2020-03-04T15:07:58.994896 #3128] INFO -- py3-windows-10-1803: PROCESSOR_REVISION: -I, [2020-03-04T15:07:58.995333 #3128] INFO -- py3-windows-10-1803: 8e0c -I, [2020-03-04T15:07:58.995800 #3128] INFO -- py3-windows-10-1803: PROGRAMDATA: -I, [2020-03-04T15:07:58.996271 #3128] INFO -- py3-windows-10-1803: C:\ProgramData -I, [2020-03-04T15:07:58.996750 #3128] INFO -- py3-windows-10-1803: PROGRAMFILES: -I, [2020-03-04T15:07:58.997231 #3128] INFO -- py3-windows-10-1803: C:\Program Files -I, [2020-03-04T15:07:58.997717 #3128] INFO -- py3-windows-10-1803: PROGRAMFILES(X86): -I, [2020-03-04T15:07:58.998182 #3128] INFO -- py3-windows-10-1803: C:\Program Files (x86) -I, [2020-03-04T15:07:58.998680 #3128] INFO -- py3-windows-10-1803: PROGRAMW6432: -I, [2020-03-04T15:07:58.999154 #3128] INFO -- py3-windows-10-1803: C:\Program Files -I, [2020-03-04T15:07:58.999667 #3128] INFO -- py3-windows-10-1803: PROMPT: -I, [2020-03-04T15:07:59.000145 #3128] INFO -- py3-windows-10-1803: $P$G -I, [2020-03-04T15:07:59.000637 #3128] INFO -- py3-windows-10-1803: PSMODULEPATH: -I, [2020-03-04T15:07:59.001087 #3128] INFO -- py3-windows-10-1803: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules -I, [2020-03-04T15:07:59.001517 #3128] INFO -- py3-windows-10-1803: PUBLIC: -I, [2020-03-04T15:07:59.001976 #3128] INFO -- py3-windows-10-1803: C:\Users\Public -I, [2020-03-04T15:07:59.002456 #3128] INFO -- py3-windows-10-1803: PYTHON: -I, [2020-03-04T15:07:59.002957 #3128] INFO -- py3-windows-10-1803: C:\salt\bin\python.exe -I, [2020-03-04T15:07:59.003418 #3128] INFO -- py3-windows-10-1803: SALTDIR: -I, [2020-03-04T15:07:59.003884 #3128] INFO -- py3-windows-10-1803: C:\salt -I, [2020-03-04T15:07:59.004338 #3128] INFO -- py3-windows-10-1803: SCRIPT: -I, [2020-03-04T15:07:59.004845 #3128] INFO -- py3-windows-10-1803: C:\salt\bin\Scripts\salt-call -I, [2020-03-04T15:07:59.005331 #3128] INFO -- py3-windows-10-1803: SYSTEMDRIVE: -I, [2020-03-04T15:07:59.005809 #3128] INFO -- py3-windows-10-1803: C: -I, [2020-03-04T15:07:59.006261 #3128] INFO -- py3-windows-10-1803: SYSTEMROOT: -I, [2020-03-04T15:07:59.006742 #3128] INFO -- py3-windows-10-1803: C:\Windows -I, [2020-03-04T15:07:59.007171 #3128] INFO -- py3-windows-10-1803: TEMP: -I, [2020-03-04T15:07:59.007617 #3128] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:07:59.008065 #3128] INFO -- py3-windows-10-1803: TMP: -I, [2020-03-04T15:07:59.008573 #3128] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:07:59.009052 #3128] INFO -- py3-windows-10-1803: USERDOMAIN: -I, [2020-03-04T15:07:59.009478 #3128] INFO -- py3-windows-10-1803: VAGRANT-10 -I, [2020-03-04T15:07:59.009836 #3128] INFO -- py3-windows-10-1803: USERDOMAIN_ROAMINGPROFILE: -I, [2020-03-04T15:07:59.010195 #3128] INFO -- py3-windows-10-1803: VAGRANT-10 -I, [2020-03-04T15:07:59.010624 #3128] INFO -- py3-windows-10-1803: USERNAME: -I, [2020-03-04T15:07:59.011034 #3128] INFO -- py3-windows-10-1803: vagrant -I, [2020-03-04T15:07:59.011387 #3128] INFO -- py3-windows-10-1803: USERPROFILE: -I, [2020-03-04T15:07:59.011702 #3128] INFO -- py3-windows-10-1803: C:\Users\vagrant -I, [2020-03-04T15:07:59.012073 #3128] INFO -- py3-windows-10-1803: WINDIR: -I, [2020-03-04T15:07:59.012437 #3128] INFO -- py3-windows-10-1803: C:\Windows -I, [2020-03-04T15:07:59.012765 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.013167 #3128] INFO -- py3-windows-10-1803: ID: windows.module.user.current -I, [2020-03-04T15:07:59.013482 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:59.013777 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.014094 #3128] INFO -- py3-windows-10-1803: Comment: user.current: VAGRANT-10\vagrant -I, [2020-03-04T15:07:59.014401 #3128] INFO -- py3-windows-10-1803: Started: 12:05:49.060228 -I, [2020-03-04T15:07:59.014773 #3128] INFO -- py3-windows-10-1803: Duration: 15.739 ms -I, [2020-03-04T15:07:59.015080 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.015458 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.015871 #3128] INFO -- py3-windows-10-1803: user.current: -I, [2020-03-04T15:07:59.016270 #3128] INFO -- py3-windows-10-1803: VAGRANT-10\vagrant -I, [2020-03-04T15:07:59.016675 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.017129 #3128] INFO -- py3-windows-10-1803: ID: windows.module.status.uptime -I, [2020-03-04T15:07:59.017581 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:59.018026 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.018455 #3128] INFO -- py3-windows-10-1803: Comment: status.uptime: 0:01:13.107125 -I, [2020-03-04T15:07:59.018853 #3128] INFO -- py3-windows-10-1803: Started: 12:05:49.075967 -I, [2020-03-04T15:07:59.019175 #3128] INFO -- py3-windows-10-1803: Duration: 31.158 ms -I, [2020-03-04T15:07:59.019538 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.019961 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.020378 #3128] INFO -- py3-windows-10-1803: status.uptime: -I, [2020-03-04T15:07:59.020815 #3128] INFO -- py3-windows-10-1803: 0:01:13.107125 -I, [2020-03-04T15:07:59.021241 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.021716 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection -I, [2020-03-04T15:07:59.022161 #3128] INFO -- py3-windows-10-1803: Function: cmd.run -I, [2020-03-04T15:07:59.022643 #3128] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -I, [2020-03-04T15:07:59.023121 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.023621 #3128] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run -I, [2020-03-04T15:07:59.024069 #3128] INFO -- py3-windows-10-1803: Started: 12:05:49.107125 -I, [2020-03-04T15:07:59.024522 #3128] INFO -- py3-windows-10-1803: Duration: 1769.915 ms -I, [2020-03-04T15:07:59.025000 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.025441 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.025886 #3128] INFO -- py3-windows-10-1803: pid: -I, [2020-03-04T15:07:59.026316 #3128] INFO -- py3-windows-10-1803: 6624 -I, [2020-03-04T15:07:59.026770 #3128] INFO -- py3-windows-10-1803: retcode: -I, [2020-03-04T15:07:59.027158 #3128] INFO -- py3-windows-10-1803: 0 -I, [2020-03-04T15:07:59.027522 #3128] INFO -- py3-windows-10-1803: stderr: -I, [2020-03-04T15:07:59.027844 #3128] INFO -- py3-windows-10-1803: stdout: -I, [2020-03-04T15:07:59.028162 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.028559 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet -I, [2020-03-04T15:07:59.028948 #3128] INFO -- py3-windows-10-1803: Function: cmd.run -I, [2020-03-04T15:07:59.029308 #3128] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -I, [2020-03-04T15:07:59.029653 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.029984 #3128] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run -I, [2020-03-04T15:07:59.030356 #3128] INFO -- py3-windows-10-1803: Started: 12:05:50.877040 -I, [2020-03-04T15:07:59.030686 #3128] INFO -- py3-windows-10-1803: Duration: 1298.602 ms -I, [2020-03-04T15:07:59.031083 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.031528 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.031874 #3128] INFO -- py3-windows-10-1803: pid: -I, [2020-03-04T15:07:59.032197 #3128] INFO -- py3-windows-10-1803: 5880 -I, [2020-03-04T15:07:59.032536 #3128] INFO -- py3-windows-10-1803: retcode: -I, [2020-03-04T15:07:59.032969 #3128] INFO -- py3-windows-10-1803: 0 -I, [2020-03-04T15:07:59.033343 #3128] INFO -- py3-windows-10-1803: stderr: -I, [2020-03-04T15:07:59.033739 #3128] INFO -- py3-windows-10-1803: stdout: -I, [2020-03-04T15:07:59.034120 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.034486 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic -I, [2020-03-04T15:07:59.034807 #3128] INFO -- py3-windows-10-1803: Function: cmd.run -I, [2020-03-04T15:07:59.035173 #3128] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -I, [2020-03-04T15:07:59.035541 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.035948 #3128] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run -I, [2020-03-04T15:07:59.036286 #3128] INFO -- py3-windows-10-1803: Started: 12:05:52.175642 -I, [2020-03-04T15:07:59.036681 #3128] INFO -- py3-windows-10-1803: Duration: 1344.52 ms -I, [2020-03-04T15:07:59.037144 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.037628 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.038066 #3128] INFO -- py3-windows-10-1803: pid: -I, [2020-03-04T15:07:59.038535 #3128] INFO -- py3-windows-10-1803: 1760 -I, [2020-03-04T15:07:59.039107 #3128] INFO -- py3-windows-10-1803: retcode: -I, [2020-03-04T15:07:59.039554 #3128] INFO -- py3-windows-10-1803: 0 -I, [2020-03-04T15:07:59.039934 #3128] INFO -- py3-windows-10-1803: stderr: -I, [2020-03-04T15:07:59.040295 #3128] INFO -- py3-windows-10-1803: stdout: -I, [2020-03-04T15:07:59.040715 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.041162 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo -I, [2020-03-04T15:07:59.041543 #3128] INFO -- py3-windows-10-1803: Function: cmd.run -I, [2020-03-04T15:07:59.041932 #3128] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -I, [2020-03-04T15:07:59.042261 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.042650 #3128] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run -I, [2020-03-04T15:07:59.042944 #3128] INFO -- py3-windows-10-1803: Started: 12:05:53.520162 -I, [2020-03-04T15:07:59.043236 #3128] INFO -- py3-windows-10-1803: Duration: 1330.716 ms -I, [2020-03-04T15:07:59.049673 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.050298 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.050786 #3128] INFO -- py3-windows-10-1803: pid: -I, [2020-03-04T15:07:59.051167 #3128] INFO -- py3-windows-10-1803: 2864 -I, [2020-03-04T15:07:59.051528 #3128] INFO -- py3-windows-10-1803: retcode: -I, [2020-03-04T15:07:59.051867 #3128] INFO -- py3-windows-10-1803: 0 -I, [2020-03-04T15:07:59.052245 #3128] INFO -- py3-windows-10-1803: stderr: -I, [2020-03-04T15:07:59.052590 #3128] INFO -- py3-windows-10-1803: stdout: -I, [2020-03-04T15:07:59.052993 #3128] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 12:05:54.850878 Duration: 550.519 ms -I, [2020-03-04T15:07:59.053340 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.053703 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 -I, [2020-03-04T15:07:59.054045 #3128] INFO -- py3-windows-10-1803: Function: reg.present -I, [2020-03-04T15:07:59.054442 #3128] INFO -- py3-windows-10-1803: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:07:59.054777 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.055125 #3128] INFO -- py3-windows-10-1803: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:07:59.055532 #3128] INFO -- py3-windows-10-1803: Started: 12:05:55.401397 -I, [2020-03-04T15:07:59.055858 #3128] INFO -- py3-windows-10-1803: Duration: 8052.97 ms -I, [2020-03-04T15:07:59.056253 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.056577 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.056905 #3128] INFO -- py3-windows-10-1803: reg: -I, [2020-03-04T15:07:59.057270 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.057644 #3128] INFO -- py3-windows-10-1803: Added: -I, [2020-03-04T15:07:59.057990 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.058329 #3128] INFO -- py3-windows-10-1803: Entry: -I, [2020-03-04T15:07:59.058642 #3128] INFO -- py3-windows-10-1803: SystemDefaultTlsVersions -I, [2020-03-04T15:07:59.058980 #3128] INFO -- py3-windows-10-1803: Inheritance: -I, [2020-03-04T15:07:59.059368 #3128] INFO -- py3-windows-10-1803: True -I, [2020-03-04T15:07:59.059688 #3128] INFO -- py3-windows-10-1803: Key: -I, [2020-03-04T15:07:59.060024 #3128] INFO -- py3-windows-10-1803: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:07:59.060381 #3128] INFO -- py3-windows-10-1803: Owner: -I, [2020-03-04T15:07:59.060701 #3128] INFO -- py3-windows-10-1803: None -I, [2020-03-04T15:07:59.061084 #3128] INFO -- py3-windows-10-1803: Perms: -I, [2020-03-04T15:07:59.061435 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.061760 #3128] INFO -- py3-windows-10-1803: Deny: -I, [2020-03-04T15:07:59.062111 #3128] INFO -- py3-windows-10-1803: None -I, [2020-03-04T15:07:59.062491 #3128] INFO -- py3-windows-10-1803: Grant: -I, [2020-03-04T15:07:59.062979 #3128] INFO -- py3-windows-10-1803: None -I, [2020-03-04T15:07:59.063490 #3128] INFO -- py3-windows-10-1803: Value: -I, [2020-03-04T15:07:59.063951 #3128] INFO -- py3-windows-10-1803: 1 -I, [2020-03-04T15:07:59.064420 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.064917 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -I, [2020-03-04T15:07:59.065393 #3128] INFO -- py3-windows-10-1803: Function: reg.present -I, [2020-03-04T15:07:59.065885 #3128] INFO -- py3-windows-10-1803: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:07:59.066378 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.066750 #3128] INFO -- py3-windows-10-1803: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:07:59.067096 #3128] INFO -- py3-windows-10-1803: Started: 12:06:03.470505 -I, [2020-03-04T15:07:59.067415 #3128] INFO -- py3-windows-10-1803: Duration: 180.157 ms -I, [2020-03-04T15:07:59.067814 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.068310 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.068848 #3128] INFO -- py3-windows-10-1803: reg: -I, [2020-03-04T15:07:59.069424 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.069990 #3128] INFO -- py3-windows-10-1803: Added: -I, [2020-03-04T15:07:59.070630 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.071233 #3128] INFO -- py3-windows-10-1803: Entry: -I, [2020-03-04T15:07:59.071736 #3128] INFO -- py3-windows-10-1803: SystemDefaultTlsVersions -I, [2020-03-04T15:07:59.072196 #3128] INFO -- py3-windows-10-1803: Inheritance: -I, [2020-03-04T15:07:59.073500 #3128] INFO -- py3-windows-10-1803: True -I, [2020-03-04T15:07:59.074160 #3128] INFO -- py3-windows-10-1803: Key: -I, [2020-03-04T15:07:59.074561 #3128] INFO -- py3-windows-10-1803: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:07:59.074923 #3128] INFO -- py3-windows-10-1803: Owner: -I, [2020-03-04T15:07:59.075387 #3128] INFO -- py3-windows-10-1803: None -I, [2020-03-04T15:07:59.075760 #3128] INFO -- py3-windows-10-1803: Perms: -I, [2020-03-04T15:07:59.076066 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.076394 #3128] INFO -- py3-windows-10-1803: Deny: -I, [2020-03-04T15:07:59.076718 #3128] INFO -- py3-windows-10-1803: None -I, [2020-03-04T15:07:59.077152 #3128] INFO -- py3-windows-10-1803: Grant: -I, [2020-03-04T15:07:59.077492 #3128] INFO -- py3-windows-10-1803: None -I, [2020-03-04T15:07:59.077819 #3128] INFO -- py3-windows-10-1803: Value: -I, [2020-03-04T15:07:59.078224 #3128] INFO -- py3-windows-10-1803: 1 -I, [2020-03-04T15:07:59.078593 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.078970 #3128] INFO -- py3-windows-10-1803: ID: manually.update_git_repo-ng -I, [2020-03-04T15:07:59.079274 #3128] INFO -- py3-windows-10-1803: Function: archive.extracted -I, [2020-03-04T15:07:59.079636 #3128] INFO -- py3-windows-10-1803: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -I, [2020-03-04T15:07:59.079936 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.080316 #3128] INFO -- py3-windows-10-1803: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs -I, [2020-03-04T15:07:59.080698 #3128] INFO -- py3-windows-10-1803: Started: 12:06:03.650662 -I, [2020-03-04T15:07:59.080995 #3128] INFO -- py3-windows-10-1803: Duration: 803.291 ms -I, [2020-03-04T15:07:59.081395 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.081809 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.082118 #3128] INFO -- py3-windows-10-1803: directories_created: -I, [2020-03-04T15:07:59.082490 #3128] INFO -- py3-windows-10-1803: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -I, [2020-03-04T15:07:59.082877 #3128] INFO -- py3-windows-10-1803: extracted_files: -I, [2020-03-04T15:07:59.083189 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ -I, [2020-03-04T15:07:59.083691 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.gitignore -I, [2020-03-04T15:07:59.084162 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis.yml -I, [2020-03-04T15:07:59.084529 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis/ -I, [2020-03-04T15:07:59.084873 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis/requirements.txt -I, [2020-03-04T15:07:59.085231 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis/tests.py -I, [2020-03-04T15:07:59.085602 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/7zip.sls -I, [2020-03-04T15:07:59.085930 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/LICENSE -I, [2020-03-04T15:07:59.086226 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/README.md -I, [2020-03-04T15:07:59.086573 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/_config.yml -I, [2020-03-04T15:07:59.086983 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/activeperl_x64.sls -I, [2020-03-04T15:07:59.087312 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/activeperl_x86.sls -I, [2020-03-04T15:07:59.087768 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobeair.sls -I, [2020-03-04T15:07:59.088134 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobereader-dc-classic.sls -I, [2020-03-04T15:07:59.088464 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobereader-xi.sls -I, [2020-03-04T15:07:59.088815 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobereader.sls -I, [2020-03-04T15:07:59.089239 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobeshockwaveplayer.sls -I, [2020-03-04T15:07:59.089576 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adv-ip-scanner.sls -I, [2020-03-04T15:07:59.090048 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adv-port-scanner.sls -I, [2020-03-04T15:07:59.090449 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/advancedlogging.sls -I, [2020-03-04T15:07:59.090780 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/anydesk-msi.sls -I, [2020-03-04T15:07:59.091146 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/anydesk.sls -I, [2020-03-04T15:07:59.091612 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/applicationrequestrouting.sls -I, [2020-03-04T15:07:59.091954 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/aspnet-mvc1.sls -I, [2020-03-04T15:07:59.092382 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/atom.sls -I, [2020-03-04T15:07:59.092811 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/audacity.sls -I, [2020-03-04T15:07:59.093194 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/ -I, [2020-03-04T15:07:59.093631 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/init.sls -I, [2020-03-04T15:07:59.094075 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/install.cmd -I, [2020-03-04T15:07:59.094474 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/install.ps1 -I, [2020-03-04T15:07:59.094909 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/remove.cmd -I, [2020-03-04T15:07:59.095350 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/autohotkey.sls -I, [2020-03-04T15:07:59.095708 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/autoit.sls -I, [2020-03-04T15:07:59.096059 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/autopsy.sls -I, [2020-03-04T15:07:59.096421 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/awscli.sls -I, [2020-03-04T15:07:59.096727 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/azuredatastudio.sls -I, [2020-03-04T15:07:59.097146 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bandizip.sls -I, [2020-03-04T15:07:59.097512 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/belarc-advisor.sls -I, [2020-03-04T15:07:59.097891 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bginfo4x.sls -I, [2020-03-04T15:07:59.098214 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bitnami-nginxstack.sls -I, [2020-03-04T15:07:59.098619 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bitvise.sls -I, [2020-03-04T15:07:59.099037 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/blender.sls -I, [2020-03-04T15:07:59.099368 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bootracer.sls -I, [2020-03-04T15:07:59.099667 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bulk_extractor.sls -I, [2020-03-04T15:07:59.100042 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bulkrenameutility.sls -I, [2020-03-04T15:07:59.100366 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ccleaner-slim.sls -I, [2020-03-04T15:07:59.100762 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ccleaner.sls -I, [2020-03-04T15:07:59.101245 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cdburnerxp.sls -I, [2020-03-04T15:07:59.101629 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cdroller.sls -I, [2020-03-04T15:07:59.101966 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/check-mk-agent-msi.sls -I, [2020-03-04T15:07:59.102307 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/check-mk-agent.sls -I, [2020-03-04T15:07:59.102640 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/ -I, [2020-03-04T15:07:59.102982 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/init.sls -I, [2020-03-04T15:07:59.103304 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/install.cmd -I, [2020-03-04T15:07:59.103635 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/uninstall.cmd -I, [2020-03-04T15:07:59.103947 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 -I, [2020-03-04T15:07:59.104400 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chrome-rdp.sls -I, [2020-03-04T15:07:59.104747 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chrome.sls -I, [2020-03-04T15:07:59.105180 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/clamav.sls -I, [2020-03-04T15:07:59.105591 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/clamwin.sls -I, [2020-03-04T15:07:59.105904 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/classicshell.sls -I, [2020-03-04T15:07:59.106277 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/clink.sls -I, [2020-03-04T15:07:59.106693 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/conemu.sls -I, [2020-03-04T15:07:59.107023 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cpu-z.sls -I, [2020-03-04T15:07:59.107372 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/curl.sls -I, [2020-03-04T15:07:59.107741 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cyberduck-cli.sls -I, [2020-03-04T15:07:59.108091 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cyberduck-msi.sls -I, [2020-03-04T15:07:59.108390 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cyberduck.sls -I, [2020-03-04T15:07:59.108769 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/defraggler.sls -I, [2020-03-04T15:07:59.109091 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/docs/ -I, [2020-03-04T15:07:59.109403 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/docs/ReadMe.md -I, [2020-03-04T15:07:59.109799 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/dotnet.sls -I, [2020-03-04T15:07:59.110131 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/dropbox.sls -I, [2020-03-04T15:07:59.110454 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/duplicati.sls -I, [2020-03-04T15:07:59.110764 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/dvdstyler.sls -I, [2020-03-04T15:07:59.111131 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/echo-desktop.sls -I, [2020-03-04T15:07:59.111567 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/eea.sls -I, [2020-03-04T15:07:59.111896 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/emet.sls -I, [2020-03-04T15:07:59.112242 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/emsisoft-anti-malware.sls -I, [2020-03-04T15:07:59.112596 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/eraser.sls -I, [2020-03-04T15:07:59.112961 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/erlang/ -I, [2020-03-04T15:07:59.113262 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/erlang/init.sls -I, [2020-03-04T15:07:59.113600 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/erlang/install.cmd -I, [2020-03-04T15:07:59.114040 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/evernote.sls -I, [2020-03-04T15:07:59.114349 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/fiddler.sls -I, [2020-03-04T15:07:59.114767 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/ -I, [2020-03-04T15:07:59.115172 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/init.sls -I, [2020-03-04T15:07:59.115498 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/install.cmd -I, [2020-03-04T15:07:59.115924 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/install.ps1 -I, [2020-03-04T15:07:59.116334 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/remove.cmd -I, [2020-03-04T15:07:59.116712 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filehippo-app-manager.sls -I, [2020-03-04T15:07:59.117078 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filezilla.sls -I, [2020-03-04T15:07:59.117511 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox-esr_x64.sls -I, [2020-03-04T15:07:59.117909 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox-esr_x86.sls -I, [2020-03-04T15:07:59.118314 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox_x64.sls -I, [2020-03-04T15:07:59.118773 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox_x86.sls -I, [2020-03-04T15:07:59.119091 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/ -I, [2020-03-04T15:07:59.119435 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/init.sls -I, [2020-03-04T15:07:59.119810 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/install.cmd -I, [2020-03-04T15:07:59.120168 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/install.ps1 -I, [2020-03-04T15:07:59.120498 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/remove.cmd -I, [2020-03-04T15:07:59.120842 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gedit.sls -I, [2020-03-04T15:07:59.121217 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gimp.sls -I, [2020-03-04T15:07:59.121536 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/git-extensions.sls -I, [2020-03-04T15:07:59.121853 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/git.sls -I, [2020-03-04T15:07:59.122178 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls -I, [2020-03-04T15:07:59.122631 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gnucash.sls -I, [2020-03-04T15:07:59.123120 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/golang.sls -I, [2020-03-04T15:07:59.123576 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/goodsync.sls -I, [2020-03-04T15:07:59.124066 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gow.sls -I, [2020-03-04T15:07:59.124544 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win-light.sls -I, [2020-03-04T15:07:59.125027 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win-vanilla.sls -I, [2020-03-04T15:07:59.125492 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win/ -I, [2020-03-04T15:07:59.125901 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win/init.sls -I, [2020-03-04T15:07:59.126215 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win/silent.ini -I, [2020-03-04T15:07:59.126531 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/graylog-collector-sidecar.sls -I, [2020-03-04T15:07:59.126832 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/grepwin.sls -I, [2020-03-04T15:07:59.127193 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gvim.sls -I, [2020-03-04T15:07:59.127506 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/handbrake.sls -I, [2020-03-04T15:07:59.127811 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/ -I, [2020-03-04T15:07:59.128225 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp -I, [2020-03-04T15:07:59.128551 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/init.sls -I, [2020-03-04T15:07:59.128845 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/install.cmd -I, [2020-03-04T15:07:59.129258 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/install.ps1 -I, [2020-03-04T15:07:59.129645 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/remove.cmd -I, [2020-03-04T15:07:59.129942 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/hipchat.sls -I, [2020-03-04T15:07:59.130242 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/hostsfileeditor.sls -I, [2020-03-04T15:07:59.130633 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/hwinfo.sls -I, [2020-03-04T15:07:59.130967 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ice.sls -I, [2020-03-04T15:07:59.131285 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/icecast.sls -I, [2020-03-04T15:07:59.131679 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/icloud.sls -I, [2020-03-04T15:07:59.132015 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/iismediaservices.sls -I, [2020-03-04T15:07:59.132338 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/influx-capacitor.sls -I, [2020-03-04T15:07:59.132699 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/inkscape.sls -I, [2020-03-04T15:07:59.133009 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/intellij-community.sls -I, [2020-03-04T15:07:59.133428 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/intellij-ultimate.sls -I, [2020-03-04T15:07:59.133813 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/internet-evidence-finder.sls -I, [2020-03-04T15:07:59.134212 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/irfanview-plugins.sls -I, [2020-03-04T15:07:59.134535 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/irfanview.sls -I, [2020-03-04T15:07:59.134831 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/isapirewrite-lite.sls -I, [2020-03-04T15:07:59.135231 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/itunes.sls -I, [2020-03-04T15:07:59.135573 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jdk8.sls -I, [2020-03-04T15:07:59.135910 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jre.sls -I, [2020-03-04T15:07:59.136264 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jre8.sls -I, [2020-03-04T15:07:59.136623 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jungledisk-server-management.sls -I, [2020-03-04T15:07:59.136937 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jungledisk-server.sls -I, [2020-03-04T15:07:59.137325 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jungledisk-workgroup.sls -I, [2020-03-04T15:07:59.137753 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/kdiff3.sls -I, [2020-03-04T15:07:59.138091 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/keepass-2x.sls -I, [2020-03-04T15:07:59.138529 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/keepass.sls -I, [2020-03-04T15:07:59.139005 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/lastpass.sls -I, [2020-03-04T15:07:59.139495 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/lazarus.sls -I, [2020-03-04T15:07:59.139998 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/libreoffice.sls -I, [2020-03-04T15:07:59.140451 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/logparser.sls -I, [2020-03-04T15:07:59.140788 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/maas360bootanalyzer.sls -I, [2020-03-04T15:07:59.141157 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/malwarebytes.sls -I, [2020-03-04T15:07:59.141496 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mariadb.sls -I, [2020-03-04T15:07:59.141834 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mercurial.sls -I, [2020-03-04T15:07:59.142221 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/messageanalyzer.sls -I, [2020-03-04T15:07:59.142532 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/ -I, [2020-03-04T15:07:59.142876 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp -I, [2020-03-04T15:07:59.143295 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/init.sls -I, [2020-03-04T15:07:59.143628 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/install.cmd -I, [2020-03-04T15:07:59.144049 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/install.ps1 -I, [2020-03-04T15:07:59.144534 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/remove.cmd -I, [2020-03-04T15:07:59.145002 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/microsoft-build-tools.sls -I, [2020-03-04T15:07:59.145491 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mikogo.sls -I, [2020-03-04T15:07:59.145942 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/miktex-basic.sls -I, [2020-03-04T15:07:59.146430 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mongodb.sls -I, [2020-03-04T15:07:59.146906 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-mbsa.sls -I, [2020-03-04T15:07:59.147446 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls -I, [2020-03-04T15:07:59.156771 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls -I, [2020-03-04T15:07:59.157592 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls -I, [2020-03-04T15:07:59.158209 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls -I, [2020-03-04T15:07:59.158765 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:07:59.159370 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:07:59.159970 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls -I, [2020-03-04T15:07:59.160561 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls -I, [2020-03-04T15:07:59.161151 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls -I, [2020-03-04T15:07:59.161718 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls -I, [2020-03-04T15:07:59.162349 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls -I, [2020-03-04T15:07:59.162948 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls -I, [2020-03-04T15:07:59.163449 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:07:59.164016 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:07:59.164490 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls -I, [2020-03-04T15:07:59.164921 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:07:59.165475 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls -I, [2020-03-04T15:07:59.165916 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls -I, [2020-03-04T15:07:59.166406 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls -I, [2020-03-04T15:07:59.166905 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls -I, [2020-03-04T15:07:59.167403 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls -I, [2020-03-04T15:07:59.167988 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls -I, [2020-03-04T15:07:59.168564 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls -I, [2020-03-04T15:07:59.169191 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls -I, [2020-03-04T15:07:59.169718 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls -I, [2020-03-04T15:07:59.170117 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mucommander.sls -I, [2020-03-04T15:07:59.170606 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mysql-essential.sls -I, [2020-03-04T15:07:59.171143 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mysql-installer-community.sls -I, [2020-03-04T15:07:59.171699 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mysql-workbench.sls -I, [2020-03-04T15:07:59.172263 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/never10.sls -I, [2020-03-04T15:07:59.172816 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/newrelic-infra.sls -I, [2020-03-04T15:07:59.173373 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nextcloud-client.sls -I, [2020-03-04T15:07:59.174044 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nmap.sls -I, [2020-03-04T15:07:59.174748 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/node.js-lts.sls -I, [2020-03-04T15:07:59.175273 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/node.js.sls -I, [2020-03-04T15:07:59.175884 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nomacs.sls -I, [2020-03-04T15:07:59.176377 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/npp.sls -I, [2020-03-04T15:07:59.176808 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nsclient.sls -I, [2020-03-04T15:07:59.177316 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nsis.sls -I, [2020-03-04T15:07:59.177737 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ntp.sls -I, [2020-03-04T15:07:59.178208 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nunit-console.sls -I, [2020-03-04T15:07:59.178802 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nxlog.sls -I, [2020-03-04T15:07:59.179408 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/octopus-tentacle.sls -I, [2020-03-04T15:07:59.180042 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/openlp.sls -I, [2020-03-04T15:07:59.180687 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/openoffice.sls -I, [2020-03-04T15:07:59.181326 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/openvpn.sls -I, [2020-03-04T15:07:59.181998 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/osquery.sls -I, [2020-03-04T15:07:59.182633 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ossec-agent.sls -I, [2020-03-04T15:07:59.183218 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/owncloud.sls -I, [2020-03-04T15:07:59.183834 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/ -I, [2020-03-04T15:07:59.184492 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/init.sls -I, [2020-03-04T15:07:59.185124 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/install.cmd -I, [2020-03-04T15:07:59.185797 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/install.ps1 -I, [2020-03-04T15:07:59.186312 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/remove.cmd -I, [2020-03-04T15:07:59.186819 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pandoc.sls -I, [2020-03-04T15:07:59.187457 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/parallels-client-15.sls -I, [2020-03-04T15:07:59.188094 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pass4win.sls -I, [2020-03-04T15:07:59.188791 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/passware-kit-agent.sls -I, [2020-03-04T15:07:59.189445 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/passware-kit-forensic.sls -I, [2020-03-04T15:07:59.190053 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/patchmypc-free.sls -I, [2020-03-04T15:07:59.190703 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pdf24creator.sls -I, [2020-03-04T15:07:59.191179 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pdfcreator.sls -I, [2020-03-04T15:07:59.191624 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/peazip.sls -I, [2020-03-04T15:07:59.192067 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pgadmin4.sls -I, [2020-03-04T15:07:59.192484 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pgina.sls -I, [2020-03-04T15:07:59.192840 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pidgin.sls -I, [2020-03-04T15:07:59.193207 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/postgresql.sls -I, [2020-03-04T15:07:59.193555 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/powerbi-desktop.sls -I, [2020-03-04T15:07:59.193953 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/powershell-core.sls -I, [2020-03-04T15:07:59.194296 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls -I, [2020-03-04T15:07:59.194640 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/putty.sls -I, [2020-03-04T15:07:59.195030 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/ -I, [2020-03-04T15:07:59.195499 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/init.sls -I, [2020-03-04T15:07:59.195883 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/silent.config -I, [2020-03-04T15:07:59.196268 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python2_x64.sls -I, [2020-03-04T15:07:59.196659 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python2_x86.sls -I, [2020-03-04T15:07:59.197094 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python3_x64.sls -I, [2020-03-04T15:07:59.197477 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python3_x86.sls -I, [2020-03-04T15:07:59.197848 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/qemu.sls -I, [2020-03-04T15:07:59.198194 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/queueexplorerpro.sls -I, [2020-03-04T15:07:59.198608 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/quicktime.sls -I, [2020-03-04T15:07:59.198978 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rabbitmq.sls -I, [2020-03-04T15:07:59.199330 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls -I, [2020-03-04T15:07:59.199720 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rakudo-star_x64.sls -I, [2020-03-04T15:07:59.200145 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rasclient.sls -I, [2020-03-04T15:07:59.200511 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rdcman.sls -I, [2020-03-04T15:07:59.200904 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rocketchat.sls -I, [2020-03-04T15:07:59.201272 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rubyinstaller_x64.sls -I, [2020-03-04T15:07:59.201727 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rubyinstaller_x86.sls -I, [2020-03-04T15:07:59.202079 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/salt-minion-py2.sls -I, [2020-03-04T15:07:59.202427 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/salt-minion-py3.sls -I, [2020-03-04T15:07:59.202817 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sandboxie.sls -I, [2020-03-04T15:07:59.203261 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/scaleout.sls -I, [2020-03-04T15:07:59.203704 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/secunia.psi.sls -I, [2020-03-04T15:07:59.204079 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sensu.sls -I, [2020-03-04T15:07:59.204438 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sharpdevelop.sls -I, [2020-03-04T15:07:59.204932 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/skitch.sls -I, [2020-03-04T15:07:59.205332 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/skype-msi.sls -I, [2020-03-04T15:07:59.205734 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/skype.sls -I, [2020-03-04T15:07:59.206206 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/slack-machine-msi.sls -I, [2020-03-04T15:07:59.206735 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/slack-user-msi.sls -I, [2020-03-04T15:07:59.207231 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/slack.sls -I, [2020-03-04T15:07:59.207787 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/smartmontools.sls -I, [2020-03-04T15:07:59.208312 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/snmptools.sls -I, [2020-03-04T15:07:59.208847 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/soapui.sls -I, [2020-03-04T15:07:59.209372 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/software-informer.sls -I, [2020-03-04T15:07:59.209907 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sourcetree.sls -I, [2020-03-04T15:07:59.210391 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/spybot-anti-beacon.sls -I, [2020-03-04T15:07:59.210918 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/spybot.sls -I, [2020-03-04T15:07:59.211442 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sscserv-free.sls -I, [2020-03-04T15:07:59.211912 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stayawake/ -I, [2020-03-04T15:07:59.212330 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stayawake/init.sls -I, [2020-03-04T15:07:59.212707 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stayawake/install.cmd -I, [2020-03-04T15:07:59.213068 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/steam.sls -I, [2020-03-04T15:07:59.213462 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stellarium.sls -I, [2020-03-04T15:07:59.213884 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/strawberryperl_x64.sls -I, [2020-03-04T15:07:59.214252 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/strawberryperl_x86.sls -I, [2020-03-04T15:07:59.214612 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stunnel.sls -I, [2020-03-04T15:07:59.214980 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/subinacl.sls -I, [2020-03-04T15:07:59.215415 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sumatrapdf.sls -I, [2020-03-04T15:07:59.215760 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/svn.sls -I, [2020-03-04T15:07:59.216108 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/teamviewer.sls -I, [2020-03-04T15:07:59.216488 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/teamviewer_host.sls -I, [2020-03-04T15:07:59.216885 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/teracopy.sls -I, [2020-03-04T15:07:59.217404 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texmaker.sls -I, [2020-03-04T15:07:59.217912 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texniccenter.sls -I, [2020-03-04T15:07:59.218467 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texstudio.sls -I, [2020-03-04T15:07:59.218991 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texworks.sls -I, [2020-03-04T15:07:59.219548 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/thunderbird.sls -I, [2020-03-04T15:07:59.220122 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tightvnc.sls -I, [2020-03-04T15:07:59.220645 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/todotxt.net.sls -I, [2020-03-04T15:07:59.221147 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/todour.sls -I, [2020-03-04T15:07:59.221552 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-bzr.sls -I, [2020-03-04T15:07:59.221919 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-git.sls -I, [2020-03-04T15:07:59.222414 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-hg.sls -I, [2020-03-04T15:07:59.222847 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-svn.sls -I, [2020-03-04T15:07:59.223296 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/truecrypt.sls -I, [2020-03-04T15:07:59.223758 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ultradefrag.sls -I, [2020-03-04T15:07:59.224334 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/urlrewrite.sls -I, [2020-03-04T15:07:59.224747 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/usbdlm.sls -I, [2020-03-04T15:07:59.225257 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vagrant.sls -I, [2020-03-04T15:07:59.225805 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vcforpython27.sls -I, [2020-03-04T15:07:59.226398 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vcxsrv.sls -I, [2020-03-04T15:07:59.227066 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/verysleepy.sls -I, [2020-03-04T15:07:59.227720 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/veyon.sls -I, [2020-03-04T15:07:59.228251 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/virtualbox.sls -I, [2020-03-04T15:07:59.228716 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/viscosity.sls -I, [2020-03-04T15:07:59.229212 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vivaldi.sls -I, [2020-03-04T15:07:59.229783 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vlc.sls -I, [2020-03-04T15:07:59.230445 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vs-community.sls -I, [2020-03-04T15:07:59.231049 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vs_remotetools_2017.sls -I, [2020-03-04T15:07:59.231621 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vscode.sls -I, [2020-03-04T15:07:59.232166 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vsee.sls -I, [2020-03-04T15:07:59.232706 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wamp-server-3.sls -I, [2020-03-04T15:07:59.233232 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wamp-stack.sls -I, [2020-03-04T15:07:59.233781 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/webdeploy.sls -I, [2020-03-04T15:07:59.387941 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/webplatforminstaller.sls -I, [2020-03-04T15:07:59.388608 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/win-app-manager.sls -I, [2020-03-04T15:07:59.389144 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/windirstat.sls -I, [2020-03-04T15:07:59.389598 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winhttpcertcfg.sls -I, [2020-03-04T15:07:59.390035 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/ -I, [2020-03-04T15:07:59.390461 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/init.sls -I, [2020-03-04T15:07:59.390908 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/install.cmd -I, [2020-03-04T15:07:59.391331 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/install.ps1 -I, [2020-03-04T15:07:59.391790 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/remove.cmd -I, [2020-03-04T15:07:59.392204 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winmerge.sls -I, [2020-03-04T15:07:59.392610 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winmtr.sls -I, [2020-03-04T15:07:59.393019 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winpcap.sls -I, [2020-03-04T15:07:59.393590 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winrar.sls -I, [2020-03-04T15:07:59.394214 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winscp.sls -I, [2020-03-04T15:07:59.394828 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wireshark.sls -I, [2020-03-04T15:07:59.395434 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/ -I, [2020-03-04T15:07:59.396049 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/README.md -I, [2020-03-04T15:07:59.396655 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/answer.txt -I, [2020-03-04T15:07:59.397243 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/init.sls -I, [2020-03-04T15:07:59.397902 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/majsetup.reg -I, [2020-03-04T15:07:59.398521 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wscc.sls -I, [2020-03-04T15:07:59.399130 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wufuc.sls -I, [2020-03-04T15:07:59.399737 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/xampp.sls -I, [2020-03-04T15:07:59.400302 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/xming.sls -I, [2020-03-04T15:07:59.400878 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/yubikey-manager.sls -I, [2020-03-04T15:07:59.401456 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/yubikey-personalization-tool.sls -I, [2020-03-04T15:07:59.402014 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zabbix-agent.sls -I, [2020-03-04T15:07:59.402591 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/ -I, [2020-03-04T15:07:59.403134 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/init.sls -I, [2020-03-04T15:07:59.403753 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic -I, [2020-03-04T15:07:59.404347 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic -I, [2020-03-04T15:07:59.404913 #3128] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zoom.sls -I, [2020-03-04T15:07:59.405452 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.414159 #3128] INFO -- py3-windows-10-1803: ID: rename-extract -I, [2020-03-04T15:07:59.414917 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:59.415556 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.416237 #3128] INFO -- py3-windows-10-1803: Comment: file.rename: True -I, [2020-03-04T15:07:59.416849 #3128] INFO -- py3-windows-10-1803: Started: 12:06:04.453953 -I, [2020-03-04T15:07:59.417441 #3128] INFO -- py3-windows-10-1803: Duration: 0.0 ms -I, [2020-03-04T15:07:59.418140 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.418806 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.419441 #3128] INFO -- py3-windows-10-1803: file.rename: -I, [2020-03-04T15:07:59.420290 #3128] INFO -- py3-windows-10-1803: True -I, [2020-03-04T15:07:59.420956 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.421498 #3128] INFO -- py3-windows-10-1803: ID: pkg.refresh_db -I, [2020-03-04T15:07:59.422099 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:59.422588 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.423144 #3128] INFO -- py3-windows-10-1803: Comment: check_cmd determined the state succeeded -I, [2020-03-04T15:07:59.423754 #3128] INFO -- py3-windows-10-1803: Started: 12:06:04.453953 -I, [2020-03-04T15:07:59.424437 #3128] INFO -- py3-windows-10-1803: Duration: 7734.287 ms -I, [2020-03-04T15:07:59.425110 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.425768 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.426449 #3128] INFO -- py3-windows-10-1803: pkg.refresh_db: -I, [2020-03-04T15:07:59.427102 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.427714 #3128] INFO -- py3-windows-10-1803: failed: -I, [2020-03-04T15:07:59.428317 #3128] INFO -- py3-windows-10-1803: 0 -I, [2020-03-04T15:07:59.428926 #3128] INFO -- py3-windows-10-1803: success: -I, [2020-03-04T15:07:59.429525 #3128] INFO -- py3-windows-10-1803: 298 -I, [2020-03-04T15:07:59.430141 #3128] INFO -- py3-windows-10-1803: total: -I, [2020-03-04T15:07:59.430736 #3128] INFO -- py3-windows-10-1803: 298 -I, [2020-03-04T15:07:59.431335 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.431918 #3128] INFO -- py3-windows-10-1803: ID: 7zip -I, [2020-03-04T15:07:59.432484 #3128] INFO -- py3-windows-10-1803: Function: pkg.installed -I, [2020-03-04T15:07:59.433054 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.433608 #3128] INFO -- py3-windows-10-1803: Comment: The following packages were installed/updated: 7zip=18.06.00.0 -I, [2020-03-04T15:07:59.434169 #3128] INFO -- py3-windows-10-1803: Started: 12:06:12.206581 -I, [2020-03-04T15:07:59.434742 #3128] INFO -- py3-windows-10-1803: Duration: 3121.744 ms -I, [2020-03-04T15:07:59.435296 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.435896 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.436440 #3128] INFO -- py3-windows-10-1803: 7zip: -I, [2020-03-04T15:07:59.437029 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.437588 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:59.438129 #3128] INFO -- py3-windows-10-1803: 18.06.00.0 -I, [2020-03-04T15:07:59.438711 #3128] INFO -- py3-windows-10-1803: old: -I, [2020-03-04T15:07:59.439269 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.439878 #3128] INFO -- py3-windows-10-1803: ID: git -I, [2020-03-04T15:07:59.440488 #3128] INFO -- py3-windows-10-1803: Function: pkg.installed -I, [2020-03-04T15:07:59.441139 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.441668 #3128] INFO -- py3-windows-10-1803: Comment: The following packages were installed/updated: git -I, [2020-03-04T15:07:59.442109 #3128] INFO -- py3-windows-10-1803: Started: 12:06:15.343530 -I, [2020-03-04T15:07:59.442574 #3128] INFO -- py3-windows-10-1803: Duration: 23646.777 ms -I, [2020-03-04T15:07:59.443085 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.443533 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.443974 #3128] INFO -- py3-windows-10-1803: git: -I, [2020-03-04T15:07:59.444509 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.444990 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:59.445527 #3128] INFO -- py3-windows-10-1803: 2.23.0.windows.1 -I, [2020-03-04T15:07:59.446025 #3128] INFO -- py3-windows-10-1803: old: -I, [2020-03-04T15:07:59.446538 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.446963 #3128] INFO -- py3-windows-10-1803: ID: kdiff3 -I, [2020-03-04T15:07:59.447363 #3128] INFO -- py3-windows-10-1803: Function: pkg.installed -I, [2020-03-04T15:07:59.447803 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.448278 #3128] INFO -- py3-windows-10-1803: Comment: The following packages were installed/updated: kdiff3 -I, [2020-03-04T15:07:59.448751 #3128] INFO -- py3-windows-10-1803: Started: 12:06:39.006986 -I, [2020-03-04T15:07:59.449321 #3128] INFO -- py3-windows-10-1803: Duration: 31204.028 ms -I, [2020-03-04T15:07:59.449857 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.450432 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.451034 #3128] INFO -- py3-windows-10-1803: kdiff3: -I, [2020-03-04T15:07:59.451648 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.452226 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:59.452810 #3128] INFO -- py3-windows-10-1803: Not Found -I, [2020-03-04T15:07:59.453430 #3128] INFO -- py3-windows-10-1803: old: -I, [2020-03-04T15:07:59.453972 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.454559 #3128] INFO -- py3-windows-10-1803: ID: windows_environment.refresh.path -I, [2020-03-04T15:07:59.455162 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:59.455694 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.456263 #3128] INFO -- py3-windows-10-1803: Comment: windows_environment.refresh: Success -I, [2020-03-04T15:07:59.456830 #3128] INFO -- py3-windows-10-1803: Started: 12:07:10.228501 -I, [2020-03-04T15:07:59.457410 #3128] INFO -- py3-windows-10-1803: Duration: 80.442 ms -I, [2020-03-04T15:07:59.457844 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.458280 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.458848 #3128] INFO -- py3-windows-10-1803: windows_environment.refresh: -I, [2020-03-04T15:07:59.459435 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.460005 #3128] INFO -- py3-windows-10-1803: PATH: -I, [2020-03-04T15:07:59.461720 #3128] INFO -- py3-windows-10-1803: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd -I, [2020-03-04T15:07:59.462447 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.463066 #3128] INFO -- py3-windows-10-1803: ID: chocolatey.bootstrap -I, [2020-03-04T15:07:59.463627 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:59.464237 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.464838 #3128] INFO -- py3-windows-10-1803: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:07:59.465351 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.465990 #3128] INFO -- py3-windows-10-1803: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:07:59.466502 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.467072 #3128] INFO -- py3-windows-10-1803: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:07:59.467553 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.468175 #3128] INFO -- py3-windows-10-1803: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:07:59.468703 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.469382 #3128] INFO -- py3-windows-10-1803: Installing chocolatey on this machine -I, [2020-03-04T15:07:59.469959 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.470564 #3128] INFO -- py3-windows-10-1803: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:07:59.471214 #3128] INFO -- py3-windows-10-1803: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:07:59.471755 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.472352 #3128] INFO -- py3-windows-10-1803: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:07:59.472993 #3128] INFO -- py3-windows-10-1803: before you can use choco. -I, [2020-03-04T15:07:59.473578 #3128] INFO -- py3-windows-10-1803: Restricting write permissions to Administrators -I, [2020-03-04T15:07:59.474125 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.474711 #3128] INFO -- py3-windows-10-1803: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:07:59.475221 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.475841 #3128] INFO -- py3-windows-10-1803: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:07:59.476385 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.477041 #3128] INFO -- py3-windows-10-1803: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:07:59.477618 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.478237 #3128] INFO -- py3-windows-10-1803: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:07:59.478783 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.479405 #3128] INFO -- py3-windows-10-1803: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:07:59.479967 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.480573 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.481080 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.481695 #3128] INFO -- py3-windows-10-1803: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:07:59.482232 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.482820 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.483336 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.483948 #3128] INFO -- py3-windows-10-1803: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:07:59.484576 #3128] INFO -- py3-windows-10-1803: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:07:59.485197 #3128] INFO -- py3-windows-10-1803: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:07:59.485872 #3128] INFO -- py3-windows-10-1803: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:07:59.486514 #3128] INFO -- py3-windows-10-1803: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:07:59.487122 #3128] INFO -- py3-windows-10-1803: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:07:59.487674 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.488288 #3128] INFO -- py3-windows-10-1803: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:07:59.488917 #3128] INFO -- py3-windows-10-1803: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:07:59.489474 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.490070 #3128] INFO -- py3-windows-10-1803: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:07:59.490673 #3128] INFO -- py3-windows-10-1803: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:07:59.491236 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.491861 #3128] INFO -- py3-windows-10-1803: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:07:59.492476 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.493156 #3128] INFO -- py3-windows-10-1803: Run choco /? for a list of functions. -I, [2020-03-04T15:07:59.493815 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.494548 #3128] INFO -- py3-windows-10-1803: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:07:59.495156 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.495801 #3128] INFO -- py3-windows-10-1803: first prior to using choco. -I, [2020-03-04T15:07:59.496387 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.496988 #3128] INFO -- py3-windows-10-1803: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:07:59.497515 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.498118 #3128] INFO -- py3-windows-10-1803: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:07:59.498689 #3128] INFO -- py3-windows-10-1803: Started: 12:07:10.308943 -I, [2020-03-04T15:07:59.499287 #3128] INFO -- py3-windows-10-1803: Duration: 20587.524 ms -I, [2020-03-04T15:07:59.499853 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.500447 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.501057 #3128] INFO -- py3-windows-10-1803: chocolatey.bootstrap: -I, [2020-03-04T15:07:59.501653 #3128] INFO -- py3-windows-10-1803: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:07:59.502286 #3128] INFO -- py3-windows-10-1803: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:07:59.502871 #3128] INFO -- py3-windows-10-1803: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:07:59.503541 #3128] INFO -- py3-windows-10-1803: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:07:59.504169 #3128] INFO -- py3-windows-10-1803: Installing chocolatey on this machine -I, [2020-03-04T15:07:59.504778 #3128] INFO -- py3-windows-10-1803: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:07:59.505415 #3128] INFO -- py3-windows-10-1803: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:07:59.506050 #3128] INFO -- py3-windows-10-1803: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:07:59.506623 #3128] INFO -- py3-windows-10-1803: before you can use choco. -I, [2020-03-04T15:07:59.507223 #3128] INFO -- py3-windows-10-1803: Restricting write permissions to Administrators -I, [2020-03-04T15:07:59.507782 #3128] INFO -- py3-windows-10-1803: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:07:59.508401 #3128] INFO -- py3-windows-10-1803: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:07:59.509019 #3128] INFO -- py3-windows-10-1803: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:07:59.509620 #3128] INFO -- py3-windows-10-1803: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:07:59.510251 #3128] INFO -- py3-windows-10-1803: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:07:59.510842 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.511446 #3128] INFO -- py3-windows-10-1803: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:07:59.512051 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.512687 #3128] INFO -- py3-windows-10-1803: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:07:59.513307 #3128] INFO -- py3-windows-10-1803: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:07:59.513727 #3128] INFO -- py3-windows-10-1803: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:07:59.514170 #3128] INFO -- py3-windows-10-1803: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:07:59.514628 #3128] INFO -- py3-windows-10-1803: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:07:59.514992 #3128] INFO -- py3-windows-10-1803: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:07:59.515382 #3128] INFO -- py3-windows-10-1803: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:07:59.515835 #3128] INFO -- py3-windows-10-1803: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:07:59.516234 #3128] INFO -- py3-windows-10-1803: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:07:59.516612 #3128] INFO -- py3-windows-10-1803: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:07:59.516974 #3128] INFO -- py3-windows-10-1803: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:07:59.517369 #3128] INFO -- py3-windows-10-1803: Run choco /? for a list of functions. -I, [2020-03-04T15:07:59.517810 #3128] INFO -- py3-windows-10-1803: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:07:59.518177 #3128] INFO -- py3-windows-10-1803: first prior to using choco. -I, [2020-03-04T15:07:59.518545 #3128] INFO -- py3-windows-10-1803: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:07:59.518892 #3128] INFO -- py3-windows-10-1803: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:07:59.519377 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.519823 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.chocolatey.notepadplusplus -I, [2020-03-04T15:07:59.520183 #3128] INFO -- py3-windows-10-1803: Function: chocolatey.installed -I, [2020-03-04T15:07:59.520543 #3128] INFO -- py3-windows-10-1803: Name: notepadplusplus -I, [2020-03-04T15:07:59.520915 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.521346 #3128] INFO -- py3-windows-10-1803: Comment: -I, [2020-03-04T15:07:59.521715 #3128] INFO -- py3-windows-10-1803: Started: 12:07:30.896467 -I, [2020-03-04T15:07:59.522052 #3128] INFO -- py3-windows-10-1803: Duration: 13689.969 ms -I, [2020-03-04T15:07:59.522405 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.522788 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.523206 #3128] INFO -- py3-windows-10-1803: notepadplusplus: -I, [2020-03-04T15:07:59.523621 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.523986 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:59.524363 #3128] INFO -- py3-windows-10-1803: - 7.8.4 -I, [2020-03-04T15:07:59.524745 #3128] INFO -- py3-windows-10-1803: old: -I, [2020-03-04T15:07:59.525163 #3128] INFO -- py3-windows-10-1803: notepadplusplus.install: -I, [2020-03-04T15:07:59.525560 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.525898 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:59.526274 #3128] INFO -- py3-windows-10-1803: - 7.8.4 -I, [2020-03-04T15:07:59.526613 #3128] INFO -- py3-windows-10-1803: old: -I, [2020-03-04T15:07:59.526984 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.527416 #3128] INFO -- py3-windows-10-1803: ID: windows.system.packages.chocolatey.windirstat -I, [2020-03-04T15:07:59.527830 #3128] INFO -- py3-windows-10-1803: Function: chocolatey.installed -I, [2020-03-04T15:07:59.528204 #3128] INFO -- py3-windows-10-1803: Name: windirstat -I, [2020-03-04T15:07:59.528534 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.528910 #3128] INFO -- py3-windows-10-1803: Comment: -I, [2020-03-04T15:07:59.529349 #3128] INFO -- py3-windows-10-1803: Started: 12:07:44.586436 -I, [2020-03-04T15:07:59.529701 #3128] INFO -- py3-windows-10-1803: Duration: 7182.846 ms -I, [2020-03-04T15:07:59.530081 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.530439 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.530809 #3128] INFO -- py3-windows-10-1803: windirstat: -I, [2020-03-04T15:07:59.531269 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.531613 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:59.531970 #3128] INFO -- py3-windows-10-1803: - 1.1.2.20161210 -I, [2020-03-04T15:07:59.532412 #3128] INFO -- py3-windows-10-1803: old: -I, [2020-03-04T15:07:59.532816 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.533192 #3128] INFO -- py3-windows-10-1803: ID: windows.system.desktop.optional_features.installed.TelnetClient -I, [2020-03-04T15:07:59.533575 #3128] INFO -- py3-windows-10-1803: Function: dism.feature_installed -I, [2020-03-04T15:07:59.533951 #3128] INFO -- py3-windows-10-1803: Name: TelnetClient -I, [2020-03-04T15:07:59.534440 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.534839 #3128] INFO -- py3-windows-10-1803: Comment: Installed TelnetClient -I, [2020-03-04T15:07:59.535321 #3128] INFO -- py3-windows-10-1803: Started: 12:07:51.769282 -I, [2020-03-04T15:07:59.535700 #3128] INFO -- py3-windows-10-1803: Duration: 6380.46 ms -I, [2020-03-04T15:07:59.536128 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.536471 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.536824 #3128] INFO -- py3-windows-10-1803: feature: -I, [2020-03-04T15:07:59.537242 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.537712 #3128] INFO -- py3-windows-10-1803: new: -I, [2020-03-04T15:07:59.538108 #3128] INFO -- py3-windows-10-1803: TelnetClient -I, [2020-03-04T15:07:59.538465 #3128] INFO -- py3-windows-10-1803: pid: -I, [2020-03-04T15:07:59.538894 #3128] INFO -- py3-windows-10-1803: 2184 -I, [2020-03-04T15:07:59.539356 #3128] INFO -- py3-windows-10-1803: retcode: -I, [2020-03-04T15:07:59.539699 #3128] INFO -- py3-windows-10-1803: 0 -I, [2020-03-04T15:07:59.540048 #3128] INFO -- py3-windows-10-1803: stderr: -I, [2020-03-04T15:07:59.549158 #3128] INFO -- py3-windows-10-1803: stdout: -I, [2020-03-04T15:07:59.549958 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.550614 #3128] INFO -- py3-windows-10-1803: ID: windows.module.system.reboot -I, [2020-03-04T15:07:59.551167 #3128] INFO -- py3-windows-10-1803: Function: module.run -I, [2020-03-04T15:07:59.551605 #3128] INFO -- py3-windows-10-1803: Result: True -I, [2020-03-04T15:07:59.551995 #3128] INFO -- py3-windows-10-1803: Comment: system.reboot: True -I, [2020-03-04T15:07:59.552417 #3128] INFO -- py3-windows-10-1803: Started: 12:07:58.149742 -I, [2020-03-04T15:07:59.552781 #3128] INFO -- py3-windows-10-1803: Duration: 252.042 ms -I, [2020-03-04T15:07:59.553148 #3128] INFO -- py3-windows-10-1803: Changes: -I, [2020-03-04T15:07:59.553577 #3128] INFO -- py3-windows-10-1803: ---------- -I, [2020-03-04T15:07:59.554040 #3128] INFO -- py3-windows-10-1803: system.reboot: -I, [2020-03-04T15:07:59.554439 #3128] INFO -- py3-windows-10-1803: True -I, [2020-03-04T15:07:59.554760 #3128] INFO -- py3-windows-10-1803: -I, [2020-03-04T15:07:59.555124 #3128] INFO -- py3-windows-10-1803: Summary for local -I, [2020-03-04T15:07:59.555471 #3128] INFO -- py3-windows-10-1803: ------------- -I, [2020-03-04T15:07:59.555827 #3128] INFO -- py3-windows-10-1803: Succeeded: 25 (changed=24) -I, [2020-03-04T15:07:59.556191 #3128] INFO -- py3-windows-10-1803: Failed: 0 -I, [2020-03-04T15:07:59.556672 #3128] INFO -- py3-windows-10-1803: ------------- -I, [2020-03-04T15:07:59.557079 #3128] INFO -- py3-windows-10-1803: Total states run: 25 -I, [2020-03-04T15:07:59.557466 #3128] INFO -- py3-windows-10-1803: Total run time: 132.016 s -I, [2020-03-04T15:07:59.592478 #3128] INFO -- py3-windows-10-1803: Downloading files from -I, [2020-03-04T15:07:59.774732 #3128] INFO -- py3-windows-10-1803: Finished converging (2m47.20s). -I, [2020-03-04T15:07:59.774967 #3128] INFO -- py3-windows-10-1803: -----> Setting up ... -I, [2020-03-04T15:07:59.782632 #3128] INFO -- py3-windows-10-1803: Finished setting up (0m0.00s). -I, [2020-03-04T15:07:59.782840 #3128] INFO -- py3-windows-10-1803: -----> Verifying ... -I, [2020-03-04T15:08:00.940183 #3128] INFO -- py3-windows-10-1803: Loaded default -I, [2020-03-04T15:08:46.206536 #3128] INFO -- py3-windows-10-1803: Finished verifying (0m46.42s). -I, [2020-03-04T15:08:46.208119 #3128] INFO -- py3-windows-10-1803: -----> Destroying ... -I, [2020-03-04T15:08:56.814667 #3128] INFO -- py3-windows-10-1803: ==> default: Forcing shutdown of VM... -I, [2020-03-04T15:08:58.413045 #3128] INFO -- py3-windows-10-1803: ==> default: Destroying VM and associated drives... -I, [2020-03-04T15:08:59.305152 #3128] INFO -- py3-windows-10-1803: Vagrant instance destroyed. -I, [2020-03-04T15:08:59.306584 #3128] INFO -- py3-windows-10-1803: Finished destroying (0m13.10s). -I, [2020-03-04T15:08:59.307769 #3128] INFO -- py3-windows-10-1803: Finished testing (4m41.96s). +I, [2020-03-06T13:05:01.912937 #16906] INFO -- py3-windows-10-1803: -----> Cleaning up any prior instances of +I, [2020-03-06T13:05:01.913144 #16906] INFO -- py3-windows-10-1803: -----> Destroying ... +I, [2020-03-06T13:05:01.914678 #16906] INFO -- py3-windows-10-1803: Finished destroying (0m0.00s). +I, [2020-03-06T13:05:01.916058 #16906] INFO -- py3-windows-10-1803: -----> Testing +I, [2020-03-06T13:05:01.916173 #16906] INFO -- py3-windows-10-1803: -----> Creating ... +I, [2020-03-06T13:05:08.501685 #16906] INFO -- py3-windows-10-1803: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:05:09.713299 #16906] INFO -- py3-windows-10-1803: ==> default: Cloning VM... +I, [2020-03-06T13:05:10.227321 #16906] INFO -- py3-windows-10-1803: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:05:10.477059 #16906] INFO -- py3-windows-10-1803: ==> default: Checking if box 'StefanScherer/windows_10' version '2018.09.12' is up to date... +I, [2020-03-06T13:05:11.914310 #16906] INFO -- py3-windows-10-1803: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1803-8bffe71e-b068-42ae-98cf-e3b9a17ef4b7 +I, [2020-03-06T13:05:14.730590 #16906] INFO -- py3-windows-10-1803: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:05:14.861370 #16906] INFO -- py3-windows-10-1803: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:05:14.861822 #16906] INFO -- py3-windows-10-1803: default: Adapter 1: nat +I, [2020-03-06T13:05:15.034343 #16906] INFO -- py3-windows-10-1803: ==> default: Forwarding ports... +I, [2020-03-06T13:05:15.159141 #16906] INFO -- py3-windows-10-1803: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:05:15.159921 #16906] INFO -- py3-windows-10-1803: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:05:15.160766 #16906] INFO -- py3-windows-10-1803: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:05:15.161586 #16906] INFO -- py3-windows-10-1803: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:05:15.602021 #16906] INFO -- py3-windows-10-1803: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:05:16.517108 #16906] INFO -- py3-windows-10-1803: ==> default: Booting VM... +I, [2020-03-06T13:05:19.415167 #16906] INFO -- py3-windows-10-1803: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:05:20.359219 #16906] INFO -- py3-windows-10-1803: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:05:20.359459 #16906] INFO -- py3-windows-10-1803: default: WinRM username: vagrant +I, [2020-03-06T13:05:20.360103 #16906] INFO -- py3-windows-10-1803: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:05:20.360453 #16906] INFO -- py3-windows-10-1803: default: WinRM transport: negotiate +I, [2020-03-06T13:05:42.488883 #16906] INFO -- py3-windows-10-1803: ==> default: Machine booted and ready! +I, [2020-03-06T13:05:42.521792 #16906] INFO -- py3-windows-10-1803: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:05:42.667894 #16906] INFO -- py3-windows-10-1803: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T13:05:42.668055 #16906] INFO -- py3-windows-10-1803: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T13:05:42.668110 #16906] INFO -- py3-windows-10-1803: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T13:05:42.668153 #16906] INFO -- py3-windows-10-1803: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T13:05:42.668196 #16906] INFO -- py3-windows-10-1803: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T13:05:42.668250 #16906] INFO -- py3-windows-10-1803: default: your host and reload your VM. +I, [2020-03-06T13:05:42.668300 #16906] INFO -- py3-windows-10-1803: default: +I, [2020-03-06T13:05:42.668345 #16906] INFO -- py3-windows-10-1803: default: Guest Additions Version: 5.2.16 +I, [2020-03-06T13:05:42.668384 #16906] INFO -- py3-windows-10-1803: default: VirtualBox Version: 6.1 +I, [2020-03-06T13:05:43.404403 #16906] INFO -- py3-windows-10-1803: ==> default: Mounting shared folders... +I, [2020-03-06T13:05:43.406251 #16906] INFO -- py3-windows-10-1803: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:05:50.395434 #16906] INFO -- py3-windows-10-1803: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:06:05.204503 #16906] INFO -- py3-windows-10-1803: [WinRM] Established +I, [2020-03-06T13:06:05.204647 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:05.218911 #16906] INFO -- py3-windows-10-1803: Vagrant instance created. +I, [2020-03-06T13:06:05.220974 #16906] INFO -- py3-windows-10-1803: Finished creating (1m3.30s). +I, [2020-03-06T13:06:05.221480 #16906] INFO -- py3-windows-10-1803: -----> Converging ... +I, [2020-03-06T13:06:05.224302 #16906] INFO -- py3-windows-10-1803: Preparing files for transfer +I, [2020-03-06T13:06:05.224474 #16906] INFO -- py3-windows-10-1803: Preparing salt-minion +I, [2020-03-06T13:06:05.230414 #16906] INFO -- py3-windows-10-1803: Preparing pillars into /srv/pillar +I, [2020-03-06T13:06:05.230563 #16906] INFO -- py3-windows-10-1803: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:06:05.234998 #16906] INFO -- py3-windows-10-1803: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:06:05.424043 #16906] INFO -- py3-windows-10-1803: Preparing state_top +I, [2020-03-06T13:06:05.426095 #16906] INFO -- py3-windows-10-1803: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:06:06.420001 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:06.425708 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:06.426511 #16906] INFO -- py3-windows-10-1803: Directory: C:\ +I, [2020-03-06T13:06:06.427053 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:06.427510 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:06.428057 #16906] INFO -- py3-windows-10-1803: Mode LastWriteTime Length Name +I, [2020-03-06T13:06:06.428673 #16906] INFO -- py3-windows-10-1803: ---- ------------- ------ ---- +I, [2020-03-06T13:06:06.429242 #16906] INFO -- py3-windows-10-1803: d----- 3/6/2020 10:06 AM temp +I, [2020-03-06T13:06:07.001453 #16906] INFO -- py3-windows-10-1803: Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe +I, [2020-03-06T13:06:11.079270 #16906] INFO -- py3-windows-10-1803: Installing Salt minion +I, [2020-03-06T13:06:24.426878 #16906] INFO -- py3-windows-10-1803: Starting the Salt minion service +I, [2020-03-06T13:06:24.427259 #16906] INFO -- py3-windows-10-1803: Salt minion successfully installed +I, [2020-03-06T13:06:31.660267 #16906] INFO -- py3-windows-10-1803: You asked for latest and you have 3000 installed, sweet! +I, [2020-03-06T13:06:31.660955 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:31.661520 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:32.222284 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:32.222667 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:32.223027 #16906] INFO -- py3-windows-10-1803: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:06:32.223412 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:32.223954 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:32.224369 #16906] INFO -- py3-windows-10-1803: Mode LastWriteTime Length Name +I, [2020-03-06T13:06:32.224747 #16906] INFO -- py3-windows-10-1803: ---- ------------- ------ ---- +I, [2020-03-06T13:06:32.225156 #16906] INFO -- py3-windows-10-1803: d----- 3/6/2020 10:06 AM kitchen +I, [2020-03-06T13:06:32.225529 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:32.225926 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:06:32.242308 #16906] INFO -- py3-windows-10-1803: Transferring files to +I, [2020-03-06T13:07:10.812969 #16906] INFO -- py3-windows-10-1803: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:07:10.813396 #16906] INFO -- py3-windows-10-1803: At line:1 char:131 +I, [2020-03-06T13:07:10.813889 #16906] INFO -- py3-windows-10-1803: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:07:10.814334 #16906] INFO -- py3-windows-10-1803: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:07:10.814706 #16906] INFO -- py3-windows-10-1803: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:07:10.815060 #16906] INFO -- py3-windows-10-1803: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:07:10.815444 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:07:10.815817 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:07:10.816300 #16906] INFO -- py3-windows-10-1803: Traceback (most recent call last): +I, [2020-03-06T13:07:10.816855 #16906] INFO -- py3-windows-10-1803: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:07:10.817323 #16906] INFO -- py3-windows-10-1803: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:07:10.817894 #16906] INFO -- py3-windows-10-1803: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:07:10.818242 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:07:10.818649 #16906] INFO -- py3-windows-10-1803: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:07:10.819030 #16906] INFO -- py3-windows-10-1803: Traceback (most recent call last): +I, [2020-03-06T13:07:10.819488 #16906] INFO -- py3-windows-10-1803: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:07:10.819897 #16906] INFO -- py3-windows-10-1803: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:07:10.820324 #16906] INFO -- py3-windows-10-1803: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:07:10.820623 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:08:18.039119 #16906] INFO -- py3-windows-10-1803: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:08:18.039559 #16906] INFO -- py3-windows-10-1803: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:08:18.039934 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:08:18.045169 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:08:18.045789 #16906] INFO -- py3-windows-10-1803: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:08:18.046278 #16906] INFO -- py3-windows-10-1803: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:08:18.046702 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:08:18.047051 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.229354 #16906] INFO -- py3-windows-10-1803: local: +I, [2020-03-06T13:09:14.229933 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.230762 #16906] INFO -- py3-windows-10-1803: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:09:14.231288 #16906] INFO -- py3-windows-10-1803: Function: system.hostname +I, [2020-03-06T13:09:14.231797 #16906] INFO -- py3-windows-10-1803: Name: saltstack1 +I, [2020-03-06T13:09:14.232278 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.232808 #16906] INFO -- py3-windows-10-1803: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:09:14.233346 #16906] INFO -- py3-windows-10-1803: Started: 10:06:47.336229 +I, [2020-03-06T13:09:14.233904 #16906] INFO -- py3-windows-10-1803: Duration: 108.65 ms +I, [2020-03-06T13:09:14.234363 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.234851 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.235296 #16906] INFO -- py3-windows-10-1803: hostname: +I, [2020-03-06T13:09:14.235741 #16906] INFO -- py3-windows-10-1803: saltstack1 +I, [2020-03-06T13:09:14.236154 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.236663 #16906] INFO -- py3-windows-10-1803: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:09:14.237137 #16906] INFO -- py3-windows-10-1803: Function: system.computer_desc +I, [2020-03-06T13:09:14.237643 #16906] INFO -- py3-windows-10-1803: Name: Saltstack Computer Description +I, [2020-03-06T13:09:14.238165 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.238717 #16906] INFO -- py3-windows-10-1803: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:09:14.239231 #16906] INFO -- py3-windows-10-1803: Started: 10:06:47.444879 +I, [2020-03-06T13:09:14.239754 #16906] INFO -- py3-windows-10-1803: Duration: 2654.225 ms +I, [2020-03-06T13:09:14.240233 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.240748 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.241285 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.241855 #16906] INFO -- py3-windows-10-1803: Saltstack Computer Description +I, [2020-03-06T13:09:14.242410 #16906] INFO -- py3-windows-10-1803: old: +I, [2020-03-06T13:09:14.242913 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.243365 #16906] INFO -- py3-windows-10-1803: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:09:14.243801 #16906] INFO -- py3-windows-10-1803: Function: timezone.system +I, [2020-03-06T13:09:14.244284 #16906] INFO -- py3-windows-10-1803: Name: America/New_York +I, [2020-03-06T13:09:14.244806 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.245308 #16906] INFO -- py3-windows-10-1803: Comment: Set timezone America/New_York +I, [2020-03-06T13:09:14.245843 #16906] INFO -- py3-windows-10-1803: Started: 10:06:50.133083 +I, [2020-03-06T13:09:14.246370 #16906] INFO -- py3-windows-10-1803: Duration: 16.518 ms +I, [2020-03-06T13:09:14.246863 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.247384 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.247867 #16906] INFO -- py3-windows-10-1803: timezone: +I, [2020-03-06T13:09:14.248337 #16906] INFO -- py3-windows-10-1803: America/New_York +I, [2020-03-06T13:09:14.248729 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.249144 #16906] INFO -- py3-windows-10-1803: ID: windows.module.environ.items +I, [2020-03-06T13:09:14.249557 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.250012 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.250474 #16906] INFO -- py3-windows-10-1803: Comment: environ.items: Success +I, [2020-03-06T13:09:14.250886 #16906] INFO -- py3-windows-10-1803: Started: 10:06:50.161371 +I, [2020-03-06T13:09:14.257538 #16906] INFO -- py3-windows-10-1803: Duration: 0.0 ms +I, [2020-03-06T13:09:14.258309 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.259013 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.259773 #16906] INFO -- py3-windows-10-1803: environ.items: +I, [2020-03-06T13:09:14.260462 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.261070 #16906] INFO -- py3-windows-10-1803: ALLUSERSPROFILE: +I, [2020-03-06T13:09:14.261537 #16906] INFO -- py3-windows-10-1803: C:\ProgramData +I, [2020-03-06T13:09:14.262012 #16906] INFO -- py3-windows-10-1803: APPDATA: +I, [2020-03-06T13:09:14.262514 #16906] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:09:14.262908 #16906] INFO -- py3-windows-10-1803: COMMONPROGRAMFILES: +I, [2020-03-06T13:09:14.263250 #16906] INFO -- py3-windows-10-1803: C:\Program Files\Common Files +I, [2020-03-06T13:09:14.263646 #16906] INFO -- py3-windows-10-1803: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:09:14.264035 #16906] INFO -- py3-windows-10-1803: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:09:14.264536 #16906] INFO -- py3-windows-10-1803: COMMONPROGRAMW6432: +I, [2020-03-06T13:09:14.265402 #16906] INFO -- py3-windows-10-1803: C:\Program Files\Common Files +I, [2020-03-06T13:09:14.265831 #16906] INFO -- py3-windows-10-1803: COMPUTERNAME: +I, [2020-03-06T13:09:14.266263 #16906] INFO -- py3-windows-10-1803: VAGRANT-10 +I, [2020-03-06T13:09:14.266634 #16906] INFO -- py3-windows-10-1803: COMSPEC: +I, [2020-03-06T13:09:14.266980 #16906] INFO -- py3-windows-10-1803: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:09:14.267295 #16906] INFO -- py3-windows-10-1803: DRIVERDATA: +I, [2020-03-06T13:09:14.267775 #16906] INFO -- py3-windows-10-1803: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T13:09:14.268300 #16906] INFO -- py3-windows-10-1803: HOMEDRIVE: +I, [2020-03-06T13:09:14.268812 #16906] INFO -- py3-windows-10-1803: C: +I, [2020-03-06T13:09:14.269252 #16906] INFO -- py3-windows-10-1803: HOMEPATH: +I, [2020-03-06T13:09:14.269696 #16906] INFO -- py3-windows-10-1803: \Users\vagrant +I, [2020-03-06T13:09:14.270112 #16906] INFO -- py3-windows-10-1803: LOCALAPPDATA: +I, [2020-03-06T13:09:14.270500 #16906] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:09:14.270922 #16906] INFO -- py3-windows-10-1803: LOGONSERVER: +I, [2020-03-06T13:09:14.271405 #16906] INFO -- py3-windows-10-1803: \\VAGRANT-10 +I, [2020-03-06T13:09:14.271957 #16906] INFO -- py3-windows-10-1803: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:09:14.272474 #16906] INFO -- py3-windows-10-1803: 2 +I, [2020-03-06T13:09:14.273037 #16906] INFO -- py3-windows-10-1803: ONEDRIVE: +I, [2020-03-06T13:09:14.273584 #16906] INFO -- py3-windows-10-1803: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:09:14.274116 #16906] INFO -- py3-windows-10-1803: OS: +I, [2020-03-06T13:09:14.274648 #16906] INFO -- py3-windows-10-1803: Windows_NT +I, [2020-03-06T13:09:14.275029 #16906] INFO -- py3-windows-10-1803: PATH: +I, [2020-03-06T13:09:14.275462 #16906] INFO -- py3-windows-10-1803: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:09:14.275869 #16906] INFO -- py3-windows-10-1803: PATHEXT: +I, [2020-03-06T13:09:14.276240 #16906] INFO -- py3-windows-10-1803: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:09:14.276589 #16906] INFO -- py3-windows-10-1803: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:09:14.276957 #16906] INFO -- py3-windows-10-1803: AMD64 +I, [2020-03-06T13:09:14.277371 #16906] INFO -- py3-windows-10-1803: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:09:14.277808 #16906] INFO -- py3-windows-10-1803: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:09:14.278228 #16906] INFO -- py3-windows-10-1803: PROCESSOR_LEVEL: +I, [2020-03-06T13:09:14.278650 #16906] INFO -- py3-windows-10-1803: 6 +I, [2020-03-06T13:09:14.279083 #16906] INFO -- py3-windows-10-1803: PROCESSOR_REVISION: +I, [2020-03-06T13:09:14.279558 #16906] INFO -- py3-windows-10-1803: 8e0c +I, [2020-03-06T13:09:14.281419 #16906] INFO -- py3-windows-10-1803: PROGRAMDATA: +I, [2020-03-06T13:09:14.283039 #16906] INFO -- py3-windows-10-1803: C:\ProgramData +I, [2020-03-06T13:09:14.284971 #16906] INFO -- py3-windows-10-1803: PROGRAMFILES: +I, [2020-03-06T13:09:14.286511 #16906] INFO -- py3-windows-10-1803: C:\Program Files +I, [2020-03-06T13:09:14.287973 #16906] INFO -- py3-windows-10-1803: PROGRAMFILES(X86): +I, [2020-03-06T13:09:14.288832 #16906] INFO -- py3-windows-10-1803: C:\Program Files (x86) +I, [2020-03-06T13:09:14.289666 #16906] INFO -- py3-windows-10-1803: PROGRAMW6432: +I, [2020-03-06T13:09:14.290529 #16906] INFO -- py3-windows-10-1803: C:\Program Files +I, [2020-03-06T13:09:14.291335 #16906] INFO -- py3-windows-10-1803: PROMPT: +I, [2020-03-06T13:09:14.291842 #16906] INFO -- py3-windows-10-1803: $P$G +I, [2020-03-06T13:09:14.293124 #16906] INFO -- py3-windows-10-1803: PSMODULEPATH: +I, [2020-03-06T13:09:14.294688 #16906] INFO -- py3-windows-10-1803: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:09:14.296215 #16906] INFO -- py3-windows-10-1803: PUBLIC: +I, [2020-03-06T13:09:14.297607 #16906] INFO -- py3-windows-10-1803: C:\Users\Public +I, [2020-03-06T13:09:14.299168 #16906] INFO -- py3-windows-10-1803: PYTHON: +I, [2020-03-06T13:09:14.299747 #16906] INFO -- py3-windows-10-1803: C:\salt\bin\python.exe +I, [2020-03-06T13:09:14.302483 #16906] INFO -- py3-windows-10-1803: SALTDIR: +I, [2020-03-06T13:09:14.303045 #16906] INFO -- py3-windows-10-1803: C:\salt +I, [2020-03-06T13:09:14.304432 #16906] INFO -- py3-windows-10-1803: SCRIPT: +I, [2020-03-06T13:09:14.305997 #16906] INFO -- py3-windows-10-1803: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:09:14.307705 #16906] INFO -- py3-windows-10-1803: SYSTEMDRIVE: +I, [2020-03-06T13:09:14.308945 #16906] INFO -- py3-windows-10-1803: C: +I, [2020-03-06T13:09:14.310396 #16906] INFO -- py3-windows-10-1803: SYSTEMROOT: +I, [2020-03-06T13:09:14.312006 #16906] INFO -- py3-windows-10-1803: C:\Windows +I, [2020-03-06T13:09:14.313073 #16906] INFO -- py3-windows-10-1803: TEMP: +I, [2020-03-06T13:09:14.314253 #16906] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:09:14.314906 #16906] INFO -- py3-windows-10-1803: TMP: +I, [2020-03-06T13:09:14.316713 #16906] INFO -- py3-windows-10-1803: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:09:14.318421 #16906] INFO -- py3-windows-10-1803: USERDOMAIN: +I, [2020-03-06T13:09:14.320505 #16906] INFO -- py3-windows-10-1803: VAGRANT-10 +I, [2020-03-06T13:09:14.321729 #16906] INFO -- py3-windows-10-1803: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:09:14.323528 #16906] INFO -- py3-windows-10-1803: VAGRANT-10 +I, [2020-03-06T13:09:14.326656 #16906] INFO -- py3-windows-10-1803: USERNAME: +I, [2020-03-06T13:09:14.327385 #16906] INFO -- py3-windows-10-1803: vagrant +I, [2020-03-06T13:09:14.330417 #16906] INFO -- py3-windows-10-1803: USERPROFILE: +I, [2020-03-06T13:09:14.331202 #16906] INFO -- py3-windows-10-1803: C:\Users\vagrant +I, [2020-03-06T13:09:14.332946 #16906] INFO -- py3-windows-10-1803: WINDIR: +I, [2020-03-06T13:09:14.334999 #16906] INFO -- py3-windows-10-1803: C:\Windows +I, [2020-03-06T13:09:14.336967 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.338379 #16906] INFO -- py3-windows-10-1803: ID: windows.module.user.current +I, [2020-03-06T13:09:14.339494 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.340270 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.341291 #16906] INFO -- py3-windows-10-1803: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:09:14.341939 #16906] INFO -- py3-windows-10-1803: Started: 10:06:50.161371 +I, [2020-03-06T13:09:14.343220 #16906] INFO -- py3-windows-10-1803: Duration: 31.475 ms +I, [2020-03-06T13:09:14.345309 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.346637 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.348132 #16906] INFO -- py3-windows-10-1803: user.current: +I, [2020-03-06T13:09:14.356603 #16906] INFO -- py3-windows-10-1803: VAGRANT-10\vagrant +I, [2020-03-06T13:09:14.357218 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.357964 #16906] INFO -- py3-windows-10-1803: ID: windows.module.status.uptime +I, [2020-03-06T13:09:14.358585 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.359058 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.359671 #16906] INFO -- py3-windows-10-1803: Comment: status.uptime: 0:01:27.225047 +I, [2020-03-06T13:09:14.360274 #16906] INFO -- py3-windows-10-1803: Started: 10:06:50.208139 +I, [2020-03-06T13:09:14.360859 #16906] INFO -- py3-windows-10-1803: Duration: 16.908 ms +I, [2020-03-06T13:09:14.361388 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.361786 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.362191 #16906] INFO -- py3-windows-10-1803: status.uptime: +I, [2020-03-06T13:09:14.362592 #16906] INFO -- py3-windows-10-1803: 0:01:27.225047 +I, [2020-03-06T13:09:14.363032 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.363489 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:09:14.363897 #16906] INFO -- py3-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:09:14.364539 #16906] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage +I, [2020-03-06T13:09:14.365064 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.365572 #16906] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run +I, [2020-03-06T13:09:14.366025 #16906] INFO -- py3-windows-10-1803: Started: 10:06:50.241441 +I, [2020-03-06T13:09:14.366467 #16906] INFO -- py3-windows-10-1803: Duration: 1734.105 ms +I, [2020-03-06T13:09:14.366942 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.367500 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.368009 #16906] INFO -- py3-windows-10-1803: pid: +I, [2020-03-06T13:09:14.368485 #16906] INFO -- py3-windows-10-1803: 508 +I, [2020-03-06T13:09:14.368937 #16906] INFO -- py3-windows-10-1803: retcode: +I, [2020-03-06T13:09:14.369402 #16906] INFO -- py3-windows-10-1803: 0 +I, [2020-03-06T13:09:14.369848 #16906] INFO -- py3-windows-10-1803: stderr: +I, [2020-03-06T13:09:14.370323 #16906] INFO -- py3-windows-10-1803: stdout: +I, [2020-03-06T13:09:14.370751 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.371229 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:09:14.371682 #16906] INFO -- py3-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:09:14.372186 #16906] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage +I, [2020-03-06T13:09:14.372648 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.373164 #16906] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run +I, [2020-03-06T13:09:14.373732 #16906] INFO -- py3-windows-10-1803: Started: 10:06:51.975546 +I, [2020-03-06T13:09:14.374302 #16906] INFO -- py3-windows-10-1803: Duration: 1330.966 ms +I, [2020-03-06T13:09:14.374841 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.375417 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.375971 #16906] INFO -- py3-windows-10-1803: pid: +I, [2020-03-06T13:09:14.376541 #16906] INFO -- py3-windows-10-1803: 3660 +I, [2020-03-06T13:09:14.377096 #16906] INFO -- py3-windows-10-1803: retcode: +I, [2020-03-06T13:09:14.377687 #16906] INFO -- py3-windows-10-1803: 0 +I, [2020-03-06T13:09:14.378248 #16906] INFO -- py3-windows-10-1803: stderr: +I, [2020-03-06T13:09:14.378806 #16906] INFO -- py3-windows-10-1803: stdout: +I, [2020-03-06T13:09:14.379394 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.379994 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:09:14.380562 #16906] INFO -- py3-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:09:14.381147 #16906] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage +I, [2020-03-06T13:09:14.381723 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.382339 #16906] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run +I, [2020-03-06T13:09:14.382879 #16906] INFO -- py3-windows-10-1803: Started: 10:06:53.306512 +I, [2020-03-06T13:09:14.383322 #16906] INFO -- py3-windows-10-1803: Duration: 1297.329 ms +I, [2020-03-06T13:09:14.383762 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.384205 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.384677 #16906] INFO -- py3-windows-10-1803: pid: +I, [2020-03-06T13:09:14.385144 #16906] INFO -- py3-windows-10-1803: 2752 +I, [2020-03-06T13:09:14.385588 #16906] INFO -- py3-windows-10-1803: retcode: +I, [2020-03-06T13:09:14.386052 #16906] INFO -- py3-windows-10-1803: 0 +I, [2020-03-06T13:09:14.386537 #16906] INFO -- py3-windows-10-1803: stderr: +I, [2020-03-06T13:09:14.387267 #16906] INFO -- py3-windows-10-1803: stdout: +I, [2020-03-06T13:09:14.387856 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.388505 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:09:14.389115 #16906] INFO -- py3-windows-10-1803: Function: cmd.run +I, [2020-03-06T13:09:14.389700 #16906] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage +I, [2020-03-06T13:09:14.390290 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.390800 #16906] INFO -- py3-windows-10-1803: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run +I, [2020-03-06T13:09:14.391357 #16906] INFO -- py3-windows-10-1803: Started: 10:06:54.603841 +I, [2020-03-06T13:09:14.391899 #16906] INFO -- py3-windows-10-1803: Duration: 1309.395 ms +I, [2020-03-06T13:09:14.392411 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.392983 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.393538 #16906] INFO -- py3-windows-10-1803: pid: +I, [2020-03-06T13:09:14.394124 #16906] INFO -- py3-windows-10-1803: 6068 +I, [2020-03-06T13:09:14.394663 #16906] INFO -- py3-windows-10-1803: retcode: +I, [2020-03-06T13:09:14.395205 #16906] INFO -- py3-windows-10-1803: 0 +I, [2020-03-06T13:09:14.395783 #16906] INFO -- py3-windows-10-1803: stderr: +I, [2020-03-06T13:09:14.396311 #16906] INFO -- py3-windows-10-1803: stdout: +I, [2020-03-06T13:09:14.396933 #16906] INFO -- py3-windows-10-1803: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:06:55.929062 Duration: 480.898 ms +I, [2020-03-06T13:09:14.397476 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.398112 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:09:14.398721 #16906] INFO -- py3-windows-10-1803: Function: reg.present +I, [2020-03-06T13:09:14.399286 #16906] INFO -- py3-windows-10-1803: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:09:14.399838 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.400402 #16906] INFO -- py3-windows-10-1803: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:09:14.400951 #16906] INFO -- py3-windows-10-1803: Started: 10:06:56.424577 +I, [2020-03-06T13:09:14.401460 #16906] INFO -- py3-windows-10-1803: Duration: 13636.373 ms +I, [2020-03-06T13:09:14.401987 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.402519 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.403056 #16906] INFO -- py3-windows-10-1803: reg: +I, [2020-03-06T13:09:14.403602 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.404146 #16906] INFO -- py3-windows-10-1803: Added: +I, [2020-03-06T13:09:14.404562 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.404938 #16906] INFO -- py3-windows-10-1803: Entry: +I, [2020-03-06T13:09:14.405478 #16906] INFO -- py3-windows-10-1803: SystemDefaultTlsVersions +I, [2020-03-06T13:09:14.406047 #16906] INFO -- py3-windows-10-1803: Inheritance: +I, [2020-03-06T13:09:14.406637 #16906] INFO -- py3-windows-10-1803: True +I, [2020-03-06T13:09:14.407199 #16906] INFO -- py3-windows-10-1803: Key: +I, [2020-03-06T13:09:14.407785 #16906] INFO -- py3-windows-10-1803: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:09:14.408313 #16906] INFO -- py3-windows-10-1803: Owner: +I, [2020-03-06T13:09:14.408860 #16906] INFO -- py3-windows-10-1803: None +I, [2020-03-06T13:09:14.409390 #16906] INFO -- py3-windows-10-1803: Perms: +I, [2020-03-06T13:09:14.409933 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.410508 #16906] INFO -- py3-windows-10-1803: Deny: +I, [2020-03-06T13:09:14.411077 #16906] INFO -- py3-windows-10-1803: None +I, [2020-03-06T13:09:14.411662 #16906] INFO -- py3-windows-10-1803: Grant: +I, [2020-03-06T13:09:14.412190 #16906] INFO -- py3-windows-10-1803: None +I, [2020-03-06T13:09:14.412769 #16906] INFO -- py3-windows-10-1803: Value: +I, [2020-03-06T13:09:14.413393 #16906] INFO -- py3-windows-10-1803: 1 +I, [2020-03-06T13:09:14.413956 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.414585 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:09:14.415195 #16906] INFO -- py3-windows-10-1803: Function: reg.present +I, [2020-03-06T13:09:14.415793 #16906] INFO -- py3-windows-10-1803: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:09:14.416374 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.416948 #16906] INFO -- py3-windows-10-1803: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:09:14.417534 #16906] INFO -- py3-windows-10-1803: Started: 10:07:10.060950 +I, [2020-03-06T13:09:14.418092 #16906] INFO -- py3-windows-10-1803: Duration: 222.561 ms +I, [2020-03-06T13:09:14.418690 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.419277 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.419863 #16906] INFO -- py3-windows-10-1803: reg: +I, [2020-03-06T13:09:14.420496 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.421055 #16906] INFO -- py3-windows-10-1803: Added: +I, [2020-03-06T13:09:14.421670 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.422299 #16906] INFO -- py3-windows-10-1803: Entry: +I, [2020-03-06T13:09:14.422901 #16906] INFO -- py3-windows-10-1803: SystemDefaultTlsVersions +I, [2020-03-06T13:09:14.423541 #16906] INFO -- py3-windows-10-1803: Inheritance: +I, [2020-03-06T13:09:14.424181 #16906] INFO -- py3-windows-10-1803: True +I, [2020-03-06T13:09:14.424781 #16906] INFO -- py3-windows-10-1803: Key: +I, [2020-03-06T13:09:14.425395 #16906] INFO -- py3-windows-10-1803: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:09:14.426027 #16906] INFO -- py3-windows-10-1803: Owner: +I, [2020-03-06T13:09:14.431477 #16906] INFO -- py3-windows-10-1803: None +I, [2020-03-06T13:09:14.432328 #16906] INFO -- py3-windows-10-1803: Perms: +I, [2020-03-06T13:09:14.432996 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.433561 #16906] INFO -- py3-windows-10-1803: Deny: +I, [2020-03-06T13:09:14.434216 #16906] INFO -- py3-windows-10-1803: None +I, [2020-03-06T13:09:14.434816 #16906] INFO -- py3-windows-10-1803: Grant: +I, [2020-03-06T13:09:14.435356 #16906] INFO -- py3-windows-10-1803: None +I, [2020-03-06T13:09:14.435944 #16906] INFO -- py3-windows-10-1803: Value: +I, [2020-03-06T13:09:14.436661 #16906] INFO -- py3-windows-10-1803: 1 +I, [2020-03-06T13:09:14.437457 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.438150 #16906] INFO -- py3-windows-10-1803: ID: manually.update_git_repo-ng +I, [2020-03-06T13:09:14.438806 #16906] INFO -- py3-windows-10-1803: Function: archive.extracted +I, [2020-03-06T13:09:14.439513 #16906] INFO -- py3-windows-10-1803: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:09:14.440066 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.441604 #16906] INFO -- py3-windows-10-1803: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:09:14.442245 #16906] INFO -- py3-windows-10-1803: Started: 10:07:10.299023 +I, [2020-03-06T13:09:14.442864 #16906] INFO -- py3-windows-10-1803: Duration: 827.692 ms +I, [2020-03-06T13:09:14.443411 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.443948 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.444526 #16906] INFO -- py3-windows-10-1803: directories_created: +I, [2020-03-06T13:09:14.445103 #16906] INFO -- py3-windows-10-1803: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:09:14.446036 #16906] INFO -- py3-windows-10-1803: extracted_files: +I, [2020-03-06T13:09:14.446774 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ +I, [2020-03-06T13:09:14.447387 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:09:14.448116 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:09:14.448802 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:09:14.449571 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:09:14.450456 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:09:14.451335 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:09:14.452107 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:09:14.453009 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:09:14.453889 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:09:14.454552 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:09:14.455034 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:09:14.455540 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:09:14.455966 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:09:14.456473 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:09:14.456888 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:09:14.457315 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:09:14.457878 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:09:14.458423 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:09:14.458991 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:09:14.459556 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:09:14.460062 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:09:14.460563 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:09:14.460954 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:09:14.461419 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:09:14.461861 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:09:14.462291 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:09:14.462798 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:09:14.463283 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:09:14.463796 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:09:14.464397 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:09:14.465079 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:09:14.465760 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:09:14.466417 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:09:14.466987 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:09:14.467572 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:09:14.468146 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:09:14.468750 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:09:14.469281 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:09:14.469777 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:09:14.470292 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:09:14.470757 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:09:14.471250 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:09:14.471834 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:09:14.472416 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:09:14.472886 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:09:14.473318 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:09:14.473827 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:09:14.474274 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:09:14.474799 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:09:14.475323 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:09:14.475889 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:09:14.476403 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:09:14.476907 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:09:14.477353 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:09:14.477915 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:09:14.478529 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:09:14.479085 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:09:14.479542 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:09:14.479978 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:09:14.480554 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:09:14.481239 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:09:14.481887 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:09:14.482494 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:09:14.483136 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:09:14.483761 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:09:14.484280 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:09:14.484765 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:09:14.485312 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:09:14.485820 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:09:14.486268 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:09:14.486730 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:09:14.487171 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:09:14.487626 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:09:14.488131 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:09:14.488727 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:09:14.489298 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:09:14.489899 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:09:14.490527 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:09:14.491165 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:09:14.491848 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:09:14.492392 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:09:14.492945 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:09:14.493519 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:09:14.494093 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:09:14.494679 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:09:14.495254 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:09:14.495858 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:09:14.496481 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:09:14.497042 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:09:14.497662 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:09:14.498276 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:09:14.498884 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:09:14.499518 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:09:14.500101 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:09:14.500755 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:09:14.501393 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:09:14.501970 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:09:14.502640 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:09:14.503228 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:09:14.503724 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:09:14.504200 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:09:14.504628 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:09:14.505165 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:09:14.505607 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:09:14.510565 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:09:14.511152 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:09:14.511681 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:09:14.512143 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:09:14.512634 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:09:14.513130 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:09:14.513655 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:09:14.514146 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:09:14.514589 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:09:14.515084 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:09:14.515629 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:09:14.516151 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:09:14.516634 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:09:14.517076 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:09:14.517539 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:09:14.518847 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:09:14.519448 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:09:14.520018 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:09:14.520496 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:09:14.520997 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:09:14.521497 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:09:14.522020 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:09:14.522481 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:09:14.522954 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:09:14.523414 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:09:14.523928 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:09:14.524355 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:09:14.524885 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:09:14.525327 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:09:14.525858 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:09:14.526301 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:09:14.526784 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:09:14.527330 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:09:14.527826 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:09:14.528302 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:09:14.528836 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:09:14.529327 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:09:14.529941 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:09:14.530526 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:09:14.531159 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:09:14.531777 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:09:14.532376 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:09:14.532966 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:09:14.533560 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:09:14.534120 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:09:14.534729 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:09:14.535296 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:09:14.535892 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:09:14.536471 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:09:14.537019 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:09:14.537527 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:09:14.537977 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:09:14.538454 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:09:14.538998 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:09:14.539605 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:09:14.540189 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:09:14.540795 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:09:14.541404 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:09:14.541968 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:09:14.542555 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:09:14.543015 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:09:14.543469 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:09:14.543921 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:09:14.544478 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:09:14.544964 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:09:14.545501 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:09:14.545999 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:09:14.546521 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:09:14.547000 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:09:14.547559 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:09:14.548261 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:09:14.548922 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:09:14.549599 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:09:14.550262 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:09:14.550909 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:09:14.551567 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:09:14.552203 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:09:14.552814 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:09:14.553467 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:09:14.554076 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:09:14.554718 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:09:14.555360 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:09:14.556011 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:09:14.556646 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:09:14.557342 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:09:14.557995 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:09:14.558601 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:09:14.559219 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:09:14.559811 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:09:14.560444 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:09:14.561022 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:09:14.561591 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:09:14.562174 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:09:14.562689 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:09:14.563203 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:09:14.563738 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:09:14.564212 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:09:14.564765 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:09:14.565271 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:09:14.565746 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:09:14.566290 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:09:14.566915 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:09:14.567498 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:09:14.568120 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:09:14.568744 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:09:14.569343 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:09:14.569901 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:09:14.570435 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:09:14.570971 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:09:14.571503 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:09:14.572050 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:09:14.572611 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:09:14.573171 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:09:14.573740 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:09:14.574274 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:09:14.574868 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:09:14.575451 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:09:14.576067 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:09:14.576699 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:09:14.577263 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:09:14.577850 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:09:14.578455 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:09:14.579031 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:09:14.579630 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:09:14.585724 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:09:14.586548 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:09:14.587188 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:09:14.587721 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:09:14.588257 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:09:14.588804 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:09:14.589335 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:09:14.589859 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:09:14.590377 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:09:14.590929 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:09:14.591523 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:09:14.592113 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:09:14.592646 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:09:14.593343 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:09:14.593983 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:09:14.595725 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:09:14.596594 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:09:14.597321 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:09:14.598030 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:09:14.598557 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:09:14.599168 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:09:14.599791 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:09:14.600462 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:09:14.601156 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:09:14.601843 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:09:14.602499 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:09:14.603146 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:09:14.603771 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:09:14.604457 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:09:14.605145 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:09:14.605789 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:09:14.606398 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:09:14.607056 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:09:14.607635 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:09:14.608212 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:09:14.608801 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:09:14.609375 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:09:14.609969 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:09:14.610555 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:09:14.611106 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:09:14.611572 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:09:14.612002 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:09:14.612576 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:09:14.613026 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:09:14.613564 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:09:14.614015 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:09:14.614502 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:09:14.615059 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:09:14.615557 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:09:14.616087 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:09:14.616561 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:09:14.617094 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:09:14.617581 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:09:14.618106 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:09:14.618619 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:09:14.619056 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:09:14.619559 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:09:14.620074 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:09:14.620612 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:09:14.621128 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:09:14.621673 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:09:14.622145 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:09:14.622673 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:09:14.623165 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:09:14.623696 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:09:14.624317 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:09:14.624933 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:09:14.625567 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:09:14.626161 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:09:14.626759 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:09:14.627254 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:09:14.627834 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:09:14.628372 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:09:14.628960 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:09:14.629505 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:09:14.629971 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:09:14.630513 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:09:14.631021 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:09:14.631530 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:09:14.632133 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:09:14.632614 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:09:14.633116 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:09:14.633608 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:09:14.634138 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:09:14.634625 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:09:14.635106 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:09:14.635619 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:09:14.636104 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:09:14.636677 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:09:14.637281 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:09:14.637847 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:09:14.638439 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:09:14.638935 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:09:14.639404 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:09:14.639902 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:09:14.640406 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:09:14.640899 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:09:14.805658 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:09:14.806385 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:09:14.807035 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:09:14.807519 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:09:14.807969 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:09:14.808423 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:09:14.808885 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:09:14.809395 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:09:14.809844 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:09:14.810325 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:09:14.810923 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:09:14.811505 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:09:14.812021 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:09:14.812500 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:09:14.813047 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:09:14.813562 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:09:14.814075 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:09:14.814670 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:09:14.815150 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:09:14.815698 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:09:14.816183 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:09:14.816724 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:09:14.817183 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:09:14.817683 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:09:14.818167 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:09:14.818638 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:09:14.819173 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:09:14.819685 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:09:14.820177 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:09:14.820682 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:09:14.821206 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:09:14.821706 #16906] INFO -- py3-windows-10-1803: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:09:14.822143 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.822663 #16906] INFO -- py3-windows-10-1803: ID: rename-extract +I, [2020-03-06T13:09:14.823154 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.823642 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.824114 #16906] INFO -- py3-windows-10-1803: Comment: file.rename: True +I, [2020-03-06T13:09:14.824635 #16906] INFO -- py3-windows-10-1803: Started: 10:07:11.126715 +I, [2020-03-06T13:09:14.825101 #16906] INFO -- py3-windows-10-1803: Duration: 0.0 ms +I, [2020-03-06T13:09:14.825677 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.826258 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.826875 #16906] INFO -- py3-windows-10-1803: file.rename: +I, [2020-03-06T13:09:14.833732 #16906] INFO -- py3-windows-10-1803: True +I, [2020-03-06T13:09:14.834469 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.835078 #16906] INFO -- py3-windows-10-1803: ID: pkg.refresh_db +I, [2020-03-06T13:09:14.835598 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.836114 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.836567 #16906] INFO -- py3-windows-10-1803: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:09:14.837054 #16906] INFO -- py3-windows-10-1803: Started: 10:07:11.126715 +I, [2020-03-06T13:09:14.837507 #16906] INFO -- py3-windows-10-1803: Duration: 7899.471 ms +I, [2020-03-06T13:09:14.837976 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.838551 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.839045 #16906] INFO -- py3-windows-10-1803: pkg.refresh_db: +I, [2020-03-06T13:09:14.839497 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.839964 #16906] INFO -- py3-windows-10-1803: failed: +I, [2020-03-06T13:09:14.840405 #16906] INFO -- py3-windows-10-1803: 0 +I, [2020-03-06T13:09:14.840931 #16906] INFO -- py3-windows-10-1803: success: +I, [2020-03-06T13:09:14.841382 #16906] INFO -- py3-windows-10-1803: 298 +I, [2020-03-06T13:09:14.841923 #16906] INFO -- py3-windows-10-1803: total: +I, [2020-03-06T13:09:14.842397 #16906] INFO -- py3-windows-10-1803: 298 +I, [2020-03-06T13:09:14.842860 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.843300 #16906] INFO -- py3-windows-10-1803: ID: kdiff3 +I, [2020-03-06T13:09:14.843788 #16906] INFO -- py3-windows-10-1803: Function: pkg.installed +I, [2020-03-06T13:09:14.844214 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.844678 #16906] INFO -- py3-windows-10-1803: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:09:14.845259 #16906] INFO -- py3-windows-10-1803: Started: 10:07:19.045830 +I, [2020-03-06T13:09:14.845840 #16906] INFO -- py3-windows-10-1803: Duration: 3421.443 ms +I, [2020-03-06T13:09:14.846403 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.846994 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.847584 #16906] INFO -- py3-windows-10-1803: kdiff3: +I, [2020-03-06T13:09:14.848177 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.848771 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.849347 #16906] INFO -- py3-windows-10-1803: Not Found +I, [2020-03-06T13:09:14.849962 #16906] INFO -- py3-windows-10-1803: old: +I, [2020-03-06T13:09:14.850509 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.851098 #16906] INFO -- py3-windows-10-1803: ID: 7zip +I, [2020-03-06T13:09:14.851699 #16906] INFO -- py3-windows-10-1803: Function: pkg.installed +I, [2020-03-06T13:09:14.852262 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.852827 #16906] INFO -- py3-windows-10-1803: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:09:14.853380 #16906] INFO -- py3-windows-10-1803: Started: 10:07:22.523215 +I, [2020-03-06T13:09:14.853939 #16906] INFO -- py3-windows-10-1803: Duration: 12409.751 ms +I, [2020-03-06T13:09:14.854485 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.855067 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.855633 #16906] INFO -- py3-windows-10-1803: 7zip: +I, [2020-03-06T13:09:14.856095 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.856596 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.857216 #16906] INFO -- py3-windows-10-1803: 18.06.00.0 +I, [2020-03-06T13:09:14.857850 #16906] INFO -- py3-windows-10-1803: old: +I, [2020-03-06T13:09:14.858479 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.858999 #16906] INFO -- py3-windows-10-1803: ID: git +I, [2020-03-06T13:09:14.859509 #16906] INFO -- py3-windows-10-1803: Function: pkg.installed +I, [2020-03-06T13:09:14.859965 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.860418 #16906] INFO -- py3-windows-10-1803: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:09:14.860911 #16906] INFO -- py3-windows-10-1803: Started: 10:07:34.980514 +I, [2020-03-06T13:09:14.861411 #16906] INFO -- py3-windows-10-1803: Duration: 42519.164 ms +I, [2020-03-06T13:09:14.861834 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.862289 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.862804 #16906] INFO -- py3-windows-10-1803: git: +I, [2020-03-06T13:09:14.863249 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.863703 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.864221 #16906] INFO -- py3-windows-10-1803: 2.23.0.windows.1 +I, [2020-03-06T13:09:14.864694 #16906] INFO -- py3-windows-10-1803: old: +I, [2020-03-06T13:09:14.865133 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.865613 #16906] INFO -- py3-windows-10-1803: ID: windows_environment.refresh.path +I, [2020-03-06T13:09:14.866066 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.866527 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.866969 #16906] INFO -- py3-windows-10-1803: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:09:14.867429 #16906] INFO -- py3-windows-10-1803: Started: 10:08:17.499678 +I, [2020-03-06T13:09:14.867866 #16906] INFO -- py3-windows-10-1803: Duration: 47.373 ms +I, [2020-03-06T13:09:14.868286 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.868730 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.869218 #16906] INFO -- py3-windows-10-1803: windows_environment.refresh: +I, [2020-03-06T13:09:14.869672 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.870087 #16906] INFO -- py3-windows-10-1803: PATH: +I, [2020-03-06T13:09:14.870724 #16906] INFO -- py3-windows-10-1803: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:09:14.871167 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.871668 #16906] INFO -- py3-windows-10-1803: ID: chocolatey.bootstrap +I, [2020-03-06T13:09:14.872275 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.872857 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.873490 #16906] INFO -- py3-windows-10-1803: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:09:14.874042 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.874683 #16906] INFO -- py3-windows-10-1803: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:09:14.875232 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.875816 #16906] INFO -- py3-windows-10-1803: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:09:14.876371 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.877013 #16906] INFO -- py3-windows-10-1803: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:09:14.877585 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.878224 #16906] INFO -- py3-windows-10-1803: Installing chocolatey on this machine +I, [2020-03-06T13:09:14.878766 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.879401 #16906] INFO -- py3-windows-10-1803: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:09:14.880060 #16906] INFO -- py3-windows-10-1803: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:09:14.880588 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.881200 #16906] INFO -- py3-windows-10-1803: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:09:14.881788 #16906] INFO -- py3-windows-10-1803: before you can use choco. +I, [2020-03-06T13:09:14.882399 #16906] INFO -- py3-windows-10-1803: Restricting write permissions to Administrators +I, [2020-03-06T13:09:14.882901 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.883460 #16906] INFO -- py3-windows-10-1803: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:09:14.883998 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.884572 #16906] INFO -- py3-windows-10-1803: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:09:14.885112 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.885694 #16906] INFO -- py3-windows-10-1803: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:09:14.886233 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.886843 #16906] INFO -- py3-windows-10-1803: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:09:14.887390 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.887914 #16906] INFO -- py3-windows-10-1803: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:09:14.888274 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.888720 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.889161 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.889678 #16906] INFO -- py3-windows-10-1803: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:09:14.890047 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.890416 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.895468 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.896090 #16906] INFO -- py3-windows-10-1803: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:09:14.896653 #16906] INFO -- py3-windows-10-1803: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:09:14.897235 #16906] INFO -- py3-windows-10-1803: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:09:14.897667 #16906] INFO -- py3-windows-10-1803: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:09:14.898168 #16906] INFO -- py3-windows-10-1803: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:09:14.898657 #16906] INFO -- py3-windows-10-1803: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:09:14.899098 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.899520 #16906] INFO -- py3-windows-10-1803: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:09:14.900040 #16906] INFO -- py3-windows-10-1803: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:09:14.900456 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.901056 #16906] INFO -- py3-windows-10-1803: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:09:14.901475 #16906] INFO -- py3-windows-10-1803: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:09:14.901924 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.902328 #16906] INFO -- py3-windows-10-1803: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:09:14.902803 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.903254 #16906] INFO -- py3-windows-10-1803: Run choco /? for a list of functions. +I, [2020-03-06T13:09:14.903724 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.904142 #16906] INFO -- py3-windows-10-1803: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:09:14.904583 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.904990 #16906] INFO -- py3-windows-10-1803: first prior to using choco. +I, [2020-03-06T13:09:14.905390 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.905870 #16906] INFO -- py3-windows-10-1803: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:09:14.906217 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.906758 #16906] INFO -- py3-windows-10-1803: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:09:14.907244 #16906] INFO -- py3-windows-10-1803: Started: 10:08:17.547051 +I, [2020-03-06T13:09:14.907620 #16906] INFO -- py3-windows-10-1803: Duration: 29723.59 ms +I, [2020-03-06T13:09:14.908139 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.908645 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.909149 #16906] INFO -- py3-windows-10-1803: chocolatey.bootstrap: +I, [2020-03-06T13:09:14.909562 #16906] INFO -- py3-windows-10-1803: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:09:14.910066 #16906] INFO -- py3-windows-10-1803: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:09:14.910554 #16906] INFO -- py3-windows-10-1803: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:09:14.911916 #16906] INFO -- py3-windows-10-1803: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:09:14.912673 #16906] INFO -- py3-windows-10-1803: Installing chocolatey on this machine +I, [2020-03-06T13:09:14.913463 #16906] INFO -- py3-windows-10-1803: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:09:14.914220 #16906] INFO -- py3-windows-10-1803: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:09:14.914904 #16906] INFO -- py3-windows-10-1803: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:09:14.915506 #16906] INFO -- py3-windows-10-1803: before you can use choco. +I, [2020-03-06T13:09:14.916139 #16906] INFO -- py3-windows-10-1803: Restricting write permissions to Administrators +I, [2020-03-06T13:09:14.916767 #16906] INFO -- py3-windows-10-1803: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:09:14.917370 #16906] INFO -- py3-windows-10-1803: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:09:14.918008 #16906] INFO -- py3-windows-10-1803: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:09:14.918651 #16906] INFO -- py3-windows-10-1803: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:09:14.919202 #16906] INFO -- py3-windows-10-1803: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:09:14.919785 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.920258 #16906] INFO -- py3-windows-10-1803: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:09:14.920790 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.921260 #16906] INFO -- py3-windows-10-1803: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:09:14.921871 #16906] INFO -- py3-windows-10-1803: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:09:14.922356 #16906] INFO -- py3-windows-10-1803: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:09:14.922854 #16906] INFO -- py3-windows-10-1803: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:09:14.923399 #16906] INFO -- py3-windows-10-1803: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:09:14.923893 #16906] INFO -- py3-windows-10-1803: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:09:14.924392 #16906] INFO -- py3-windows-10-1803: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:09:14.924944 #16906] INFO -- py3-windows-10-1803: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:09:14.925475 #16906] INFO -- py3-windows-10-1803: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:09:14.926002 #16906] INFO -- py3-windows-10-1803: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:09:14.926532 #16906] INFO -- py3-windows-10-1803: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:09:14.926997 #16906] INFO -- py3-windows-10-1803: Run choco /? for a list of functions. +I, [2020-03-06T13:09:14.927520 #16906] INFO -- py3-windows-10-1803: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:09:14.927981 #16906] INFO -- py3-windows-10-1803: first prior to using choco. +I, [2020-03-06T13:09:14.928502 #16906] INFO -- py3-windows-10-1803: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:09:14.928991 #16906] INFO -- py3-windows-10-1803: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:09:14.929500 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.929957 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:09:14.930423 #16906] INFO -- py3-windows-10-1803: Function: chocolatey.installed +I, [2020-03-06T13:09:14.930947 #16906] INFO -- py3-windows-10-1803: Name: windirstat +I, [2020-03-06T13:09:14.931375 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.931852 #16906] INFO -- py3-windows-10-1803: Comment: +I, [2020-03-06T13:09:14.932328 #16906] INFO -- py3-windows-10-1803: Started: 10:08:47.270641 +I, [2020-03-06T13:09:14.932866 #16906] INFO -- py3-windows-10-1803: Duration: 8772.563 ms +I, [2020-03-06T13:09:14.933291 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.933777 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.934274 #16906] INFO -- py3-windows-10-1803: windirstat: +I, [2020-03-06T13:09:14.934652 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.935051 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.935425 #16906] INFO -- py3-windows-10-1803: - 1.1.2.20161210 +I, [2020-03-06T13:09:14.935879 #16906] INFO -- py3-windows-10-1803: old: +I, [2020-03-06T13:09:14.936331 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.936723 #16906] INFO -- py3-windows-10-1803: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:09:14.937205 #16906] INFO -- py3-windows-10-1803: Function: chocolatey.installed +I, [2020-03-06T13:09:14.937673 #16906] INFO -- py3-windows-10-1803: Name: notepadplusplus +I, [2020-03-06T13:09:14.938155 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.938649 #16906] INFO -- py3-windows-10-1803: Comment: +I, [2020-03-06T13:09:14.939097 #16906] INFO -- py3-windows-10-1803: Started: 10:08:56.043204 +I, [2020-03-06T13:09:14.939498 #16906] INFO -- py3-windows-10-1803: Duration: 11453.904 ms +I, [2020-03-06T13:09:14.940054 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.940624 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.941261 #16906] INFO -- py3-windows-10-1803: notepadplusplus: +I, [2020-03-06T13:09:14.941864 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.942517 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.943156 #16906] INFO -- py3-windows-10-1803: - 7.8.5 +I, [2020-03-06T13:09:14.943783 #16906] INFO -- py3-windows-10-1803: old: +I, [2020-03-06T13:09:14.944540 #16906] INFO -- py3-windows-10-1803: notepadplusplus.install: +I, [2020-03-06T13:09:14.945171 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.945669 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.946293 #16906] INFO -- py3-windows-10-1803: - 7.8.5 +I, [2020-03-06T13:09:14.946847 #16906] INFO -- py3-windows-10-1803: old: +I, [2020-03-06T13:09:14.947353 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.947889 #16906] INFO -- py3-windows-10-1803: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:09:14.948494 #16906] INFO -- py3-windows-10-1803: Function: dism.feature_installed +I, [2020-03-06T13:09:14.949102 #16906] INFO -- py3-windows-10-1803: Name: TelnetClient +I, [2020-03-06T13:09:14.949682 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.950178 #16906] INFO -- py3-windows-10-1803: Comment: Installed TelnetClient +I, [2020-03-06T13:09:14.950747 #16906] INFO -- py3-windows-10-1803: Started: 10:09:07.497108 +I, [2020-03-06T13:09:14.951255 #16906] INFO -- py3-windows-10-1803: Duration: 5992.248 ms +I, [2020-03-06T13:09:14.951833 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.956941 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.957713 #16906] INFO -- py3-windows-10-1803: feature: +I, [2020-03-06T13:09:14.958343 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.958885 #16906] INFO -- py3-windows-10-1803: new: +I, [2020-03-06T13:09:14.959610 #16906] INFO -- py3-windows-10-1803: - TelnetClient +I, [2020-03-06T13:09:14.960366 #16906] INFO -- py3-windows-10-1803: pid: +I, [2020-03-06T13:09:14.961107 #16906] INFO -- py3-windows-10-1803: 148 +I, [2020-03-06T13:09:14.961895 #16906] INFO -- py3-windows-10-1803: retcode: +I, [2020-03-06T13:09:14.962586 #16906] INFO -- py3-windows-10-1803: 0 +I, [2020-03-06T13:09:14.963183 #16906] INFO -- py3-windows-10-1803: stderr: +I, [2020-03-06T13:09:14.963727 #16906] INFO -- py3-windows-10-1803: stdout: +I, [2020-03-06T13:09:14.964296 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.964921 #16906] INFO -- py3-windows-10-1803: ID: windows.module.system.reboot +I, [2020-03-06T13:09:14.965597 #16906] INFO -- py3-windows-10-1803: Function: module.run +I, [2020-03-06T13:09:14.966210 #16906] INFO -- py3-windows-10-1803: Result: True +I, [2020-03-06T13:09:14.966791 #16906] INFO -- py3-windows-10-1803: Comment: system.reboot: True +I, [2020-03-06T13:09:14.967452 #16906] INFO -- py3-windows-10-1803: Started: 10:09:13.489356 +I, [2020-03-06T13:09:14.968056 #16906] INFO -- py3-windows-10-1803: Duration: 278.559 ms +I, [2020-03-06T13:09:14.968610 #16906] INFO -- py3-windows-10-1803: Changes: +I, [2020-03-06T13:09:14.969186 #16906] INFO -- py3-windows-10-1803: ---------- +I, [2020-03-06T13:09:14.969759 #16906] INFO -- py3-windows-10-1803: system.reboot: +I, [2020-03-06T13:09:14.970332 #16906] INFO -- py3-windows-10-1803: True +I, [2020-03-06T13:09:14.970812 #16906] INFO -- py3-windows-10-1803: +I, [2020-03-06T13:09:14.971339 #16906] INFO -- py3-windows-10-1803: Summary for local +I, [2020-03-06T13:09:14.971735 #16906] INFO -- py3-windows-10-1803: ------------- +I, [2020-03-06T13:09:14.972126 #16906] INFO -- py3-windows-10-1803: Succeeded: 25 (changed=24) +I, [2020-03-06T13:09:14.972483 #16906] INFO -- py3-windows-10-1803: Failed: 0 +I, [2020-03-06T13:09:14.972829 #16906] INFO -- py3-windows-10-1803: ------------- +I, [2020-03-06T13:09:14.973217 #16906] INFO -- py3-windows-10-1803: Total states run: 25 +I, [2020-03-06T13:09:14.973641 #16906] INFO -- py3-windows-10-1803: Total run time: 146.185 s +I, [2020-03-06T13:09:14.994647 #16906] INFO -- py3-windows-10-1803: Downloading files from +I, [2020-03-06T13:09:15.162387 #16906] INFO -- py3-windows-10-1803: Finished converging (3m9.94s). +I, [2020-03-06T13:09:15.162591 #16906] INFO -- py3-windows-10-1803: -----> Setting up ... +I, [2020-03-06T13:09:15.165933 #16906] INFO -- py3-windows-10-1803: Finished setting up (0m0.00s). +I, [2020-03-06T13:09:15.166132 #16906] INFO -- py3-windows-10-1803: -----> Verifying ... +I, [2020-03-06T13:09:16.438747 #16906] INFO -- py3-windows-10-1803: Loaded default +I, [2020-03-06T13:10:29.705829 #16906] INFO -- py3-windows-10-1803: Finished verifying (1m14.53s). +I, [2020-03-06T13:10:29.706006 #16906] INFO -- py3-windows-10-1803: Finished testing (5m27.79s). +I, [2020-03-06T13:10:29.707615 #16906] INFO -- py3-windows-10-1803: -----> Destroying ... +I, [2020-03-06T13:10:39.868938 #16906] INFO -- py3-windows-10-1803: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:10:41.583099 #16906] INFO -- py3-windows-10-1803: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:10:42.300145 #16906] INFO -- py3-windows-10-1803: Vagrant instance destroyed. +I, [2020-03-06T13:10:42.301343 #16906] INFO -- py3-windows-10-1803: Finished destroying (0m12.59s). diff --git a/test/results/py3-windows-10-1803.log b/test/results/py3-windows-10-1803.log index d1243bd..19a82a1 100644 --- a/test/results/py3-windows-10-1803.log +++ b/test/results/py3-windows-10-1803.log @@ -1,15 +1,13 @@ -Wed Mar 4 15:03:58 EST 2020 -commit 83df63b728d6440d0a2e75a16942f0c1d8916fb0 +Fri Mar 6 13:04:37 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Author: Peter Mudd -Date: Mon Mar 2 12:13:52 2020 -0500 +Date: Fri Mar 6 12:43:24 2020 -0500 - feat: convert `template-formula` to `windows-formula` - - BREAKING CHANGE: changed all state names and ids + feat: support saltstack 3000 CURRENT BRANCH COMMIT ID -83df63b728d6440d0a2e75a16942f0c1d8916fb0 +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e CURRENT RELEASE TAG -v1.0.1 +v1.0.0 -----> Starting Test Kitchen (v2.3.4) -----> Cleaning up any prior instances of -----> Destroying ... @@ -20,7 +18,7 @@ v1.0.1 ==> default: Cloning VM... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'StefanScherer/windows_10' version '2018.09.12' is up to date... - ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1803-dae8ab7b-7a3e-4c99-b898-e4f81977a289 + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1803-8bffe71e-b068-42ae-98cf-e3b9a17ef4b7 ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat @@ -53,7 +51,7 @@ v1.0.1 [WinRM] Established Vagrant instance created. - Finished creating (0m55.22s). + Finished creating (1m3.30s). -----> Converging ... Preparing files for transfer Preparing salt-minion @@ -69,12 +67,12 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:05 PM temp - Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + d----- 3/6/2020 10:06 AM temp + Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe Installing Salt minion Starting the Salt minion service Salt minion successfully installed - You asked for latest and you have 2019.2.3 installed, sweet! + You asked for latest and you have 3000 installed, sweet! @@ -84,7 +82,7 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:05 PM kitchen + d----- 3/6/2020 10:06 AM kitchen Transferring files to @@ -97,13 +95,13 @@ v1.0.1 Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') @@ -122,8 +120,8 @@ v1.0.1 Name: saltstack1 Result: True Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot - Started: 12:05:46.272890 - Duration: 94.796 ms + Started: 10:06:47.336229 + Duration: 108.65 ms Changes: ---------- hostname: @@ -134,8 +132,8 @@ v1.0.1 Name: Saltstack Computer Description Result: True Comment: Computer description successfully changed to 'Saltstack Computer Description' - Started: 12:05:46.367686 - Duration: 2632.337 ms + Started: 10:06:47.444879 + Duration: 2654.225 ms Changes: ---------- new: @@ -147,8 +145,8 @@ v1.0.1 Name: America/New_York Result: True Comment: Set timezone America/New_York - Started: 12:05:49.028638 - Duration: 15.822 ms + Started: 10:06:50.133083 + Duration: 16.518 ms Changes: ---------- timezone: @@ -158,8 +156,8 @@ v1.0.1 Function: module.run Result: True Comment: environ.items: Success - Started: 12:05:49.044460 - Duration: 15.768 ms + Started: 10:06:50.161371 + Duration: 0.0 ms Changes: ---------- environ.items: @@ -249,8 +247,8 @@ v1.0.1 Function: module.run Result: True Comment: user.current: VAGRANT-10\vagrant - Started: 12:05:49.060228 - Duration: 15.739 ms + Started: 10:06:50.161371 + Duration: 31.475 ms Changes: ---------- user.current: @@ -259,25 +257,25 @@ v1.0.1 ID: windows.module.status.uptime Function: module.run Result: True - Comment: status.uptime: 0:01:13.107125 - Started: 12:05:49.075967 - Duration: 31.158 ms + Comment: status.uptime: 0:01:27.225047 + Started: 10:06:50.208139 + Duration: 16.908 ms Changes: ---------- status.uptime: - 0:01:13.107125 + 0:01:27.225047 ---------- ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection Function: cmd.run Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage" run - Started: 12:05:49.107125 - Duration: 1769.915 ms + Started: 10:06:50.241441 + Duration: 1734.105 ms Changes: ---------- pid: - 6624 + 508 retcode: 0 stderr: @@ -288,12 +286,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage" run - Started: 12:05:50.877040 - Duration: 1298.602 ms + Started: 10:06:51.975546 + Duration: 1330.966 ms Changes: ---------- pid: - 5880 + 3660 retcode: 0 stderr: @@ -304,12 +302,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage" run - Started: 12:05:52.175642 - Duration: 1344.52 ms + Started: 10:06:53.306512 + Duration: 1297.329 ms Changes: ---------- pid: - 1760 + 2752 retcode: 0 stderr: @@ -320,25 +318,25 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage" run - Started: 12:05:53.520162 - Duration: 1330.716 ms + Started: 10:06:54.603841 + Duration: 1309.395 ms Changes: ---------- pid: - 2864 + 6068 retcode: 0 stderr: stdout: - Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 12:05:54.850878 Duration: 550.519 ms + Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage - Function: cmd.run - Result: Clean Started: - 10:06:55.929062 Duration: 480.898 ms ---------- ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 Function: reg.present Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:05:55.401397 - Duration: 8052.97 ms + Started: 10:06:56.424577 + Duration: 13636.373 ms Changes: ---------- reg: @@ -367,8 +365,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:06:03.470505 - Duration: 180.157 ms + Started: 10:07:10.060950 + Duration: 222.561 ms Changes: ---------- reg: @@ -397,8 +395,8 @@ v1.0.1 Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng Result: True Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs - Started: 12:06:03.650662 - Duration: 803.291 ms + Started: 10:07:10.299023 + Duration: 827.692 ms Changes: ---------- directories_created: @@ -767,7 +765,7 @@ v1.0.1 Function: module.run Result: True Comment: file.rename: True - Started: 12:06:04.453953 + Started: 10:07:11.126715 Duration: 0.0 ms Changes: ---------- @@ -778,8 +776,8 @@ v1.0.1 Function: module.run Result: True Comment: check_cmd determined the state succeeded - Started: 12:06:04.453953 - Duration: 7734.287 ms + Started: 10:07:11.126715 + Duration: 7899.471 ms Changes: ---------- pkg.refresh_db: @@ -791,54 +789,54 @@ v1.0.1 total: 298 ---------- - ID: 7zip + ID: kdiff3 Function: pkg.installed Result: True - Comment: The following packages were installed/updated: 7zip=18.06.00.0 - Started: 12:06:12.206581 - Duration: 3121.744 ms + Comment: The following packages were installed/updated: kdiff3 + Started: 10:07:19.045830 + Duration: 3421.443 ms Changes: ---------- - 7zip: + kdiff3: ---------- new: - 18.06.00.0 + Not Found old: ---------- - ID: git + ID: 7zip Function: pkg.installed Result: True - Comment: The following packages were installed/updated: git - Started: 12:06:15.343530 - Duration: 23646.777 ms + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:07:22.523215 + Duration: 12409.751 ms Changes: ---------- - git: + 7zip: ---------- new: - 2.23.0.windows.1 + 18.06.00.0 old: ---------- - ID: kdiff3 + ID: git Function: pkg.installed Result: True - Comment: The following packages were installed/updated: kdiff3 - Started: 12:06:39.006986 - Duration: 31204.028 ms + Comment: The following packages were installed/updated: git + Started: 10:07:34.980514 + Duration: 42519.164 ms Changes: ---------- - kdiff3: + git: ---------- new: - Not Found + 2.23.0.windows.1 old: ---------- ID: windows_environment.refresh.path Function: module.run Result: True Comment: windows_environment.refresh: Success - Started: 12:07:10.228501 - Duration: 80.442 ms + Started: 10:08:17.499678 + Duration: 47.373 ms Changes: ---------- windows_environment.refresh: @@ -906,8 +904,8 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder - Started: 12:07:10.308943 - Duration: 20587.524 ms + Started: 10:08:17.547051 + Duration: 29723.59 ms Changes: ---------- chocolatey.bootstrap: @@ -946,39 +944,39 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder ---------- - ID: windows.system.packages.chocolatey.notepadplusplus + ID: windows.system.packages.chocolatey.windirstat Function: chocolatey.installed - Name: notepadplusplus + Name: windirstat Result: True Comment: - Started: 12:07:30.896467 - Duration: 13689.969 ms + Started: 10:08:47.270641 + Duration: 8772.563 ms Changes: ---------- - notepadplusplus: - ---------- - new: - - 7.8.4 - old: - notepadplusplus.install: + windirstat: ---------- new: - - 7.8.4 + - 1.1.2.20161210 old: ---------- - ID: windows.system.packages.chocolatey.windirstat + ID: windows.system.packages.chocolatey.notepadplusplus Function: chocolatey.installed - Name: windirstat + Name: notepadplusplus Result: True Comment: - Started: 12:07:44.586436 - Duration: 7182.846 ms + Started: 10:08:56.043204 + Duration: 11453.904 ms Changes: ---------- - windirstat: + notepadplusplus: ---------- new: - - 1.1.2.20161210 + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 old: ---------- ID: windows.system.desktop.optional_features.installed.TelnetClient @@ -986,16 +984,16 @@ v1.0.1 Name: TelnetClient Result: True Comment: Installed TelnetClient - Started: 12:07:51.769282 - Duration: 6380.46 ms + Started: 10:09:07.497108 + Duration: 5992.248 ms Changes: ---------- feature: ---------- new: - TelnetClient + - TelnetClient pid: - 2184 + 148 retcode: 0 stderr: @@ -1005,8 +1003,8 @@ v1.0.1 Function: module.run Result: True Comment: system.reboot: True - Started: 12:07:58.149742 - Duration: 252.042 ms + Started: 10:09:13.489356 + Duration: 278.559 ms Changes: ---------- system.reboot: @@ -1018,13 +1016,18 @@ v1.0.1 Failed: 0 ------------- Total states run: 25 - Total run time: 132.016 s + Total run time: 146.185 s Downloading files from - Finished converging (2m47.20s). + Finished converging (3m9.94s). -----> Setting up ... Finished setting up (0m0.00s). -----> Verifying ... Loaded default +`execution expired`, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 +`execution expired`, target may be rebooting after highstate. Remaining retries: 18 +`execution expired`, target may be rebooting after highstate. Remaining retries: 17 +`execution expired`, target may be rebooting after highstate. Remaining retries: 16 INFO: Got pillar from the target minion using WinRM. Profile: SaltStack Windows Formula (default) @@ -1065,13 +1068,13 @@ Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 Profile Summary: 9 successful controls, 0 control failures, 1 control skipped Test Summary: 19 successful, 0 failures, 1 skipped - Finished verifying (0m46.42s). + Finished verifying (1m14.53s). + Finished testing (5m27.79s). -----> Destroying ... ==> default: Forcing shutdown of VM... ==> default: Destroying VM and associated drives... Vagrant instance destroyed. - Finished destroying (0m13.10s). - Finished testing (4m41.96s). ------> Test Kitchen is finished. (4m53.94s) + Finished destroying (0m12.59s). +-----> Test Kitchen is finished. (5m55.42s) KITCHEN TEST EXIT CODE 0 diff --git a/test/results/py3-windows-10-1803.salt.log b/test/results/py3-windows-10-1803.salt.log index e9aad8e..49dcbc9 100755 --- a/test/results/py3-windows-10-1803.salt.log +++ b/test/results/py3-windows-10-1803.salt.log @@ -1,31 +1,31 @@ -2020-03-04 12:05:37,613 [salt.loader :747 ][DEBUG ][4632] Grains refresh requested. Refreshing grains. -2020-03-04 12:05:37,613 [salt.config :2190][DEBUG ][4632] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 12:05:37,613 [salt.config :2334][DEBUG ][4632] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 12:05:37,613 [salt.config :2190][DEBUG ][4632] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 12:05:43,011 [salt.pillar :57 ][DEBUG ][4632] Determining pillar cache -2020-03-04 12:05:43,061 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:05:43,061 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:05:43,075 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 12:05:43,075 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:05:43,092 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.016332387924194336 -2020-03-04 12:05:43,092 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +2020-03-06 10:06:37,280 [salt.loader :770 ][DEBUG ][3160] Grains refresh requested. Refreshing grains. +2020-03-06 10:06:37,280 [salt.config :2111][DEBUG ][3160] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:06:37,280 [salt.config :2255][DEBUG ][3160] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:06:37,280 [salt.config :2111][DEBUG ][3160] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:06:43,618 [salt.pillar :57 ][DEBUG ][3160] Determining pillar cache +2020-03-06 10:06:43,666 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:06:43,666 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:06:43,682 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:06:43,682 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:06:43,699 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.016606807708740234 +2020-03-06 10:06:43,699 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: --- base: "*": - windows -2020-03-04 12:05:43,092 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:43,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:05:43,107 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.015254974365234375 -2020-03-04 12:05:43,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded confirm_top.confirm_top -2020-03-04 12:05:43,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded compound_match.match -2020-03-04 12:05:43,107 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4632] compound_match: vagrant-10 ? * -2020-03-04 12:05:43,123 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded glob_match.match -2020-03-04 12:05:43,123 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4632] compound_match vagrant-10 ? "*" => "True" -2020-03-04 12:05:43,123 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 12:05:43,123 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:05:43,123 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:43,123 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +2020-03-06 10:06:43,713 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:43,713 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded confirm_top.confirm_top +2020-03-06 10:06:43,713 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded compound_match.match +2020-03-06 10:06:43,730 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3160] compound_match: vagrant-10 ? * +2020-03-06 10:06:43,730 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded glob_match.match +2020-03-06 10:06:43,730 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3160] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:06:43,730 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:06:43,730 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:06:43,749 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.018906116485595703 +2020-03-06 10:06:43,749 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: # -*- coding: utf-8 -*- # vim: ft=yaml --- @@ -427,283 +427,292 @@ windows: password_never_expires: false disallow_change_password: false -2020-03-04 12:05:43,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:43,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 12:05:43,138 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:43,183 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:05:43,183 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:05:43,272 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded state.highstate -2020-03-04 12:05:43,272 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded direct_call.execute -2020-03-04 12:05:43,288 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded grains.get -2020-03-04 12:05:43,366 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded saltutil.is_running -2020-03-04 12:05:43,413 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded config.get -2020-03-04 12:05:43,413 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: test, ret: _|- -2020-03-04 12:05:43,445 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:43,714 [git.cmd :722 ][DEBUG ][4632] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) -2020-03-04 12:05:43,730 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:43,746 [salt.fileserver :502 ][DEBUG ][4632] Updating roots fileserver cache -2020-03-04 12:05:43,801 [salt.state :736 ][DEBUG ][4632] Gathering pillar data for state run -2020-03-04 12:05:43,816 [salt.state :750 ][DEBUG ][4632] Finished gathering pillar data for state run -2020-03-04 12:05:43,816 [salt.state :966 ][INFO ][4632] Loading fresh modules for state activity -2020-03-04 12:05:43,843 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:05:43,856 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:05:43,856 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' -2020-03-04 12:05:43,856 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' -2020-03-04 12:05:43,856 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' -2020-03-04 12:05:43,856 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:43,872 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'top.sls' -2020-03-04 12:05:43,872 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls -2020-03-04 12:05:43,872 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:43,903 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:43,903 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:43,918 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.031723737716674805 -2020-03-04 12:05:43,918 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +2020-03-06 10:06:43,749 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:43,797 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:06:43,797 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:06:43,880 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded state.highstate +2020-03-06 10:06:43,880 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded direct_call.execute +2020-03-06 10:06:43,896 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded grains.get +2020-03-06 10:06:43,973 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded saltutil.is_running +2020-03-06 10:06:44,023 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded config.get +2020-03-06 10:06:44,036 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: test, ret: _|- +2020-03-06 10:06:44,056 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,328 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:06:44,328 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:06:44,361 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,361 [salt.fileserver :502 ][DEBUG ][3160] Updating roots fileserver cache +2020-03-06 10:06:44,423 [salt.state :735 ][DEBUG ][3160] Gathering pillar data for state run +2020-03-06 10:06:44,423 [salt.state :749 ][DEBUG ][3160] Finished gathering pillar data for state run +2020-03-06 10:06:44,423 [salt.state :1014][INFO ][3160] Loading fresh modules for state activity +2020-03-06 10:06:44,468 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:06:44,474 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:06:44,474 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:06:44,474 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:06:44,474 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:06:44,474 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:44,490 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:06:44,490 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:06:44,490 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:44,490 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,514 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,526 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.03658747673034668 +2020-03-06 10:06:44,526 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: --- base: "*": - windows -2020-03-04 12:05:43,918 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:44,526 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:05:43,918 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:43,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded confirm_top.confirm_top -2020-03-04 12:05:43,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded compound_match.match -2020-03-04 12:05:43,918 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4632] compound_match: vagrant-10 ? * -2020-03-04 12:05:43,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded glob_match.match -2020-03-04 12:05:43,918 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4632] compound_match vagrant-10 ? "*" => "True" -2020-03-04 12:05:43,934 [salt.fileclient :1368][DEBUG ][4632] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. -2020-03-04 12:05:43,934 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded saltutil.sync_all -2020-03-04 12:05:43,934 [salt.loaded.int.module.saltutil:968 ][DEBUG ][4632] Syncing all -2020-03-04 12:05:43,934 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' -2020-03-04 12:05:43,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:43,966 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:43,966 [salt.utils.extmods:90 ][INFO ][4632] Syncing clouds for environment 'base' -2020-03-04 12:05:43,966 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_clouds, for base) -2020-03-04 12:05:43,966 [salt.fileclient :234 ][INFO ][4632] Caching directory '_clouds/' for environment 'base' -2020-03-04 12:05:43,966 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:43,966 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' -2020-03-04 12:05:43,966 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' -2020-03-04 12:05:43,981 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,001 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,001 [salt.utils.extmods:90 ][INFO ][4632] Syncing beacons for environment 'base' -2020-03-04 12:05:44,001 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_beacons, for base) -2020-03-04 12:05:44,001 [salt.fileclient :234 ][INFO ][4632] Caching directory '_beacons/' for environment 'base' -2020-03-04 12:05:44,001 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,014 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' -2020-03-04 12:05:44,014 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' -2020-03-04 12:05:44,030 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,046 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,046 [salt.utils.extmods:90 ][INFO ][4632] Syncing modules for environment 'base' -2020-03-04 12:05:44,046 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_modules, for base) -2020-03-04 12:05:44,046 [salt.fileclient :234 ][INFO ][4632] Caching directory '_modules/' for environment 'base' -2020-03-04 12:05:44,046 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,062 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:05:44,062 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:05:44,062 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:05:44,062 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,062 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' -2020-03-04 12:05:44,062 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' -2020-03-04 12:05:44,077 [salt.utils.extmods:119 ][INFO ][4632] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' -2020-03-04 12:05:44,077 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' -2020-03-04 12:05:44,126 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,143 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,143 [salt.utils.extmods:90 ][INFO ][4632] Syncing states for environment 'base' -2020-03-04 12:05:44,143 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_states, for base) -2020-03-04 12:05:44,143 [salt.fileclient :234 ][INFO ][4632] Caching directory '_states/' for environment 'base' -2020-03-04 12:05:44,143 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,143 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' -2020-03-04 12:05:44,158 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' -2020-03-04 12:05:44,174 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,190 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,190 [salt.utils.extmods:90 ][INFO ][4632] Syncing sdb for environment 'base' -2020-03-04 12:05:44,190 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_sdb, for base) -2020-03-04 12:05:44,190 [salt.fileclient :234 ][INFO ][4632] Caching directory '_sdb/' for environment 'base' -2020-03-04 12:05:44,190 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,190 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' -2020-03-04 12:05:44,190 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' -2020-03-04 12:05:44,222 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,237 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,237 [salt.utils.extmods:90 ][INFO ][4632] Syncing grains for environment 'base' -2020-03-04 12:05:44,237 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_grains, for base) -2020-03-04 12:05:44,237 [salt.fileclient :234 ][INFO ][4632] Caching directory '_grains/' for environment 'base' -2020-03-04 12:05:44,237 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,237 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' -2020-03-04 12:05:44,237 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' -2020-03-04 12:05:44,265 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,284 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,284 [salt.utils.extmods:90 ][INFO ][4632] Syncing renderers for environment 'base' -2020-03-04 12:05:44,284 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_renderers, for base) -2020-03-04 12:05:44,284 [salt.fileclient :234 ][INFO ][4632] Caching directory '_renderers/' for environment 'base' -2020-03-04 12:05:44,284 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,299 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' -2020-03-04 12:05:44,299 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' -2020-03-04 12:05:44,316 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,316 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,335 [salt.utils.extmods:90 ][INFO ][4632] Syncing returners for environment 'base' -2020-03-04 12:05:44,335 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_returners, for base) -2020-03-04 12:05:44,335 [salt.fileclient :234 ][INFO ][4632] Caching directory '_returners/' for environment 'base' -2020-03-04 12:05:44,335 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,335 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' -2020-03-04 12:05:44,335 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' -2020-03-04 12:05:44,359 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,359 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,359 [salt.utils.extmods:90 ][INFO ][4632] Syncing output for environment 'base' -2020-03-04 12:05:44,359 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_output, for base) -2020-03-04 12:05:44,359 [salt.fileclient :234 ][INFO ][4632] Caching directory '_output/' for environment 'base' -2020-03-04 12:05:44,359 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,379 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' -2020-03-04 12:05:44,379 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' -2020-03-04 12:05:44,398 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,398 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,413 [salt.utils.extmods:90 ][INFO ][4632] Syncing utils for environment 'base' -2020-03-04 12:05:44,413 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_utils, for base) -2020-03-04 12:05:44,413 [salt.fileclient :234 ][INFO ][4632] Caching directory '_utils/' for environment 'base' -2020-03-04 12:05:44,413 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,413 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' -2020-03-04 12:05:44,413 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' -2020-03-04 12:05:44,429 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,443 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,443 [salt.utils.extmods:90 ][INFO ][4632] Syncing log_handlers for environment 'base' -2020-03-04 12:05:44,443 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_log_handlers, for base) -2020-03-04 12:05:44,443 [salt.fileclient :234 ][INFO ][4632] Caching directory '_log_handlers/' for environment 'base' -2020-03-04 12:05:44,457 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,457 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' -2020-03-04 12:05:44,457 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' -2020-03-04 12:05:44,490 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,505 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,505 [salt.utils.extmods:90 ][INFO ][4632] Syncing proxy for environment 'base' -2020-03-04 12:05:44,505 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_proxy, for base) -2020-03-04 12:05:44,505 [salt.fileclient :234 ][INFO ][4632] Caching directory '_proxy/' for environment 'base' -2020-03-04 12:05:44,505 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,505 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' -2020-03-04 12:05:44,505 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' -2020-03-04 12:05:44,542 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,542 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,561 [salt.utils.extmods:90 ][INFO ][4632] Syncing engines for environment 'base' -2020-03-04 12:05:44,561 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_engines, for base) -2020-03-04 12:05:44,561 [salt.fileclient :234 ][INFO ][4632] Caching directory '_engines/' for environment 'base' -2020-03-04 12:05:44,561 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,561 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' -2020-03-04 12:05:44,561 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' -2020-03-04 12:05:44,584 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,596 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,596 [salt.utils.extmods:90 ][INFO ][4632] Syncing thorium for environment 'base' -2020-03-04 12:05:44,596 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_thorium, for base) -2020-03-04 12:05:44,596 [salt.fileclient :234 ][INFO ][4632] Caching directory '_thorium/' for environment 'base' -2020-03-04 12:05:44,596 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,596 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' -2020-03-04 12:05:44,596 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' -2020-03-04 12:05:44,615 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,630 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,630 [salt.utils.extmods:90 ][INFO ][4632] Syncing serializers for environment 'base' -2020-03-04 12:05:44,630 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_serializers, for base) -2020-03-04 12:05:44,630 [salt.fileclient :234 ][INFO ][4632] Caching directory '_serializers/' for environment 'base' -2020-03-04 12:05:44,630 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,630 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' -2020-03-04 12:05:44,643 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' -2020-03-04 12:05:44,663 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,663 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,674 [salt.utils.extmods:90 ][INFO ][4632] Syncing matchers for environment 'base' -2020-03-04 12:05:44,674 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_matchers, for base) -2020-03-04 12:05:44,674 [salt.fileclient :234 ][INFO ][4632] Caching directory '_matchers/' for environment 'base' -2020-03-04 12:05:44,674 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,674 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' -2020-03-04 12:05:44,674 [salt.utils.extmods:79 ][INFO ][4632] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' -2020-03-04 12:05:44,693 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:44,706 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:44,706 [salt.utils.extmods:90 ][INFO ][4632] Syncing pillar for environment 'base' -2020-03-04 12:05:44,706 [salt.utils.extmods:94 ][INFO ][4632] Loading cache from salt://_pillar, for base) -2020-03-04 12:05:44,706 [salt.fileclient :234 ][INFO ][4632] Caching directory '_pillar/' for environment 'base' -2020-03-04 12:05:44,706 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:44,706 [salt.utils.extmods:109 ][DEBUG ][4632] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' -2020-03-04 12:05:44,706 [salt.state :1000][DEBUG ][4632] Refreshing modules... -2020-03-04 12:05:44,722 [salt.state :966 ][INFO ][4632] Loading fresh modules for state activity -2020-03-04 12:05:44,770 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:05:44,770 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:05:44,770 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows.sls' in saltenv 'base' -2020-03-04 12:05:44,770 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:05:44,770 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:05:44,784 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' -2020-03-04 12:05:44,784 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,784 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' -2020-03-04 12:05:44,784 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls -2020-03-04 12:05:44,784 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:44,800 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:44,800 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:44,800 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' -2020-03-04 12:05:44,800 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,800 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' -2020-03-04 12:05:44,819 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:44,819 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:44,819 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' -2020-03-04 12:05:44,819 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,819 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' -2020-03-04 12:05:44,838 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:44,838 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:44,838 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:44,838 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,838 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' -2020-03-04 12:05:44,838 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:44,861 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:44,861 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:44,861 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,861 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' -2020-03-04 12:05:44,861 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:44,861 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:44,861 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' -2020-03-04 12:05:44,861 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,878 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' -2020-03-04 12:05:44,878 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:44,878 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:44,878 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:44,878 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,878 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' -2020-03-04 12:05:44,878 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:44,895 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:44,895 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:44,895 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,895 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' -2020-03-04 12:05:44,913 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded config.get -2020-03-04 12:05:44,913 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded grains.filter_by -2020-03-04 12:05:44,913 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.12898850440979004 -2020-03-04 12:05:44,913 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +2020-03-06 10:06:44,526 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:44,526 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded confirm_top.confirm_top +2020-03-06 10:06:44,526 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded compound_match.match +2020-03-06 10:06:44,526 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3160] compound_match: vagrant-10 ? * +2020-03-06 10:06:44,542 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded glob_match.match +2020-03-06 10:06:44,542 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3160] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:06:44,542 [salt.fileclient :1376][DEBUG ][3160] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:06:44,542 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded saltutil.sync_all +2020-03-06 10:06:44,542 [salt.loaded.int.module.saltutil:1009][DEBUG ][3160] Syncing all +2020-03-06 10:06:44,542 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:06:44,574 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,574 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,574 [salt.utils.extmods:90 ][INFO ][3160] Syncing clouds for environment 'base' +2020-03-06 10:06:44,574 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_clouds, for base) +2020-03-06 10:06:44,597 [salt.fileclient :234 ][INFO ][3160] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:06:44,597 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,597 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:06:44,597 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:06:44,610 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,628 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,642 [salt.utils.extmods:90 ][INFO ][3160] Syncing beacons for environment 'base' +2020-03-06 10:06:44,642 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_beacons, for base) +2020-03-06 10:06:44,642 [salt.fileclient :234 ][INFO ][3160] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:06:44,642 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,642 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:06:44,642 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:06:44,658 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,674 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,674 [salt.utils.extmods:90 ][INFO ][3160] Syncing modules for environment 'base' +2020-03-06 10:06:44,674 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_modules, for base) +2020-03-06 10:06:44,674 [salt.fileclient :234 ][INFO ][3160] Caching directory '_modules/' for environment 'base' +2020-03-06 10:06:44,690 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,690 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:06:44,690 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:06:44,690 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:06:44,690 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:44,690 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:06:44,705 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:06:44,705 [salt.utils.extmods:119 ][INFO ][3160] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:06:44,705 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:06:44,736 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,736 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,736 [salt.utils.extmods:90 ][INFO ][3160] Syncing states for environment 'base' +2020-03-06 10:06:44,736 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_states, for base) +2020-03-06 10:06:44,736 [salt.fileclient :234 ][INFO ][3160] Caching directory '_states/' for environment 'base' +2020-03-06 10:06:44,736 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,752 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:06:44,752 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:06:44,752 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,788 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,788 [salt.utils.extmods:90 ][INFO ][3160] Syncing sdb for environment 'base' +2020-03-06 10:06:44,788 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_sdb, for base) +2020-03-06 10:06:44,788 [salt.fileclient :234 ][INFO ][3160] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:06:44,788 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,788 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:06:44,788 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:06:44,805 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,826 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,826 [salt.utils.extmods:90 ][INFO ][3160] Syncing grains for environment 'base' +2020-03-06 10:06:44,826 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_grains, for base) +2020-03-06 10:06:44,826 [salt.fileclient :234 ][INFO ][3160] Caching directory '_grains/' for environment 'base' +2020-03-06 10:06:44,826 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,826 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:06:44,826 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:06:44,864 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,864 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,864 [salt.utils.extmods:90 ][INFO ][3160] Syncing renderers for environment 'base' +2020-03-06 10:06:44,864 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_renderers, for base) +2020-03-06 10:06:44,864 [salt.fileclient :234 ][INFO ][3160] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:06:44,864 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,883 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:06:44,883 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:06:44,902 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,902 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,924 [salt.utils.extmods:90 ][INFO ][3160] Syncing returners for environment 'base' +2020-03-06 10:06:44,924 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_returners, for base) +2020-03-06 10:06:44,924 [salt.fileclient :234 ][INFO ][3160] Caching directory '_returners/' for environment 'base' +2020-03-06 10:06:44,924 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,924 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:06:44,924 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:06:44,942 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:44,959 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:44,959 [salt.utils.extmods:90 ][INFO ][3160] Syncing output for environment 'base' +2020-03-06 10:06:44,959 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_output, for base) +2020-03-06 10:06:44,959 [salt.fileclient :234 ][INFO ][3160] Caching directory '_output/' for environment 'base' +2020-03-06 10:06:44,974 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:44,974 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:06:44,974 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:06:44,990 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,005 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,005 [salt.utils.extmods:90 ][INFO ][3160] Syncing utils for environment 'base' +2020-03-06 10:06:45,005 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_utils, for base) +2020-03-06 10:06:45,005 [salt.fileclient :234 ][INFO ][3160] Caching directory '_utils/' for environment 'base' +2020-03-06 10:06:45,005 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,005 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:06:45,005 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:06:45,021 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,045 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,045 [salt.utils.extmods:90 ][INFO ][3160] Syncing log_handlers for environment 'base' +2020-03-06 10:06:45,045 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:06:45,045 [salt.fileclient :234 ][INFO ][3160] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:06:45,045 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,058 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:06:45,058 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\executors' +2020-03-06 10:06:45,081 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,098 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,098 [salt.utils.extmods:90 ][INFO ][3160] Syncing executors for environment 'base' +2020-03-06 10:06:45,098 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_executors, for base) +2020-03-06 10:06:45,111 [salt.fileclient :234 ][INFO ][3160] Caching directory '_executors/' for environment 'base' +2020-03-06 10:06:45,111 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,111 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_executors' +2020-03-06 10:06:45,111 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:06:45,136 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,147 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,147 [salt.utils.extmods:90 ][INFO ][3160] Syncing proxy for environment 'base' +2020-03-06 10:06:45,147 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_proxy, for base) +2020-03-06 10:06:45,147 [salt.fileclient :234 ][INFO ][3160] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:06:45,147 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,147 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:06:45,147 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:06:45,194 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,194 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,194 [salt.utils.extmods:90 ][INFO ][3160] Syncing engines for environment 'base' +2020-03-06 10:06:45,194 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_engines, for base) +2020-03-06 10:06:45,209 [salt.fileclient :234 ][INFO ][3160] Caching directory '_engines/' for environment 'base' +2020-03-06 10:06:45,209 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,209 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:06:45,209 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:06:45,233 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,233 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,249 [salt.utils.extmods:90 ][INFO ][3160] Syncing thorium for environment 'base' +2020-03-06 10:06:45,249 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_thorium, for base) +2020-03-06 10:06:45,249 [salt.fileclient :234 ][INFO ][3160] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:06:45,249 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,249 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:06:45,249 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:06:45,264 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,286 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,286 [salt.utils.extmods:90 ][INFO ][3160] Syncing serializers for environment 'base' +2020-03-06 10:06:45,286 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_serializers, for base) +2020-03-06 10:06:45,286 [salt.fileclient :234 ][INFO ][3160] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:06:45,299 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,299 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:06:45,299 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:06:45,325 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,325 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,325 [salt.utils.extmods:90 ][INFO ][3160] Syncing matchers for environment 'base' +2020-03-06 10:06:45,338 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_matchers, for base) +2020-03-06 10:06:45,338 [salt.fileclient :234 ][INFO ][3160] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:06:45,338 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,338 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:06:45,338 [salt.utils.extmods:79 ][INFO ][3160] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:06:45,358 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:45,371 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:45,371 [salt.utils.extmods:90 ][INFO ][3160] Syncing pillar for environment 'base' +2020-03-06 10:06:45,371 [salt.utils.extmods:94 ][INFO ][3160] Loading cache from salt://_pillar, for base) +2020-03-06 10:06:45,371 [salt.fileclient :234 ][INFO ][3160] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:06:45,371 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:45,371 [salt.utils.extmods:109 ][DEBUG ][3160] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:06:45,387 [salt.state :1048][DEBUG ][3160] Refreshing modules... +2020-03-06 10:06:45,406 [salt.state :1014][INFO ][3160] Loading fresh modules for state activity +2020-03-06 10:06:45,457 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:06:45,457 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:06:45,457 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:06:45,457 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:06:45,468 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:06:45,468 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:06:45,468 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,468 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:06:45,468 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:06:45,468 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:45,485 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,485 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,485 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:06:45,485 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,485 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:06:45,503 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,503 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,517 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,517 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,517 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:06:45,517 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,517 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,517 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,532 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,532 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:06:45,532 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,532 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,532 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,532 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,548 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:06:45,548 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,548 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,548 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,548 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,564 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:06:45,564 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,564 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,564 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,564 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,564 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:06:45,579 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,579 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,579 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,579 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,596 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:06:45,596 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded config.get +2020-03-06 10:06:45,596 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded grains.filter_by +2020-03-06 10:06:45,596 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.12790441513061523 +2020-03-06 10:06:45,616 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .states - .modules - .system -2020-03-04 12:05:44,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:45,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.states', '.modules', '.system'])]) -2020-03-04 12:05:44,913 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:44,913 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:05:44,927 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:05:44,927 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' -2020-03-04 12:05:44,927 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,927 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' -2020-03-04 12:05:44,927 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls -2020-03-04 12:05:44,927 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:44,927 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:05:44,927 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:05:44,945 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' -2020-03-04 12:05:44,945 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:44,945 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' -2020-03-04 12:05:44,968 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:44,988 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:44,988 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,004 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,004 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,004 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,004 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,004 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,018 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,018 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,018 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,018 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,018 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,018 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,035 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.10737919807434082 -2020-03-04 12:05:45,035 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +2020-03-06 10:06:45,616 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:45,616 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:06:45,616 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:06:45,616 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:06:45,616 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,616 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:06:45,616 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:06:45,616 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:45,633 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:06:45,633 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:06:45,633 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:06:45,633 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,648 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:06:45,683 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,683 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,695 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,711 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,711 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,711 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,711 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,711 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,727 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,727 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,727 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,727 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,727 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,727 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,744 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.1277756690979004 +2020-03-06 10:06:45,744 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -722,34 +731,34 @@ windows.state.timezone.system.America/New_York: -2020-03-04 12:05:45,035 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:45,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) -2020-03-04 12:05:45,035 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,035 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:05:45,048 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:05:45,048 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' -2020-03-04 12:05:45,048 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,048 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' -2020-03-04 12:05:45,048 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls -2020-03-04 12:05:45,048 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,048 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:05:45,048 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:05:45,098 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,098 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,117 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,117 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,117 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,117 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,117 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,129 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,129 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,129 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,129 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,129 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,129 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,129 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,145 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.09661364555358887 -2020-03-04 12:05:45,145 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +2020-03-06 10:06:45,744 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:45,744 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:06:45,744 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:06:45,744 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:06:45,757 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,757 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:06:45,757 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:06:45,757 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:45,757 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:06:45,773 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:06:45,810 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,810 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,821 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,836 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,836 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,836 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,836 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,836 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,836 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,852 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,852 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,852 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,852 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,852 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,870 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.11259865760803223 +2020-03-06 10:06:45,870 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -777,33 +786,33 @@ windows.module.status.uptime: - windows.module.user.current -2020-03-04 12:05:45,145 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:45,870 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) -2020-03-04 12:05:45,145 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,145 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system.sls' in saltenv 'base' -2020-03-04 12:05:45,145 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:05:45,145 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:05:45,161 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' -2020-03-04 12:05:45,161 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,161 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' -2020-03-04 12:05:45,161 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls -2020-03-04 12:05:45,161 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,161 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,179 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,179 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,195 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,195 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,195 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,195 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,195 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,195 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,210 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,210 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,210 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,210 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,225 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,225 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.06439495086669922 -2020-03-04 12:05:45,225 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +2020-03-06 10:06:45,870 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:45,870 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:06:45,870 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:06:45,870 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:06:45,870 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:06:45,883 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,883 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:06:45,883 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:06:45,883 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:45,883 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,900 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:45,917 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,917 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:45,917 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,917 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:45,917 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,917 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:45,931 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,931 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:45,931 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,931 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:45,931 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,931 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:45,948 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.06485772132873535 +2020-03-06 10:06:45,948 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls # sls: windows.system windows system @@ -820,19 +829,19 @@ include: - .desktop -2020-03-04 12:05:45,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:45,948 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.packages', '.server', '.desktop'])]) -2020-03-04 12:05:45,225 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,241 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' -2020-03-04 12:05:45,241 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:05:45,241 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:05:45,241 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' -2020-03-04 12:05:45,241 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,241 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' -2020-03-04 12:05:45,241 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls -2020-03-04 12:05:45,257 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,257 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,257 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +2020-03-06 10:06:45,948 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:45,948 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:06:45,948 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:06:45,962 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:06:45,962 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:06:45,962 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,962 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:06:45,962 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:06:45,962 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:45,962 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:45,962 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -841,67 +850,67 @@ include: - .powershell - .saltstack - .chocolatey -2020-03-04 12:05:45,257 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:45,962 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) -2020-03-04 12:05:45,257 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,257 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' -2020-03-04 12:05:45,257 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:05:45,273 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:05:45,273 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:05:45,273 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,273 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' -2020-03-04 12:05:45,273 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls -2020-03-04 12:05:45,273 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,273 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,273 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +2020-03-06 10:06:45,977 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.015686511993408203 +2020-03-06 10:06:45,977 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:06:45,977 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:06:45,977 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:06:45,977 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:06:45,977 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,977 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:06:45,977 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:06:45,977 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:45,993 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.015774250030517578 +2020-03-06 10:06:45,993 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .remove-provisioned-apps -2020-03-04 12:05:45,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:45,993 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.remove-provisioned-apps'])]) -2020-03-04 12:05:45,289 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.016441822052001953 -2020-03-04 12:05:45,289 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:05:45,289 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:05:45,289 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:05:45,289 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,289 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:05:45,289 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls -2020-03-04 12:05:45,289 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,289 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,289 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +2020-03-06 10:06:45,993 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:45,993 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:06:45,993 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:06:45,993 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:06:45,993 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:45,993 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:06:46,008 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:06:46,008 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,008 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:46,008 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .removed -2020-03-04 12:05:45,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.removed'])]) -2020-03-04 12:05:45,305 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,305 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:05:45,305 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:05:45,305 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:05:45,305 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,305 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' -2020-03-04 12:05:45,305 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls -2020-03-04 12:05:45,305 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,320 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,320 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,342 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,342 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,342 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,342 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,342 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,353 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,353 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,353 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,353 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,353 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,353 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,353 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,371 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.0662541389465332 -2020-03-04 12:05:45,371 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +2020-03-06 10:06:46,008 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,008 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:06:46,008 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:06:46,008 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:06:46,008 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,024 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:06:46,024 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:06:46,024 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,024 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,040 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,040 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,058 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,058 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,058 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,058 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,058 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,073 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,073 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,073 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,073 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,073 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,073 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,073 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.04843950271606445 +2020-03-06 10:06:46,092 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -945,87 +954,87 @@ windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Port -2020-03-04 12:05:45,371 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,092 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) -2020-03-04 12:05:45,371 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,371 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' -2020-03-04 12:05:45,371 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:05:45,371 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:05:45,385 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:05:45,385 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,385 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' -2020-03-04 12:05:45,385 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls -2020-03-04 12:05:45,385 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,385 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,385 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +2020-03-06 10:06:46,092 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,092 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:06:46,092 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:06:46,092 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:06:46,092 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:06:46,104 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,104 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:06:46,104 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:06:46,104 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,104 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:46,104 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .modules - .framework -2020-03-04 12:05:45,385 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,104 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.framework'])]) -2020-03-04 12:05:45,385 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,385 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' -2020-03-04 12:05:45,401 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:05:45,401 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:05:45,401 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:05:45,401 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,401 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:05:45,401 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls -2020-03-04 12:05:45,401 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,401 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,401 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +2020-03-06 10:06:46,104 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,104 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:06:46,120 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:06:46,120 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:06:46,120 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:06:46,120 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,120 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:06:46,120 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:06:46,120 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,120 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:46,120 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .v4_5 -2020-03-04 12:05:45,401 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,120 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.v4_5'])]) -2020-03-04 12:05:45,401 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,417 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' -2020-03-04 12:05:45,417 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:05:45,417 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:05:45,417 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:05:45,417 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,417 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:05:45,417 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls -2020-03-04 12:05:45,417 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,417 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,417 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +2020-03-06 10:06:46,135 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.015329360961914062 +2020-03-06 10:06:46,135 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:06:46,135 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:06:46,135 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:06:46,135 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:06:46,135 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,135 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:06:46,135 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:06:46,135 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,135 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:46,152 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .tls1_2 -2020-03-04 12:05:45,434 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,152 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.tls1_2'])]) -2020-03-04 12:05:45,434 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,434 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:05:45,434 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:05:45,434 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:05:45,434 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,434 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:05:45,434 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls -2020-03-04 12:05:45,434 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,451 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,451 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,451 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,451 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,451 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,474 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,492 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,492 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.05759716033935547 -2020-03-04 12:05:45,492 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +2020-03-06 10:06:46,152 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,152 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:06:46,152 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:06:46,152 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:06:46,152 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,152 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:06:46,152 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:06:46,152 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,168 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,168 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,168 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,188 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,188 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,188 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,188 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,201 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,201 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,201 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,201 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,201 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,201 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,201 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,217 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.06499505043029785 +2020-03-06 10:06:46,217 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1053,151 +1062,85 @@ windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversion - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} -2020-03-04 12:05:45,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,217 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) -2020-03-04 12:05:45,492 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,508 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' -2020-03-04 12:05:45,508 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:05:45,508 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:05:45,508 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:05:45,508 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,508 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' -2020-03-04 12:05:45,508 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls -2020-03-04 12:05:45,508 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,508 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,508 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +2020-03-06 10:06:46,217 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,232 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:06:46,232 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:06:46,232 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:06:46,232 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:06:46,232 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,232 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:06:46,232 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:06:46,248 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,248 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.015617609024047852 +2020-03-06 10:06:46,248 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:05:45,523 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,248 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:05:45,523 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,523 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:05:45,523 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:05:45,523 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:05:45,523 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,523 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' -2020-03-04 12:05:45,523 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls -2020-03-04 12:05:45,523 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,539 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:05:45,539 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:05:45,539 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:05:45,539 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,539 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' -2020-03-04 12:05:45,539 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,556 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,556 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,573 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,573 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,573 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,573 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,573 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,587 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,587 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,587 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,587 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,587 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,587 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,604 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:05:45,604 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:05:45,604 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:05:45,604 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,618 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:05:45,682 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pkg.version -2020-03-04 12:05:45,682 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][4632] No winrepo.p cache file for saltenv 'base', creating one now -2020-03-04 12:05:45,698 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4632] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) -2020-03-04 12:05:45,698 [salt.loaded.int.module.win_pkg:935 ][INFO ][4632] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:05:45,698 [salt.loaded.int.module.win_pkg:954 ][INFO ][4632] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:05:45,698 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cp.cache_dir -2020-03-04 12:05:45,718 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded roots.envs -2020-03-04 12:05:45,730 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:05:45,730 [salt.fileclient :234 ][INFO ][4632] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:05:45,730 [salt.fileserver :159 ][DEBUG ][4632] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:05:45,730 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded reg.list_keys -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,746 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,760 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,760 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.23686623573303223 -2020-03-04 12:05:45,760 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +2020-03-06 10:06:46,248 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,248 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:06:46,248 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:06:46,248 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:06:46,248 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,263 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:06:46,263 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:06:46,263 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,263 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:06:46,263 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:06:46,263 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:06:46,263 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,279 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:06:46,279 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,279 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,300 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,300 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,300 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,300 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,311 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,311 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,311 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,311 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,311 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,311 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,311 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,328 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,328 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:06:46,328 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:06:46,342 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:06:46,342 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,342 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:06:46,553 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pkg.version +2020-03-06 10:06:46,567 [salt.loaded.int.module.win_pkg:827 ][DEBUG ][3160] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:06:46,567 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][3160] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:06:46,567 [salt.loaded.int.module.win_pkg:939 ][INFO ][3160] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:06:46,567 [salt.loaded.int.module.win_pkg:958 ][INFO ][3160] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:06:46,567 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cp.cache_dir +2020-03-06 10:06:46,591 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded roots.envs +2020-03-06 10:06:46,614 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:06:46,627 [salt.fileclient :234 ][INFO ][3160] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:06:46,627 [salt.fileserver :159 ][DEBUG ][3160] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:06:46,627 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded reg.list_keys +2020-03-06 10:06:46,644 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.3809239864349365 +2020-03-06 10:06:46,644 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .windows_software_repository +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db 7zip: pkg.installed: - - version: 18.06.00.0 - refresh_minion_env_path: False + - version: 18.06.00.0 - require: - pkg.refresh_db git: @@ -1205,99 +1148,25 @@ git: - refresh_minion_env_path: True - require: - pkg.refresh_db -kdiff3: - pkg.installed: - - require: - - pkg.refresh_db windows_environment.refresh.path: module.run: - windows_environment.refresh: - onchanges: - pkg: git -2020-03-04 12:05:45,760 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: -OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) -2020-03-04 12:05:45,760 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,760 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:05:45,760 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:05:45,760 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:05:45,760 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,776 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:05:45,776 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls -2020-03-04 12:05:45,776 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,776 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.045785) -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,793 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,807 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,807 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,807 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,807 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:05:45,807 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.03141498565673828 -2020-03-04 12:05:45,807 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +2020-03-06 10:06:46,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:06:46,644 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,644 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:06:46,644 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:06:46,644 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:06:46,644 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,657 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:06:46,657 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:06:46,657 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,657 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.030016) +2020-03-06 10:06:46,674 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.017063617706298828 +2020-03-06 10:06:46,674 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1330,93 +1199,93 @@ pkg.refresh_db: attempts: 10 until: True interval: 5 -2020-03-04 12:05:45,807 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) -2020-03-04 12:05:45,807 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,807 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' -2020-03-04 12:05:45,807 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:05:45,807 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:05:45,807 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:05:45,807 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,824 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' -2020-03-04 12:05:45,824 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls -2020-03-04 12:05:45,824 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,824 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,824 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +2020-03-06 10:06:46,674 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,674 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:06:46,689 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:06:46,689 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:06:46,689 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:06:46,689 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,689 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:06:46,689 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:06:46,689 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,704 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.015418052673339844 +2020-03-06 10:06:46,704 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:05:45,824 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:05:45,824 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,824 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:05:45,840 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:05:45,840 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:05:45,840 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,840 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:05:45,840 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls -2020-03-04 12:05:45,840 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,840 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,858 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,858 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,874 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,874 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,874 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,874 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,874 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,874 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,874 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,889 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,889 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,889 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,889 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,889 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.049214839935302734 -2020-03-04 12:05:45,906 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +2020-03-06 10:06:46,704 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,704 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:06:46,704 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:06:46,704 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:06:46,704 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,720 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:06:46,720 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:06:46,720 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,720 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,737 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,737 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,754 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,754 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,754 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,754 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,754 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,767 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,767 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,767 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,767 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,767 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,767 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,786 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06607294082641602 +2020-03-06 10:06:46,786 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .bootstrap -windows.system.packages.chocolatey.notepadplusplus: +windows.system.packages.chocolatey.windirstat: chocolatey.installed: - require: - chocolatey.bootstrap - - name: notepadplusplus + - name: windirstat + - version: 1.1.2.20161210 -windows.system.packages.chocolatey.windirstat: +windows.system.packages.chocolatey.notepadplusplus: chocolatey.installed: - require: - chocolatey.bootstrap - - name: windirstat - - version: 1.1.2.20161210 + - name: notepadplusplus -2020-03-04 12:05:45,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: -OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) -2020-03-04 12:05:45,906 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,906 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:05:45,906 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:05:45,906 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:05:45,906 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,921 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:05:45,921 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls -2020-03-04 12:05:45,921 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,921 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,921 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:45,940 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,940 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:45,940 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,940 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:45,952 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,952 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:45,952 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,952 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:45,952 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,952 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:45,952 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,967 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:45,967 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.04663348197937012 -2020-03-04 12:05:45,967 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +2020-03-06 10:06:46,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) +2020-03-06 10:06:46,786 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,786 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:06:46,786 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:06:46,798 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:06:46,798 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,798 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:06:46,798 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:06:46,798 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,798 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,798 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,814 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,829 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,829 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,829 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,829 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,829 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,829 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,845 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,845 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,845 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,845 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,845 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:46,845 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.04691457748413086 +2020-03-06 10:06:46,863 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: # -*- coding: utf-8 -*- # vim: ft=sls chocolatey.bootstrap: @@ -1426,149 +1295,149 @@ chocolatey.bootstrap: - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -2020-03-04 12:05:45,967 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,863 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) -2020-03-04 12:05:45,967 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:45,967 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' -2020-03-04 12:05:45,983 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:05:45,983 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:05:45,983 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' -2020-03-04 12:05:45,983 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,983 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' -2020-03-04 12:05:45,983 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls -2020-03-04 12:05:45,983 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,983 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:45,983 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +2020-03-06 10:06:46,863 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,863 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:06:46,863 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:06:46,863 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:06:46,863 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:06:46,863 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,877 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:06:46,877 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:06:46,877 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,877 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:46,877 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .features -2020-03-04 12:05:45,983 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.features'])]) -2020-03-04 12:05:45,999 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.015485048294067383 -2020-03-04 12:05:45,999 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' -2020-03-04 12:05:45,999 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:05:45,999 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:05:45,999 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' -2020-03-04 12:05:45,999 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:45,999 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' -2020-03-04 12:05:45,999 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls -2020-03-04 12:05:45,999 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:45,999 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:46,015 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +2020-03-06 10:06:46,877 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,877 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:06:46,893 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:06:46,893 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:06:46,893 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:06:46,893 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,917 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:06:46,917 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:06:46,917 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,917 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:46,917 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:05:46,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:46,917 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:05:46,015 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:46,015 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:05:46,015 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:05:46,015 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:05:46,015 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:46,015 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' -2020-03-04 12:05:46,015 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls -2020-03-04 12:05:46,031 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:46,031 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:05:46,031 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:05:46,031 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:05:46,031 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:46,031 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' -2020-03-04 12:05:46,047 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:46,047 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:46,063 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:46,063 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:46,063 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:46,063 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:46,063 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:46,078 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:46,078 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:46,078 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:46,078 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:46,078 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:46,078 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:46,078 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:46,095 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.0645453929901123 -2020-03-04 12:05:46,095 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +2020-03-06 10:06:46,917 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:46,917 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:06:46,917 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:06:46,934 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:06:46,934 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,934 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:06:46,934 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:06:46,934 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:46,934 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:06:46,949 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:06:46,949 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:06:46,949 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:46,949 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:06:46,966 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,966 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:46,966 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,984 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:46,984 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,984 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:46,997 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,997 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:46,997 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,997 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:46,997 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:46,997 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:47,013 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:47,013 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:47,013 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.07924413681030273 +2020-03-06 10:06:47,013 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls -2020-03-04 12:05:46,095 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:47,029 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: {} -2020-03-04 12:05:46,095 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:46,095 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' -2020-03-04 12:05:46,095 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:05:46,110 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:05:46,110 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' -2020-03-04 12:05:46,110 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:46,110 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' -2020-03-04 12:05:46,110 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls -2020-03-04 12:05:46,110 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:46,110 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:46,110 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +2020-03-06 10:06:47,029 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:47,029 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:06:47,029 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:06:47,029 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:06:47,029 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:06:47,029 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:47,044 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:06:47,044 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:06:47,044 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:47,044 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:06:47,044 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .packages - .optional_features -2020-03-04 12:05:46,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:47,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.optional_features'])]) -2020-03-04 12:05:46,110 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:46,125 [salt.fileclient :1072][DEBUG ][4632] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' -2020-03-04 12:05:46,125 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:05:46,125 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:05:46,125 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:05:46,125 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:46,125 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' -2020-03-04 12:05:46,125 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls -2020-03-04 12:05:46,125 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:46,125 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:05:46,125 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +2020-03-06 10:06:47,044 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:47,060 [salt.fileclient :1080][DEBUG ][3160] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:06:47,060 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:06:47,060 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:06:47,060 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:06:47,060 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:47,060 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:06:47,060 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:06:47,060 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:47,075 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.015493631362915039 +2020-03-06 10:06:47,075 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .feature_installed -2020-03-04 12:05:46,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:47,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('include', ['.feature_installed'])]) -2020-03-04 12:05:46,142 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.016640424728393555 -2020-03-04 12:05:46,142 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:05:46,142 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:05:46,142 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:05:46,142 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:46,142 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:05:46,142 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls -2020-03-04 12:05:46,142 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:05:46,158 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:05:46,158 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:05:46,158 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:05:46,158 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:46,158 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:05:46,158 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:46,174 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:05:46,174 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:46,174 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:05:46,191 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:46,191 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:05:46,191 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:46,191 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:05:46,191 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:46,191 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:05:46,191 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:46,208 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:05:46,208 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:46,208 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:05:46,208 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:05:46,208 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:05:46,225 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:05:46,225 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:05:46,225 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:05:46,225 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.08281493186950684 -2020-03-04 12:05:46,225 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +2020-03-06 10:06:47,075 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:47,075 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:06:47,075 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:06:47,075 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:06:47,075 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:47,091 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:06:47,091 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:06:47,091 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:06:47,091 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:06:47,091 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:06:47,091 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:06:47,091 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:47,116 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:06:47,116 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:47,116 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:06:47,133 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:47,133 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:06:47,147 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:47,147 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:06:47,147 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:47,147 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:06:47,147 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:47,163 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:06:47,163 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:47,163 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:06:47,163 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:47,163 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:06:47,182 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:06:47,182 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:06:47,182 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:06:47,182 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:06:47,182 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:06:47,194 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.10271549224853516 +2020-03-06 10:06:47,194 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls# -*- coding: utf-8 -*- # vim: ft=sls @@ -1581,1827 +1450,1844 @@ windows.system.desktop.optional_features.installed.TelnetClient: Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" -2020-03-04 12:05:46,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:06:47,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) -2020-03-04 12:05:46,240 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:05:46,240 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cmd.run -2020-03-04 12:05:46,272 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded system.get_computer_desc -2020-03-04 12:05:46,272 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded system.computer_desc -2020-03-04 12:05:46,272 [salt.state :1819][INFO ][4632] Running state [saltstack1] at time 12:05:46.272890 -2020-03-04 12:05:46,272 [salt.state :1852][INFO ][4632] Executing state system.hostname for [saltstack1] -2020-03-04 12:05:46,272 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:05:46,288 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: vagrant-10 -2020-03-04 12:05:46,288 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4632] output: vagrant-10 -2020-03-04 12:05:46,288 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:05:46,304 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: vagrant-10 -2020-03-04 12:05:46,304 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4632] output: vagrant-10 -2020-03-04 12:05:46,304 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' -2020-03-04 12:05:46,367 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 10:06:47,194 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:06:47,194 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cmd.run +2020-03-06 10:06:47,336 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded system.get_computer_desc +2020-03-06 10:06:47,336 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded system.computer_desc +2020-03-06 10:06:47,336 [salt.state :1867][INFO ][3160] Running state [saltstack1] at time 10:06:47.336229 +2020-03-06 10:06:47,349 [salt.state :1900][INFO ][3160] Executing state system.hostname for [saltstack1] +2020-03-06 10:06:47,349 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:06:47,349 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: vagrant-10 +2020-03-06 10:06:47,349 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3160] output: vagrant-10 +2020-03-06 10:06:47,349 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:06:47,366 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: vagrant-10 +2020-03-06 10:06:47,366 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3160] output: vagrant-10 +2020-03-06 10:06:47,366 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:06:47,444 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:05:46,367 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4632] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 10:06:47,444 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3160] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:05:46,367 [salt.state :320 ][INFO ][4632] {'hostname': 'saltstack1'} -2020-03-04 12:05:46,367 [salt.state :1997][INFO ][4632] Completed state [saltstack1] at time 12:05:46.367686 (duration_in_ms=94.796) -2020-03-04 12:05:46,367 [salt.state :1819][INFO ][4632] Running state [Saltstack Computer Description] at time 12:05:46.367686 -2020-03-04 12:05:46,367 [salt.state :1852][INFO ][4632] Executing state system.computer_desc for [Saltstack Computer Description] -2020-03-04 12:05:48,992 [salt.state :320 ][INFO ][4632] {'new': 'Saltstack Computer Description', 'old': ''} -2020-03-04 12:05:49,000 [salt.state :1997][INFO ][4632] Completed state [Saltstack Computer Description] at time 12:05:49.000023 (duration_in_ms=2632.337) -2020-03-04 12:05:49,013 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded platform.is_windows -2020-03-04 12:05:49,013 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded path.which -2020-03-04 12:05:49,013 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded timezone.get_zone -2020-03-04 12:05:49,013 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded timezone.system -2020-03-04 12:05:49,028 [salt.state :1819][INFO ][4632] Running state [America/New_York] at time 12:05:49.028638 -2020-03-04 12:05:49,028 [salt.state :1852][INFO ][4632] Executing state timezone.system for [America/New_York] -2020-03-04 12:05:49,028 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' -2020-03-04 12:05:49,044 [salt.state :320 ][INFO ][4632] {'timezone': 'America/New_York'} -2020-03-04 12:05:49,044 [salt.state :1997][INFO ][4632] Completed state [America/New_York] at time 12:05:49.044460 (duration_in_ms=15.822) -2020-03-04 12:05:49,044 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded module.run -2020-03-04 12:05:49,044 [salt.state :1819][INFO ][4632] Running state [windows.module.environ.items] at time 12:05:49.044460 -2020-03-04 12:05:49,044 [salt.state :1852][INFO ][4632] Executing state module.run for [windows.module.environ.items] -2020-03-04 12:05:49,060 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded environ.items -2020-03-04 12:05:49,060 [salt.state :320 ][INFO ][4632] {'environ.items': {'LOGONSERVER': '\\\\VAGRANT-10', 'OS': 'Windows_NT', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'PROGRAMFILES': 'C:\\Program Files', 'NUMBER_OF_PROCESSORS': '2', 'WINDIR': 'C:\\Windows', 'PROCESSOR_REVISION': '8e0c', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'SYSTEMROOT': 'C:\\Windows', 'HOMEDRIVE': 'C:', 'SYSTEMDRIVE': 'C:', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'USERPROFILE': 'C:\\Users\\vagrant', 'USERNAME': 'vagrant', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'HOMEPATH': '\\Users\\vagrant', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'PUBLIC': 'C:\\Users\\Public', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'PROGRAMW6432': 'C:\\Program Files', 'USERDOMAIN': 'VAGRANT-10', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PROCESSOR_LEVEL': '6', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'PROGRAMDATA': 'C:\\ProgramData', 'PROMPT': '$P$G', 'COMPUTERNAME': 'VAGRANT-10', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'SALTDIR': 'C:\\salt'}} -2020-03-04 12:05:49,060 [salt.state :1997][INFO ][4632] Completed state [windows.module.environ.items] at time 12:05:49.060228 (duration_in_ms=15.768) -2020-03-04 12:05:49,060 [salt.state :1819][INFO ][4632] Running state [windows.module.user.current] at time 12:05:49.060228 -2020-03-04 12:05:49,060 [salt.state :1852][INFO ][4632] Executing state module.run for [windows.module.user.current] -2020-03-04 12:05:49,075 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded user.current -2020-03-04 12:05:49,075 [salt.state :320 ][INFO ][4632] {'user.current': 'VAGRANT-10\\vagrant'} -2020-03-04 12:05:49,075 [salt.state :1997][INFO ][4632] Completed state [windows.module.user.current] at time 12:05:49.075967 (duration_in_ms=15.739) -2020-03-04 12:05:49,075 [salt.state :1819][INFO ][4632] Running state [windows.module.status.uptime] at time 12:05:49.075967 -2020-03-04 12:05:49,075 [salt.state :1852][INFO ][4632] Executing state module.run for [windows.module.status.uptime] -2020-03-04 12:05:49,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded status.uptime -2020-03-04 12:05:49,107 [salt.state :320 ][INFO ][4632] {'status.uptime': '0:01:13.107125'} -2020-03-04 12:05:49,107 [salt.state :1997][INFO ][4632] Completed state [windows.module.status.uptime] at time 12:05:49.107125 (duration_in_ms=31.158) -2020-03-04 12:05:49,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cmd.run -2020-03-04 12:05:49,107 [salt.state :1819][INFO ][4632] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 12:05:49.107125 -2020-03-04 12:05:49,107 [salt.state :1852][INFO ][4632] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] -2020-03-04 12:05:49,122 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:49,592 [salt.loaded.int.states.cmd:343 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:05:49,592 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:50,877 [salt.state :320 ][INFO ][4632] {'retcode': 0, 'stderr': '', 'pid': 6624, 'stdout': ''} -2020-03-04 12:05:50,877 [salt.state :1997][INFO ][4632] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 12:05:50.877040 (duration_in_ms=1769.915) -2020-03-04 12:05:50,877 [salt.state :1819][INFO ][4632] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 12:05:50.877040 -2020-03-04 12:05:50,877 [salt.state :1852][INFO ][4632] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] -2020-03-04 12:05:50,877 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:51,380 [salt.loaded.int.states.cmd:343 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:05:51,380 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:52,175 [salt.state :320 ][INFO ][4632] {'retcode': 0, 'stderr': '', 'pid': 5880, 'stdout': ''} -2020-03-04 12:05:52,175 [salt.state :1997][INFO ][4632] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 12:05:52.175642 (duration_in_ms=1298.602) -2020-03-04 12:05:52,175 [salt.state :1819][INFO ][4632] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 12:05:52.175642 -2020-03-04 12:05:52,175 [salt.state :1852][INFO ][4632] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] -2020-03-04 12:05:52,175 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:52,643 [salt.loaded.int.states.cmd:343 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:05:52,643 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:53,503 [salt.state :320 ][INFO ][4632] {'retcode': 0, 'stderr': '', 'pid': 1760, 'stdout': ''} -2020-03-04 12:05:53,520 [salt.state :1997][INFO ][4632] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 12:05:53.520162 (duration_in_ms=1344.52) -2020-03-04 12:05:53,520 [salt.state :1819][INFO ][4632] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 12:05:53.520162 -2020-03-04 12:05:53,520 [salt.state :1852][INFO ][4632] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] -2020-03-04 12:05:53,520 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:54,015 [salt.loaded.int.states.cmd:343 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:05:54,015 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:54,850 [salt.state :320 ][INFO ][4632] {'retcode': 0, 'stderr': '', 'pid': 2864, 'stdout': ''} -2020-03-04 12:05:54,850 [salt.state :1997][INFO ][4632] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 12:05:54.850878 (duration_in_ms=1330.716) -2020-03-04 12:05:54,850 [salt.state :1819][INFO ][4632] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 12:05:54.850878 -2020-03-04 12:05:54,850 [salt.state :1852][INFO ][4632] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] -2020-03-04 12:05:54,865 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:05:55,386 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4632] retcode: 1 -2020-03-04 12:05:55,386 [salt.loaded.int.states.cmd:343 ][DEBUG ][4632] Last command return code: 1 -2020-03-04 12:05:55,401 [salt.state :320 ][INFO ][4632] onlyif condition is false -2020-03-04 12:05:55,401 [salt.state :1997][INFO ][4632] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 12:05:55.401397 (duration_in_ms=550.519) -2020-03-04 12:05:55,401 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded reg.present -2020-03-04 12:05:55,401 [salt.state :1819][INFO ][4632] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:05:55.401397 -2020-03-04 12:05:55,401 [salt.state :1852][INFO ][4632] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:05:56,319 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt.secret_key, ret: _|- -2020-03-04 12:05:56,319 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt:secret_key, ret: _|- -2020-03-04 12:05:56,836 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet.api_key, ret: _|- -2020-03-04 12:05:56,836 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet:api_key, ret: _|- -2020-03-04 12:05:57,203 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops.api_key, ret: _|- -2020-03-04 12:05:57,218 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops:api_key, ret: _|- -2020-03-04 12:06:01,229 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:06:01,229 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded apache.a2enconf -2020-03-04 12:06:01,229 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded apache.a2enmod -2020-03-04 12:06:01,245 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded apache.a2ensite -2020-03-04 12:06:01,262 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:06:01,277 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:06:01,277 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:06:01,292 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:06:01,308 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:06:01,308 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:06:01,323 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:06:01,323 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:06:01,339 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_asg.exists -2020-03-04 12:06:01,339 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cfn.exists -2020-03-04 12:06:01,339 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:06:01,339 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:06:01,354 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:06:01,354 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:06:01,354 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:06:01,354 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:06:01,370 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_dynamodb.exists -2020-03-04 12:06:01,370 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_ec2.get_key -2020-03-04 12:06:01,387 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elasticache.exists -2020-03-04 12:06:01,387 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:06:01,404 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elb.exists -2020-03-04 12:06:01,404 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:06:01,420 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_iam.get_user -2020-03-04 12:06:01,420 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_iam.role_exists -2020-03-04 12:06:01,434 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_iot.policy_exists -2020-03-04 12:06:01,434 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_kinesis.exists -2020-03-04 12:06:01,434 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_kms.describe_key -2020-03-04 12:06:01,450 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_lambda.function_exists -2020-03-04 12:06:01,450 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_asg.exists -2020-03-04 12:06:01,450 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_rds.exists -2020-03-04 12:06:01,450 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_route53.get_record -2020-03-04 12:06:01,465 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:06:01,465 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:06:01,465 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_secgroup.exists -2020-03-04 12:06:01,481 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_sns.exists -2020-03-04 12:06:01,481 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_sqs.exists -2020-03-04 12:06:01,481 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_vpc.exists -2020-03-04 12:06:01,497 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded bower.list -2020-03-04 12:06:01,497 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded chef.client -2020-03-04 12:06:01,513 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cimc.get_system_info -2020-03-04 12:06:01,513 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cisconso.set_data_value -2020-03-04 12:06:01,513 [salt.loader :1577][DEBUG ][4632] Failed to import states cloud: +2020-03-06 10:06:47,444 [salt.state :320 ][INFO ][3160] {'hostname': 'saltstack1'} +2020-03-06 10:06:47,444 [salt.state :2045][INFO ][3160] Completed state [saltstack1] at time 10:06:47.444879 (duration_in_ms=108.65) +2020-03-06 10:06:47,444 [salt.state :1867][INFO ][3160] Running state [Saltstack Computer Description] at time 10:06:47.444879 +2020-03-06 10:06:47,444 [salt.state :1900][INFO ][3160] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:06:50,092 [salt.state :320 ][INFO ][3160] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 10:06:50,099 [salt.state :2045][INFO ][3160] Completed state [Saltstack Computer Description] at time 10:06:50.099104 (duration_in_ms=2654.225) +2020-03-06 10:06:50,124 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded platform.is_windows +2020-03-06 10:06:50,128 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded path.which +2020-03-06 10:06:50,128 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded timezone.get_zone +2020-03-06 10:06:50,133 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded timezone.system +2020-03-06 10:06:50,133 [salt.state :1867][INFO ][3160] Running state [America/New_York] at time 10:06:50.133083 +2020-03-06 10:06:50,135 [salt.state :1900][INFO ][3160] Executing state timezone.system for [America/New_York] +2020-03-06 10:06:50,137 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:06:50,149 [salt.state :320 ][INFO ][3160] {'timezone': 'America/New_York'} +2020-03-06 10:06:50,149 [salt.state :2045][INFO ][3160] Completed state [America/New_York] at time 10:06:50.149601 (duration_in_ms=16.518) +2020-03-06 10:06:50,149 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded module.run +2020-03-06 10:06:50,161 [salt.state :1867][INFO ][3160] Running state [windows.module.environ.items] at time 10:06:50.161371 +2020-03-06 10:06:50,161 [salt.state :1900][INFO ][3160] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:06:50,161 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded environ.items +2020-03-06 10:06:50,161 [salt.state :320 ][INFO ][3160] {'environ.items': {'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'USERPROFILE': 'C:\\Users\\vagrant', 'PROMPT': '$P$G', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'PROGRAMDATA': 'C:\\ProgramData', 'PROGRAMW6432': 'C:\\Program Files', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PUBLIC': 'C:\\Users\\Public', 'NUMBER_OF_PROCESSORS': '2', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'WINDIR': 'C:\\Windows', 'PROCESSOR_REVISION': '8e0c', 'COMPUTERNAME': 'VAGRANT-10', 'HOMEDRIVE': 'C:', 'LOGONSERVER': '\\\\VAGRANT-10', 'USERNAME': 'vagrant', 'HOMEPATH': '\\Users\\vagrant', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'SYSTEMROOT': 'C:\\Windows', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'PROGRAMFILES': 'C:\\Program Files', 'SALTDIR': 'C:\\salt', 'OS': 'Windows_NT', 'USERDOMAIN': 'VAGRANT-10', 'PROCESSOR_LEVEL': '6', 'SYSTEMDRIVE': 'C:', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)'}} +2020-03-06 10:06:50,161 [salt.state :2045][INFO ][3160] Completed state [windows.module.environ.items] at time 10:06:50.161371 (duration_in_ms=0.0) +2020-03-06 10:06:50,161 [salt.state :1867][INFO ][3160] Running state [windows.module.user.current] at time 10:06:50.161371 +2020-03-06 10:06:50,161 [salt.state :1900][INFO ][3160] Executing state module.run for [windows.module.user.current] +2020-03-06 10:06:50,192 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded user.current +2020-03-06 10:06:50,192 [salt.state :320 ][INFO ][3160] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:06:50,192 [salt.state :2045][INFO ][3160] Completed state [windows.module.user.current] at time 10:06:50.192846 (duration_in_ms=31.475) +2020-03-06 10:06:50,208 [salt.state :1867][INFO ][3160] Running state [windows.module.status.uptime] at time 10:06:50.208139 +2020-03-06 10:06:50,208 [salt.state :1900][INFO ][3160] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:06:50,225 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded status.uptime +2020-03-06 10:06:50,225 [salt.state :320 ][INFO ][3160] {'status.uptime': '0:01:27.225047'} +2020-03-06 10:06:50,225 [salt.state :2045][INFO ][3160] Completed state [windows.module.status.uptime] at time 10:06:50.225047 (duration_in_ms=16.908) +2020-03-06 10:06:50,241 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cmd.run +2020-03-06 10:06:50,241 [salt.state :1867][INFO ][3160] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:06:50.241441 +2020-03-06 10:06:50,241 [salt.state :1900][INFO ][3160] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] +2020-03-06 10:06:50,241 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:50,778 [salt.loaded.int.states.cmd:344 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:06:50,778 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:51,975 [salt.state :320 ][INFO ][3160] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 508} +2020-03-06 10:06:51,975 [salt.state :2045][INFO ][3160] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage] at time 10:06:51.975546 (duration_in_ms=1734.105) +2020-03-06 10:06:51,975 [salt.state :1867][INFO ][3160] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:06:51.975546 +2020-03-06 10:06:51,975 [salt.state :1900][INFO ][3160] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] +2020-03-06 10:06:51,975 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:52,485 [salt.loaded.int.states.cmd:344 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:06:52,485 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:53,291 [salt.state :320 ][INFO ][3160] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 3660} +2020-03-06 10:06:53,306 [salt.state :2045][INFO ][3160] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage] at time 10:06:53.306512 (duration_in_ms=1330.966) +2020-03-06 10:06:53,306 [salt.state :1867][INFO ][3160] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:06:53.306512 +2020-03-06 10:06:53,306 [salt.state :1900][INFO ][3160] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] +2020-03-06 10:06:53,306 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:53,785 [salt.loaded.int.states.cmd:344 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:06:53,785 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:54,603 [salt.state :320 ][INFO ][3160] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 2752} +2020-03-06 10:06:54,603 [salt.state :2045][INFO ][3160] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage] at time 10:06:54.603841 (duration_in_ms=1297.329) +2020-03-06 10:06:54,603 [salt.state :1867][INFO ][3160] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:06:54.603841 +2020-03-06 10:06:54,603 [salt.state :1900][INFO ][3160] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] +2020-03-06 10:06:54,603 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:55,095 [salt.loaded.int.states.cmd:344 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:06:55,095 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:55,913 [salt.state :320 ][INFO ][3160] {'stderr': '', 'stdout': '', 'retcode': 0, 'pid': 6068} +2020-03-06 10:06:55,913 [salt.state :2045][INFO ][3160] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage] at time 10:06:55.913236 (duration_in_ms=1309.395) +2020-03-06 10:06:55,929 [salt.state :1867][INFO ][3160] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:06:55.929062 +2020-03-06 10:06:55,929 [salt.state :1900][INFO ][3160] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] +2020-03-06 10:06:55,929 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:06:56,409 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][3160] retcode: 1 +2020-03-06 10:06:56,409 [salt.loaded.int.states.cmd:344 ][DEBUG ][3160] Last command return code: 1 +2020-03-06 10:06:56,409 [salt.state :320 ][INFO ][3160] onlyif condition is false +2020-03-06 10:06:56,409 [salt.state :2045][INFO ][3160] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage] at time 10:06:56.409960 (duration_in_ms=480.898) +2020-03-06 10:06:56,409 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded reg.present +2020-03-06 10:06:56,424 [salt.state :1867][INFO ][3160] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:06:56.424577 +2020-03-06 10:06:56,424 [salt.state :1900][INFO ][3160] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:06:57,148 [salt.config :2215][DEBUG ][3160] Missing configuration file: /etc/salt/minion +2020-03-06 10:06:57,165 [salt.config :3612][DEBUG ][3160] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:06:57,313 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:06:57,328 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:06:57,758 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:06:57,773 [salt.loader :1671][DEBUG ][3160] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:06:01,528 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded ddns.update -2020-03-04 12:06:01,528 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded chassis.cmd -2020-03-04 12:06:01,559 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:06:01,575 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:06:01,575 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:06:01,606 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:06:01,768 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded esxi.cmd -2020-03-04 12:06:01,819 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded git.version -2020-03-04 12:06:01,819 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded github.list_users -2020-03-04 12:06:01,834 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded glanceng.image_get -2020-03-04 12:06:01,834 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded elasticsearch.exists -2020-03-04 12:06:01,849 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: grafana_version, ret: _|- -2020-03-04 12:06:01,865 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: grafana_version, ret: _|- -2020-03-04 12:06:01,881 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded icinga2.generate_ticket -2020-03-04 12:06:01,881 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded ifttt.trigger_event -2020-03-04 12:06:01,897 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:06:01,917 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:06:01,917 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:06:01,945 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:06:01,945 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:06:01,962 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:06:01,995 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:06:02,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.domain_get -2020-03-04 12:06:02,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:06:02,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.group_get -2020-03-04 12:06:02,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.project_get -2020-03-04 12:06:02,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.role_get -2020-03-04 12:06:02,026 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.role_grant -2020-03-04 12:06:02,026 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.service_get -2020-03-04 12:06:02,026 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.user_get -2020-03-04 12:06:02,042 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:06:02,073 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:06:02,073 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:06:02,092 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:06:02,126 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:06:02,141 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:06:02,141 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:06:02,141 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:06:02,156 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:06:02,156 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:06:02,172 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded memcached.status -2020-03-04 12:06:02,172 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mongodb.db_exists -2020-03-04 12:06:02,172 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mongodb.user_exists -2020-03-04 12:06:02,172 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:06:02,188 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:06:02,188 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:06:02,188 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:06:02,219 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_networks -2020-03-04 12:06:02,219 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_subnets -2020-03-04 12:06:02,219 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_subnets -2020-03-04 12:06:02,219 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_subnets -2020-03-04 12:06:02,235 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded npm.list -2020-03-04 12:06:02,235 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nxos.cmd -2020-03-04 12:06:02,251 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:06:02,267 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:06:02,283 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded panos.commit -2020-03-04 12:06:02,300 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pdbedit.create -2020-03-04 12:06:02,300 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pecl.list -2020-03-04 12:06:02,620 [pip.vcs :60 ][DEBUG ][4632] Registered VCS backend: git -2020-03-04 12:06:02,683 [pip.vcs :60 ][DEBUG ][4632] Registered VCS backend: hg -2020-03-04 12:06:02,715 [pip.pep425tags :79 ][DEBUG ][4632] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:06:02,715 [pip.pep425tags :79 ][DEBUG ][4632] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:06:02,715 [pip.pep425tags :79 ][DEBUG ][4632] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:06:02,715 [pip.pep425tags :79 ][DEBUG ][4632] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:06:02,886 [pip.vcs :60 ][DEBUG ][4632] Registered VCS backend: svn -2020-03-04 12:06:02,886 [pip.vcs :60 ][DEBUG ][4632] Registered VCS backend: bzr -2020-03-04 12:06:02,980 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:06:02,980 [salt.loader :1577][DEBUG ][4632] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:06:58,676 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt.secret_key, ret: _|- +2020-03-06 10:06:58,676 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt:secret_key, ret: _|- +2020-03-06 10:06:59,856 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet.api_key, ret: _|- +2020-03-06 10:06:59,867 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet:api_key, ret: _|- +2020-03-06 10:07:00,360 [salt.loader :1671][DEBUG ][3160] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:06:02,980 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.cluster_exists -2020-03-04 12:06:02,996 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.user_exists -2020-03-04 12:06:02,996 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.create_extension -2020-03-04 12:06:02,996 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.group_create -2020-03-04 12:06:02,996 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.datadir_init -2020-03-04 12:06:03,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.language_create -2020-03-04 12:06:03,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.privileges_grant -2020-03-04 12:06:03,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.schema_exists -2020-03-04 12:06:03,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.tablespace_exists -2020-03-04 12:06:03,011 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.user_exists -2020-03-04 12:06:03,074 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:06:03,090 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded selinux.getenforce -2020-03-04 12:06:03,106 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded splunk.list_users -2020-03-04 12:06:03,106 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded splunk_search.get -2020-03-04 12:06:03,122 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:06:03,137 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded tomcat.status -2020-03-04 12:06:03,153 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded vagrant.version -2020-03-04 12:06:03,153 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded victorops.create_event -2020-03-04 12:06:03,184 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded win_iis.create_site -2020-03-04 12:06:03,199 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded win_servermanager.install -2020-03-04 12:06:03,199 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:06:03,216 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded wordpress.show_plugin -2020-03-04 12:06:03,216 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded x509.get_pem_entry -2020-03-04 12:06:03,231 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded xmpp.send_msg -2020-03-04 12:06:03,248 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded zk_concurrency.lock -2020-03-04 12:06:03,264 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded zonecfg.create -2020-03-04 12:06:03,264 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded zookeeper.create -2020-03-04 12:06:03,284 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:06:03,284 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:06:03,423 [salt.state :889 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:06:03,454 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded dacl.check_perms -2020-03-04 12:06:03,454 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4632] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:06:03,454 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4632] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:07:00,589 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops.api_key, ret: _|- +2020-03-06 10:07:00,589 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops:api_key, ret: _|- +2020-03-06 10:07:06,862 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad acme.cert: 'acme' __virtual__ returned False: The ACME execution module cannot be loaded: letsencrypt-auto not installed. +2020-03-06 10:07:06,877 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded alternatives.auto +2020-03-06 10:07:06,919 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded apache.config +2020-03-06 10:07:06,932 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded apache.a2enconf +2020-03-06 10:07:06,932 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded apache.a2enmod +2020-03-06 10:07:06,932 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded apache.a2ensite +2020-03-06 10:07:06,953 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:07:06,967 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded at.at +2020-03-06 10:07:06,986 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:07:07,000 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:07:07,000 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:07:07,017 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:07:07,017 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:07:07,032 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded disk.tune +2020-03-06 10:07:07,047 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:07:07,047 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:07:07,063 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:07:07,063 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:07:07,063 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:07:07,080 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_asg.exists +2020-03-06 10:07:07,080 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cfn.exists +2020-03-06 10:07:07,080 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:07:07,095 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:07:07,095 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:07:07,095 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:07:07,095 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:07:07,110 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:07:07,110 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_dynamodb.exists +2020-03-06 10:07:07,127 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_ec2.get_key +2020-03-06 10:07:07,127 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elasticache.exists +2020-03-06 10:07:07,127 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:07:07,143 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elb.exists +2020-03-06 10:07:07,143 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:07:07,158 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_iam.get_user +2020-03-06 10:07:07,158 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_iam.role_exists +2020-03-06 10:07:07,172 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_iot.policy_exists +2020-03-06 10:07:07,172 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_kinesis.exists +2020-03-06 10:07:07,172 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_kms.describe_key +2020-03-06 10:07:07,188 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_lambda.function_exists +2020-03-06 10:07:07,188 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_asg.exists +2020-03-06 10:07:07,188 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_rds.exists +2020-03-06 10:07:07,204 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_route53.get_record +2020-03-06 10:07:07,204 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:07:07,204 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:07:07,221 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_secgroup.exists +2020-03-06 10:07:07,221 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_sns.exists +2020-03-06 10:07:07,221 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_sqs.exists +2020-03-06 10:07:07,238 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_vpc.exists +2020-03-06 10:07:07,238 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded bower.list +2020-03-06 10:07:07,252 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded chef.client +2020-03-06 10:07:07,252 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cimc.get_system_info +2020-03-06 10:07:07,268 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cisconso.set_data_value +2020-03-06 10:07:07,268 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cron.list_tab +2020-03-06 10:07:07,284 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded ddns.update +2020-03-06 10:07:07,284 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded chassis.cmd +2020-03-06 10:07:07,325 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:07:07,335 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:07:07,354 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:07:07,393 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:07:07,408 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded eselect.exec_action +2020-03-06 10:07:07,637 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded esxi.cmd +2020-03-06 10:07:07,702 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded git.version +2020-03-06 10:07:07,717 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded github.list_users +2020-03-06 10:07:07,735 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded glanceng.image_get +2020-03-06 10:07:07,735 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded glusterfs.list_volumes +2020-03-06 10:07:07,749 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded elasticsearch.exists +2020-03-06 10:07:07,764 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: grafana_version, ret: _|- +2020-03-06 10:07:07,764 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: grafana_version, ret: _|- +2020-03-06 10:07:07,800 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded icinga2.generate_ticket +2020-03-06 10:07:07,800 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded ifttt.trigger_event +2020-03-06 10:07:07,817 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:07:07,856 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:07:07,873 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:07:07,886 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:07:07,902 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:07:07,922 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:07:07,957 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded ipset.version +2020-03-06 10:07:07,971 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded iptables.version +2020-03-06 10:07:07,986 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded kapacitor.version +2020-03-06 10:07:07,986 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:07:08,008 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keyboard.get_sys +2020-03-06 10:07:08,008 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystone.auth +2020-03-06 10:07:08,021 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.domain_get +2020-03-06 10:07:08,021 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:07:08,021 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.group_get +2020-03-06 10:07:08,021 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.project_get +2020-03-06 10:07:08,021 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.role_get +2020-03-06 10:07:08,036 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.role_grant +2020-03-06 10:07:08,036 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.service_get +2020-03-06 10:07:08,036 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.user_get +2020-03-06 10:07:08,036 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystore.list +2020-03-06 10:07:08,036 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded kmod.available +2020-03-06 10:07:08,074 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:07:08,074 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded layman.add +2020-03-06 10:07:08,102 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:07:08,121 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded logadm.list_conf +2020-03-06 10:07:08,121 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded logrotate.show_conf +2020-03-06 10:07:08,136 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lvs.get_rules +2020-03-06 10:07:08,136 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lvs.get_rules +2020-03-06 10:07:08,152 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:07:08,152 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:07:08,152 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:07:08,167 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:07:08,167 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded makeconf.get_var +2020-03-06 10:07:08,183 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded memcached.status +2020-03-06 10:07:08,199 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded mongodb.db_exists +2020-03-06 10:07:08,199 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded mongodb.user_exists +2020-03-06 10:07:08,199 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded monit.summary +2020-03-06 10:07:08,263 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_networks +2020-03-06 10:07:08,263 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_subnets +2020-03-06 10:07:08,263 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_subnets +2020-03-06 10:07:08,263 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_subnets +2020-03-06 10:07:08,279 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nftables.version +2020-03-06 10:07:08,294 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded npm.list +2020-03-06 10:07:08,294 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nxos.cmd +2020-03-06 10:07:08,317 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded openvswitch.bridge_create +2020-03-06 10:07:08,317 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded openvswitch.port_add +2020-03-06 10:07:08,331 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded panos.commit +2020-03-06 10:07:08,347 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pdbedit.create +2020-03-06 10:07:08,347 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pecl.list +2020-03-06 10:07:08,855 [pip.vcs :60 ][DEBUG ][3160] Registered VCS backend: git +2020-03-06 10:07:08,950 [pip.vcs :60 ][DEBUG ][3160] Registered VCS backend: hg +2020-03-06 10:07:08,980 [pip.pep425tags :79 ][DEBUG ][3160] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:07:08,996 [pip.pep425tags :79 ][DEBUG ][3160] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:07:08,996 [pip.pep425tags :79 ][DEBUG ][3160] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:07:08,996 [pip.pep425tags :79 ][DEBUG ][3160] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:07:09,156 [pip.vcs :60 ][DEBUG ][3160] Registered VCS backend: svn +2020-03-06 10:07:09,156 [pip.vcs :60 ][DEBUG ][3160] Registered VCS backend: bzr +2020-03-06 10:07:09,267 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:07:09,286 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:07:09,286 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.cluster_exists +2020-03-06 10:07:09,286 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.user_exists +2020-03-06 10:07:09,300 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.create_extension +2020-03-06 10:07:09,300 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.group_create +2020-03-06 10:07:09,300 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.datadir_init +2020-03-06 10:07:09,300 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.language_create +2020-03-06 10:07:09,300 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.privileges_grant +2020-03-06 10:07:09,316 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.schema_exists +2020-03-06 10:07:09,316 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.tablespace_exists +2020-03-06 10:07:09,316 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.user_exists +2020-03-06 10:07:09,337 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded quota.report +2020-03-06 10:07:09,366 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:07:09,382 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:07:09,419 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:07:09,499 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded selinux.getenforce +2020-03-06 10:07:09,534 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:07:09,548 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded snapper.diff +2020-03-06 10:07:09,548 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded splunk.list_users +2020-03-06 10:07:09,548 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded splunk_search.get +2020-03-06 10:07:09,580 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:07:09,612 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded tomcat.status +2020-03-06 10:07:09,628 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded trafficserver.set_config +2020-03-06 10:07:09,628 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded vagrant.version +2020-03-06 10:07:09,644 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded victorops.create_event +2020-03-06 10:07:09,644 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded virt.node_info +2020-03-06 10:07:09,676 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded win_iis.create_site +2020-03-06 10:07:09,706 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded win_servermanager.install +2020-03-06 10:07:09,706 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:07:09,722 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded wordpress.show_plugin +2020-03-06 10:07:09,739 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded x509.get_pem_entry +2020-03-06 10:07:09,739 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded xmpp.send_msg +2020-03-06 10:07:09,802 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded zk_concurrency.lock +2020-03-06 10:07:09,817 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded zonecfg.create +2020-03-06 10:07:09,817 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded zookeeper.create +2020-03-06 10:07:09,839 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:07:09,856 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:07:10,045 [salt.state :906 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:07:10,045 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][3160] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:07:10,045 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3160] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:07:10,060 [salt.loaded.int.utils.win_dacl:1186][ERROR ][3160] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:06:03,454 [salt.state :320 ][INFO ][4632] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions', 'Value': 1, 'Perms': {'Grant': None, 'Deny': None}, 'Owner': None, 'Inheritance': True}}} -2020-03-04 12:06:03,454 [salt.state :1997][INFO ][4632] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:06:03.454367 (duration_in_ms=8052.97) -2020-03-04 12:06:03,470 [salt.state :1819][INFO ][4632] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:06:03.470505 -2020-03-04 12:06:03,470 [salt.state :1852][INFO ][4632] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:06:03,470 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:06:03,470 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' -2020-03-04 12:06:03,635 [salt.state :889 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:06:03,635 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4632] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:06:03,650 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4632] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +2020-03-06 10:07:10,060 [salt.state :320 ][INFO ][3160] {'reg': {'Added': {'Inheritance': True, 'Value': 1, 'Owner': None, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions', 'Perms': {'Grant': None, 'Deny': None}}}} +2020-03-06 10:07:10,060 [salt.state :2045][INFO ][3160] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:07:10.060950 (duration_in_ms=13636.373) +2020-03-06 10:07:10,060 [salt.state :1867][INFO ][3160] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:07:10.060950 +2020-03-06 10:07:10,060 [salt.state :1900][INFO ][3160] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:07:10,093 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:07:10,093 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:07:10,283 [salt.state :906 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:07:10,283 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][3160] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:07:10,283 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3160] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:07:10,283 [salt.loaded.int.utils.win_dacl:1186][ERROR ][3160] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:06:03,650 [salt.state :320 ][INFO ][4632] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions', 'Value': 1, 'Perms': {'Grant': None, 'Deny': None}, 'Owner': None, 'Inheritance': True}}} -2020-03-04 12:06:03,650 [salt.state :1997][INFO ][4632] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:06:03.650662 (duration_in_ms=180.157) -2020-03-04 12:06:03,650 [salt.state :1819][INFO ][4632] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:06:03.650662 -2020-03-04 12:06:03,650 [salt.state :1852][INFO ][4632] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] -2020-03-04 12:06:03,650 [salt.utils.http :234 ][DEBUG ][4632] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method -2020-03-04 12:06:03,650 [salt.utils.http :235 ][DEBUG ][4632] Using backend: tornado -2020-03-04 12:06:04,205 [salt.loaded.int.states.archive:976 ][DEBUG ][4632] file.cached: {'result': True, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip'} -2020-03-04 12:06:04,205 [salt.loaded.int.states.archive:91 ][DEBUG ][4632] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:06:04,205 [salt.loaded.int.states.archive:996 ][DEBUG ][4632] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected -2020-03-04 12:06:04,243 [salt.loaded.int.module.win_file:1463][DEBUG ][4632] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win -2020-03-04 12:06:04,262 [salt.loaded.int.module.win_file:1463][DEBUG ][4632] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -2020-03-04 12:06:04,262 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4632] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:06:04,262 [salt.loaded.int.states.archive:1247][DEBUG ][4632] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:06:04,436 [salt.loaded.int.states.archive:1543][DEBUG ][4632] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:06:04,453 [salt.state :320 ][INFO ][4632] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} -2020-03-04 12:06:04,453 [salt.state :1997][INFO ][4632] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:06:04.453953 (duration_in_ms=803.291) -2020-03-04 12:06:04,453 [salt.state :1819][INFO ][4632] Running state [rename-extract] at time 12:06:04.453953 -2020-03-04 12:06:04,453 [salt.state :1852][INFO ][4632] Executing state module.run for [rename-extract] -2020-03-04 12:06:04,453 [salt.state :320 ][INFO ][4632] {'file.rename': True} -2020-03-04 12:06:04,453 [salt.state :1997][INFO ][4632] Completed state [rename-extract] at time 12:06:04.453953 (duration_in_ms=0.0) -2020-03-04 12:06:04,453 [salt.state :1819][INFO ][4632] Running state [pkg.refresh_db] at time 12:06:04.453953 -2020-03-04 12:06:04,453 [salt.state :1852][INFO ][4632] Executing state module.run for [pkg.refresh_db] -2020-03-04 12:06:04,453 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4632] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:18.723247) -2020-03-04 12:06:04,453 [salt.loaded.int.module.win_pkg:935 ][INFO ][4632] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:06:04,453 [salt.loaded.int.module.win_pkg:954 ][INFO ][4632] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:06:04,453 [salt.fileclient :234 ][INFO ][4632] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:06:04,596 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:06:04,596 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:06:04,596 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:06:04,611 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,611 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:06:04,611 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:06:04,611 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:06:04,611 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:06:04,611 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,628 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,628 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:06:04,628 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,644 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,644 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:06:04,644 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,660 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,660 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:06:04,660 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,676 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,676 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:06:04,676 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,692 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,692 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:06:04,692 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,692 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,708 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:06:04,708 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,708 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,724 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:06:04,724 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,724 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,741 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,741 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:06:04,741 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,758 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,758 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:06:04,758 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,775 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,775 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:06:04,775 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,791 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,791 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:06:04,791 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,806 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,806 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:06:04,806 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,822 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,822 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:06:04,822 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,822 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,838 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,838 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:06:04,838 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,854 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,854 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:06:04,854 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,870 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,870 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:06:04,870 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,886 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,886 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:06:04,886 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,903 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,903 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:06:04,903 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,919 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,919 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:06:04,919 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,935 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,935 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:06:04,935 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,951 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,951 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:06:04,951 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,966 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,966 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:06:04,966 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,982 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,982 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:06:04,982 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,999 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:04,999 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:06:04,999 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,016 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,016 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:06:05,016 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,032 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,032 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:06:05,032 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,048 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,048 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:06:05,048 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,064 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,064 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:06:05,064 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,080 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,080 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:06:05,080 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,096 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,096 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:06:05,096 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,112 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,112 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:06:05,112 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,129 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,129 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:06:05,129 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,145 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,145 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:06:05,145 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,168 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:06:05,168 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:06:05,168 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:06:05,168 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:06:05,168 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,168 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,181 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:06:05,181 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,197 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,197 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:06:05,197 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,212 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:06:05,212 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:06:05,212 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:06:05,212 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:06:05,212 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,212 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:06:05,212 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:06:05,212 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:06:05,212 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:06:05,229 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,229 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:06:05,229 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:06:05,229 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:06:05,229 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:06:05,229 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,229 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,245 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:06:05,245 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,261 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,261 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:06:05,261 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,277 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,277 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:06:05,277 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,294 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,294 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:06:05,294 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,327 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:06:05,327 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:06:05,327 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:06:05,327 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:06:05,327 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,327 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:06:05,343 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:06:05,343 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:06:05,343 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:06:05,343 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,343 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:06:05,343 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:06:05,360 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:06:05,360 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:06:05,360 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,360 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:06:05,360 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:06:05,360 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:06:05,360 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:06:05,360 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,360 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,376 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:06:05,376 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,376 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,393 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:06:05,393 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,393 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,410 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:06:05,410 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,427 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,427 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:06:05,427 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,443 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,443 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:06:05,443 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,459 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:06:05,459 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:06:05,459 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:06:05,459 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:06:05,459 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,459 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:06:05,459 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:06:05,459 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:06:05,475 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:06:05,475 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,475 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:06:05,475 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:06:05,475 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:06:05,475 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:06:05,475 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,475 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:06:05,475 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,491 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,491 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:06:05,491 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:06:05,508 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:06:05,508 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:06:05,508 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,508 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:06:05,508 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:06:05,508 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:06:05,508 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:06:05,508 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,508 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,524 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:06:05,524 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,524 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,541 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:06:05,541 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,541 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,557 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:06:05,557 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,557 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,574 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:06:05,574 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,589 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,589 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:06:05,589 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,605 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:06:05,605 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:06:05,605 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:06:05,605 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:06:05,605 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,605 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:06:05,605 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:06:05,605 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:06:05,605 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:06:05,621 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,621 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:06:05,621 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:06:05,621 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:06:05,621 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:06:05,621 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,621 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:06:05,621 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:06:05,621 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:06:05,638 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:06:05,638 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,638 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:06:05,638 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:06:05,638 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:06:05,638 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:06:05,638 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,638 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,653 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:06:05,653 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,669 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,669 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:06:05,669 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,685 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:06:05,685 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:06:05,685 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:06:05,685 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:06:05,685 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,685 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:06:05,685 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:06:05,700 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:06:05,700 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:06:05,700 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,700 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:06:05,700 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:06:05,700 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:06:05,700 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:06:05,700 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,700 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,717 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:06:05,717 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,733 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,733 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:06:05,733 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,749 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:06:05,749 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,749 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,749 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,749 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,749 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,749 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,749 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,764 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,764 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:06:05,764 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:06:05,781 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:06:05,781 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,781 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:06:05,781 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:06:05,781 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:06:05,781 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:06:05,781 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,781 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:06:05,781 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,798 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,798 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:06:05,798 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,815 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,815 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,815 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,832 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,832 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,832 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,832 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:06:05,832 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:06:05,832 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:06:05,832 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,832 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:06:05,832 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,849 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,849 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:06:05,849 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:06:05,866 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:06:05,866 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:06:05,866 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,866 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:06:05,866 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:06:05,866 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:06:05,866 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:06:05,866 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,866 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,883 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:06:05,883 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,899 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,899 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:06:05,899 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,915 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:06:05,915 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:06:05,915 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:06:05,915 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:06:05,915 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,915 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:06:05,915 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:06:05,915 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:06:05,915 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:06:05,931 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,931 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:06:05,931 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:06:05,931 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:06:05,931 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:06:05,931 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,931 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:06:05,931 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:06:05,931 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:06:05,947 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:06:05,947 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,947 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:06:05,947 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:06:05,947 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:06:05,947 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:06:05,947 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,947 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,963 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:06:05,963 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,978 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,978 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:06:05,978 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,994 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:05,994 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:06:05,994 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,011 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:06:06,011 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:06:06,011 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:06:06,011 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:06:06,011 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,011 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:06:06,011 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:06:06,028 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:06:06,028 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:06:06,028 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,028 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:06:06,028 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:06:06,028 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:06:06,028 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:06:06,028 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,028 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,044 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:06:06,044 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,060 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:06:06,060 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:06:06,060 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:06:06,060 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:06:06,060 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,060 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:06:06,060 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:06:06,060 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:06:06,060 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:06:06,076 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,076 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:06:06,076 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:06:06,076 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:06:06,076 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:06:06,076 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,076 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:06:06,076 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:06:06,076 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:06:06,093 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:06:06,093 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,093 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:06:06,093 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:06:06,093 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:06:06,093 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:06:06,093 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,093 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:06:06,093 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:06:06,110 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:06:06,110 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:06:06,110 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,110 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:06:06,110 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:06:06,110 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:06:06,110 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:06:06,110 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,110 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,126 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:06:06,126 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,143 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,143 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:06:06,143 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,159 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:06:06,159 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:06:06,159 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:06:06,159 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:06:06,159 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,159 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,176 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:06:06,176 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,194 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:06:06,194 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:06:06,194 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:06:06,194 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:06:06,194 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,194 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:06:06,194 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:06:06,194 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:06:06,209 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:06:06,209 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,209 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:06:06,209 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:06:06,209 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:06:06,209 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:06:06,209 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,224 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:06:06,224 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:06:06,224 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:06:06,224 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:06:06,224 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,224 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:06:06,224 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:06:06,224 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:06:06,224 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:06:06,240 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,240 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:06:06,240 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:06:06,240 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:06:06,240 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:06:06,240 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,240 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:06:06,240 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:06:06,240 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:06:06,257 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:06:06,257 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,257 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:06:06,257 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:06:06,257 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:06:06,257 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:06:06,257 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,257 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,273 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:06:06,273 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,273 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,289 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:06:06,289 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,307 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:06:06,307 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:06:06,307 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:06:06,307 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:06:06,307 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,307 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:06:06,307 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:06:06,307 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:06:06,307 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:06:06,322 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,322 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:06:06,322 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:06:06,322 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:06:06,322 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:06:06,322 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,322 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,338 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:06:06,338 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,354 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,354 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:06:06,354 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,370 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:06:06,370 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:06:06,370 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:06:06,370 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:06:06,370 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,370 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:06:06,370 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,387 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,387 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:06:06,387 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:06:06,404 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:06:06,404 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:06:06,404 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,404 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:06:06,404 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:06:06,404 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:06:06,404 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:06:06,404 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,404 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,421 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:06:06,421 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,438 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,438 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:06:06,438 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,454 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,454 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:06:06,454 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,470 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:06:06,470 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:06:06,470 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:06:06,470 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:06:06,470 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,470 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:06:06,470 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:06:06,470 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:06:06,470 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,487 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,487 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:06:06,487 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:06:06,504 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,504 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:06:06,504 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:06:06,504 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:06:06,504 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:06:06,504 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,504 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:06:06,504 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:06:06,520 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:06:06,520 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:06:06,520 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,520 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:06:06,520 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:06:06,520 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:06:06,520 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:06:06,520 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,520 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,536 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:06:06,536 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,552 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,552 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:06:06,552 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,569 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,569 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:06:06,569 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,586 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:06:06,586 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:06:06,586 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:06:06,586 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:06:06,586 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,586 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:06:06,586 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:06:06,586 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:06:06,602 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:06:06,602 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,602 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:06:06,602 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:06:06,602 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:06:06,602 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:06:06,602 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,602 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,618 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:06:06,618 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,618 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,635 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:06:06,635 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,651 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,651 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:06:06,651 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,667 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:06:06,667 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:06:06,667 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:06:06,667 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:06:06,667 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,667 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:06:06,667 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:06:06,667 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,684 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,684 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:06:06,684 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,701 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,701 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:06:06,701 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:06:06,718 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:06:06,718 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,718 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:06:06,718 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:06:06,718 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:06:06,718 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:06:06,718 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,718 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,734 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:06:06,734 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,734 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,752 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:06:06,752 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,768 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,768 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:06:06,768 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,785 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,785 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:06:06,785 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,802 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:06:06,802 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:06:06,802 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:06:06,802 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:06:06,802 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,802 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:06:06,802 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:06:06,802 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:06:06,817 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:06:06,817 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,817 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:06:06,817 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:06:06,817 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:06:06,817 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:06:06,817 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,817 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:06:06,833 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:06:06,833 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:06:06,833 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:06:06,833 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,833 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,849 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:06:06,849 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,866 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,866 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:06:06,866 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,883 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:06:06,883 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:06:06,883 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:06:06,883 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:06:06,883 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,883 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:06:06,883 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:06:06,883 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:06:06,883 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:06:06,900 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,900 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:06:06,900 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:06:06,900 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:06:06,900 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:06:06,900 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,900 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:06:06,900 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:06:06,900 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:06:06,916 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:06:06,916 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,916 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:06:06,916 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:06:06,916 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:06:06,916 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:06:06,916 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,916 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:06:06,916 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:06:06,933 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:06:06,933 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:06:06,933 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,933 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:06:06,933 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:06:06,933 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:06:06,933 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:06:06,933 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,933 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,950 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:06:06,950 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,966 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,966 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:06:06,966 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,981 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,981 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:06:06,981 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,997 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:06:06,997 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:06:06,997 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:06:06,997 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:06:06,997 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:06,997 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:06:06,997 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:06:06,997 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:06:07,014 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:06:07,014 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,014 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:06:07,014 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:06:07,014 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:06:07,014 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:06:07,014 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,014 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,031 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:06:07,031 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,048 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,048 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:06:07,048 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,064 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:06:07,064 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:06:07,064 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:06:07,064 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:06:07,064 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,064 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:06:07,064 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:06:07,064 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:06:07,064 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:06:07,080 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,080 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:06:07,080 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:06:07,080 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:06:07,080 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:06:07,080 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,080 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:06:07,080 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:06:07,095 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:06:07,095 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:06:07,095 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,095 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:06:07,095 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:06:07,095 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:06:07,095 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:06:07,095 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,111 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,111 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:06:07,111 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,126 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:06:07,126 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:06:07,126 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:06:07,126 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:06:07,126 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,126 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:06:07,126 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:06:07,126 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:06:07,142 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:06:07,142 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,142 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:06:07,142 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:06:07,142 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:06:07,142 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:06:07,142 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,142 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:06:07,159 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:06:07,159 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:06:07,159 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:06:07,159 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,159 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:06:07,175 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:06:07,175 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:06:07,175 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:06:07,175 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,175 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:06:07,175 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:06:07,175 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:06:07,175 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:06:07,191 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,191 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:06:07,191 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:06:07,191 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:06:07,191 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:06:07,191 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,206 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:06:07,206 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:06:07,206 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:06:07,206 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:06:07,206 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,206 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:06:07,206 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:06:07,206 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:06:07,206 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:06:07,222 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,222 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:06:07,222 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:06:07,222 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:06:07,222 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:06:07,222 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,222 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,238 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:06:07,238 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,255 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:06:07,255 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:06:07,255 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:06:07,255 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:06:07,255 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,255 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:06:07,255 [salt.fileclient :1093][DEBUG ][4632] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:06:07,272 [salt.fileclient :1101][DEBUG ][4632] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:06:07,272 [salt.fileclient :1121][DEBUG ][4632] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:06:07,272 [salt.fileclient :1149][DEBUG ][4632] No dest file found -2020-03-04 12:06:07,272 [salt.fileclient :1230][INFO ][4632] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:06:07,272 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,272 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,272 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls -2020-03-04 12:06:07,272 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,288 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.016752004623413086 -2020-03-04 12:06:07,288 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +2020-03-06 10:07:10,283 [salt.state :320 ][INFO ][3160] {'reg': {'Added': {'Inheritance': True, 'Value': 1, 'Owner': None, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions', 'Perms': {'Grant': None, 'Deny': None}}}} +2020-03-06 10:07:10,283 [salt.state :2045][INFO ][3160] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:07:10.283511 (duration_in_ms=222.561) +2020-03-06 10:07:10,299 [salt.state :1867][INFO ][3160] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:07:10.299023 +2020-03-06 10:07:10,299 [salt.state :1900][INFO ][3160] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:07:10,299 [salt.utils.http :234 ][DEBUG ][3160] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:07:10,299 [salt.utils.http :235 ][DEBUG ][3160] Using backend: tornado +2020-03-06 10:07:10,870 [salt.loaded.int.states.archive:1039][DEBUG ][3160] file.cached: {'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'result': True} +2020-03-06 10:07:10,870 [salt.loaded.int.states.archive:91 ][DEBUG ][3160] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:07:10,885 [salt.loaded.int.states.archive:1059][DEBUG ][3160] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:07:10,917 [salt.loaded.int.module.win_file:1463][DEBUG ][3160] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:07:10,940 [salt.loaded.int.module.win_file:1463][DEBUG ][3160] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:07:10,940 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3160] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:07:10,940 [salt.loaded.int.states.archive:1344][DEBUG ][3160] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:07:11,126 [salt.loaded.int.states.archive:1643][DEBUG ][3160] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:07:11,126 [salt.state :320 ][INFO ][3160] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} +2020-03-06 10:07:11,126 [salt.state :2045][INFO ][3160] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:07:11.126715 (duration_in_ms=827.692) +2020-03-06 10:07:11,126 [salt.state :1867][INFO ][3160] Running state [rename-extract] at time 10:07:11.126715 +2020-03-06 10:07:11,126 [salt.state :1900][INFO ][3160] Executing state module.run for [rename-extract] +2020-03-06 10:07:11,126 [salt.state :320 ][INFO ][3160] {'file.rename': True} +2020-03-06 10:07:11,126 [salt.state :2045][INFO ][3160] Completed state [rename-extract] at time 10:07:11.126715 (duration_in_ms=0.0) +2020-03-06 10:07:11,126 [salt.state :1867][INFO ][3160] Running state [pkg.refresh_db] at time 10:07:11.126715 +2020-03-06 10:07:11,126 [salt.state :1900][INFO ][3160] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:07:11,126 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][3160] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:24.498800) +2020-03-06 10:07:11,143 [salt.loaded.int.module.win_pkg:939 ][INFO ][3160] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:07:11,143 [salt.loaded.int.module.win_pkg:958 ][INFO ][3160] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:07:11,143 [salt.fileclient :234 ][INFO ][3160] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:07:11,299 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:07:11,299 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:07:11,299 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:07:11,299 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,312 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:07:11,312 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:07:11,312 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:07:11,312 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:07:11,312 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,312 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:07:11,312 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:07:11,312 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:07:11,328 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:07:11,328 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,328 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:07:11,328 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:07:11,328 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:07:11,328 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:07:11,344 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,344 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:07:11,344 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:07:11,344 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:07:11,344 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:07:11,344 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,360 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:07:11,360 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:07:11,376 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:07:11,376 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:07:11,376 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,376 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:07:11,376 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:07:11,376 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:07:11,376 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:07:11,376 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,392 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,392 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:07:11,392 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,408 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,408 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:07:11,408 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,424 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,424 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:07:11,424 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,440 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,440 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:07:11,440 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,457 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,457 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:07:11,457 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,473 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,473 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:07:11,473 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,489 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,489 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:07:11,489 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,505 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,505 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:07:11,505 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,521 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,521 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:07:11,521 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,521 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,538 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:07:11,538 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,555 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,555 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:07:11,555 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,570 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:07:11,570 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:07:11,570 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:07:11,586 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:07:11,586 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,586 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:07:11,586 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:07:11,586 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:07:11,586 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:07:11,586 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,586 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,603 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:07:11,603 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,603 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,620 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:07:11,620 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,620 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,636 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:07:11,636 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,636 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,652 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:07:11,652 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,668 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:07:11,668 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:07:11,668 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:07:11,668 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:07:11,668 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,668 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:07:11,668 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:07:11,668 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:07:11,668 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:07:11,685 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,685 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:07:11,685 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:07:11,685 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:07:11,685 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:07:11,685 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,685 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:07:11,685 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:07:11,685 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:07:11,702 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:07:11,702 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,702 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:07:11,702 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:07:11,702 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:07:11,702 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:07:11,702 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,702 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,717 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:07:11,717 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,733 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,733 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:07:11,733 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,748 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,748 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:07:11,748 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,765 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,765 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:07:11,765 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,783 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:07:11,783 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:07:11,783 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:07:11,783 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:07:11,783 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,783 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:07:11,783 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:07:11,783 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:07:11,783 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:07:11,798 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,798 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:07:11,798 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:07:11,798 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:07:11,798 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:07:11,798 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,798 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,815 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:07:11,815 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,830 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,830 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:07:11,830 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,847 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,847 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:07:11,847 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,863 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:07:11,863 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:07:11,863 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:07:11,863 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:07:11,863 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,863 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:07:11,863 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:07:11,879 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:07:11,879 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:07:11,879 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,879 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:07:11,879 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:07:11,879 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:07:11,879 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:07:11,879 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,896 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:07:11,896 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:07:11,896 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:07:11,896 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:07:11,896 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,896 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,912 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:07:11,912 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,927 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:07:11,927 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:07:11,927 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:07:11,927 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:07:11,927 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,927 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:07:11,927 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:07:11,927 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:07:11,943 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:07:11,943 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,943 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:07:11,943 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:07:11,943 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:07:11,943 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:07:11,943 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,943 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,961 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:07:11,961 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,961 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,978 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:07:11,978 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,995 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:11,995 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:07:11,995 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,012 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:07:12,012 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:07:12,012 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:07:12,012 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:07:12,012 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,012 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,027 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:07:12,027 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,043 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:07:12,043 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:07:12,043 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:07:12,043 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:07:12,043 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,043 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:07:12,043 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:07:12,043 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:07:12,043 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:07:12,059 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,059 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:07:12,059 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:07:12,059 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:07:12,059 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:07:12,059 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,059 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:07:12,059 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:07:12,075 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:07:12,075 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:07:12,075 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,075 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:07:12,075 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:07:12,075 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:07:12,075 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:07:12,075 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,075 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,092 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:07:12,092 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,109 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,109 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:07:12,109 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,126 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:07:12,126 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:07:12,126 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:07:12,126 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:07:12,126 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,126 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,143 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:07:12,143 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,160 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,160 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:07:12,160 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,176 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:07:12,176 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:07:12,176 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:07:12,176 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:07:12,176 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,176 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:07:12,176 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:07:12,176 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:07:12,193 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:07:12,193 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,193 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:07:12,193 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:07:12,193 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:07:12,193 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:07:12,193 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,193 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,210 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:07:12,210 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,227 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,227 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:07:12,227 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,245 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:07:12,245 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:07:12,245 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:07:12,245 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:07:12,245 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,245 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,262 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:07:12,262 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,278 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:07:12,278 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:07:12,278 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:07:12,278 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:07:12,278 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,278 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:07:12,278 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:07:12,294 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:07:12,294 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:07:12,294 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,294 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:07:12,294 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:07:12,294 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:07:12,294 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:07:12,294 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,310 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,310 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:07:12,310 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,328 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:07:12,328 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:07:12,328 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:07:12,328 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:07:12,328 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,328 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:07:12,354 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:07:12,354 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:07:12,354 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:07:12,354 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,354 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:07:12,373 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:07:12,373 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:07:12,373 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:07:12,373 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,373 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:07:12,373 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:07:12,373 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:07:12,373 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:07:12,388 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,388 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:07:12,388 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:07:12,388 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:07:12,388 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:07:12,388 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,405 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:07:12,405 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:07:12,405 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:07:12,405 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:07:12,405 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,422 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:07:12,422 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:07:12,422 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:07:12,422 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:07:12,422 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,422 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:07:12,438 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:07:12,438 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:07:12,438 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:07:12,438 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,438 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:07:12,438 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:07:12,454 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:07:12,454 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:07:12,454 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,454 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:07:12,454 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:07:12,470 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:07:12,470 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:07:12,470 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,470 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:07:12,470 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:07:12,470 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:07:12,486 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:07:12,486 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,486 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:07:12,486 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:07:12,486 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:07:12,486 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:07:12,502 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,502 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:07:12,502 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:07:12,502 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:07:12,518 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:07:12,518 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,518 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:07:12,518 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:07:12,518 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:07:12,518 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:07:12,533 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,533 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:07:12,533 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:07:12,533 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:07:12,533 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:07:12,533 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,549 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:07:12,549 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:07:12,549 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:07:12,549 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:07:12,549 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,567 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:07:12,567 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:07:12,567 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:07:12,567 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:07:12,567 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,567 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:07:12,567 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:07:12,582 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:07:12,582 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:07:12,582 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,582 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:07:12,582 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:07:12,582 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:07:12,582 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:07:12,582 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,598 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:07:12,598 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:07:12,598 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:07:12,598 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:07:12,598 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,598 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:07:12,598 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:07:12,598 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:07:12,598 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:07:12,614 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,614 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:07:12,614 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:07:12,614 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:07:12,614 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:07:12,614 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,614 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,630 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:07:12,630 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,646 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:07:12,646 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:07:12,646 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:07:12,646 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:07:12,646 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,646 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:07:12,646 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,646 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,664 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,664 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,664 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,664 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,664 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,664 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,680 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,680 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,701 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:07:12,701 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:07:12,701 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:07:12,701 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,701 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:07:12,717 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:07:12,717 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:07:12,717 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:07:12,717 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,717 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:07:12,717 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:07:12,717 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:07:12,732 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:07:12,732 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,732 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:07:12,732 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:07:12,732 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:07:12,732 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:07:12,732 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,732 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,748 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:07:12,748 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,765 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:07:12,765 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,765 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,765 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,765 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,765 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:07:12,765 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,765 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,765 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,782 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,782 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,782 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:07:12,782 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:07:12,782 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:07:12,782 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,782 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:07:12,798 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,798 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,798 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,798 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,798 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:07:12,798 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:07:12,798 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:07:12,798 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:07:12,815 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,815 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:07:12,815 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:07:12,815 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:07:12,815 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:07:12,815 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,815 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:07:12,831 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:07:12,831 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:07:12,831 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:07:12,831 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,831 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:07:12,831 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:07:12,831 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:07:12,831 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:07:12,847 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,847 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:07:12,847 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:07:12,871 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:07:12,871 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:07:12,871 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,871 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:07:12,871 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:07:12,871 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:07:12,871 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:07:12,871 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,887 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:07:12,887 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:07:12,887 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:07:12,887 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:07:12,887 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,887 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:07:12,887 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:07:12,887 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:07:12,903 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:07:12,903 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,903 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:07:12,903 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:07:12,903 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:07:12,903 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:07:12,903 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,903 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:07:12,903 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:07:12,920 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:07:12,920 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:07:12,920 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,920 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:07:12,920 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:07:12,920 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:07:12,920 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:07:12,920 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,920 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,936 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:07:12,936 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,952 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:07:12,952 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:07:12,952 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:07:12,952 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:07:12,952 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,952 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:07:12,952 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:07:12,952 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:07:12,967 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:07:12,967 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,967 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:07:12,967 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:07:12,967 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:07:12,967 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:07:12,967 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,967 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:12,984 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:07:12,984 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,001 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:07:13,001 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:07:13,001 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:07:13,001 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:07:13,001 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,001 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:07:13,001 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:07:13,001 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:07:13,001 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:07:13,018 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,018 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:07:13,018 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:07:13,018 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:07:13,018 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:07:13,018 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,018 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,034 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:07:13,034 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,034 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,051 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:07:13,051 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,067 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,067 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:07:13,067 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,083 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,083 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:07:13,083 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,100 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:07:13,100 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:07:13,100 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:07:13,100 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:07:13,100 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,100 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,116 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:07:13,116 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,132 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:07:13,132 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:07:13,132 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:07:13,132 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:07:13,132 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,132 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:07:13,132 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:07:13,132 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:07:13,132 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:07:13,147 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,147 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:07:13,147 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:07:13,147 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:07:13,147 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:07:13,147 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,147 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:07:13,147 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:07:13,147 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:07:13,164 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:07:13,164 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,164 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:07:13,164 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:07:13,164 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:07:13,164 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:07:13,164 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,164 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,189 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:07:13,189 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,205 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,205 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:07:13,205 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,221 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:07:13,221 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:07:13,221 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:07:13,221 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:07:13,221 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,221 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:07:13,221 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:07:13,221 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:07:13,221 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:07:13,237 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,237 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:07:13,237 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:07:13,237 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:07:13,237 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:07:13,237 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,237 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:07:13,237 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:07:13,237 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:07:13,253 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:07:13,253 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,253 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:07:13,253 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:07:13,253 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:07:13,253 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:07:13,253 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,269 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,269 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:07:13,269 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,285 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:07:13,285 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:07:13,285 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:07:13,285 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:07:13,285 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,285 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:07:13,285 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:07:13,300 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:07:13,300 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:07:13,300 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,300 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:07:13,300 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:07:13,300 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:07:13,300 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:07:13,300 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,300 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,316 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:07:13,316 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,316 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,333 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:07:13,333 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,350 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,350 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:07:13,350 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,366 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,366 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:07:13,366 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,382 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:07:13,382 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:07:13,382 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:07:13,382 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:07:13,382 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,382 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:07:13,382 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:07:13,382 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:07:13,398 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:07:13,398 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,398 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:07:13,398 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:07:13,398 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:07:13,398 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:07:13,398 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,413 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,413 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:07:13,413 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,430 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:07:13,430 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:07:13,430 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:07:13,430 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:07:13,430 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,430 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:07:13,430 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:07:13,430 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:07:13,447 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:07:13,447 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,447 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:07:13,447 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:07:13,447 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:07:13,447 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:07:13,447 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,447 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:07:13,447 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:07:13,463 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:07:13,463 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:07:13,463 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,463 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:07:13,463 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:07:13,463 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:07:13,463 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:07:13,463 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,463 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,479 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:07:13,479 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,495 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,495 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:07:13,495 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,512 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:07:13,512 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:07:13,512 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:07:13,512 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:07:13,512 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,512 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:07:13,512 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:07:13,512 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:07:13,512 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:07:13,528 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,528 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:07:13,528 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:07:13,528 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:07:13,528 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:07:13,528 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,528 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:07:13,528 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,544 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,544 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:07:13,544 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:07:13,561 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:07:13,561 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,561 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:07:13,561 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:07:13,561 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:07:13,561 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:07:13,561 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,561 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:07:13,561 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,577 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,577 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:07:13,577 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,594 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,594 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:07:13,594 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:07:13,611 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:07:13,611 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:07:13,611 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,611 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:07:13,611 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:07:13,611 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:07:13,611 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:07:13,611 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,611 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,627 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:07:13,627 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,642 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,642 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:07:13,642 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,658 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:07:13,658 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:07:13,658 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:07:13,658 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:07:13,658 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,658 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:07:13,658 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:07:13,658 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:07:13,658 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:07:13,674 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,674 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:07:13,674 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:07:13,674 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:07:13,674 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:07:13,674 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,674 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:07:13,674 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:07:13,674 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:07:13,690 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:07:13,690 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,690 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:07:13,690 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:07:13,690 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:07:13,690 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:07:13,690 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,705 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:07:13,705 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:07:13,705 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:07:13,705 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:07:13,705 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,705 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:07:13,705 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:07:13,705 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:07:13,721 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:07:13,721 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,721 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:07:13,721 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:07:13,721 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:07:13,721 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:07:13,721 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,721 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:07:13,721 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:07:13,737 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:07:13,737 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:07:13,737 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,737 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:07:13,737 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:07:13,737 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:07:13,737 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:07:13,737 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,737 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,753 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:07:13,753 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,753 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:07:13,769 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:07:13,769 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:07:13,769 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:07:13,769 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,769 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:07:13,769 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:07:13,785 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:07:13,785 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:07:13,785 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,785 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:07:13,785 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:07:13,785 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:07:13,785 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:07:13,785 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,801 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,801 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:07:13,801 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,817 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,817 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:07:13,817 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,834 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,834 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:07:13,834 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,851 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:07:13,851 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:07:13,851 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:07:13,851 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:07:13,851 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,868 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:07:13,868 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:07:13,868 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:07:13,868 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:07:13,868 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,868 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:07:13,868 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:07:13,868 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,884 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,884 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:07:13,884 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,901 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,901 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:07:13,901 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,918 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,918 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:07:13,918 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:07:13,934 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:07:13,934 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,934 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:07:13,934 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:07:13,934 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:07:13,934 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:07:13,934 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,934 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,950 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:07:13,950 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,950 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,966 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:07:13,966 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,966 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,982 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:07:13,982 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,982 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:13,999 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:07:13,999 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,015 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,015 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:07:14,015 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,032 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,032 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:07:14,032 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,049 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:07:14,049 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:07:14,049 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:07:14,049 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:07:14,049 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,049 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:07:14,049 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:07:14,049 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:07:14,049 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,066 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,066 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:07:14,066 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:07:14,083 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,083 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:07:14,083 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:07:14,083 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:07:14,083 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:07:14,083 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,083 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:07:14,083 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:07:14,083 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:07:14,099 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:07:14,099 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,099 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:07:14,099 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:07:14,099 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:07:14,099 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:07:14,099 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,099 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:07:14,099 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,115 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,115 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:07:14,115 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,132 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,132 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:07:14,132 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:07:14,148 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,148 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:07:14,148 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:07:14,148 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:07:14,148 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:07:14,148 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,148 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:07:14,148 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,164 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,164 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:07:14,164 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,179 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,179 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:07:14,179 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,196 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,196 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:07:14,196 [salt.fileclient :1101][DEBUG ][3160] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:07:14,212 [salt.fileclient :1109][DEBUG ][3160] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:07:14,212 [salt.fileclient :1129][DEBUG ][3160] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:07:14,212 [salt.fileclient :1157][DEBUG ][3160] No dest file found +2020-03-06 10:07:14,212 [salt.fileclient :1238][INFO ][3160] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:07:14,212 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,212 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,212 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:07:14,228 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,228 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.01607203483581543 +2020-03-06 10:07:14,228 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -3409,11 +3295,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a 7zip: - '16.04.00.0': + '19.00.00.0': - full_name: '7-Zip 16.04 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1604-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3422,11 +3308,13 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.03.00.0': + + + '18.06.00.0': - full_name: '7-Zip 16.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1603-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3435,11 +3323,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.02.00.0': + '18.05.00.0': - full_name: '7-Zip 16.02 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1602-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3448,11 +3336,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.00.00.0': + '18.03.00.0': - full_name: '7-Zip 16.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1600-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3461,13 +3349,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - - - '18.06.00.0': + '18.01.00.0': - full_name: '7-Zip 18.06 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1806-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3476,11 +3362,13 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.05.00.0': + + + '16.04.00.0': - full_name: '7-Zip 18.05 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1805-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3489,11 +3377,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.03.00.0': + '16.03.00.0': - full_name: '7-Zip 18.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1803-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3502,11 +3390,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.01.00.0': + '16.02.00.0': - full_name: '7-Zip 18.01 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1801-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3515,13 +3403,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - - - '19.00.00.0': + '16.00.00.0': - full_name: '7-Zip 19.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1900-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3532,15 +3418,15 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a -2020-03-04 12:06:07,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: -OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,288 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,288 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,305 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,305 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls -2020-03-04 12:06:07,305 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,305 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,305 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +2020-03-06 10:07:14,228 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:07:14,228 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,228 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,245 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,245 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:07:14,245 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,245 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,245 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: activeperl_x64: '5.22.4': @@ -3574,15 +3460,15 @@ activeperl_x64: reboot: False -2020-03-04 12:06:07,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,245 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,305 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,321 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,321 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,321 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls -2020-03-04 12:06:07,321 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,321 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,321 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +2020-03-06 10:07:14,245 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,262 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,262 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,262 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:07:14,262 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,262 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,262 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: activeperl_x86: '5.22.4': @@ -3598,15 +3484,15 @@ activeperl_x86: reboot: False -2020-03-04 12:06:07,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,262 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,336 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.01476144790649414 -2020-03-04 12:06:07,336 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,336 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,336 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls -2020-03-04 12:06:07,336 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,336 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,336 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +2020-03-06 10:07:14,277 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.015915393829345703 +2020-03-06 10:07:14,277 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,277 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,277 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:07:14,277 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,277 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,277 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: adobeair: latest: full_name: 'Adobe AIR' @@ -3627,15 +3513,15 @@ adobeair: locale: en_US reboot: False -2020-03-04 12:06:07,336 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,277 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,336 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,336 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,336 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,352 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls -2020-03-04 12:06:07,352 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,352 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,352 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +2020-03-06 10:07:14,277 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,293 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,293 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,293 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:07:14,293 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,293 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,293 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: # to understand what is meant by "classic" see # http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html @@ -3829,15 +3715,15 @@ adobereader-dc-classic: reboot: False -2020-03-04 12:06:07,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,367 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.015533924102783203 -2020-03-04 12:06:07,367 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,367 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,367 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls -2020-03-04 12:06:07,367 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,367 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,367 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +2020-03-06 10:07:14,309 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.01648688316345215 +2020-03-06 10:07:14,309 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,309 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,309 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:07:14,309 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,309 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,309 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: adobereader-xi: '11.0.10': full_name: 'Adobe Reader XI (11.0.10)' @@ -3858,15 +3744,15 @@ adobereader-xi: locale: en_US reboot: False -2020-03-04 12:06:07,367 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,367 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,367 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,383 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,383 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls -2020-03-04 12:06:07,383 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,383 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,383 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +2020-03-06 10:07:14,309 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,325 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,325 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,325 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:07:14,325 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,325 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,325 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: adobereader: '10.1.4': full_name: 'Adobe Reader X (10.1.4)' @@ -3887,15 +3773,15 @@ adobereader: locale: en_US reboot: False -2020-03-04 12:06:07,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,383 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,383 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,383 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,383 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls -2020-03-04 12:06:07,383 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,399 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.015753984451293945 -2020-03-04 12:06:07,399 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +2020-03-06 10:07:14,325 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,325 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,341 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,341 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:07:14,341 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,341 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,341 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: adobeshockwaveplayer: latest: full_name: 'Adobe Shockwave Player 12.2' @@ -3909,15 +3795,15 @@ adobeshockwaveplayer: # # Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version -2020-03-04 12:06:07,399 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,399 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,399 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,399 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,399 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls -2020-03-04 12:06:07,399 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,399 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,415 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: +2020-03-06 10:07:14,341 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,341 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,341 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,341 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:07:14,341 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,357 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.01625800132751465 +2020-03-06 10:07:14,357 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: @@ -3940,15 +3826,15 @@ adv-ip-scanner: # http://www.advanced-ip-scanner.com # a product of: www.radmin.com -2020-03-04 12:06:07,415 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,357 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,415 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,415 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,415 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,415 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls -2020-03-04 12:06:07,415 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,415 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,430 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: +2020-03-06 10:07:14,357 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,357 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,357 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,357 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:07:14,357 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,374 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.016617298126220703 +2020-03-06 10:07:14,374 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: @@ -3971,15 +3857,15 @@ adv-port-scanner: # http://www.advanced-port-scanner.com # a product of: www.radmin.com -2020-03-04 12:06:07,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,430 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,430 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,430 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,430 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls -2020-03-04 12:06:07,430 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,430 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,430 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +2020-03-06 10:07:14,374 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,374 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,374 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,374 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:07:14,374 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,374 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,389 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: advancedlogging: '1.0.0625.10': full_name: 'IIS Advanced Logging 1.0' @@ -3993,15 +3879,15 @@ advancedlogging: locale: en_US reboot: False -2020-03-04 12:06:07,445 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,389 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,445 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,445 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,445 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,445 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls -2020-03-04 12:06:07,445 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,445 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,445 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +2020-03-06 10:07:14,389 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,389 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,389 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,389 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:07:14,389 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,389 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,389 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: # just 32-bit x86 msi package available @@ -4017,15 +3903,15 @@ anydesk-msi: locale: en_US reboot: False -2020-03-04 12:06:07,445 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,389 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,445 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,461 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,461 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,461 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls -2020-03-04 12:06:07,461 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,461 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,461 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +2020-03-06 10:07:14,389 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,404 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:07:14,404 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,404 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,404 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: # just 32-bit x86 installer available @@ -4045,15 +3931,15 @@ anydesk: locale: en_US reboot: False -2020-03-04 12:06:07,461 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,404 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,461 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,461 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,477 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,477 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls -2020-03-04 12:06:07,477 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,477 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,477 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +2020-03-06 10:07:14,404 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,420 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:07:14,420 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,420 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,420 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: applicationrequestrouting: '3.0.1952': full_name: 'Microsoft Application Request Routing 3.0' @@ -4067,15 +3953,15 @@ applicationrequestrouting: locale: en_US reboot: False -2020-03-04 12:06:07,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,420 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,477 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,477 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,477 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,477 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls -2020-03-04 12:06:07,492 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,492 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,492 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +2020-03-06 10:07:14,420 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,420 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,420 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,420 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:07:14,420 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,420 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,420 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: aspnet-mvc1: '1.0.0.0': full_name: 'Microsoft ASP.NET MVC 1.0' @@ -4087,15 +3973,15 @@ aspnet-mvc1: locale: en_US reboot: False -2020-03-04 12:06:07,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,435 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,492 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,492 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,492 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,492 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls -2020-03-04 12:06:07,492 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,492 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,508 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: +2020-03-06 10:07:14,435 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,435 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,435 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,435 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:07:14,435 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,435 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,435 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: atom: @@ -4160,15 +4046,15 @@ atom: reboot: False -2020-03-04 12:06:07,508 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,435 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,508 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,508 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,508 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,508 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls -2020-03-04 12:06:07,508 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,508 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,525 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: +2020-03-06 10:07:14,435 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,435 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,453 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,453 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:07:14,453 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,453 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,453 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: @@ -4196,15 +4082,15 @@ audacity: reboot: False -2020-03-04 12:06:07,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,525 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,525 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,525 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,525 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls -2020-03-04 12:06:07,525 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,525 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,540 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: +2020-03-06 10:07:14,453 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,453 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,453 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,469 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:07:14,469 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,469 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,469 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: @@ -4246,15 +4132,15 @@ autohotkey: locale: en_US reboot: False -2020-03-04 12:06:07,540 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,540 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,540 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,540 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,540 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls -2020-03-04 12:06:07,540 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,564 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.023808956146240234 -2020-03-04 12:06:07,564 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: +2020-03-06 10:07:14,469 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,469 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,469 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,484 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:07:14,484 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,484 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,484 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: autoit: @@ -4271,15 +4157,15 @@ autoit: reboot: False -2020-03-04 12:06:07,564 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,564 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,564 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,576 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,576 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls -2020-03-04 12:06:07,576 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,576 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,576 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +2020-03-06 10:07:14,484 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,484 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,484 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,484 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:07:14,484 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,500 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.015749692916870117 +2020-03-06 10:07:14,500 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: autopsy: '4.3.0': full_name: 'Autopsy' @@ -4293,15 +4179,15 @@ autopsy: locale: en_US reboot: False -2020-03-04 12:06:07,576 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,576 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,576 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,576 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,576 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls -2020-03-04 12:06:07,576 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,592 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.015188217163085938 -2020-03-04 12:06:07,592 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +2020-03-06 10:07:14,500 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,500 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,500 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,500 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:07:14,500 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,500 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,500 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available awscli: @@ -4317,15 +4203,15 @@ awscli: locale: en_US reboot: False -2020-03-04 12:06:07,592 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,592 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,592 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,592 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,592 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls -2020-03-04 12:06:07,592 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,592 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,607 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +2020-03-06 10:07:14,515 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.015413522720336914 +2020-03-06 10:07:14,515 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,515 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,515 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:07:14,515 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,515 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,515 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: # due to winrepo installer limitations you need to manually download the exe from # https://go.microsoft.com/fwlink/?linkid=2049975 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... @@ -4343,15 +4229,15 @@ azuredatastudio: locale: en_US reboot: False -2020-03-04 12:06:07,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,607 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,607 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,607 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,607 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls -2020-03-04 12:06:07,607 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,607 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,607 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +2020-03-06 10:07:14,515 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,515 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,515 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,531 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:07:14,531 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,531 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,531 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: #the provider only offers the download of the latest version @@ -4367,15 +4253,15 @@ bandizip: locale: en_US reboot: False -2020-03-04 12:06:07,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,607 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,623 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls -2020-03-04 12:06:07,623 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,623 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,623 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +2020-03-06 10:07:14,531 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,531 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,531 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,531 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:07:14,531 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,531 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,547 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: # just 32-bit x86 installer available @@ -4391,15 +4277,15 @@ belarc-advisor: locale: en_US reboot: False -2020-03-04 12:06:07,623 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,623 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,639 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls -2020-03-04 12:06:07,639 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,639 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,639 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +2020-03-06 10:07:14,547 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,547 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,547 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,547 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:07:14,547 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,547 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,547 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: bginfo4x: '3.3.6': full_name: 'BGINFO4X for Windows 3.3.6' @@ -4411,15 +4297,15 @@ bginfo4x: locale: en_US reboot: False -2020-03-04 12:06:07,639 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,639 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,639 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,639 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,639 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls -2020-03-04 12:06:07,639 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,639 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,654 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +2020-03-06 10:07:14,547 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,562 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,562 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,562 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:07:14,562 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,562 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,562 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: # source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe bitnami-nginxstack: '1.8.0-0': @@ -4432,15 +4318,15 @@ bitnami-nginxstack: locale: en_US reboot: False -2020-03-04 12:06:07,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,654 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,654 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,654 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,654 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls -2020-03-04 12:06:07,654 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,654 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,654 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +2020-03-06 10:07:14,562 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,562 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,562 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,562 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:07:14,562 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,578 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.016167163848876953 +2020-03-06 10:07:14,578 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -4460,15 +4346,15 @@ bitvise: -2020-03-04 12:06:07,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,670 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.01568913459777832 -2020-03-04 12:06:07,670 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,670 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,670 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls -2020-03-04 12:06:07,670 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,670 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,670 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +2020-03-06 10:07:14,578 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,578 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,578 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,578 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:07:14,578 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,578 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,594 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available blender: @@ -4484,15 +4370,15 @@ blender: locale: en_US reboot: False -2020-03-04 12:06:07,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,686 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,686 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,686 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,686 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls -2020-03-04 12:06:07,686 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,686 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,686 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +2020-03-06 10:07:14,594 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,594 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,594 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,594 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:07:14,594 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,594 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,594 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: bootracer: '6.50.0.450': full_name: 'BootRacer' @@ -4505,15 +4391,15 @@ bootracer: reboot: False # download zip archive manually and unpack msi to slat master winrepo-ng directory -2020-03-04 12:06:07,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,702 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.01602625846862793 -2020-03-04 12:06:07,702 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,702 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,702 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls -2020-03-04 12:06:07,702 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,702 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,717 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: +2020-03-06 10:07:14,594 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,594 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,610 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,610 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:07:14,610 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,610 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,610 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: bulkrenameutility: @@ -4531,15 +4417,15 @@ bulkrenameutility: -2020-03-04 12:06:07,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,717 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,717 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,717 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,717 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls -2020-03-04 12:06:07,717 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,738 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0215909481048584 -2020-03-04 12:06:07,738 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +2020-03-06 10:07:14,610 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,610 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,610 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,625 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:07:14,625 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,625 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,625 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: # just 32-bit x86 installer available @@ -4577,15 +4463,15 @@ bulk_extractor: reboot: False -2020-03-04 12:06:07,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,738 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,754 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,754 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,754 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls -2020-03-04 12:06:07,754 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,754 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,754 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: +2020-03-06 10:07:14,625 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,625 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,625 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,625 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:07:14,625 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,641 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.015616893768310547 +2020-03-06 10:07:14,641 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: ccleaner-slim: @@ -4634,15 +4520,15 @@ ccleaner-slim: reboot: False -2020-03-04 12:06:07,770 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,770 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.015714645385742188 -2020-03-04 12:06:07,770 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,770 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,770 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls -2020-03-04 12:06:07,770 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,770 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,785 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: +2020-03-06 10:07:14,641 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,641 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,641 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,641 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:07:14,641 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,641 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,657 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: ccleaner: @@ -4669,15 +4555,15 @@ ccleaner: reboot: False -2020-03-04 12:06:07,785 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,785 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,785 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,785 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,785 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls -2020-03-04 12:06:07,785 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,785 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,785 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +2020-03-06 10:07:14,657 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,657 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,657 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,657 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:07:14,657 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,657 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,657 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -4693,15 +4579,15 @@ cdburnerxp: locale: en_US reboot: False -2020-03-04 12:06:07,801 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,672 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,801 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,801 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,801 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,801 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls -2020-03-04 12:06:07,801 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,801 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,817 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +2020-03-06 10:07:14,672 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,672 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,672 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,672 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:07:14,672 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,672 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,672 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: # just 32-bit x86 installer available @@ -4717,15 +4603,15 @@ cdroller: locale: en_US reboot: False -2020-03-04 12:06:07,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,672 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,817 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,817 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,817 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,817 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls -2020-03-04 12:06:07,817 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,833 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.016172170639038086 -2020-03-04 12:06:07,833 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +2020-03-06 10:07:14,672 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,687 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,687 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,687 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:07:14,687 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,687 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,687 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: check-mk-agent-msi: '1.5.0.3268': @@ -4939,15 +4825,15 @@ check-mk-agent-msi: reboot: False -2020-03-04 12:06:07,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,833 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,833 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,848 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,848 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls -2020-03-04 12:06:07,848 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,848 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,848 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +2020-03-06 10:07:14,704 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.016810178756713867 +2020-03-06 10:07:14,704 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,704 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,704 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:07:14,704 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,704 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,704 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: check-mk-agent: 'Not Found': full_name: 'Check_MK Agent 1.2.8b4' @@ -4961,15 +4847,15 @@ check-mk-agent: locale: en_US reboot: False -2020-03-04 12:06:07,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,848 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,848 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,864 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,864 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls -2020-03-04 12:06:07,864 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,864 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,864 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +2020-03-06 10:07:14,719 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.014796018600463867 +2020-03-06 10:07:14,719 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,719 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,719 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:07:14,719 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,719 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,719 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: chrome-rdp: latest: full_name: 'Chrome Remote Desktop Host' @@ -4981,15 +4867,15 @@ chrome-rdp: locale: en_US reboot: False -2020-03-04 12:06:07,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,864 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,879 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,879 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,879 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls -2020-03-04 12:06:07,879 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,879 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,879 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +2020-03-06 10:07:14,719 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,719 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,719 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,735 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:07:14,735 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,735 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,735 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: chrome: latest: full_name: 'Google Chrome' @@ -5001,15 +4887,15 @@ chrome: locale: en_US reboot: False -2020-03-04 12:06:07,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,879 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,879 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,896 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,896 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls -2020-03-04 12:06:07,896 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,896 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,896 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +2020-03-06 10:07:14,735 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,735 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,735 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,735 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:07:14,735 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,735 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,735 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: clamav: '0.99.1': @@ -5036,15 +4922,15 @@ clamav: uninstaller: 'msiexec.exe' uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' -2020-03-04 12:06:07,896 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) -2020-03-04 12:06:07,896 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,911 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,911 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,911 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls -2020-03-04 12:06:07,911 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,911 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,911 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +2020-03-06 10:07:14,751 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,751 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,751 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,751 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:07:14,751 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,751 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,751 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: # just 32-bit x86 installer available @@ -5078,15 +4964,15 @@ clamwin: locale: en_US reboot: False -2020-03-04 12:06:07,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,927 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,927 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,927 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,927 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls -2020-03-04 12:06:07,927 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,927 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,942 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +2020-03-06 10:07:14,767 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.015932559967041016 +2020-03-06 10:07:14,767 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,767 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,767 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:07:14,767 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,767 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,767 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: classicshell: '4.2.4': full_name: 'Classic Shell' @@ -5100,15 +4986,15 @@ classicshell: locale: en_US reboot: False -2020-03-04 12:06:07,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,942 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,942 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,942 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,942 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls -2020-03-04 12:06:07,942 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,965 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.022874832153320312 -2020-03-04 12:06:07,965 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +2020-03-06 10:07:14,767 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,767 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,782 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,782 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:07:14,782 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,782 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,782 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: # just 32-bit x86 installer available @@ -5152,15 +5038,15 @@ clink: reboot: False # https://mridgers.github.io/clink/ -2020-03-04 12:06:07,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,965 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,965 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,965 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,981 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls -2020-03-04 12:06:07,981 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,981 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,981 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +2020-03-06 10:07:14,782 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,782 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,798 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,798 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:07:14,798 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,798 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,798 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: conemu: '11.160.5290': @@ -5174,15 +5060,15 @@ conemu: locale: en_US reboot: False -2020-03-04 12:06:07,981 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:07,981 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:07,981 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:07,981 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:07,996 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls -2020-03-04 12:06:07,996 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:07,996 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:07,996 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +2020-03-06 10:07:14,798 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,798 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,798 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,798 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:07:14,798 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,815 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0175626277923584 +2020-03-06 10:07:14,815 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: cpu-z: '1.86': @@ -5428,15 +5314,15 @@ cpu-z: reboot: False -2020-03-04 12:06:07,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,013 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.017085552215576172 -2020-03-04 12:06:08,013 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,013 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,013 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls -2020-03-04 12:06:08,013 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,029 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.015589714050292969 -2020-03-04 12:06:08,029 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +2020-03-06 10:07:14,815 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,815 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,815 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,815 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:07:14,830 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,830 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,830 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available curl: @@ -5500,15 +5386,15 @@ curl: # Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, # so you might not be calling the right 'curl' -2020-03-04 12:06:08,029 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,830 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,029 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,045 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,045 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,045 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls -2020-03-04 12:06:08,045 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,045 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,045 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +2020-03-06 10:07:14,830 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,830 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,830 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,845 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:07:14,845 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,845 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,845 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: cyberduck-cli: '1.0.0.0': full_name: 'Cyberduck CLI' @@ -5520,15 +5406,15 @@ cyberduck-cli: locale: en_US reboot: False -2020-03-04 12:06:08,045 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,845 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,061 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.01613640785217285 -2020-03-04 12:06:08,061 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,061 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,061 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls -2020-03-04 12:06:08,061 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,076 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.015633583068847656 -2020-03-04 12:06:08,076 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +2020-03-06 10:07:14,845 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,845 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,845 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,845 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:07:14,845 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,863 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.017650604248046875 +2020-03-06 10:07:14,863 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: # just 32-bit x86 installer available @@ -5573,15 +5459,15 @@ cyberduck-msi: -2020-03-04 12:06:08,076 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,863 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,076 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,076 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,076 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,076 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls -2020-03-04 12:06:08,092 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,092 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,092 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +2020-03-06 10:07:14,863 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,863 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,863 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,863 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:07:14,863 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,879 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.01559758186340332 +2020-03-06 10:07:14,879 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: # just 32-bit x86 installer available @@ -5626,15 +5512,15 @@ cyberduck: -2020-03-04 12:06:08,092 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('cyberduck', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,107 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.015633821487426758 -2020-03-04 12:06:08,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,107 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls -2020-03-04 12:06:08,107 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,107 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,125 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +2020-03-06 10:07:14,879 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,879 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,879 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,879 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:07:14,879 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,893 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.014637947082519531 +2020-03-06 10:07:14,893 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: # just 32-bit x86 installer available @@ -5659,15 +5545,15 @@ defraggler: locale: en_US reboot: False -2020-03-04 12:06:08,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,125 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,125 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,125 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,125 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls -2020-03-04 12:06:08,125 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,139 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.013944387435913086 -2020-03-04 12:06:08,139 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +2020-03-06 10:07:14,893 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,893 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,893 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,893 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:07:14,893 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,893 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,908 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: dotnet: '4.6.01590': full_name: 'Microsoft .NET Framework 4.6.2' @@ -5714,15 +5600,15 @@ dotnet: locale: en_US reboot: False -2020-03-04 12:06:08,139 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,139 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,139 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,155 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,155 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls -2020-03-04 12:06:08,155 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,155 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,155 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +2020-03-06 10:07:14,908 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,908 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,908 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,908 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:07:14,908 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,908 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,923 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: # just 32-bit x86 installer available @@ -5743,15 +5629,15 @@ dropbox: locale: en_US reboot: False -2020-03-04 12:06:08,155 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,923 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,170 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.015419244766235352 -2020-03-04 12:06:08,170 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,170 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,170 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls -2020-03-04 12:06:08,170 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,170 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,170 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +2020-03-06 10:07:14,923 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,923 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,923 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,923 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:07:14,923 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,923 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,923 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: duplicati: '1.3.4': @@ -5768,15 +5654,15 @@ duplicati: cache_dir: False use_scheduler: False -2020-03-04 12:06:08,170 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,923 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) -2020-03-04 12:06:08,186 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.015910863876342773 -2020-03-04 12:06:08,186 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,186 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,186 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls -2020-03-04 12:06:08,186 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,186 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,186 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +2020-03-06 10:07:14,923 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,923 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,939 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,939 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:07:14,939 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,939 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,939 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available dvdstyler: @@ -5792,15 +5678,15 @@ dvdstyler: locale: en_US reboot: False -2020-03-04 12:06:08,186 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,939 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,202 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.015386104583740234 -2020-03-04 12:06:08,202 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,202 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,202 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls -2020-03-04 12:06:08,202 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,202 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,218 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +2020-03-06 10:07:14,939 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,939 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,939 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,939 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:07:14,939 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,955 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.015488147735595703 +2020-03-06 10:07:14,955 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: echo-desktop: '3.0.4': full_name: @@ -5812,15 +5698,15 @@ echo-desktop: uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" -2020-03-04 12:06:08,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,955 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) -2020-03-04 12:06:08,218 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,218 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,218 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,218 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls -2020-03-04 12:06:08,233 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,233 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,233 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +2020-03-06 10:07:14,955 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,955 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,955 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,955 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:07:14,970 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,970 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,970 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: eea: # '5.0.2260.1': # full_name: 'ESET Endpoint Antivirus' @@ -5852,15 +5738,15 @@ eea: # download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ # for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB -2020-03-04 12:06:08,233 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) -2020-03-04 12:06:08,233 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,233 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,233 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,249 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls -2020-03-04 12:06:08,249 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,249 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,249 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +2020-03-06 10:07:14,970 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,970 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,970 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,970 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:07:14,970 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,970 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,986 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: emet: '5.5': full_name: 'EMET 5.5' @@ -5872,15 +5758,15 @@ emet: locale: en_US reboot: False -2020-03-04 12:06:08,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,249 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,249 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,265 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,265 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls -2020-03-04 12:06:08,265 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,265 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,265 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +2020-03-06 10:07:14,986 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:14,986 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:14,986 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:14,986 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:07:14,986 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:14,986 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:14,986 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: # just 32-bit x86 installer available @@ -5897,15 +5783,15 @@ emsisoft-anti-malware: locale: en_US reboot: False -2020-03-04 12:06:08,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:14,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,265 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,280 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,280 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,280 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls -2020-03-04 12:06:08,280 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,280 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,280 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: +2020-03-06 10:07:15,001 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.015346050262451172 +2020-03-06 10:07:15,001 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,001 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,001 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:07:15,001 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,001 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,001 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: eraser: @@ -5931,15 +5817,15 @@ eraser: reboot: False -2020-03-04 12:06:08,280 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,001 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,296 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.015636444091796875 -2020-03-04 12:06:08,296 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,296 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,296 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls -2020-03-04 12:06:08,296 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,296 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,296 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +2020-03-06 10:07:15,001 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,017 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,017 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,017 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:07:15,017 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,017 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,017 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: evernote: '6.9.7.6770': full_name: 'Evernote v. 6.9.7' @@ -5969,15 +5855,15 @@ evernote: locale: en_US reboot: False -2020-03-04 12:06:08,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,311 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,311 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,311 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,311 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls -2020-03-04 12:06:08,311 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,328 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.016095399856567383 -2020-03-04 12:06:08,328 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +2020-03-06 10:07:15,017 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,017 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,017 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,017 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:07:15,033 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,033 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,033 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: # just 32-bit x86 installer available @@ -5993,15 +5879,15 @@ fiddler: locale: en_US reboot: False -2020-03-04 12:06:08,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,033 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,328 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,328 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,328 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,328 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls -2020-03-04 12:06:08,343 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,343 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,343 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +2020-03-06 10:07:15,033 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,033 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,033 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,033 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:07:15,033 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,033 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,050 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: # just 32-bit x86 installer available @@ -6019,15 +5905,15 @@ filehippo-app-manager: reboot: False # download manually and place on master salt://win/repo-ng/filehippo-app-manager -2020-03-04 12:06:08,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,343 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,343 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,359 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,359 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls -2020-03-04 12:06:08,359 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,374 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.015378713607788086 -2020-03-04 12:06:08,374 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: +2020-03-06 10:07:15,050 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,050 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,050 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,050 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:07:15,050 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,050 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,067 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: filezilla: @@ -6801,15 +6687,15 @@ filezilla: reboot: False -2020-03-04 12:06:08,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,390 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.016194820404052734 -2020-03-04 12:06:08,390 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,390 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,406 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls -2020-03-04 12:06:08,406 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,406 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,406 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +2020-03-06 10:07:15,080 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.013139009475708008 +2020-03-06 10:07:15,080 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,080 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,080 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:07:15,080 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,080 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,080 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: firefox-esr_x64: '68.5.0': @@ -7473,15 +7359,15 @@ firefox-esr_x64: reboot: False -2020-03-04 12:06:08,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,437 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.0158846378326416 -2020-03-04 12:06:08,437 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,453 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,453 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls -2020-03-04 12:06:08,453 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,468 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.01525735855102539 -2020-03-04 12:06:08,484 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +2020-03-06 10:07:15,096 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,096 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,112 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,112 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:07:15,112 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,112 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,112 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: firefox-esr_x86: @@ -8258,15 +8144,15 @@ firefox-esr_x86: reboot: False -2020-03-04 12:06:08,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,128 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,500 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.016248464584350586 -2020-03-04 12:06:08,516 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,516 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,516 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls -2020-03-04 12:06:08,531 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,531 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,547 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +2020-03-06 10:07:15,128 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015317440032958984 +2020-03-06 10:07:15,128 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,144 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,144 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:07:15,144 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,144 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,144 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: firefox_x64: '73.0': @@ -9250,15 +9136,15 @@ firefox_x64: reboot: False -2020-03-04 12:06:08,563 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,563 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.01598215103149414 -2020-03-04 12:06:08,563 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,578 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,578 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls -2020-03-04 12:06:08,578 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,596 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.01718449592590332 -2020-03-04 12:06:08,596 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +2020-03-06 10:07:15,176 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.03167295455932617 +2020-03-06 10:07:15,176 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,176 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,176 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:07:15,176 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,192 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.015811920166015625 +2020-03-06 10:07:15,192 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: firefox_x86: @@ -10605,15 +10491,15 @@ firefox_x86: reboot: False -2020-03-04 12:06:08,626 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,209 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,626 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.030528545379638672 -2020-03-04 12:06:08,626 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,641 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,641 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls -2020-03-04 12:06:08,641 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,641 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,641 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +2020-03-06 10:07:15,225 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.03371024131774902 +2020-03-06 10:07:15,225 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,225 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,225 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:07:15,225 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,225 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,225 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: # just 32-bit x86 installer available @@ -10630,15 +10516,15 @@ gedit: locale: en_US reboot: False -2020-03-04 12:06:08,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,641 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,658 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,658 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,658 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls -2020-03-04 12:06:08,658 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,658 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,658 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +2020-03-06 10:07:15,225 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,240 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,240 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,240 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:07:15,240 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,240 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,240 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: # just 32-bit x86 installer available # Gimp installs into %ProgramFiles on either cpu arch gimp: @@ -10684,15 +10570,15 @@ gimp: restart: False -2020-03-04 12:06:08,658 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) -2020-03-04 12:06:08,673 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.015280961990356445 -2020-03-04 12:06:08,673 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,673 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,673 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls -2020-03-04 12:06:08,673 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,673 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,673 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +2020-03-06 10:07:15,240 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,240 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,257 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:07:15,257 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,257 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,257 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: git-extensions: '2.48.05': full_name: 'Git Extensions 2.48.05' @@ -10713,15 +10599,15 @@ git-extensions: locale: en_US reboot: False -2020-03-04 12:06:08,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,257 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,688 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.015628337860107422 -2020-03-04 12:06:08,688 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,688 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,688 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls -2020-03-04 12:06:08,688 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,704 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.01585245132446289 -2020-03-04 12:06:08,720 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +2020-03-06 10:07:15,257 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,272 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:07:15,272 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,272 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,291 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available for git @@ -11560,15 +11446,15 @@ msysgit: locale: en_US reboot: False -2020-03-04 12:06:08,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,720 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,736 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,736 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,736 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls -2020-03-04 12:06:08,736 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,736 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,736 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +2020-03-06 10:07:15,291 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,304 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:07:15,304 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,304 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,304 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: # just 32-bit x86 installer available @@ -11593,15 +11479,15 @@ glarysoft-absolute-uninstaller: locale: en_US reboot: False -2020-03-04 12:06:08,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,751 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.015316247940063477 -2020-03-04 12:06:08,751 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,751 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,751 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls -2020-03-04 12:06:08,751 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,751 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,751 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +2020-03-06 10:07:15,304 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,320 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:07:15,320 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,320 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,320 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: # just 32-bit x86 installer available @@ -11618,15 +11504,15 @@ gnucash: reboot: False -2020-03-04 12:06:08,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,767 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,767 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,767 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,767 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls -2020-03-04 12:06:08,767 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,783 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.01649332046508789 -2020-03-04 12:06:08,783 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +2020-03-06 10:07:15,320 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,320 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,320 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,320 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:07:15,320 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,335 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015429973602294922 +2020-03-06 10:07:15,335 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: # "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. # See https://golang.org/ @@ -12849,15 +12735,15 @@ golang: reboot: False -2020-03-04 12:06:08,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,354 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,815 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.01623082160949707 -2020-03-04 12:06:08,815 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,815 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,815 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls -2020-03-04 12:06:08,815 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,831 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.015616178512573242 -2020-03-04 12:06:08,831 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +2020-03-06 10:07:15,354 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.019016027450561523 +2020-03-06 10:07:15,370 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,387 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,387 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:07:15,387 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,387 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,387 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: goodsync: '9.9.46.6': full_name: 'GoodSync' @@ -12869,15 +12755,15 @@ goodsync: locale: en_US reboot: False -2020-03-04 12:06:08,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,387 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,831 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,831 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,831 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,831 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls -2020-03-04 12:06:08,831 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,847 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.016094446182250977 -2020-03-04 12:06:08,847 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +2020-03-06 10:07:15,387 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,387 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,403 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,403 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:07:15,403 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,403 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,403 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: # just 32-bit x86 installer available @@ -12895,15 +12781,15 @@ gow: # Gow - GNU on Windows - The lightweight alternative to Cygwin # https://github.com/bmatzelle/gow/wiki -2020-03-04 12:06:08,847 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,403 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,847 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,847 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,847 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,862 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls -2020-03-04 12:06:08,862 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,862 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,862 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +2020-03-06 10:07:15,418 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.015318632125854492 +2020-03-06 10:07:15,418 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,418 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,418 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:07:15,418 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,418 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,418 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: # just 32-bit x86 installer available @@ -12977,15 +12863,15 @@ gpg4win-light: # https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 # -2020-03-04 12:06:08,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,435 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,862 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,877 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,877 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,877 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls -2020-03-04 12:06:08,877 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,877 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,877 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +2020-03-06 10:07:15,435 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,435 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,435 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,435 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:07:15,435 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,435 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,452 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: # just 32-bit x86 installer available @@ -13053,15 +12939,15 @@ gpg4win-vanilla: reboot: False -2020-03-04 12:06:08,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,893 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,893 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,893 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,893 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls -2020-03-04 12:06:08,893 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,893 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,909 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: +2020-03-06 10:07:15,452 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,452 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,452 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,452 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:07:15,466 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,466 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,466 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: graylog-collector-sidecar: @@ -13137,15 +13023,15 @@ graylog-collector-sidecar: reboot: False -2020-03-04 12:06:08,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,466 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,909 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,909 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,909 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,909 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls -2020-03-04 12:06:08,909 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,909 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,926 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +2020-03-06 10:07:15,466 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,482 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,482 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,482 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:07:15,482 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,482 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,482 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: grepwin: '1.6.682': @@ -13192,15 +13078,15 @@ grepwin: locale: en_US reboot: False -2020-03-04 12:06:08,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,498 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,926 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,926 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,926 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,926 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls -2020-03-04 12:06:08,926 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,926 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,940 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +2020-03-06 10:07:15,498 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,498 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,498 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,498 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:07:15,498 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,498 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,514 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: # just 32-bit x86 installer available @@ -13216,15 +13102,15 @@ gvim: locale: en_US reboot: False -2020-03-04 12:06:08,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,514 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,940 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,940 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,940 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,940 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls -2020-03-04 12:06:08,940 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,940 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,940 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +2020-03-06 10:07:15,514 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,514 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,514 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,514 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:07:15,514 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,529 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.015247344970703125 +2020-03-06 10:07:15,529 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available # Source: https://handbrake.fr @@ -13241,15 +13127,15 @@ handbrake: locale: en_US reboot: False -2020-03-04 12:06:08,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,529 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,956 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.015296220779418945 -2020-03-04 12:06:08,956 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,956 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,956 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls -2020-03-04 12:06:08,956 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,956 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,956 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +2020-03-06 10:07:15,529 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,529 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,529 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,529 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:07:15,545 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,545 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,545 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: hipchat: @@ -13263,15 +13149,15 @@ hipchat: msiexec: False reboot: False -2020-03-04 12:06:08,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,545 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:06:08,971 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.01572418212890625 -2020-03-04 12:06:08,971 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,971 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,971 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls -2020-03-04 12:06:08,971 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,971 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,971 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +2020-03-06 10:07:15,545 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,545 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,545 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,545 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:07:15,561 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,561 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,561 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: hostsfileeditor: '1.2.0': @@ -13285,15 +13171,15 @@ hostsfileeditor: locale: en_US reboot: False -2020-03-04 12:06:08,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,561 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,971 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,971 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,988 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,988 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls -2020-03-04 12:06:08,988 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:08,988 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:08,988 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: +2020-03-06 10:07:15,561 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,561 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,561 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,561 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:07:15,577 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,577 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,577 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: hwinfo: '5.70': @@ -13308,15 +13194,15 @@ hwinfo: locale: en_US reboot: False -2020-03-04 12:06:08,988 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:08,988 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:08,988 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:08,988 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:08,988 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls -2020-03-04 12:06:09,003 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,003 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,003 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +2020-03-06 10:07:15,577 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,577 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,577 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,577 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:07:15,577 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,577 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,593 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: # -*- coding: utf-8 -*- # vim: ft=sls ice: @@ -13330,15 +13216,15 @@ ice: locale: en_US reboot: False -2020-03-04 12:06:09,003 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,003 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,003 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,003 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,003 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls -2020-03-04 12:06:09,003 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,020 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.016165733337402344 -2020-03-04 12:06:09,020 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +2020-03-06 10:07:15,593 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,593 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,593 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,593 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:07:15,593 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,593 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,593 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: # just 32-bit x86 installer available @@ -13354,15 +13240,15 @@ icecast: locale: en_US reboot: False -2020-03-04 12:06:09,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,020 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,020 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,020 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,020 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls -2020-03-04 12:06:09,020 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,020 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,035 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +2020-03-06 10:07:15,609 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,609 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,609 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,609 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:07:15,609 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,609 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,609 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: icloud: '7.3.0.20': full_name: iCloud @@ -13374,15 +13260,15 @@ icloud: locale: en_US reboot: False -2020-03-04 12:06:09,035 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,035 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,035 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,035 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,035 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls -2020-03-04 12:06:09,035 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,035 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,050 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +2020-03-06 10:07:15,609 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,609 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,625 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,625 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:07:15,625 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,625 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,625 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: iismediaservices: '4.1.0938.454': full_name: 'IIS Media Services 4.1' @@ -13418,15 +13304,15 @@ iismediaservices: locale: en_US reboot: False -2020-03-04 12:06:09,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,050 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,050 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,050 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,050 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls -2020-03-04 12:06:09,050 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,050 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,050 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +2020-03-06 10:07:15,625 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,625 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,641 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,641 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:07:15,641 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,641 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,641 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: influx-capacitor: '1.0.89': full_name: 'Influx Capacitor' @@ -13438,15 +13324,15 @@ influx-capacitor: locale: en_US reboot: False -2020-03-04 12:06:09,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,050 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,067 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,067 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,067 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls -2020-03-04 12:06:09,067 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,067 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,067 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +2020-03-06 10:07:15,641 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,641 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,641 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,641 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:07:15,641 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,656 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.015601634979248047 +2020-03-06 10:07:15,656 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: inkscape: '0.91': full_name: 'Inkscape 0.91' @@ -13460,15 +13346,15 @@ inkscape: locale: en_US reboot: False -2020-03-04 12:06:09,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,067 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,067 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,067 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,067 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls -2020-03-04 12:06:09,082 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,082 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,082 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +2020-03-06 10:07:15,656 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,656 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,656 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,656 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:07:15,656 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,671 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.015207529067993164 +2020-03-06 10:07:15,671 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: # just 32-bit x86 installer available @@ -13486,15 +13372,15 @@ intellij-community: reboot: False -2020-03-04 12:06:09,082 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,082 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,082 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,082 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,082 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls -2020-03-04 12:06:09,082 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,098 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.015540122985839844 -2020-03-04 12:06:09,098 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +2020-03-06 10:07:15,671 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,671 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,671 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,671 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:07:15,671 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,688 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.017023086547851562 +2020-03-06 10:07:15,688 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: # just 32-bit x86 installer available @@ -13512,15 +13398,15 @@ intellij-ultimate: reboot: False -2020-03-04 12:06:09,098 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,098 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,098 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,098 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,098 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls -2020-03-04 12:06:09,098 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,113 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.015659332275390625 -2020-03-04 12:06:09,113 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +2020-03-06 10:07:15,688 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,688 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,688 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,688 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:07:15,688 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,688 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,702 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: internet-evidence-finder: '6.2.3.0001': full_name: 'Internet Evidence Finder' @@ -13532,15 +13418,15 @@ internet-evidence-finder: locale: en_US reboot: False -2020-03-04 12:06:09,113 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,702 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,113 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,113 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls -2020-03-04 12:06:09,113 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,113 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,113 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +2020-03-06 10:07:15,702 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,702 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,702 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,702 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:07:15,702 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,702 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,702 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: irfanview-plugins: '4.42': @@ -13555,15 +13441,15 @@ irfanview-plugins: locale: en_US reboot: False -2020-03-04 12:06:09,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,129 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,129 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls -2020-03-04 12:06:09,129 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,129 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,129 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +2020-03-06 10:07:15,718 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,718 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,718 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,718 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:07:15,718 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,718 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,718 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available irfanview: @@ -13590,15 +13476,15 @@ irfanview: # assocallusers: if used, set associations for all users (Windows XP only) # ini: if used, set custom INI file folder (system environment variables are allowed) -2020-03-04 12:06:09,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,145 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.01586461067199707 -2020-03-04 12:06:09,145 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,145 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,145 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls -2020-03-04 12:06:09,145 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,145 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,145 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +2020-03-06 10:07:15,718 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,734 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,734 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,734 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:07:15,734 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,734 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,734 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: isapirewrite-lite: '3.1.0112': full_name: 'Helicon ISAPI_Rewrite 3 Lite' @@ -13612,15 +13498,15 @@ isapirewrite-lite: locale: en_US reboot: False -2020-03-04 12:06:09,145 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,161 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.015464067459106445 -2020-03-04 12:06:09,161 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,161 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,161 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls -2020-03-04 12:06:09,161 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,161 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,177 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +2020-03-06 10:07:15,734 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,734 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,751 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,751 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:07:15,751 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,751 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,751 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available itunes: '12.8.0.150': @@ -13649,15 +13535,15 @@ itunes: locale: en_US reboot: False -2020-03-04 12:06:09,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,177 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,177 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,177 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,177 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls -2020-03-04 12:06:09,177 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,177 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,192 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +2020-03-06 10:07:15,751 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,751 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,751 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,765 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:07:15,765 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,765 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,765 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way @@ -13680,15 +13566,15 @@ jdk8: locale: en_US reboot: False -2020-03-04 12:06:09,192 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,192 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,192 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls -2020-03-04 12:06:09,192 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,192 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,192 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +2020-03-06 10:07:15,765 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,765 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,765 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,765 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:07:15,765 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,787 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.02177262306213379 +2020-03-06 10:07:15,787 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available jre: @@ -13707,15 +13593,15 @@ jre: # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way -2020-03-04 12:06:09,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,787 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,208 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,208 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,208 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,208 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls -2020-03-04 12:06:09,208 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,225 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.016572237014770508 -2020-03-04 12:06:09,225 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +2020-03-06 10:07:15,787 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,787 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,787 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,801 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:07:15,801 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,801 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,801 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://www.java.com/en/download/manual.jsp # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... @@ -13795,15 +13681,15 @@ jre8: -2020-03-04 12:06:09,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,801 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,225 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,225 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,225 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,225 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls -2020-03-04 12:06:09,239 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,239 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,239 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +2020-03-06 10:07:15,801 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,817 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,817 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,817 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:07:15,817 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,817 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,817 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: jungledisk-server-management: '3.23.0.2': full_name: 'Jungle Disk Server Management' @@ -13817,15 +13703,15 @@ jungledisk-server-management: locale: en_US reboot: False -2020-03-04 12:06:09,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,239 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,239 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,239 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,239 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls -2020-03-04 12:06:09,239 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,239 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,256 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +2020-03-06 10:07:15,817 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,817 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,817 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,832 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:07:15,832 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,832 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,832 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: jungledisk-server: '3.23.0.2': full_name: 'Jungle Disk Server' @@ -13839,15 +13725,15 @@ jungledisk-server: locale: en_US reboot: False -2020-03-04 12:06:09,256 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,832 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,256 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,256 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,256 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,256 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls -2020-03-04 12:06:09,256 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,256 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,256 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +2020-03-06 10:07:15,832 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,832 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,832 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,832 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:07:15,832 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,832 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,848 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: jungledisk-workgroup: '3.23.0.2': full_name: 'Jungle Disk Workgroup' @@ -13861,15 +13747,15 @@ jungledisk-workgroup: locale: en_US reboot: False -2020-03-04 12:06:09,256 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,270 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.014467954635620117 -2020-03-04 12:06:09,270 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,270 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,270 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls -2020-03-04 12:06:09,270 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,270 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,270 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +2020-03-06 10:07:15,848 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,848 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,848 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,848 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:07:15,848 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,848 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,848 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: kdiff3: 'Not Found': full_name: 'KDiff3 (remove only)' @@ -13883,15 +13769,15 @@ kdiff3: locale: en_US reboot: False -2020-03-04 12:06:09,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,270 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,270 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,286 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,286 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls -2020-03-04 12:06:09,286 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,286 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,286 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +2020-03-06 10:07:15,848 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,848 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,864 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,864 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:07:15,864 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,864 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,864 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: # Keepass 2.x installation from https://keepass.info/ # to keep the versioning in the format of "2..minor", two seperate version arrays are created. @@ -14155,15 +14041,15 @@ keepass-2x: locale: en_US reboot: False -2020-03-04 12:06:09,303 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,303 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.017378807067871094 -2020-03-04 12:06:09,303 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,303 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,303 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls -2020-03-04 12:06:09,303 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,303 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,303 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +2020-03-06 10:07:15,880 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.015422582626342773 +2020-03-06 10:07:15,880 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,880 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,880 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:07:15,880 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,880 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,880 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: keepass: '1.35.0': full_name: 'KeePass 1.35' @@ -14229,15 +14115,15 @@ keepass: locale: en_US reboot: False -2020-03-04 12:06:09,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,317 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,317 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,317 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,317 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls -2020-03-04 12:06:09,317 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,317 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,317 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +2020-03-06 10:07:15,895 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,895 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,895 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,895 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:07:15,895 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,895 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,913 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: # just 32-bit x86 installer available @@ -14255,15 +14141,15 @@ lastpass: locale: en_US reboot: False -2020-03-04 12:06:09,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,333 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,333 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,333 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,333 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls -2020-03-04 12:06:09,333 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,333 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,333 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +2020-03-06 10:07:15,913 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,913 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,913 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,913 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:07:15,913 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,913 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,928 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: # NOTE: If the lazarus installation directory exists the installation will # pop up a dialog box. This will cause the minion to hang because it # is waiting for the user to click continue on a dialog box that will @@ -14297,15 +14183,15 @@ lazarus: uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES -2020-03-04 12:06:09,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,928 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) -2020-03-04 12:06:09,349 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,349 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,349 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,349 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls -2020-03-04 12:06:09,349 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,349 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,364 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +2020-03-06 10:07:15,928 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,928 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,928 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,928 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:07:15,928 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,928 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,944 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: libreoffice: '5.3.5.2': @@ -14381,15 +14267,15 @@ libreoffice: reboot: False -2020-03-04 12:06:09,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,944 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,364 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,364 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,364 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,364 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls -2020-03-04 12:06:09,364 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,364 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,364 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +2020-03-06 10:07:15,944 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,944 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,944 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,944 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:07:15,944 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,944 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,944 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: logparser: '2.2.10': full_name: 'Log Parser 2.2' @@ -14401,15 +14287,15 @@ logparser: locale: en_US reboot: False -2020-03-04 12:06:09,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,944 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,380 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.015950441360473633 -2020-03-04 12:06:09,380 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,380 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,380 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls -2020-03-04 12:06:09,380 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,380 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,380 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +2020-03-06 10:07:15,959 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.015616178512573242 +2020-03-06 10:07:15,959 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,959 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,959 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:07:15,959 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,959 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,959 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: # just 32-bit x86 installer available @@ -14436,15 +14322,15 @@ maas360bootanalyzer: reboot: False # download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory -2020-03-04 12:06:09,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,959 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,396 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.015821456909179688 -2020-03-04 12:06:09,396 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,396 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,396 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls -2020-03-04 12:06:09,396 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,396 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,396 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +2020-03-06 10:07:15,959 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,975 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,975 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,975 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:07:15,975 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:15,975 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:15,975 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: # just 32-bit x86 installer available @@ -14461,15 +14347,15 @@ malwarebytes: locale: en_US reboot: Falsea -2020-03-04 12:06:09,396 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:15,975 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) -2020-03-04 12:06:09,396 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,411 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,411 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,411 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls -2020-03-04 12:06:09,411 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,435 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.023593902587890625 -2020-03-04 12:06:09,435 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +2020-03-06 10:07:15,975 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:15,975 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:15,991 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:15,991 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:07:15,991 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,010 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.019069433212280273 +2020-03-06 10:07:16,010 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: #MariaDB https://downloads.mariadb.org/mariadb/+releases/ #only stable versions are listed @@ -14483,651 +14369,730 @@ OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_na mariadb: - '10.1.38.0': + '10.0.38.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.37.0': + '10.0.37.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.36.0': + '10.0.36.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.35.0': + '10.0.35.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.34.0': + '10.0.34.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.33.0': + '10.0.33.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.32.0': + '10.0.32.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.31.0': + '10.0.31.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.30.0': + '10.0.30.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.29.0': + '10.0.29.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.28.0': + '10.0.28.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.27.0': + '10.0.27.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.26.0': + '10.0.26.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.25.0': + '10.0.25.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.24.0': + '10.0.24.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.23.0': + '10.0.23.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.22.0': + '10.0.22.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.21.0': + '10.0.21.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.20.0': + '10.0.20.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.19.0': + '10.0.19.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.18.0': + '10.0.18.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.17.0': + '10.0.17.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.16.0': + '10.0.16.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.14.0': + '10.0.15.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.13.0': + '10.0.14.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.12.0': + '10.0.13.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.11.0': + '10.0.12.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.10.0': + '10.0.11.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.9.0': + '10.0.10.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.8.0': + + + '10.1.38.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.0.38.0': + '10.1.37.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.37.0': + '10.1.36.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.36.0': + '10.1.35.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.35.0': + '10.1.34.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.34.0': + '10.1.33.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.33.0': + '10.1.32.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.32.0': + '10.1.31.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.31.0': + '10.1.30.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.30.0': + '10.1.29.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.29.0': + '10.1.28.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.28.0': + '10.1.27.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.27.0': + '10.1.26.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.26.0': + '10.1.25.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.25.0': + '10.1.24.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.24.0': + '10.1.23.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.23.0': + '10.1.22.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.22.0': + '10.1.21.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.21.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + '10.1.20.0': + + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.20.0': + '10.1.19.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.19.0': + '10.1.18.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.18.0': + '10.1.17.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.17.0': + '10.1.16.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.16.0': + '10.1.14.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.15.0': + '10.1.13.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.14.0': + '10.1.12.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.13.0': + '10.1.11.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.12.0': + '10.1.10.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.11.0': + '10.1.9.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.10.0': + '10.1.8.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15468,85 +15433,6 @@ mariadb: - '10.3.13.0': - - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.3.12.0': - - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.3.11.0': - - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.3.10.0': - - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.3.9.0': - - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.3.8.0': - - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.3.7.0': - - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - - '10.2.22.0': full_name: 'MariaDB 10.2 (x64)' @@ -15736,15 +15622,15 @@ mariadb: -2020-03-04 12:06:09,450 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: -OrderedDict([('mariadb', OrderedDict([('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:06:09,450 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.014631509780883789 -2020-03-04 12:06:09,463 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,463 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,463 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls -2020-03-04 12:06:09,463 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,463 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,463 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +2020-03-06 10:07:16,025 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:07:16,025 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.01560521125793457 +2020-03-06 10:07:16,025 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,038 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,038 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:07:16,038 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,038 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,038 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: mercurial: '3.1.1': @@ -15758,15 +15644,15 @@ mercurial: locale: en_US reboot: False -2020-03-04 12:06:09,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,463 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,463 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,479 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls -2020-03-04 12:06:09,479 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,479 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,479 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +2020-03-06 10:07:16,038 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,038 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,038 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,053 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:07:16,053 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,053 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,053 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: messageanalyzer: '4.0.7551.0': full_name: 'Microsoft Message Analyzer' @@ -15781,15 +15667,15 @@ messageanalyzer: locale: en_US reboot: False -2020-03-04 12:06:09,479 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,479 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,479 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls -2020-03-04 12:06:09,479 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,494 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.01541900634765625 -2020-03-04 12:06:09,494 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +2020-03-06 10:07:16,053 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,053 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,053 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,053 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:07:16,053 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,053 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,068 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: microsoft-build-tools: '14.0.23107': @@ -15803,15 +15689,15 @@ microsoft-build-tools: locale: en_US reboot: False -2020-03-04 12:06:09,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,068 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,494 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,494 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,494 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,494 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls -2020-03-04 12:06:09,494 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,494 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,494 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +2020-03-06 10:07:16,068 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,068 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,068 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,068 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:07:16,068 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,068 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,068 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: mikogo: '5.3.0': full_name: 'Mikogo' @@ -15823,15 +15709,15 @@ mikogo: locale: en_US reboot: False -2020-03-04 12:06:09,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,068 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,510 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.015674591064453125 -2020-03-04 12:06:09,510 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,510 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,510 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls -2020-03-04 12:06:09,510 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,510 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,510 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +2020-03-06 10:07:16,068 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,068 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,068 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,084 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:07:16,084 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,084 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,084 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: miktex-basic: '2.9': full_name: 'MiKTeX 2.9' @@ -15848,15 +15734,15 @@ miktex-basic: locale: en_US reboot: False -2020-03-04 12:06:09,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,510 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,510 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,526 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,526 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls -2020-03-04 12:06:09,526 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,526 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,526 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +2020-03-06 10:07:16,084 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,084 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,084 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,084 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:07:16,084 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,084 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,084 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: mongodb: '3.3.5': full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' @@ -15877,15 +15763,15 @@ mongodb: locale: en_US reboot: False -2020-03-04 12:06:09,526 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,526 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,526 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,526 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,526 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls -2020-03-04 12:06:09,541 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,541 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,541 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +2020-03-06 10:07:16,100 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,100 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,100 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,100 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:07:16,100 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,100 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,100 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ms-mbsa: '2.3.2211': @@ -15900,15 +15786,15 @@ ms-mbsa: locale: en_US reboot: False -2020-03-04 12:06:09,541 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,541 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,541 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,541 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,541 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls -2020-03-04 12:06:09,541 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,541 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,541 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +2020-03-06 10:07:16,100 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,100 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,100 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,116 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:07:16,116 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,116 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,116 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: ms-vcpp-2005-atl-redist_x64: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15920,15 +15806,15 @@ ms-vcpp-2005-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,557 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,557 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,557 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,557 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,557 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls -2020-03-04 12:06:09,557 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,557 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,576 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +2020-03-06 10:07:16,116 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,116 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,116 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,116 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:07:16,116 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,116 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,116 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: ms-vcpp-2005-atl-redist_x86: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15940,15 +15826,15 @@ ms-vcpp-2005-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,576 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,131 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,576 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,576 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,576 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,576 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls -2020-03-04 12:06:09,576 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,576 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,576 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +2020-03-06 10:07:16,131 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,131 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,131 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,131 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:07:16,131 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,131 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,131 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: ms-vcpp-2005-redist_x64: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15960,15 +15846,15 @@ ms-vcpp-2005-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,576 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,131 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,576 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,576 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,592 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,592 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls -2020-03-04 12:06:09,592 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,592 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,592 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +2020-03-06 10:07:16,131 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,131 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,131 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,131 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:07:16,147 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,147 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,147 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: ms-vcpp-2005-redist_x86: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15980,15 +15866,15 @@ ms-vcpp-2005-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,592 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,147 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,592 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,592 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,592 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,592 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls -2020-03-04 12:06:09,592 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,607 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.015603780746459961 -2020-03-04 12:06:09,607 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +2020-03-06 10:07:16,147 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,147 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,147 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,147 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:07:16,147 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,147 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,162 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: ms-vcpp-2005-sp1-mfc-redist_x64: '8.0.61000': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16000,15 +15886,15 @@ ms-vcpp-2005-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,162 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,607 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,607 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,607 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,607 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls -2020-03-04 12:06:09,607 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,607 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,607 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +2020-03-06 10:07:16,162 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,162 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,162 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,162 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:07:16,162 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,184 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.022054672241210938 +2020-03-06 10:07:16,184 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: ms-vcpp-2005-sp1-mfc-redist_x86: '8.0.61001': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16020,15 +15906,15 @@ ms-vcpp-2005-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,184 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,623 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015498161315917969 -2020-03-04 12:06:09,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,623 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls -2020-03-04 12:06:09,623 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,623 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,623 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +2020-03-06 10:07:16,184 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,184 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,184 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,184 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:07:16,184 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,184 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,199 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: ms-vcpp-2005-sp1-redist_x64: '8.0.59192': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16040,15 +15926,15 @@ ms-vcpp-2005-sp1-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,623 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,199 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,623 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,623 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,639 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls -2020-03-04 12:06:09,639 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,639 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,639 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +2020-03-06 10:07:16,199 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,199 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,199 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,199 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:07:16,199 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,199 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,199 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: ms-vcpp-2005-sp1-redist_x86: '8.0.59193': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16060,15 +15946,15 @@ ms-vcpp-2005-sp1-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,639 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,199 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,639 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,639 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,639 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,639 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls -2020-03-04 12:06:09,639 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,639 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,639 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +2020-03-06 10:07:16,199 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,215 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,215 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,215 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:07:16,215 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,215 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,215 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: ms-vcpp-2008-redist_x64: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' @@ -16080,15 +15966,15 @@ ms-vcpp-2008-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,215 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,654 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,654 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,654 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,654 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls -2020-03-04 12:06:09,654 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,654 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,654 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +2020-03-06 10:07:16,215 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,231 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,231 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,231 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:07:16,231 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,231 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,231 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: ms-vcpp-2008-redist_x86: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' @@ -16100,15 +15986,15 @@ ms-vcpp-2008-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,231 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,654 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,654 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,670 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,670 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls -2020-03-04 12:06:09,670 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,670 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,670 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +2020-03-06 10:07:16,231 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,231 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,246 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,246 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:07:16,246 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,246 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,246 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: ms-vcpp-2008-sp1-atl-redist_x64: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' @@ -16120,15 +16006,15 @@ ms-vcpp-2008-sp1-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,670 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,246 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,670 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,670 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,670 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,670 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls -2020-03-04 12:06:09,670 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,670 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,686 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +2020-03-06 10:07:16,246 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,246 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,262 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,262 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:07:16,262 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,262 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,262 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: ms-vcpp-2008-sp1-atl-redist_x86: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' @@ -16140,15 +16026,15 @@ ms-vcpp-2008-sp1-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,262 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,686 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,686 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,686 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,686 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls -2020-03-04 12:06:09,686 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,686 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,686 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +2020-03-06 10:07:16,262 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,262 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,262 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,278 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:07:16,278 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,278 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,278 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: ms-vcpp-2008-sp1-mfc-redist_x64: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' @@ -16160,15 +16046,15 @@ ms-vcpp-2008-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,686 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,701 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,701 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,701 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls -2020-03-04 12:06:09,701 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,701 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,701 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +2020-03-06 10:07:16,278 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,278 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,278 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,278 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:07:16,278 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,294 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.01598358154296875 +2020-03-06 10:07:16,294 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: ms-vcpp-2008-sp1-mfc-redist_x86: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' @@ -16180,15 +16066,15 @@ ms-vcpp-2008-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,701 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,701 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,701 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,701 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,701 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls -2020-03-04 12:06:09,717 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,717 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,717 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +2020-03-06 10:07:16,294 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,294 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,294 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,294 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:07:16,294 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,294 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,294 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: ms-vcpp-2010-sp1-mfc-redist_x64: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' @@ -16200,15 +16086,15 @@ ms-vcpp-2010-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,717 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,717 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,717 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,717 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls -2020-03-04 12:06:09,717 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,717 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,717 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +2020-03-06 10:07:16,309 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.015792369842529297 +2020-03-06 10:07:16,309 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,309 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,309 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:07:16,309 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,309 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,309 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: ms-vcpp-2010-sp1-mfc-redist_x86: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' @@ -16220,15 +16106,15 @@ ms-vcpp-2010-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,733 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.016013383865356445 -2020-03-04 12:06:09,733 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,733 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,733 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls -2020-03-04 12:06:09,733 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,733 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,733 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +2020-03-06 10:07:16,309 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,309 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,309 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,309 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:07:16,325 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,325 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,325 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: ms-vcpp-2012-redist_x64: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' @@ -16240,15 +16126,15 @@ ms-vcpp-2012-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,733 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,733 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,733 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,733 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,748 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls -2020-03-04 12:06:09,748 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,748 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,748 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +2020-03-06 10:07:16,325 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,325 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,325 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,325 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:07:16,325 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,325 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,341 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: ms-vcpp-2012-redist_x86: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' @@ -16260,15 +16146,15 @@ ms-vcpp-2012-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,748 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,748 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,748 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,748 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,748 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls -2020-03-04 12:06:09,748 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,748 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,764 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +2020-03-06 10:07:16,341 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,341 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,341 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,341 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:07:16,341 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,341 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,341 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: ms-vcpp-2013-redist_x64: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' @@ -16280,15 +16166,15 @@ ms-vcpp-2013-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,764 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,341 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,764 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,764 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,764 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,764 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls -2020-03-04 12:06:09,764 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,764 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,764 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +2020-03-06 10:07:16,341 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,357 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,357 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,357 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:07:16,357 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,357 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,357 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: ms-vcpp-2013-redist_x86: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' @@ -16300,15 +16186,15 @@ ms-vcpp-2013-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,764 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,357 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,764 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,764 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,779 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,779 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls -2020-03-04 12:06:09,779 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,779 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,779 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +2020-03-06 10:07:16,357 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,357 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,357 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,372 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:07:16,372 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,372 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,372 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: ms-vcpp-2015-build-tools: '14.0.25420.1': full_name: 'Microsoft Visual C++ Build Tools' @@ -16319,15 +16205,15 @@ ms-vcpp-2015-build-tools: locale: en_US reboot: False -2020-03-04 12:06:09,779 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,372 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,779 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,779 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,779 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,779 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls -2020-03-04 12:06:09,779 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,779 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,795 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +2020-03-06 10:07:16,372 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,372 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,372 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,372 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:07:16,372 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,372 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,388 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: ms-vcpp-2015-redist_x64: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' @@ -16352,15 +16238,15 @@ ms-vcpp-2015-redist_x64: # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} -2020-03-04 12:06:09,795 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,795 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,795 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,795 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,795 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls -2020-03-04 12:06:09,795 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,795 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,795 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +2020-03-06 10:07:16,388 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,388 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,388 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,388 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:07:16,388 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,388 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,388 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: ms-vcpp-2015-redist_x86: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' @@ -16385,15 +16271,15 @@ ms-vcpp-2015-redist_x86: # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} -2020-03-04 12:06:09,795 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,795 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,810 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,810 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,810 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls -2020-03-04 12:06:09,810 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,810 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,810 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +2020-03-06 10:07:16,388 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,404 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:07:16,404 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,404 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,404 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: ms-vcpp-2017-redist_x64: '14.20.27508.1': full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' @@ -16414,15 +16300,15 @@ ms-vcpp-2017-redist_x64: locale: en_US reboot: False -2020-03-04 12:06:09,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,404 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,810 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,810 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,810 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,826 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls -2020-03-04 12:06:09,826 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,826 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,826 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +2020-03-06 10:07:16,404 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,404 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,404 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:07:16,419 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,419 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,419 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: ms-vcpp-2017-redist_x86: '14.11.25325.0': full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' @@ -16434,15 +16320,15 @@ ms-vcpp-2017-redist_x86: locale: en_US reboot: False -2020-03-04 12:06:09,826 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,419 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,826 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,826 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,826 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,826 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls -2020-03-04 12:06:09,826 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,826 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,843 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: +2020-03-06 10:07:16,419 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,419 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,419 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,419 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:07:16,419 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,419 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,437 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: @@ -16459,15 +16345,15 @@ mucommander: reboot: False -2020-03-04 12:06:09,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,843 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,843 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,843 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,843 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls -2020-03-04 12:06:09,843 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,843 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,843 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +2020-03-06 10:07:16,437 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,437 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,437 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,437 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:07:16,437 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,437 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,437 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: mysql-essential: '5.1.73': full_name: 'MySQL Server 5.1' @@ -16481,15 +16367,15 @@ mysql-essential: locale: en_US reboot: False -2020-03-04 12:06:09,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,451 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,857 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,857 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,857 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,857 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls -2020-03-04 12:06:09,857 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,857 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,857 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +2020-03-06 10:07:16,451 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,451 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,451 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,451 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:07:16,451 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,451 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,451 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: mysql-installer-community: '1.4.3.0': full_name: 'MySQL Installer - Community' @@ -16505,15 +16391,15 @@ mysql-installer-community: # https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html # https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html -2020-03-04 12:06:09,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,451 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,857 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,857 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,873 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,873 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls -2020-03-04 12:06:09,873 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,873 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,873 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +2020-03-06 10:07:16,451 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,466 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,466 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,466 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:07:16,466 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,466 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,466 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: mysql-workbench-community: '8.0.15': @@ -16550,15 +16436,15 @@ mysql-workbench-community: # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html -2020-03-04 12:06:09,873 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,466 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,873 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,873 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,873 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,873 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls -2020-03-04 12:06:09,889 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,889 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,889 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +2020-03-06 10:07:16,466 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,466 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,481 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,481 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:07:16,481 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,481 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,481 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: never10: '1.3': full_name: 'Never 10 (GRC)' @@ -16571,15 +16457,15 @@ never10: reboot: False # download it from https://www.grc.com/never10.htm -2020-03-04 12:06:09,889 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,481 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,889 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,889 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,889 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,889 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls -2020-03-04 12:06:09,889 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,889 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,904 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +2020-03-06 10:07:16,481 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,481 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,481 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,481 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:07:16,498 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,498 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0161435604095459 +2020-03-06 10:07:16,498 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: # Please note that per # https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows # the MSI uninstall does not remove files or settings, @@ -16740,15 +16626,15 @@ newrelic-infra: reboot: False -2020-03-04 12:06:09,904 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,498 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,904 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,904 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,904 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,904 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls -2020-03-04 12:06:09,904 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,904 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,904 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +2020-03-06 10:07:16,498 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,498 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,498 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,513 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:07:16,513 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,513 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,513 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: nextcloud-client: '2.2.3.4': @@ -16842,15 +16728,15 @@ nextcloud-client: reboot: False -2020-03-04 12:06:09,920 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,513 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,920 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,920 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,920 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,920 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls -2020-03-04 12:06:09,920 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,920 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,935 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: +2020-03-06 10:07:16,513 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,513 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,513 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,513 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:07:16,529 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,529 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,529 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: # just 32-bit x86 installer available @@ -16880,15 +16766,15 @@ nmap: reboot: False -2020-03-04 12:06:09,935 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,529 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,935 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,935 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls -2020-03-04 12:06:09,935 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,935 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,935 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +2020-03-06 10:07:16,529 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,529 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,529 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,544 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:07:16,544 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,544 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,544 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: node.js-lts: '12.13.1': @@ -16976,15 +16862,15 @@ node.js-lts: reboot: False -2020-03-04 12:06:09,951 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,544 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,951 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,951 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls -2020-03-04 12:06:09,951 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,951 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,967 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +2020-03-06 10:07:16,544 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,544 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,560 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,560 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:07:16,560 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,560 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,560 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: node.js: '13.1.0': @@ -17108,15 +16994,15 @@ node.js: reboot: False -2020-03-04 12:06:09,967 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,560 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,967 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,967 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,967 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,967 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls -2020-03-04 12:06:09,967 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,967 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,983 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +2020-03-06 10:07:16,560 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,575 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,575 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,575 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:07:16,575 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,575 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,575 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: nomacs: '3.8.0': @@ -17130,15 +17016,15 @@ nomacs: reboot: False -2020-03-04 12:06:09,983 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,575 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:09,983 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:09,983 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:09,983 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:09,983 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls -2020-03-04 12:06:09,983 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:09,983 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:09,998 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +2020-03-06 10:07:16,575 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,575 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,575 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,591 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:07:16,591 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,591 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,591 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: # just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. @@ -17335,15 +17221,15 @@ npp: # the 64-bit installer is available from: # https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe -2020-03-04 12:06:10,045 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,591 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,045 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.0464324951171875 -2020-03-04 12:06:10,045 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,045 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,054 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls -2020-03-04 12:06:10,054 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,054 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,054 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +2020-03-06 10:07:16,591 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,607 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,607 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,607 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:07:16,607 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,607 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,607 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: nsclient: @@ -17500,15 +17386,15 @@ nsclient: reboot: False -2020-03-04 12:06:10,070 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,070 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.015439987182617188 -2020-03-04 12:06:10,070 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,070 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,070 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls -2020-03-04 12:06:10,070 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,086 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.01633167266845703 -2020-03-04 12:06:10,086 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +2020-03-06 10:07:16,624 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,624 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,624 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,624 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:07:16,624 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,624 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,640 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: # Define versions @@ -17677,15 +17563,15 @@ nsis: -2020-03-04 12:06:10,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('nsis', OrderedDict([('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,086 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,086 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,086 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,101 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls -2020-03-04 12:06:10,101 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,101 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,101 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +2020-03-06 10:07:16,640 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,640 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,640 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,640 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:07:16,640 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,656 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.01609516143798828 +2020-03-06 10:07:16,656 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: # Install Meinberg NTP daemon for Windows # Note: To do a silent installation, this installer needs a setup file named # setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. @@ -17727,29 +17613,29 @@ ntp: reboot: False -2020-03-04 12:06:10,101 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,101 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,101 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,101 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,101 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls -2020-03-04 12:06:10,117 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,117 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,117 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: +2020-03-06 10:07:16,656 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,656 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,656 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,656 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:07:16,656 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,671 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.015128850936889648 +2020-03-06 10:07:16,671 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: nunit-console: - '3.9.0': - full_name: 'NUnit Console 3.9.0' + '3.8.0': + full_name: 'NUnit Console 3.8.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False @@ -17770,29 +17656,29 @@ nunit-console: - '3.8.0': - full_name: 'NUnit Console 3.8.0' + '3.9.0': + full_name: 'NUnit Console 3.9.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False -2020-03-04 12:06:10,117 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: -OrderedDict([('nunit-console', OrderedDict([('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:06:10,117 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,117 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,133 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,133 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls -2020-03-04 12:06:10,133 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,133 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,133 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +2020-03-06 10:07:16,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:07:16,671 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,671 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,671 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,671 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:07:16,671 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,671 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,687 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: nxlog: '2.10.2150': full_name: 'NXLog-CE' @@ -17804,15 +17690,15 @@ nxlog: locale: en_US reboot: False -2020-03-04 12:06:10,133 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,133 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,133 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,133 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,133 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls -2020-03-04 12:06:10,133 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,149 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.016358375549316406 -2020-03-04 12:06:10,149 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +2020-03-06 10:07:16,687 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,687 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,687 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,687 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:07:16,687 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,703 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.016095399856567383 +2020-03-06 10:07:16,703 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -17850,15 +17736,15 @@ octopus-tentacle: reboot: False -2020-03-04 12:06:10,149 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,703 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,149 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,149 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,149 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,149 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls -2020-03-04 12:06:10,149 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,165 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.015601634979248047 -2020-03-04 12:06:10,165 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +2020-03-06 10:07:16,703 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,703 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,703 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,703 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:07:16,703 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,719 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.015462160110473633 +2020-03-06 10:07:16,719 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: # Source: http://openlp.org/ # just 32-bit x86 installer available @@ -17888,15 +17774,15 @@ openlp: reboot: False -2020-03-04 12:06:10,165 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,165 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,165 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,165 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,165 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls -2020-03-04 12:06:10,165 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,180 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.015163183212280273 -2020-03-04 12:06:10,180 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +2020-03-06 10:07:16,719 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,719 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,719 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,719 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:07:16,719 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,734 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.015159130096435547 +2020-03-06 10:07:16,734 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: openoffice: '4.1.2': full_name: 'OpenOffice 4.1.2' @@ -17929,15 +17815,15 @@ openoffice: # 'fi', 'fr', 'da', 'de', 'bg', 'ast' # -2020-03-04 12:06:10,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,180 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,180 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,180 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,180 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls -2020-03-04 12:06:10,180 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,199 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.01900935173034668 -2020-03-04 12:06:10,199 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +2020-03-06 10:07:16,734 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,734 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,734 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,734 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:07:16,734 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,751 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.017183542251586914 +2020-03-06 10:07:16,751 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18109,15 +17995,15 @@ openvpn: # /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's # /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's -2020-03-04 12:06:10,199 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,199 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,199 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,199 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,211 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls -2020-03-04 12:06:10,211 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,211 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,211 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +2020-03-06 10:07:16,751 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,765 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,765 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,765 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:07:16,765 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,765 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,765 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: # Performant endpoint visibility https://osquery.io/ @@ -18170,15 +18056,15 @@ osquery: reboot: False -2020-03-04 12:06:10,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:06:10,211 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,211 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,211 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,211 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls -2020-03-04 12:06:10,226 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,226 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,226 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +2020-03-06 10:07:16,765 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,780 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,780 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,780 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:07:16,797 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,797 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,797 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: # just 32-bit x86 installer available @@ -18192,9 +18078,9 @@ OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osqu ossec-agent: - '3.0.1': - full_name: 'OSSEC HIDS 3.0.1' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18216,18 +18102,6 @@ ossec-agent: - '2.9.4': - full_name: 'OSSEC HIDS 2.9.4' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' - install_flags: '/S' - uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' - uninstall_flags: '/S' - msiexec: False - locale: en_US - reboot: False - - - '2.9.2': full_name: 'OSSEC HIDS 2.9.2' installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' @@ -18240,9 +18114,9 @@ ossec-agent: - '3.0.0': - full_name: 'OSSEC HIDS 3.0.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18287,16 +18161,28 @@ ossec-agent: reboot: False + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + -2020-03-04 12:06:10,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: -OrderedDict([('ossec-agent', OrderedDict([('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,226 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,242 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,242 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,242 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls -2020-03-04 12:06:10,242 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,242 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,242 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +2020-03-06 10:07:16,797 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:07:16,797 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,812 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,812 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,812 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:07:16,812 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,812 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,812 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: owncloud: @@ -18353,15 +18239,15 @@ owncloud: reboot: False -2020-03-04 12:06:10,242 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,242 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,258 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,258 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,258 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls -2020-03-04 12:06:10,258 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,258 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,258 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +2020-03-06 10:07:16,828 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.015775203704833984 +2020-03-06 10:07:16,828 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,828 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,828 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:07:16,828 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,828 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,828 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: pandoc: '1.17.0.2': full_name: 'Pandoc 1.17.0.2' @@ -18373,15 +18259,15 @@ pandoc: locale: en_US reboot: False -2020-03-04 12:06:10,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,828 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,258 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,258 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,258 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,258 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls -2020-03-04 12:06:10,258 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,273 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.015193462371826172 -2020-03-04 12:06:10,273 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +2020-03-06 10:07:16,828 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,844 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,844 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,844 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:07:16,844 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,844 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,844 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: parallels-client-15: '15.0.3869': @@ -18397,15 +18283,15 @@ parallels-client-15: # The latest RAS clients can be downloaded for FREE from: # https://www.parallels.com/uk/products/ras/download/links/ -2020-03-04 12:06:10,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,844 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,273 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,273 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,273 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,273 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls -2020-03-04 12:06:10,273 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,273 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,290 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +2020-03-06 10:07:16,844 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,859 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,859 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,859 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:07:16,859 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,859 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,859 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18436,15 +18322,15 @@ pass4win: locale: en_US reboot: False -2020-03-04 12:06:10,290 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,290 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,290 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,290 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,290 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls -2020-03-04 12:06:10,290 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,290 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,290 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +2020-03-06 10:07:16,875 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.01574873924255371 +2020-03-06 10:07:16,875 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,875 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,875 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:07:16,875 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,875 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,875 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: passware-kit-agent: '13.1.7657': full_name: 'Passware Kit Agent (64-bit)' @@ -18456,15 +18342,15 @@ passware-kit-agent: locale: en_US reboot: False -2020-03-04 12:06:10,290 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,290 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,305 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,305 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,305 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls -2020-03-04 12:06:10,305 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,305 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,305 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +2020-03-06 10:07:16,875 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,891 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:07:16,891 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,891 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,891 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: passware-kit-forensic: '13.1.7657': full_name: 'Passware Kit Forensic (64-bit)' @@ -18476,15 +18362,15 @@ passware-kit-forensic: locale: en_US reboot: False -2020-03-04 12:06:10,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,891 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,305 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,305 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,305 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,305 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls -2020-03-04 12:06:10,320 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,320 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,320 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +2020-03-06 10:07:16,891 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,891 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:07:16,906 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,906 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,906 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: # Source: https://patchmypc.net/ patchmypc-free: '3.0.1.1': @@ -18503,15 +18389,15 @@ patchmypc-free: locale: en_US reboot: False -2020-03-04 12:06:10,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,320 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,320 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,320 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,320 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls -2020-03-04 12:06:10,320 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,320 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,336 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +2020-03-06 10:07:16,906 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,906 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,906 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,906 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:07:16,906 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,906 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,923 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: pdf24creator: '8.8.2': @@ -18607,15 +18493,15 @@ pdf24creator: # Source: https://en.pdf24.org/ # Packagin info Source: https://chocolatey.org/packages/pdf24 -2020-03-04 12:06:10,336 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,923 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,336 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,336 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,336 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,336 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls -2020-03-04 12:06:10,336 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,336 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,336 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +2020-03-06 10:07:16,923 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,923 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,923 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,923 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:07:16,923 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,938 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.015496492385864258 +2020-03-06 10:07:16,938 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: # just 32-bit x86 installer available @@ -18631,15 +18517,15 @@ pdfcreator: locale: en_US reboot: False -2020-03-04 12:06:10,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,938 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,352 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,352 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,352 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,352 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls -2020-03-04 12:06:10,352 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,352 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,352 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +2020-03-06 10:07:16,938 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,938 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,938 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,938 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:07:16,938 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,953 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.015282630920410156 +2020-03-06 10:07:16,953 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: peazip: '6.0.0': @@ -18653,15 +18539,15 @@ peazip: locale: en_US reboot: False -2020-03-04 12:06:10,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,953 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,352 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,352 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,368 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,368 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls -2020-03-04 12:06:10,368 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,368 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,368 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: +2020-03-06 10:07:16,953 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,953 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,953 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,953 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:07:16,953 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,970 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.01615452766418457 +2020-03-06 10:07:16,970 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: @@ -18705,15 +18591,15 @@ pgadmin4: reboot: False -2020-03-04 12:06:10,368 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,368 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,383 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,383 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,383 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls -2020-03-04 12:06:10,383 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,383 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,383 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +2020-03-06 10:07:16,970 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,970 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,970 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,970 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:07:16,970 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,970 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,970 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: pgina: '3.1.8.0': full_name: 'pGina v3.1.8.0' @@ -18723,15 +18609,15 @@ pgina: locale: en_US reboot: False -2020-03-04 12:06:10,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:16,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,383 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,383 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,383 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,383 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls -2020-03-04 12:06:10,383 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,399 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.015783071517944336 -2020-03-04 12:06:10,399 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: +2020-03-06 10:07:16,985 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:16,985 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:16,985 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:16,985 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:07:16,985 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:16,985 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:16,985 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: # just 32-bit x86 installer available @@ -18750,15 +18636,15 @@ pidgin: reboot: False -2020-03-04 12:06:10,399 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,000 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,399 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,399 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,399 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,399 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls -2020-03-04 12:06:10,399 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,399 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,416 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +2020-03-06 10:07:17,000 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,000 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,000 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,000 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:07:17,000 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,000 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,000 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: # Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: # salt mid pkg.install postgresql version='"9.6"' @@ -18803,15 +18689,15 @@ postgresql: reboot: False -2020-03-04 12:06:10,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,016 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:06:10,416 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,416 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,416 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,416 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls -2020-03-04 12:06:10,416 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,416 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,431 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +2020-03-06 10:07:17,016 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,016 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,016 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,016 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:07:17,016 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,016 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,032 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: ### NOTE: You must accept the PowerBI Desktop EULA by setting the ### Pillar key `powerbi:desktop:accept_eula` to `True` in order to ### install this package. You can find a copy of the EULA at @@ -18833,15 +18719,15 @@ powerbi-desktop: msiexec: True reboot: False -2020-03-04 12:06:10,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:06:10,431 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,431 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,431 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,431 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls -2020-03-04 12:06:10,431 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,431 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,446 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +2020-03-06 10:07:17,032 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,032 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,032 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,032 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:07:17,032 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,048 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.015469789505004883 +2020-03-06 10:07:17,048 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: #PowerShell Core https://github.com/PowerShell/PowerShell @@ -18904,15 +18790,15 @@ powershell-core: reboot: False -2020-03-04 12:06:10,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,048 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:06:10,446 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,446 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,446 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,446 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls -2020-03-04 12:06:10,446 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,446 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,462 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +2020-03-06 10:07:17,048 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,048 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,048 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,048 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:07:17,048 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,064 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.016155242919921875 +2020-03-06 10:07:17,064 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: # Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems # WMI Exporter: https://github.com/martinlindhe/wmi_exporter # Prometheus Monitoring: https://prometheus.io/ @@ -19112,15 +18998,15 @@ prometheus-wmi-exporter: reboot: False -2020-03-04 12:06:10,462 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,064 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,462 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,462 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,462 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,462 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls -2020-03-04 12:06:10,462 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,479 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.016820192337036133 -2020-03-04 12:06:10,479 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +2020-03-06 10:07:17,064 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,064 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,079 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,079 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:07:17,079 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,079 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,079 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: putty: '0.73.0.0': @@ -19246,15 +19132,15 @@ putty: reboot: False -2020-03-04 12:06:10,479 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,479 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,493 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls -2020-03-04 12:06:10,493 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,493 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,493 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +2020-03-06 10:07:17,095 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.016060590744018555 +2020-03-06 10:07:17,095 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,095 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,095 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:07:17,095 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,095 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,110 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: python2_x64: @@ -19466,15 +19352,15 @@ python2_x64: reboot: False -2020-03-04 12:06:10,493 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,493 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,493 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,509 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,509 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls -2020-03-04 12:06:10,509 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,509 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,509 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +2020-03-06 10:07:17,110 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,110 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,110 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,110 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:07:17,110 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,126 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015787839889526367 +2020-03-06 10:07:17,126 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: python2_x86: @@ -19686,15 +19572,15 @@ python2_x86: reboot: False -2020-03-04 12:06:10,509 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,126 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,509 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,525 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,525 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,525 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls -2020-03-04 12:06:10,525 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,525 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,525 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: +2020-03-06 10:07:17,126 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,126 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,142 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,142 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:07:17,142 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,142 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,142 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: python3_x64: @@ -19831,15 +19717,15 @@ python3_x64: reboot: False -2020-03-04 12:06:10,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,157 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,541 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.016387462615966797 -2020-03-04 12:06:10,541 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,541 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,541 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls -2020-03-04 12:06:10,541 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,556 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.015316009521484375 -2020-03-04 12:06:10,556 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: +2020-03-06 10:07:17,157 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,157 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,157 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,157 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:07:17,157 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,173 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.016262054443359375 +2020-03-06 10:07:17,173 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: python3_x86: @@ -19966,15 +19852,15 @@ python3_x86: reboot: False -2020-03-04 12:06:10,556 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,173 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,556 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,574 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,574 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,574 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls -2020-03-04 12:06:10,574 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,574 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,574 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +2020-03-06 10:07:17,173 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,173 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,173 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,173 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:07:17,194 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,194 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,194 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -19991,15 +19877,15 @@ qemu: locale: en_US reboot: False -2020-03-04 12:06:10,574 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,588 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.01361703872680664 -2020-03-04 12:06:10,588 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,588 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,588 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls -2020-03-04 12:06:10,588 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,603 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.015462160110473633 -2020-03-04 12:06:10,603 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: +2020-03-06 10:07:17,194 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,194 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,194 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,194 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:07:17,194 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,210 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.01547098159790039 +2020-03-06 10:07:17,210 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: @@ -20015,15 +19901,15 @@ queueexplorerpro: locale: en_US reboot: False -2020-03-04 12:06:10,603 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,603 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,603 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,603 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,603 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls -2020-03-04 12:06:10,603 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,619 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.015952110290527344 -2020-03-04 12:06:10,619 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +2020-03-06 10:07:17,210 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,210 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,210 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,210 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:07:17,210 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,226 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.015849828720092773 +2020-03-06 10:07:17,226 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: quicktime: '7.79.80.95': full_name: 'QuickTime 7' @@ -20048,15 +19934,15 @@ quicktime: # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} -2020-03-04 12:06:10,619 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,619 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,619 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,619 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,619 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls -2020-03-04 12:06:10,619 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,619 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,635 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: +2020-03-06 10:07:17,226 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,226 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,226 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,226 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:07:17,226 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,241 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.015624284744262695 +2020-03-06 10:07:17,241 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: rabbitmq: @@ -20081,15 +19967,15 @@ rabbitmq: reboot: False -2020-03-04 12:06:10,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,241 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,635 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,635 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,635 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,635 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls -2020-03-04 12:06:10,635 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,635 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,635 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +2020-03-06 10:07:17,241 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,241 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,241 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,241 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:07:17,241 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,257 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.015384912490844727 +2020-03-06 10:07:17,257 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: rakudo-star_x86: '1.0.0': full_name: 'Rakudo Star 2016.01' @@ -20101,15 +19987,15 @@ rakudo-star_x86: locale: en_US reboot: False -2020-03-04 12:06:10,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,257 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,635 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,650 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,650 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,650 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls -2020-03-04 12:06:10,650 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,650 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,650 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +2020-03-06 10:07:17,257 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,257 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:07:17,257 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,257 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,273 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: rakudo-star_x64: '1.0.0': full_name: 'Rakudo Star 2016.04' @@ -20121,15 +20007,15 @@ rakudo-star_x64: locale: en_US reboot: False -2020-03-04 12:06:10,650 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,650 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,650 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,650 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,650 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls -2020-03-04 12:06:10,665 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,665 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,665 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +2020-03-06 10:07:17,273 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,273 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,273 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,273 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:07:17,273 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,273 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,288 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: rasclient: '16': @@ -20146,15 +20032,15 @@ rasclient: reboot: False -2020-03-04 12:06:10,665 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,665 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,665 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,665 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,665 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls -2020-03-04 12:06:10,681 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,681 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,681 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +2020-03-06 10:07:17,288 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,288 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:07:17,288 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,288 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,304 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: rdcman: '2.7.14060': full_name: 'Remote Desktop Connection Manager' @@ -20166,15 +20052,15 @@ rdcman: locale: en_US reboot: False -2020-03-04 12:06:10,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,681 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,681 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,681 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,681 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls -2020-03-04 12:06:10,681 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,681 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,698 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: +2020-03-06 10:07:17,304 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,304 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:07:17,304 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,304 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,304 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: rocketchat: @@ -20270,15 +20156,15 @@ rocketchat: reboot: False -2020-03-04 12:06:10,698 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,319 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,698 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,698 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,698 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,698 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls -2020-03-04 12:06:10,698 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,698 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,713 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +2020-03-06 10:07:17,319 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,319 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,319 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,319 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:07:17,319 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,319 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,335 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: rubyinstaller_x64: '2.2.3-p173': @@ -20312,15 +20198,15 @@ rubyinstaller_x64: reboot: False -2020-03-04 12:06:10,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,713 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,713 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,713 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,713 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls -2020-03-04 12:06:10,713 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,713 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,713 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +2020-03-06 10:07:17,335 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,335 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,335 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,335 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:07:17,335 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,335 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,351 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: rubyinstaller_x86: '2.2.3-p173': @@ -20364,15 +20250,15 @@ rubyinstaller_x86: reboot: False -2020-03-04 12:06:10,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,728 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.015653610229492188 -2020-03-04 12:06:10,728 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,728 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,728 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls -2020-03-04 12:06:10,728 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,728 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,745 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +2020-03-06 10:07:17,351 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,351 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,351 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,351 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:07:17,351 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,369 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.01840662956237793 +2020-03-06 10:07:17,369 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -20892,15 +20778,15 @@ salt-minion: -2020-03-04 12:06:10,745 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:06:10,745 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,745 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,745 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,745 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls -2020-03-04 12:06:10,761 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,761 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,761 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +2020-03-06 10:07:17,382 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.012553930282592773 +2020-03-06 10:07:17,382 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,382 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,382 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:07:17,382 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,382 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,382 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -21234,15 +21120,15 @@ salt-minion-py3: -2020-03-04 12:06:10,761 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:06:10,761 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,776 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,776 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,776 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls -2020-03-04 12:06:10,776 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,776 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,776 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +2020-03-06 10:07:17,398 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,398 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,424 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,424 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:07:17,424 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,424 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,424 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: sandboxie: '4.20': @@ -21256,15 +21142,15 @@ sandboxie: locale: en_US reboot: False -2020-03-04 12:06:10,776 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,424 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,776 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,776 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,776 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,792 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls -2020-03-04 12:06:10,792 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,792 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,792 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +2020-03-06 10:07:17,424 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,424 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,440 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,440 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:07:17,440 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,440 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,440 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: scaleout: latest: @@ -21278,15 +21164,15 @@ scaleout: locale: en_US reboot: False -2020-03-04 12:06:10,792 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,792 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,792 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,792 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,792 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls -2020-03-04 12:06:10,792 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,809 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.016579389572143555 -2020-03-04 12:06:10,809 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +2020-03-06 10:07:17,440 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,440 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,440 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,440 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:07:17,455 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,455 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,455 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: # just 32-bit x86 installer available @@ -21302,15 +21188,15 @@ secunia.psi: locale: en_US reboot: False -2020-03-04 12:06:10,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,809 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,809 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,809 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,809 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls -2020-03-04 12:06:10,809 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,823 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.014637470245361328 -2020-03-04 12:06:10,823 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: +2020-03-06 10:07:17,455 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,455 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,455 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,455 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:07:17,471 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,471 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,471 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: @@ -21380,15 +21266,15 @@ sensu: reboot: False -2020-03-04 12:06:10,823 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,823 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,823 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,840 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,840 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls -2020-03-04 12:06:10,840 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,840 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,840 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +2020-03-06 10:07:17,486 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.015304088592529297 +2020-03-06 10:07:17,486 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,486 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,486 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:07:17,486 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,486 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,486 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: sharpdevelop: '5.1.5134': full_name: 'SharpDevelop 5.1 RC' @@ -21427,15 +21313,15 @@ sharpdevelop: locale: en_US reboot: False -2020-03-04 12:06:10,840 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,486 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,840 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,840 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,840 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,840 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls -2020-03-04 12:06:10,855 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,855 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,855 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +2020-03-06 10:07:17,486 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,486 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,503 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,503 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:07:17,503 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,503 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,503 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: # just 32-bit x86 installer available @@ -21451,15 +21337,15 @@ skitch: locale: en_US reboot: False -2020-03-04 12:06:10,855 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,855 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,855 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,855 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,855 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls -2020-03-04 12:06:10,855 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,855 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,871 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +2020-03-06 10:07:17,503 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,503 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,503 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,503 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:07:17,518 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,518 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,518 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: skype-msi: '7.41.101': full_name: 'Skypeâ„¢ 7.41' @@ -21495,15 +21381,15 @@ skype-msi: # http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 # you can also check microsite http://skype.techygeekshome.info/ -2020-03-04 12:06:10,871 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,871 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,871 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,871 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,871 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls -2020-03-04 12:06:10,871 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,871 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,871 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +2020-03-06 10:07:17,518 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,518 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,518 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,518 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:07:17,518 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,534 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.015824079513549805 +2020-03-06 10:07:17,534 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: # just 32-bit x86 installer available @@ -21521,15 +21407,15 @@ skype: reboot: False -2020-03-04 12:06:10,886 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,886 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,886 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,886 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,886 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls -2020-03-04 12:06:10,886 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,886 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,886 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +2020-03-06 10:07:17,534 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,534 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,534 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,534 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:07:17,534 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,549 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.01559758186340332 +2020-03-06 10:07:17,549 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: #MSI machine-wide deployment package #The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. #It is multi-client-capable, meaning that it can be used by multiple users on one machine, @@ -21575,15 +21461,15 @@ slack-machine-msi: reboot: False -2020-03-04 12:06:10,886 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,902 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.015914440155029297 -2020-03-04 12:06:10,902 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,902 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,902 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls -2020-03-04 12:06:10,902 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,902 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,902 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +2020-03-06 10:07:17,549 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,549 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,549 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,549 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:07:17,549 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,565 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.015344858169555664 +2020-03-06 10:07:17,565 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: #MSI for per-user deployment package #The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. #The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. @@ -21602,15 +21488,15 @@ slack-user-msi: locale: en_US reboot: False -2020-03-04 12:06:10,902 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,902 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,902 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,917 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,917 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls -2020-03-04 12:06:10,917 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,917 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,917 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +2020-03-06 10:07:17,565 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,565 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,565 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,565 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:07:17,565 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,565 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,565 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: slack: 3.4.0: full_name: Slack @@ -21621,15 +21507,15 @@ slack: msiexec: True reboot: False -2020-03-04 12:06:10,917 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:06:10,917 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,917 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,917 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,917 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls -2020-03-04 12:06:10,917 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,917 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,934 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +2020-03-06 10:07:17,580 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,580 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,580 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,580 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:07:17,580 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,580 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,580 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: # just 32-bit x86 installer available @@ -21645,15 +21531,15 @@ smartmontools: locale: en_US reboot: False -2020-03-04 12:06:10,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,934 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,934 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,934 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,934 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls -2020-03-04 12:06:10,934 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,934 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,934 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +2020-03-06 10:07:17,580 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,596 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,596 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,596 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:07:17,596 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,596 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,596 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: # just 32-bit x86 installer available @@ -21669,15 +21555,15 @@ snmptools: locale: en_US reboot: False -2020-03-04 12:06:10,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,596 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,934 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,949 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,949 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,949 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls -2020-03-04 12:06:10,949 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,949 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,949 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: +2020-03-06 10:07:17,596 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,612 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,612 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,612 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:07:17,612 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,612 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,612 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: soapui: @@ -21694,15 +21580,15 @@ soapui: reboot: False -2020-03-04 12:06:10,949 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,949 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,949 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,965 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,965 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls -2020-03-04 12:06:10,965 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,965 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,965 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +2020-03-06 10:07:17,612 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,628 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,628 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,628 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:07:17,628 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,628 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,628 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: # just 32-bit x86 installer available @@ -21719,15 +21605,15 @@ software-informer: locale: en_US reboot: False -2020-03-04 12:06:10,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,628 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,965 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,965 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,965 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,965 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls -2020-03-04 12:06:10,980 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,980 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,980 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +2020-03-06 10:07:17,628 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,628 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,643 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,643 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:07:17,643 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,692 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.04919600486755371 +2020-03-06 10:07:17,692 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: sourcetree: '2.3.1.0': @@ -21943,15 +21829,15 @@ sourcetree: reboot: False -2020-03-04 12:06:10,980 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,980 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,996 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:10,996 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:10,996 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls -2020-03-04 12:06:10,996 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:10,996 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:10,996 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +2020-03-06 10:07:17,708 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,708 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,708 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,708 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:07:17,708 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,708 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,724 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: # just 32-bit x86 installer available @@ -21967,15 +21853,15 @@ spybot-anti-beacon: locale: en_US reboot: False -2020-03-04 12:06:10,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:10,996 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:10,996 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,012 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,012 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls -2020-03-04 12:06:11,012 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,012 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,012 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +2020-03-06 10:07:17,724 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,724 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,724 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,724 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:07:17,724 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,724 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,739 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: # just 32-bit x86 installer available @@ -21995,15 +21881,15 @@ spybot: # http://www.spybotupdates.biz/files/spybot-2.4.exe # http://spybot-mirror.com/files/spybot-2.4.exe -2020-03-04 12:06:11,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,739 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,012 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,012 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,012 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,012 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls -2020-03-04 12:06:11,027 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,027 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,027 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +2020-03-06 10:07:17,739 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,739 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,739 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,739 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:07:17,739 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,739 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,754 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -22032,15 +21918,15 @@ sscserv-free: reboot: False -2020-03-04 12:06:11,027 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,027 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,044 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,044 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,044 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls -2020-03-04 12:06:11,044 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,044 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,044 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +2020-03-06 10:07:17,754 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,754 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,754 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,754 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:07:17,754 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,771 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.016075611114501953 +2020-03-06 10:07:17,771 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: steam: latest: full_name: 'Steam' @@ -22051,15 +21937,15 @@ steam: uninstall_flags: '/S' reboot: False -2020-03-04 12:06:11,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,044 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,058 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,058 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,058 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls -2020-03-04 12:06:11,058 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,058 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,058 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +2020-03-06 10:07:17,771 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,771 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,771 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,771 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:07:17,771 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,792 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.021636009216308594 +2020-03-06 10:07:17,792 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available stellarium: @@ -22075,15 +21961,15 @@ stellarium: locale: en_US reboot: False -2020-03-04 12:06:11,058 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,792 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,058 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,075 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,075 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,075 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls -2020-03-04 12:06:11,075 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,075 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,075 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +2020-03-06 10:07:17,792 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,792 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,792 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,792 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:07:17,792 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,808 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.015428304672241211 +2020-03-06 10:07:17,808 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: strawberryperl_x64: '5.26.1001': @@ -22107,15 +21993,15 @@ strawberryperl_x64: reboot: False -2020-03-04 12:06:11,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,808 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,075 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,090 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,090 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,090 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls -2020-03-04 12:06:11,090 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,090 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,090 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +2020-03-06 10:07:17,808 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,808 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,808 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,808 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:07:17,808 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,808 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,824 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: strawberryperl_x86: '5.26.1001': @@ -22139,15 +22025,15 @@ strawberryperl_x86: reboot: False -2020-03-04 12:06:11,090 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,824 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,090 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,090 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,105 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,105 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls -2020-03-04 12:06:11,105 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,105 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,105 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +2020-03-06 10:07:17,824 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,824 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,824 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,824 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:07:17,824 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,839 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.015119552612304688 +2020-03-06 10:07:17,839 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: # just 32-bit x86 installer available @@ -22163,15 +22049,15 @@ stunnel: locale: en_US reboot: False -2020-03-04 12:06:11,105 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,839 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,105 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,105 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,105 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,105 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls -2020-03-04 12:06:11,121 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,121 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,121 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +2020-03-06 10:07:17,839 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,839 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,839 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,839 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:07:17,839 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,839 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,839 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: subinacl: '5.2.3790.1164': full_name: 'Windows Resource Kit Tools - SubInAcl.exe' @@ -22183,15 +22069,15 @@ subinacl: locale: en_US reboot: False -2020-03-04 12:06:11,121 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,839 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,121 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,121 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,121 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,121 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls -2020-03-04 12:06:11,121 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,121 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,137 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: +2020-03-06 10:07:17,839 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,854 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,854 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,854 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:07:17,854 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,854 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,854 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: @@ -22206,15 +22092,15 @@ sumatrapdf: locale: en_US reboot: False -2020-03-04 12:06:11,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,137 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,137 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,137 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,137 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls -2020-03-04 12:06:11,137 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,137 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,137 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +2020-03-06 10:07:17,854 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,854 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,871 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,871 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:07:17,871 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,871 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,871 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: svn: '1.8.13': full_name: 'Subversion' @@ -22235,15 +22121,15 @@ svn: locale: en_US reboot: False -2020-03-04 12:06:11,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,871 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,137 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,152 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,152 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,152 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls -2020-03-04 12:06:11,152 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,152 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,152 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +2020-03-06 10:07:17,871 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,871 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,871 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,871 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:07:17,887 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,887 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,887 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: # just 32-bit x86 installer available @@ -22263,15 +22149,15 @@ teamviewer: locale: en_US reboot: False -2020-03-04 12:06:11,152 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,887 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,152 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,152 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,171 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,171 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls -2020-03-04 12:06:11,171 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,171 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,171 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +2020-03-06 10:07:17,887 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,887 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,887 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,887 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:07:17,902 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,902 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,902 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: # just 32-bit x86 installer available @@ -22291,15 +22177,15 @@ teamviewer_host: locale: en_US reboot: False -2020-03-04 12:06:11,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,902 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,171 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,171 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,186 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,186 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls -2020-03-04 12:06:11,186 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,186 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,186 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +2020-03-06 10:07:17,902 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,902 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,902 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,902 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:07:17,917 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,917 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,917 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: # just 32-bit x86 installer available @@ -22318,15 +22204,15 @@ teracopy: locale: en_US reboot: False -2020-03-04 12:06:11,186 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,917 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,186 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,186 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,186 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,186 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls -2020-03-04 12:06:11,201 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,201 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,201 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +2020-03-06 10:07:17,917 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,917 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,917 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,917 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:07:17,917 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,933 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.015865087509155273 +2020-03-06 10:07:17,933 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: # just 32-bit x86 installer available @@ -22342,15 +22228,15 @@ texmaker: locale: en_US reboot: False -2020-03-04 12:06:11,201 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,933 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,201 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,201 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,201 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,201 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls -2020-03-04 12:06:11,201 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,218 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.01656937599182129 -2020-03-04 12:06:11,218 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: +2020-03-06 10:07:17,933 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,933 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,933 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,949 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:07:17,949 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,949 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,949 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: texniccenter: '2.02 Stable': @@ -22365,15 +22251,15 @@ texniccenter: locale: en_US reboot: False -2020-03-04 12:06:11,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,949 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,218 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,218 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,218 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,218 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls -2020-03-04 12:06:11,218 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,218 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,232 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +2020-03-06 10:07:17,949 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,949 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,949 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,949 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:07:17,965 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,965 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:17,965 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: # just 32-bit x86 installer available @@ -22389,15 +22275,15 @@ texstudio: locale: en_US reboot: False -2020-03-04 12:06:11,232 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,232 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,232 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,232 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,232 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls -2020-03-04 12:06:11,232 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,232 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,232 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +2020-03-06 10:07:17,965 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,965 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,965 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,965 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:07:17,965 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,981 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.015958786010742188 +2020-03-06 10:07:17,981 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: # just 32-bit x86 installer available @@ -22413,15 +22299,15 @@ texworks: locale: en_US reboot: False -2020-03-04 12:06:11,232 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,981 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,248 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.01556396484375 -2020-03-04 12:06:11,248 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,248 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,248 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls -2020-03-04 12:06:11,248 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,248 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,248 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +2020-03-06 10:07:17,981 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:17,981 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:17,981 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:17,981 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:07:17,981 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:17,996 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.015287399291992188 +2020-03-06 10:07:17,996 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: # just 32-bit x86 installer available @@ -22699,15 +22585,15 @@ thunderbird: reboot: False -2020-03-04 12:06:11,263 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:17,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,263 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,263 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,263 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,263 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls -2020-03-04 12:06:11,263 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,280 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.01679706573486328 -2020-03-04 12:06:11,280 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +2020-03-06 10:07:17,996 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,012 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,012 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,012 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:07:18,012 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,012 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,027 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: tightvnc: @@ -22823,15 +22709,15 @@ tightvnc: reboot: False -2020-03-04 12:06:11,280 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,027 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,280 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,280 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,280 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,280 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls -2020-03-04 12:06:11,280 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,295 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.01464080810546875 -2020-03-04 12:06:11,295 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +2020-03-06 10:07:18,027 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,027 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,027 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,027 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:07:18,027 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,027 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,027 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: todotxt.net: 'Not Found': # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22847,15 +22733,15 @@ todotxt.net: locale: en_US reboot: False -2020-03-04 12:06:11,295 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,043 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,295 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,295 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,295 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,295 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls -2020-03-04 12:06:11,295 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,295 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,311 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +2020-03-06 10:07:18,043 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,043 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,043 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,043 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:07:18,043 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,043 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,043 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22871,15 +22757,15 @@ todour: locale: en_US reboot: False -2020-03-04 12:06:11,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,043 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,311 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,311 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,311 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,311 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls -2020-03-04 12:06:11,311 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,311 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,311 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +2020-03-06 10:07:18,058 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.01571178436279297 +2020-03-06 10:07:18,058 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,058 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,058 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:07:18,058 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,058 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,058 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: # just 32-bit x86 installer available @@ -22896,15 +22782,15 @@ tortoise-bzr: locale: en_US reboot: False -2020-03-04 12:06:11,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,058 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,326 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.014950990676879883 -2020-03-04 12:06:11,326 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,326 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,326 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls -2020-03-04 12:06:11,326 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,326 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,326 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +2020-03-06 10:07:18,074 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.015833616256713867 +2020-03-06 10:07:18,074 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,074 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,074 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:07:18,074 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,074 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,090 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: # Source: https://tortoisegit.org/ tortoise-git: @@ -23065,15 +22951,15 @@ tortoise-git: reboot: False -2020-03-04 12:06:11,326 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,090 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,343 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.016759872436523438 -2020-03-04 12:06:11,343 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,343 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,343 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls -2020-03-04 12:06:11,343 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,343 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,343 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +2020-03-06 10:07:18,090 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,090 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,090 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,090 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:07:18,090 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,090 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,106 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: # Source: http://tortoisehg.bitbucket.org/ tortoise-hg: '3.6.2': @@ -23101,15 +22987,15 @@ tortoise-hg: # Need to download from source site above, so it will append proper aws key credentials # place downloaded msi in master's win_repo-ng -2020-03-04 12:06:11,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,357 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.014571189880371094 -2020-03-04 12:06:11,357 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,357 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,357 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls -2020-03-04 12:06:11,357 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,357 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,357 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +2020-03-06 10:07:18,106 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,106 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,106 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,106 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:07:18,106 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,106 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,106 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: # Source: http://tortoisesvn.net/ tortoise-svn: '1.9.27285': @@ -23125,15 +23011,15 @@ tortoise-svn: reboot: False -2020-03-04 12:06:11,357 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,121 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,357 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,357 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,373 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,373 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls -2020-03-04 12:06:11,373 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,373 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,373 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +2020-03-06 10:07:18,121 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,121 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,121 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,121 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:07:18,121 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,121 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,121 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: # just 32-bit x86 installer available @@ -23149,15 +23035,15 @@ truecrypt: locale: en_US reboot: False -2020-03-04 12:06:11,373 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,121 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,373 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,373 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,373 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,373 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls -2020-03-04 12:06:11,389 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,389 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,389 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +2020-03-06 10:07:18,137 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.015518665313720703 +2020-03-06 10:07:18,137 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,137 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,137 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:07:18,137 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,137 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,137 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ultradefrag: @@ -23173,15 +23059,15 @@ ultradefrag: locale: en_US reboot: False -2020-03-04 12:06:11,389 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,389 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,389 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,389 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,389 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls -2020-03-04 12:06:11,389 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,389 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,405 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +2020-03-06 10:07:18,137 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,137 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,137 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,153 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:07:18,153 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,153 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,153 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available urlrewrite: @@ -23208,15 +23094,15 @@ urlrewrite: locale: en_US reboot: False -2020-03-04 12:06:11,405 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,405 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,405 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,405 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,405 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls -2020-03-04 12:06:11,405 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,420 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.014463424682617188 -2020-03-04 12:06:11,420 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +2020-03-06 10:07:18,153 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,153 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,153 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,153 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:07:18,168 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,168 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,168 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: usbdlm: '5.2.7.0': @@ -23230,15 +23116,15 @@ usbdlm: locale: en_US reboot: False -2020-03-04 12:06:11,420 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,168 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,420 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,420 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,420 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,420 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls -2020-03-04 12:06:11,420 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,437 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.01656174659729004 -2020-03-04 12:06:11,437 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +2020-03-06 10:07:18,168 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,168 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,188 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,188 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:07:18,188 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,188 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,188 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: vagrant: @@ -23744,15 +23630,15 @@ vagrant: reboot: False -2020-03-04 12:06:11,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,204 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,457 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.020795583724975586 -2020-03-04 12:06:11,457 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,457 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,457 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls -2020-03-04 12:06:11,457 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,457 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,457 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +2020-03-06 10:07:18,204 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,204 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,204 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,220 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:07:18,220 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,220 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,220 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: vcforpython27: '9.0.1.30729': full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' @@ -23764,15 +23650,15 @@ vcforpython27: locale: en_US reboot: False -2020-03-04 12:06:11,457 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,220 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,457 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,457 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,457 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,457 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls -2020-03-04 12:06:11,457 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,476 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.019095420837402344 -2020-03-04 12:06:11,476 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: +2020-03-06 10:07:18,220 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,220 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,220 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,220 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:07:18,220 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,236 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.01602625846862793 +2020-03-06 10:07:18,236 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: @@ -23804,15 +23690,15 @@ vcxsrv: reboot: False -2020-03-04 12:06:11,476 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,236 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,476 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,476 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,476 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,476 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls -2020-03-04 12:06:11,476 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,476 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,476 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: +2020-03-06 10:07:18,236 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,236 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,236 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,236 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:07:18,236 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,251 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.015277624130249023 +2020-03-06 10:07:18,251 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: verysleepy: @@ -23827,15 +23713,15 @@ verysleepy: locale: en_US reboot: False -2020-03-04 12:06:11,496 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,251 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,496 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,496 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,496 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,496 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls -2020-03-04 12:06:11,496 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,496 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,496 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +2020-03-06 10:07:18,251 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,251 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,251 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,251 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:07:18,251 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,268 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.017429351806640625 +2020-03-06 10:07:18,268 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -23866,15 +23752,15 @@ veyon: reboot: False -2020-03-04 12:06:11,496 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,496 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,496 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,515 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,515 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls -2020-03-04 12:06:11,515 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,515 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,515 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +2020-03-06 10:07:18,268 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,268 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,268 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,268 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:07:18,268 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,283 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.014634370803833008 +2020-03-06 10:07:18,283 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: # Version 5.1 and older are no longer supported by Oracle # https://www.virtualbox.org/wiki/Download_Old_Builds @@ -23937,15 +23823,15 @@ virtualbox: reboot: False -2020-03-04 12:06:11,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,283 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,515 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,515 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,538 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,538 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls -2020-03-04 12:06:11,538 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,538 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,538 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: +2020-03-06 10:07:18,283 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,300 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,300 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,300 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:07:18,300 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,300 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,300 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: @@ -23980,15 +23866,15 @@ viscosity: reboot: False -2020-03-04 12:06:11,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,300 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:06:11,538 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,538 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,538 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,538 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls -2020-03-04 12:06:11,538 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,557 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.018807411193847656 -2020-03-04 12:06:11,557 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +2020-03-06 10:07:18,300 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,316 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,316 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,316 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:07:18,316 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,316 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,316 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: #Vivaldi is a Chromium-based browser #https://vivaldi.com @@ -24007,15 +23893,15 @@ vivaldi: locale: en_US reboot: False -2020-03-04 12:06:11,557 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,316 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,557 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,557 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,557 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,557 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls -2020-03-04 12:06:11,557 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,557 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,574 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +2020-03-06 10:07:18,316 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,331 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,331 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,331 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:07:18,331 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,331 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,331 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available vlc: @@ -24165,15 +24051,15 @@ vlc: reboot: False -2020-03-04 12:06:11,574 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,574 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,574 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,574 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,574 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls -2020-03-04 12:06:11,574 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,588 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.013664484024047852 -2020-03-04 12:06:11,588 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +2020-03-06 10:07:18,346 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.015623807907104492 +2020-03-06 10:07:18,346 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,346 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,346 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:07:18,346 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,346 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,363 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: vs-community: 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) full_name: @@ -24192,15 +24078,15 @@ vs-community: --norestart reboot: False -2020-03-04 12:06:11,588 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,363 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,588 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,588 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,588 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,588 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls -2020-03-04 12:06:11,588 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,605 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.01710057258605957 -2020-03-04 12:06:11,605 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +2020-03-06 10:07:18,363 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,363 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,363 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,363 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:07:18,363 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,363 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,380 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: # due to winrepo installer limitations you need to manually download x86 + x64 System installer from # https://code.visualstudio.com/Download # and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... @@ -24276,15 +24162,15 @@ vscode: -2020-03-04 12:06:11,605 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,605 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,605 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,605 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,605 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls -2020-03-04 12:06:11,605 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,605 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,620 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +2020-03-06 10:07:18,380 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,380 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,380 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,380 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:07:18,393 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,393 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,393 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: vsee: '15.0.0.707': full_name: 'VSee' @@ -24296,15 +24182,15 @@ vsee: locale: en_US reboot: False -2020-03-04 12:06:11,620 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,620 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,620 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,620 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,620 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls -2020-03-04 12:06:11,620 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,620 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,620 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +2020-03-06 10:07:18,393 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,393 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,393 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,393 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:07:18,393 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,393 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,409 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: vs_remotetools_2017: latest: full_name: 'Remote Tools for Visual Studio 2017' @@ -24319,15 +24205,15 @@ vs_remotetools_2017: locale: en_US reboot: False -2020-03-04 12:06:11,620 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,620 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,636 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,636 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,636 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls -2020-03-04 12:06:11,636 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,636 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,636 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +2020-03-06 10:07:18,409 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,409 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,409 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,409 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:07:18,409 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,409 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,409 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: wamp-server-3: '3.1.3': @@ -24341,15 +24227,15 @@ wamp-server-3: locale: en_US reboot: False -2020-03-04 12:06:11,636 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,636 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,636 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,636 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,636 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls -2020-03-04 12:06:11,651 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,651 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,651 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: +2020-03-06 10:07:18,424 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.014974832534790039 +2020-03-06 10:07:18,424 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,424 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,424 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:07:18,424 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,424 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,424 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: wamp-stack: @@ -24375,15 +24261,15 @@ wamp-stack: reboot: False -2020-03-04 12:06:11,651 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,424 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,651 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,651 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,651 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,651 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls -2020-03-04 12:06:11,651 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,667 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.015653371810913086 -2020-03-04 12:06:11,667 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +2020-03-06 10:07:18,424 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,441 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,441 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,441 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:07:18,441 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,441 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,441 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: webdeploy: '3.1237.1764': full_name: 'Microsoft Web Deploy 3.5' @@ -24397,15 +24283,15 @@ webdeploy: locale: en_US reboot: False -2020-03-04 12:06:11,667 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,441 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,667 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,667 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,667 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,667 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls -2020-03-04 12:06:11,667 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,667 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,667 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +2020-03-06 10:07:18,441 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,441 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,457 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,457 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:07:18,457 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,457 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,457 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: webplatforminstaller: '5.0.50430.0': full_name: 'Microsoft Web Platform Installer 5.0' @@ -24419,15 +24305,15 @@ webplatforminstaller: locale: en_US reboot: False -2020-03-04 12:06:11,682 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,457 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,682 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,682 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,682 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,682 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls -2020-03-04 12:06:11,682 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,682 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,682 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +2020-03-06 10:07:18,457 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,457 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,457 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,472 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:07:18,472 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,472 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,472 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: # Source: http://winappmanager.herokuapp.com/ @@ -24443,15 +24329,15 @@ win-app-manager: locale: en_US reboot: False -2020-03-04 12:06:11,682 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,682 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,699 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,699 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,699 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls -2020-03-04 12:06:11,699 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,699 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,699 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: +2020-03-06 10:07:18,472 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,472 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,472 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,472 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:07:18,472 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,487 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.015546083450317383 +2020-03-06 10:07:18,487 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: @@ -24466,15 +24352,15 @@ windirstat: locale: en_US reboot: False -2020-03-04 12:06:11,699 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,699 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,699 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,699 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,714 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls -2020-03-04 12:06:11,714 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,714 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,714 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +2020-03-06 10:07:18,487 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,487 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,487 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,487 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:07:18,487 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,503 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.015894412994384766 +2020-03-06 10:07:18,503 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: winhttpcertcfg: '5.2.3790.1060': full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' @@ -24486,15 +24372,15 @@ winhttpcertcfg: locale: en_US reboot: False -2020-03-04 12:06:11,714 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,714 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,714 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,714 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,714 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls -2020-03-04 12:06:11,714 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,714 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,730 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: +2020-03-06 10:07:18,503 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,503 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,503 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,503 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:07:18,503 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,503 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,519 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: @@ -24522,15 +24408,15 @@ winmerge: reboot: False -2020-03-04 12:06:11,730 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,519 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,730 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,730 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,730 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,730 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls -2020-03-04 12:06:11,730 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,730 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,745 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +2020-03-06 10:07:18,519 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,519 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,519 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,519 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:07:18,519 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,519 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,534 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: winmtr: '0.92': @@ -24548,15 +24434,15 @@ winmtr: # download exe from winmtr.net # create two installers using http://www.ssesetup.com/ -2020-03-04 12:06:11,745 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,745 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,745 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,745 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,745 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls -2020-03-04 12:06:11,745 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,745 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,745 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +2020-03-06 10:07:18,534 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,534 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,534 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,534 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:07:18,534 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,534 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,534 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: winpcap: '4.1.0.2980': full_name: 'WinPcap 4.1.3' @@ -24568,15 +24454,15 @@ winpcap: locale: en_US reboot: False -2020-03-04 12:06:11,745 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,745 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,745 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,761 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,761 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls -2020-03-04 12:06:11,761 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,761 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,761 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +2020-03-06 10:07:18,534 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,550 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,550 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,550 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:07:18,550 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,550 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,550 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: #if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) @@ -24611,15 +24497,15 @@ winrar: -2020-03-04 12:06:11,761 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,550 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,761 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,761 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,777 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,777 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls -2020-03-04 12:06:11,777 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,777 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,777 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: +2020-03-06 10:07:18,550 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,550 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,567 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,567 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:07:18,567 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,567 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,567 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: @@ -24886,15 +24772,15 @@ winscp: reboot: False -2020-03-04 12:06:11,777 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,794 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.017208576202392578 -2020-03-04 12:06:11,794 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,794 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,794 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls -2020-03-04 12:06:11,794 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,794 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,810 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +2020-03-06 10:07:18,583 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.015613079071044922 +2020-03-06 10:07:18,583 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,583 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,583 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:07:18,583 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,597 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.014646291732788086 +2020-03-06 10:07:18,597 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available wireshark: @@ -25416,15 +25302,15 @@ wireshark: reboot: False -2020-03-04 12:06:11,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,810 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,810 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,824 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,824 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls -2020-03-04 12:06:11,824 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,824 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,824 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +2020-03-06 10:07:18,613 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.016114473342895508 +2020-03-06 10:07:18,613 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,613 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,613 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:07:18,613 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,613 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,613 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: # source: http://www.kls-soft.com/wscc/ wscc: '2.5.0.4': @@ -25439,15 +25325,15 @@ wscc: locale: en_US reboot: False -2020-03-04 12:06:11,824 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,613 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,824 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,824 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,824 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,824 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls -2020-03-04 12:06:11,824 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,841 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.016824007034301758 -2020-03-04 12:06:11,841 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +2020-03-06 10:07:18,613 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,629 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,629 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,629 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:07:18,629 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,629 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,629 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: # Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 # https://github.com/zeffy/wufuc @@ -25469,15 +25355,15 @@ wufuc: reboot: False -2020-03-04 12:06:11,841 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,629 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,841 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,841 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,841 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,841 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls -2020-03-04 12:06:11,841 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,841 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,856 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +2020-03-06 10:07:18,629 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,645 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,645 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,645 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:07:18,645 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,645 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,645 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: xampp: '7.2.6.0': full_name: 'XAMPP 7.2.6' @@ -25489,15 +25375,15 @@ xampp: locale: en_US reboot: False -2020-03-04 12:06:11,856 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,645 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,856 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,856 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,856 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,856 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls -2020-03-04 12:06:11,856 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,856 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,856 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +2020-03-06 10:07:18,645 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,645 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,645 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,645 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:07:18,660 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,660 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,660 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: # just 32-bit x86 installer available @@ -25514,15 +25400,15 @@ xming: locale: en_US reboot: False -2020-03-04 12:06:11,856 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,660 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,856 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,872 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,872 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,872 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls -2020-03-04 12:06:11,872 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,872 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,872 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: +2020-03-06 10:07:18,660 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,660 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,660 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,660 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:07:18,660 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,676 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.015802860260009766 +2020-03-06 10:07:18,676 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: yubikey-manager: @@ -25588,15 +25474,15 @@ yubikey-manager: reboot: False -2020-03-04 12:06:11,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,676 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,872 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,888 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,888 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,888 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls -2020-03-04 12:06:11,888 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,888 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,888 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +2020-03-06 10:07:18,676 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,676 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,676 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,676 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:07:18,691 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,691 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,691 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: yubikey-personalization-tool: '3.1.24': full_name: 'YubiKey Personalization Tool' @@ -25606,15 +25492,15 @@ yubikey-personalization-tool: uninstall_flags: '/S' reboot: False -2020-03-04 12:06:11,888 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,691 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,888 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,888 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,903 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,903 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls -2020-03-04 12:06:11,903 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,903 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,903 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +2020-03-06 10:07:18,691 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,691 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,691 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,707 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:07:18,707 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,707 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,707 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -25622,35 +25508,11 @@ OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDic zabbix-agent: - '4.2.3.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '4.2.4.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '4.2.5.2400': + '3.0.26.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25658,11 +25520,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.6.2400': + '3.0.27.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25670,11 +25532,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.7.2400': + '3.0.28.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25682,11 +25544,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.8.2400': + '3.0.29.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25794,11 +25656,11 @@ zabbix-agent: - '3.0.26.2400': + '4.2.3.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25806,11 +25668,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.27.2400': + '4.2.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25818,11 +25680,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.28.2400': + '4.2.5.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25830,11 +25692,35 @@ zabbix-agent: locale: en_US reboot: False - '3.0.29.2400': + '4.2.6.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.7.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.2.8.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25894,15 +25780,15 @@ zabbix-agent: -2020-03-04 12:06:11,919 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: -OrderedDict([('zabbix-agent', OrderedDict([('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,919 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.016254186630249023 -2020-03-04 12:06:11,919 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,919 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,919 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls -2020-03-04 12:06:11,919 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,919 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,919 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: +2020-03-06 10:07:18,722 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:07:18,722 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,722 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,722 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,722 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:07:18,722 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,722 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,722 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: zoom: latest: @@ -25914,15 +25800,15 @@ zoom: msiexec: True reboot: False -2020-03-04 12:06:11,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:06:11,934 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,934 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,934 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,934 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls -2020-03-04 12:06:11,934 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,934 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,934 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +2020-03-06 10:07:18,738 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,738 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,738 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,738 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:07:18,738 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,738 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,738 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: # Software Definition File for Elasticsearch Auditbeat # Uses the following associated scripts @@ -25984,15 +25870,15 @@ auditbeat: cache_dir: True -2020-03-04 12:06:11,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:11,934 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,951 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls -2020-03-04 12:06:11,951 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,951 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,951 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +2020-03-06 10:07:18,754 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.015673398971557617 +2020-03-06 10:07:18,754 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,754 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,754 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:07:18,754 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,754 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,754 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: chocolatey: latest: full_name: 'Chocolatey' @@ -26006,15 +25892,15 @@ chocolatey: # https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 -2020-03-04 12:06:11,951 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:11,951 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,951 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls -2020-03-04 12:06:11,951 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,966 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.015572786331176758 -2020-03-04 12:06:11,966 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: +2020-03-06 10:07:18,754 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,754 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,769 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,769 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:07:18,769 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,769 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,769 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: @@ -26042,15 +25928,15 @@ erlang: reboot: False -2020-03-04 12:06:11,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,769 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:06:11,966 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,966 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,966 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,966 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls -2020-03-04 12:06:11,966 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,982 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.015465974807739258 -2020-03-04 12:06:11,982 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +2020-03-06 10:07:18,785 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.015663623809814453 +2020-03-06 10:07:18,785 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,785 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,785 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:07:18,785 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,785 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,785 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: # Software Definition File for Elasticsearch Filebeat # Uses the following associated scripts @@ -26112,15 +25998,15 @@ filebeat: cache_dir: True -2020-03-04 12:06:11,982 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,785 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:11,982 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,982 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,982 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,982 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls -2020-03-04 12:06:11,982 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,982 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:11,998 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +2020-03-06 10:07:18,801 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.015920400619506836 +2020-03-06 10:07:18,801 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,801 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,801 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:07:18,801 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,801 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,801 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: # Software Definition File for Elasticsearch Functionbeat # Uses the following associated scripts @@ -26182,15 +26068,15 @@ functionbeat: cache_dir: True -2020-03-04 12:06:11,998 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,816 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:11,998 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:11,998 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:11,998 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:11,998 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls -2020-03-04 12:06:11,998 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:11,998 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:12,014 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +2020-03-06 10:07:18,816 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,816 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,816 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,816 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:07:18,816 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,816 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,833 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: # just 32-bit x86 installer available @@ -26289,15 +26175,15 @@ gpg4win: reboot: False -2020-03-04 12:06:12,014 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:06:12,014 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,014 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,014 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,014 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls -2020-03-04 12:06:12,014 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,029 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.014632225036621094 -2020-03-04 12:06:12,029 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +2020-03-06 10:07:18,833 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,833 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,833 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,833 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:07:18,848 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,848 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,848 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: # Software Definition File for Elasticsearch Heartbeat # Uses the following associated scripts @@ -26359,15 +26245,15 @@ heartbeat: cache_dir: True -2020-03-04 12:06:12,029 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:12,029 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,029 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,029 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,029 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls -2020-03-04 12:06:12,029 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,045 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.016782283782958984 -2020-03-04 12:06:12,045 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +2020-03-06 10:07:18,848 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,848 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,848 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,848 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:07:18,864 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,864 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,864 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: # Software Definition File for Elasticsearch Metricbeat # Uses the following associated scripts @@ -26429,15 +26315,15 @@ metricbeat: cache_dir: True -2020-03-04 12:06:12,045 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:12,045 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,045 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,045 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,045 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls -2020-03-04 12:06:12,045 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,061 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.015227079391479492 -2020-03-04 12:06:12,061 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +2020-03-06 10:07:18,864 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,864 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,864 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,864 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:07:18,880 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,880 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,880 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: # Software Definition File for Elasticsearch Packetbeat # Uses the following associated scripts @@ -26499,15 +26385,15 @@ packetbeat: cache_dir: True -2020-03-04 12:06:12,061 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:12,061 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,061 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,061 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,061 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls -2020-03-04 12:06:12,061 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,061 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:12,078 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: +2020-03-06 10:07:18,880 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,880 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,880 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,880 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:07:18,895 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,895 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,895 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: @@ -26526,15 +26412,15 @@ pycharm-pro: reboot: False -2020-03-04 12:06:12,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:06:12,078 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,078 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,078 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,078 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls -2020-03-04 12:06:12,078 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,078 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:12,092 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +2020-03-06 10:07:18,895 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,895 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,911 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,911 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:07:18,911 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,911 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,911 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: # just 32-bit x86 installer available @@ -26549,15 +26435,15 @@ stayawake: uninstall_flags: '/S' -2020-03-04 12:06:12,092 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) -2020-03-04 12:06:12,092 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,092 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,092 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,092 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls -2020-03-04 12:06:12,092 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,092 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:12,107 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +2020-03-06 10:07:18,911 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,911 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,927 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,927 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:07:18,927 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,927 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,927 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: # Software Definition File for Elasticsearch Winlogbeat # Uses the following associated scripts @@ -26619,31 +26505,31 @@ winlogbeat: cache_dir: True -2020-03-04 12:06:12,107 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:06:12,107 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,107 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,107 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls -2020-03-04 12:06:12,107 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,107 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:12,107 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +2020-03-06 10:07:18,927 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,943 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,943 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,943 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:07:18,943 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,943 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,943 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: ############################################################# # Windows ############################################################# # -2020-03-04 12:06:12,123 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,943 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: {} -2020-03-04 12:06:12,123 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,123 [salt.loaded.int.module.win_pkg:1213][DEBUG ][4632] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing -2020-03-04 12:06:12,123 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:12,123 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:12,123 [salt.template :59 ][DEBUG ][4632] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls -2020-03-04 12:06:12,123 [salt.utils.jinja :85 ][DEBUG ][4632] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:06:12,123 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:06:12,123 [salt.template :120 ][DEBUG ][4632] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +2020-03-06 10:07:18,943 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,943 [salt.loaded.int.module.win_pkg:1217][DEBUG ][3160] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:07:18,959 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:18,959 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:18,959 [salt.template :59 ][DEBUG ][3160] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:07:18,959 [salt.utils.jinja :85 ][DEBUG ][3160] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:07:18,959 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:07:18,959 [salt.template :120 ][DEBUG ][3160] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: # only 32-bit (x86) installer available @@ -26677,1265 +26563,465 @@ zipinstaller: # as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache # -2020-03-04 12:06:12,138 [salt.loaded.int.render.yaml:80 ][DEBUG ][4632] Results of YAML rendering: +2020-03-06 10:07:18,959 [salt.loaded.int.render.yaml:80 ][DEBUG ][3160] Results of YAML rendering: OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) -2020-03-04 12:06:12,138 [salt.template :26 ][PROFILE ][4632] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:06:12,138 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 12:06:12,159 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 12:06:12,188 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: Volume in drive C is Windows 10 +2020-03-06 10:07:18,959 [salt.template :30 ][PROFILE ][3160] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:07:18,974 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:07:18,994 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:07:19,010 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Volume in drive C is Windows 10 Volume Serial Number is 9CEF-DD68 Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng -03/04/2020 03:06 PM . -03/04/2020 03:06 PM .. -03/04/2020 03:06 PM 927 7zip.sls -03/04/2020 03:06 PM 723 activeperl_x64.sls -03/04/2020 03:06 PM 973 activeperl_x86.sls -03/04/2020 03:06 PM 798 adobeair.sls -03/04/2020 03:06 PM 956 adobereader-dc-classic.sls -03/04/2020 03:06 PM 851 adobereader-xi.sls -03/04/2020 03:06 PM 830 adobereader.sls -03/04/2020 03:06 PM 589 adobeshockwaveplayer.sls -03/04/2020 03:06 PM 775 adv-ip-scanner.sls -03/04/2020 03:06 PM 787 adv-port-scanner.sls -03/04/2020 03:06 PM 769 advancedlogging.sls -03/04/2020 03:06 PM 373 anydesk-msi.sls -03/04/2020 03:06 PM 597 anydesk.sls -03/04/2020 03:06 PM 803 applicationrequestrouting.sls -03/04/2020 03:06 PM 370 aspnet-mvc1.sls -03/04/2020 03:06 PM 439 atom.sls -03/04/2020 03:06 PM 655 audacity.sls -03/04/2020 03:06 PM auditbeat -03/04/2020 03:06 PM 1,768 autohotkey.sls -03/04/2020 03:06 PM 611 autoit.sls -03/04/2020 03:06 PM 670 autopsy.sls -03/04/2020 03:06 PM 659 awscli.sls -03/04/2020 03:06 PM 799 azuredatastudio.sls -03/04/2020 03:06 PM 422 bandizip.sls -03/04/2020 03:06 PM 563 belarc-advisor.sls -03/04/2020 03:06 PM 367 bginfo4x.sls -03/04/2020 03:06 PM 547 bitnami-nginxstack.sls -03/04/2020 03:06 PM 568 bitvise.sls -03/04/2020 03:06 PM 777 blender.sls -03/04/2020 03:06 PM 395 bootracer.sls -03/04/2020 03:06 PM 664 bulkrenameutility.sls -03/04/2020 03:06 PM 661 bulk_extractor.sls -03/04/2020 03:06 PM 476 ccleaner-slim.sls -03/04/2020 03:06 PM 445 ccleaner.sls -03/04/2020 03:06 PM 606 cdburnerxp.sls -03/04/2020 03:06 PM 594 cdroller.sls -03/04/2020 03:06 PM 658 check-mk-agent-msi.sls -03/04/2020 03:06 PM 451 check-mk-agent.sls -03/04/2020 03:06 PM chocolatey -03/04/2020 03:06 PM 394 chrome-rdp.sls -03/04/2020 03:06 PM 375 chrome.sls -03/04/2020 03:06 PM 1,296 clamav.sls -03/04/2020 03:06 PM 1,200 clamwin.sls -03/04/2020 03:06 PM 500 classicshell.sls -03/04/2020 03:06 PM 1,521 clink.sls -03/04/2020 03:06 PM 617 conemu.sls -03/04/2020 03:06 PM 687 cpu-z.sls -03/04/2020 03:06 PM 2,833 curl.sls -03/04/2020 03:06 PM 374 cyberduck-cli.sls -03/04/2020 03:06 PM 616 cyberduck-msi.sls -03/04/2020 03:06 PM 639 cyberduck.sls -03/04/2020 03:06 PM 751 defraggler.sls -03/04/2020 03:06 PM 2,637 dotnet.sls -03/04/2020 03:06 PM 643 dropbox.sls -03/04/2020 03:06 PM 683 duplicati.sls -03/04/2020 03:06 PM 712 dvdstyler.sls -03/04/2020 03:06 PM 737 echo-desktop.sls -03/04/2020 03:06 PM 1,327 eea.sls -03/04/2020 03:06 PM 423 emet.sls -03/04/2020 03:06 PM 625 emsisoft-anti-malware.sls -03/04/2020 03:06 PM 721 eraser.sls -03/04/2020 03:06 PM erlang -03/04/2020 03:06 PM 982 evernote.sls -03/04/2020 03:06 PM 531 fiddler.sls -03/04/2020 03:06 PM filebeat -03/04/2020 03:06 PM 660 filehippo-app-manager.sls -03/04/2020 03:06 PM 1,271 filezilla.sls -03/04/2020 03:06 PM 1,115 firefox-esr_x64.sls -03/04/2020 03:06 PM 1,396 firefox-esr_x86.sls -03/04/2020 03:06 PM 1,365 firefox_x64.sls -03/04/2020 03:06 PM 1,870 firefox_x86.sls -03/04/2020 03:06 PM functionbeat -03/04/2020 03:06 PM 552 gedit.sls -03/04/2020 03:06 PM 822 gimp.sls -03/04/2020 03:06 PM 953 git-extensions.sls -03/04/2020 03:06 PM 3,855 git.sls -03/04/2020 03:06 PM 848 glarysoft-absolute-uninstaller.sls -03/04/2020 03:06 PM 563 gnucash.sls -03/04/2020 03:06 PM 2,152 golang.sls -03/04/2020 03:06 PM 320 goodsync.sls -03/04/2020 03:06 PM 601 gow.sls -03/04/2020 03:06 PM gpg4win -03/04/2020 03:06 PM 847 gpg4win-light.sls -03/04/2020 03:06 PM 621 gpg4win-vanilla.sls -03/04/2020 03:06 PM 544 graylog-collector-sidecar.sls -03/04/2020 03:06 PM 2,661 grepwin.sls -03/04/2020 03:06 PM 505 gvim.sls -03/04/2020 03:06 PM 622 handbrake.sls -03/04/2020 03:06 PM heartbeat -03/04/2020 03:06 PM 503 hipchat.sls -03/04/2020 03:06 PM 771 hostsfileeditor.sls -03/04/2020 03:06 PM 623 hwinfo.sls -03/04/2020 03:06 PM 339 ice.sls -03/04/2020 03:06 PM 493 icecast.sls -03/04/2020 03:06 PM 377 icloud.sls -03/04/2020 03:06 PM 2,197 iismediaservices.sls -03/04/2020 03:06 PM 358 influx-capacitor.sls -03/04/2020 03:06 PM 644 inkscape.sls -03/04/2020 03:06 PM 646 intellij-community.sls -03/04/2020 03:06 PM 618 intellij-ultimate.sls -03/04/2020 03:06 PM 360 internet-evidence-finder.sls -03/04/2020 03:06 PM 702 irfanview-plugins.sls -03/04/2020 03:06 PM 1,610 irfanview.sls -03/04/2020 03:06 PM 697 isapirewrite-lite.sls -03/04/2020 03:06 PM 2,602 itunes.sls -03/04/2020 03:06 PM 1,279 jdk8.sls -03/04/2020 03:06 PM 1,200 jre.sls -03/04/2020 03:06 PM 1,480 jre8.sls -03/04/2020 03:06 PM 995 jungledisk-server-management.sls -03/04/2020 03:06 PM 891 jungledisk-server.sls -03/04/2020 03:06 PM 921 jungledisk-workgroup.sls -03/04/2020 03:06 PM 518 kdiff3.sls -03/04/2020 03:06 PM 1,091 keepass-2x.sls -03/04/2020 03:06 PM 2,655 keepass.sls -03/04/2020 03:06 PM 673 lastpass.sls -03/04/2020 03:06 PM 1,329 lazarus.sls -03/04/2020 03:06 PM 951 libreoffice.sls -03/04/2020 03:06 PM 419 logparser.sls -03/04/2020 03:06 PM 2,627 maas360bootanalyzer.sls -03/04/2020 03:06 PM 722 malwarebytes.sls -03/04/2020 03:06 PM 1,884 mariadb.sls -03/04/2020 03:06 PM 653 mercurial.sls -03/04/2020 03:06 PM 649 messageanalyzer.sls -03/04/2020 03:06 PM metricbeat -03/04/2020 03:06 PM 603 microsoft-build-tools.sls -03/04/2020 03:06 PM 317 mikogo.sls -03/04/2020 03:06 PM 766 miktex-basic.sls -03/04/2020 03:06 PM 787 mongodb.sls -03/04/2020 03:06 PM 831 ms-mbsa.sls -03/04/2020 03:06 PM 419 ms-vcpp-2005-atl-redist_x64.sls -03/04/2020 03:06 PM 413 ms-vcpp-2005-atl-redist_x86.sls -03/04/2020 03:06 PM 412 ms-vcpp-2005-redist_x64.sls -03/04/2020 03:06 PM 406 ms-vcpp-2005-redist_x86.sls -03/04/2020 03:06 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls -03/04/2020 03:06 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls -03/04/2020 03:06 PM 416 ms-vcpp-2005-sp1-redist_x64.sls -03/04/2020 03:06 PM 410 ms-vcpp-2005-sp1-redist_x86.sls -03/04/2020 03:06 PM 434 ms-vcpp-2008-redist_x64.sls -03/04/2020 03:06 PM 434 ms-vcpp-2008-redist_x86.sls -03/04/2020 03:06 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls -03/04/2020 03:06 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls -03/04/2020 03:06 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls -03/04/2020 03:06 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls -03/04/2020 03:06 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls -03/04/2020 03:06 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls -03/04/2020 03:06 PM 493 ms-vcpp-2012-redist_x64.sls -03/04/2020 03:06 PM 495 ms-vcpp-2012-redist_x86.sls -03/04/2020 03:06 PM 503 ms-vcpp-2013-redist_x64.sls -03/04/2020 03:06 PM 503 ms-vcpp-2013-redist_x86.sls -03/04/2020 03:06 PM 481 ms-vcpp-2015-build-tools.sls -03/04/2020 03:06 PM 1,407 ms-vcpp-2015-redist_x64.sls -03/04/2020 03:06 PM 1,407 ms-vcpp-2015-redist_x86.sls -03/04/2020 03:06 PM 1,166 ms-vcpp-2017-redist_x64.sls -03/04/2020 03:06 PM 539 ms-vcpp-2017-redist_x86.sls -03/04/2020 03:06 PM 585 mucommander.sls -03/04/2020 03:06 PM 638 mysql-essential.sls -03/04/2020 03:06 PM 632 mysql-installer-community.sls -03/04/2020 03:06 PM 639 mysql-workbench.sls -03/04/2020 03:06 PM 298 never10.sls -03/04/2020 03:06 PM 929 newrelic-infra.sls -03/04/2020 03:06 PM 526 nextcloud-client.sls -03/04/2020 03:06 PM 584 nmap.sls -03/04/2020 03:06 PM 709 node.js-lts.sls -03/04/2020 03:06 PM 733 node.js.sls -03/04/2020 03:06 PM 368 nomacs.sls -03/04/2020 03:06 PM 985 npp.sls -03/04/2020 03:06 PM 1,252 nsclient.sls -03/04/2020 03:06 PM 826 nsis.sls -03/04/2020 03:06 PM 902 ntp.sls -03/04/2020 03:06 PM 793 nunit-console.sls -03/04/2020 03:06 PM 363 nxlog.sls -03/04/2020 03:06 PM 1,081 octopus-tentacle.sls -03/04/2020 03:06 PM 678 openlp.sls -03/04/2020 03:06 PM 1,192 openoffice.sls -03/04/2020 03:06 PM 2,130 openvpn.sls -03/04/2020 03:06 PM 587 osquery.sls -03/04/2020 03:06 PM 878 ossec-agent.sls -03/04/2020 03:06 PM 590 owncloud.sls -03/04/2020 03:06 PM packetbeat -03/04/2020 03:06 PM 400 pandoc.sls -03/04/2020 03:06 PM 814 parallels-client-15.sls -03/04/2020 03:06 PM 1,709 pass4win.sls -03/04/2020 03:06 PM 378 passware-kit-agent.sls -03/04/2020 03:06 PM 416 passware-kit-forensic.sls -03/04/2020 03:06 PM 656 patchmypc-free.sls -03/04/2020 03:06 PM 638 pdf24creator.sls -03/04/2020 03:06 PM 567 pdfcreator.sls -03/04/2020 03:06 PM 611 peazip.sls -03/04/2020 03:06 PM 812 pgadmin4.sls -03/04/2020 03:06 PM 235 pgina.sls -03/04/2020 03:06 PM 617 pidgin.sls -03/04/2020 03:06 PM 1,898 postgresql.sls -03/04/2020 03:06 PM 997 powerbi-desktop.sls -03/04/2020 03:06 PM 864 powershell-core.sls -03/04/2020 03:06 PM 1,172 prometheus-wmi-exporter.sls -03/04/2020 03:06 PM 1,488 putty.sls -03/04/2020 03:06 PM pycharm-pro -03/04/2020 03:06 PM 567 python2_x64.sls -03/04/2020 03:06 PM 526 python2_x86.sls -03/04/2020 03:06 PM 1,540 python3_x64.sls -03/04/2020 03:06 PM 1,435 python3_x86.sls -03/04/2020 03:06 PM 449 qemu.sls -03/04/2020 03:06 PM 562 queueexplorerpro.sls -03/04/2020 03:06 PM 1,542 quicktime.sls -03/04/2020 03:06 PM 495 rabbitmq.sls -03/04/2020 03:06 PM 379 rakudo-star-no-jit_x86.sls -03/04/2020 03:06 PM 375 rakudo-star_x64.sls -03/04/2020 03:06 PM 888 rasclient.sls -03/04/2020 03:06 PM 444 rdcman.sls -03/04/2020 03:06 PM 609 rocketchat.sls -03/04/2020 03:06 PM 526 rubyinstaller_x64.sls -03/04/2020 03:06 PM 551 rubyinstaller_x86.sls -03/04/2020 03:06 PM 3,719 salt-minion-py2.sls -03/04/2020 03:06 PM 2,050 salt-minion-py3.sls -03/04/2020 03:06 PM 562 sandboxie.sls -03/04/2020 03:06 PM 581 scaleout.sls -03/04/2020 03:06 PM 476 secunia.psi.sls -03/04/2020 03:06 PM 1,190 sensu.sls -03/04/2020 03:06 PM 1,827 sharpdevelop.sls -03/04/2020 03:06 PM 539 skitch.sls -03/04/2020 03:06 PM 1,533 skype-msi.sls -03/04/2020 03:06 PM 708 skype.sls -03/04/2020 03:06 PM 1,244 slack-machine-msi.sls -03/04/2020 03:06 PM 1,023 slack-user-msi.sls -03/04/2020 03:06 PM 329 slack.sls -03/04/2020 03:06 PM 591 smartmontools.sls -03/04/2020 03:06 PM 556 snmptools.sls -03/04/2020 03:06 PM 653 soapui.sls -03/04/2020 03:06 PM 623 software-informer.sls -03/04/2020 03:06 PM 1,039 sourcetree.sls -03/04/2020 03:06 PM 591 spybot-anti-beacon.sls -03/04/2020 03:06 PM 765 spybot.sls -03/04/2020 03:06 PM 664 sscserv-free.sls -03/04/2020 03:06 PM stayawake -03/04/2020 03:06 PM 443 steam.sls -03/04/2020 03:06 PM 658 stellarium.sls -03/04/2020 03:06 PM 540 strawberryperl_x64.sls -03/04/2020 03:06 PM 531 strawberryperl_x86.sls -03/04/2020 03:06 PM 521 stunnel.sls -03/04/2020 03:06 PM 398 subinacl.sls -03/04/2020 03:06 PM 467 sumatrapdf.sls -03/04/2020 03:06 PM 769 svn.sls -03/04/2020 03:06 PM 534 teamviewer.sls -03/04/2020 03:06 PM 549 teamviewer_host.sls -03/04/2020 03:06 PM 749 teracopy.sls -03/04/2020 03:06 PM 491 texmaker.sls -03/04/2020 03:06 PM 709 texniccenter.sls -03/04/2020 03:06 PM 639 texstudio.sls -03/04/2020 03:06 PM 643 texworks.sls -03/04/2020 03:06 PM 937 thunderbird.sls -03/04/2020 03:06 PM 1,014 tightvnc.sls -03/04/2020 03:06 PM 623 todotxt.net.sls -03/04/2020 03:06 PM 551 todour.sls -03/04/2020 03:06 PM 630 tortoise-bzr.sls -03/04/2020 03:06 PM 983 tortoise-git.sls -03/04/2020 03:06 PM 1,367 tortoise-hg.sls -03/04/2020 03:06 PM 897 tortoise-svn.sls -03/04/2020 03:06 PM 503 truecrypt.sls -03/04/2020 03:06 PM 662 ultradefrag.sls -03/04/2020 03:06 PM 1,598 urlrewrite.sls -03/04/2020 03:06 PM 560 usbdlm.sls -03/04/2020 03:06 PM 1,361 vagrant.sls -03/04/2020 03:06 PM 479 vcforpython27.sls -03/04/2020 03:06 PM 820 vcxsrv.sls -03/04/2020 03:06 PM 434 verysleepy.sls -03/04/2020 03:06 PM 611 veyon.sls -03/04/2020 03:06 PM 2,570 virtualbox.sls -03/04/2020 03:06 PM 794 viscosity.sls -03/04/2020 03:06 PM 657 vivaldi.sls -03/04/2020 03:06 PM 739 vlc.sls -03/04/2020 03:06 PM 713 vs-community.sls -03/04/2020 03:06 PM 1,388 vscode.sls -03/04/2020 03:06 PM 325 vsee.sls -03/04/2020 03:06 PM 640 vs_remotetools_2017.sls -03/04/2020 03:06 PM 835 wamp-server-3.sls -03/04/2020 03:06 PM 585 wamp-stack.sls -03/04/2020 03:06 PM 775 webdeploy.sls -03/04/2020 03:06 PM 842 webplatforminstaller.sls -03/04/2020 03:06 PM 610 win-app-manager.sls -03/04/2020 03:06 PM 467 windirstat.sls -03/04/2020 03:06 PM 468 winhttpcertcfg.sls -03/04/2020 03:06 PM winlogbeat -03/04/2020 03:06 PM 618 winmerge.sls -03/04/2020 03:06 PM 737 winmtr.sls -03/04/2020 03:06 PM 288 winpcap.sls -03/04/2020 03:06 PM 825 winrar.sls -03/04/2020 03:06 PM 828 winscp.sls -03/04/2020 03:06 PM 1,136 wireshark.sls -03/04/2020 03:06 PM wmi_provider -03/04/2020 03:06 PM 539 wscc.sls -03/04/2020 03:06 PM 726 wufuc.sls -03/04/2020 03:06 PM 352 xampp.sls -03/04/2020 03:06 PM 649 xming.sls -03/04/2020 03:06 PM 621 yubikey-manager.sls -03/04/2020 03:06 PM 546 yubikey-personalization-tool.sls -03/04/2020 03:06 PM 1,119 zabbix-agent.sls -03/04/2020 03:06 PM zipinstaller -03/04/2020 03:06 PM 278 zoom.sls +03/06/2020 01:07 PM . +03/06/2020 01:07 PM .. +03/06/2020 01:07 PM 927 7zip.sls +03/06/2020 01:07 PM 723 activeperl_x64.sls +03/06/2020 01:07 PM 973 activeperl_x86.sls +03/06/2020 01:07 PM 798 adobeair.sls +03/06/2020 01:07 PM 956 adobereader-dc-classic.sls +03/06/2020 01:07 PM 851 adobereader-xi.sls +03/06/2020 01:07 PM 830 adobereader.sls +03/06/2020 01:07 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:07 PM 775 adv-ip-scanner.sls +03/06/2020 01:07 PM 787 adv-port-scanner.sls +03/06/2020 01:07 PM 769 advancedlogging.sls +03/06/2020 01:07 PM 373 anydesk-msi.sls +03/06/2020 01:07 PM 597 anydesk.sls +03/06/2020 01:07 PM 803 applicationrequestrouting.sls +03/06/2020 01:07 PM 370 aspnet-mvc1.sls +03/06/2020 01:07 PM 439 atom.sls +03/06/2020 01:07 PM 655 audacity.sls +03/06/2020 01:07 PM auditbeat +03/06/2020 01:07 PM 1,768 autohotkey.sls +03/06/2020 01:07 PM 611 autoit.sls +03/06/2020 01:07 PM 670 autopsy.sls +03/06/2020 01:07 PM 659 awscli.sls +03/06/2020 01:07 PM 799 azuredatastudio.sls +03/06/2020 01:07 PM 422 bandizip.sls +03/06/2020 01:07 PM 563 belarc-advisor.sls +03/06/2020 01:07 PM 367 bginfo4x.sls +03/06/2020 01:07 PM 547 bitnami-nginxstack.sls +03/06/2020 01:07 PM 568 bitvise.sls +03/06/2020 01:07 PM 777 blender.sls +03/06/2020 01:07 PM 395 bootracer.sls +03/06/2020 01:07 PM 664 bulkrenameutility.sls +03/06/2020 01:07 PM 661 bulk_extractor.sls +03/06/2020 01:07 PM 476 ccleaner-slim.sls +03/06/2020 01:07 PM 445 ccleaner.sls +03/06/2020 01:07 PM 606 cdburnerxp.sls +03/06/2020 01:07 PM 594 cdroller.sls +03/06/2020 01:07 PM 658 check-mk-agent-msi.sls +03/06/2020 01:07 PM 451 check-mk-agent.sls +03/06/2020 01:07 PM chocolatey +03/06/2020 01:07 PM 394 chrome-rdp.sls +03/06/2020 01:07 PM 375 chrome.sls +03/06/2020 01:07 PM 1,296 clamav.sls +03/06/2020 01:07 PM 1,200 clamwin.sls +03/06/2020 01:07 PM 500 classicshell.sls +03/06/2020 01:07 PM 1,521 clink.sls +03/06/2020 01:07 PM 617 conemu.sls +03/06/2020 01:07 PM 687 cpu-z.sls +03/06/2020 01:07 PM 2,833 curl.sls +03/06/2020 01:07 PM 374 cyberduck-cli.sls +03/06/2020 01:07 PM 616 cyberduck-msi.sls +03/06/2020 01:07 PM 639 cyberduck.sls +03/06/2020 01:07 PM 751 defraggler.sls +03/06/2020 01:07 PM 2,637 dotnet.sls +03/06/2020 01:07 PM 643 dropbox.sls +03/06/2020 01:07 PM 683 duplicati.sls +03/06/2020 01:07 PM 712 dvdstyler.sls +03/06/2020 01:07 PM 737 echo-desktop.sls +03/06/2020 01:07 PM 1,327 eea.sls +03/06/2020 01:07 PM 423 emet.sls +03/06/2020 01:07 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:07 PM 721 eraser.sls +03/06/2020 01:07 PM erlang +03/06/2020 01:07 PM 982 evernote.sls +03/06/2020 01:07 PM 531 fiddler.sls +03/06/2020 01:07 PM filebeat +03/06/2020 01:07 PM 660 filehippo-app-manager.sls +03/06/2020 01:07 PM 1,271 filezilla.sls +03/06/2020 01:07 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:07 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:07 PM 1,365 firefox_x64.sls +03/06/2020 01:07 PM 1,870 firefox_x86.sls +03/06/2020 01:07 PM functionbeat +03/06/2020 01:07 PM 552 gedit.sls +03/06/2020 01:07 PM 822 gimp.sls +03/06/2020 01:07 PM 953 git-extensions.sls +03/06/2020 01:07 PM 3,855 git.sls +03/06/2020 01:07 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:07 PM 563 gnucash.sls +03/06/2020 01:07 PM 2,152 golang.sls +03/06/2020 01:07 PM 320 goodsync.sls +03/06/2020 01:07 PM 601 gow.sls +03/06/2020 01:07 PM gpg4win +03/06/2020 01:07 PM 847 gpg4win-light.sls +03/06/2020 01:07 PM 621 gpg4win-vanilla.sls +03/06/2020 01:07 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:07 PM 2,661 grepwin.sls +03/06/2020 01:07 PM 505 gvim.sls +03/06/2020 01:07 PM 622 handbrake.sls +03/06/2020 01:07 PM heartbeat +03/06/2020 01:07 PM 503 hipchat.sls +03/06/2020 01:07 PM 771 hostsfileeditor.sls +03/06/2020 01:07 PM 623 hwinfo.sls +03/06/2020 01:07 PM 339 ice.sls +03/06/2020 01:07 PM 493 icecast.sls +03/06/2020 01:07 PM 377 icloud.sls +03/06/2020 01:07 PM 2,197 iismediaservices.sls +03/06/2020 01:07 PM 358 influx-capacitor.sls +03/06/2020 01:07 PM 644 inkscape.sls +03/06/2020 01:07 PM 646 intellij-community.sls +03/06/2020 01:07 PM 618 intellij-ultimate.sls +03/06/2020 01:07 PM 360 internet-evidence-finder.sls +03/06/2020 01:07 PM 702 irfanview-plugins.sls +03/06/2020 01:07 PM 1,610 irfanview.sls +03/06/2020 01:07 PM 697 isapirewrite-lite.sls +03/06/2020 01:07 PM 2,602 itunes.sls +03/06/2020 01:07 PM 1,279 jdk8.sls +03/06/2020 01:07 PM 1,200 jre.sls +03/06/2020 01:07 PM 1,480 jre8.sls +03/06/2020 01:07 PM 995 jungledisk-server-management.sls +03/06/2020 01:07 PM 891 jungledisk-server.sls +03/06/2020 01:07 PM 921 jungledisk-workgroup.sls +03/06/2020 01:07 PM 518 kdiff3.sls +03/06/2020 01:07 PM 1,091 keepass-2x.sls +03/06/2020 01:07 PM 2,655 keepass.sls +03/06/2020 01:07 PM 673 lastpass.sls +03/06/2020 01:07 PM 1,329 lazarus.sls +03/06/2020 01:07 PM 951 libreoffice.sls +03/06/2020 01:07 PM 419 logparser.sls +03/06/2020 01:07 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:07 PM 722 malwarebytes.sls +03/06/2020 01:07 PM 1,884 mariadb.sls +03/06/2020 01:07 PM 653 mercurial.sls +03/06/2020 01:07 PM 649 messageanalyzer.sls +03/06/2020 01:07 PM metricbeat +03/06/2020 01:07 PM 603 microsoft-build-tools.sls +03/06/2020 01:07 PM 317 mikogo.sls +03/06/2020 01:07 PM 766 miktex-basic.sls +03/06/2020 01:07 PM 787 mongodb.sls +03/06/2020 01:07 PM 831 ms-mbsa.sls +03/06/2020 01:07 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:07 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:07 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:07 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:07 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:07 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:07 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:07 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:07 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:07 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:07 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:07 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:07 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:07 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:07 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:07 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:07 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:07 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:07 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:07 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:07 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:07 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:07 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:07 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:07 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:07 PM 585 mucommander.sls +03/06/2020 01:07 PM 638 mysql-essential.sls +03/06/2020 01:07 PM 632 mysql-installer-community.sls +03/06/2020 01:07 PM 639 mysql-workbench.sls +03/06/2020 01:07 PM 298 never10.sls +03/06/2020 01:07 PM 929 newrelic-infra.sls +03/06/2020 01:07 PM 526 nextcloud-client.sls +03/06/2020 01:07 PM 584 nmap.sls +03/06/2020 01:07 PM 709 node.js-lts.sls +03/06/2020 01:07 PM 733 node.js.sls +03/06/2020 01:07 PM 368 nomacs.sls +03/06/2020 01:07 PM 985 npp.sls +03/06/2020 01:07 PM 1,252 nsclient.sls +03/06/2020 01:07 PM 826 nsis.sls +03/06/2020 01:07 PM 902 ntp.sls +03/06/2020 01:07 PM 793 nunit-console.sls +03/06/2020 01:07 PM 363 nxlog.sls +03/06/2020 01:07 PM 1,081 octopus-tentacle.sls +03/06/2020 01:07 PM 678 openlp.sls +03/06/2020 01:07 PM 1,192 openoffice.sls +03/06/2020 01:07 PM 2,130 openvpn.sls +03/06/2020 01:07 PM 587 osquery.sls +03/06/2020 01:07 PM 878 ossec-agent.sls +03/06/2020 01:07 PM 590 owncloud.sls +03/06/2020 01:07 PM packetbeat +03/06/2020 01:07 PM 400 pandoc.sls +03/06/2020 01:07 PM 814 parallels-client-15.sls +03/06/2020 01:07 PM 1,709 pass4win.sls +03/06/2020 01:07 PM 378 passware-kit-agent.sls +03/06/2020 01:07 PM 416 passware-kit-forensic.sls +03/06/2020 01:07 PM 656 patchmypc-free.sls +03/06/2020 01:07 PM 638 pdf24creator.sls +03/06/2020 01:07 PM 567 pdfcreator.sls +03/06/2020 01:07 PM 611 peazip.sls +03/06/2020 01:07 PM 812 pgadmin4.sls +03/06/2020 01:07 PM 235 pgina.sls +03/06/2020 01:07 PM 617 pidgin.sls +03/06/2020 01:07 PM 1,898 postgresql.sls +03/06/2020 01:07 PM 997 powerbi-desktop.sls +03/06/2020 01:07 PM 864 powershell-core.sls +03/06/2020 01:07 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:07 PM 1,488 putty.sls +03/06/2020 01:07 PM pycharm-pro +03/06/2020 01:07 PM 567 python2_x64.sls +03/06/2020 01:07 PM 526 python2_x86.sls +03/06/2020 01:07 PM 1,540 python3_x64.sls +03/06/2020 01:07 PM 1,435 python3_x86.sls +03/06/2020 01:07 PM 449 qemu.sls +03/06/2020 01:07 PM 562 queueexplorerpro.sls +03/06/2020 01:07 PM 1,542 quicktime.sls +03/06/2020 01:07 PM 495 rabbitmq.sls +03/06/2020 01:07 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:07 PM 375 rakudo-star_x64.sls +03/06/2020 01:07 PM 888 rasclient.sls +03/06/2020 01:07 PM 444 rdcman.sls +03/06/2020 01:07 PM 609 rocketchat.sls +03/06/2020 01:07 PM 526 rubyinstaller_x64.sls +03/06/2020 01:07 PM 551 rubyinstaller_x86.sls +03/06/2020 01:07 PM 3,719 salt-minion-py2.sls +03/06/2020 01:07 PM 2,050 salt-minion-py3.sls +03/06/2020 01:07 PM 562 sandboxie.sls +03/06/2020 01:07 PM 581 scaleout.sls +03/06/2020 01:07 PM 476 secunia.psi.sls +03/06/2020 01:07 PM 1,190 sensu.sls +03/06/2020 01:07 PM 1,827 sharpdevelop.sls +03/06/2020 01:07 PM 539 skitch.sls +03/06/2020 01:07 PM 1,533 skype-msi.sls +03/06/2020 01:07 PM 708 skype.sls +03/06/2020 01:07 PM 1,244 slack-machine-msi.sls +03/06/2020 01:07 PM 1,023 slack-user-msi.sls +03/06/2020 01:07 PM 329 slack.sls +03/06/2020 01:07 PM 591 smartmontools.sls +03/06/2020 01:07 PM 556 snmptools.sls +03/06/2020 01:07 PM 653 soapui.sls +03/06/2020 01:07 PM 623 software-informer.sls +03/06/2020 01:07 PM 1,039 sourcetree.sls +03/06/2020 01:07 PM 591 spybot-anti-beacon.sls +03/06/2020 01:07 PM 765 spybot.sls +03/06/2020 01:07 PM 664 sscserv-free.sls +03/06/2020 01:07 PM stayawake +03/06/2020 01:07 PM 443 steam.sls +03/06/2020 01:07 PM 658 stellarium.sls +03/06/2020 01:07 PM 540 strawberryperl_x64.sls +03/06/2020 01:07 PM 531 strawberryperl_x86.sls +03/06/2020 01:07 PM 521 stunnel.sls +03/06/2020 01:07 PM 398 subinacl.sls +03/06/2020 01:07 PM 467 sumatrapdf.sls +03/06/2020 01:07 PM 769 svn.sls +03/06/2020 01:07 PM 534 teamviewer.sls +03/06/2020 01:07 PM 549 teamviewer_host.sls +03/06/2020 01:07 PM 749 teracopy.sls +03/06/2020 01:07 PM 491 texmaker.sls +03/06/2020 01:07 PM 709 texniccenter.sls +03/06/2020 01:07 PM 639 texstudio.sls +03/06/2020 01:07 PM 643 texworks.sls +03/06/2020 01:07 PM 937 thunderbird.sls +03/06/2020 01:07 PM 1,014 tightvnc.sls +03/06/2020 01:07 PM 623 todotxt.net.sls +03/06/2020 01:07 PM 551 todour.sls +03/06/2020 01:07 PM 630 tortoise-bzr.sls +03/06/2020 01:07 PM 983 tortoise-git.sls +03/06/2020 01:07 PM 1,367 tortoise-hg.sls +03/06/2020 01:07 PM 897 tortoise-svn.sls +03/06/2020 01:07 PM 503 truecrypt.sls +03/06/2020 01:07 PM 662 ultradefrag.sls +03/06/2020 01:07 PM 1,598 urlrewrite.sls +03/06/2020 01:07 PM 560 usbdlm.sls +03/06/2020 01:07 PM 1,361 vagrant.sls +03/06/2020 01:07 PM 479 vcforpython27.sls +03/06/2020 01:07 PM 820 vcxsrv.sls +03/06/2020 01:07 PM 434 verysleepy.sls +03/06/2020 01:07 PM 611 veyon.sls +03/06/2020 01:07 PM 2,570 virtualbox.sls +03/06/2020 01:07 PM 794 viscosity.sls +03/06/2020 01:07 PM 657 vivaldi.sls +03/06/2020 01:07 PM 739 vlc.sls +03/06/2020 01:07 PM 713 vs-community.sls +03/06/2020 01:07 PM 1,388 vscode.sls +03/06/2020 01:07 PM 325 vsee.sls +03/06/2020 01:07 PM 640 vs_remotetools_2017.sls +03/06/2020 01:07 PM 835 wamp-server-3.sls +03/06/2020 01:07 PM 585 wamp-stack.sls +03/06/2020 01:07 PM 775 webdeploy.sls +03/06/2020 01:07 PM 842 webplatforminstaller.sls +03/06/2020 01:07 PM 610 win-app-manager.sls +03/06/2020 01:07 PM 467 windirstat.sls +03/06/2020 01:07 PM 468 winhttpcertcfg.sls +03/06/2020 01:07 PM winlogbeat +03/06/2020 01:07 PM 618 winmerge.sls +03/06/2020 01:07 PM 737 winmtr.sls +03/06/2020 01:07 PM 288 winpcap.sls +03/06/2020 01:07 PM 825 winrar.sls +03/06/2020 01:07 PM 828 winscp.sls +03/06/2020 01:07 PM 1,136 wireshark.sls +03/06/2020 01:07 PM wmi_provider +03/06/2020 01:07 PM 539 wscc.sls +03/06/2020 01:07 PM 726 wufuc.sls +03/06/2020 01:07 PM 352 xampp.sls +03/06/2020 01:07 PM 649 xming.sls +03/06/2020 01:07 PM 621 yubikey-manager.sls +03/06/2020 01:07 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:07 PM 1,119 zabbix-agent.sls +03/06/2020 01:07 PM zipinstaller +03/06/2020 01:07 PM 278 zoom.sls 284 File(s) 232,192 bytes - 16 Dir(s) 47,674,724,352 bytes free -2020-03-04 12:06:12,188 [salt.state :938 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:06:12,188 [salt.state :320 ][INFO ][4632] {'pkg.refresh_db': {'success': 298, 'failed': 0, 'total': 298}} -2020-03-04 12:06:12,188 [salt.state :1997][INFO ][4632] Completed state [pkg.refresh_db] at time 12:06:12.188240 (duration_in_ms=7734.287) -2020-03-04 12:06:12,188 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. -2020-03-04 12:06:12,206 [salt.state :1819][INFO ][4632] Running state [7zip] at time 12:06:12.206581 -2020-03-04 12:06:12,206 [salt.state :1852][INFO ][4632] Executing state pkg.installed for [7zip] -2020-03-04 12:06:12,206 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:06:12,224 [salt.loaded.int.module.win_pkg:802 ][INFO ][4632] Refresh skipped, age of winrepo metadata in seconds (0.0859365463256836) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:06:12,224 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.085937) -2020-03-04 12:06:12,309 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,309 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,309 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,309 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,309 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,320 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:06:12,343 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:06:12,343 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:06:12,370 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.231638) -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,370 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,388 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,388 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,388 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,388 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:12,388 [salt.utils.http :234 ][DEBUG ][4632] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method -2020-03-04 12:06:12,388 [salt.utils.http :235 ][DEBUG ][4632] Using backend: tornado -2020-03-04 12:06:14,748 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' -2020-03-04 12:06:15,154 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.016274) -2020-03-04 12:06:15,154 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,178 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,193 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:06:15,193 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.055312) -2020-03-04 12:06:15,193 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,211 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products + 16 Dir(s) 47,650,795,520 bytes free +2020-03-06 10:07:19,010 [salt.state :986 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:07:19,010 [salt.state :320 ][INFO ][3160] {'pkg.refresh_db': {'total': 298, 'failed': 0, 'success': 298}} +2020-03-06 10:07:19,026 [salt.state :2045][INFO ][3160] Completed state [pkg.refresh_db] at time 10:07:19.026186 (duration_in_ms=7899.471) +2020-03-06 10:07:19,026 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:07:19,045 [salt.state :1867][INFO ][3160] Running state [kdiff3] at time 10:07:19.045830 +2020-03-06 10:07:19,045 [salt.state :1900][INFO ][3160] Executing state pkg.installed for [kdiff3] +2020-03-06 10:07:19,045 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:07:19,067 [salt.loaded.int.module.win_pkg:806 ][INFO ][3160] Refresh skipped, age of winrepo metadata in seconds (0.09309864044189453) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:07:19,067 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.093099) +2020-03-06 10:07:19,167 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:07:19,174 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:07:19,199 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:07:19,199 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.225932) +2020-03-06 10:07:19,216 [salt.utils.http :234 ][DEBUG ][3160] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:07:19,216 [salt.utils.http :235 ][DEBUG ][3160] Using backend: tornado +2020-03-06 10:07:21,790 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:07:22,302 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.328087) +2020-03-06 10:07:22,320 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:07:22,339 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.365000) +2020-03-06 10:07:22,339 [salt.state :320 ][INFO ][3160] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:07:22,339 [salt.state :1048][DEBUG ][3160] Refreshing modules... +2020-03-06 10:07:22,378 [salt.state :1014][INFO ][3160] Loading fresh modules for state activity +2020-03-06 10:07:22,454 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:22,467 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:22,467 [salt.state :2045][INFO ][3160] Completed state [kdiff3] at time 10:07:22.467273 (duration_in_ms=3421.443) +2020-03-06 10:07:22,467 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded config.option +2020-03-06 10:07:22,523 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pkg.install +2020-03-06 10:07:22,523 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pkg.installed +2020-03-06 10:07:22,523 [salt.state :1867][INFO ][3160] Running state [7zip] at time 10:07:22.523215 +2020-03-06 10:07:22,523 [salt.state :1900][INFO ][3160] Executing state pkg.installed for [7zip] +2020-03-06 10:07:23,969 [salt.config :2215][DEBUG ][3160] Missing configuration file: /etc/salt/minion +2020-03-06 10:07:23,969 [salt.config :3612][DEBUG ][3160] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:07:24,085 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:07:24,096 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:07:24,417 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:07:24,435 [salt.loader :1671][DEBUG ][3160] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,227 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:07:25,059 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt.secret_key, ret: _|- +2020-03-06 10:07:25,059 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt:secret_key, ret: _|- +2020-03-06 10:07:25,908 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet.api_key, ret: _|- +2020-03-06 10:07:25,908 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet:api_key, ret: _|- +2020-03-06 10:07:26,422 [salt.loader :1671][DEBUG ][3160] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:15,227 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. -2020-03-04 12:06:15,246 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. -2020-03-04 12:06:15,246 [salt.state :320 ][INFO ][4632] Made the following changes: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:07:26,682 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops.api_key, ret: _|- +2020-03-06 10:07:26,682 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops:api_key, ret: _|- +2020-03-06 10:07:33,218 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:07:33,218 [salt.loaded.int.module.win_pkg:806 ][INFO ][3160] Refresh skipped, age of winrepo metadata in seconds (14.244600296020508) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:07:33,218 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:14.244600) +2020-03-06 10:07:33,264 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:07:33,283 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:07:33,296 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:07:33,296 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:14.322830) +2020-03-06 10:07:33,313 [salt.utils.http :234 ][DEBUG ][3160] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:07:33,313 [salt.utils.http :235 ][DEBUG ][3160] Using backend: tornado +2020-03-06 10:07:34,292 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:07:34,740 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:15.750865) +2020-03-06 10:07:34,756 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:07:34,756 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:15.782613) +2020-03-06 10:07:34,774 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:07:34,818 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:07:34,818 [salt.state :320 ][INFO ][3160] Made the following changes: '7zip' changed from 'absent' to '18.06.00.0' -2020-03-04 12:06:15,246 [salt.state :1000][DEBUG ][4632] Refreshing modules... -2020-03-04 12:06:15,278 [salt.state :966 ][INFO ][4632] Loading fresh modules for state activity -2020-03-04 12:06:15,313 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:15,328 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:15,328 [salt.state :1997][INFO ][4632] Completed state [7zip] at time 12:06:15.328325 (duration_in_ms=3121.744) -2020-03-04 12:06:15,328 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded config.option -2020-03-04 12:06:15,328 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pkg.install -2020-03-04 12:06:15,328 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pkg.installed -2020-03-04 12:06:15,343 [salt.state :1819][INFO ][4632] Running state [git] at time 12:06:15.343530 -2020-03-04 12:06:15,343 [salt.state :1852][INFO ][4632] Executing state pkg.installed for [git] -2020-03-04 12:06:15,735 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt.secret_key, ret: _|- -2020-03-04 12:06:15,735 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt:secret_key, ret: _|- -2020-03-04 12:06:15,910 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet.api_key, ret: _|- -2020-03-04 12:06:15,910 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet:api_key, ret: _|- -2020-03-04 12:06:16,062 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded reg.read_value -2020-03-04 12:06:16,134 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops.api_key, ret: _|- -2020-03-04 12:06:16,149 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops:api_key, ret: _|- -2020-03-04 12:06:20,446 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded platform.is_windows -2020-03-04 12:06:20,446 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded path.which -2020-03-04 12:06:20,461 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:06:20,486 [salt.loaded.int.module.win_pkg:802 ][INFO ][4632] Refresh skipped, age of winrepo metadata in seconds (8.348331928253174) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:06:20,486 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:08.348332) -2020-03-04 12:06:20,486 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,486 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,486 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,500 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,519 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:06:20,519 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:06:20,540 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:06:20,540 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:08.401608) -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,556 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,572 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,572 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,572 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,572 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products +2020-03-06 10:07:34,818 [salt.state :1048][DEBUG ][3160] Refreshing modules... +2020-03-06 10:07:34,856 [salt.state :1014][INFO ][3160] Loading fresh modules for state activity +2020-03-06 10:07:34,921 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:07:34,932 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:07:34,932 [salt.state :2045][INFO ][3160] Completed state [7zip] at time 10:07:34.932966 (duration_in_ms=12409.751) +2020-03-06 10:07:34,932 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded config.option +2020-03-06 10:07:34,966 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pkg.install +2020-03-06 10:07:34,980 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pkg.installed +2020-03-06 10:07:34,980 [salt.state :1867][INFO ][3160] Running state [git] at time 10:07:34.980514 +2020-03-06 10:07:34,980 [salt.state :1900][INFO ][3160] Executing state pkg.installed for [git] +2020-03-06 10:07:36,002 [salt.config :2215][DEBUG ][3160] Missing configuration file: /etc/salt/minion +2020-03-06 10:07:36,002 [salt.config :3612][DEBUG ][3160] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:07:36,129 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:07:36,129 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:07:36,487 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:07:36,487 [salt.loader :1671][DEBUG ][3160] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,572 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:07:37,214 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt.secret_key, ret: _|- +2020-03-06 10:07:37,214 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt:secret_key, ret: _|- +2020-03-06 10:07:38,277 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet.api_key, ret: _|- +2020-03-06 10:07:38,277 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet:api_key, ret: _|- +2020-03-06 10:07:38,652 [salt.loader :1671][DEBUG ][3160] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:20,572 [salt.utils.http :234 ][DEBUG ][4632] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method -2020-03-04 12:06:20,587 [salt.utils.http :235 ][DEBUG ][4632] Using backend: tornado -2020-03-04 12:06:26,346 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' -2020-03-04 12:06:38,819 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:26.681317) -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,839 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,856 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:06:38,856 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:26.718235) -2020-03-04 12:06:38,856 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,856 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,894 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:38,894 [salt.state :320 ][INFO ][4632] Made the following changes: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:07:38,994 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops.api_key, ret: _|- +2020-03-06 10:07:38,994 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops:api_key, ret: _|- +2020-03-06 10:07:48,329 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:07:48,329 [salt.loaded.int.module.win_pkg:806 ][INFO ][3160] Refresh skipped, age of winrepo metadata in seconds (29.355828285217285) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:07:48,329 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:29.355828) +2020-03-06 10:07:48,351 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:07:48,378 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:07:48,396 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:07:48,396 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:29.422236) +2020-03-06 10:07:48,411 [salt.utils.http :234 ][DEBUG ][3160] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:07:48,411 [salt.utils.http :235 ][DEBUG ][3160] Using backend: tornado +2020-03-06 10:08:03,211 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:08:17,298 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:58.324731) +2020-03-06 10:08:17,314 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:08:17,342 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][3160] Using existing pkg metadata db for saltenv 'base' (age is 0:00:58.368440) +2020-03-06 10:08:17,353 [salt.state :320 ][INFO ][3160] Made the following changes: 'git' changed from 'absent' to '2.23.0.windows.1' -2020-03-04 12:06:38,894 [salt.state :1000][DEBUG ][4632] Refreshing modules... -2020-03-04 12:06:38,929 [salt.state :966 ][INFO ][4632] Loading fresh modules for state activity -2020-03-04 12:06:38,976 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:06:38,990 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:06:38,990 [salt.state :1997][INFO ][4632] Completed state [git] at time 12:06:38.990307 (duration_in_ms=23646.777) -2020-03-04 12:06:38,990 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded config.option -2020-03-04 12:06:38,990 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pkg.install -2020-03-04 12:06:39,006 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pkg.installed -2020-03-04 12:06:39,006 [salt.state :1819][INFO ][4632] Running state [kdiff3] at time 12:06:39.006986 -2020-03-04 12:06:39,006 [salt.state :1852][INFO ][4632] Executing state pkg.installed for [kdiff3] -2020-03-04 12:06:39,471 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt.secret_key, ret: _|- -2020-03-04 12:06:39,471 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt:secret_key, ret: _|- -2020-03-04 12:06:39,674 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet.api_key, ret: _|- -2020-03-04 12:06:39,674 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet:api_key, ret: _|- -2020-03-04 12:06:39,831 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded reg.read_value -2020-03-04 12:06:39,934 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops.api_key, ret: _|- -2020-03-04 12:06:39,934 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops:api_key, ret: _|- -2020-03-04 12:06:44,657 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded platform.is_windows -2020-03-04 12:06:44,657 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded path.which -2020-03-04 12:06:44,672 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:06:44,686 [salt.loaded.int.module.win_pkg:802 ][INFO ][4632] Refresh skipped, age of winrepo metadata in seconds (32.54843282699585) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:06:44,686 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:32.548433) -2020-03-04 12:06:44,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,686 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,700 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,721 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:06:44,721 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:06:44,721 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:06:44,747 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:32.609291) -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,747 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,765 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,765 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,765 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,765 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,765 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:06:44,765 [salt.utils.http :234 ][DEBUG ][4632] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method -2020-03-04 12:06:44,765 [salt.utils.http :235 ][DEBUG ][4632] Using backend: tornado -2020-03-04 12:07:09,263 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' -2020-03-04 12:07:09,905 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:57.766980) -2020-03-04 12:07:09,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,952 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,952 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,952 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,952 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,952 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,952 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:09,985 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:07:09,985 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4632] Using existing pkg metadata db for saltenv 'base' (age is 0:00:57.846535) -2020-03-04 12:07:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,016 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,016 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,016 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,016 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,016 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,016 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,032 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-21-2899359282-3568468831-3555967594-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,032 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4632] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:07:10,032 [salt.state :320 ][INFO ][4632] Made the following changes: -'kdiff3' changed from 'absent' to 'Not Found' - -2020-03-04 12:07:10,048 [salt.state :1000][DEBUG ][4632] Refreshing modules... -2020-03-04 12:07:10,095 [salt.state :966 ][INFO ][4632] Loading fresh modules for state activity -2020-03-04 12:07:10,211 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded jinja.render -2020-03-04 12:07:10,211 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded yaml.render -2020-03-04 12:07:10,211 [salt.state :1997][INFO ][4632] Completed state [kdiff3] at time 12:07:10.211014 (duration_in_ms=31204.028) -2020-03-04 12:07:10,211 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded config.option -2020-03-04 12:07:10,211 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded module.run -2020-03-04 12:07:10,228 [salt.state :1819][INFO ][4632] Running state [windows_environment.refresh.path] at time 12:07:10.228501 -2020-03-04 12:07:10,228 [salt.state :1852][INFO ][4632] Executing state module.run for [windows_environment.refresh.path] -2020-03-04 12:07:10,228 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded windows_environment.refresh -2020-03-04 12:07:10,244 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cmd.run -2020-03-04 12:07:10,260 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' -2020-03-04 12:07:10,276 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: +2020-03-06 10:08:17,353 [salt.state :1048][DEBUG ][3160] Refreshing modules... +2020-03-06 10:08:17,397 [salt.state :1014][INFO ][3160] Loading fresh modules for state activity +2020-03-06 10:08:17,471 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded jinja.render +2020-03-06 10:08:17,471 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded yaml.render +2020-03-06 10:08:17,499 [salt.state :2045][INFO ][3160] Completed state [git] at time 10:08:17.499678 (duration_in_ms=42519.164) +2020-03-06 10:08:17,499 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded config.option +2020-03-06 10:08:17,499 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded module.run +2020-03-06 10:08:17,499 [salt.state :1867][INFO ][3160] Running state [windows_environment.refresh.path] at time 10:08:17.499678 +2020-03-06 10:08:17,499 [salt.state :1900][INFO ][3160] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:08:17,499 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded windows_environment.refresh +2020-03-06 10:08:17,499 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cmd.run +2020-03-06 10:08:17,499 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:08:17,516 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27952,7 +27038,7 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:07:10,276 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4632] output: +2020-03-06 10:08:17,516 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3160] output: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27969,313 +27055,326 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:07:10,292 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded environ.get -2020-03-04 12:07:10,292 [py.warnings :919 ][WARNING ][4632] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +2020-03-06 10:08:17,531 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded environ.get +2020-03-06 10:08:17,531 [py.warnings :919 ][WARNING ][3160] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) -2020-03-04 12:07:10,292 [py.warnings :919 ][WARNING ][4632] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +2020-03-06 10:08:17,531 [py.warnings :919 ][WARNING ][3160] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) -2020-03-04 12:07:10,292 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded event.fire -2020-03-04 12:07:10,292 [salt.utils.event :322 ][DEBUG ][4632] SaltEvent PUB socket URI: 4510 -2020-03-04 12:07:10,292 [salt.utils.event :323 ][DEBUG ][4632] SaltEvent PULL socket URI: 4511 -2020-03-04 12:07:10,292 [salt.utils.event :737 ][DEBUG ][4632] Sending event: tag = environ_setenv; data = {'_stamp': '2020-03-04T20:07:10.292225', 'permanent': False, 'clear_all': False, 'false_unsets': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 12:07:10,308 [salt.transport.ipc:364 ][DEBUG ][4632] Closing IPCMessageClient instance -2020-03-04 12:07:10,308 [salt.state :320 ][INFO ][4632] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 12:07:10,308 [salt.state :1997][INFO ][4632] Completed state [windows_environment.refresh.path] at time 12:07:10.308943 (duration_in_ms=80.442) -2020-03-04 12:07:10,308 [salt.state :1819][INFO ][4632] Running state [chocolatey.bootstrap] at time 12:07:10.308943 -2020-03-04 12:07:10,308 [salt.state :1852][INFO ][4632] Executing state module.run for [chocolatey.bootstrap] -2020-03-04 12:07:11,193 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt.secret_key, ret: _|- -2020-03-04 12:07:11,210 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: ifttt:secret_key, ret: _|- -2020-03-04 12:07:11,694 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet.api_key, ret: _|- -2020-03-04 12:07:11,694 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: pushbullet:api_key, ret: _|- -2020-03-04 12:07:12,071 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded reg.read_value -2020-03-04 12:07:12,166 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops.api_key, ret: _|- -2020-03-04 12:07:12,181 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: victorops:api_key, ret: _|- -2020-03-04 12:07:18,941 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded platform.is_windows -2020-03-04 12:07:18,941 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded path.which -2020-03-04 12:07:18,988 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:07:19,065 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded apache.config -2020-03-04 12:07:19,065 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded apache.a2enconf -2020-03-04 12:07:19,065 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded apache.a2ensite -2020-03-04 12:07:19,080 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:07:19,097 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:07:19,097 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:07:19,097 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:07:19,097 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:07:19,097 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:07:19,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:07:19,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:07:19,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_asg.exists -2020-03-04 12:07:19,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cfn.exists -2020-03-04 12:07:19,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:07:19,113 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:07:19,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:07:19,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:07:19,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:07:19,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:07:19,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_dynamodb.exists -2020-03-04 12:07:19,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_ec2.get_key -2020-03-04 12:07:19,129 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elasticache.exists -2020-03-04 12:07:19,144 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:07:19,144 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elb.exists -2020-03-04 12:07:19,144 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:07:19,144 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_iam.get_user -2020-03-04 12:07:19,144 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_iam.role_exists -2020-03-04 12:07:19,144 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_iot.policy_exists -2020-03-04 12:07:19,160 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_kinesis.exists -2020-03-04 12:07:19,176 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_kms.describe_key -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_lambda.function_exists -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_asg.exists -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_rds.exists -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_route53.get_record -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_secgroup.exists -2020-03-04 12:07:19,192 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_sns.exists -2020-03-04 12:07:19,210 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_sqs.exists -2020-03-04 12:07:19,210 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded boto_vpc.exists -2020-03-04 12:07:19,210 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded bower.list -2020-03-04 12:07:19,210 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded chef.client -2020-03-04 12:07:19,226 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cimc.get_system_info -2020-03-04 12:07:19,226 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded cisconso.set_data_value -2020-03-04 12:07:19,226 [salt.loader :1577][DEBUG ][4632] Failed to import states cloud: +2020-03-06 10:08:17,531 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded event.fire +2020-03-06 10:08:17,531 [salt.utils.event :310 ][DEBUG ][3160] SaltEvent PUB socket URI: 4510 +2020-03-06 10:08:17,531 [salt.utils.event :311 ][DEBUG ][3160] SaltEvent PULL socket URI: 4511 +2020-03-06 10:08:17,531 [salt.utils.event :736 ][DEBUG ][3160] Sending event: tag = environ_setenv; data = {'clear_all': False, '_stamp': '2020-03-06T18:08:17.531426', 'false_unsets': False, 'permanent': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:08:17,547 [salt.transport.ipc:363 ][DEBUG ][3160] Closing IPCMessageClient instance +2020-03-06 10:08:17,547 [salt.state :320 ][INFO ][3160] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:08:17,547 [salt.state :2045][INFO ][3160] Completed state [windows_environment.refresh.path] at time 10:08:17.547051 (duration_in_ms=47.373) +2020-03-06 10:08:17,547 [salt.state :1867][INFO ][3160] Running state [chocolatey.bootstrap] at time 10:08:17.547051 +2020-03-06 10:08:17,547 [salt.state :1900][INFO ][3160] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:08:19,412 [salt.config :2215][DEBUG ][3160] Missing configuration file: /etc/salt/minion +2020-03-06 10:08:19,428 [salt.config :3612][DEBUG ][3160] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:08:19,597 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:08:19,657 [git.cmd :722 ][DEBUG ][3160] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:08:20,223 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:08:20,223 [salt.loader :1671][DEBUG ][3160] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:07:19,226 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded ddns.update -2020-03-04 12:07:19,242 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded chassis.cmd -2020-03-04 12:07:19,258 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:07:19,273 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:07:19,289 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:07:19,320 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:07:19,559 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded esxi.cmd -2020-03-04 12:07:19,576 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:19,608 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: git version 2.23.0.windows.1 -2020-03-04 12:07:19,608 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded github.list_users -2020-03-04 12:07:19,608 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded glanceng.image_get -2020-03-04 12:07:19,624 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded elasticsearch.exists -2020-03-04 12:07:19,624 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: grafana_version, ret: _|- -2020-03-04 12:07:19,624 [salt.loaded.int.module.config:398 ][DEBUG ][4632] key: grafana_version, ret: _|- -2020-03-04 12:07:19,640 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded icinga2.generate_ticket -2020-03-04 12:07:19,640 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded ifttt.trigger_event -2020-03-04 12:07:19,656 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:07:19,674 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:07:19,689 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:07:19,705 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:07:19,721 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:07:19,736 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:07:19,769 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:07:19,769 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.domain_get -2020-03-04 12:07:19,769 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:07:19,769 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.group_get -2020-03-04 12:07:19,769 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.project_get -2020-03-04 12:07:19,784 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.role_get -2020-03-04 12:07:19,784 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.role_grant -2020-03-04 12:07:19,784 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.service_get -2020-03-04 12:07:19,784 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded keystoneng.user_get -2020-03-04 12:07:19,801 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:07:19,831 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:07:19,846 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:07:19,870 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:07:19,886 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:07:19,903 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:07:19,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:07:19,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:07:19,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:07:19,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded lxd.version -2020-03-04 12:07:19,918 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded memcached.status -2020-03-04 12:07:19,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mongodb.db_exists -2020-03-04 12:07:19,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mongodb.user_exists -2020-03-04 12:07:19,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:07:19,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:07:19,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:07:19,935 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded mssql.version -2020-03-04 12:07:19,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_networks -2020-03-04 12:07:19,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_subnets -2020-03-04 12:07:19,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_subnets -2020-03-04 12:07:19,951 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded neutronng.list_subnets -2020-03-04 12:07:19,966 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded npm.list -2020-03-04 12:07:19,966 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nxos.cmd -2020-03-04 12:07:19,983 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:07:20,000 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:07:20,016 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded panos.commit -2020-03-04 12:07:20,016 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pdbedit.create -2020-03-04 12:07:20,016 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded pecl.list -2020-03-04 12:07:20,048 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:07:20,048 [salt.loader :1577][DEBUG ][4632] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:08:20,902 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt.secret_key, ret: _|- +2020-03-06 10:08:20,902 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: ifttt:secret_key, ret: _|- +2020-03-06 10:08:22,367 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet.api_key, ret: _|- +2020-03-06 10:08:22,367 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: pushbullet:api_key, ret: _|- +2020-03-06 10:08:23,075 [salt.loader :1671][DEBUG ][3160] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:07:20,048 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.cluster_exists -2020-03-04 12:07:20,048 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.user_exists -2020-03-04 12:07:20,048 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.create_extension -2020-03-04 12:07:20,048 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.group_create -2020-03-04 12:07:20,048 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.datadir_init -2020-03-04 12:07:20,048 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.language_create -2020-03-04 12:07:20,048 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.privileges_grant -2020-03-04 12:07:20,063 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.schema_exists -2020-03-04 12:07:20,063 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.tablespace_exists -2020-03-04 12:07:20,063 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded postgres.user_exists -2020-03-04 12:07:20,095 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:07:20,095 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded selinux.getenforce -2020-03-04 12:07:20,111 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded splunk.list_users -2020-03-04 12:07:20,111 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded splunk_search.get -2020-03-04 12:07:20,147 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:07:20,147 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded tomcat.status -2020-03-04 12:07:20,164 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded vagrant.version -2020-03-04 12:07:20,164 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded victorops.create_event -2020-03-04 12:07:20,180 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded win_iis.create_site -2020-03-04 12:07:20,180 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded win_servermanager.install -2020-03-04 12:07:20,180 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:07:20,196 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded wordpress.show_plugin -2020-03-04 12:07:20,196 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded x509.get_pem_entry -2020-03-04 12:07:20,196 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded xmpp.send_msg -2020-03-04 12:07:20,212 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded zk_concurrency.lock -2020-03-04 12:07:20,212 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded zonecfg.create -2020-03-04 12:07:20,228 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded zookeeper.create -2020-03-04 12:07:20,245 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:07:20,245 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' -2020-03-04 12:07:20,403 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: INFO: Could not find files for the given pattern(s). -2020-03-04 12:07:20,403 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4632] retcode: 1 -2020-03-04 12:07:20,403 [salt.state :915 ][DEBUG ][4632] Last command return code: 1 -2020-03-04 12:07:20,420 [salt.utils.http :234 ][DEBUG ][4632] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method -2020-03-04 12:07:20,420 [salt.utils.http :235 ][DEBUG ][4632] Using backend: tornado -2020-03-04 12:07:20,908 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:26,864 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: Preparing: C:\a4f28be0b6079b73c7369cf990\header.bmp... -Preparing: C:\a4f28be0b6079b73c7369cf990\SplashScreen.bmp... -Preparing: C:\a4f28be0b6079b73c7369cf990\watermark.bmp... -Preparing: C:\a4f28be0b6079b73c7369cf990\DisplayIcon.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Print.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate1.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate2.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate3.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate4.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate5.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate6.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate7.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Rotate8.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Save.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\Setup.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\stop.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\SysReqMet.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\SysReqNotMet.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\Graphics\warn.ico... -Preparing: C:\a4f28be0b6079b73c7369cf990\1033\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1042\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1041\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1037\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1025\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1035\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1030\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1044\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1043\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1040\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1029\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1031\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1036\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1032\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1038\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\2052\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1028\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\3076\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1055\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1053\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\3082\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\2070\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1046\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1049\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\1045\LocalizedData.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\Client\Parameterinfo.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\Extended\Parameterinfo.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\ParameterInfo.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\Strings.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\UiInfo.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\Client\UiInfo.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\Extended\UiInfo.xml... -Preparing: C:\a4f28be0b6079b73c7369cf990\SetupUi.xsd... -Preparing: C:\a4f28be0b6079b73c7369cf990\DHtmlHeader.html... -Preparing: C:\a4f28be0b6079b73c7369cf990\1033\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1025\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1028\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1030\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1031\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1029\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1036\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1035\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1032\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1038\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1037\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1040\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1041\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1042\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1044\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1043\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1046\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1045\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1055\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1053\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\2052\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\1049\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\3082\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\2070\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\3076\eula.rtf... -Preparing: C:\a4f28be0b6079b73c7369cf990\Setup.exe... -Preparing: C:\a4f28be0b6079b73c7369cf990\SetupUtility.exe... -Preparing: C:\a4f28be0b6079b73c7369cf990\SetupEngine.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1025\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1033\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1029\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1030\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1035\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1031\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1036\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1032\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1028\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\2052\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\3076\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1042\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1041\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1037\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1044\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1053\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1055\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1040\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1045\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1046\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1049\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1038\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\2070\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\3082\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\1043\SetupResources.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\SetupUi.dll... -Preparing: C:\a4f28be0b6079b73c7369cf990\sqmapi.dll... -2020-03-04 12:07:26,880 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' -2020-03-04 12:07:30,896 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: Getting latest version of the Chocolatey package for download. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:08:23,524 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops.api_key, ret: _|- +2020-03-06 10:08:23,524 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: victorops:api_key, ret: _|- +2020-03-06 10:08:35,114 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:08:35,114 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded acme.cert +2020-03-06 10:08:35,114 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded alternatives.auto +2020-03-06 10:08:35,162 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded apache.config +2020-03-06 10:08:35,178 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded apache.a2enconf +2020-03-06 10:08:35,178 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded apache.a2ensite +2020-03-06 10:08:35,193 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:08:35,193 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded at.at +2020-03-06 10:08:35,224 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:08:35,224 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:08:35,224 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:08:35,224 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:08:35,224 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded disk.tune +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_asg.exists +2020-03-06 10:08:35,239 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cfn.exists +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_dynamodb.exists +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_ec2.get_key +2020-03-06 10:08:35,257 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elasticache.exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elb.exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_iam.get_user +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_iam.role_exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_iot.policy_exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_kinesis.exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_kms.describe_key +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_lambda.function_exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_asg.exists +2020-03-06 10:08:35,272 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_rds.exists +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_route53.get_record +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_secgroup.exists +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_sns.exists +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_sqs.exists +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded boto_vpc.exists +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded bower.list +2020-03-06 10:08:35,288 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded chef.client +2020-03-06 10:08:35,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cimc.get_system_info +2020-03-06 10:08:35,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cisconso.set_data_value +2020-03-06 10:08:35,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded cron.list_tab +2020-03-06 10:08:35,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded ddns.update +2020-03-06 10:08:35,304 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded chassis.cmd +2020-03-06 10:08:35,319 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:08:35,339 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:08:35,359 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:08:35,379 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:08:35,399 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded eselect.exec_action +2020-03-06 10:08:35,628 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded esxi.cmd +2020-03-06 10:08:35,635 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:08:35,668 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: git version 2.23.0.windows.1 +2020-03-06 10:08:35,668 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded github.list_users +2020-03-06 10:08:35,687 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded glanceng.image_get +2020-03-06 10:08:35,687 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded glusterfs.list_volumes +2020-03-06 10:08:35,687 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded elasticsearch.exists +2020-03-06 10:08:35,701 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: grafana_version, ret: _|- +2020-03-06 10:08:35,701 [salt.loaded.int.module.config:483 ][DEBUG ][3160] key: grafana_version, ret: _|- +2020-03-06 10:08:35,701 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded icinga2.generate_ticket +2020-03-06 10:08:35,715 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded ifttt.trigger_event +2020-03-06 10:08:35,734 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:08:35,750 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:08:35,762 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:08:35,797 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:08:35,812 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:08:35,844 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:08:35,861 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded ipset.version +2020-03-06 10:08:35,861 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded iptables.version +2020-03-06 10:08:35,861 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded kapacitor.version +2020-03-06 10:08:35,874 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:08:35,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keyboard.get_sys +2020-03-06 10:08:35,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystone.auth +2020-03-06 10:08:35,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.domain_get +2020-03-06 10:08:35,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:08:35,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.group_get +2020-03-06 10:08:35,891 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.project_get +2020-03-06 10:08:35,905 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.role_get +2020-03-06 10:08:35,905 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.role_grant +2020-03-06 10:08:35,905 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.service_get +2020-03-06 10:08:35,905 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystoneng.user_get +2020-03-06 10:08:35,905 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded keystore.list +2020-03-06 10:08:35,905 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded kmod.available +2020-03-06 10:08:35,924 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:08:35,924 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded layman.add +2020-03-06 10:08:35,959 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:08:35,959 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded logadm.list_conf +2020-03-06 10:08:35,971 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded logrotate.show_conf +2020-03-06 10:08:35,971 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lvs.get_rules +2020-03-06 10:08:35,971 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lvs.get_rules +2020-03-06 10:08:35,971 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:08:35,971 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:08:35,987 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:08:35,987 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded lxd.version +2020-03-06 10:08:35,987 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded makeconf.get_var +2020-03-06 10:08:35,987 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded memcached.status +2020-03-06 10:08:35,987 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded mongodb.db_exists +2020-03-06 10:08:36,003 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded mongodb.user_exists +2020-03-06 10:08:36,003 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded monit.summary +2020-03-06 10:08:36,023 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_networks +2020-03-06 10:08:36,023 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_subnets +2020-03-06 10:08:36,023 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_subnets +2020-03-06 10:08:36,023 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded neutronng.list_subnets +2020-03-06 10:08:36,035 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nftables.version +2020-03-06 10:08:36,035 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded npm.list +2020-03-06 10:08:36,035 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nxos.cmd +2020-03-06 10:08:36,035 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded openvswitch.bridge_create +2020-03-06 10:08:36,035 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded openvswitch.port_add +2020-03-06 10:08:36,051 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded panos.commit +2020-03-06 10:08:36,051 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pdbedit.create +2020-03-06 10:08:36,066 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded pecl.list +2020-03-06 10:08:36,088 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:08:36,088 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:08:36,088 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.cluster_exists +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.user_exists +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.create_extension +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.group_create +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.datadir_init +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.language_create +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.privileges_grant +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.schema_exists +2020-03-06 10:08:36,101 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.tablespace_exists +2020-03-06 10:08:36,116 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded postgres.user_exists +2020-03-06 10:08:36,116 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded quota.report +2020-03-06 10:08:36,116 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:08:36,155 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:08:36,197 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:08:36,197 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded selinux.getenforce +2020-03-06 10:08:36,235 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:08:36,235 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded snapper.diff +2020-03-06 10:08:36,235 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded splunk.list_users +2020-03-06 10:08:36,235 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded splunk_search.get +2020-03-06 10:08:36,272 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:08:36,287 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded tomcat.status +2020-03-06 10:08:36,287 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded trafficserver.set_config +2020-03-06 10:08:36,287 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded vagrant.version +2020-03-06 10:08:36,301 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded victorops.create_event +2020-03-06 10:08:36,301 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded virt.node_info +2020-03-06 10:08:36,301 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded win_iis.create_site +2020-03-06 10:08:36,319 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded win_servermanager.install +2020-03-06 10:08:36,319 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:08:36,319 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded wordpress.show_plugin +2020-03-06 10:08:36,334 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded x509.get_pem_entry +2020-03-06 10:08:36,334 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded xmpp.send_msg +2020-03-06 10:08:36,352 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded zk_concurrency.lock +2020-03-06 10:08:36,352 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded zonecfg.create +2020-03-06 10:08:36,352 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded zookeeper.create +2020-03-06 10:08:36,368 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:08:36,368 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:08:36,533 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:08:36,533 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][3160] retcode: 1 +2020-03-06 10:08:36,542 [salt.state :951 ][DEBUG ][3160] Last command return code: 1 +2020-03-06 10:08:36,542 [salt.utils.http :234 ][DEBUG ][3160] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:08:36,542 [salt.utils.http :235 ][DEBUG ][3160] Using backend: tornado +2020-03-06 10:08:36,767 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:08:42,776 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Preparing: C:\715ecd505ec2ec228b2d\header.bmp... +Preparing: C:\715ecd505ec2ec228b2d\SplashScreen.bmp... +Preparing: C:\715ecd505ec2ec228b2d\watermark.bmp... +Preparing: C:\715ecd505ec2ec228b2d\DisplayIcon.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Print.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate1.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate2.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate3.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate4.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate5.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate6.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate7.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Rotate8.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Save.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\Setup.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\stop.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\SysReqMet.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\SysReqNotMet.ico... +Preparing: C:\715ecd505ec2ec228b2d\Graphics\warn.ico... +Preparing: C:\715ecd505ec2ec228b2d\1033\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1042\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1041\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1037\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1025\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1035\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1030\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1044\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1043\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1040\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1029\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1031\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1036\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1032\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1038\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\2052\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1028\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\3076\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1055\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1053\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\3082\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\2070\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1046\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1049\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\1045\LocalizedData.xml... +Preparing: C:\715ecd505ec2ec228b2d\Client\Parameterinfo.xml... +Preparing: C:\715ecd505ec2ec228b2d\Extended\Parameterinfo.xml... +Preparing: C:\715ecd505ec2ec228b2d\ParameterInfo.xml... +Preparing: C:\715ecd505ec2ec228b2d\Strings.xml... +Preparing: C:\715ecd505ec2ec228b2d\UiInfo.xml... +Preparing: C:\715ecd505ec2ec228b2d\Client\UiInfo.xml... +Preparing: C:\715ecd505ec2ec228b2d\Extended\UiInfo.xml... +Preparing: C:\715ecd505ec2ec228b2d\SetupUi.xsd... +Preparing: C:\715ecd505ec2ec228b2d\DHtmlHeader.html... +Preparing: C:\715ecd505ec2ec228b2d\1033\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1025\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1028\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1030\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1031\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1029\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1036\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1035\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1032\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1038\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1037\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1040\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1041\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1042\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1044\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1043\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1046\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1045\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1055\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1053\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\2052\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\1049\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\3082\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\2070\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\3076\eula.rtf... +Preparing: C:\715ecd505ec2ec228b2d\Setup.exe... +Preparing: C:\715ecd505ec2ec228b2d\SetupUtility.exe... +Preparing: C:\715ecd505ec2ec228b2d\SetupEngine.dll... +Preparing: C:\715ecd505ec2ec228b2d\1025\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1033\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1029\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1030\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1035\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1031\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1036\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1032\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1028\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\2052\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\3076\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1042\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1041\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1037\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1044\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1053\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1055\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1040\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1045\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1046\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1049\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1038\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\2070\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\3082\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\1043\SetupResources.dll... +Preparing: C:\715ecd505ec2ec228b2d\SetupUi.dll... +Preparing: C:\715ecd505ec2ec228b2d\sqmapi.dll... +2020-03-06 10:08:42,787 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:08:47,270 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Getting latest version of the Chocolatey package for download. Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. Downloading 7-Zip commandline tool prior to extraction. Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... @@ -28309,17 +27408,55 @@ You may need to shut down and restart powershell and/or consoles first prior to using choco. Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder -2020-03-04 12:07:30,896 [salt.state :320 ][INFO ][4632] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} -2020-03-04 12:07:30,896 [salt.state :1997][INFO ][4632] Completed state [chocolatey.bootstrap] at time 12:07:30.896467 (duration_in_ms=20587.524) -2020-03-04 12:07:30,896 [salt.state :1819][INFO ][4632] Running state [notepadplusplus] at time 12:07:30.896467 -2020-03-04 12:07:30,911 [salt.state :1852][INFO ][4632] Executing state chocolatey.installed for [notepadplusplus] -2020-03-04 12:07:30,911 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:32,209 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: chocolatey|0.10.15 -2020-03-04 12:07:32,209 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:32,984 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: 0.10.15 -2020-03-04 12:07:32,984 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4632] output: 0.10.15 -2020-03-04 12:07:32,999 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:43,415 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: Chocolatey v0.10.15 +2020-03-06 10:08:47,270 [salt.state :320 ][INFO ][3160] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:08:47,270 [salt.state :2045][INFO ][3160] Completed state [chocolatey.bootstrap] at time 10:08:47.270641 (duration_in_ms=29723.59) +2020-03-06 10:08:47,270 [salt.state :1867][INFO ][3160] Running state [windirstat] at time 10:08:47.270641 +2020-03-06 10:08:47,270 [salt.state :1900][INFO ][3160] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:08:47,270 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:08:48,712 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: chocolatey|0.10.15 +2020-03-06 10:08:48,712 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:08:49,917 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: 0.10.15 +2020-03-06 10:08:49,917 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3160] output: 0.10.15 +2020-03-06 10:08:49,917 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:08:54,572 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:08:54,572 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:08:56,027 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:08:56,027 [salt.state :320 ][INFO ][3160] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 10:08:56,043 [salt.state :2045][INFO ][3160] Completed state [windirstat] at time 10:08:56.043204 (duration_in_ms=8772.563) +2020-03-06 10:08:56,043 [salt.state :1867][INFO ][3160] Running state [notepadplusplus] at time 10:08:56.043204 +2020-03-06 10:08:56,043 [salt.state :1900][INFO ][3160] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:08:56,058 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:08:57,619 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:08:57,619 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:09:06,080 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28340,7 +27477,7 @@ chocolatey-core.extension package files install completed. Performing other inst The install of chocolatey-core.extension was successful. Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' -notepadplusplus.install v7.8.4 [Approved] +notepadplusplus.install v7.8.5 notepadplusplus.install package files install completed. Performing other installation steps. Installing 64-bit notepadplusplus.install... notepadplusplus.install has been installed. @@ -28350,7 +27487,7 @@ Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program fi The install of notepadplusplus.install was successful. Software installed as 'exe', install location is likely default. -notepadplusplus v7.8.4 [Approved] +notepadplusplus v7.8.5 [Approved] notepadplusplus package files install completed. Performing other installation steps. The install of notepadplusplus was successful. Software install location not explicitly set, could be in package or @@ -28358,66 +27495,24 @@ notepadplusplus package files install completed. Performing other installation s Chocolatey installed 3/3 packages. See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:07:43,415 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:44,586 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: chocolatey|0.10.15 -chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:07:44,586 [salt.state :320 ][INFO ][4632] Made the following changes: -'notepadplusplus.install' changed from 'absent' to '['7.8.4']' -'notepadplusplus' changed from 'absent' to '['7.8.4']' - -2020-03-04 12:07:44,586 [salt.state :1997][INFO ][4632] Completed state [notepadplusplus] at time 12:07:44.586436 (duration_in_ms=13689.969) -2020-03-04 12:07:44,586 [salt.state :1819][INFO ][4632] Running state [windirstat] at time 12:07:44.586436 -2020-03-04 12:07:44,586 [salt.state :1852][INFO ][4632] Executing state chocolatey.installed for [windirstat] -2020-03-04 12:07:44,586 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:45,927 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: chocolatey|0.10.15 -chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:07:45,927 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:50,360 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: Chocolatey v0.10.15 -2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). - -Validation Warnings: - - A pending system reboot request has been detected, however, this is - being ignored due to the current Chocolatey configuration. If you - want to halt when this occurs, then either set the global feature - using: - choco feature enable -name=exitOnRebootDetected - or pass the option --exit-when-reboot-detected. - -Installing the following packages: -windirstat -By installing you accept licenses for the packages. - -windirstat v1.1.2.20161210 [Approved] -windirstat package files install completed. Performing other installation steps. -Installing WinDirStat... -WinDirStat has been installed. - windirstat may be able to be automatically uninstalled. - The install of windirstat was successful. - Software installed to 'C:\Program Files (x86)\WinDirStat' - -Chocolatey installed 1/1 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:07:50,360 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:51,769 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: chocolatey|0.10.15 +2020-03-06 10:09:06,080 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:09:07,497 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 windirstat|1.1.2.20161210 -2020-03-04 12:07:51,769 [salt.state :320 ][INFO ][4632] Made the following changes: -'windirstat' changed from 'absent' to '['1.1.2.20161210']' - -2020-03-04 12:07:51,769 [salt.state :1997][INFO ][4632] Completed state [windirstat] at time 12:07:51.769282 (duration_in_ms=7182.846) -2020-03-04 12:07:51,769 [salt.state :1819][INFO ][4632] Running state [TelnetClient] at time 12:07:51.769282 -2020-03-04 12:07:51,769 [salt.state :1852][INFO ][4632] Executing state dism.feature_installed for [TelnetClient] -2020-03-04 12:07:51,784 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. -2020-03-04 12:07:51,784 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:07:54,334 [salt.state :889 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:07:54,334 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:55,775 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: +2020-03-06 10:09:07,497 [salt.state :320 ][INFO ][3160] Made the following changes: +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' +'notepadplusplus' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:09:07,497 [salt.state :2045][INFO ][3160] Completed state [notepadplusplus] at time 10:09:07.497108 (duration_in_ms=11453.904) +2020-03-06 10:09:07,497 [salt.state :1867][INFO ][3160] Running state [TelnetClient] at time 10:09:07.497108 +2020-03-06 10:09:07,497 [salt.state :1900][INFO ][3160] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:09:07,513 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:09:07,528 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:09:09,666 [salt.state :906 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:09:09,666 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:09:11,010 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Deployment Image Servicing and Management tool Version: 10.0.17134.1 @@ -28855,7 +27950,7 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:07:55,775 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4632] output: +2020-03-06 10:09:11,010 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3160] output: Deployment Image Servicing and Management tool Version: 10.0.17134.1 @@ -29293,9 +28388,9 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:07:55,775 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:56,790 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 12:07:58,134 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4632] stdout: +2020-03-06 10:09:11,025 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:09:12,178 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:09:13,489 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][3160] stdout: Deployment Image Servicing and Management tool Version: 10.0.17134.1 @@ -29733,7 +28828,7 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:07:58,134 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4632] output: +2020-03-06 10:09:13,489 [salt.loaded.int.module.cmdmod:1199][DEBUG ][3160] output: Deployment Image Servicing and Management tool Version: 10.0.17134.1 @@ -30171,909 +29266,51 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:07:58,134 [salt.state :320 ][INFO ][4632] {'retcode': 0, 'stderr': '', 'feature': {'new': 'TelnetClient'}, 'pid': 2184, 'stdout': ''} -2020-03-04 12:07:58,149 [salt.state :1997][INFO ][4632] Completed state [TelnetClient] at time 12:07:58.149742 (duration_in_ms=6380.46) -2020-03-04 12:07:58,149 [salt.state :1819][INFO ][4632] Running state [windows.module.system.reboot] at time 12:07:58.149742 -2020-03-04 12:07:58,149 [salt.state :1852][INFO ][4632] Executing state module.run for [windows.module.system.reboot] -2020-03-04 12:07:58,166 [salt.utils.lazy :107 ][DEBUG ][4632] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:07:58,166 [salt.loaded.int.module.cmdmod:397 ][INFO ][4632] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' -2020-03-04 12:07:58,339 [salt.state :889 ][DEBUG ][4632] Last command return code: 0 -2020-03-04 12:07:58,354 [salt.loaded.int.module.win_system:1413][DEBUG ][4632] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired -2020-03-04 12:07:58,354 [salt.loaded.int.module.win_system:1348][DEBUG ][4632] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:07:58,354 [salt.loaded.int.module.win_system:1348][DEBUG ][4632] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:07:58,354 [salt.loaded.int.module.win_system:1387][DEBUG ][4632] Unable to access key: SOFTWARE\Microsoft\ServerManager -2020-03-04 12:07:58,354 [salt.loaded.int.module.win_system:1273][DEBUG ][4632] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending -2020-03-04 12:07:58,385 [salt.state :320 ][INFO ][4632] {'system.reboot': True} -2020-03-04 12:07:58,401 [salt.state :1997][INFO ][4632] Completed state [windows.module.system.reboot] at time 12:07:58.401784 (duration_in_ms=252.042) -2020-03-04 12:07:58,401 [salt.state :2801][DEBUG ][4632] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2448026894064 does not exist, no need to cleanup -2020-03-04 12:07:58,401 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded state.check_result -2020-03-04 12:07:58,417 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded highstate.output -2020-03-04 12:07:58,432 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,432 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,432 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,448 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,448 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,448 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,448 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,464 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,464 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,464 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,464 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,464 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,479 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,511 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,511 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,527 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,542 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,542 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,542 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,557 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,557 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 12:07:58,557 [salt.utils.lazy :104 ][DEBUG ][4632] LazyLoaded nested.output -2020-03-04 15:08:04,191 [salt.loader :747 ][DEBUG ][6608] Grains refresh requested. Refreshing grains. -2020-03-04 15:08:04,191 [salt.config :2190][DEBUG ][6608] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 15:08:04,191 [salt.config :2334][DEBUG ][6608] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 15:08:04,191 [salt.config :2190][DEBUG ][6608] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 15:08:10,761 [salt.pillar :57 ][DEBUG ][6608] Determining pillar cache -2020-03-04 15:08:10,824 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded jinja.render -2020-03-04 15:08:10,824 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded yaml.render -2020-03-04 15:08:10,840 [salt.template :59 ][DEBUG ][6608] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 15:08:10,855 [salt.utils.jinja :85 ][DEBUG ][6608] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:08:10,871 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015709877014160156 -2020-03-04 15:08:10,871 [salt.template :120 ][DEBUG ][6608] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: ---- -base: - "*": - - windows - -2020-03-04 15:08:10,871 [salt.loaded.int.render.yaml:80 ][DEBUG ][6608] Results of YAML rendering: -OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 15:08:10,871 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 15:08:10,887 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded confirm_top.confirm_top -2020-03-04 15:08:10,887 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded compound_match.match -2020-03-04 15:08:10,887 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6608] compound_match: vagrant-10 ? * -2020-03-04 15:08:10,904 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded glob_match.match -2020-03-04 15:08:10,904 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6608] compound_match vagrant-10 ? "*" => "True" -2020-03-04 15:08:10,904 [salt.template :59 ][DEBUG ][6608] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 15:08:10,904 [salt.utils.jinja :85 ][DEBUG ][6608] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:08:10,904 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 -2020-03-04 15:08:10,922 [salt.template :120 ][DEBUG ][6608] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: -# -*- coding: utf-8 -*- -# vim: ft=yaml ---- -windows: - states: - enabled: true - system: - computer_desc: - id: description - enabled: true - name: "Saltstack Computer Description" - require: - - windows.state.system.hostname.saltstack1 - hostname: - name: "saltstack1" - timezone: - system: - name: America/New_York - utc: false - wua: - # settings: - # enabled: true - # level: 4 - # recommended: true - # featured: false - # elevated: true - # msupdate: true - # day: Everyday - # time: "01:00" - uptodate: - enabled: false - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - modules: - enabled: true - environ: - items: - enabled: true - system: - reboot: - enabled: true - timeout: 5 - in_seconds: true - only_on_pending_reboot: true - wait_for_reboot: false - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" - order: last - user: - enabled: true - current: - enabled: true - sam: true - status: - uptime: - enabled: true - human_readable: true - require: - - windows.module.user.current - system: - enabled: true - reboot: - enabled: false - timeout_in_seconds: 10 - only_on_pending_reboot: true - dsc: - enabled: false - client: - root: c:\\DSC\\ - manifest: - source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ - configuration: Win10DSC - user: - enabled: false - disable: - Administrator: - disable: false - Guest: - disable: true - packages: - enabled: true - always_install_latest_version: false - always_upgrade_to_latest_version: false - providers: - enabled: false - installed: - NuGet: - powershell: - modules: - enabled: true - installed: - PSDscResources: - cChoco: - chocolatey: - enabled: true - installed: - notepadplusplus: - windirstat: - version: '1.1.2.20161210' - saltstack: - enabled: true - installed: - git: - refresh_minion_env_path: true - 7zip: - version: '18.06.00.0' - refresh_minion_env_path: false - kdiff3: - appx: - enabled: true - provisioned: - uninstalled: - # Microsoft.3DBuilder: - # Microsoft.BingWeather: - # Microsoft.DesktopAppInstaller: - # Microsoft.Getstarted: - # Microsoft.Messaging: - # Microsoft.Microsoft3DViewer: - # Microsoft.MicrosoftOfficeHub: - Microsoft.MicrosoftSolitaireCollection: - # Microsoft.MicrosoftStickyNotes: - # Microsoft.MSPaint: - # Microsoft.Office.OneNote: - # Microsoft.OneConnect: - # Microsoft.People: - # Microsoft.SkypeApp: - # Microsoft.StorePurchaseApp: - Microsoft.Wallet: - # Microsoft.Windows.Photos: - # Microsoft.WindowsAlarms: - # Microsoft.WindowsCalculator: - # Microsoft.WindowsCamera: - # microsoft.windowscommunicationsapps: - # Microsoft.WindowsFeedbackHub: - # Microsoft.WindowsMaps: - # Microsoft.WindowsSoundRecorder: - # Microsoft.WindowsStore: - # Microsoft.XboxApp: - # Microsoft.XboxGameOverlay: - # Microsoft.XboxIdentityProvider: - # Microsoft.XboxSpeechToTextOverlay: - Microsoft.ZuneMusic: - Microsoft.ZuneVideo: - # Microsoft.GetHelp: - # Microsoft.Print3D: - # Microsoft.Xbox.TCUI: - # Microsoft.WebMediaExtensions: - # Microsoft.XboxGamingOverlay: - # Microsoft.HEIFImageExtension: - Microsoft.MixedReality.Portal: - # Microsoft.ScreenSketch: - # Microsoft.VP9VideoExtensions: - # Microsoft.WebpImageExtension: - # Microsoft.YourPhone: - server: - enabled: true - features: - enabled: true - installed: - telnet-client: - desktop: - enabled: true - optional_features: - enabled: true - installed: - # Client-DeviceLockdown: - # Client-EmbeddedBootExp: - # Client-EmbeddedLogon: - # Client-EmbeddedShellLauncher: - # ClientForNFS-Infrastructure: - # Client-KeyboardFilter: - # Client-ProjFS: - # Client-UnifiedWriteFilter: - # Containers: - # Containers-DisposableClientVM: - # DataCenterBridging: - # DirectoryServices-ADAM-Client: - # DirectPlay: - # FaxServicesClientPackage: - # HostGuardian: - # HypervisorPlatform: - # IIS-ApplicationDevelopment: - # IIS-ApplicationInit: - # IIS-ASP: - # IIS-ASPNET: - # IIS-ASPNET45: - # IIS-BasicAuthentication: - # IIS-CertProvider: - # IIS-CGI: - # IIS-ClientCertificateMappingAuthentication: - # IIS-CommonHttpFeatures: - # IIS-CustomLogging: - # IIS-DefaultDocument: - # IIS-DigestAuthentication: - # IIS-DirectoryBrowsing: - # IIS-FTPExtensibility: - # IIS-FTPServer: - # IIS-FTPSvc: - # IIS-HealthAndDiagnostics: - # IIS-HostableWebCore: - # IIS-HttpCompressionDynamic: - # IIS-HttpCompressionStatic: - # IIS-HttpErrors: - # IIS-HttpLogging: - # IIS-HttpRedirect: - # IIS-HttpTracing: - # IIS-IIS6ManagementCompatibility: - # IIS-IISCertificateMappingAuthentication: - # IIS-IPSecurity: - # IIS-ISAPIExtensions: - # IIS-ISAPIFilter: - # IIS-LegacyScripts: - # IIS-LegacySnapIn: - # IIS-LoggingLibraries: - # IIS-ManagementConsole: - # IIS-ManagementScriptingTools: - # IIS-ManagementService: - # IIS-Metabase: - # IIS-NetFxExtensibility: - # IIS-NetFxExtensibility45: - # IIS-ODBCLogging: - # IIS-Performance: - # IIS-RequestFiltering: - # IIS-RequestMonitor: - # IIS-Security: - # IIS-ServerSideIncludes: - # IIS-StaticContent: - # IIS-URLAuthorization: - # IIS-WebDAV: - # IIS-WebServer: - # IIS-WebServerManagementTools: - # IIS-WebServerRole: - # IIS-WebSockets: - # IIS-WindowsAuthentication: - # IIS-WMICompatibility: - # Internet-Explorer-Optional-amd64: - # LegacyComponents: - # MediaPlayback: - # Microsoft-Hyper-V: - # Microsoft-Hyper-V-All: - # Microsoft-Hyper-V-Hypervisor: - # Microsoft-Hyper-V-Management-Clients: - # Microsoft-Hyper-V-Management-PowerShell: - # Microsoft-Hyper-V-Services: - # Microsoft-Hyper-V-Tools-All: - # Microsoft-Windows-Client-EmbeddedExp-Package: - # Microsoft-Windows-NetFx3-OC-Package: - # Microsoft-Windows-NetFx3-WCF-OC-Package: - # Microsoft-Windows-NetFx4-US-OC-Package: - # Microsoft-Windows-NetFx4-WCF-US-OC-Package: - # MicrosoftWindowsPowerShellV2: - # MicrosoftWindowsPowerShellV2Root: - # Microsoft-Windows-Subsystem-Linux: - # MSMQ-ADIntegration: - # MSMQ-Container: - # MSMQ-DCOMProxy: - # MSMQ-HTTP: - # MSMQ-Multicast: - # MSMQ-Server: - # MSMQ-Triggers: - # MSRDC-Infrastructure: - # MultiPoint-Connector: - # MultiPoint-Connector-Services: - # MultiPoint-Tools: - # NetFx3: - # NetFx4-AdvSrvs: - # NetFx4Extended-ASPNET45: - # NFS-Administration: - # Printing-Foundation-Features: - # Printing-Foundation-InternetPrinting-Client: - # Printing-Foundation-LPDPrintService: - # Printing-Foundation-LPRPortMonitor: - # Printing-PrintToPDFServices-Features: - # Printing-XPSServices-Features: - # SearchEngine-Client-Package: - # ServicesForNFS-ClientOnly: - # SimpleTCP: - # SMB1Protocol: - # SMB1Protocol-Client: - # SMB1Protocol-Deprecation: - # SMB1Protocol-Server: - # SmbDirect: - TelnetClient: - # TFTP: - # TIFFIFilter: - # VirtualMachinePlatform: - # WAS-ConfigurationAPI: - # WAS-NetFxEnvironment: - # WAS-ProcessModel: - # WAS-WindowsActivationService: - # WCF-HTTP-Activation: - # WCF-HTTP-Activation45: - # WCF-MSMQ-Activation45: - # WCF-NonHTTP-Activation: - # WCF-Pipe-Activation45: - # WCF-Services45: - # WCF-TCP-Activation45: - # WCF-TCP-PortSharing45: - # Windows-Defender-ApplicationGuard: - # Windows-Defender-Default-Definitions: - # Windows-Identity-Foundation: - # WindowsMediaPlayer: - # WorkFolders-Client: - packages: - enabled: true - system_old: - enabled: true - timezone: America/New_York - computer: - enabled: true - hostname: "saltstack1" - description: "Saltstack Computer Description" - wua: - enabled: true - settings: - enabled: true - level: 4 - recommended: true - featured: false - elevated: true - msupdate: true - day: Everyday - time: "01:00" - uptodate: - enabled: true - only_initial_build: true - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - user: - enabled: false - create: - saltuser1: - enabled: true - password: P@55w0rd! - fullname: User1 SaltStack - description: SaltStack User1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Power Users - - saltstack_users - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - saltadmin1: - enabled: false - password: P@55w0rd! - fullname: Admin1 SaltStack - description: SaltStack Admin1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Administrators - - saltstack_administrators - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - -2020-03-04 15:08:10,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][6608] Results of YAML rendering: -OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 15:08:10,922 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 -2020-03-04 15:08:11,002 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded jinja.render -2020-03-04 15:08:11,002 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded yaml.render -2020-03-04 15:08:11,030 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded pillar.items -2020-03-04 15:08:11,030 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded direct_call.execute -2020-03-04 15:08:11,030 [salt.pillar :57 ][DEBUG ][6608] Determining pillar cache -2020-03-04 15:08:11,095 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded jinja.render -2020-03-04 15:08:11,110 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded yaml.render -2020-03-04 15:08:11,127 [salt.template :59 ][DEBUG ][6608] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 15:08:11,127 [salt.utils.jinja :85 ][DEBUG ][6608] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:08:11,127 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 -2020-03-04 15:08:11,127 [salt.template :120 ][DEBUG ][6608] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: ---- -base: - "*": - - windows - -2020-03-04 15:08:11,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][6608] Results of YAML rendering: -OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 15:08:11,127 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 15:08:11,127 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded confirm_top.confirm_top -2020-03-04 15:08:11,143 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded compound_match.match -2020-03-04 15:08:11,143 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6608] compound_match: vagrant-10 ? * -2020-03-04 15:08:11,143 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded glob_match.match -2020-03-04 15:08:11,143 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6608] compound_match vagrant-10 ? "*" => "True" -2020-03-04 15:08:11,143 [salt.template :59 ][DEBUG ][6608] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 15:08:11,143 [salt.utils.jinja :85 ][DEBUG ][6608] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:08:11,159 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0156552791595459 -2020-03-04 15:08:11,159 [salt.template :120 ][DEBUG ][6608] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: -# -*- coding: utf-8 -*- -# vim: ft=yaml ---- -windows: - states: - enabled: true - system: - computer_desc: - id: description - enabled: true - name: "Saltstack Computer Description" - require: - - windows.state.system.hostname.saltstack1 - hostname: - name: "saltstack1" - timezone: - system: - name: America/New_York - utc: false - wua: - # settings: - # enabled: true - # level: 4 - # recommended: true - # featured: false - # elevated: true - # msupdate: true - # day: Everyday - # time: "01:00" - uptodate: - enabled: false - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - modules: - enabled: true - environ: - items: - enabled: true - system: - reboot: - enabled: true - timeout: 5 - in_seconds: true - only_on_pending_reboot: true - wait_for_reboot: false - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" - order: last - user: - enabled: true - current: - enabled: true - sam: true - status: - uptime: - enabled: true - human_readable: true - require: - - windows.module.user.current - system: - enabled: true - reboot: - enabled: false - timeout_in_seconds: 10 - only_on_pending_reboot: true - dsc: - enabled: false - client: - root: c:\\DSC\\ - manifest: - source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ - configuration: Win10DSC - user: - enabled: false - disable: - Administrator: - disable: false - Guest: - disable: true - packages: - enabled: true - always_install_latest_version: false - always_upgrade_to_latest_version: false - providers: - enabled: false - installed: - NuGet: - powershell: - modules: - enabled: true - installed: - PSDscResources: - cChoco: - chocolatey: - enabled: true - installed: - notepadplusplus: - windirstat: - version: '1.1.2.20161210' - saltstack: - enabled: true - installed: - git: - refresh_minion_env_path: true - 7zip: - version: '18.06.00.0' - refresh_minion_env_path: false - kdiff3: - appx: - enabled: true - provisioned: - uninstalled: - # Microsoft.3DBuilder: - # Microsoft.BingWeather: - # Microsoft.DesktopAppInstaller: - # Microsoft.Getstarted: - # Microsoft.Messaging: - # Microsoft.Microsoft3DViewer: - # Microsoft.MicrosoftOfficeHub: - Microsoft.MicrosoftSolitaireCollection: - # Microsoft.MicrosoftStickyNotes: - # Microsoft.MSPaint: - # Microsoft.Office.OneNote: - # Microsoft.OneConnect: - # Microsoft.People: - # Microsoft.SkypeApp: - # Microsoft.StorePurchaseApp: - Microsoft.Wallet: - # Microsoft.Windows.Photos: - # Microsoft.WindowsAlarms: - # Microsoft.WindowsCalculator: - # Microsoft.WindowsCamera: - # microsoft.windowscommunicationsapps: - # Microsoft.WindowsFeedbackHub: - # Microsoft.WindowsMaps: - # Microsoft.WindowsSoundRecorder: - # Microsoft.WindowsStore: - # Microsoft.XboxApp: - # Microsoft.XboxGameOverlay: - # Microsoft.XboxIdentityProvider: - # Microsoft.XboxSpeechToTextOverlay: - Microsoft.ZuneMusic: - Microsoft.ZuneVideo: - # Microsoft.GetHelp: - # Microsoft.Print3D: - # Microsoft.Xbox.TCUI: - # Microsoft.WebMediaExtensions: - # Microsoft.XboxGamingOverlay: - # Microsoft.HEIFImageExtension: - Microsoft.MixedReality.Portal: - # Microsoft.ScreenSketch: - # Microsoft.VP9VideoExtensions: - # Microsoft.WebpImageExtension: - # Microsoft.YourPhone: - server: - enabled: true - features: - enabled: true - installed: - telnet-client: - desktop: - enabled: true - optional_features: - enabled: true - installed: - # Client-DeviceLockdown: - # Client-EmbeddedBootExp: - # Client-EmbeddedLogon: - # Client-EmbeddedShellLauncher: - # ClientForNFS-Infrastructure: - # Client-KeyboardFilter: - # Client-ProjFS: - # Client-UnifiedWriteFilter: - # Containers: - # Containers-DisposableClientVM: - # DataCenterBridging: - # DirectoryServices-ADAM-Client: - # DirectPlay: - # FaxServicesClientPackage: - # HostGuardian: - # HypervisorPlatform: - # IIS-ApplicationDevelopment: - # IIS-ApplicationInit: - # IIS-ASP: - # IIS-ASPNET: - # IIS-ASPNET45: - # IIS-BasicAuthentication: - # IIS-CertProvider: - # IIS-CGI: - # IIS-ClientCertificateMappingAuthentication: - # IIS-CommonHttpFeatures: - # IIS-CustomLogging: - # IIS-DefaultDocument: - # IIS-DigestAuthentication: - # IIS-DirectoryBrowsing: - # IIS-FTPExtensibility: - # IIS-FTPServer: - # IIS-FTPSvc: - # IIS-HealthAndDiagnostics: - # IIS-HostableWebCore: - # IIS-HttpCompressionDynamic: - # IIS-HttpCompressionStatic: - # IIS-HttpErrors: - # IIS-HttpLogging: - # IIS-HttpRedirect: - # IIS-HttpTracing: - # IIS-IIS6ManagementCompatibility: - # IIS-IISCertificateMappingAuthentication: - # IIS-IPSecurity: - # IIS-ISAPIExtensions: - # IIS-ISAPIFilter: - # IIS-LegacyScripts: - # IIS-LegacySnapIn: - # IIS-LoggingLibraries: - # IIS-ManagementConsole: - # IIS-ManagementScriptingTools: - # IIS-ManagementService: - # IIS-Metabase: - # IIS-NetFxExtensibility: - # IIS-NetFxExtensibility45: - # IIS-ODBCLogging: - # IIS-Performance: - # IIS-RequestFiltering: - # IIS-RequestMonitor: - # IIS-Security: - # IIS-ServerSideIncludes: - # IIS-StaticContent: - # IIS-URLAuthorization: - # IIS-WebDAV: - # IIS-WebServer: - # IIS-WebServerManagementTools: - # IIS-WebServerRole: - # IIS-WebSockets: - # IIS-WindowsAuthentication: - # IIS-WMICompatibility: - # Internet-Explorer-Optional-amd64: - # LegacyComponents: - # MediaPlayback: - # Microsoft-Hyper-V: - # Microsoft-Hyper-V-All: - # Microsoft-Hyper-V-Hypervisor: - # Microsoft-Hyper-V-Management-Clients: - # Microsoft-Hyper-V-Management-PowerShell: - # Microsoft-Hyper-V-Services: - # Microsoft-Hyper-V-Tools-All: - # Microsoft-Windows-Client-EmbeddedExp-Package: - # Microsoft-Windows-NetFx3-OC-Package: - # Microsoft-Windows-NetFx3-WCF-OC-Package: - # Microsoft-Windows-NetFx4-US-OC-Package: - # Microsoft-Windows-NetFx4-WCF-US-OC-Package: - # MicrosoftWindowsPowerShellV2: - # MicrosoftWindowsPowerShellV2Root: - # Microsoft-Windows-Subsystem-Linux: - # MSMQ-ADIntegration: - # MSMQ-Container: - # MSMQ-DCOMProxy: - # MSMQ-HTTP: - # MSMQ-Multicast: - # MSMQ-Server: - # MSMQ-Triggers: - # MSRDC-Infrastructure: - # MultiPoint-Connector: - # MultiPoint-Connector-Services: - # MultiPoint-Tools: - # NetFx3: - # NetFx4-AdvSrvs: - # NetFx4Extended-ASPNET45: - # NFS-Administration: - # Printing-Foundation-Features: - # Printing-Foundation-InternetPrinting-Client: - # Printing-Foundation-LPDPrintService: - # Printing-Foundation-LPRPortMonitor: - # Printing-PrintToPDFServices-Features: - # Printing-XPSServices-Features: - # SearchEngine-Client-Package: - # ServicesForNFS-ClientOnly: - # SimpleTCP: - # SMB1Protocol: - # SMB1Protocol-Client: - # SMB1Protocol-Deprecation: - # SMB1Protocol-Server: - # SmbDirect: - TelnetClient: - # TFTP: - # TIFFIFilter: - # VirtualMachinePlatform: - # WAS-ConfigurationAPI: - # WAS-NetFxEnvironment: - # WAS-ProcessModel: - # WAS-WindowsActivationService: - # WCF-HTTP-Activation: - # WCF-HTTP-Activation45: - # WCF-MSMQ-Activation45: - # WCF-NonHTTP-Activation: - # WCF-Pipe-Activation45: - # WCF-Services45: - # WCF-TCP-Activation45: - # WCF-TCP-PortSharing45: - # Windows-Defender-ApplicationGuard: - # Windows-Defender-Default-Definitions: - # Windows-Identity-Foundation: - # WindowsMediaPlayer: - # WorkFolders-Client: - packages: - enabled: true - system_old: - enabled: true - timezone: America/New_York - computer: - enabled: true - hostname: "saltstack1" - description: "Saltstack Computer Description" - wua: - enabled: true - settings: - enabled: true - level: 4 - recommended: true - featured: false - elevated: true - msupdate: true - day: Everyday - time: "01:00" - uptodate: - enabled: true - only_initial_build: true - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - user: - enabled: false - create: - saltuser1: - enabled: true - password: P@55w0rd! - fullname: User1 SaltStack - description: SaltStack User1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Power Users - - saltstack_users - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - saltadmin1: - enabled: false - password: P@55w0rd! - fullname: Admin1 SaltStack - description: SaltStack Admin1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Administrators - - saltstack_administrators - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - -2020-03-04 15:08:11,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][6608] Results of YAML rendering: -OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 15:08:11,159 [salt.template :26 ][PROFILE ][6608] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 -2020-03-04 15:08:11,177 [salt.utils.lazy :104 ][DEBUG ][6608] LazyLoaded nested.output +2020-03-06 10:09:13,489 [salt.state :320 ][INFO ][3160] {'stderr': '', 'stdout': '', 'retcode': 0, 'feature': {'new': ['TelnetClient']}, 'pid': 148} +2020-03-06 10:09:13,489 [salt.state :2045][INFO ][3160] Completed state [TelnetClient] at time 10:09:13.489356 (duration_in_ms=5992.248) +2020-03-06 10:09:13,489 [salt.state :1867][INFO ][3160] Running state [windows.module.system.reboot] at time 10:09:13.489356 +2020-03-06 10:09:13,489 [salt.state :1900][INFO ][3160] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:09:13,505 [salt.utils.lazy :107 ][DEBUG ][3160] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:09:13,505 [salt.loaded.int.module.cmdmod:397 ][INFO ][3160] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:09:13,713 [salt.state :906 ][DEBUG ][3160] Last command return code: 0 +2020-03-06 10:09:13,713 [salt.loaded.int.module.win_system:1413][DEBUG ][3160] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:09:13,713 [salt.loaded.int.module.win_system:1348][DEBUG ][3160] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:09:13,713 [salt.loaded.int.module.win_system:1348][DEBUG ][3160] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:09:13,713 [salt.loaded.int.module.win_system:1387][DEBUG ][3160] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:09:13,713 [salt.loaded.int.module.win_system:1273][DEBUG ][3160] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:09:13,767 [salt.state :320 ][INFO ][3160] {'system.reboot': True} +2020-03-06 10:09:13,767 [salt.state :2045][INFO ][3160] Completed state [windows.module.system.reboot] at time 10:09:13.767915 (duration_in_ms=278.559) +2020-03-06 10:09:13,767 [salt.state :2921][DEBUG ][3160] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1951794300240 does not exist, no need to cleanup +2020-03-06 10:09:13,783 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded highstate.output +2020-03-06 10:09:13,783 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,800 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,800 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,800 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,816 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,816 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,816 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,816 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,831 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,831 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,831 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,846 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,846 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,846 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,863 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,863 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,863 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,863 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,878 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,878 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,878 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,894 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,894 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 10:09:13,894 [salt.utils.lazy :104 ][DEBUG ][3160] LazyLoaded nested.output +2020-03-06 13:09:21,437 [salt.loader :770 ][DEBUG ][472] Grains refresh requested. Refreshing grains. +2020-03-06 13:09:21,437 [salt.config :2111][DEBUG ][472] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:09:21,437 [salt.config :2255][DEBUG ][472] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:09:21,437 [salt.config :2111][DEBUG ][472] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 13:09:32,314 [salt.loader :770 ][DEBUG ][6320] Grains refresh requested. Refreshing grains. +2020-03-06 13:09:32,329 [salt.config :2111][DEBUG ][6320] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:09:32,329 [salt.config :2255][DEBUG ][6320] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:09:32,329 [salt.config :2111][DEBUG ][6320] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-windows-10-1809.inspec.results.json b/test/results/py3-windows-10-1809.inspec.results.json index adc4ae2..ff6a6c0 100644 --- a/test/results/py3-windows-10-1809.inspec.results.json +++ b/test/results/py3-windows-10-1809.inspec.results.json @@ -1 +1 @@ -{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.17763"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001206,"start_time":"2020-03-04T15:03:39-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.2842819,"start_time":"2020-03-04T15:03:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0394081,"start_time":"2020-03-04T15:03:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0351294,"start_time":"2020-03-04T15:03:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.042913,"start_time":"2020-03-04T15:03:39-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0521255,"start_time":"2020-03-04T15:03:39-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001404,"start_time":"2020-03-04T15:03:39-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":9.39e-05,"start_time":"2020-03-04T15:03:39-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001624,"start_time":"2020-03-04T15:03:39-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":9.8e-06,"start_time":"2020-03-04T15:03:39-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0603056,"start_time":"2020-03-04T15:03:39-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5193692,"start_time":"2020-03-04T15:03:39-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":3.1792442,"start_time":"2020-03-04T15:03:40-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.020398,"start_time":"2020-03-04T15:03:43-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0002308,"start_time":"2020-03-04T15:03:43-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1085953,"start_time":"2020-03-04T15:03:43-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1688347,"start_time":"2020-03-04T15:03:43-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1724133,"start_time":"2020-03-04T15:03:43-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1492159,"start_time":"2020-03-04T15:03:43-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1494689,"start_time":"2020-03-04T15:03:43-05:00"}]}],"status":"loaded"}],"statistics":{"duration":5.0193819},"version":"4.18.39"} \ No newline at end of file +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.17763"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001744,"start_time":"2020-03-06T13:04:16-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.2969768,"start_time":"2020-03-06T13:04:16-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0352327,"start_time":"2020-03-06T13:04:17-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0366023,"start_time":"2020-03-06T13:04:17-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0610382,"start_time":"2020-03-06T13:04:17-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0462288,"start_time":"2020-03-06T13:04:17-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001991,"start_time":"2020-03-06T13:04:17-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":0.0001309,"start_time":"2020-03-06T13:04:17-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.000147,"start_time":"2020-03-06T13:04:17-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":1.14e-05,"start_time":"2020-03-06T13:04:17-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0740669,"start_time":"2020-03-06T13:04:17-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5396089,"start_time":"2020-03-06T13:04:17-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":5.0080337,"start_time":"2020-03-06T13:04:17-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0253299,"start_time":"2020-03-06T13:04:22-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0002622,"start_time":"2020-03-06T13:04:22-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.2383434,"start_time":"2020-03-06T13:04:22-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.4423054,"start_time":"2020-03-06T13:04:23-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.275698,"start_time":"2020-03-06T13:04:23-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.2337565,"start_time":"2020-03-06T13:04:23-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.4037018,"start_time":"2020-03-06T13:04:24-05:00"}]}],"status":"loaded"}],"statistics":{"duration":7.7576414},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-windows-10-1809.inspec.results.txt b/test/results/py3-windows-10-1809.inspec.results.txt index 916ee66..f4b8836 100644 --- a/test/results/py3-windows-10-1809.inspec.results.txt +++ b/test/results/py3-windows-10-1809.inspec.results.txt @@ -66,6 +66,6 @@ Pending: (Failures listed here are expected and do not affect your suite's statu # Not yet implemented # -Finished in 5.02 seconds (files took 5 minutes 6 seconds to load) +Finished in 7.76 seconds (files took 5 minutes 23 seconds to load) 20 examples, 0 failures, 1 pending diff --git a/test/results/py3-windows-10-1809.inspec.results.xml b/test/results/py3-windows-10-1809.inspec.results.xml index 1dec088..216d912 100644 --- a/test/results/py3-windows-10-1809.inspec.results.xml +++ b/test/results/py3-windows-10-1809.inspec.results.xml @@ -1,27 +1,27 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/test/results/py3-windows-10-1809.kitchen.log b/test/results/py3-windows-10-1809.kitchen.log index 1a4a0d7..636aaae 100644 --- a/test/results/py3-windows-10-1809.kitchen.log +++ b/test/results/py3-windows-10-1809.kitchen.log @@ -1,1036 +1,1036 @@ -I, [2020-03-04T14:58:38.271975 #2368] INFO -- py3-windows-10-1809: -----> Cleaning up any prior instances of -I, [2020-03-04T14:58:38.272128 #2368] INFO -- py3-windows-10-1809: -----> Destroying ... -I, [2020-03-04T14:58:38.273385 #2368] INFO -- py3-windows-10-1809: Finished destroying (0m0.00s). -I, [2020-03-04T14:58:38.274321 #2368] INFO -- py3-windows-10-1809: -----> Testing -I, [2020-03-04T14:58:38.274422 #2368] INFO -- py3-windows-10-1809: -----> Creating ... -I, [2020-03-04T14:58:44.174904 #2368] INFO -- py3-windows-10-1809: Bringing machine 'default' up with 'virtualbox' provider... -I, [2020-03-04T14:58:44.827407 #2368] INFO -- py3-windows-10-1809: ==> default: Cloning VM... -I, [2020-03-04T14:58:45.310585 #2368] INFO -- py3-windows-10-1809: ==> default: Matching MAC address for NAT networking... -I, [2020-03-04T14:58:45.555874 #2368] INFO -- py3-windows-10-1809: ==> default: Checking if box 'StefanScherer/windows_10' version '2019.05.15' is up to date... -I, [2020-03-04T14:58:46.760168 #2368] INFO -- py3-windows-10-1809: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1809-5f29afa0-be00-42ec-92a7-d172a10baf05 -I, [2020-03-04T14:58:50.403394 #2368] INFO -- py3-windows-10-1809: ==> default: Clearing any previously set network interfaces... -I, [2020-03-04T14:58:50.540498 #2368] INFO -- py3-windows-10-1809: ==> default: Preparing network interfaces based on configuration... -I, [2020-03-04T14:58:50.540949 #2368] INFO -- py3-windows-10-1809: default: Adapter 1: nat -I, [2020-03-04T14:58:50.721144 #2368] INFO -- py3-windows-10-1809: ==> default: Forwarding ports... -I, [2020-03-04T14:58:50.927102 #2368] INFO -- py3-windows-10-1809: default: 3389 (guest) => 3389 (host) (adapter 1) -I, [2020-03-04T14:58:50.927700 #2368] INFO -- py3-windows-10-1809: default: 5985 (guest) => 55985 (host) (adapter 1) -I, [2020-03-04T14:58:50.928291 #2368] INFO -- py3-windows-10-1809: default: 5986 (guest) => 55986 (host) (adapter 1) -I, [2020-03-04T14:58:50.929054 #2368] INFO -- py3-windows-10-1809: default: 22 (guest) => 2222 (host) (adapter 1) -I, [2020-03-04T14:58:51.552524 #2368] INFO -- py3-windows-10-1809: ==> default: Running 'pre-boot' VM customizations... -I, [2020-03-04T14:58:52.890495 #2368] INFO -- py3-windows-10-1809: ==> default: Booting VM... -I, [2020-03-04T14:58:55.636331 #2368] INFO -- py3-windows-10-1809: ==> default: Waiting for machine to boot. This may take a few minutes... -I, [2020-03-04T14:58:57.302549 #2368] INFO -- py3-windows-10-1809: default: WinRM address: 127.0.0.1:55985 -I, [2020-03-04T14:58:57.303073 #2368] INFO -- py3-windows-10-1809: default: WinRM username: vagrant -I, [2020-03-04T14:58:57.303411 #2368] INFO -- py3-windows-10-1809: default: WinRM execution_time_limit: PT2H -I, [2020-03-04T14:58:57.303730 #2368] INFO -- py3-windows-10-1809: default: WinRM transport: negotiate -I, [2020-03-04T14:59:24.401697 #2368] INFO -- py3-windows-10-1809: ==> default: Machine booted and ready! -I, [2020-03-04T14:59:24.457451 #2368] INFO -- py3-windows-10-1809: ==> default: Checking for guest additions in VM... -I, [2020-03-04T14:59:24.753849 #2368] INFO -- py3-windows-10-1809: default: The guest additions on this VM do not match the installed version of -I, [2020-03-04T14:59:24.753978 #2368] INFO -- py3-windows-10-1809: default: VirtualBox! In most cases this is fine, but in rare cases it can -I, [2020-03-04T14:59:24.754027 #2368] INFO -- py3-windows-10-1809: default: prevent things such as shared folders from working properly. If you see -I, [2020-03-04T14:59:24.754062 #2368] INFO -- py3-windows-10-1809: default: shared folder errors, please make sure the guest additions within the -I, [2020-03-04T14:59:24.754103 #2368] INFO -- py3-windows-10-1809: default: virtual machine match the version of VirtualBox you have installed on -I, [2020-03-04T14:59:24.754136 #2368] INFO -- py3-windows-10-1809: default: your host and reload your VM. -I, [2020-03-04T14:59:24.754170 #2368] INFO -- py3-windows-10-1809: default: -I, [2020-03-04T14:59:24.754202 #2368] INFO -- py3-windows-10-1809: default: Guest Additions Version: 5.2.30 -I, [2020-03-04T14:59:24.754233 #2368] INFO -- py3-windows-10-1809: default: VirtualBox Version: 6.1 -I, [2020-03-04T14:59:25.706706 #2368] INFO -- py3-windows-10-1809: ==> default: Mounting shared folders... -I, [2020-03-04T14:59:25.707972 #2368] INFO -- py3-windows-10-1809: default: /results => /mnt/c/tmp/results -I, [2020-03-04T14:59:36.810040 #2368] INFO -- py3-windows-10-1809: ==> default: Machine not provisioned because `--no-provision` is specified. -I, [2020-03-04T14:59:55.483536 #2368] INFO -- py3-windows-10-1809: [WinRM] Established -I, [2020-03-04T14:59:55.483658 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T14:59:55.495093 #2368] INFO -- py3-windows-10-1809: Vagrant instance created. -I, [2020-03-04T14:59:55.497121 #2368] INFO -- py3-windows-10-1809: Finished creating (1m17.22s). -I, [2020-03-04T14:59:55.497419 #2368] INFO -- py3-windows-10-1809: -----> Converging ... -I, [2020-03-04T14:59:55.500287 #2368] INFO -- py3-windows-10-1809: Preparing files for transfer -I, [2020-03-04T14:59:55.500470 #2368] INFO -- py3-windows-10-1809: Preparing salt-minion -I, [2020-03-04T14:59:55.505527 #2368] INFO -- py3-windows-10-1809: Preparing pillars into /srv/pillar -I, [2020-03-04T14:59:55.505667 #2368] INFO -- py3-windows-10-1809: pillars-from-files is deprecated in favor of pillars_from_files -I, [2020-03-04T14:59:55.510076 #2368] INFO -- py3-windows-10-1809: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula -I, [2020-03-04T14:59:55.681963 #2368] INFO -- py3-windows-10-1809: Preparing state_top -I, [2020-03-04T14:59:55.683821 #2368] INFO -- py3-windows-10-1809: Preparing scripts into /etc/salt/scripts -I, [2020-03-04T14:59:56.806858 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T14:59:56.807308 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T14:59:56.808094 #2368] INFO -- py3-windows-10-1809: Directory: C:\ -I, [2020-03-04T14:59:56.808546 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T14:59:56.808981 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T14:59:56.809488 #2368] INFO -- py3-windows-10-1809: Mode LastWriteTime Length Name -I, [2020-03-04T14:59:56.810011 #2368] INFO -- py3-windows-10-1809: ---- ------------- ------ ---- -I, [2020-03-04T14:59:56.810535 #2368] INFO -- py3-windows-10-1809: d----- 3/4/2020 11:59 AM temp -I, [2020-03-04T14:59:57.771378 #2368] INFO -- py3-windows-10-1809: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe -I, [2020-03-04T15:00:02.373038 #2368] INFO -- py3-windows-10-1809: Installing Salt minion -I, [2020-03-04T15:00:17.894363 #2368] INFO -- py3-windows-10-1809: Starting the Salt minion service -I, [2020-03-04T15:00:17.894974 #2368] INFO -- py3-windows-10-1809: Salt minion successfully installed -I, [2020-03-04T15:00:22.478603 #2368] INFO -- py3-windows-10-1809: You asked for latest and you have 2019.2.3 installed, sweet! -I, [2020-03-04T15:00:22.479133 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:22.479687 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:23.296224 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:23.296722 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:23.297307 #2368] INFO -- py3-windows-10-1809: Directory: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:00:23.297778 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:23.298229 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:23.298775 #2368] INFO -- py3-windows-10-1809: Mode LastWriteTime Length Name -I, [2020-03-04T15:00:23.299356 #2368] INFO -- py3-windows-10-1809: ---- ------------- ------ ---- -I, [2020-03-04T15:00:23.299890 #2368] INFO -- py3-windows-10-1809: d----- 3/4/2020 12:00 PM kitchen -I, [2020-03-04T15:00:23.300294 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:23.300676 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:23.326052 #2368] INFO -- py3-windows-10-1809: Transferring files to -I, [2020-03-04T15:00:59.683115 #2368] INFO -- py3-windows-10-1809: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:00:59.683450 #2368] INFO -- py3-windows-10-1809: At line:1 char:131 -I, [2020-03-04T15:00:59.683729 #2368] INFO -- py3-windows-10-1809: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... -I, [2020-03-04T15:00:59.684034 #2368] INFO -- py3-windows-10-1809: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -I, [2020-03-04T15:00:59.684303 #2368] INFO -- py3-windows-10-1809: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException -I, [2020-03-04T15:00:59.684560 #2368] INFO -- py3-windows-10-1809: + FullyQualifiedErrorId : NativeCommandError -I, [2020-03-04T15:00:59.684785 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:59.685085 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:59.685356 #2368] INFO -- py3-windows-10-1809: Traceback (most recent call last): -I, [2020-03-04T15:00:59.685637 #2368] INFO -- py3-windows-10-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:00:59.685892 #2368] INFO -- py3-windows-10-1809: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:00:59.686139 #2368] INFO -- py3-windows-10-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:00:59.686391 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:00:59.686666 #2368] INFO -- py3-windows-10-1809: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:00:59.686914 #2368] INFO -- py3-windows-10-1809: Traceback (most recent call last): -I, [2020-03-04T15:00:59.687174 #2368] INFO -- py3-windows-10-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:00:59.687423 #2368] INFO -- py3-windows-10-1809: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:00:59.687660 #2368] INFO -- py3-windows-10-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:00:59.687865 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:01:53.529246 #2368] INFO -- py3-windows-10-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W -I, [2020-03-04T15:01:53.529643 #2368] INFO -- py3-windows-10-1809: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:01:53.529958 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:01:53.530250 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:01:53.530579 #2368] INFO -- py3-windows-10-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P -I, [2020-03-04T15:01:53.530854 #2368] INFO -- py3-windows-10-1809: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:01:53.531102 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:01:53.531320 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:48.560042 #2368] INFO -- py3-windows-10-1809: local: -I, [2020-03-04T15:02:48.560485 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.560954 #2368] INFO -- py3-windows-10-1809: ID: windows.state.system.hostname.saltstack1 -I, [2020-03-04T15:02:48.561356 #2368] INFO -- py3-windows-10-1809: Function: system.hostname -I, [2020-03-04T15:02:48.561667 #2368] INFO -- py3-windows-10-1809: Name: saltstack1 -I, [2020-03-04T15:02:48.561977 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.562278 #2368] INFO -- py3-windows-10-1809: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot -I, [2020-03-04T15:02:48.562572 #2368] INFO -- py3-windows-10-1809: Started: 12:00:36.567721 -I, [2020-03-04T15:02:48.562873 #2368] INFO -- py3-windows-10-1809: Duration: 93.704 ms -I, [2020-03-04T15:02:48.563143 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.564655 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.566083 #2368] INFO -- py3-windows-10-1809: hostname: -I, [2020-03-04T15:02:48.567514 #2368] INFO -- py3-windows-10-1809: saltstack1 -I, [2020-03-04T15:02:48.568853 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.569861 #2368] INFO -- py3-windows-10-1809: ID: windows.state.system.computer_desc.description -I, [2020-03-04T15:02:48.570760 #2368] INFO -- py3-windows-10-1809: Function: system.computer_desc -I, [2020-03-04T15:02:48.571565 #2368] INFO -- py3-windows-10-1809: Name: Saltstack Computer Description -I, [2020-03-04T15:02:48.572418 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.573244 #2368] INFO -- py3-windows-10-1809: Comment: Computer description successfully changed to 'Saltstack Computer Description' -I, [2020-03-04T15:02:48.574002 #2368] INFO -- py3-windows-10-1809: Started: 12:00:36.661425 -I, [2020-03-04T15:02:48.574802 #2368] INFO -- py3-windows-10-1809: Duration: 2734.509 ms -I, [2020-03-04T15:02:48.576823 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.578284 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.579676 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:48.581358 #2368] INFO -- py3-windows-10-1809: Saltstack Computer Description -I, [2020-03-04T15:02:48.583131 #2368] INFO -- py3-windows-10-1809: old: -I, [2020-03-04T15:02:48.584873 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.586369 #2368] INFO -- py3-windows-10-1809: ID: windows.state.timezone.system.America/New_York -I, [2020-03-04T15:02:48.586805 #2368] INFO -- py3-windows-10-1809: Function: timezone.system -I, [2020-03-04T15:02:48.589486 #2368] INFO -- py3-windows-10-1809: Name: America/New_York -I, [2020-03-04T15:02:48.590006 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.591330 #2368] INFO -- py3-windows-10-1809: Comment: Set timezone America/New_York -I, [2020-03-04T15:02:48.593021 #2368] INFO -- py3-windows-10-1809: Started: 12:00:39.427226 -I, [2020-03-04T15:02:48.593861 #2368] INFO -- py3-windows-10-1809: Duration: 30.784 ms -I, [2020-03-04T15:02:48.594605 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.595455 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.597038 #2368] INFO -- py3-windows-10-1809: timezone: -I, [2020-03-04T15:02:48.598502 #2368] INFO -- py3-windows-10-1809: America/New_York -I, [2020-03-04T15:02:48.599731 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.601363 #2368] INFO -- py3-windows-10-1809: ID: windows.module.environ.items -I, [2020-03-04T15:02:48.603049 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:48.604496 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.605028 #2368] INFO -- py3-windows-10-1809: Comment: environ.items: Success -I, [2020-03-04T15:02:48.606580 #2368] INFO -- py3-windows-10-1809: Started: 12:00:39.458010 -I, [2020-03-04T15:02:48.608194 #2368] INFO -- py3-windows-10-1809: Duration: 15.611 ms -I, [2020-03-04T15:02:48.609505 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.612263 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.613535 #2368] INFO -- py3-windows-10-1809: environ.items: -I, [2020-03-04T15:02:48.614399 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.615314 #2368] INFO -- py3-windows-10-1809: ALLUSERSPROFILE: -I, [2020-03-04T15:02:48.616257 #2368] INFO -- py3-windows-10-1809: C:\ProgramData -I, [2020-03-04T15:02:48.617151 #2368] INFO -- py3-windows-10-1809: APPDATA: -I, [2020-03-04T15:02:48.617626 #2368] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Roaming -I, [2020-03-04T15:02:48.618406 #2368] INFO -- py3-windows-10-1809: COMMONPROGRAMFILES: -I, [2020-03-04T15:02:48.619262 #2368] INFO -- py3-windows-10-1809: C:\Program Files\Common Files -I, [2020-03-04T15:02:48.619998 #2368] INFO -- py3-windows-10-1809: COMMONPROGRAMFILES(X86): -I, [2020-03-04T15:02:48.624979 #2368] INFO -- py3-windows-10-1809: C:\Program Files (x86)\Common Files -I, [2020-03-04T15:02:48.625634 #2368] INFO -- py3-windows-10-1809: COMMONPROGRAMW6432: -I, [2020-03-04T15:02:48.626217 #2368] INFO -- py3-windows-10-1809: C:\Program Files\Common Files -I, [2020-03-04T15:02:48.626563 #2368] INFO -- py3-windows-10-1809: COMPUTERNAME: -I, [2020-03-04T15:02:48.626983 #2368] INFO -- py3-windows-10-1809: VAGRANT-10 -I, [2020-03-04T15:02:48.627395 #2368] INFO -- py3-windows-10-1809: COMSPEC: -I, [2020-03-04T15:02:48.627794 #2368] INFO -- py3-windows-10-1809: C:\Windows\system32\cmd.exe -I, [2020-03-04T15:02:48.628192 #2368] INFO -- py3-windows-10-1809: DRIVERDATA: -I, [2020-03-04T15:02:48.628643 #2368] INFO -- py3-windows-10-1809: C:\Windows\System32\Drivers\DriverData -I, [2020-03-04T15:02:48.628968 #2368] INFO -- py3-windows-10-1809: HOMEDRIVE: -I, [2020-03-04T15:02:48.629342 #2368] INFO -- py3-windows-10-1809: C: -I, [2020-03-04T15:02:48.629756 #2368] INFO -- py3-windows-10-1809: HOMEPATH: -I, [2020-03-04T15:02:48.630131 #2368] INFO -- py3-windows-10-1809: \Users\vagrant -I, [2020-03-04T15:02:48.630586 #2368] INFO -- py3-windows-10-1809: LOCALAPPDATA: -I, [2020-03-04T15:02:48.631011 #2368] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Local -I, [2020-03-04T15:02:48.631508 #2368] INFO -- py3-windows-10-1809: LOGONSERVER: -I, [2020-03-04T15:02:48.632033 #2368] INFO -- py3-windows-10-1809: \\VAGRANT-10 -I, [2020-03-04T15:02:48.632555 #2368] INFO -- py3-windows-10-1809: NUMBER_OF_PROCESSORS: -I, [2020-03-04T15:02:48.633036 #2368] INFO -- py3-windows-10-1809: 2 -I, [2020-03-04T15:02:48.633550 #2368] INFO -- py3-windows-10-1809: ONEDRIVE: -I, [2020-03-04T15:02:48.634030 #2368] INFO -- py3-windows-10-1809: C:\Users\vagrant\OneDrive -I, [2020-03-04T15:02:48.634476 #2368] INFO -- py3-windows-10-1809: OS: -I, [2020-03-04T15:02:48.634914 #2368] INFO -- py3-windows-10-1809: Windows_NT -I, [2020-03-04T15:02:48.635365 #2368] INFO -- py3-windows-10-1809: PATH: -I, [2020-03-04T15:02:48.635970 #2368] INFO -- py3-windows-10-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 -I, [2020-03-04T15:02:48.636420 #2368] INFO -- py3-windows-10-1809: PATHEXT: -I, [2020-03-04T15:02:48.636857 #2368] INFO -- py3-windows-10-1809: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL -I, [2020-03-04T15:02:48.637299 #2368] INFO -- py3-windows-10-1809: PROCESSOR_ARCHITECTURE: -I, [2020-03-04T15:02:48.637733 #2368] INFO -- py3-windows-10-1809: AMD64 -I, [2020-03-04T15:02:48.638171 #2368] INFO -- py3-windows-10-1809: PROCESSOR_IDENTIFIER: -I, [2020-03-04T15:02:48.638602 #2368] INFO -- py3-windows-10-1809: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel -I, [2020-03-04T15:02:48.639033 #2368] INFO -- py3-windows-10-1809: PROCESSOR_LEVEL: -I, [2020-03-04T15:02:48.639470 #2368] INFO -- py3-windows-10-1809: 6 -I, [2020-03-04T15:02:48.639892 #2368] INFO -- py3-windows-10-1809: PROCESSOR_REVISION: -I, [2020-03-04T15:02:48.640334 #2368] INFO -- py3-windows-10-1809: 8e0c -I, [2020-03-04T15:02:48.640755 #2368] INFO -- py3-windows-10-1809: PROGRAMDATA: -I, [2020-03-04T15:02:48.641222 #2368] INFO -- py3-windows-10-1809: C:\ProgramData -I, [2020-03-04T15:02:48.641702 #2368] INFO -- py3-windows-10-1809: PROGRAMFILES: -I, [2020-03-04T15:02:48.642249 #2368] INFO -- py3-windows-10-1809: C:\Program Files -I, [2020-03-04T15:02:48.642765 #2368] INFO -- py3-windows-10-1809: PROGRAMFILES(X86): -I, [2020-03-04T15:02:48.643264 #2368] INFO -- py3-windows-10-1809: C:\Program Files (x86) -I, [2020-03-04T15:02:48.643747 #2368] INFO -- py3-windows-10-1809: PROGRAMW6432: -I, [2020-03-04T15:02:48.644268 #2368] INFO -- py3-windows-10-1809: C:\Program Files -I, [2020-03-04T15:02:48.644755 #2368] INFO -- py3-windows-10-1809: PROMPT: -I, [2020-03-04T15:02:48.645243 #2368] INFO -- py3-windows-10-1809: $P$G -I, [2020-03-04T15:02:48.645855 #2368] INFO -- py3-windows-10-1809: PSMODULEPATH: -I, [2020-03-04T15:02:48.646425 #2368] INFO -- py3-windows-10-1809: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules -I, [2020-03-04T15:02:48.646934 #2368] INFO -- py3-windows-10-1809: PUBLIC: -I, [2020-03-04T15:02:48.647418 #2368] INFO -- py3-windows-10-1809: C:\Users\Public -I, [2020-03-04T15:02:48.647912 #2368] INFO -- py3-windows-10-1809: PYTHON: -I, [2020-03-04T15:02:48.648467 #2368] INFO -- py3-windows-10-1809: C:\salt\bin\python.exe -I, [2020-03-04T15:02:48.649012 #2368] INFO -- py3-windows-10-1809: SALTDIR: -I, [2020-03-04T15:02:48.649524 #2368] INFO -- py3-windows-10-1809: C:\salt -I, [2020-03-04T15:02:48.650055 #2368] INFO -- py3-windows-10-1809: SCRIPT: -I, [2020-03-04T15:02:48.650564 #2368] INFO -- py3-windows-10-1809: C:\salt\bin\Scripts\salt-call -I, [2020-03-04T15:02:48.651092 #2368] INFO -- py3-windows-10-1809: SYSTEMDRIVE: -I, [2020-03-04T15:02:48.651589 #2368] INFO -- py3-windows-10-1809: C: -I, [2020-03-04T15:02:48.652110 #2368] INFO -- py3-windows-10-1809: SYSTEMROOT: -I, [2020-03-04T15:02:48.652616 #2368] INFO -- py3-windows-10-1809: C:\Windows -I, [2020-03-04T15:02:48.653135 #2368] INFO -- py3-windows-10-1809: TEMP: -I, [2020-03-04T15:02:48.653644 #2368] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:02:48.654155 #2368] INFO -- py3-windows-10-1809: TMP: -I, [2020-03-04T15:02:48.654664 #2368] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:02:48.655186 #2368] INFO -- py3-windows-10-1809: USERDOMAIN: -I, [2020-03-04T15:02:48.655683 #2368] INFO -- py3-windows-10-1809: VAGRANT-10 -I, [2020-03-04T15:02:48.656202 #2368] INFO -- py3-windows-10-1809: USERDOMAIN_ROAMINGPROFILE: -I, [2020-03-04T15:02:48.656654 #2368] INFO -- py3-windows-10-1809: VAGRANT-10 -I, [2020-03-04T15:02:48.656988 #2368] INFO -- py3-windows-10-1809: USERNAME: -I, [2020-03-04T15:02:48.657375 #2368] INFO -- py3-windows-10-1809: vagrant -I, [2020-03-04T15:02:48.657797 #2368] INFO -- py3-windows-10-1809: USERPROFILE: -I, [2020-03-04T15:02:48.658151 #2368] INFO -- py3-windows-10-1809: C:\Users\vagrant -I, [2020-03-04T15:02:48.658550 #2368] INFO -- py3-windows-10-1809: WINDIR: -I, [2020-03-04T15:02:48.658987 #2368] INFO -- py3-windows-10-1809: C:\Windows -I, [2020-03-04T15:02:48.659339 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.659727 #2368] INFO -- py3-windows-10-1809: ID: windows.module.user.current -I, [2020-03-04T15:02:48.660041 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:48.660340 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.660666 #2368] INFO -- py3-windows-10-1809: Comment: user.current: VAGRANT-10\vagrant -I, [2020-03-04T15:02:48.660993 #2368] INFO -- py3-windows-10-1809: Started: 12:00:39.473621 -I, [2020-03-04T15:02:48.661304 #2368] INFO -- py3-windows-10-1809: Duration: 31.802 ms -I, [2020-03-04T15:02:48.661670 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.661977 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.662304 #2368] INFO -- py3-windows-10-1809: user.current: -I, [2020-03-04T15:02:48.662685 #2368] INFO -- py3-windows-10-1809: VAGRANT-10\vagrant -I, [2020-03-04T15:02:48.663007 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.663316 #2368] INFO -- py3-windows-10-1809: ID: windows.module.status.uptime -I, [2020-03-04T15:02:48.663643 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:48.663982 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.664397 #2368] INFO -- py3-windows-10-1809: Comment: status.uptime: 0:01:38.551775 -I, [2020-03-04T15:02:48.664880 #2368] INFO -- py3-windows-10-1809: Started: 12:00:39.505423 -I, [2020-03-04T15:02:48.665399 #2368] INFO -- py3-windows-10-1809: Duration: 46.352 ms -I, [2020-03-04T15:02:48.665974 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.666516 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.667057 #2368] INFO -- py3-windows-10-1809: status.uptime: -I, [2020-03-04T15:02:48.667605 #2368] INFO -- py3-windows-10-1809: 0:01:38.551775 -I, [2020-03-04T15:02:48.668093 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.668651 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection -I, [2020-03-04T15:02:48.669153 #2368] INFO -- py3-windows-10-1809: Function: cmd.run -I, [2020-03-04T15:02:48.669671 #2368] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers -I, [2020-03-04T15:02:48.670124 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.670620 #2368] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run -I, [2020-03-04T15:02:48.671075 #2368] INFO -- py3-windows-10-1809: Started: 12:00:39.551775 -I, [2020-03-04T15:02:48.671548 #2368] INFO -- py3-windows-10-1809: Duration: 2141.274 ms -I, [2020-03-04T15:02:48.671997 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.672462 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.672906 #2368] INFO -- py3-windows-10-1809: pid: -I, [2020-03-04T15:02:48.673396 #2368] INFO -- py3-windows-10-1809: 3500 -I, [2020-03-04T15:02:48.673846 #2368] INFO -- py3-windows-10-1809: retcode: -I, [2020-03-04T15:02:48.674312 #2368] INFO -- py3-windows-10-1809: 0 -I, [2020-03-04T15:02:48.674739 #2368] INFO -- py3-windows-10-1809: stderr: -I, [2020-03-04T15:02:48.675214 #2368] INFO -- py3-windows-10-1809: stdout: -I, [2020-03-04T15:02:48.675653 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.676234 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet -I, [2020-03-04T15:02:48.676799 #2368] INFO -- py3-windows-10-1809: Function: cmd.run -I, [2020-03-04T15:02:48.677360 #2368] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers -I, [2020-03-04T15:02:48.677875 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.678422 #2368] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run -I, [2020-03-04T15:02:48.678968 #2368] INFO -- py3-windows-10-1809: Started: 12:00:41.693049 -I, [2020-03-04T15:02:48.679535 #2368] INFO -- py3-windows-10-1809: Duration: 1421.349 ms -I, [2020-03-04T15:02:48.680052 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.680607 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.681174 #2368] INFO -- py3-windows-10-1809: pid: -I, [2020-03-04T15:02:48.681711 #2368] INFO -- py3-windows-10-1809: 3888 -I, [2020-03-04T15:02:48.682249 #2368] INFO -- py3-windows-10-1809: retcode: -I, [2020-03-04T15:02:48.682748 #2368] INFO -- py3-windows-10-1809: 0 -I, [2020-03-04T15:02:48.683272 #2368] INFO -- py3-windows-10-1809: stderr: -I, [2020-03-04T15:02:48.683770 #2368] INFO -- py3-windows-10-1809: stdout: -I, [2020-03-04T15:02:48.684266 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.684770 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic -I, [2020-03-04T15:02:48.685281 #2368] INFO -- py3-windows-10-1809: Function: cmd.run -I, [2020-03-04T15:02:48.690841 #2368] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers -I, [2020-03-04T15:02:48.691451 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.692068 #2368] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run -I, [2020-03-04T15:02:48.692620 #2368] INFO -- py3-windows-10-1809: Started: 12:00:43.130021 -I, [2020-03-04T15:02:48.693156 #2368] INFO -- py3-windows-10-1809: Duration: 1359.453 ms -I, [2020-03-04T15:02:48.693682 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.694223 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.694732 #2368] INFO -- py3-windows-10-1809: pid: -I, [2020-03-04T15:02:48.695272 #2368] INFO -- py3-windows-10-1809: 6720 -I, [2020-03-04T15:02:48.695814 #2368] INFO -- py3-windows-10-1809: retcode: -I, [2020-03-04T15:02:48.696331 #2368] INFO -- py3-windows-10-1809: 0 -I, [2020-03-04T15:02:48.696868 #2368] INFO -- py3-windows-10-1809: stderr: -I, [2020-03-04T15:02:48.697296 #2368] INFO -- py3-windows-10-1809: stdout: -I, [2020-03-04T15:02:48.697725 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.698190 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo -I, [2020-03-04T15:02:48.698632 #2368] INFO -- py3-windows-10-1809: Function: cmd.run -I, [2020-03-04T15:02:48.699031 #2368] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers -I, [2020-03-04T15:02:48.699447 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.699902 #2368] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run -I, [2020-03-04T15:02:48.700395 #2368] INFO -- py3-windows-10-1809: Started: 12:00:44.489474 -I, [2020-03-04T15:02:48.700918 #2368] INFO -- py3-windows-10-1809: Duration: 1500.173 ms -I, [2020-03-04T15:02:48.701340 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.701714 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.702072 #2368] INFO -- py3-windows-10-1809: pid: -I, [2020-03-04T15:02:48.702507 #2368] INFO -- py3-windows-10-1809: 7096 -I, [2020-03-04T15:02:48.702861 #2368] INFO -- py3-windows-10-1809: retcode: -I, [2020-03-04T15:02:48.703238 #2368] INFO -- py3-windows-10-1809: 0 -I, [2020-03-04T15:02:48.703650 #2368] INFO -- py3-windows-10-1809: stderr: -I, [2020-03-04T15:02:48.704085 #2368] INFO -- py3-windows-10-1809: stdout: -I, [2020-03-04T15:02:48.704581 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.705128 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal -I, [2020-03-04T15:02:48.705632 #2368] INFO -- py3-windows-10-1809: Function: cmd.run -I, [2020-03-04T15:02:48.706154 #2368] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers -I, [2020-03-04T15:02:48.706682 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.707194 #2368] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run -I, [2020-03-04T15:02:48.707601 #2368] INFO -- py3-windows-10-1809: Started: 12:00:46.005009 -I, [2020-03-04T15:02:48.707971 #2368] INFO -- py3-windows-10-1809: Duration: 1656.52 ms -I, [2020-03-04T15:02:48.708336 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.708682 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.709087 #2368] INFO -- py3-windows-10-1809: pid: -I, [2020-03-04T15:02:48.709492 #2368] INFO -- py3-windows-10-1809: 64 -I, [2020-03-04T15:02:48.709840 #2368] INFO -- py3-windows-10-1809: retcode: -I, [2020-03-04T15:02:48.710198 #2368] INFO -- py3-windows-10-1809: 0 -I, [2020-03-04T15:02:48.710565 #2368] INFO -- py3-windows-10-1809: stderr: -I, [2020-03-04T15:02:48.710961 #2368] INFO -- py3-windows-10-1809: stdout: -I, [2020-03-04T15:02:48.711311 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.711658 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 -I, [2020-03-04T15:02:48.712046 #2368] INFO -- py3-windows-10-1809: Function: reg.present -I, [2020-03-04T15:02:48.712412 #2368] INFO -- py3-windows-10-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:02:48.712767 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.713120 #2368] INFO -- py3-windows-10-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:02:48.713498 #2368] INFO -- py3-windows-10-1809: Started: 12:00:47.677267 -I, [2020-03-04T15:02:48.713851 #2368] INFO -- py3-windows-10-1809: Duration: 11093.533 ms -I, [2020-03-04T15:02:48.714196 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.714620 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.715016 #2368] INFO -- py3-windows-10-1809: reg: -I, [2020-03-04T15:02:48.715379 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.715728 #2368] INFO -- py3-windows-10-1809: Added: -I, [2020-03-04T15:02:48.716131 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.716483 #2368] INFO -- py3-windows-10-1809: Entry: -I, [2020-03-04T15:02:48.716837 #2368] INFO -- py3-windows-10-1809: SystemDefaultTlsVersions -I, [2020-03-04T15:02:48.717283 #2368] INFO -- py3-windows-10-1809: Inheritance: -I, [2020-03-04T15:02:48.717642 #2368] INFO -- py3-windows-10-1809: True -I, [2020-03-04T15:02:48.718095 #2368] INFO -- py3-windows-10-1809: Key: -I, [2020-03-04T15:02:48.718507 #2368] INFO -- py3-windows-10-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:02:48.718996 #2368] INFO -- py3-windows-10-1809: Owner: -I, [2020-03-04T15:02:48.719563 #2368] INFO -- py3-windows-10-1809: None -I, [2020-03-04T15:02:48.720103 #2368] INFO -- py3-windows-10-1809: Perms: -I, [2020-03-04T15:02:48.720672 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.721199 #2368] INFO -- py3-windows-10-1809: Deny: -I, [2020-03-04T15:02:48.721672 #2368] INFO -- py3-windows-10-1809: None -I, [2020-03-04T15:02:48.722146 #2368] INFO -- py3-windows-10-1809: Grant: -I, [2020-03-04T15:02:48.722559 #2368] INFO -- py3-windows-10-1809: None -I, [2020-03-04T15:02:48.722990 #2368] INFO -- py3-windows-10-1809: Value: -I, [2020-03-04T15:02:48.723340 #2368] INFO -- py3-windows-10-1809: 1 -I, [2020-03-04T15:02:48.723695 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.724063 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -I, [2020-03-04T15:02:48.724403 #2368] INFO -- py3-windows-10-1809: Function: reg.present -I, [2020-03-04T15:02:48.724818 #2368] INFO -- py3-windows-10-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:02:48.725171 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.725536 #2368] INFO -- py3-windows-10-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:02:48.725980 #2368] INFO -- py3-windows-10-1809: Started: 12:00:58.770800 -I, [2020-03-04T15:02:48.726324 #2368] INFO -- py3-windows-10-1809: Duration: 390.422 ms -I, [2020-03-04T15:02:48.726688 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.727056 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.727387 #2368] INFO -- py3-windows-10-1809: reg: -I, [2020-03-04T15:02:48.727721 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.728183 #2368] INFO -- py3-windows-10-1809: Added: -I, [2020-03-04T15:02:48.728694 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.729237 #2368] INFO -- py3-windows-10-1809: Entry: -I, [2020-03-04T15:02:48.729731 #2368] INFO -- py3-windows-10-1809: SystemDefaultTlsVersions -I, [2020-03-04T15:02:48.730144 #2368] INFO -- py3-windows-10-1809: Inheritance: -I, [2020-03-04T15:02:48.730518 #2368] INFO -- py3-windows-10-1809: True -I, [2020-03-04T15:02:48.730916 #2368] INFO -- py3-windows-10-1809: Key: -I, [2020-03-04T15:02:48.731266 #2368] INFO -- py3-windows-10-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:02:48.731622 #2368] INFO -- py3-windows-10-1809: Owner: -I, [2020-03-04T15:02:48.731959 #2368] INFO -- py3-windows-10-1809: None -I, [2020-03-04T15:02:48.732275 #2368] INFO -- py3-windows-10-1809: Perms: -I, [2020-03-04T15:02:48.732656 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.732986 #2368] INFO -- py3-windows-10-1809: Deny: -I, [2020-03-04T15:02:48.733361 #2368] INFO -- py3-windows-10-1809: None -I, [2020-03-04T15:02:48.733690 #2368] INFO -- py3-windows-10-1809: Grant: -I, [2020-03-04T15:02:48.734027 #2368] INFO -- py3-windows-10-1809: None -I, [2020-03-04T15:02:48.734387 #2368] INFO -- py3-windows-10-1809: Value: -I, [2020-03-04T15:02:48.734758 #2368] INFO -- py3-windows-10-1809: 1 -I, [2020-03-04T15:02:48.735181 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.735536 #2368] INFO -- py3-windows-10-1809: ID: manually.update_git_repo-ng -I, [2020-03-04T15:02:48.735937 #2368] INFO -- py3-windows-10-1809: Function: archive.extracted -I, [2020-03-04T15:02:48.736259 #2368] INFO -- py3-windows-10-1809: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -I, [2020-03-04T15:02:48.736603 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:48.736994 #2368] INFO -- py3-windows-10-1809: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs -I, [2020-03-04T15:02:48.737319 #2368] INFO -- py3-windows-10-1809: Started: 12:00:59.161222 -I, [2020-03-04T15:02:48.737700 #2368] INFO -- py3-windows-10-1809: Duration: 1001.208 ms -I, [2020-03-04T15:02:48.737999 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:48.738345 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:48.738814 #2368] INFO -- py3-windows-10-1809: directories_created: -I, [2020-03-04T15:02:48.739183 #2368] INFO -- py3-windows-10-1809: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -I, [2020-03-04T15:02:48.739532 #2368] INFO -- py3-windows-10-1809: extracted_files: -I, [2020-03-04T15:02:48.739878 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ -I, [2020-03-04T15:02:48.740219 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.gitignore -I, [2020-03-04T15:02:48.740667 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis.yml -I, [2020-03-04T15:02:48.741035 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis/ -I, [2020-03-04T15:02:48.741488 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis/requirements.txt -I, [2020-03-04T15:02:48.741902 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis/tests.py -I, [2020-03-04T15:02:48.742257 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/7zip.sls -I, [2020-03-04T15:02:48.742670 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/LICENSE -I, [2020-03-04T15:02:48.742981 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/README.md -I, [2020-03-04T15:02:48.743357 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/_config.yml -I, [2020-03-04T15:02:48.748378 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/activeperl_x64.sls -I, [2020-03-04T15:02:48.749020 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/activeperl_x86.sls -I, [2020-03-04T15:02:48.749495 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobeair.sls -I, [2020-03-04T15:02:48.749978 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobereader-dc-classic.sls -I, [2020-03-04T15:02:48.750391 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobereader-xi.sls -I, [2020-03-04T15:02:48.750770 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobereader.sls -I, [2020-03-04T15:02:48.751247 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobeshockwaveplayer.sls -I, [2020-03-04T15:02:48.751697 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adv-ip-scanner.sls -I, [2020-03-04T15:02:48.752102 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adv-port-scanner.sls -I, [2020-03-04T15:02:48.752520 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/advancedlogging.sls -I, [2020-03-04T15:02:48.752876 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/anydesk-msi.sls -I, [2020-03-04T15:02:48.753295 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/anydesk.sls -I, [2020-03-04T15:02:48.753765 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/applicationrequestrouting.sls -I, [2020-03-04T15:02:48.754173 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/aspnet-mvc1.sls -I, [2020-03-04T15:02:48.754656 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/atom.sls -I, [2020-03-04T15:02:48.755084 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/audacity.sls -I, [2020-03-04T15:02:48.755554 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/ -I, [2020-03-04T15:02:48.755956 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/init.sls -I, [2020-03-04T15:02:48.756371 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/install.cmd -I, [2020-03-04T15:02:48.756765 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/install.ps1 -I, [2020-03-04T15:02:48.757123 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/remove.cmd -I, [2020-03-04T15:02:48.757512 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/autohotkey.sls -I, [2020-03-04T15:02:48.757983 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/autoit.sls -I, [2020-03-04T15:02:48.758372 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/autopsy.sls -I, [2020-03-04T15:02:48.758829 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/awscli.sls -I, [2020-03-04T15:02:48.759253 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/azuredatastudio.sls -I, [2020-03-04T15:02:48.759730 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bandizip.sls -I, [2020-03-04T15:02:48.760166 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/belarc-advisor.sls -I, [2020-03-04T15:02:48.760562 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bginfo4x.sls -I, [2020-03-04T15:02:48.761000 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bitnami-nginxstack.sls -I, [2020-03-04T15:02:48.761425 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bitvise.sls -I, [2020-03-04T15:02:48.761865 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/blender.sls -I, [2020-03-04T15:02:48.762281 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bootracer.sls -I, [2020-03-04T15:02:48.762725 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bulk_extractor.sls -I, [2020-03-04T15:02:48.763114 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bulkrenameutility.sls -I, [2020-03-04T15:02:48.763463 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ccleaner-slim.sls -I, [2020-03-04T15:02:48.763876 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ccleaner.sls -I, [2020-03-04T15:02:48.764242 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cdburnerxp.sls -I, [2020-03-04T15:02:48.764750 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cdroller.sls -I, [2020-03-04T15:02:48.765315 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/check-mk-agent-msi.sls -I, [2020-03-04T15:02:48.765755 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/check-mk-agent.sls -I, [2020-03-04T15:02:48.766136 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/ -I, [2020-03-04T15:02:48.766482 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/init.sls -I, [2020-03-04T15:02:48.766921 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/install.cmd -I, [2020-03-04T15:02:48.767390 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/uninstall.cmd -I, [2020-03-04T15:02:48.767773 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 -I, [2020-03-04T15:02:48.768167 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chrome-rdp.sls -I, [2020-03-04T15:02:48.768566 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chrome.sls -I, [2020-03-04T15:02:48.768917 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/clamav.sls -I, [2020-03-04T15:02:48.769277 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/clamwin.sls -I, [2020-03-04T15:02:48.769712 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/classicshell.sls -I, [2020-03-04T15:02:48.770285 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/clink.sls -I, [2020-03-04T15:02:48.770861 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/conemu.sls -I, [2020-03-04T15:02:48.771489 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cpu-z.sls -I, [2020-03-04T15:02:48.772120 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/curl.sls -I, [2020-03-04T15:02:48.772666 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cyberduck-cli.sls -I, [2020-03-04T15:02:48.773237 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cyberduck-msi.sls -I, [2020-03-04T15:02:48.773749 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cyberduck.sls -I, [2020-03-04T15:02:48.774276 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/defraggler.sls -I, [2020-03-04T15:02:48.774786 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/docs/ -I, [2020-03-04T15:02:48.775290 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/docs/ReadMe.md -I, [2020-03-04T15:02:48.775823 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/dotnet.sls -I, [2020-03-04T15:02:48.776343 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/dropbox.sls -I, [2020-03-04T15:02:48.776878 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/duplicati.sls -I, [2020-03-04T15:02:48.777428 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/dvdstyler.sls -I, [2020-03-04T15:02:48.777986 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/echo-desktop.sls -I, [2020-03-04T15:02:48.778511 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/eea.sls -I, [2020-03-04T15:02:48.779051 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/emet.sls -I, [2020-03-04T15:02:48.779581 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/emsisoft-anti-malware.sls -I, [2020-03-04T15:02:48.780155 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/eraser.sls -I, [2020-03-04T15:02:48.780651 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/erlang/ -I, [2020-03-04T15:02:48.781018 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/erlang/init.sls -I, [2020-03-04T15:02:48.781407 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/erlang/install.cmd -I, [2020-03-04T15:02:48.781861 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/evernote.sls -I, [2020-03-04T15:02:48.782497 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/fiddler.sls -I, [2020-03-04T15:02:48.782931 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/ -I, [2020-03-04T15:02:48.783309 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/init.sls -I, [2020-03-04T15:02:48.783721 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/install.cmd -I, [2020-03-04T15:02:48.784089 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/install.ps1 -I, [2020-03-04T15:02:48.784525 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/remove.cmd -I, [2020-03-04T15:02:48.784972 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filehippo-app-manager.sls -I, [2020-03-04T15:02:48.785495 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filezilla.sls -I, [2020-03-04T15:02:48.786015 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox-esr_x64.sls -I, [2020-03-04T15:02:48.786395 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox-esr_x86.sls -I, [2020-03-04T15:02:48.786784 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox_x64.sls -I, [2020-03-04T15:02:48.787210 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox_x86.sls -I, [2020-03-04T15:02:48.787563 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/ -I, [2020-03-04T15:02:48.787910 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/init.sls -I, [2020-03-04T15:02:48.788291 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/install.cmd -I, [2020-03-04T15:02:48.788654 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/install.ps1 -I, [2020-03-04T15:02:48.789031 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/remove.cmd -I, [2020-03-04T15:02:48.789506 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gedit.sls -I, [2020-03-04T15:02:48.789898 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gimp.sls -I, [2020-03-04T15:02:48.790257 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/git-extensions.sls -I, [2020-03-04T15:02:48.790602 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/git.sls -I, [2020-03-04T15:02:48.791060 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls -I, [2020-03-04T15:02:48.791416 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gnucash.sls -I, [2020-03-04T15:02:48.791763 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/golang.sls -I, [2020-03-04T15:02:48.792275 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/goodsync.sls -I, [2020-03-04T15:02:48.792806 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gow.sls -I, [2020-03-04T15:02:48.793321 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win-light.sls -I, [2020-03-04T15:02:48.793858 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win-vanilla.sls -I, [2020-03-04T15:02:48.794383 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win/ -I, [2020-03-04T15:02:48.794897 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win/init.sls -I, [2020-03-04T15:02:48.795264 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win/silent.ini -I, [2020-03-04T15:02:48.795622 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/graylog-collector-sidecar.sls -I, [2020-03-04T15:02:48.796012 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/grepwin.sls -I, [2020-03-04T15:02:48.796430 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gvim.sls -I, [2020-03-04T15:02:48.796938 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/handbrake.sls -I, [2020-03-04T15:02:48.797484 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/ -I, [2020-03-04T15:02:48.798006 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp -I, [2020-03-04T15:02:48.798540 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/init.sls -I, [2020-03-04T15:02:48.799055 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/install.cmd -I, [2020-03-04T15:02:48.799594 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/install.ps1 -I, [2020-03-04T15:02:48.800104 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/remove.cmd -I, [2020-03-04T15:02:48.800624 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/hipchat.sls -I, [2020-03-04T15:02:48.801131 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/hostsfileeditor.sls -I, [2020-03-04T15:02:48.801659 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/hwinfo.sls -I, [2020-03-04T15:02:48.802186 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ice.sls -I, [2020-03-04T15:02:48.802693 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/icecast.sls -I, [2020-03-04T15:02:48.803214 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/icloud.sls -I, [2020-03-04T15:02:48.803682 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/iismediaservices.sls -I, [2020-03-04T15:02:48.804168 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/influx-capacitor.sls -I, [2020-03-04T15:02:48.804659 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/inkscape.sls -I, [2020-03-04T15:02:48.805182 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/intellij-community.sls -I, [2020-03-04T15:02:48.805702 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/intellij-ultimate.sls -I, [2020-03-04T15:02:48.806234 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/internet-evidence-finder.sls -I, [2020-03-04T15:02:48.811879 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/irfanview-plugins.sls -I, [2020-03-04T15:02:48.812609 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/irfanview.sls -I, [2020-03-04T15:02:48.813201 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/isapirewrite-lite.sls -I, [2020-03-04T15:02:48.813753 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/itunes.sls -I, [2020-03-04T15:02:48.814322 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jdk8.sls -I, [2020-03-04T15:02:48.814888 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jre.sls -I, [2020-03-04T15:02:48.815422 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jre8.sls -I, [2020-03-04T15:02:48.815975 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jungledisk-server-management.sls -I, [2020-03-04T15:02:48.816504 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jungledisk-server.sls -I, [2020-03-04T15:02:48.817042 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jungledisk-workgroup.sls -I, [2020-03-04T15:02:48.817539 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/kdiff3.sls -I, [2020-03-04T15:02:48.818057 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/keepass-2x.sls -I, [2020-03-04T15:02:48.818552 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/keepass.sls -I, [2020-03-04T15:02:48.819071 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/lastpass.sls -I, [2020-03-04T15:02:48.819565 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/lazarus.sls -I, [2020-03-04T15:02:48.820106 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/libreoffice.sls -I, [2020-03-04T15:02:48.820619 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/logparser.sls -I, [2020-03-04T15:02:48.821148 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/maas360bootanalyzer.sls -I, [2020-03-04T15:02:48.821699 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/malwarebytes.sls -I, [2020-03-04T15:02:48.822221 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mariadb.sls -I, [2020-03-04T15:02:48.822805 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mercurial.sls -I, [2020-03-04T15:02:48.823363 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/messageanalyzer.sls -I, [2020-03-04T15:02:48.823933 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/ -I, [2020-03-04T15:02:48.824473 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp -I, [2020-03-04T15:02:48.825063 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/init.sls -I, [2020-03-04T15:02:48.825693 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/install.cmd -I, [2020-03-04T15:02:48.826287 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/install.ps1 -I, [2020-03-04T15:02:48.826899 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/remove.cmd -I, [2020-03-04T15:02:48.827458 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/microsoft-build-tools.sls -I, [2020-03-04T15:02:48.828006 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mikogo.sls -I, [2020-03-04T15:02:48.828562 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/miktex-basic.sls -I, [2020-03-04T15:02:48.829095 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mongodb.sls -I, [2020-03-04T15:02:48.829661 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-mbsa.sls -I, [2020-03-04T15:02:48.831141 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls -I, [2020-03-04T15:02:48.831934 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls -I, [2020-03-04T15:02:48.832613 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls -I, [2020-03-04T15:02:48.833238 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls -I, [2020-03-04T15:02:48.833833 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:02:48.834420 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:02:48.835010 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls -I, [2020-03-04T15:02:48.835569 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls -I, [2020-03-04T15:02:48.836155 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls -I, [2020-03-04T15:02:48.836713 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls -I, [2020-03-04T15:02:48.837296 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls -I, [2020-03-04T15:02:48.837879 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls -I, [2020-03-04T15:02:48.838431 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:02:48.838998 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:02:48.839499 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls -I, [2020-03-04T15:02:48.840037 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:02:48.840591 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls -I, [2020-03-04T15:02:48.841212 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls -I, [2020-03-04T15:02:48.841808 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls -I, [2020-03-04T15:02:48.842400 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls -I, [2020-03-04T15:02:48.843044 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls -I, [2020-03-04T15:02:48.843639 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls -I, [2020-03-04T15:02:48.844256 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls -I, [2020-03-04T15:02:48.844950 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls -I, [2020-03-04T15:02:48.845565 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls -I, [2020-03-04T15:02:48.846143 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mucommander.sls -I, [2020-03-04T15:02:48.846707 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mysql-essential.sls -I, [2020-03-04T15:02:48.847284 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mysql-installer-community.sls -I, [2020-03-04T15:02:48.847958 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mysql-workbench.sls -I, [2020-03-04T15:02:48.848547 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/never10.sls -I, [2020-03-04T15:02:48.849157 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/newrelic-infra.sls -I, [2020-03-04T15:02:48.849789 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nextcloud-client.sls -I, [2020-03-04T15:02:48.850353 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nmap.sls -I, [2020-03-04T15:02:48.850910 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/node.js-lts.sls -I, [2020-03-04T15:02:48.851436 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/node.js.sls -I, [2020-03-04T15:02:48.852011 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nomacs.sls -I, [2020-03-04T15:02:48.852561 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/npp.sls -I, [2020-03-04T15:02:48.853076 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nsclient.sls -I, [2020-03-04T15:02:48.853606 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nsis.sls -I, [2020-03-04T15:02:48.854126 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ntp.sls -I, [2020-03-04T15:02:48.854677 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nunit-console.sls -I, [2020-03-04T15:02:48.855191 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nxlog.sls -I, [2020-03-04T15:02:48.855721 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/octopus-tentacle.sls -I, [2020-03-04T15:02:48.856235 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/openlp.sls -I, [2020-03-04T15:02:48.856760 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/openoffice.sls -I, [2020-03-04T15:02:48.857278 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/openvpn.sls -I, [2020-03-04T15:02:48.858105 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/osquery.sls -I, [2020-03-04T15:02:48.858779 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ossec-agent.sls -I, [2020-03-04T15:02:48.859368 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/owncloud.sls -I, [2020-03-04T15:02:48.859898 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/ -I, [2020-03-04T15:02:48.860502 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/init.sls -I, [2020-03-04T15:02:48.861096 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/install.cmd -I, [2020-03-04T15:02:48.861561 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/install.ps1 -I, [2020-03-04T15:02:48.862029 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/remove.cmd -I, [2020-03-04T15:02:48.862581 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pandoc.sls -I, [2020-03-04T15:02:48.863146 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/parallels-client-15.sls -I, [2020-03-04T15:02:48.863707 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pass4win.sls -I, [2020-03-04T15:02:48.864208 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/passware-kit-agent.sls -I, [2020-03-04T15:02:48.864602 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/passware-kit-forensic.sls -I, [2020-03-04T15:02:48.865129 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/patchmypc-free.sls -I, [2020-03-04T15:02:48.865740 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pdf24creator.sls -I, [2020-03-04T15:02:48.866312 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pdfcreator.sls -I, [2020-03-04T15:02:48.866818 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/peazip.sls -I, [2020-03-04T15:02:48.867329 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pgadmin4.sls -I, [2020-03-04T15:02:48.867792 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pgina.sls -I, [2020-03-04T15:02:48.868273 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pidgin.sls -I, [2020-03-04T15:02:48.868736 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/postgresql.sls -I, [2020-03-04T15:02:48.869212 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/powerbi-desktop.sls -I, [2020-03-04T15:02:48.869729 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/powershell-core.sls -I, [2020-03-04T15:02:48.870277 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls -I, [2020-03-04T15:02:48.870842 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/putty.sls -I, [2020-03-04T15:02:48.871314 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/ -I, [2020-03-04T15:02:48.871811 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/init.sls -I, [2020-03-04T15:02:48.872291 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/silent.config -I, [2020-03-04T15:02:48.872803 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python2_x64.sls -I, [2020-03-04T15:02:48.873329 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python2_x86.sls -I, [2020-03-04T15:02:48.873885 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python3_x64.sls -I, [2020-03-04T15:02:48.874478 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python3_x86.sls -I, [2020-03-04T15:02:48.874987 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/qemu.sls -I, [2020-03-04T15:02:48.875406 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/queueexplorerpro.sls -I, [2020-03-04T15:02:48.875796 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/quicktime.sls -I, [2020-03-04T15:02:48.876191 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rabbitmq.sls -I, [2020-03-04T15:02:48.876674 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls -I, [2020-03-04T15:02:48.877115 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rakudo-star_x64.sls -I, [2020-03-04T15:02:48.877493 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rasclient.sls -I, [2020-03-04T15:02:48.877882 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rdcman.sls -I, [2020-03-04T15:02:48.878243 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rocketchat.sls -I, [2020-03-04T15:02:48.878631 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rubyinstaller_x64.sls -I, [2020-03-04T15:02:48.879150 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rubyinstaller_x86.sls -I, [2020-03-04T15:02:48.879675 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/salt-minion-py2.sls -I, [2020-03-04T15:02:48.880211 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/salt-minion-py3.sls -I, [2020-03-04T15:02:48.886219 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sandboxie.sls -I, [2020-03-04T15:02:48.887024 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/scaleout.sls -I, [2020-03-04T15:02:48.887629 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/secunia.psi.sls -I, [2020-03-04T15:02:48.888158 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sensu.sls -I, [2020-03-04T15:02:48.888682 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sharpdevelop.sls -I, [2020-03-04T15:02:48.889327 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/skitch.sls -I, [2020-03-04T15:02:48.889955 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/skype-msi.sls -I, [2020-03-04T15:02:48.890577 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/skype.sls -I, [2020-03-04T15:02:48.891146 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/slack-machine-msi.sls -I, [2020-03-04T15:02:48.891738 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/slack-user-msi.sls -I, [2020-03-04T15:02:48.892295 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/slack.sls -I, [2020-03-04T15:02:48.893290 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/smartmontools.sls -I, [2020-03-04T15:02:48.894197 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/snmptools.sls -I, [2020-03-04T15:02:48.895147 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/soapui.sls -I, [2020-03-04T15:02:48.895660 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/software-informer.sls -I, [2020-03-04T15:02:48.896238 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sourcetree.sls -I, [2020-03-04T15:02:48.896808 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/spybot-anti-beacon.sls -I, [2020-03-04T15:02:48.897271 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/spybot.sls -I, [2020-03-04T15:02:48.897750 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sscserv-free.sls -I, [2020-03-04T15:02:48.898207 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stayawake/ -I, [2020-03-04T15:02:48.898608 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stayawake/init.sls -I, [2020-03-04T15:02:48.899151 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stayawake/install.cmd -I, [2020-03-04T15:02:48.899597 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/steam.sls -I, [2020-03-04T15:02:48.900021 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stellarium.sls -I, [2020-03-04T15:02:48.901205 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/strawberryperl_x64.sls -I, [2020-03-04T15:02:48.901791 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/strawberryperl_x86.sls -I, [2020-03-04T15:02:48.902297 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stunnel.sls -I, [2020-03-04T15:02:48.902833 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/subinacl.sls -I, [2020-03-04T15:02:48.903465 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sumatrapdf.sls -I, [2020-03-04T15:02:48.904121 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/svn.sls -I, [2020-03-04T15:02:48.904743 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/teamviewer.sls -I, [2020-03-04T15:02:48.905226 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/teamviewer_host.sls -I, [2020-03-04T15:02:48.905779 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/teracopy.sls -I, [2020-03-04T15:02:48.906395 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texmaker.sls -I, [2020-03-04T15:02:48.907012 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texniccenter.sls -I, [2020-03-04T15:02:48.907598 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texstudio.sls -I, [2020-03-04T15:02:48.908169 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texworks.sls -I, [2020-03-04T15:02:48.908640 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/thunderbird.sls -I, [2020-03-04T15:02:48.909058 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tightvnc.sls -I, [2020-03-04T15:02:48.909537 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/todotxt.net.sls -I, [2020-03-04T15:02:48.910194 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/todour.sls -I, [2020-03-04T15:02:48.910768 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-bzr.sls -I, [2020-03-04T15:02:48.911284 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-git.sls -I, [2020-03-04T15:02:48.911787 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-hg.sls -I, [2020-03-04T15:02:48.912342 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-svn.sls -I, [2020-03-04T15:02:48.913111 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/truecrypt.sls -I, [2020-03-04T15:02:48.913983 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ultradefrag.sls -I, [2020-03-04T15:02:48.916305 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/urlrewrite.sls -I, [2020-03-04T15:02:48.917207 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/usbdlm.sls -I, [2020-03-04T15:02:48.917894 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vagrant.sls -I, [2020-03-04T15:02:48.918554 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vcforpython27.sls -I, [2020-03-04T15:02:49.030729 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vcxsrv.sls -I, [2020-03-04T15:02:49.031300 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/verysleepy.sls -I, [2020-03-04T15:02:49.031827 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/veyon.sls -I, [2020-03-04T15:02:49.032236 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/virtualbox.sls -I, [2020-03-04T15:02:49.032662 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/viscosity.sls -I, [2020-03-04T15:02:49.033081 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vivaldi.sls -I, [2020-03-04T15:02:49.033539 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vlc.sls -I, [2020-03-04T15:02:49.034044 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vs-community.sls -I, [2020-03-04T15:02:49.034467 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vs_remotetools_2017.sls -I, [2020-03-04T15:02:49.034976 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vscode.sls -I, [2020-03-04T15:02:49.035435 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vsee.sls -I, [2020-03-04T15:02:49.035850 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wamp-server-3.sls -I, [2020-03-04T15:02:49.036302 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wamp-stack.sls -I, [2020-03-04T15:02:49.036790 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/webdeploy.sls -I, [2020-03-04T15:02:49.037282 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/webplatforminstaller.sls -I, [2020-03-04T15:02:49.037843 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/win-app-manager.sls -I, [2020-03-04T15:02:49.038266 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/windirstat.sls -I, [2020-03-04T15:02:49.038775 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winhttpcertcfg.sls -I, [2020-03-04T15:02:49.039271 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/ -I, [2020-03-04T15:02:49.039761 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/init.sls -I, [2020-03-04T15:02:49.040238 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/install.cmd -I, [2020-03-04T15:02:49.040717 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/install.ps1 -I, [2020-03-04T15:02:49.041160 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/remove.cmd -I, [2020-03-04T15:02:49.041570 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winmerge.sls -I, [2020-03-04T15:02:49.041899 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winmtr.sls -I, [2020-03-04T15:02:49.042279 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winpcap.sls -I, [2020-03-04T15:02:49.042659 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winrar.sls -I, [2020-03-04T15:02:49.043049 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winscp.sls -I, [2020-03-04T15:02:49.043418 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wireshark.sls -I, [2020-03-04T15:02:49.043737 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/ -I, [2020-03-04T15:02:49.044086 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/README.md -I, [2020-03-04T15:02:49.044452 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/answer.txt -I, [2020-03-04T15:02:49.044774 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/init.sls -I, [2020-03-04T15:02:49.045127 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/majsetup.reg -I, [2020-03-04T15:02:49.045484 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wscc.sls -I, [2020-03-04T15:02:49.045800 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wufuc.sls -I, [2020-03-04T15:02:49.046202 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/xampp.sls -I, [2020-03-04T15:02:49.046545 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/xming.sls -I, [2020-03-04T15:02:49.046864 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/yubikey-manager.sls -I, [2020-03-04T15:02:49.047260 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/yubikey-personalization-tool.sls -I, [2020-03-04T15:02:49.047584 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zabbix-agent.sls -I, [2020-03-04T15:02:49.047923 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/ -I, [2020-03-04T15:02:49.048280 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/init.sls -I, [2020-03-04T15:02:49.048690 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic -I, [2020-03-04T15:02:49.049096 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic -I, [2020-03-04T15:02:49.049505 #2368] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zoom.sls -I, [2020-03-04T15:02:49.049844 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.050234 #2368] INFO -- py3-windows-10-1809: ID: rename-extract -I, [2020-03-04T15:02:49.050595 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:49.050930 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.051303 #2368] INFO -- py3-windows-10-1809: Comment: file.rename: True -I, [2020-03-04T15:02:49.051680 #2368] INFO -- py3-windows-10-1809: Started: 12:01:00.178586 -I, [2020-03-04T15:02:49.052053 #2368] INFO -- py3-windows-10-1809: Duration: 0.0 ms -I, [2020-03-04T15:02:49.052408 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.052773 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.053150 #2368] INFO -- py3-windows-10-1809: file.rename: -I, [2020-03-04T15:02:49.053499 #2368] INFO -- py3-windows-10-1809: True -I, [2020-03-04T15:02:49.053854 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.054248 #2368] INFO -- py3-windows-10-1809: ID: pkg.refresh_db -I, [2020-03-04T15:02:49.054632 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:49.055041 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.055375 #2368] INFO -- py3-windows-10-1809: Comment: check_cmd determined the state succeeded -I, [2020-03-04T15:02:49.055683 #2368] INFO -- py3-windows-10-1809: Started: 12:01:00.178586 -I, [2020-03-04T15:02:49.056052 #2368] INFO -- py3-windows-10-1809: Duration: 9842.413 ms -I, [2020-03-04T15:02:49.056356 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.056687 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.057142 #2368] INFO -- py3-windows-10-1809: pkg.refresh_db: -I, [2020-03-04T15:02:49.057633 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.058158 #2368] INFO -- py3-windows-10-1809: failed: -I, [2020-03-04T15:02:49.058648 #2368] INFO -- py3-windows-10-1809: 0 -I, [2020-03-04T15:02:49.059162 #2368] INFO -- py3-windows-10-1809: success: -I, [2020-03-04T15:02:49.059663 #2368] INFO -- py3-windows-10-1809: 298 -I, [2020-03-04T15:02:49.060189 #2368] INFO -- py3-windows-10-1809: total: -I, [2020-03-04T15:02:49.060691 #2368] INFO -- py3-windows-10-1809: 298 -I, [2020-03-04T15:02:49.061193 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.061678 #2368] INFO -- py3-windows-10-1809: ID: git -I, [2020-03-04T15:02:49.062198 #2368] INFO -- py3-windows-10-1809: Function: pkg.installed -I, [2020-03-04T15:02:49.062670 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.063178 #2368] INFO -- py3-windows-10-1809: Comment: The following packages were installed/updated: git -I, [2020-03-04T15:02:49.063668 #2368] INFO -- py3-windows-10-1809: Started: 12:01:10.039820 -I, [2020-03-04T15:02:49.064176 #2368] INFO -- py3-windows-10-1809: Duration: 17668.179 ms -I, [2020-03-04T15:02:49.064654 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.065174 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.065655 #2368] INFO -- py3-windows-10-1809: git: -I, [2020-03-04T15:02:49.066171 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.066672 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:49.067197 #2368] INFO -- py3-windows-10-1809: 2.23.0.windows.1 -I, [2020-03-04T15:02:49.067688 #2368] INFO -- py3-windows-10-1809: old: -I, [2020-03-04T15:02:49.068183 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.068670 #2368] INFO -- py3-windows-10-1809: ID: kdiff3 -I, [2020-03-04T15:02:49.069175 #2368] INFO -- py3-windows-10-1809: Function: pkg.installed -I, [2020-03-04T15:02:49.074128 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.074630 #2368] INFO -- py3-windows-10-1809: Comment: The following packages were installed/updated: kdiff3 -I, [2020-03-04T15:02:49.075101 #2368] INFO -- py3-windows-10-1809: Started: 12:01:27.723752 -I, [2020-03-04T15:02:49.075518 #2368] INFO -- py3-windows-10-1809: Duration: 12672.727 ms -I, [2020-03-04T15:02:49.075888 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.076285 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.076698 #2368] INFO -- py3-windows-10-1809: kdiff3: -I, [2020-03-04T15:02:49.077179 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.077594 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:49.078012 #2368] INFO -- py3-windows-10-1809: Not Found -I, [2020-03-04T15:02:49.078408 #2368] INFO -- py3-windows-10-1809: old: -I, [2020-03-04T15:02:49.078822 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.079201 #2368] INFO -- py3-windows-10-1809: ID: 7zip -I, [2020-03-04T15:02:49.079632 #2368] INFO -- py3-windows-10-1809: Function: pkg.installed -I, [2020-03-04T15:02:49.079981 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.080419 #2368] INFO -- py3-windows-10-1809: Comment: The following packages were installed/updated: 7zip=18.06.00.0 -I, [2020-03-04T15:02:49.080776 #2368] INFO -- py3-windows-10-1809: Started: 12:01:40.411538 -I, [2020-03-04T15:02:49.081145 #2368] INFO -- py3-windows-10-1809: Duration: 12546.659 ms -I, [2020-03-04T15:02:49.081621 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.082067 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.082640 #2368] INFO -- py3-windows-10-1809: 7zip: -I, [2020-03-04T15:02:49.083203 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.083677 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:49.084072 #2368] INFO -- py3-windows-10-1809: 18.06.00.0 -I, [2020-03-04T15:02:49.084483 #2368] INFO -- py3-windows-10-1809: old: -I, [2020-03-04T15:02:49.084845 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.085263 #2368] INFO -- py3-windows-10-1809: ID: windows_environment.refresh.path -I, [2020-03-04T15:02:49.085700 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:49.086086 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.086476 #2368] INFO -- py3-windows-10-1809: Comment: windows_environment.refresh: Success -I, [2020-03-04T15:02:49.086826 #2368] INFO -- py3-windows-10-1809: Started: 12:01:52.958197 -I, [2020-03-04T15:02:49.087227 #2368] INFO -- py3-windows-10-1809: Duration: 63.015 ms -I, [2020-03-04T15:02:49.087586 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.087977 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.088364 #2368] INFO -- py3-windows-10-1809: windows_environment.refresh: -I, [2020-03-04T15:02:49.088868 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.089406 #2368] INFO -- py3-windows-10-1809: PATH: -I, [2020-03-04T15:02:49.090444 #2368] INFO -- py3-windows-10-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd -I, [2020-03-04T15:02:49.090981 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.091498 #2368] INFO -- py3-windows-10-1809: ID: chocolatey.bootstrap -I, [2020-03-04T15:02:49.092013 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:49.092521 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.093025 #2368] INFO -- py3-windows-10-1809: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:02:49.093477 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.093990 #2368] INFO -- py3-windows-10-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:02:49.094448 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.094946 #2368] INFO -- py3-windows-10-1809: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:02:49.095412 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.095943 #2368] INFO -- py3-windows-10-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:02:49.096409 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.096914 #2368] INFO -- py3-windows-10-1809: Installing chocolatey on this machine -I, [2020-03-04T15:02:49.097341 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.097825 #2368] INFO -- py3-windows-10-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:02:49.098263 #2368] INFO -- py3-windows-10-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:02:49.098618 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.099115 #2368] INFO -- py3-windows-10-1809: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:02:49.099508 #2368] INFO -- py3-windows-10-1809: before you can use choco. -I, [2020-03-04T15:02:49.100009 #2368] INFO -- py3-windows-10-1809: Restricting write permissions to Administrators -I, [2020-03-04T15:02:49.100403 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.100856 #2368] INFO -- py3-windows-10-1809: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:02:49.101221 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.101669 #2368] INFO -- py3-windows-10-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:02:49.102119 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.102514 #2368] INFO -- py3-windows-10-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:02:49.102880 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.103244 #2368] INFO -- py3-windows-10-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:02:49.103562 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.103997 #2368] INFO -- py3-windows-10-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:02:49.104399 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.104813 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.105113 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.105468 #2368] INFO -- py3-windows-10-1809: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:02:49.105854 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.106206 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.106542 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.106939 #2368] INFO -- py3-windows-10-1809: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:02:49.107420 #2368] INFO -- py3-windows-10-1809: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:02:49.107911 #2368] INFO -- py3-windows-10-1809: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:02:49.108380 #2368] INFO -- py3-windows-10-1809: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:02:49.108883 #2368] INFO -- py3-windows-10-1809: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:02:49.109341 #2368] INFO -- py3-windows-10-1809: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:02:49.109723 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.110301 #2368] INFO -- py3-windows-10-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:02:49.110963 #2368] INFO -- py3-windows-10-1809: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:02:49.111428 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.111944 #2368] INFO -- py3-windows-10-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:02:49.112428 #2368] INFO -- py3-windows-10-1809: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:02:49.112894 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.113331 #2368] INFO -- py3-windows-10-1809: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:02:49.113753 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.114212 #2368] INFO -- py3-windows-10-1809: Run choco /? for a list of functions. -I, [2020-03-04T15:02:49.114657 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.115075 #2368] INFO -- py3-windows-10-1809: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:02:49.115484 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.115972 #2368] INFO -- py3-windows-10-1809: first prior to using choco. -I, [2020-03-04T15:02:49.116395 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.116912 #2368] INFO -- py3-windows-10-1809: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:02:49.117387 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.117875 #2368] INFO -- py3-windows-10-1809: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:02:49.118237 #2368] INFO -- py3-windows-10-1809: Started: 12:01:53.021212 -I, [2020-03-04T15:02:49.118576 #2368] INFO -- py3-windows-10-1809: Duration: 21062.231 ms -I, [2020-03-04T15:02:49.118880 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.119194 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.119582 #2368] INFO -- py3-windows-10-1809: chocolatey.bootstrap: -I, [2020-03-04T15:02:49.119912 #2368] INFO -- py3-windows-10-1809: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:02:49.120249 #2368] INFO -- py3-windows-10-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:02:49.120587 #2368] INFO -- py3-windows-10-1809: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:02:49.120944 #2368] INFO -- py3-windows-10-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:02:49.121374 #2368] INFO -- py3-windows-10-1809: Installing chocolatey on this machine -I, [2020-03-04T15:02:49.126246 #2368] INFO -- py3-windows-10-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:02:49.126818 #2368] INFO -- py3-windows-10-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:02:49.127402 #2368] INFO -- py3-windows-10-1809: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:02:49.127785 #2368] INFO -- py3-windows-10-1809: before you can use choco. -I, [2020-03-04T15:02:49.128161 #2368] INFO -- py3-windows-10-1809: Restricting write permissions to Administrators -I, [2020-03-04T15:02:49.128567 #2368] INFO -- py3-windows-10-1809: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:02:49.128991 #2368] INFO -- py3-windows-10-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:02:49.129376 #2368] INFO -- py3-windows-10-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:02:49.129761 #2368] INFO -- py3-windows-10-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:02:49.130197 #2368] INFO -- py3-windows-10-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:02:49.130527 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.130921 #2368] INFO -- py3-windows-10-1809: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:02:49.131331 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.131673 #2368] INFO -- py3-windows-10-1809: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:02:49.132052 #2368] INFO -- py3-windows-10-1809: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:02:49.132423 #2368] INFO -- py3-windows-10-1809: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:02:49.132846 #2368] INFO -- py3-windows-10-1809: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:02:49.133204 #2368] INFO -- py3-windows-10-1809: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:02:49.133590 #2368] INFO -- py3-windows-10-1809: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:02:49.134083 #2368] INFO -- py3-windows-10-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:02:49.134484 #2368] INFO -- py3-windows-10-1809: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:02:49.134873 #2368] INFO -- py3-windows-10-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:02:49.135368 #2368] INFO -- py3-windows-10-1809: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:02:49.135956 #2368] INFO -- py3-windows-10-1809: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:02:49.136564 #2368] INFO -- py3-windows-10-1809: Run choco /? for a list of functions. -I, [2020-03-04T15:02:49.137042 #2368] INFO -- py3-windows-10-1809: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:02:49.137440 #2368] INFO -- py3-windows-10-1809: first prior to using choco. -I, [2020-03-04T15:02:49.137848 #2368] INFO -- py3-windows-10-1809: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:02:49.138215 #2368] INFO -- py3-windows-10-1809: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:02:49.138650 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.139043 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.chocolatey.notepadplusplus -I, [2020-03-04T15:02:49.139401 #2368] INFO -- py3-windows-10-1809: Function: chocolatey.installed -I, [2020-03-04T15:02:49.139777 #2368] INFO -- py3-windows-10-1809: Name: notepadplusplus -I, [2020-03-04T15:02:49.140115 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.140454 #2368] INFO -- py3-windows-10-1809: Comment: -I, [2020-03-04T15:02:49.140823 #2368] INFO -- py3-windows-10-1809: Started: 12:02:14.083443 -I, [2020-03-04T15:02:49.141191 #2368] INFO -- py3-windows-10-1809: Duration: 16218.783 ms -I, [2020-03-04T15:02:49.141544 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.141926 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.142297 #2368] INFO -- py3-windows-10-1809: notepadplusplus: -I, [2020-03-04T15:02:49.142673 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.143059 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:49.143436 #2368] INFO -- py3-windows-10-1809: - 7.8.4 -I, [2020-03-04T15:02:49.143845 #2368] INFO -- py3-windows-10-1809: old: -I, [2020-03-04T15:02:49.144182 #2368] INFO -- py3-windows-10-1809: notepadplusplus.install: -I, [2020-03-04T15:02:49.144609 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.144995 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:49.145408 #2368] INFO -- py3-windows-10-1809: - 7.8.4 -I, [2020-03-04T15:02:49.145754 #2368] INFO -- py3-windows-10-1809: old: -I, [2020-03-04T15:02:49.146090 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.146416 #2368] INFO -- py3-windows-10-1809: ID: windows.system.packages.chocolatey.windirstat -I, [2020-03-04T15:02:49.146846 #2368] INFO -- py3-windows-10-1809: Function: chocolatey.installed -I, [2020-03-04T15:02:49.147191 #2368] INFO -- py3-windows-10-1809: Name: windirstat -I, [2020-03-04T15:02:49.147525 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.147880 #2368] INFO -- py3-windows-10-1809: Comment: -I, [2020-03-04T15:02:49.148234 #2368] INFO -- py3-windows-10-1809: Started: 12:02:30.302226 -I, [2020-03-04T15:02:49.148565 #2368] INFO -- py3-windows-10-1809: Duration: 9671.869 ms -I, [2020-03-04T15:02:49.148881 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.149226 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.149605 #2368] INFO -- py3-windows-10-1809: windirstat: -I, [2020-03-04T15:02:49.149976 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.150294 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:49.150656 #2368] INFO -- py3-windows-10-1809: - 1.1.2.20161210 -I, [2020-03-04T15:02:49.151016 #2368] INFO -- py3-windows-10-1809: old: -I, [2020-03-04T15:02:49.151362 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.151696 #2368] INFO -- py3-windows-10-1809: ID: windows.system.desktop.optional_features.installed.TelnetClient -I, [2020-03-04T15:02:49.152048 #2368] INFO -- py3-windows-10-1809: Function: dism.feature_installed -I, [2020-03-04T15:02:49.152424 #2368] INFO -- py3-windows-10-1809: Name: TelnetClient -I, [2020-03-04T15:02:49.152779 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.153184 #2368] INFO -- py3-windows-10-1809: Comment: Installed TelnetClient -I, [2020-03-04T15:02:49.153574 #2368] INFO -- py3-windows-10-1809: Started: 12:02:39.974095 -I, [2020-03-04T15:02:49.153927 #2368] INFO -- py3-windows-10-1809: Duration: 7405.986 ms -I, [2020-03-04T15:02:49.154281 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.154615 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.154984 #2368] INFO -- py3-windows-10-1809: feature: -I, [2020-03-04T15:02:49.155324 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.155695 #2368] INFO -- py3-windows-10-1809: new: -I, [2020-03-04T15:02:49.156070 #2368] INFO -- py3-windows-10-1809: TelnetClient -I, [2020-03-04T15:02:49.156418 #2368] INFO -- py3-windows-10-1809: pid: -I, [2020-03-04T15:02:49.156810 #2368] INFO -- py3-windows-10-1809: 1340 -I, [2020-03-04T15:02:49.157133 #2368] INFO -- py3-windows-10-1809: retcode: -I, [2020-03-04T15:02:49.157488 #2368] INFO -- py3-windows-10-1809: 0 -I, [2020-03-04T15:02:49.157876 #2368] INFO -- py3-windows-10-1809: stderr: -I, [2020-03-04T15:02:49.158226 #2368] INFO -- py3-windows-10-1809: stdout: -I, [2020-03-04T15:02:49.158575 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.158929 #2368] INFO -- py3-windows-10-1809: ID: windows.module.system.reboot -I, [2020-03-04T15:02:49.159304 #2368] INFO -- py3-windows-10-1809: Function: module.run -I, [2020-03-04T15:02:49.159694 #2368] INFO -- py3-windows-10-1809: Result: True -I, [2020-03-04T15:02:49.160019 #2368] INFO -- py3-windows-10-1809: Comment: system.reboot: True -I, [2020-03-04T15:02:49.160483 #2368] INFO -- py3-windows-10-1809: Started: 12:02:47.396062 -I, [2020-03-04T15:02:49.160845 #2368] INFO -- py3-windows-10-1809: Duration: 531.107 ms -I, [2020-03-04T15:02:49.161158 #2368] INFO -- py3-windows-10-1809: Changes: -I, [2020-03-04T15:02:49.161567 #2368] INFO -- py3-windows-10-1809: ---------- -I, [2020-03-04T15:02:49.161911 #2368] INFO -- py3-windows-10-1809: system.reboot: -I, [2020-03-04T15:02:49.162267 #2368] INFO -- py3-windows-10-1809: True -I, [2020-03-04T15:02:49.162634 #2368] INFO -- py3-windows-10-1809: -I, [2020-03-04T15:02:49.162941 #2368] INFO -- py3-windows-10-1809: Summary for local -I, [2020-03-04T15:02:49.163327 #2368] INFO -- py3-windows-10-1809: ------------- -I, [2020-03-04T15:02:49.163655 #2368] INFO -- py3-windows-10-1809: Succeeded: 25 (changed=25) -I, [2020-03-04T15:02:49.164021 #2368] INFO -- py3-windows-10-1809: Failed: 0 -I, [2020-03-04T15:02:49.164405 #2368] INFO -- py3-windows-10-1809: ------------- -I, [2020-03-04T15:02:49.164714 #2368] INFO -- py3-windows-10-1809: Total states run: 25 -I, [2020-03-04T15:02:49.165105 #2368] INFO -- py3-windows-10-1809: Total run time: 131.200 s -I, [2020-03-04T15:02:49.187654 #2368] INFO -- py3-windows-10-1809: Downloading files from -I, [2020-03-04T15:02:49.351107 #2368] INFO -- py3-windows-10-1809: Finished converging (2m53.85s). -I, [2020-03-04T15:02:49.351339 #2368] INFO -- py3-windows-10-1809: -----> Setting up ... -I, [2020-03-04T15:02:49.358698 #2368] INFO -- py3-windows-10-1809: Finished setting up (0m0.00s). -I, [2020-03-04T15:02:49.358961 #2368] INFO -- py3-windows-10-1809: -----> Verifying ... -I, [2020-03-04T15:02:50.544304 #2368] INFO -- py3-windows-10-1809: Loaded default -I, [2020-03-04T15:03:44.029704 #2368] INFO -- py3-windows-10-1809: Finished verifying (0m54.67s). -I, [2020-03-04T15:03:44.036987 #2368] INFO -- py3-windows-10-1809: -----> Destroying ... -I, [2020-03-04T15:03:55.322991 #2368] INFO -- py3-windows-10-1809: ==> default: Forcing shutdown of VM... -I, [2020-03-04T15:03:57.265230 #2368] INFO -- py3-windows-10-1809: ==> default: Destroying VM and associated drives... -I, [2020-03-04T15:03:58.010883 #2368] INFO -- py3-windows-10-1809: Vagrant instance destroyed. -I, [2020-03-04T15:03:58.012169 #2368] INFO -- py3-windows-10-1809: Finished destroying (0m13.97s). -I, [2020-03-04T15:03:58.013221 #2368] INFO -- py3-windows-10-1809: Finished testing (5m19.74s). +I, [2020-03-06T12:59:01.878459 #16243] INFO -- py3-windows-10-1809: -----> Cleaning up any prior instances of +I, [2020-03-06T12:59:01.878627 #16243] INFO -- py3-windows-10-1809: -----> Destroying ... +I, [2020-03-06T12:59:01.880055 #16243] INFO -- py3-windows-10-1809: Finished destroying (0m0.00s). +I, [2020-03-06T12:59:01.881361 #16243] INFO -- py3-windows-10-1809: -----> Testing +I, [2020-03-06T12:59:01.881520 #16243] INFO -- py3-windows-10-1809: -----> Creating ... +I, [2020-03-06T12:59:08.171225 #16243] INFO -- py3-windows-10-1809: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T12:59:09.327161 #16243] INFO -- py3-windows-10-1809: ==> default: Cloning VM... +I, [2020-03-06T12:59:09.884611 #16243] INFO -- py3-windows-10-1809: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T12:59:10.157289 #16243] INFO -- py3-windows-10-1809: ==> default: Checking if box 'StefanScherer/windows_10' version '2019.05.15' is up to date... +I, [2020-03-06T12:59:11.513783 #16243] INFO -- py3-windows-10-1809: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1809-fa5eee70-1fd8-44fb-85b8-16cbcc0b4cc5 +I, [2020-03-06T12:59:15.798044 #16243] INFO -- py3-windows-10-1809: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T12:59:15.969994 #16243] INFO -- py3-windows-10-1809: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T12:59:15.970602 #16243] INFO -- py3-windows-10-1809: default: Adapter 1: nat +I, [2020-03-06T12:59:16.181372 #16243] INFO -- py3-windows-10-1809: ==> default: Forwarding ports... +I, [2020-03-06T12:59:16.370759 #16243] INFO -- py3-windows-10-1809: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T12:59:16.371542 #16243] INFO -- py3-windows-10-1809: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T12:59:16.372218 #16243] INFO -- py3-windows-10-1809: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T12:59:16.372781 #16243] INFO -- py3-windows-10-1809: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T12:59:16.981500 #16243] INFO -- py3-windows-10-1809: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T12:59:18.521684 #16243] INFO -- py3-windows-10-1809: ==> default: Booting VM... +I, [2020-03-06T12:59:22.070940 #16243] INFO -- py3-windows-10-1809: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T12:59:23.894467 #16243] INFO -- py3-windows-10-1809: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T12:59:23.894795 #16243] INFO -- py3-windows-10-1809: default: WinRM username: vagrant +I, [2020-03-06T12:59:23.895463 #16243] INFO -- py3-windows-10-1809: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T12:59:23.895830 #16243] INFO -- py3-windows-10-1809: default: WinRM transport: negotiate +I, [2020-03-06T12:59:47.359653 #16243] INFO -- py3-windows-10-1809: ==> default: Machine booted and ready! +I, [2020-03-06T12:59:47.409480 #16243] INFO -- py3-windows-10-1809: ==> default: Checking for guest additions in VM... +I, [2020-03-06T12:59:47.720357 #16243] INFO -- py3-windows-10-1809: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T12:59:47.720507 #16243] INFO -- py3-windows-10-1809: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T12:59:47.720559 #16243] INFO -- py3-windows-10-1809: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T12:59:47.720621 #16243] INFO -- py3-windows-10-1809: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T12:59:47.720663 #16243] INFO -- py3-windows-10-1809: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T12:59:47.720696 #16243] INFO -- py3-windows-10-1809: default: your host and reload your VM. +I, [2020-03-06T12:59:47.720736 #16243] INFO -- py3-windows-10-1809: default: +I, [2020-03-06T12:59:47.720771 #16243] INFO -- py3-windows-10-1809: default: Guest Additions Version: 5.2.30 +I, [2020-03-06T12:59:47.720813 #16243] INFO -- py3-windows-10-1809: default: VirtualBox Version: 6.1 +I, [2020-03-06T12:59:48.601392 #16243] INFO -- py3-windows-10-1809: ==> default: Mounting shared folders... +I, [2020-03-06T12:59:48.602971 #16243] INFO -- py3-windows-10-1809: default: /results => /mnt/c/tmp/results +I, [2020-03-06T12:59:57.680753 #16243] INFO -- py3-windows-10-1809: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:00:14.705138 #16243] INFO -- py3-windows-10-1809: [WinRM] Established +I, [2020-03-06T13:00:14.705287 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:14.719404 #16243] INFO -- py3-windows-10-1809: Vagrant instance created. +I, [2020-03-06T13:00:14.721850 #16243] INFO -- py3-windows-10-1809: Finished creating (1m12.84s). +I, [2020-03-06T13:00:14.722130 #16243] INFO -- py3-windows-10-1809: -----> Converging ... +I, [2020-03-06T13:00:14.725999 #16243] INFO -- py3-windows-10-1809: Preparing files for transfer +I, [2020-03-06T13:00:14.726238 #16243] INFO -- py3-windows-10-1809: Preparing salt-minion +I, [2020-03-06T13:00:14.732857 #16243] INFO -- py3-windows-10-1809: Preparing pillars into /srv/pillar +I, [2020-03-06T13:00:14.732995 #16243] INFO -- py3-windows-10-1809: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:00:14.737907 #16243] INFO -- py3-windows-10-1809: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:00:14.921684 #16243] INFO -- py3-windows-10-1809: Preparing state_top +I, [2020-03-06T13:00:14.923594 #16243] INFO -- py3-windows-10-1809: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:00:15.944168 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:15.944611 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:15.945164 #16243] INFO -- py3-windows-10-1809: Directory: C:\ +I, [2020-03-06T13:00:15.945611 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:15.946012 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:15.946573 #16243] INFO -- py3-windows-10-1809: Mode LastWriteTime Length Name +I, [2020-03-06T13:00:15.947132 #16243] INFO -- py3-windows-10-1809: ---- ------------- ------ ---- +I, [2020-03-06T13:00:15.947804 #16243] INFO -- py3-windows-10-1809: d----- 3/6/2020 10:00 AM temp +I, [2020-03-06T13:00:16.699533 #16243] INFO -- py3-windows-10-1809: Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe +I, [2020-03-06T13:00:20.740007 #16243] INFO -- py3-windows-10-1809: Installing Salt minion +I, [2020-03-06T13:00:40.507521 #16243] INFO -- py3-windows-10-1809: Starting the Salt minion service +I, [2020-03-06T13:00:40.508419 #16243] INFO -- py3-windows-10-1809: Salt minion successfully installed +I, [2020-03-06T13:00:46.713845 #16243] INFO -- py3-windows-10-1809: You asked for latest and you have 3000 installed, sweet! +I, [2020-03-06T13:00:46.714385 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:46.714880 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:47.209200 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:47.209558 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:47.210083 #16243] INFO -- py3-windows-10-1809: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:00:47.210599 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:47.211018 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:47.211574 #16243] INFO -- py3-windows-10-1809: Mode LastWriteTime Length Name +I, [2020-03-06T13:00:47.212100 #16243] INFO -- py3-windows-10-1809: ---- ------------- ------ ---- +I, [2020-03-06T13:00:47.212644 #16243] INFO -- py3-windows-10-1809: d----- 3/6/2020 10:00 AM kitchen +I, [2020-03-06T13:00:47.213055 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:47.213457 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:00:47.225264 #16243] INFO -- py3-windows-10-1809: Transferring files to +I, [2020-03-06T13:01:22.971515 #16243] INFO -- py3-windows-10-1809: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:01:22.972162 #16243] INFO -- py3-windows-10-1809: At line:1 char:131 +I, [2020-03-06T13:01:22.972624 #16243] INFO -- py3-windows-10-1809: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:01:22.973138 #16243] INFO -- py3-windows-10-1809: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:01:22.973488 #16243] INFO -- py3-windows-10-1809: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:01:22.973854 #16243] INFO -- py3-windows-10-1809: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:01:22.974140 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:01:22.974416 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:01:22.974798 #16243] INFO -- py3-windows-10-1809: Traceback (most recent call last): +I, [2020-03-06T13:01:22.975220 #16243] INFO -- py3-windows-10-1809: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:01:22.975608 #16243] INFO -- py3-windows-10-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:01:22.976008 #16243] INFO -- py3-windows-10-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:01:22.976340 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:01:22.976763 #16243] INFO -- py3-windows-10-1809: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:01:22.977259 #16243] INFO -- py3-windows-10-1809: Traceback (most recent call last): +I, [2020-03-06T13:01:22.977727 #16243] INFO -- py3-windows-10-1809: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:01:22.978172 #16243] INFO -- py3-windows-10-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:01:22.978602 #16243] INFO -- py3-windows-10-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:01:22.979032 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:02:35.780513 #16243] INFO -- py3-windows-10-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:02:35.780958 #16243] INFO -- py3-windows-10-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:02:35.781296 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:02:35.781691 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:02:35.782145 #16243] INFO -- py3-windows-10-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:02:35.782582 #16243] INFO -- py3-windows-10-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:02:35.782956 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:02:35.783322 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.266829 #16243] INFO -- py3-windows-10-1809: local: +I, [2020-03-06T13:03:34.267360 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.267933 #16243] INFO -- py3-windows-10-1809: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:03:34.268468 #16243] INFO -- py3-windows-10-1809: Function: system.hostname +I, [2020-03-06T13:03:34.268944 #16243] INFO -- py3-windows-10-1809: Name: saltstack1 +I, [2020-03-06T13:03:34.269369 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.269845 #16243] INFO -- py3-windows-10-1809: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:03:34.270271 #16243] INFO -- py3-windows-10-1809: Started: 10:00:59.861874 +I, [2020-03-06T13:03:34.270715 #16243] INFO -- py3-windows-10-1809: Duration: 94.253 ms +I, [2020-03-06T13:03:34.271120 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.271539 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.271982 #16243] INFO -- py3-windows-10-1809: hostname: +I, [2020-03-06T13:03:34.272417 #16243] INFO -- py3-windows-10-1809: saltstack1 +I, [2020-03-06T13:03:34.272850 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.273277 #16243] INFO -- py3-windows-10-1809: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:03:34.273710 #16243] INFO -- py3-windows-10-1809: Function: system.computer_desc +I, [2020-03-06T13:03:34.274129 #16243] INFO -- py3-windows-10-1809: Name: Saltstack Computer Description +I, [2020-03-06T13:03:34.274564 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.274993 #16243] INFO -- py3-windows-10-1809: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:03:34.275408 #16243] INFO -- py3-windows-10-1809: Started: 10:00:59.956127 +I, [2020-03-06T13:03:34.275838 #16243] INFO -- py3-windows-10-1809: Duration: 2702.672 ms +I, [2020-03-06T13:03:34.276215 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.276638 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.277047 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.277463 #16243] INFO -- py3-windows-10-1809: Saltstack Computer Description +I, [2020-03-06T13:03:34.277878 #16243] INFO -- py3-windows-10-1809: old: +I, [2020-03-06T13:03:34.278258 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.278675 #16243] INFO -- py3-windows-10-1809: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:03:34.279079 #16243] INFO -- py3-windows-10-1809: Function: timezone.system +I, [2020-03-06T13:03:34.279514 #16243] INFO -- py3-windows-10-1809: Name: America/New_York +I, [2020-03-06T13:03:34.279947 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.280367 #16243] INFO -- py3-windows-10-1809: Comment: Set timezone America/New_York +I, [2020-03-06T13:03:34.280788 #16243] INFO -- py3-windows-10-1809: Started: 10:01:02.690131 +I, [2020-03-06T13:03:34.281180 #16243] INFO -- py3-windows-10-1809: Duration: 16.423 ms +I, [2020-03-06T13:03:34.281597 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.282017 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.282448 #16243] INFO -- py3-windows-10-1809: timezone: +I, [2020-03-06T13:03:34.282874 #16243] INFO -- py3-windows-10-1809: America/New_York +I, [2020-03-06T13:03:34.283280 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.283706 #16243] INFO -- py3-windows-10-1809: ID: windows.module.environ.items +I, [2020-03-06T13:03:34.284115 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.284531 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.284939 #16243] INFO -- py3-windows-10-1809: Comment: environ.items: Success +I, [2020-03-06T13:03:34.285375 #16243] INFO -- py3-windows-10-1809: Started: 10:01:02.721814 +I, [2020-03-06T13:03:34.285795 #16243] INFO -- py3-windows-10-1809: Duration: 0.0 ms +I, [2020-03-06T13:03:34.286208 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.286637 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.287060 #16243] INFO -- py3-windows-10-1809: environ.items: +I, [2020-03-06T13:03:34.287493 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.287921 #16243] INFO -- py3-windows-10-1809: ALLUSERSPROFILE: +I, [2020-03-06T13:03:34.288374 #16243] INFO -- py3-windows-10-1809: C:\ProgramData +I, [2020-03-06T13:03:34.288790 #16243] INFO -- py3-windows-10-1809: APPDATA: +I, [2020-03-06T13:03:34.289238 #16243] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:03:34.289654 #16243] INFO -- py3-windows-10-1809: COMMONPROGRAMFILES: +I, [2020-03-06T13:03:34.290080 #16243] INFO -- py3-windows-10-1809: C:\Program Files\Common Files +I, [2020-03-06T13:03:34.290523 #16243] INFO -- py3-windows-10-1809: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:03:34.290960 #16243] INFO -- py3-windows-10-1809: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:03:34.291408 #16243] INFO -- py3-windows-10-1809: COMMONPROGRAMW6432: +I, [2020-03-06T13:03:34.291832 #16243] INFO -- py3-windows-10-1809: C:\Program Files\Common Files +I, [2020-03-06T13:03:34.292278 #16243] INFO -- py3-windows-10-1809: COMPUTERNAME: +I, [2020-03-06T13:03:34.292695 #16243] INFO -- py3-windows-10-1809: VAGRANT-10 +I, [2020-03-06T13:03:34.293142 #16243] INFO -- py3-windows-10-1809: COMSPEC: +I, [2020-03-06T13:03:34.293577 #16243] INFO -- py3-windows-10-1809: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:03:34.293997 #16243] INFO -- py3-windows-10-1809: DRIVERDATA: +I, [2020-03-06T13:03:34.294441 #16243] INFO -- py3-windows-10-1809: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T13:03:34.294859 #16243] INFO -- py3-windows-10-1809: HOMEDRIVE: +I, [2020-03-06T13:03:34.295318 #16243] INFO -- py3-windows-10-1809: C: +I, [2020-03-06T13:03:34.295755 #16243] INFO -- py3-windows-10-1809: HOMEPATH: +I, [2020-03-06T13:03:34.296195 #16243] INFO -- py3-windows-10-1809: \Users\vagrant +I, [2020-03-06T13:03:34.296609 #16243] INFO -- py3-windows-10-1809: LOCALAPPDATA: +I, [2020-03-06T13:03:34.297050 #16243] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:03:34.297463 #16243] INFO -- py3-windows-10-1809: LOGONSERVER: +I, [2020-03-06T13:03:34.297877 #16243] INFO -- py3-windows-10-1809: \\VAGRANT-10 +I, [2020-03-06T13:03:34.298316 #16243] INFO -- py3-windows-10-1809: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:03:34.298731 #16243] INFO -- py3-windows-10-1809: 2 +I, [2020-03-06T13:03:34.299164 #16243] INFO -- py3-windows-10-1809: ONEDRIVE: +I, [2020-03-06T13:03:34.299579 #16243] INFO -- py3-windows-10-1809: C:\Users\vagrant\OneDrive +I, [2020-03-06T13:03:34.300016 #16243] INFO -- py3-windows-10-1809: OS: +I, [2020-03-06T13:03:34.300440 #16243] INFO -- py3-windows-10-1809: Windows_NT +I, [2020-03-06T13:03:34.300873 #16243] INFO -- py3-windows-10-1809: PATH: +I, [2020-03-06T13:03:34.301392 #16243] INFO -- py3-windows-10-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:03:34.301820 #16243] INFO -- py3-windows-10-1809: PATHEXT: +I, [2020-03-06T13:03:34.302288 #16243] INFO -- py3-windows-10-1809: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:03:34.302729 #16243] INFO -- py3-windows-10-1809: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:03:34.303169 #16243] INFO -- py3-windows-10-1809: AMD64 +I, [2020-03-06T13:03:34.303606 #16243] INFO -- py3-windows-10-1809: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:03:34.304078 #16243] INFO -- py3-windows-10-1809: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:03:34.304524 #16243] INFO -- py3-windows-10-1809: PROCESSOR_LEVEL: +I, [2020-03-06T13:03:34.304969 #16243] INFO -- py3-windows-10-1809: 6 +I, [2020-03-06T13:03:34.305393 #16243] INFO -- py3-windows-10-1809: PROCESSOR_REVISION: +I, [2020-03-06T13:03:34.305870 #16243] INFO -- py3-windows-10-1809: 8e0c +I, [2020-03-06T13:03:34.306302 #16243] INFO -- py3-windows-10-1809: PROGRAMDATA: +I, [2020-03-06T13:03:34.306741 #16243] INFO -- py3-windows-10-1809: C:\ProgramData +I, [2020-03-06T13:03:34.307215 #16243] INFO -- py3-windows-10-1809: PROGRAMFILES: +I, [2020-03-06T13:03:34.307691 #16243] INFO -- py3-windows-10-1809: C:\Program Files +I, [2020-03-06T13:03:34.308195 #16243] INFO -- py3-windows-10-1809: PROGRAMFILES(X86): +I, [2020-03-06T13:03:34.308671 #16243] INFO -- py3-windows-10-1809: C:\Program Files (x86) +I, [2020-03-06T13:03:34.309129 #16243] INFO -- py3-windows-10-1809: PROGRAMW6432: +I, [2020-03-06T13:03:34.309577 #16243] INFO -- py3-windows-10-1809: C:\Program Files +I, [2020-03-06T13:03:34.310021 #16243] INFO -- py3-windows-10-1809: PROMPT: +I, [2020-03-06T13:03:34.310470 #16243] INFO -- py3-windows-10-1809: $P$G +I, [2020-03-06T13:03:34.310940 #16243] INFO -- py3-windows-10-1809: PSMODULEPATH: +I, [2020-03-06T13:03:34.311420 #16243] INFO -- py3-windows-10-1809: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:03:34.311872 #16243] INFO -- py3-windows-10-1809: PUBLIC: +I, [2020-03-06T13:03:34.312307 #16243] INFO -- py3-windows-10-1809: C:\Users\Public +I, [2020-03-06T13:03:34.312752 #16243] INFO -- py3-windows-10-1809: PYTHON: +I, [2020-03-06T13:03:34.313188 #16243] INFO -- py3-windows-10-1809: C:\salt\bin\python.exe +I, [2020-03-06T13:03:34.313641 #16243] INFO -- py3-windows-10-1809: SALTDIR: +I, [2020-03-06T13:03:34.314075 #16243] INFO -- py3-windows-10-1809: C:\salt +I, [2020-03-06T13:03:34.314504 #16243] INFO -- py3-windows-10-1809: SCRIPT: +I, [2020-03-06T13:03:34.314960 #16243] INFO -- py3-windows-10-1809: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:03:34.315405 #16243] INFO -- py3-windows-10-1809: SYSTEMDRIVE: +I, [2020-03-06T13:03:34.315854 #16243] INFO -- py3-windows-10-1809: C: +I, [2020-03-06T13:03:34.316302 #16243] INFO -- py3-windows-10-1809: SYSTEMROOT: +I, [2020-03-06T13:03:34.316780 #16243] INFO -- py3-windows-10-1809: C:\Windows +I, [2020-03-06T13:03:34.317246 #16243] INFO -- py3-windows-10-1809: TEMP: +I, [2020-03-06T13:03:34.317753 #16243] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:03:34.318256 #16243] INFO -- py3-windows-10-1809: TMP: +I, [2020-03-06T13:03:34.318827 #16243] INFO -- py3-windows-10-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:03:34.319404 #16243] INFO -- py3-windows-10-1809: USERDOMAIN: +I, [2020-03-06T13:03:34.319915 #16243] INFO -- py3-windows-10-1809: VAGRANT-10 +I, [2020-03-06T13:03:34.320326 #16243] INFO -- py3-windows-10-1809: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:03:34.320723 #16243] INFO -- py3-windows-10-1809: VAGRANT-10 +I, [2020-03-06T13:03:34.321107 #16243] INFO -- py3-windows-10-1809: USERNAME: +I, [2020-03-06T13:03:34.321545 #16243] INFO -- py3-windows-10-1809: vagrant +I, [2020-03-06T13:03:34.321942 #16243] INFO -- py3-windows-10-1809: USERPROFILE: +I, [2020-03-06T13:03:34.322332 #16243] INFO -- py3-windows-10-1809: C:\Users\vagrant +I, [2020-03-06T13:03:34.322721 #16243] INFO -- py3-windows-10-1809: WINDIR: +I, [2020-03-06T13:03:34.323142 #16243] INFO -- py3-windows-10-1809: C:\Windows +I, [2020-03-06T13:03:34.323568 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.323947 #16243] INFO -- py3-windows-10-1809: ID: windows.module.user.current +I, [2020-03-06T13:03:34.324391 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.324843 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.325303 #16243] INFO -- py3-windows-10-1809: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T13:03:34.325774 #16243] INFO -- py3-windows-10-1809: Started: 10:01:02.721814 +I, [2020-03-06T13:03:34.326224 #16243] INFO -- py3-windows-10-1809: Duration: 30.963 ms +I, [2020-03-06T13:03:34.326688 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.327145 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.327644 #16243] INFO -- py3-windows-10-1809: user.current: +I, [2020-03-06T13:03:34.328050 #16243] INFO -- py3-windows-10-1809: VAGRANT-10\vagrant +I, [2020-03-06T13:03:34.328432 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.328803 #16243] INFO -- py3-windows-10-1809: ID: windows.module.status.uptime +I, [2020-03-06T13:03:34.329184 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.329539 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.329978 #16243] INFO -- py3-windows-10-1809: Comment: status.uptime: 0:01:36.784096 +I, [2020-03-06T13:03:34.330383 #16243] INFO -- py3-windows-10-1809: Started: 10:01:02.752777 +I, [2020-03-06T13:03:34.330728 #16243] INFO -- py3-windows-10-1809: Duration: 31.319 ms +I, [2020-03-06T13:03:34.331095 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.331478 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.331852 #16243] INFO -- py3-windows-10-1809: status.uptime: +I, [2020-03-06T13:03:34.332226 #16243] INFO -- py3-windows-10-1809: 0:01:36.784096 +I, [2020-03-06T13:03:34.332597 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.333008 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T13:03:34.333420 #16243] INFO -- py3-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:03:34.333816 #16243] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers +I, [2020-03-06T13:03:34.334268 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.334754 #16243] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:03:34.335244 #16243] INFO -- py3-windows-10-1809: Started: 10:01:02.799859 +I, [2020-03-06T13:03:34.335724 #16243] INFO -- py3-windows-10-1809: Duration: 1780.163 ms +I, [2020-03-06T13:03:34.336219 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.336699 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.337181 #16243] INFO -- py3-windows-10-1809: pid: +I, [2020-03-06T13:03:34.337632 #16243] INFO -- py3-windows-10-1809: 6804 +I, [2020-03-06T13:03:34.338130 #16243] INFO -- py3-windows-10-1809: retcode: +I, [2020-03-06T13:03:34.338610 #16243] INFO -- py3-windows-10-1809: 0 +I, [2020-03-06T13:03:34.339067 #16243] INFO -- py3-windows-10-1809: stderr: +I, [2020-03-06T13:03:34.339466 #16243] INFO -- py3-windows-10-1809: stdout: +I, [2020-03-06T13:03:34.339878 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.340420 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T13:03:34.340962 #16243] INFO -- py3-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:03:34.341417 #16243] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers +I, [2020-03-06T13:03:34.341823 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.342307 #16243] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:03:34.342752 #16243] INFO -- py3-windows-10-1809: Started: 10:01:04.581042 +I, [2020-03-06T13:03:34.349745 #16243] INFO -- py3-windows-10-1809: Duration: 1405.818 ms +I, [2020-03-06T13:03:34.350297 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.350806 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.351228 #16243] INFO -- py3-windows-10-1809: pid: +I, [2020-03-06T13:03:34.351628 #16243] INFO -- py3-windows-10-1809: 6580 +I, [2020-03-06T13:03:34.352060 #16243] INFO -- py3-windows-10-1809: retcode: +I, [2020-03-06T13:03:34.352506 #16243] INFO -- py3-windows-10-1809: 0 +I, [2020-03-06T13:03:34.352916 #16243] INFO -- py3-windows-10-1809: stderr: +I, [2020-03-06T13:03:34.353325 #16243] INFO -- py3-windows-10-1809: stdout: +I, [2020-03-06T13:03:34.353750 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.354129 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T13:03:34.354510 #16243] INFO -- py3-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:03:34.354907 #16243] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers +I, [2020-03-06T13:03:34.355365 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.355885 #16243] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:03:34.356369 #16243] INFO -- py3-windows-10-1809: Started: 10:01:05.986860 +I, [2020-03-06T13:03:34.356851 #16243] INFO -- py3-windows-10-1809: Duration: 1453.117 ms +I, [2020-03-06T13:03:34.357308 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.357812 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.358297 #16243] INFO -- py3-windows-10-1809: pid: +I, [2020-03-06T13:03:34.358718 #16243] INFO -- py3-windows-10-1809: 1388 +I, [2020-03-06T13:03:34.359086 #16243] INFO -- py3-windows-10-1809: retcode: +I, [2020-03-06T13:03:34.359450 #16243] INFO -- py3-windows-10-1809: 0 +I, [2020-03-06T13:03:34.359816 #16243] INFO -- py3-windows-10-1809: stderr: +I, [2020-03-06T13:03:34.360215 #16243] INFO -- py3-windows-10-1809: stdout: +I, [2020-03-06T13:03:34.360593 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.360981 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T13:03:34.361347 #16243] INFO -- py3-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:03:34.361734 #16243] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers +I, [2020-03-06T13:03:34.362083 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.362482 #16243] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:03:34.362847 #16243] INFO -- py3-windows-10-1809: Started: 10:01:07.439977 +I, [2020-03-06T13:03:34.363216 #16243] INFO -- py3-windows-10-1809: Duration: 1315.772 ms +I, [2020-03-06T13:03:34.363590 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.363938 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.364318 #16243] INFO -- py3-windows-10-1809: pid: +I, [2020-03-06T13:03:34.364725 #16243] INFO -- py3-windows-10-1809: 7036 +I, [2020-03-06T13:03:34.365192 #16243] INFO -- py3-windows-10-1809: retcode: +I, [2020-03-06T13:03:34.365685 #16243] INFO -- py3-windows-10-1809: 0 +I, [2020-03-06T13:03:34.366153 #16243] INFO -- py3-windows-10-1809: stderr: +I, [2020-03-06T13:03:34.366632 #16243] INFO -- py3-windows-10-1809: stdout: +I, [2020-03-06T13:03:34.367085 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.367602 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal +I, [2020-03-06T13:03:34.368076 #16243] INFO -- py3-windows-10-1809: Function: cmd.run +I, [2020-03-06T13:03:34.368624 #16243] INFO -- py3-windows-10-1809: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers +I, [2020-03-06T13:03:34.369153 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.369755 #16243] INFO -- py3-windows-10-1809: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run +I, [2020-03-06T13:03:34.370287 #16243] INFO -- py3-windows-10-1809: Started: 10:01:08.755749 +I, [2020-03-06T13:03:34.370751 #16243] INFO -- py3-windows-10-1809: Duration: 1345.147 ms +I, [2020-03-06T13:03:34.371140 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.371516 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.372002 #16243] INFO -- py3-windows-10-1809: pid: +I, [2020-03-06T13:03:34.372495 #16243] INFO -- py3-windows-10-1809: 2036 +I, [2020-03-06T13:03:34.372931 #16243] INFO -- py3-windows-10-1809: retcode: +I, [2020-03-06T13:03:34.373368 #16243] INFO -- py3-windows-10-1809: 0 +I, [2020-03-06T13:03:34.373762 #16243] INFO -- py3-windows-10-1809: stderr: +I, [2020-03-06T13:03:34.374162 #16243] INFO -- py3-windows-10-1809: stdout: +I, [2020-03-06T13:03:34.374539 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.374942 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:03:34.375437 #16243] INFO -- py3-windows-10-1809: Function: reg.present +I, [2020-03-06T13:03:34.375925 #16243] INFO -- py3-windows-10-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:03:34.376440 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.376959 #16243] INFO -- py3-windows-10-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:03:34.377395 #16243] INFO -- py3-windows-10-1809: Started: 10:01:10.100896 +I, [2020-03-06T13:03:34.377810 #16243] INFO -- py3-windows-10-1809: Duration: 12151.647 ms +I, [2020-03-06T13:03:34.378204 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.378578 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.378967 #16243] INFO -- py3-windows-10-1809: reg: +I, [2020-03-06T13:03:34.379331 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.379790 #16243] INFO -- py3-windows-10-1809: Added: +I, [2020-03-06T13:03:34.380168 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.380556 #16243] INFO -- py3-windows-10-1809: Entry: +I, [2020-03-06T13:03:34.380958 #16243] INFO -- py3-windows-10-1809: SystemDefaultTlsVersions +I, [2020-03-06T13:03:34.381335 #16243] INFO -- py3-windows-10-1809: Inheritance: +I, [2020-03-06T13:03:34.381718 #16243] INFO -- py3-windows-10-1809: True +I, [2020-03-06T13:03:34.382119 #16243] INFO -- py3-windows-10-1809: Key: +I, [2020-03-06T13:03:34.382502 #16243] INFO -- py3-windows-10-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:03:34.382898 #16243] INFO -- py3-windows-10-1809: Owner: +I, [2020-03-06T13:03:34.383269 #16243] INFO -- py3-windows-10-1809: None +I, [2020-03-06T13:03:34.383648 #16243] INFO -- py3-windows-10-1809: Perms: +I, [2020-03-06T13:03:34.384060 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.384436 #16243] INFO -- py3-windows-10-1809: Deny: +I, [2020-03-06T13:03:34.384838 #16243] INFO -- py3-windows-10-1809: None +I, [2020-03-06T13:03:34.385240 #16243] INFO -- py3-windows-10-1809: Grant: +I, [2020-03-06T13:03:34.385644 #16243] INFO -- py3-windows-10-1809: None +I, [2020-03-06T13:03:34.386039 #16243] INFO -- py3-windows-10-1809: Value: +I, [2020-03-06T13:03:34.386411 #16243] INFO -- py3-windows-10-1809: 1 +I, [2020-03-06T13:03:34.386794 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.387192 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:03:34.388310 #16243] INFO -- py3-windows-10-1809: Function: reg.present +I, [2020-03-06T13:03:34.388843 #16243] INFO -- py3-windows-10-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:03:34.389240 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.389636 #16243] INFO -- py3-windows-10-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:03:34.390033 #16243] INFO -- py3-windows-10-1809: Started: 10:01:22.252543 +I, [2020-03-06T13:03:34.390410 #16243] INFO -- py3-windows-10-1809: Duration: 187.844 ms +I, [2020-03-06T13:03:34.390785 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.391150 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.391519 #16243] INFO -- py3-windows-10-1809: reg: +I, [2020-03-06T13:03:34.391917 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.392294 #16243] INFO -- py3-windows-10-1809: Added: +I, [2020-03-06T13:03:34.392686 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.393064 #16243] INFO -- py3-windows-10-1809: Entry: +I, [2020-03-06T13:03:34.393455 #16243] INFO -- py3-windows-10-1809: SystemDefaultTlsVersions +I, [2020-03-06T13:03:34.393855 #16243] INFO -- py3-windows-10-1809: Inheritance: +I, [2020-03-06T13:03:34.394234 #16243] INFO -- py3-windows-10-1809: True +I, [2020-03-06T13:03:34.394628 #16243] INFO -- py3-windows-10-1809: Key: +I, [2020-03-06T13:03:34.395017 #16243] INFO -- py3-windows-10-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:03:34.395399 #16243] INFO -- py3-windows-10-1809: Owner: +I, [2020-03-06T13:03:34.395798 #16243] INFO -- py3-windows-10-1809: None +I, [2020-03-06T13:03:34.396174 #16243] INFO -- py3-windows-10-1809: Perms: +I, [2020-03-06T13:03:34.396564 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.396932 #16243] INFO -- py3-windows-10-1809: Deny: +I, [2020-03-06T13:03:34.397304 #16243] INFO -- py3-windows-10-1809: None +I, [2020-03-06T13:03:34.397704 #16243] INFO -- py3-windows-10-1809: Grant: +I, [2020-03-06T13:03:34.398077 #16243] INFO -- py3-windows-10-1809: None +I, [2020-03-06T13:03:34.398445 #16243] INFO -- py3-windows-10-1809: Value: +I, [2020-03-06T13:03:34.398832 #16243] INFO -- py3-windows-10-1809: 1 +I, [2020-03-06T13:03:34.399189 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.399576 #16243] INFO -- py3-windows-10-1809: ID: manually.update_git_repo-ng +I, [2020-03-06T13:03:34.399948 #16243] INFO -- py3-windows-10-1809: Function: archive.extracted +I, [2020-03-06T13:03:34.400324 #16243] INFO -- py3-windows-10-1809: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:03:34.400718 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.401210 #16243] INFO -- py3-windows-10-1809: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:03:34.401660 #16243] INFO -- py3-windows-10-1809: Started: 10:01:22.440387 +I, [2020-03-06T13:03:34.402139 #16243] INFO -- py3-windows-10-1809: Duration: 796.914 ms +I, [2020-03-06T13:03:34.402612 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.403058 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.403542 #16243] INFO -- py3-windows-10-1809: directories_created: +I, [2020-03-06T13:03:34.404018 #16243] INFO -- py3-windows-10-1809: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:03:34.404495 #16243] INFO -- py3-windows-10-1809: extracted_files: +I, [2020-03-06T13:03:34.404957 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ +I, [2020-03-06T13:03:34.405439 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:03:34.405898 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:03:34.406383 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:03:34.406847 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:03:34.407320 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:03:34.407805 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:03:34.408265 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:03:34.408751 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:03:34.409219 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:03:34.409757 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:03:34.410275 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:03:34.410770 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:03:34.411273 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:03:34.411746 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:03:34.412240 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:03:34.412713 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:03:34.413216 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:03:34.413686 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:03:34.414157 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:03:34.414617 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:03:34.415048 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:03:34.415511 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:03:34.415980 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:03:34.416474 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:03:34.416951 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:03:34.417437 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:03:34.417907 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:03:34.418420 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:03:34.418966 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:03:34.419521 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:03:34.420008 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:03:34.420462 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:03:34.420887 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:03:34.421305 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:03:34.421786 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:03:34.422332 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:03:34.422855 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:03:34.423368 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:03:34.423850 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:03:34.424287 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:03:34.424729 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:03:34.425196 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:03:34.425622 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:03:34.426038 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:03:34.426445 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:03:34.426917 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:03:34.427312 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:03:34.427721 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:03:34.428207 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:03:34.428672 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:03:34.429174 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:03:34.429658 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:03:34.430185 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:03:34.430693 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:03:34.431209 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:03:34.431693 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:03:34.432210 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:03:34.432643 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:03:34.433124 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:03:34.433615 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:03:34.434135 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:03:34.434650 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:03:34.435174 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:03:34.435634 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:03:34.436047 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:03:34.436443 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:03:34.436906 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:03:34.437317 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:03:34.437758 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:03:34.438170 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:03:34.438618 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:03:34.439035 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:03:34.439430 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:03:34.439894 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:03:34.440392 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:03:34.440912 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:03:34.441418 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:03:34.441971 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:03:34.442492 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:03:34.443050 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:03:34.443550 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:03:34.443967 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:03:34.444440 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:03:34.444809 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:03:34.445244 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:03:34.445709 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:03:34.446168 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:03:34.446625 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:03:34.447017 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:03:34.447420 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:03:34.447814 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:03:34.448264 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:03:34.448671 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:03:34.449165 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:03:34.449648 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:03:34.450062 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:03:34.450503 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:03:34.450939 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:03:34.451399 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:03:34.451771 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:03:34.452242 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:03:34.452656 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:03:34.453120 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:03:34.453566 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:03:34.454011 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:03:34.454416 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:03:34.454890 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:03:34.455318 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:03:34.455728 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:03:34.456152 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:03:34.456568 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:03:34.457000 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:03:34.457368 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:03:34.464045 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:03:34.464668 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:03:34.465195 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:03:34.465704 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:03:34.466271 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:03:34.466833 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:03:34.467378 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:03:34.467854 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:03:34.468292 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:03:34.468760 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:03:34.469269 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:03:34.469709 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:03:34.470122 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:03:34.470551 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:03:34.471055 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:03:34.471601 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:03:34.472151 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:03:34.472688 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:03:34.473279 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:03:34.473776 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:03:34.474193 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:03:34.474647 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:03:34.475201 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:03:34.475785 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:03:34.476359 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:03:34.476950 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:03:34.477429 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:03:34.477831 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:03:34.478296 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:03:34.478762 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:03:34.479196 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:03:34.479642 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:03:34.480058 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:03:34.480646 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:03:34.481305 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:03:34.481879 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:03:34.482408 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:03:34.482983 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:03:34.483592 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:03:34.484179 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:03:34.484710 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:03:34.485205 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:03:34.485726 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:03:34.486204 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:03:34.486689 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:03:34.487128 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:03:34.487591 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:03:34.488032 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:03:34.488489 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:03:34.488926 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:03:34.489376 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:03:34.489807 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:03:34.490231 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:03:34.490674 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:03:34.491114 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:03:34.491569 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:03:34.493417 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:03:34.494131 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:03:34.494712 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:03:34.495304 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:03:34.495851 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:03:34.496448 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:03:34.497024 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:03:34.497621 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:03:34.498237 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:03:34.498829 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:03:34.499469 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:03:34.500146 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:03:34.500805 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:03:34.501440 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:03:34.501958 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:03:34.502521 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:03:34.503027 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:03:34.503491 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:03:34.503978 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:03:34.504427 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:03:34.504862 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:03:34.505339 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:03:34.505834 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:03:34.506329 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:03:34.506795 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:03:34.507309 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:03:34.507821 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:03:34.508362 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:03:34.508909 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:03:34.509416 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:03:34.509851 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:03:34.510287 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:03:34.510739 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:03:34.511127 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:03:34.511493 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:03:34.511948 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:03:34.512410 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:03:34.512811 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:03:34.513162 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:03:34.513585 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:03:34.514039 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:03:34.514469 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:03:34.514911 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:03:34.515393 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:03:34.515879 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:03:34.516333 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:03:34.516769 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:03:34.517182 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:03:34.517613 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:03:34.518057 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:03:34.518529 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:03:34.518979 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:03:34.519587 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:03:34.520374 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:03:34.521098 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:03:34.521841 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:03:34.522500 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:03:34.523297 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:03:34.524185 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:03:34.524876 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:03:34.525407 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:03:34.525941 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:03:34.526487 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:03:34.527083 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:03:34.527696 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:03:34.528278 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:03:34.528891 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:03:34.529377 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:03:34.529824 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:03:34.530250 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:03:34.530713 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:03:34.531099 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:03:34.531466 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:03:34.531890 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:03:34.532368 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:03:34.532743 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:03:34.533135 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:03:34.533520 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:03:34.533929 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:03:34.534298 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:03:34.534645 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:03:34.535005 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:03:34.535533 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:03:34.535976 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:03:34.536433 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:03:34.536852 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:03:34.537287 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:03:34.537729 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:03:34.538184 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:03:34.538597 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:03:34.539018 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:03:34.539452 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:03:34.539885 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:03:34.540312 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:03:34.540739 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:03:34.541274 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:03:34.541784 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:03:34.542284 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:03:34.542715 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:03:34.543157 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:03:34.543575 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:03:34.544003 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:03:34.544413 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:03:34.544827 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:03:34.545254 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:03:34.545676 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:03:34.546109 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:03:34.546534 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:03:34.546959 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:03:34.547367 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:03:34.547783 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:03:34.548205 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:03:34.548615 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:03:34.549046 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:03:34.549459 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:03:34.549924 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:03:34.550392 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:03:34.550853 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:03:34.551302 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:03:34.551751 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:03:34.552240 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:03:34.552763 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:03:34.553328 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:03:34.553878 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:03:34.554402 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:03:34.554975 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:03:34.555501 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:03:34.556029 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:03:34.556526 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:03:34.557041 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:03:34.557566 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:03:34.558103 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:03:34.558642 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:03:34.559220 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:03:34.559756 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:03:34.560286 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:03:34.560852 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:03:34.561369 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:03:34.561908 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:03:34.562417 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:03:34.562977 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:03:34.563523 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:03:34.663162 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:03:34.663770 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:03:34.664388 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:03:34.664833 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:03:34.665275 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:03:34.665759 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:03:34.666216 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:03:34.666616 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:03:34.667125 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:03:34.667615 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:03:34.668069 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:03:34.668546 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:03:34.669092 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:03:34.669584 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:03:34.670028 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:03:34.670410 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:03:34.671078 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:03:34.671991 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:03:34.672931 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:03:34.674097 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:03:34.675250 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:03:34.675986 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:03:34.676757 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:03:34.677401 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:03:34.678653 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:03:34.679795 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:03:34.680614 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:03:34.681436 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:03:34.682558 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:03:34.683644 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:03:34.684351 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:03:34.685080 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:03:34.685754 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:03:34.686375 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:03:34.687196 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:03:34.687874 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:03:34.688499 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:03:34.689110 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:03:34.689729 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:03:34.690298 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:03:34.690875 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:03:34.691417 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:03:34.691966 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:03:34.692556 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:03:34.693139 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:03:34.693723 #16243] INFO -- py3-windows-10-1809: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:03:34.694258 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.694843 #16243] INFO -- py3-windows-10-1809: ID: rename-extract +I, [2020-03-06T13:03:34.695691 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.696350 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.696923 #16243] INFO -- py3-windows-10-1809: Comment: file.rename: True +I, [2020-03-06T13:03:34.697495 #16243] INFO -- py3-windows-10-1809: Started: 10:01:23.237301 +I, [2020-03-06T13:03:34.698058 #16243] INFO -- py3-windows-10-1809: Duration: 16.452 ms +I, [2020-03-06T13:03:34.698835 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.699535 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.700030 #16243] INFO -- py3-windows-10-1809: file.rename: +I, [2020-03-06T13:03:34.700599 #16243] INFO -- py3-windows-10-1809: True +I, [2020-03-06T13:03:34.701205 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.701781 #16243] INFO -- py3-windows-10-1809: ID: pkg.refresh_db +I, [2020-03-06T13:03:34.702238 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.702780 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.703307 #16243] INFO -- py3-windows-10-1809: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:03:34.703776 #16243] INFO -- py3-windows-10-1809: Started: 10:01:23.253753 +I, [2020-03-06T13:03:34.704191 #16243] INFO -- py3-windows-10-1809: Duration: 8014.847 ms +I, [2020-03-06T13:03:34.704557 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.705060 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.705850 #16243] INFO -- py3-windows-10-1809: pkg.refresh_db: +I, [2020-03-06T13:03:34.706455 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.707057 #16243] INFO -- py3-windows-10-1809: failed: +I, [2020-03-06T13:03:34.707576 #16243] INFO -- py3-windows-10-1809: 0 +I, [2020-03-06T13:03:34.708110 #16243] INFO -- py3-windows-10-1809: success: +I, [2020-03-06T13:03:34.708645 #16243] INFO -- py3-windows-10-1809: 298 +I, [2020-03-06T13:03:34.709208 #16243] INFO -- py3-windows-10-1809: total: +I, [2020-03-06T13:03:34.709791 #16243] INFO -- py3-windows-10-1809: 298 +I, [2020-03-06T13:03:34.710322 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.710933 #16243] INFO -- py3-windows-10-1809: ID: kdiff3 +I, [2020-03-06T13:03:34.711344 #16243] INFO -- py3-windows-10-1809: Function: pkg.installed +I, [2020-03-06T13:03:34.711877 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.712373 #16243] INFO -- py3-windows-10-1809: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:03:34.712767 #16243] INFO -- py3-windows-10-1809: Started: 10:01:31.290777 +I, [2020-03-06T13:03:34.713260 #16243] INFO -- py3-windows-10-1809: Duration: 7336.753 ms +I, [2020-03-06T13:03:34.713790 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.714228 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.714765 #16243] INFO -- py3-windows-10-1809: kdiff3: +I, [2020-03-06T13:03:34.715345 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.716007 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.717068 #16243] INFO -- py3-windows-10-1809: Not Found +I, [2020-03-06T13:03:34.717605 #16243] INFO -- py3-windows-10-1809: old: +I, [2020-03-06T13:03:34.717976 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.718464 #16243] INFO -- py3-windows-10-1809: ID: 7zip +I, [2020-03-06T13:03:34.719184 #16243] INFO -- py3-windows-10-1809: Function: pkg.installed +I, [2020-03-06T13:03:34.719891 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.720522 #16243] INFO -- py3-windows-10-1809: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:03:34.721071 #16243] INFO -- py3-windows-10-1809: Started: 10:01:38.658956 +I, [2020-03-06T13:03:34.721606 #16243] INFO -- py3-windows-10-1809: Duration: 13141.012 ms +I, [2020-03-06T13:03:34.722083 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.722579 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.723129 #16243] INFO -- py3-windows-10-1809: 7zip: +I, [2020-03-06T13:03:34.723580 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.724054 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.724566 #16243] INFO -- py3-windows-10-1809: 18.06.00.0 +I, [2020-03-06T13:03:34.725050 #16243] INFO -- py3-windows-10-1809: old: +I, [2020-03-06T13:03:34.725471 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.725941 #16243] INFO -- py3-windows-10-1809: ID: git +I, [2020-03-06T13:03:34.726502 #16243] INFO -- py3-windows-10-1809: Function: pkg.installed +I, [2020-03-06T13:03:34.727043 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.727603 #16243] INFO -- py3-windows-10-1809: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:03:34.728162 #16243] INFO -- py3-windows-10-1809: Started: 10:01:51.861965 +I, [2020-03-06T13:03:34.728678 #16243] INFO -- py3-windows-10-1809: Duration: 43346.061 ms +I, [2020-03-06T13:03:34.729146 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.729619 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.730101 #16243] INFO -- py3-windows-10-1809: git: +I, [2020-03-06T13:03:34.730639 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.731207 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.731799 #16243] INFO -- py3-windows-10-1809: 2.23.0.windows.1 +I, [2020-03-06T13:03:34.732354 #16243] INFO -- py3-windows-10-1809: old: +I, [2020-03-06T13:03:34.732791 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.733280 #16243] INFO -- py3-windows-10-1809: ID: windows_environment.refresh.path +I, [2020-03-06T13:03:34.733701 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.734157 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.734709 #16243] INFO -- py3-windows-10-1809: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:03:34.735204 #16243] INFO -- py3-windows-10-1809: Started: 10:02:35.221481 +I, [2020-03-06T13:03:34.735605 #16243] INFO -- py3-windows-10-1809: Duration: 62.276 ms +I, [2020-03-06T13:03:34.736033 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.736512 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.736957 #16243] INFO -- py3-windows-10-1809: windows_environment.refresh: +I, [2020-03-06T13:03:34.737403 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.737956 #16243] INFO -- py3-windows-10-1809: PATH: +I, [2020-03-06T13:03:34.738556 #16243] INFO -- py3-windows-10-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:03:34.739157 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.739734 #16243] INFO -- py3-windows-10-1809: ID: chocolatey.bootstrap +I, [2020-03-06T13:03:34.740358 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.740927 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.741512 #16243] INFO -- py3-windows-10-1809: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:03:34.742029 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.742637 #16243] INFO -- py3-windows-10-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:03:34.743184 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.743770 #16243] INFO -- py3-windows-10-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:03:34.744254 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.744876 #16243] INFO -- py3-windows-10-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:03:34.745411 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.746072 #16243] INFO -- py3-windows-10-1809: Installing chocolatey on this machine +I, [2020-03-06T13:03:34.746602 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.747221 #16243] INFO -- py3-windows-10-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:03:34.747834 #16243] INFO -- py3-windows-10-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:03:34.748357 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.748925 #16243] INFO -- py3-windows-10-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:03:34.749513 #16243] INFO -- py3-windows-10-1809: before you can use choco. +I, [2020-03-06T13:03:34.750097 #16243] INFO -- py3-windows-10-1809: Restricting write permissions to Administrators +I, [2020-03-06T13:03:34.750666 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.751251 #16243] INFO -- py3-windows-10-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:03:34.751774 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.752389 #16243] INFO -- py3-windows-10-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:03:34.753176 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.753847 #16243] INFO -- py3-windows-10-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:03:34.754532 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.755015 #16243] INFO -- py3-windows-10-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:03:34.755402 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.755909 #16243] INFO -- py3-windows-10-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:03:34.756287 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.764192 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.764824 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.765640 #16243] INFO -- py3-windows-10-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:03:34.766166 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.766768 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.767331 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.767888 #16243] INFO -- py3-windows-10-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:03:34.768369 #16243] INFO -- py3-windows-10-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:03:34.768879 #16243] INFO -- py3-windows-10-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:03:34.769418 #16243] INFO -- py3-windows-10-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:03:34.769914 #16243] INFO -- py3-windows-10-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:03:34.770476 #16243] INFO -- py3-windows-10-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:03:34.771019 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.771675 #16243] INFO -- py3-windows-10-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:03:34.772234 #16243] INFO -- py3-windows-10-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:03:34.772644 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.773122 #16243] INFO -- py3-windows-10-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:03:34.773639 #16243] INFO -- py3-windows-10-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:03:34.774060 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.774486 #16243] INFO -- py3-windows-10-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:03:34.774925 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.775461 #16243] INFO -- py3-windows-10-1809: Run choco /? for a list of functions. +I, [2020-03-06T13:03:34.775960 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.776493 #16243] INFO -- py3-windows-10-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:03:34.776978 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.777548 #16243] INFO -- py3-windows-10-1809: first prior to using choco. +I, [2020-03-06T13:03:34.778052 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.778610 #16243] INFO -- py3-windows-10-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:03:34.779135 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.779709 #16243] INFO -- py3-windows-10-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:03:34.780319 #16243] INFO -- py3-windows-10-1809: Started: 10:02:35.283757 +I, [2020-03-06T13:03:34.780910 #16243] INFO -- py3-windows-10-1809: Duration: 30515.869 ms +I, [2020-03-06T13:03:34.781450 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.782032 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.782612 #16243] INFO -- py3-windows-10-1809: chocolatey.bootstrap: +I, [2020-03-06T13:03:34.783242 #16243] INFO -- py3-windows-10-1809: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:03:34.783902 #16243] INFO -- py3-windows-10-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:03:34.784440 #16243] INFO -- py3-windows-10-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:03:34.785123 #16243] INFO -- py3-windows-10-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:03:34.785595 #16243] INFO -- py3-windows-10-1809: Installing chocolatey on this machine +I, [2020-03-06T13:03:34.786200 #16243] INFO -- py3-windows-10-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:03:34.786816 #16243] INFO -- py3-windows-10-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:03:34.787390 #16243] INFO -- py3-windows-10-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:03:34.787972 #16243] INFO -- py3-windows-10-1809: before you can use choco. +I, [2020-03-06T13:03:34.788544 #16243] INFO -- py3-windows-10-1809: Restricting write permissions to Administrators +I, [2020-03-06T13:03:34.789152 #16243] INFO -- py3-windows-10-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:03:34.789767 #16243] INFO -- py3-windows-10-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:03:34.790344 #16243] INFO -- py3-windows-10-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:03:34.790938 #16243] INFO -- py3-windows-10-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:03:34.791509 #16243] INFO -- py3-windows-10-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:03:34.792059 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.792540 #16243] INFO -- py3-windows-10-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:03:34.793034 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.793646 #16243] INFO -- py3-windows-10-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:03:34.794222 #16243] INFO -- py3-windows-10-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:03:34.794832 #16243] INFO -- py3-windows-10-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:03:34.795429 #16243] INFO -- py3-windows-10-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:03:34.796028 #16243] INFO -- py3-windows-10-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:03:34.796596 #16243] INFO -- py3-windows-10-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:03:34.797110 #16243] INFO -- py3-windows-10-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:03:34.797618 #16243] INFO -- py3-windows-10-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:03:34.798183 #16243] INFO -- py3-windows-10-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:03:34.798774 #16243] INFO -- py3-windows-10-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:03:34.799375 #16243] INFO -- py3-windows-10-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:03:34.799985 #16243] INFO -- py3-windows-10-1809: Run choco /? for a list of functions. +I, [2020-03-06T13:03:34.800512 #16243] INFO -- py3-windows-10-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:03:34.800948 #16243] INFO -- py3-windows-10-1809: first prior to using choco. +I, [2020-03-06T13:03:34.801419 #16243] INFO -- py3-windows-10-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:03:34.801867 #16243] INFO -- py3-windows-10-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:03:34.802330 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.802798 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:03:34.803240 #16243] INFO -- py3-windows-10-1809: Function: chocolatey.installed +I, [2020-03-06T13:03:34.803665 #16243] INFO -- py3-windows-10-1809: Name: notepadplusplus +I, [2020-03-06T13:03:34.804085 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.804529 #16243] INFO -- py3-windows-10-1809: Comment: +I, [2020-03-06T13:03:34.805022 #16243] INFO -- py3-windows-10-1809: Started: 10:03:05.799626 +I, [2020-03-06T13:03:34.805578 #16243] INFO -- py3-windows-10-1809: Duration: 14313.23 ms +I, [2020-03-06T13:03:34.806090 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.806559 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.806993 #16243] INFO -- py3-windows-10-1809: notepadplusplus: +I, [2020-03-06T13:03:34.807427 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.807925 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.808399 #16243] INFO -- py3-windows-10-1809: - 7.8.5 +I, [2020-03-06T13:03:34.808852 #16243] INFO -- py3-windows-10-1809: old: +I, [2020-03-06T13:03:34.809362 #16243] INFO -- py3-windows-10-1809: notepadplusplus.install: +I, [2020-03-06T13:03:34.809819 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.810228 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.810689 #16243] INFO -- py3-windows-10-1809: - 7.8.5 +I, [2020-03-06T13:03:34.811224 #16243] INFO -- py3-windows-10-1809: old: +I, [2020-03-06T13:03:34.811706 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.812221 #16243] INFO -- py3-windows-10-1809: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:03:34.812687 #16243] INFO -- py3-windows-10-1809: Function: chocolatey.installed +I, [2020-03-06T13:03:34.813161 #16243] INFO -- py3-windows-10-1809: Name: windirstat +I, [2020-03-06T13:03:34.813622 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.814089 #16243] INFO -- py3-windows-10-1809: Comment: +I, [2020-03-06T13:03:34.814544 #16243] INFO -- py3-windows-10-1809: Started: 10:03:20.112856 +I, [2020-03-06T13:03:34.815050 #16243] INFO -- py3-windows-10-1809: Duration: 6983.766 ms +I, [2020-03-06T13:03:34.815648 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.816246 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.817049 #16243] INFO -- py3-windows-10-1809: windirstat: +I, [2020-03-06T13:03:34.817740 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.818329 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.818956 #16243] INFO -- py3-windows-10-1809: - 1.1.2.20161210 +I, [2020-03-06T13:03:34.819442 #16243] INFO -- py3-windows-10-1809: old: +I, [2020-03-06T13:03:34.819921 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.820436 #16243] INFO -- py3-windows-10-1809: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T13:03:34.820997 #16243] INFO -- py3-windows-10-1809: Function: dism.feature_installed +I, [2020-03-06T13:03:34.821523 #16243] INFO -- py3-windows-10-1809: Name: TelnetClient +I, [2020-03-06T13:03:34.822086 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.822640 #16243] INFO -- py3-windows-10-1809: Comment: Installed TelnetClient +I, [2020-03-06T13:03:34.823152 #16243] INFO -- py3-windows-10-1809: Started: 10:03:27.096622 +I, [2020-03-06T13:03:34.823614 #16243] INFO -- py3-windows-10-1809: Duration: 6328.323 ms +I, [2020-03-06T13:03:34.824092 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.824565 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.825149 #16243] INFO -- py3-windows-10-1809: feature: +I, [2020-03-06T13:03:34.825742 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.826302 #16243] INFO -- py3-windows-10-1809: new: +I, [2020-03-06T13:03:34.826880 #16243] INFO -- py3-windows-10-1809: - TelnetClient +I, [2020-03-06T13:03:34.827432 #16243] INFO -- py3-windows-10-1809: pid: +I, [2020-03-06T13:03:34.827996 #16243] INFO -- py3-windows-10-1809: 2840 +I, [2020-03-06T13:03:34.828548 #16243] INFO -- py3-windows-10-1809: retcode: +I, [2020-03-06T13:03:34.829111 #16243] INFO -- py3-windows-10-1809: 0 +I, [2020-03-06T13:03:34.829664 #16243] INFO -- py3-windows-10-1809: stderr: +I, [2020-03-06T13:03:34.830213 #16243] INFO -- py3-windows-10-1809: stdout: +I, [2020-03-06T13:03:34.830761 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.831300 #16243] INFO -- py3-windows-10-1809: ID: windows.module.system.reboot +I, [2020-03-06T13:03:34.831920 #16243] INFO -- py3-windows-10-1809: Function: module.run +I, [2020-03-06T13:03:34.832485 #16243] INFO -- py3-windows-10-1809: Result: True +I, [2020-03-06T13:03:34.833061 #16243] INFO -- py3-windows-10-1809: Comment: system.reboot: True +I, [2020-03-06T13:03:34.833612 #16243] INFO -- py3-windows-10-1809: Started: 10:03:33.424945 +I, [2020-03-06T13:03:34.834183 #16243] INFO -- py3-windows-10-1809: Duration: 265.69 ms +I, [2020-03-06T13:03:34.834768 #16243] INFO -- py3-windows-10-1809: Changes: +I, [2020-03-06T13:03:34.835350 #16243] INFO -- py3-windows-10-1809: ---------- +I, [2020-03-06T13:03:34.835978 #16243] INFO -- py3-windows-10-1809: system.reboot: +I, [2020-03-06T13:03:34.836579 #16243] INFO -- py3-windows-10-1809: True +I, [2020-03-06T13:03:34.837112 #16243] INFO -- py3-windows-10-1809: +I, [2020-03-06T13:03:34.837696 #16243] INFO -- py3-windows-10-1809: Summary for local +I, [2020-03-06T13:03:34.838211 #16243] INFO -- py3-windows-10-1809: ------------- +I, [2020-03-06T13:03:34.838732 #16243] INFO -- py3-windows-10-1809: Succeeded: 25 (changed=25) +I, [2020-03-06T13:03:34.839208 #16243] INFO -- py3-windows-10-1809: Failed: 0 +I, [2020-03-06T13:03:34.839716 #16243] INFO -- py3-windows-10-1809: ------------- +I, [2020-03-06T13:03:34.840183 #16243] INFO -- py3-windows-10-1809: Total states run: 25 +I, [2020-03-06T13:03:34.840692 #16243] INFO -- py3-windows-10-1809: Total run time: 153.636 s +I, [2020-03-06T13:03:34.860079 #16243] INFO -- py3-windows-10-1809: Downloading files from +I, [2020-03-06T13:03:35.038651 #16243] INFO -- py3-windows-10-1809: Finished converging (3m20.31s). +I, [2020-03-06T13:03:35.038884 #16243] INFO -- py3-windows-10-1809: -----> Setting up ... +I, [2020-03-06T13:03:35.041733 #16243] INFO -- py3-windows-10-1809: Finished setting up (0m0.00s). +I, [2020-03-06T13:03:35.042026 #16243] INFO -- py3-windows-10-1809: -----> Verifying ... +I, [2020-03-06T13:03:36.297746 #16243] INFO -- py3-windows-10-1809: Loaded default +I, [2020-03-06T13:04:24.474688 #16243] INFO -- py3-windows-10-1809: Finished verifying (0m49.42s). +I, [2020-03-06T13:04:24.474912 #16243] INFO -- py3-windows-10-1809: Finished testing (5m22.60s). +I, [2020-03-06T13:04:24.477027 #16243] INFO -- py3-windows-10-1809: -----> Destroying ... +I, [2020-03-06T13:04:34.496218 #16243] INFO -- py3-windows-10-1809: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:04:36.245801 #16243] INFO -- py3-windows-10-1809: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:04:36.900954 #16243] INFO -- py3-windows-10-1809: Vagrant instance destroyed. +I, [2020-03-06T13:04:36.902154 #16243] INFO -- py3-windows-10-1809: Finished destroying (0m12.42s). diff --git a/test/results/py3-windows-10-1809.log b/test/results/py3-windows-10-1809.log index 43f165b..c73fb57 100644 --- a/test/results/py3-windows-10-1809.log +++ b/test/results/py3-windows-10-1809.log @@ -1,15 +1,13 @@ -Wed Mar 4 14:58:18 EST 2020 -commit 83df63b728d6440d0a2e75a16942f0c1d8916fb0 +Fri Mar 6 12:58:36 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Author: Peter Mudd -Date: Mon Mar 2 12:13:52 2020 -0500 +Date: Fri Mar 6 12:43:24 2020 -0500 - feat: convert `template-formula` to `windows-formula` - - BREAKING CHANGE: changed all state names and ids + feat: support saltstack 3000 CURRENT BRANCH COMMIT ID -83df63b728d6440d0a2e75a16942f0c1d8916fb0 +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e CURRENT RELEASE TAG -v1.0.1 +v1.0.0 -----> Starting Test Kitchen (v2.3.4) -----> Cleaning up any prior instances of -----> Destroying ... @@ -20,7 +18,7 @@ v1.0.1 ==> default: Cloning VM... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'StefanScherer/windows_10' version '2019.05.15' is up to date... - ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1809-5f29afa0-be00-42ec-92a7-d172a10baf05 + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1809-fa5eee70-1fd8-44fb-85b8-16cbcc0b4cc5 ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat @@ -53,7 +51,7 @@ v1.0.1 [WinRM] Established Vagrant instance created. - Finished creating (1m17.22s). + Finished creating (1m12.84s). -----> Converging ... Preparing files for transfer Preparing salt-minion @@ -69,12 +67,12 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 11:59 AM temp - Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + d----- 3/6/2020 10:00 AM temp + Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe Installing Salt minion Starting the Salt minion service Salt minion successfully installed - You asked for latest and you have 2019.2.3 installed, sweet! + You asked for latest and you have 3000 installed, sweet! @@ -84,7 +82,7 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:00 PM kitchen + d----- 3/6/2020 10:00 AM kitchen Transferring files to @@ -97,13 +95,13 @@ v1.0.1 Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') @@ -122,8 +120,8 @@ v1.0.1 Name: saltstack1 Result: True Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot - Started: 12:00:36.567721 - Duration: 93.704 ms + Started: 10:00:59.861874 + Duration: 94.253 ms Changes: ---------- hostname: @@ -134,8 +132,8 @@ v1.0.1 Name: Saltstack Computer Description Result: True Comment: Computer description successfully changed to 'Saltstack Computer Description' - Started: 12:00:36.661425 - Duration: 2734.509 ms + Started: 10:00:59.956127 + Duration: 2702.672 ms Changes: ---------- new: @@ -147,8 +145,8 @@ v1.0.1 Name: America/New_York Result: True Comment: Set timezone America/New_York - Started: 12:00:39.427226 - Duration: 30.784 ms + Started: 10:01:02.690131 + Duration: 16.423 ms Changes: ---------- timezone: @@ -158,8 +156,8 @@ v1.0.1 Function: module.run Result: True Comment: environ.items: Success - Started: 12:00:39.458010 - Duration: 15.611 ms + Started: 10:01:02.721814 + Duration: 0.0 ms Changes: ---------- environ.items: @@ -249,8 +247,8 @@ v1.0.1 Function: module.run Result: True Comment: user.current: VAGRANT-10\vagrant - Started: 12:00:39.473621 - Duration: 31.802 ms + Started: 10:01:02.721814 + Duration: 30.963 ms Changes: ---------- user.current: @@ -259,25 +257,25 @@ v1.0.1 ID: windows.module.status.uptime Function: module.run Result: True - Comment: status.uptime: 0:01:38.551775 - Started: 12:00:39.505423 - Duration: 46.352 ms + Comment: status.uptime: 0:01:36.784096 + Started: 10:01:02.752777 + Duration: 31.319 ms Changes: ---------- status.uptime: - 0:01:38.551775 + 0:01:36.784096 ---------- ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection Function: cmd.run Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run - Started: 12:00:39.551775 - Duration: 2141.274 ms + Started: 10:01:02.799859 + Duration: 1780.163 ms Changes: ---------- pid: - 3500 + 6804 retcode: 0 stderr: @@ -288,12 +286,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run - Started: 12:00:41.693049 - Duration: 1421.349 ms + Started: 10:01:04.581042 + Duration: 1405.818 ms Changes: ---------- pid: - 3888 + 6580 retcode: 0 stderr: @@ -304,12 +302,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run - Started: 12:00:43.130021 - Duration: 1359.453 ms + Started: 10:01:05.986860 + Duration: 1453.117 ms Changes: ---------- pid: - 6720 + 1388 retcode: 0 stderr: @@ -320,12 +318,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run - Started: 12:00:44.489474 - Duration: 1500.173 ms + Started: 10:01:07.439977 + Duration: 1315.772 ms Changes: ---------- pid: - 7096 + 7036 retcode: 0 stderr: @@ -336,12 +334,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run - Started: 12:00:46.005009 - Duration: 1656.52 ms + Started: 10:01:08.755749 + Duration: 1345.147 ms Changes: ---------- pid: - 64 + 2036 retcode: 0 stderr: @@ -352,8 +350,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:00:47.677267 - Duration: 11093.533 ms + Started: 10:01:10.100896 + Duration: 12151.647 ms Changes: ---------- reg: @@ -382,8 +380,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:00:58.770800 - Duration: 390.422 ms + Started: 10:01:22.252543 + Duration: 187.844 ms Changes: ---------- reg: @@ -412,8 +410,8 @@ v1.0.1 Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng Result: True Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs - Started: 12:00:59.161222 - Duration: 1001.208 ms + Started: 10:01:22.440387 + Duration: 796.914 ms Changes: ---------- directories_created: @@ -782,8 +780,8 @@ v1.0.1 Function: module.run Result: True Comment: file.rename: True - Started: 12:01:00.178586 - Duration: 0.0 ms + Started: 10:01:23.237301 + Duration: 16.452 ms Changes: ---------- file.rename: @@ -793,8 +791,8 @@ v1.0.1 Function: module.run Result: True Comment: check_cmd determined the state succeeded - Started: 12:01:00.178586 - Duration: 9842.413 ms + Started: 10:01:23.253753 + Duration: 8014.847 ms Changes: ---------- pkg.refresh_db: @@ -805,27 +803,13 @@ v1.0.1 298 total: 298 - ---------- - ID: git - Function: pkg.installed - Result: True - Comment: The following packages were installed/updated: git - Started: 12:01:10.039820 - Duration: 17668.179 ms - Changes: - ---------- - git: - ---------- - new: - 2.23.0.windows.1 - old: ---------- ID: kdiff3 Function: pkg.installed Result: True Comment: The following packages were installed/updated: kdiff3 - Started: 12:01:27.723752 - Duration: 12672.727 ms + Started: 10:01:31.290777 + Duration: 7336.753 ms Changes: ---------- kdiff3: @@ -838,8 +822,8 @@ v1.0.1 Function: pkg.installed Result: True Comment: The following packages were installed/updated: 7zip=18.06.00.0 - Started: 12:01:40.411538 - Duration: 12546.659 ms + Started: 10:01:38.658956 + Duration: 13141.012 ms Changes: ---------- 7zip: @@ -847,13 +831,27 @@ v1.0.1 new: 18.06.00.0 old: + ---------- + ID: git + Function: pkg.installed + Result: True + Comment: The following packages were installed/updated: git + Started: 10:01:51.861965 + Duration: 43346.061 ms + Changes: + ---------- + git: + ---------- + new: + 2.23.0.windows.1 + old: ---------- ID: windows_environment.refresh.path Function: module.run Result: True Comment: windows_environment.refresh: Success - Started: 12:01:52.958197 - Duration: 63.015 ms + Started: 10:02:35.221481 + Duration: 62.276 ms Changes: ---------- windows_environment.refresh: @@ -921,8 +919,8 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder - Started: 12:01:53.021212 - Duration: 21062.231 ms + Started: 10:02:35.283757 + Duration: 30515.869 ms Changes: ---------- chocolatey.bootstrap: @@ -966,19 +964,19 @@ v1.0.1 Name: notepadplusplus Result: True Comment: - Started: 12:02:14.083443 - Duration: 16218.783 ms + Started: 10:03:05.799626 + Duration: 14313.23 ms Changes: ---------- notepadplusplus: ---------- new: - - 7.8.4 + - 7.8.5 old: notepadplusplus.install: ---------- new: - - 7.8.4 + - 7.8.5 old: ---------- ID: windows.system.packages.chocolatey.windirstat @@ -986,8 +984,8 @@ v1.0.1 Name: windirstat Result: True Comment: - Started: 12:02:30.302226 - Duration: 9671.869 ms + Started: 10:03:20.112856 + Duration: 6983.766 ms Changes: ---------- windirstat: @@ -1001,16 +999,16 @@ v1.0.1 Name: TelnetClient Result: True Comment: Installed TelnetClient - Started: 12:02:39.974095 - Duration: 7405.986 ms + Started: 10:03:27.096622 + Duration: 6328.323 ms Changes: ---------- feature: ---------- new: - TelnetClient + - TelnetClient pid: - 1340 + 2840 retcode: 0 stderr: @@ -1020,8 +1018,8 @@ v1.0.1 Function: module.run Result: True Comment: system.reboot: True - Started: 12:02:47.396062 - Duration: 531.107 ms + Started: 10:03:33.424945 + Duration: 265.69 ms Changes: ---------- system.reboot: @@ -1033,16 +1031,13 @@ v1.0.1 Failed: 0 ------------- Total states run: 25 - Total run time: 131.200 s + Total run time: 153.636 s Downloading files from - Finished converging (2m53.85s). + Finished converging (3m20.31s). -----> Setting up ... Finished setting up (0m0.00s). -----> Verifying ... Loaded default -`execution expired`, target may be rebooting after highstate. Remaining retries: 20 -`execution expired`, target may be rebooting after highstate. Remaining retries: 19 -`execution expired`, target may be rebooting after highstate. Remaining retries: 18 INFO: Got pillar from the target minion using WinRM. Profile: SaltStack Windows Formula (default) @@ -1083,13 +1078,13 @@ Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 Profile Summary: 9 successful controls, 0 control failures, 1 control skipped Test Summary: 19 successful, 0 failures, 1 skipped - Finished verifying (0m54.67s). + Finished verifying (0m49.42s). + Finished testing (5m22.60s). -----> Destroying ... ==> default: Forcing shutdown of VM... ==> default: Destroying VM and associated drives... Vagrant instance destroyed. - Finished destroying (0m13.97s). - Finished testing (5m19.74s). ------> Test Kitchen is finished. (5m31.91s) + Finished destroying (0m12.42s). +-----> Test Kitchen is finished. (5m53.10s) KITCHEN TEST EXIT CODE 0 diff --git a/test/results/py3-windows-10-1809.salt.log b/test/results/py3-windows-10-1809.salt.log index 2160559..5e9bb0c 100755 --- a/test/results/py3-windows-10-1809.salt.log +++ b/test/results/py3-windows-10-1809.salt.log @@ -1,31 +1,31 @@ -2020-03-04 12:00:27,317 [salt.loader :747 ][DEBUG ][6920] Grains refresh requested. Refreshing grains. -2020-03-04 12:00:27,317 [salt.config :2190][DEBUG ][6920] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 12:00:27,317 [salt.config :2334][DEBUG ][6920] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 12:00:27,333 [salt.config :2190][DEBUG ][6920] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 12:00:33,567 [salt.pillar :57 ][DEBUG ][6920] Determining pillar cache -2020-03-04 12:00:33,599 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:00:33,614 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:00:33,614 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 12:00:33,634 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:00:33,634 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:33,649 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +2020-03-06 10:00:52,144 [salt.loader :770 ][DEBUG ][6376] Grains refresh requested. Refreshing grains. +2020-03-06 10:00:52,144 [salt.config :2111][DEBUG ][6376] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:00:52,144 [salt.config :2255][DEBUG ][6376] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:00:52,144 [salt.config :2111][DEBUG ][6376] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:00:56,674 [salt.pillar :57 ][DEBUG ][6376] Determining pillar cache +2020-03-06 10:00:56,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:00:56,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:00:56,740 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:00:56,740 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:00:56,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.012696504592895508 +2020-03-06 10:00:56,753 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: --- base: "*": - windows -2020-03-04 12:00:33,649 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:56,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:00:33,649 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:33,649 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded confirm_top.confirm_top -2020-03-04 12:00:33,658 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded compound_match.match -2020-03-04 12:00:33,661 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6920] compound_match: vagrant-10 ? * -2020-03-04 12:00:33,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded glob_match.match -2020-03-04 12:00:33,661 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6920] compound_match vagrant-10 ? "*" => "True" -2020-03-04 12:00:33,661 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 12:00:33,661 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:00:33,661 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:33,677 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +2020-03-06 10:00:56,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:56,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded confirm_top.confirm_top +2020-03-06 10:00:56,766 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded compound_match.match +2020-03-06 10:00:56,768 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6376] compound_match: vagrant-10 ? * +2020-03-06 10:00:56,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded glob_match.match +2020-03-06 10:00:56,768 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6376] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:00:56,768 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:00:56,768 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:00:56,785 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.01710343360900879 +2020-03-06 10:00:56,785 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: # -*- coding: utf-8 -*- # vim: ft=yaml --- @@ -427,283 +427,292 @@ windows: password_never_expires: false disallow_change_password: false -2020-03-04 12:00:33,677 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:56,785 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 12:00:33,677 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:33,724 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:00:33,724 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:00:33,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded state.highstate -2020-03-04 12:00:33,801 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded direct_call.execute -2020-03-04 12:00:33,801 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded grains.get -2020-03-04 12:00:33,865 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded saltutil.is_running -2020-03-04 12:00:33,897 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded config.get -2020-03-04 12:00:33,897 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: test, ret: _|- -2020-03-04 12:00:33,928 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,147 [git.cmd :722 ][DEBUG ][6920] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) -2020-03-04 12:00:34,182 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,182 [salt.fileserver :502 ][DEBUG ][6920] Updating roots fileserver cache -2020-03-04 12:00:34,238 [salt.state :736 ][DEBUG ][6920] Gathering pillar data for state run -2020-03-04 12:00:34,239 [salt.state :750 ][DEBUG ][6920] Finished gathering pillar data for state run -2020-03-04 12:00:34,239 [salt.state :966 ][INFO ][6920] Loading fresh modules for state activity -2020-03-04 12:00:34,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:00:34,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:00:34,270 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' -2020-03-04 12:00:34,270 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' -2020-03-04 12:00:34,270 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' -2020-03-04 12:00:34,270 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:34,286 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'top.sls' -2020-03-04 12:00:34,286 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls -2020-03-04 12:00:34,286 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:34,305 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,314 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,319 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.03269791603088379 -2020-03-04 12:00:34,319 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +2020-03-06 10:00:56,799 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.014120340347290039 +2020-03-06 10:00:56,830 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:00:56,830 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:00:56,907 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded state.highstate +2020-03-06 10:00:56,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded direct_call.execute +2020-03-06 10:00:56,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded grains.get +2020-03-06 10:00:56,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded saltutil.is_running +2020-03-06 10:00:57,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded config.get +2020-03-06 10:00:57,034 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: test, ret: _|- +2020-03-06 10:00:57,050 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,268 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:00:57,268 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:00:57,299 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,315 [salt.fileserver :502 ][DEBUG ][6376] Updating roots fileserver cache +2020-03-06 10:00:57,363 [salt.state :735 ][DEBUG ][6376] Gathering pillar data for state run +2020-03-06 10:00:57,363 [salt.state :749 ][DEBUG ][6376] Finished gathering pillar data for state run +2020-03-06 10:00:57,363 [salt.state :1014][INFO ][6376] Loading fresh modules for state activity +2020-03-06 10:00:57,395 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:00:57,395 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:00:57,424 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:00:57,424 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:00:57,424 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:00:57,424 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:57,441 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:00:57,441 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:00:57,441 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:57,459 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,471 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.02988147735595703 +2020-03-06 10:00:57,471 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: --- base: "*": - windows -2020-03-04 12:00:34,319 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:57,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:00:34,319 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:34,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded confirm_top.confirm_top -2020-03-04 12:00:34,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded compound_match.match -2020-03-04 12:00:34,319 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6920] compound_match: vagrant-10 ? * -2020-03-04 12:00:34,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded glob_match.match -2020-03-04 12:00:34,333 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6920] compound_match vagrant-10 ? "*" => "True" -2020-03-04 12:00:34,333 [salt.fileclient :1368][DEBUG ][6920] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. -2020-03-04 12:00:34,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded saltutil.sync_all -2020-03-04 12:00:34,333 [salt.loaded.int.module.saltutil:968 ][DEBUG ][6920] Syncing all -2020-03-04 12:00:34,333 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' -2020-03-04 12:00:34,354 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,361 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,364 [salt.utils.extmods:90 ][INFO ][6920] Syncing clouds for environment 'base' -2020-03-04 12:00:34,364 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_clouds, for base) -2020-03-04 12:00:34,364 [salt.fileclient :234 ][INFO ][6920] Caching directory '_clouds/' for environment 'base' -2020-03-04 12:00:34,364 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,364 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' -2020-03-04 12:00:34,364 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' -2020-03-04 12:00:34,382 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,392 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,397 [salt.utils.extmods:90 ][INFO ][6920] Syncing beacons for environment 'base' -2020-03-04 12:00:34,397 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_beacons, for base) -2020-03-04 12:00:34,397 [salt.fileclient :234 ][INFO ][6920] Caching directory '_beacons/' for environment 'base' -2020-03-04 12:00:34,397 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,397 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' -2020-03-04 12:00:34,397 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' -2020-03-04 12:00:34,413 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,427 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,427 [salt.utils.extmods:90 ][INFO ][6920] Syncing modules for environment 'base' -2020-03-04 12:00:34,427 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_modules, for base) -2020-03-04 12:00:34,427 [salt.fileclient :234 ][INFO ][6920] Caching directory '_modules/' for environment 'base' -2020-03-04 12:00:34,427 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,427 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:00:34,427 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:00:34,427 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:00:34,443 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:34,443 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' -2020-03-04 12:00:34,443 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' -2020-03-04 12:00:34,443 [salt.utils.extmods:119 ][INFO ][6920] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' -2020-03-04 12:00:34,443 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' -2020-03-04 12:00:34,472 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,473 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,473 [salt.utils.extmods:90 ][INFO ][6920] Syncing states for environment 'base' -2020-03-04 12:00:34,473 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_states, for base) -2020-03-04 12:00:34,473 [salt.fileclient :234 ][INFO ][6920] Caching directory '_states/' for environment 'base' -2020-03-04 12:00:34,473 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,473 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' -2020-03-04 12:00:34,473 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' -2020-03-04 12:00:34,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,508 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,508 [salt.utils.extmods:90 ][INFO ][6920] Syncing sdb for environment 'base' -2020-03-04 12:00:34,517 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_sdb, for base) -2020-03-04 12:00:34,517 [salt.fileclient :234 ][INFO ][6920] Caching directory '_sdb/' for environment 'base' -2020-03-04 12:00:34,520 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,520 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' -2020-03-04 12:00:34,520 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' -2020-03-04 12:00:34,542 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,552 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,552 [salt.utils.extmods:90 ][INFO ][6920] Syncing grains for environment 'base' -2020-03-04 12:00:34,552 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_grains, for base) -2020-03-04 12:00:34,552 [salt.fileclient :234 ][INFO ][6920] Caching directory '_grains/' for environment 'base' -2020-03-04 12:00:34,552 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,552 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' -2020-03-04 12:00:34,567 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' -2020-03-04 12:00:34,588 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,596 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,599 [salt.utils.extmods:90 ][INFO ][6920] Syncing renderers for environment 'base' -2020-03-04 12:00:34,599 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_renderers, for base) -2020-03-04 12:00:34,599 [salt.fileclient :234 ][INFO ][6920] Caching directory '_renderers/' for environment 'base' -2020-03-04 12:00:34,599 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,599 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' -2020-03-04 12:00:34,599 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' -2020-03-04 12:00:34,614 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,631 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,631 [salt.utils.extmods:90 ][INFO ][6920] Syncing returners for environment 'base' -2020-03-04 12:00:34,631 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_returners, for base) -2020-03-04 12:00:34,643 [salt.fileclient :234 ][INFO ][6920] Caching directory '_returners/' for environment 'base' -2020-03-04 12:00:34,643 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,645 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' -2020-03-04 12:00:34,645 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' -2020-03-04 12:00:34,666 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,677 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,677 [salt.utils.extmods:90 ][INFO ][6920] Syncing output for environment 'base' -2020-03-04 12:00:34,677 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_output, for base) -2020-03-04 12:00:34,677 [salt.fileclient :234 ][INFO ][6920] Caching directory '_output/' for environment 'base' -2020-03-04 12:00:34,677 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,677 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' -2020-03-04 12:00:34,677 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' -2020-03-04 12:00:34,693 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,710 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,710 [salt.utils.extmods:90 ][INFO ][6920] Syncing utils for environment 'base' -2020-03-04 12:00:34,710 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_utils, for base) -2020-03-04 12:00:34,710 [salt.fileclient :234 ][INFO ][6920] Caching directory '_utils/' for environment 'base' -2020-03-04 12:00:34,721 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,723 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' -2020-03-04 12:00:34,723 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' -2020-03-04 12:00:34,746 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,751 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,757 [salt.utils.extmods:90 ][INFO ][6920] Syncing log_handlers for environment 'base' -2020-03-04 12:00:34,757 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_log_handlers, for base) -2020-03-04 12:00:34,757 [salt.fileclient :234 ][INFO ][6920] Caching directory '_log_handlers/' for environment 'base' -2020-03-04 12:00:34,757 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,757 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' -2020-03-04 12:00:34,757 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' -2020-03-04 12:00:34,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,789 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,789 [salt.utils.extmods:90 ][INFO ][6920] Syncing proxy for environment 'base' -2020-03-04 12:00:34,789 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_proxy, for base) -2020-03-04 12:00:34,789 [salt.fileclient :234 ][INFO ][6920] Caching directory '_proxy/' for environment 'base' -2020-03-04 12:00:34,789 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,789 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' -2020-03-04 12:00:34,802 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' -2020-03-04 12:00:34,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,828 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,833 [salt.utils.extmods:90 ][INFO ][6920] Syncing engines for environment 'base' -2020-03-04 12:00:34,833 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_engines, for base) -2020-03-04 12:00:34,833 [salt.fileclient :234 ][INFO ][6920] Caching directory '_engines/' for environment 'base' -2020-03-04 12:00:34,833 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,833 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' -2020-03-04 12:00:34,833 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' -2020-03-04 12:00:34,851 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,866 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,866 [salt.utils.extmods:90 ][INFO ][6920] Syncing thorium for environment 'base' -2020-03-04 12:00:34,866 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_thorium, for base) -2020-03-04 12:00:34,866 [salt.fileclient :234 ][INFO ][6920] Caching directory '_thorium/' for environment 'base' -2020-03-04 12:00:34,866 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,879 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' -2020-03-04 12:00:34,879 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' -2020-03-04 12:00:34,879 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,912 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,912 [salt.utils.extmods:90 ][INFO ][6920] Syncing serializers for environment 'base' -2020-03-04 12:00:34,912 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_serializers, for base) -2020-03-04 12:00:34,912 [salt.fileclient :234 ][INFO ][6920] Caching directory '_serializers/' for environment 'base' -2020-03-04 12:00:34,912 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,912 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' -2020-03-04 12:00:34,912 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' -2020-03-04 12:00:34,947 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,947 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,955 [salt.utils.extmods:90 ][INFO ][6920] Syncing matchers for environment 'base' -2020-03-04 12:00:34,958 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_matchers, for base) -2020-03-04 12:00:34,958 [salt.fileclient :234 ][INFO ][6920] Caching directory '_matchers/' for environment 'base' -2020-03-04 12:00:34,958 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:34,958 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' -2020-03-04 12:00:34,958 [salt.utils.extmods:79 ][INFO ][6920] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' -2020-03-04 12:00:34,978 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:34,990 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:34,990 [salt.utils.extmods:90 ][INFO ][6920] Syncing pillar for environment 'base' -2020-03-04 12:00:34,990 [salt.utils.extmods:94 ][INFO ][6920] Loading cache from salt://_pillar, for base) -2020-03-04 12:00:34,990 [salt.fileclient :234 ][INFO ][6920] Caching directory '_pillar/' for environment 'base' -2020-03-04 12:00:35,001 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:35,001 [salt.utils.extmods:109 ][DEBUG ][6920] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' -2020-03-04 12:00:35,005 [salt.state :1000][DEBUG ][6920] Refreshing modules... -2020-03-04 12:00:35,026 [salt.state :966 ][INFO ][6920] Loading fresh modules for state activity -2020-03-04 12:00:35,062 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:00:35,065 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:00:35,067 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows.sls' in saltenv 'base' -2020-03-04 12:00:35,067 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:00:35,067 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:00:35,067 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' -2020-03-04 12:00:35,067 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,067 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' -2020-03-04 12:00:35,082 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls -2020-03-04 12:00:35,082 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,082 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,082 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,082 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' -2020-03-04 12:00:35,082 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,098 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' -2020-03-04 12:00:35,115 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,115 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,115 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,115 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,131 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' -2020-03-04 12:00:35,131 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,131 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,145 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,145 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' -2020-03-04 12:00:35,145 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,145 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,162 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,162 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' -2020-03-04 12:00:35,162 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,177 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,177 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,177 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,177 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' -2020-03-04 12:00:35,177 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,177 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,193 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,193 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,193 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' -2020-03-04 12:00:35,193 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,193 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,193 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,208 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,208 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' -2020-03-04 12:00:35,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded config.get -2020-03-04 12:00:35,226 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded grains.filter_by -2020-03-04 12:00:35,226 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.14355111122131348 -2020-03-04 12:00:35,226 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +2020-03-06 10:00:57,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:57,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded confirm_top.confirm_top +2020-03-06 10:00:57,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded compound_match.match +2020-03-06 10:00:57,487 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6376] compound_match: vagrant-10 ? * +2020-03-06 10:00:57,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded glob_match.match +2020-03-06 10:00:57,487 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6376] compound_match vagrant-10 ? "*" => "True" +2020-03-06 10:00:57,487 [salt.fileclient :1376][DEBUG ][6376] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:00:57,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded saltutil.sync_all +2020-03-06 10:00:57,487 [salt.loaded.int.module.saltutil:1009][DEBUG ][6376] Syncing all +2020-03-06 10:00:57,500 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:00:57,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,518 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,534 [salt.utils.extmods:90 ][INFO ][6376] Syncing clouds for environment 'base' +2020-03-06 10:00:57,534 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_clouds, for base) +2020-03-06 10:00:57,534 [salt.fileclient :234 ][INFO ][6376] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:00:57,534 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,534 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:00:57,534 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:00:57,551 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,569 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,569 [salt.utils.extmods:90 ][INFO ][6376] Syncing beacons for environment 'base' +2020-03-06 10:00:57,569 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_beacons, for base) +2020-03-06 10:00:57,569 [salt.fileclient :234 ][INFO ][6376] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:00:57,579 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,579 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:00:57,581 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:00:57,599 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,599 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,612 [salt.utils.extmods:90 ][INFO ][6376] Syncing modules for environment 'base' +2020-03-06 10:00:57,612 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_modules, for base) +2020-03-06 10:00:57,612 [salt.fileclient :234 ][INFO ][6376] Caching directory '_modules/' for environment 'base' +2020-03-06 10:00:57,612 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,612 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:00:57,612 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:00:57,612 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:00:57,612 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:57,612 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:00:57,612 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:00:57,627 [salt.utils.extmods:119 ][INFO ][6376] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:00:57,627 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:00:57,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,652 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,652 [salt.utils.extmods:90 ][INFO ][6376] Syncing states for environment 'base' +2020-03-06 10:00:57,661 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_states, for base) +2020-03-06 10:00:57,661 [salt.fileclient :234 ][INFO ][6376] Caching directory '_states/' for environment 'base' +2020-03-06 10:00:57,661 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,661 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:00:57,661 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:00:57,680 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,680 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,696 [salt.utils.extmods:90 ][INFO ][6376] Syncing sdb for environment 'base' +2020-03-06 10:00:57,696 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_sdb, for base) +2020-03-06 10:00:57,696 [salt.fileclient :234 ][INFO ][6376] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:00:57,696 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,696 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:00:57,704 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:00:57,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,725 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,725 [salt.utils.extmods:90 ][INFO ][6376] Syncing grains for environment 'base' +2020-03-06 10:00:57,725 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_grains, for base) +2020-03-06 10:00:57,725 [salt.fileclient :234 ][INFO ][6376] Caching directory '_grains/' for environment 'base' +2020-03-06 10:00:57,737 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,737 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:00:57,737 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:00:57,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,762 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,769 [salt.utils.extmods:90 ][INFO ][6376] Syncing renderers for environment 'base' +2020-03-06 10:00:57,769 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_renderers, for base) +2020-03-06 10:00:57,769 [salt.fileclient :234 ][INFO ][6376] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:00:57,769 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,769 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:00:57,769 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:00:57,788 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,800 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,800 [salt.utils.extmods:90 ][INFO ][6376] Syncing returners for environment 'base' +2020-03-06 10:00:57,800 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_returners, for base) +2020-03-06 10:00:57,800 [salt.fileclient :234 ][INFO ][6376] Caching directory '_returners/' for environment 'base' +2020-03-06 10:00:57,800 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,800 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:00:57,800 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:00:57,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,834 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,834 [salt.utils.extmods:90 ][INFO ][6376] Syncing output for environment 'base' +2020-03-06 10:00:57,845 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_output, for base) +2020-03-06 10:00:57,846 [salt.fileclient :234 ][INFO ][6376] Caching directory '_output/' for environment 'base' +2020-03-06 10:00:57,846 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,846 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:00:57,846 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:00:57,869 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,877 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,877 [salt.utils.extmods:90 ][INFO ][6376] Syncing utils for environment 'base' +2020-03-06 10:00:57,877 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_utils, for base) +2020-03-06 10:00:57,877 [salt.fileclient :234 ][INFO ][6376] Caching directory '_utils/' for environment 'base' +2020-03-06 10:00:57,877 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,877 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:00:57,877 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:00:57,894 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,913 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,913 [salt.utils.extmods:90 ][INFO ][6376] Syncing log_handlers for environment 'base' +2020-03-06 10:00:57,924 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:00:57,924 [salt.fileclient :234 ][INFO ][6376] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:00:57,924 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,924 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:00:57,924 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\executors' +2020-03-06 10:00:57,957 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:57,970 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:57,971 [salt.utils.extmods:90 ][INFO ][6376] Syncing executors for environment 'base' +2020-03-06 10:00:57,971 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_executors, for base) +2020-03-06 10:00:57,971 [salt.fileclient :234 ][INFO ][6376] Caching directory '_executors/' for environment 'base' +2020-03-06 10:00:57,971 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:57,971 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_executors' +2020-03-06 10:00:57,971 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:00:57,990 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:58,004 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:58,004 [salt.utils.extmods:90 ][INFO ][6376] Syncing proxy for environment 'base' +2020-03-06 10:00:58,004 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_proxy, for base) +2020-03-06 10:00:58,004 [salt.fileclient :234 ][INFO ][6376] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:00:58,004 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:58,004 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:00:58,004 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:00:58,019 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:58,035 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:58,035 [salt.utils.extmods:90 ][INFO ][6376] Syncing engines for environment 'base' +2020-03-06 10:00:58,035 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_engines, for base) +2020-03-06 10:00:58,035 [salt.fileclient :234 ][INFO ][6376] Caching directory '_engines/' for environment 'base' +2020-03-06 10:00:58,035 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:58,035 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:00:58,049 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:00:58,049 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:58,049 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:58,079 [salt.utils.extmods:90 ][INFO ][6376] Syncing thorium for environment 'base' +2020-03-06 10:00:58,080 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_thorium, for base) +2020-03-06 10:00:58,080 [salt.fileclient :234 ][INFO ][6376] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:00:58,080 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:58,080 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:00:58,080 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:00:58,103 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:58,113 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:58,113 [salt.utils.extmods:90 ][INFO ][6376] Syncing serializers for environment 'base' +2020-03-06 10:00:58,113 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_serializers, for base) +2020-03-06 10:00:58,113 [salt.fileclient :234 ][INFO ][6376] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:00:58,113 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:58,113 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:00:58,113 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:00:58,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:58,148 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:58,148 [salt.utils.extmods:90 ][INFO ][6376] Syncing matchers for environment 'base' +2020-03-06 10:00:58,148 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_matchers, for base) +2020-03-06 10:00:58,148 [salt.fileclient :234 ][INFO ][6376] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:00:58,157 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:58,158 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:00:58,158 [salt.utils.extmods:79 ][INFO ][6376] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:00:58,158 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:58,181 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:58,189 [salt.utils.extmods:90 ][INFO ][6376] Syncing pillar for environment 'base' +2020-03-06 10:00:58,190 [salt.utils.extmods:94 ][INFO ][6376] Loading cache from salt://_pillar, for base) +2020-03-06 10:00:58,190 [salt.fileclient :234 ][INFO ][6376] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:00:58,190 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:58,190 [salt.utils.extmods:109 ][DEBUG ][6376] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:00:58,190 [salt.state :1048][DEBUG ][6376] Refreshing modules... +2020-03-06 10:00:58,212 [salt.state :1014][INFO ][6376] Loading fresh modules for state activity +2020-03-06 10:00:58,253 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:00:58,253 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:00:58,253 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:00:58,253 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:00:58,253 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:00:58,253 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:00:58,253 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,268 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:00:58,268 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:00:58,268 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,268 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,268 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,268 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:00:58,268 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,283 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:00:58,283 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,300 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,300 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,300 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,300 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:00:58,300 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,300 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,315 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,315 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:00:58,315 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,315 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,315 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,330 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:00:58,330 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,330 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,330 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,330 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,330 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:00:58,330 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,330 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,347 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,347 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,347 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:00:58,347 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,347 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,347 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,347 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,362 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:00:58,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded config.get +2020-03-06 10:00:58,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded grains.filter_by +2020-03-06 10:00:58,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.09434628486633301 +2020-03-06 10:00:58,362 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .states - .modules - .system -2020-03-04 12:00:35,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,378 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.states', '.modules', '.system'])]) -2020-03-04 12:00:35,237 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.01082754135131836 -2020-03-04 12:00:35,239 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:00:35,239 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:00:35,239 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' -2020-03-04 12:00:35,239 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,239 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' -2020-03-04 12:00:35,239 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls -2020-03-04 12:00:35,239 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,255 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:00:35,255 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:00:35,255 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' -2020-03-04 12:00:35,255 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,255 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' -2020-03-04 12:00:35,301 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,301 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,317 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,348 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,349 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,349 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,349 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,349 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.1250934600830078 -2020-03-04 12:00:35,364 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +2020-03-06 10:00:58,378 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,378 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:00:58,378 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:00:58,378 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:00:58,378 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,378 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:00:58,378 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:00:58,378 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,395 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:00:58,395 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:00:58,395 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:00:58,395 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,395 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:00:58,440 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,440 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,440 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,457 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,457 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,457 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,457 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,457 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,457 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.09321975708007812 +2020-03-06 10:00:58,487 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -722,34 +731,34 @@ windows.state.timezone.system.America/New_York: -2020-03-04 12:00:35,381 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) -2020-03-04 12:00:35,381 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,381 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:00:35,381 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:00:35,381 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' -2020-03-04 12:00:35,381 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,381 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' -2020-03-04 12:00:35,381 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls -2020-03-04 12:00:35,381 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,396 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:00:35,396 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:00:35,442 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,442 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,442 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,460 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,460 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,460 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,460 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,472 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,474 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,474 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,474 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,474 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,474 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,474 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.09324955940246582 -2020-03-04 12:00:35,492 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +2020-03-06 10:00:58,487 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,487 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:00:58,487 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:00:58,487 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:00:58,487 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,502 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:00:58,502 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:00:58,502 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,502 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:00:58,502 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:00:58,547 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,549 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,549 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,549 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,567 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,567 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,567 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,567 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,567 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,567 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,567 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,580 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,580 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,580 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,580 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.07802295684814453 +2020-03-06 10:00:58,580 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -777,33 +786,33 @@ windows.module.status.uptime: - windows.module.user.current -2020-03-04 12:00:35,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) -2020-03-04 12:00:35,492 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,492 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system.sls' in saltenv 'base' -2020-03-04 12:00:35,492 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:00:35,501 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:00:35,501 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' -2020-03-04 12:00:35,501 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,505 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' -2020-03-04 12:00:35,505 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls -2020-03-04 12:00:35,505 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,505 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,520 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,520 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,537 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,537 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,537 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,537 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,537 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,537 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,537 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,552 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,552 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,552 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,552 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,552 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.04686450958251953 -2020-03-04 12:00:35,568 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +2020-03-06 10:00:58,596 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.015769481658935547 +2020-03-06 10:00:58,596 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:00:58,596 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:00:58,596 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:00:58,596 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:00:58,596 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,596 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:00:58,596 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:00:58,596 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,613 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,613 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,632 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,632 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,639 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,639 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,642 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,644 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,644 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,644 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,644 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,644 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,644 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,644 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,661 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.06502819061279297 +2020-03-06 10:00:58,661 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls # sls: windows.system windows system @@ -820,19 +829,19 @@ include: - .desktop -2020-03-04 12:00:35,568 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.packages', '.server', '.desktop'])]) -2020-03-04 12:00:35,568 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,568 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' -2020-03-04 12:00:35,568 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:00:35,568 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:00:35,568 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' -2020-03-04 12:00:35,568 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,568 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' -2020-03-04 12:00:35,583 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls -2020-03-04 12:00:35,583 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:35,583 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +2020-03-06 10:00:58,661 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,661 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:00:58,672 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:00:58,672 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:00:58,674 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:00:58,674 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,674 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:00:58,674 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:00:58,674 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:58,674 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -841,67 +850,67 @@ include: - .powershell - .saltstack - .chocolatey -2020-03-04 12:00:35,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) -2020-03-04 12:00:35,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,583 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' -2020-03-04 12:00:35,583 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:00:35,583 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:00:35,583 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:00:35,583 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,598 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' -2020-03-04 12:00:35,598 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls -2020-03-04 12:00:35,598 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,598 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:35,598 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +2020-03-06 10:00:58,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,690 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:00:58,690 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:00:58,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:00:58,690 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:00:58,690 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,690 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:00:58,690 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:00:58,690 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:58,690 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .remove-provisioned-apps -2020-03-04 12:00:35,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,706 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.remove-provisioned-apps'])]) -2020-03-04 12:00:35,598 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,598 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:00:35,598 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:00:35,598 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:00:35,598 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,615 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:00:35,615 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls -2020-03-04 12:00:35,615 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,615 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:35,615 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +2020-03-06 10:00:58,706 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,706 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:00:58,706 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:00:58,706 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:00:58,706 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,706 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:00:58,706 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:00:58,706 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,706 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:58,706 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .removed -2020-03-04 12:00:35,615 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,722 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.removed'])]) -2020-03-04 12:00:35,615 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,615 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:00:35,630 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:00:35,630 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:00:35,630 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,630 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' -2020-03-04 12:00:35,630 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls -2020-03-04 12:00:35,630 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,630 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,650 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,663 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,663 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,663 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,674 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,677 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,694 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.0634603500366211 -2020-03-04 12:00:35,694 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +2020-03-06 10:00:58,722 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,722 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:00:58,722 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:00:58,722 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:00:58,722 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,722 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:00:58,722 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:00:58,737 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,737 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,737 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,756 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,766 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,768 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,784 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,784 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,784 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.047174930572509766 +2020-03-06 10:00:58,784 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -945,87 +954,87 @@ windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Port -2020-03-04 12:00:35,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) -2020-03-04 12:00:35,694 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,694 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' -2020-03-04 12:00:35,706 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:00:35,707 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:00:35,708 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:00:35,708 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,708 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' -2020-03-04 12:00:35,708 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls -2020-03-04 12:00:35,708 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,708 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:35,708 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +2020-03-06 10:00:58,800 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.015896081924438477 +2020-03-06 10:00:58,800 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:00:58,800 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:00:58,800 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:00:58,800 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:00:58,800 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,800 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:00:58,800 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:00:58,815 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,815 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:58,815 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .modules - .framework -2020-03-04 12:00:35,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.framework'])]) -2020-03-04 12:00:35,708 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,708 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' -2020-03-04 12:00:35,708 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:00:35,725 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:00:35,725 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:00:35,725 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,725 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:00:35,725 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls -2020-03-04 12:00:35,725 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,725 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:35,725 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +2020-03-06 10:00:58,815 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,815 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:00:58,815 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:00:58,815 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:00:58,815 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:00:58,815 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,815 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:00:58,832 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:00:58,832 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,832 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:58,832 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .v4_5 -2020-03-04 12:00:35,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,832 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.v4_5'])]) -2020-03-04 12:00:35,725 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,740 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' -2020-03-04 12:00:35,740 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:00:35,740 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:00:35,740 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:00:35,740 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,740 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:00:35,740 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls -2020-03-04 12:00:35,740 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,740 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:35,740 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +2020-03-06 10:00:58,832 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,832 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:00:58,832 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:00:58,832 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:00:58,832 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:00:58,832 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,846 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:00:58,846 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:00:58,846 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,846 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:58,846 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .tls1_2 -2020-03-04 12:00:35,740 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.tls1_2'])]) -2020-03-04 12:00:35,756 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.01602768898010254 -2020-03-04 12:00:35,756 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:00:35,756 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:00:35,756 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:00:35,756 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,756 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:00:35,756 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls -2020-03-04 12:00:35,756 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,756 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,772 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,772 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,788 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,788 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,788 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,788 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,788 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,788 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,801 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,802 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,802 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,802 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,802 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.046180009841918945 -2020-03-04 12:00:35,818 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +2020-03-06 10:00:58,846 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,846 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:00:58,846 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:00:58,846 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:00:58,846 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,863 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:00:58,863 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:00:58,863 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,863 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,863 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,863 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,884 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,884 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,884 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,884 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,894 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,894 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,894 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,894 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,894 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,894 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,894 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:58,894 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.03102588653564453 +2020-03-06 10:00:58,914 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1053,152 +1062,77 @@ windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversion - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} -2020-03-04 12:00:35,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,914 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) -2020-03-04 12:00:35,818 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,818 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' -2020-03-04 12:00:35,818 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:00:35,818 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:00:35,818 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:00:35,818 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,833 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' -2020-03-04 12:00:35,833 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls -2020-03-04 12:00:35,833 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:35,833 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +2020-03-06 10:00:58,914 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,914 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:00:58,914 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:00:58,914 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:00:58,925 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:00:58,925 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,925 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:00:58,925 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:00:58,925 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,925 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:58,925 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:00:35,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:58,925 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:00:35,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:35,833 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:00:35,833 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:00:35,833 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:00:35,833 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,833 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' -2020-03-04 12:00:35,849 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls -2020-03-04 12:00:35,849 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:35,849 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:00:35,849 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:00:35,849 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:00:35,849 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,849 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' -2020-03-04 12:00:35,866 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,866 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:35,866 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,884 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:35,884 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,884 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:35,884 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,894 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:35,896 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,896 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:35,896 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,896 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:35,896 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,896 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:35,912 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:00:35,912 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:00:35,912 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:00:35,912 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:35,927 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:00:35,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pkg.version -2020-03-04 12:00:35,989 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][6920] No winrepo.p cache file for saltenv 'base', creating one now -2020-03-04 12:00:36,007 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][6920] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) -2020-03-04 12:00:36,007 [salt.loaded.int.module.win_pkg:935 ][INFO ][6920] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:00:36,007 [salt.loaded.int.module.win_pkg:954 ][INFO ][6920] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:00:36,019 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cp.cache_dir -2020-03-04 12:00:36,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded roots.envs -2020-03-04 12:00:36,041 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:00:36,041 [salt.fileclient :234 ][INFO ][6920] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:00:36,049 [salt.fileserver :159 ][DEBUG ][6920] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:00:36,052 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded reg.list_keys -2020-03-04 12:00:36,052 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,052 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,052 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,067 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.2178666591644287 -2020-03-04 12:00:36,067 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +2020-03-06 10:00:58,925 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:58,925 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:00:58,925 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:00:58,941 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:00:58,941 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,941 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:00:58,941 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:00:58,941 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:58,941 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:00:58,941 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:00:58,941 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:00:58,941 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:58,956 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:00:58,956 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,956 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:58,977 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,977 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:58,984 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,988 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:58,988 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,988 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:58,988 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,988 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:58,988 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:58,988 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,002 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,002 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,002 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:00:59,002 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:00:59,002 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:00:59,018 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,018 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:00:59,205 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pkg.version +2020-03-06 10:00:59,205 [salt.loaded.int.module.win_pkg:827 ][DEBUG ][6376] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:00:59,205 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][6376] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:00:59,221 [salt.loaded.int.module.win_pkg:939 ][INFO ][6376] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:00:59,221 [salt.loaded.int.module.win_pkg:958 ][INFO ][6376] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:00:59,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cp.cache_dir +2020-03-06 10:00:59,243 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded roots.envs +2020-03-06 10:00:59,257 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:00:59,257 [salt.fileclient :234 ][INFO ][6376] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:00:59,257 [salt.fileserver :159 ][DEBUG ][6376] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:00:59,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded reg.list_keys +2020-03-06 10:00:59,268 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.3270294666290283 +2020-03-06 10:00:59,268 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .windows_software_repository -git: - pkg.installed: - - refresh_minion_env_path: True - - require: - - pkg.refresh_db kdiff3: pkg.installed: - require: @@ -1209,95 +1143,30 @@ kdiff3: - refresh_minion_env_path: False - require: - pkg.refresh_db +git: + pkg.installed: + - refresh_minion_env_path: True + - require: + - pkg.refresh_db windows_environment.refresh.path: module.run: - windows_environment.refresh: - onchanges: - pkg: git -2020-03-04 12:00:36,083 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('include', ['.windows_software_repository']), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) -2020-03-04 12:00:36,083 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.015957355499267578 -2020-03-04 12:00:36,083 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:00:36,083 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:00:36,083 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:00:36,083 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,083 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:00:36,083 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls -2020-03-04 12:00:36,083 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,100 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.047873) -2020-03-04 12:00:36,100 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,100 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:00:36,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.030703067779541016 -2020-03-04 12:00:36,130 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +2020-03-06 10:00:59,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:00:59,268 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,284 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:00:59,284 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:00:59,284 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:00:59,284 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,284 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:00:59,284 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:00:59,284 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,299 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.030879) +2020-03-06 10:00:59,299 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.015618324279785156 +2020-03-06 10:00:59,299 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1330,50 +1199,50 @@ pkg.refresh_db: attempts: 10 until: True interval: 5 -2020-03-04 12:00:36,130 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) -2020-03-04 12:00:36,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,130 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' -2020-03-04 12:00:36,130 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:00:36,130 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:00:36,130 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:00:36,130 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,130 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' -2020-03-04 12:00:36,130 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls -2020-03-04 12:00:36,130 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,146 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.01597762107849121 -2020-03-04 12:00:36,146 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +2020-03-06 10:00:59,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,315 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:00:59,315 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:00:59,315 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:00:59,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:00:59,315 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,331 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:00:59,331 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:00:59,331 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:59,331 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:00:36,146 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:00:36,146 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,146 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:00:36,146 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:00:36,146 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:00:36,146 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,146 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:00:36,146 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls -2020-03-04 12:00:36,146 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,162 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,162 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,180 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,180 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,189 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,207 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,207 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.061788082122802734 -2020-03-04 12:00:36,207 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +2020-03-06 10:00:59,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,331 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:00:59,331 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:00:59,331 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:00:59,331 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,346 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:00:59,346 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:00:59,346 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,346 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,346 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,412 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,412 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,412 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,412 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06553411483764648 +2020-03-06 10:00:59,412 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -1391,32 +1260,32 @@ windows.system.packages.chocolatey.windirstat: - name: windirstat - version: 1.1.2.20161210 -2020-03-04 12:00:36,207 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,412 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) -2020-03-04 12:00:36,207 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,207 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:00:36,223 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:00:36,223 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:00:36,223 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,223 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:00:36,223 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls -2020-03-04 12:00:36,223 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,223 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,223 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,240 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,240 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,240 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,256 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,256 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,256 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,256 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,256 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,256 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,256 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,269 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,271 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,271 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.04811382293701172 -2020-03-04 12:00:36,271 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +2020-03-06 10:00:59,429 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.016737699508666992 +2020-03-06 10:00:59,429 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:00:59,429 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:00:59,429 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:00:59,429 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,429 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:00:59,429 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:00:59,441 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,441 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,441 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,441 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,460 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,460 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,460 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,487 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.04606318473815918 +2020-03-06 10:00:59,487 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: # -*- coding: utf-8 -*- # vim: ft=sls chocolatey.bootstrap: @@ -1426,149 +1295,149 @@ chocolatey.bootstrap: - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -2020-03-04 12:00:36,271 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) -2020-03-04 12:00:36,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.014140605926513672 -2020-03-04 12:00:36,286 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' -2020-03-04 12:00:36,286 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:00:36,286 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:00:36,286 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' -2020-03-04 12:00:36,286 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,286 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' -2020-03-04 12:00:36,286 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls -2020-03-04 12:00:36,286 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:36,286 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +2020-03-06 10:00:59,487 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,487 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:00:59,502 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:00:59,502 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:00:59,502 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:00:59,502 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,502 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:00:59,502 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:00:59,518 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:59,518 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .features -2020-03-04 12:00:36,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.features'])]) -2020-03-04 12:00:36,302 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,302 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' -2020-03-04 12:00:36,302 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:00:36,302 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:00:36,302 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' -2020-03-04 12:00:36,302 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,302 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' -2020-03-04 12:00:36,302 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls -2020-03-04 12:00:36,302 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.015299558639526367 -2020-03-04 12:00:36,317 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +2020-03-06 10:00:59,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,518 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:00:59,518 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:00:59,518 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:00:59,518 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:00:59,518 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,518 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:00:59,518 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:00:59,535 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,535 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:59,535 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:00:36,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,535 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:00:36,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,317 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:00:36,317 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:00:36,317 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:00:36,317 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,317 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' -2020-03-04 12:00:36,317 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls -2020-03-04 12:00:36,317 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:00:36,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:00:36,333 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:00:36,333 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,333 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' -2020-03-04 12:00:36,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,348 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,348 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,380 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,380 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,380 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,380 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,380 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.06251287460327148 -2020-03-04 12:00:36,394 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +2020-03-06 10:00:59,535 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,535 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:00:59,535 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:00:59,535 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:00:59,535 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,535 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:00:59,535 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:00:59,535 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,550 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:00:59,550 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:00:59,550 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:00:59,550 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,550 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:00:59,550 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,567 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,567 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,582 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,582 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,582 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,582 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,582 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,594 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,597 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,597 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,597 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,597 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,597 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,597 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.06227374076843262 +2020-03-06 10:00:59,613 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls -2020-03-04 12:00:36,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,613 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: {} -2020-03-04 12:00:36,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,395 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' -2020-03-04 12:00:36,395 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:00:36,395 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:00:36,395 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' -2020-03-04 12:00:36,395 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,395 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' -2020-03-04 12:00:36,395 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls -2020-03-04 12:00:36,395 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.015852928161621094 -2020-03-04 12:00:36,411 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +2020-03-06 10:00:59,613 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,613 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:00:59,613 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:00:59,613 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:00:59,613 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:00:59,613 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,627 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:00:59,627 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:00:59,627 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,627 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:59,627 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .packages - .optional_features -2020-03-04 12:00:36,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.optional_features'])]) -2020-03-04 12:00:36,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,411 [salt.fileclient :1072][DEBUG ][6920] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' -2020-03-04 12:00:36,411 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:00:36,411 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:00:36,411 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:00:36,411 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,411 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' -2020-03-04 12:00:36,411 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls -2020-03-04 12:00:36,427 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:00:36,427 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +2020-03-06 10:00:59,627 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,627 [salt.fileclient :1080][DEBUG ][6376] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:00:59,627 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:00:59,627 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:00:59,627 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:00:59,643 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,643 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:00:59,643 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:00:59,643 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:00:59,643 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .feature_installed -2020-03-04 12:00:36,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('include', ['.feature_installed'])]) -2020-03-04 12:00:36,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,427 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:00:36,427 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:00:36,427 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:00:36,427 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,427 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:00:36,427 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls -2020-03-04 12:00:36,443 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:00:36,443 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:00:36,443 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:00:36,443 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:00:36,443 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,443 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:00:36,443 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,460 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:00:36,460 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,476 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:00:36,476 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,476 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:00:36,476 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,476 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:00:36,487 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:00:36,489 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:00:36,489 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:00:36,506 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:00:36,506 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:00:36,506 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:00:36,506 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:00:36,506 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 12:00:36,521 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.07874226570129395 -2020-03-04 12:00:36,521 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +2020-03-06 10:00:59,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,643 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:00:59,659 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:00:59,659 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:00:59,659 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,659 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:00:59,659 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:00:59,659 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:00:59,659 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:00:59,675 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:00:59,675 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:00:59,675 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,675 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:00:59,675 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:00:59,690 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:00:59,707 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,707 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:00:59,707 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,707 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:00:59,707 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,707 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:00:59,721 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,721 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:00:59,721 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,721 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:00:59,721 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:00:59,738 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:00:59,738 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:00:59,738 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:00:59,738 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 10:00:59,738 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.07839393615722656 +2020-03-06 10:00:59,752 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls# -*- coding: utf-8 -*- # vim: ft=sls @@ -1581,1827 +1450,1844 @@ windows.system.desktop.optional_features.installed.TelnetClient: Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" -2020-03-04 12:00:36,521 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:00:59,752 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) -2020-03-04 12:00:36,521 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:00:36,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cmd.run -2020-03-04 12:00:36,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded system.get_computer_desc -2020-03-04 12:00:36,567 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded system.computer_desc -2020-03-04 12:00:36,567 [salt.state :1819][INFO ][6920] Running state [saltstack1] at time 12:00:36.567721 -2020-03-04 12:00:36,567 [salt.state :1852][INFO ][6920] Executing state system.hostname for [saltstack1] -2020-03-04 12:00:36,567 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:00:36,567 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: vagrant-10 -2020-03-04 12:00:36,583 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6920] output: vagrant-10 -2020-03-04 12:00:36,583 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:00:36,583 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: vagrant-10 -2020-03-04 12:00:36,583 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6920] output: vagrant-10 -2020-03-04 12:00:36,599 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' -2020-03-04 12:00:36,661 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 10:00:59,752 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:00:59,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cmd.run +2020-03-06 10:00:59,861 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded system.get_computer_desc +2020-03-06 10:00:59,861 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded system.computer_desc +2020-03-06 10:00:59,861 [salt.state :1867][INFO ][6376] Running state [saltstack1] at time 10:00:59.861874 +2020-03-06 10:00:59,861 [salt.state :1900][INFO ][6376] Executing state system.hostname for [saltstack1] +2020-03-06 10:00:59,861 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:00:59,877 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: vagrant-10 +2020-03-06 10:00:59,877 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6376] output: vagrant-10 +2020-03-06 10:00:59,877 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:00:59,893 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: vagrant-10 +2020-03-06 10:00:59,893 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6376] output: vagrant-10 +2020-03-06 10:00:59,893 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:00:59,956 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:00:36,661 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6920] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 10:00:59,956 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6376] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:00:36,661 [salt.state :320 ][INFO ][6920] {'hostname': 'saltstack1'} -2020-03-04 12:00:36,661 [salt.state :1997][INFO ][6920] Completed state [saltstack1] at time 12:00:36.661425 (duration_in_ms=93.704) -2020-03-04 12:00:36,661 [salt.state :1819][INFO ][6920] Running state [Saltstack Computer Description] at time 12:00:36.661425 -2020-03-04 12:00:36,661 [salt.state :1852][INFO ][6920] Executing state system.computer_desc for [Saltstack Computer Description] -2020-03-04 12:00:39,380 [salt.state :320 ][INFO ][6920] {'old': '', 'new': 'Saltstack Computer Description'} -2020-03-04 12:00:39,395 [salt.state :1997][INFO ][6920] Completed state [Saltstack Computer Description] at time 12:00:39.395934 (duration_in_ms=2734.509) -2020-03-04 12:00:39,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded platform.is_windows -2020-03-04 12:00:39,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded path.which -2020-03-04 12:00:39,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded timezone.get_zone -2020-03-04 12:00:39,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded timezone.system -2020-03-04 12:00:39,427 [salt.state :1819][INFO ][6920] Running state [America/New_York] at time 12:00:39.427226 -2020-03-04 12:00:39,427 [salt.state :1852][INFO ][6920] Executing state timezone.system for [America/New_York] -2020-03-04 12:00:39,427 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' -2020-03-04 12:00:39,458 [salt.state :320 ][INFO ][6920] {'timezone': 'America/New_York'} -2020-03-04 12:00:39,458 [salt.state :1997][INFO ][6920] Completed state [America/New_York] at time 12:00:39.458010 (duration_in_ms=30.784) -2020-03-04 12:00:39,458 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded module.run -2020-03-04 12:00:39,458 [salt.state :1819][INFO ][6920] Running state [windows.module.environ.items] at time 12:00:39.458010 -2020-03-04 12:00:39,473 [salt.state :1852][INFO ][6920] Executing state module.run for [windows.module.environ.items] -2020-03-04 12:00:39,473 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded environ.items -2020-03-04 12:00:39,473 [salt.state :320 ][INFO ][6920] {'environ.items': {'HOMEDRIVE': 'C:', 'PROCESSOR_REVISION': '8e0c', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'NUMBER_OF_PROCESSORS': '2', 'LOGONSERVER': '\\\\VAGRANT-10', 'PROCESSOR_LEVEL': '6', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'USERPROFILE': 'C:\\Users\\vagrant', 'OS': 'Windows_NT', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'HOMEPATH': '\\Users\\vagrant', 'COMPUTERNAME': 'VAGRANT-10', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'WINDIR': 'C:\\Windows', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PROMPT': '$P$G', 'USERNAME': 'vagrant', 'SYSTEMROOT': 'C:\\Windows', 'SYSTEMDRIVE': 'C:', 'SALTDIR': 'C:\\salt', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'PUBLIC': 'C:\\Users\\Public', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMW6432': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PROGRAMDATA': 'C:\\ProgramData', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'USERDOMAIN': 'VAGRANT-10', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PYTHON': 'C:\\salt\\bin\\python.exe'}} -2020-03-04 12:00:39,473 [salt.state :1997][INFO ][6920] Completed state [windows.module.environ.items] at time 12:00:39.473621 (duration_in_ms=15.611) -2020-03-04 12:00:39,473 [salt.state :1819][INFO ][6920] Running state [windows.module.user.current] at time 12:00:39.473621 -2020-03-04 12:00:39,489 [salt.state :1852][INFO ][6920] Executing state module.run for [windows.module.user.current] -2020-03-04 12:00:39,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded user.current -2020-03-04 12:00:39,505 [salt.state :320 ][INFO ][6920] {'user.current': 'VAGRANT-10\\vagrant'} -2020-03-04 12:00:39,505 [salt.state :1997][INFO ][6920] Completed state [windows.module.user.current] at time 12:00:39.505423 (duration_in_ms=31.802) -2020-03-04 12:00:39,505 [salt.state :1819][INFO ][6920] Running state [windows.module.status.uptime] at time 12:00:39.505423 -2020-03-04 12:00:39,505 [salt.state :1852][INFO ][6920] Executing state module.run for [windows.module.status.uptime] -2020-03-04 12:00:39,547 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded status.uptime -2020-03-04 12:00:39,551 [salt.state :320 ][INFO ][6920] {'status.uptime': '0:01:38.551775'} -2020-03-04 12:00:39,551 [salt.state :1997][INFO ][6920] Completed state [windows.module.status.uptime] at time 12:00:39.551775 (duration_in_ms=46.352) -2020-03-04 12:00:39,551 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cmd.run -2020-03-04 12:00:39,551 [salt.state :1819][INFO ][6920] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 12:00:39.551775 -2020-03-04 12:00:39,568 [salt.state :1852][INFO ][6920] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] -2020-03-04 12:00:39,568 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:40,177 [salt.loaded.int.states.cmd:343 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:00:40,177 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:41,693 [salt.state :320 ][INFO ][6920] {'stderr': '', 'retcode': 0, 'pid': 3500, 'stdout': ''} -2020-03-04 12:00:41,693 [salt.state :1997][INFO ][6920] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 12:00:41.693049 (duration_in_ms=2141.274) -2020-03-04 12:00:41,693 [salt.state :1819][INFO ][6920] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 12:00:41.693049 -2020-03-04 12:00:41,707 [salt.state :1852][INFO ][6920] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] -2020-03-04 12:00:41,708 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:42,225 [salt.loaded.int.states.cmd:343 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:00:42,225 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:43,114 [salt.state :320 ][INFO ][6920] {'stderr': '', 'retcode': 0, 'pid': 3888, 'stdout': ''} -2020-03-04 12:00:43,114 [salt.state :1997][INFO ][6920] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 12:00:43.114398 (duration_in_ms=1421.349) -2020-03-04 12:00:43,130 [salt.state :1819][INFO ][6920] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 12:00:43.130021 -2020-03-04 12:00:43,130 [salt.state :1852][INFO ][6920] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] -2020-03-04 12:00:43,130 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:43,567 [salt.loaded.int.states.cmd:343 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:00:43,567 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:44,489 [salt.state :320 ][INFO ][6920] {'stderr': '', 'retcode': 0, 'pid': 6720, 'stdout': ''} -2020-03-04 12:00:44,489 [salt.state :1997][INFO ][6920] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 12:00:44.489474 (duration_in_ms=1359.453) -2020-03-04 12:00:44,489 [salt.state :1819][INFO ][6920] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 12:00:44.489474 -2020-03-04 12:00:44,504 [salt.state :1852][INFO ][6920] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] -2020-03-04 12:00:44,505 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:44,958 [salt.loaded.int.states.cmd:343 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:00:44,958 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:45,989 [salt.state :320 ][INFO ][6920] {'stderr': '', 'retcode': 0, 'pid': 7096, 'stdout': ''} -2020-03-04 12:00:45,989 [salt.state :1997][INFO ][6920] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 12:00:45.989647 (duration_in_ms=1500.173) -2020-03-04 12:00:46,005 [salt.state :1819][INFO ][6920] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 12:00:46.005009 -2020-03-04 12:00:46,005 [salt.state :1852][INFO ][6920] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] -2020-03-04 12:00:46,005 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:46,505 [salt.loaded.int.states.cmd:343 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:00:46,505 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:47,661 [salt.state :320 ][INFO ][6920] {'stderr': '', 'retcode': 0, 'pid': 64, 'stdout': ''} -2020-03-04 12:00:47,661 [salt.state :1997][INFO ][6920] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 12:00:47.661529 (duration_in_ms=1656.52) -2020-03-04 12:00:47,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded reg.present -2020-03-04 12:00:47,677 [salt.state :1819][INFO ][6920] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:00:47.677267 -2020-03-04 12:00:47,677 [salt.state :1852][INFO ][6920] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:00:48,786 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt.secret_key, ret: _|- -2020-03-04 12:00:48,786 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt:secret_key, ret: _|- -2020-03-04 12:00:49,364 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet.api_key, ret: _|- -2020-03-04 12:00:49,364 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet:api_key, ret: _|- -2020-03-04 12:00:49,801 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops.api_key, ret: _|- -2020-03-04 12:00:49,801 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops:api_key, ret: _|- -2020-03-04 12:00:56,007 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:00:56,007 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded apache.a2enconf -2020-03-04 12:00:56,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded apache.a2enmod -2020-03-04 12:00:56,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded apache.a2ensite -2020-03-04 12:00:56,036 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:00:56,052 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:00:56,068 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:00:56,068 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:00:56,082 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:00:56,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:00:56,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:00:56,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:00:56,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_asg.exists -2020-03-04 12:00:56,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cfn.exists -2020-03-04 12:00:56,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:00:56,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:00:56,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:00:56,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:00:56,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:00:56,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:00:56,162 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_dynamodb.exists -2020-03-04 12:00:56,177 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_ec2.get_key -2020-03-04 12:00:56,177 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elasticache.exists -2020-03-04 12:00:56,177 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:00:56,194 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elb.exists -2020-03-04 12:00:56,194 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:00:56,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_iam.get_user -2020-03-04 12:00:56,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_iam.role_exists -2020-03-04 12:00:56,224 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_iot.policy_exists -2020-03-04 12:00:56,224 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_kinesis.exists -2020-03-04 12:00:56,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_kms.describe_key -2020-03-04 12:00:56,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_lambda.function_exists -2020-03-04 12:00:56,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_asg.exists -2020-03-04 12:00:56,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_rds.exists -2020-03-04 12:00:56,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_route53.get_record -2020-03-04 12:00:56,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:00:56,269 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:00:56,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_secgroup.exists -2020-03-04 12:00:56,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_sns.exists -2020-03-04 12:00:56,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_sqs.exists -2020-03-04 12:00:56,287 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_vpc.exists -2020-03-04 12:00:56,287 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded bower.list -2020-03-04 12:00:56,302 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded chef.client -2020-03-04 12:00:56,302 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cimc.get_system_info -2020-03-04 12:00:56,318 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cisconso.set_data_value -2020-03-04 12:00:56,318 [salt.loader :1577][DEBUG ][6920] Failed to import states cloud: +2020-03-06 10:00:59,956 [salt.state :320 ][INFO ][6376] {'hostname': 'saltstack1'} +2020-03-06 10:00:59,956 [salt.state :2045][INFO ][6376] Completed state [saltstack1] at time 10:00:59.956127 (duration_in_ms=94.253) +2020-03-06 10:00:59,956 [salt.state :1867][INFO ][6376] Running state [Saltstack Computer Description] at time 10:00:59.956127 +2020-03-06 10:00:59,971 [salt.state :1900][INFO ][6376] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:01:02,658 [salt.state :320 ][INFO ][6376] {'old': '', 'new': 'Saltstack Computer Description'} +2020-03-06 10:01:02,658 [salt.state :2045][INFO ][6376] Completed state [Saltstack Computer Description] at time 10:01:02.658799 (duration_in_ms=2702.672) +2020-03-06 10:01:02,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded platform.is_windows +2020-03-06 10:01:02,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded path.which +2020-03-06 10:01:02,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded timezone.get_zone +2020-03-06 10:01:02,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded timezone.system +2020-03-06 10:01:02,690 [salt.state :1867][INFO ][6376] Running state [America/New_York] at time 10:01:02.690131 +2020-03-06 10:01:02,690 [salt.state :1900][INFO ][6376] Executing state timezone.system for [America/New_York] +2020-03-06 10:01:02,690 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:01:02,706 [salt.state :320 ][INFO ][6376] {'timezone': 'America/New_York'} +2020-03-06 10:01:02,706 [salt.state :2045][INFO ][6376] Completed state [America/New_York] at time 10:01:02.706554 (duration_in_ms=16.423) +2020-03-06 10:01:02,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded module.run +2020-03-06 10:01:02,721 [salt.state :1867][INFO ][6376] Running state [windows.module.environ.items] at time 10:01:02.721814 +2020-03-06 10:01:02,721 [salt.state :1900][INFO ][6376] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:01:02,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded environ.items +2020-03-06 10:01:02,721 [salt.state :320 ][INFO ][6376] {'environ.items': {'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'HOMEDRIVE': 'C:', 'PROCESSOR_REVISION': '8e0c', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'PROGRAMDATA': 'C:\\ProgramData', 'USERPROFILE': 'C:\\Users\\vagrant', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'LOGONSERVER': '\\\\VAGRANT-10', 'PROMPT': '$P$G', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'SYSTEMROOT': 'C:\\Windows', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'SYSTEMDRIVE': 'C:', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'USERNAME': 'vagrant', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'COMPUTERNAME': 'VAGRANT-10', 'PROCESSOR_LEVEL': '6', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'PUBLIC': 'C:\\Users\\Public', 'WINDIR': 'C:\\Windows', 'PROGRAMFILES': 'C:\\Program Files', 'PROGRAMW6432': 'C:\\Program Files', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'SALTDIR': 'C:\\salt', 'NUMBER_OF_PROCESSORS': '2', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'USERDOMAIN': 'VAGRANT-10', 'HOMEPATH': '\\Users\\vagrant', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'OS': 'Windows_NT'}} +2020-03-06 10:01:02,721 [salt.state :2045][INFO ][6376] Completed state [windows.module.environ.items] at time 10:01:02.721814 (duration_in_ms=0.0) +2020-03-06 10:01:02,721 [salt.state :1867][INFO ][6376] Running state [windows.module.user.current] at time 10:01:02.721814 +2020-03-06 10:01:02,721 [salt.state :1900][INFO ][6376] Executing state module.run for [windows.module.user.current] +2020-03-06 10:01:02,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded user.current +2020-03-06 10:01:02,752 [salt.state :320 ][INFO ][6376] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 10:01:02,752 [salt.state :2045][INFO ][6376] Completed state [windows.module.user.current] at time 10:01:02.752777 (duration_in_ms=30.963) +2020-03-06 10:01:02,752 [salt.state :1867][INFO ][6376] Running state [windows.module.status.uptime] at time 10:01:02.752777 +2020-03-06 10:01:02,752 [salt.state :1900][INFO ][6376] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:01:02,784 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded status.uptime +2020-03-06 10:01:02,784 [salt.state :320 ][INFO ][6376] {'status.uptime': '0:01:36.784096'} +2020-03-06 10:01:02,784 [salt.state :2045][INFO ][6376] Completed state [windows.module.status.uptime] at time 10:01:02.784096 (duration_in_ms=31.319) +2020-03-06 10:01:02,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cmd.run +2020-03-06 10:01:02,799 [salt.state :1867][INFO ][6376] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:01:02.799859 +2020-03-06 10:01:02,799 [salt.state :1900][INFO ][6376] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] +2020-03-06 10:01:02,799 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:03,285 [salt.loaded.int.states.cmd:344 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:03,285 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:04,549 [salt.state :320 ][INFO ][6376] {'retcode': 0, 'stderr': '', 'pid': 6804, 'stdout': ''} +2020-03-06 10:01:04,580 [salt.state :2045][INFO ][6376] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 10:01:04.580022 (duration_in_ms=1780.163) +2020-03-06 10:01:04,581 [salt.state :1867][INFO ][6376] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:01:04.581042 +2020-03-06 10:01:04,581 [salt.state :1900][INFO ][6376] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] +2020-03-06 10:01:04,581 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:05,096 [salt.loaded.int.states.cmd:344 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:05,096 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:05,986 [salt.state :320 ][INFO ][6376] {'retcode': 0, 'stderr': '', 'pid': 6580, 'stdout': ''} +2020-03-06 10:01:05,986 [salt.state :2045][INFO ][6376] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 10:01:05.986860 (duration_in_ms=1405.818) +2020-03-06 10:01:05,986 [salt.state :1867][INFO ][6376] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:01:05.986860 +2020-03-06 10:01:05,986 [salt.state :1900][INFO ][6376] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] +2020-03-06 10:01:05,986 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:06,487 [salt.loaded.int.states.cmd:344 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:06,487 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:07,439 [salt.state :320 ][INFO ][6376] {'retcode': 0, 'stderr': '', 'pid': 1388, 'stdout': ''} +2020-03-06 10:01:07,439 [salt.state :2045][INFO ][6376] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 10:01:07.439977 (duration_in_ms=1453.117) +2020-03-06 10:01:07,439 [salt.state :1867][INFO ][6376] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:01:07.439977 +2020-03-06 10:01:07,439 [salt.state :1900][INFO ][6376] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] +2020-03-06 10:01:07,439 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:07,893 [salt.loaded.int.states.cmd:344 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:07,893 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:08,742 [salt.state :320 ][INFO ][6376] {'retcode': 0, 'stderr': '', 'pid': 7036, 'stdout': ''} +2020-03-06 10:01:08,755 [salt.state :2045][INFO ][6376] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 10:01:08.755749 (duration_in_ms=1315.772) +2020-03-06 10:01:08,755 [salt.state :1867][INFO ][6376] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:01:08.755749 +2020-03-06 10:01:08,755 [salt.state :1900][INFO ][6376] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] +2020-03-06 10:01:08,755 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:09,174 [salt.loaded.int.states.cmd:344 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:09,190 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:10,083 [salt.state :320 ][INFO ][6376] {'retcode': 0, 'stderr': '', 'pid': 2036, 'stdout': ''} +2020-03-06 10:01:10,100 [salt.state :2045][INFO ][6376] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 10:01:10.100896 (duration_in_ms=1345.147) +2020-03-06 10:01:10,100 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded reg.present +2020-03-06 10:01:10,100 [salt.state :1867][INFO ][6376] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:01:10.100896 +2020-03-06 10:01:10,100 [salt.state :1900][INFO ][6376] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:01:10,831 [salt.config :2215][DEBUG ][6376] Missing configuration file: /etc/salt/minion +2020-03-06 10:01:10,831 [salt.config :3612][DEBUG ][6376] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:01:10,971 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:01:10,971 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:01:11,409 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:01:11,409 [salt.loader :1671][DEBUG ][6376] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:00:56,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded ddns.update -2020-03-04 12:00:56,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded chassis.cmd -2020-03-04 12:00:56,350 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:00:56,364 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:00:56,380 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:00:56,397 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:00:56,583 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded esxi.cmd -2020-03-04 12:00:56,648 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded git.version -2020-03-04 12:00:56,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded github.list_users -2020-03-04 12:00:56,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded glanceng.image_get -2020-03-04 12:00:56,677 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded elasticsearch.exists -2020-03-04 12:00:56,692 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: grafana_version, ret: _|- -2020-03-04 12:00:56,692 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: grafana_version, ret: _|- -2020-03-04 12:00:56,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded icinga2.generate_ticket -2020-03-04 12:00:56,723 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded ifttt.trigger_event -2020-03-04 12:00:56,723 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:00:56,739 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:00:56,755 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:00:56,770 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:00:56,805 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:00:56,818 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:00:56,849 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:00:56,849 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.domain_get -2020-03-04 12:00:56,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:00:56,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.group_get -2020-03-04 12:00:56,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.project_get -2020-03-04 12:00:56,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.role_get -2020-03-04 12:00:56,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.role_grant -2020-03-04 12:00:56,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.service_get -2020-03-04 12:00:56,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.user_get -2020-03-04 12:00:56,898 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:00:56,931 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:00:56,942 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:00:56,961 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:00:56,973 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:00:56,989 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:00:57,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:00:57,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:00:57,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:00:57,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:00:57,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded memcached.status -2020-03-04 12:00:57,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mongodb.db_exists -2020-03-04 12:00:57,040 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mongodb.user_exists -2020-03-04 12:00:57,040 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:00:57,040 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:00:57,040 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:00:57,040 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:00:57,084 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_networks -2020-03-04 12:00:57,084 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_subnets -2020-03-04 12:00:57,084 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_subnets -2020-03-04 12:00:57,084 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_subnets -2020-03-04 12:00:57,098 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded npm.list -2020-03-04 12:00:57,098 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nxos.cmd -2020-03-04 12:00:57,114 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:00:57,130 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:00:57,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded panos.commit -2020-03-04 12:00:57,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pdbedit.create -2020-03-04 12:00:57,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pecl.list -2020-03-04 12:00:57,599 [pip.vcs :60 ][DEBUG ][6920] Registered VCS backend: git -2020-03-04 12:00:57,693 [pip.vcs :60 ][DEBUG ][6920] Registered VCS backend: hg -2020-03-04 12:00:57,726 [pip.pep425tags :79 ][DEBUG ][6920] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:00:57,737 [pip.pep425tags :79 ][DEBUG ][6920] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:00:57,739 [pip.pep425tags :79 ][DEBUG ][6920] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:00:57,739 [pip.pep425tags :79 ][DEBUG ][6920] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:00:57,962 [pip.vcs :60 ][DEBUG ][6920] Registered VCS backend: svn -2020-03-04 12:00:57,962 [pip.vcs :60 ][DEBUG ][6920] Registered VCS backend: bzr -2020-03-04 12:00:58,103 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:00:58,103 [salt.loader :1577][DEBUG ][6920] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:01:12,346 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt.secret_key, ret: _|- +2020-03-06 10:01:12,346 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt:secret_key, ret: _|- +2020-03-06 10:01:13,612 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet.api_key, ret: _|- +2020-03-06 10:01:13,612 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet:api_key, ret: _|- +2020-03-06 10:01:14,033 [salt.loader :1671][DEBUG ][6376] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:00:58,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.cluster_exists -2020-03-04 12:00:58,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.user_exists -2020-03-04 12:00:58,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.create_extension -2020-03-04 12:00:58,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.group_create -2020-03-04 12:00:58,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.datadir_init -2020-03-04 12:00:58,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.language_create -2020-03-04 12:00:58,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.privileges_grant -2020-03-04 12:00:58,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.schema_exists -2020-03-04 12:00:58,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.tablespace_exists -2020-03-04 12:00:58,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.user_exists -2020-03-04 12:00:58,193 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:00:58,224 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded selinux.getenforce -2020-03-04 12:00:58,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded splunk.list_users -2020-03-04 12:00:58,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded splunk_search.get -2020-03-04 12:00:58,272 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:00:58,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded tomcat.status -2020-03-04 12:00:58,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded vagrant.version -2020-03-04 12:00:58,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded victorops.create_event -2020-03-04 12:00:58,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded win_iis.create_site -2020-03-04 12:00:58,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded win_servermanager.install -2020-03-04 12:00:58,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:00:58,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded wordpress.show_plugin -2020-03-04 12:00:58,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded x509.get_pem_entry -2020-03-04 12:00:58,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded xmpp.send_msg -2020-03-04 12:00:58,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded zk_concurrency.lock -2020-03-04 12:00:58,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded zonecfg.create -2020-03-04 12:00:58,459 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded zookeeper.create -2020-03-04 12:00:58,459 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:00:58,474 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:00:58,739 [salt.state :889 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:00:58,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded dacl.check_perms -2020-03-04 12:00:58,754 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6920] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:00:58,770 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6920] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:01:14,219 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops.api_key, ret: _|- +2020-03-06 10:01:14,219 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops:api_key, ret: _|- +2020-03-06 10:01:19,460 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad acme.cert: 'acme' __virtual__ returned False: The ACME execution module cannot be loaded: letsencrypt-auto not installed. +2020-03-06 10:01:19,467 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded alternatives.auto +2020-03-06 10:01:19,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded apache.config +2020-03-06 10:01:19,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded apache.a2enconf +2020-03-06 10:01:19,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded apache.a2enmod +2020-03-06 10:01:19,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded apache.a2ensite +2020-03-06 10:01:19,537 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:01:19,550 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded at.at +2020-03-06 10:01:19,565 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:01:19,585 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:01:19,597 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:01:19,622 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:01:19,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:01:19,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded disk.tune +2020-03-06 10:01:19,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:01:19,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:01:19,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:01:19,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:01:19,676 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:01:19,676 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_asg.exists +2020-03-06 10:01:19,676 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cfn.exists +2020-03-06 10:01:19,687 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:01:19,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:01:19,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:01:19,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:01:19,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:01:19,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:01:19,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_dynamodb.exists +2020-03-06 10:01:19,723 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_ec2.get_key +2020-03-06 10:01:19,723 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elasticache.exists +2020-03-06 10:01:19,723 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:01:19,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elb.exists +2020-03-06 10:01:19,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:01:19,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_iam.get_user +2020-03-06 10:01:19,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_iam.role_exists +2020-03-06 10:01:19,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_iot.policy_exists +2020-03-06 10:01:19,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_kinesis.exists +2020-03-06 10:01:19,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_kms.describe_key +2020-03-06 10:01:19,784 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_lambda.function_exists +2020-03-06 10:01:19,784 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_asg.exists +2020-03-06 10:01:19,784 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_rds.exists +2020-03-06 10:01:19,784 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_route53.get_record +2020-03-06 10:01:19,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:01:19,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:01:19,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_secgroup.exists +2020-03-06 10:01:19,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_sns.exists +2020-03-06 10:01:19,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_sqs.exists +2020-03-06 10:01:19,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_vpc.exists +2020-03-06 10:01:19,830 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded bower.list +2020-03-06 10:01:19,830 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded chef.client +2020-03-06 10:01:19,847 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cimc.get_system_info +2020-03-06 10:01:19,847 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cisconso.set_data_value +2020-03-06 10:01:19,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cron.list_tab +2020-03-06 10:01:19,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded ddns.update +2020-03-06 10:01:19,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded chassis.cmd +2020-03-06 10:01:19,912 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:01:19,925 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:01:19,956 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:01:19,972 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:01:20,003 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded eselect.exec_action +2020-03-06 10:01:20,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded esxi.cmd +2020-03-06 10:01:20,264 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded git.version +2020-03-06 10:01:20,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded github.list_users +2020-03-06 10:01:20,283 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded glanceng.image_get +2020-03-06 10:01:20,283 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded glusterfs.list_volumes +2020-03-06 10:01:20,283 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded elasticsearch.exists +2020-03-06 10:01:20,299 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: grafana_version, ret: _|- +2020-03-06 10:01:20,299 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: grafana_version, ret: _|- +2020-03-06 10:01:20,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded icinga2.generate_ticket +2020-03-06 10:01:20,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded ifttt.trigger_event +2020-03-06 10:01:20,349 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:01:20,362 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:01:20,408 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:01:20,426 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:01:20,455 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:01:20,474 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:01:20,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded ipset.version +2020-03-06 10:01:20,502 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded iptables.version +2020-03-06 10:01:20,502 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded kapacitor.version +2020-03-06 10:01:20,518 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:01:20,539 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keyboard.get_sys +2020-03-06 10:01:20,539 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystone.auth +2020-03-06 10:01:20,539 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.domain_get +2020-03-06 10:01:20,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:01:20,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.group_get +2020-03-06 10:01:20,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.project_get +2020-03-06 10:01:20,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.role_get +2020-03-06 10:01:20,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.role_grant +2020-03-06 10:01:20,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.service_get +2020-03-06 10:01:20,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.user_get +2020-03-06 10:01:20,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystore.list +2020-03-06 10:01:20,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded kmod.available +2020-03-06 10:01:20,583 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:01:20,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded layman.add +2020-03-06 10:01:20,614 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:01:20,631 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded logadm.list_conf +2020-03-06 10:01:20,631 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded logrotate.show_conf +2020-03-06 10:01:20,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lvs.get_rules +2020-03-06 10:01:20,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lvs.get_rules +2020-03-06 10:01:20,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:01:20,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:01:20,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:01:20,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:01:20,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded makeconf.get_var +2020-03-06 10:01:20,691 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded memcached.status +2020-03-06 10:01:20,691 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded mongodb.db_exists +2020-03-06 10:01:20,691 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded mongodb.user_exists +2020-03-06 10:01:20,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded monit.summary +2020-03-06 10:01:20,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_networks +2020-03-06 10:01:20,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_subnets +2020-03-06 10:01:20,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_subnets +2020-03-06 10:01:20,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_subnets +2020-03-06 10:01:20,771 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nftables.version +2020-03-06 10:01:20,771 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded npm.list +2020-03-06 10:01:20,782 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nxos.cmd +2020-03-06 10:01:20,783 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded openvswitch.bridge_create +2020-03-06 10:01:20,783 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded openvswitch.port_add +2020-03-06 10:01:20,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded panos.commit +2020-03-06 10:01:20,817 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pdbedit.create +2020-03-06 10:01:20,817 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pecl.list +2020-03-06 10:01:21,190 [pip.vcs :60 ][DEBUG ][6376] Registered VCS backend: git +2020-03-06 10:01:21,252 [pip.vcs :60 ][DEBUG ][6376] Registered VCS backend: hg +2020-03-06 10:01:21,284 [pip.pep425tags :79 ][DEBUG ][6376] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:01:21,284 [pip.pep425tags :79 ][DEBUG ][6376] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:01:21,284 [pip.pep425tags :79 ][DEBUG ][6376] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:01:21,284 [pip.pep425tags :79 ][DEBUG ][6376] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:01:21,424 [pip.vcs :60 ][DEBUG ][6376] Registered VCS backend: svn +2020-03-06 10:01:21,424 [pip.vcs :60 ][DEBUG ][6376] Registered VCS backend: bzr +2020-03-06 10:01:21,534 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:01:21,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:01:21,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.cluster_exists +2020-03-06 10:01:21,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.user_exists +2020-03-06 10:01:21,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.create_extension +2020-03-06 10:01:21,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.group_create +2020-03-06 10:01:21,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.datadir_init +2020-03-06 10:01:21,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.language_create +2020-03-06 10:01:21,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.privileges_grant +2020-03-06 10:01:21,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.schema_exists +2020-03-06 10:01:21,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.tablespace_exists +2020-03-06 10:01:21,580 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.user_exists +2020-03-06 10:01:21,597 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded quota.report +2020-03-06 10:01:21,612 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:01:21,643 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:01:21,658 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:01:21,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded selinux.getenforce +2020-03-06 10:01:21,786 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:01:21,786 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded snapper.diff +2020-03-06 10:01:21,797 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded splunk.list_users +2020-03-06 10:01:21,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded splunk_search.get +2020-03-06 10:01:21,832 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:01:21,862 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded tomcat.status +2020-03-06 10:01:21,862 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded trafficserver.set_config +2020-03-06 10:01:21,862 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded vagrant.version +2020-03-06 10:01:21,877 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded victorops.create_event +2020-03-06 10:01:21,877 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded virt.node_info +2020-03-06 10:01:21,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded win_iis.create_site +2020-03-06 10:01:21,924 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded win_servermanager.install +2020-03-06 10:01:21,924 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:01:21,958 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded wordpress.show_plugin +2020-03-06 10:01:21,972 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded x509.get_pem_entry +2020-03-06 10:01:21,972 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded xmpp.send_msg +2020-03-06 10:01:22,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded zk_concurrency.lock +2020-03-06 10:01:22,033 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded zonecfg.create +2020-03-06 10:01:22,033 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded zookeeper.create +2020-03-06 10:01:22,049 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:01:22,049 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:01:22,236 [salt.state :906 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:22,236 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][6376] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:01:22,236 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6376] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:01:22,236 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6376] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:00:58,770 [salt.state :320 ][INFO ][6920] {'reg': {'Added': {'Inheritance': True, 'Value': 1, 'Owner': None, 'Perms': {'Grant': None, 'Deny': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions'}}} -2020-03-04 12:00:58,770 [salt.state :1997][INFO ][6920] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:00:58.770800 (duration_in_ms=11093.533) -2020-03-04 12:00:58,770 [salt.state :1819][INFO ][6920] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:00:58.770800 -2020-03-04 12:00:58,770 [salt.state :1852][INFO ][6920] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:00:58,803 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:00:58,803 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' -2020-03-04 12:00:59,146 [salt.state :889 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:00:59,146 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6920] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:00:59,146 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6920] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +2020-03-06 10:01:22,252 [salt.state :320 ][INFO ][6376] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Perms': {'Deny': None, 'Grant': None}, 'Entry': 'SystemDefaultTlsVersions', 'Owner': None, 'Value': 1}}} +2020-03-06 10:01:22,252 [salt.state :2045][INFO ][6376] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:01:22.252543 (duration_in_ms=12151.647) +2020-03-06 10:01:22,252 [salt.state :1867][INFO ][6376] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:01:22.252543 +2020-03-06 10:01:22,252 [salt.state :1900][INFO ][6376] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:01:22,269 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:01:22,269 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:01:22,424 [salt.state :906 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:22,424 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][6376] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:01:22,424 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6376] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:01:22,440 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6376] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:00:59,146 [salt.state :320 ][INFO ][6920] {'reg': {'Added': {'Inheritance': True, 'Value': 1, 'Owner': None, 'Perms': {'Grant': None, 'Deny': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions'}}} -2020-03-04 12:00:59,161 [salt.state :1997][INFO ][6920] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:00:59.161222 (duration_in_ms=390.422) -2020-03-04 12:00:59,161 [salt.state :1819][INFO ][6920] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:00:59.161222 -2020-03-04 12:00:59,161 [salt.state :1852][INFO ][6920] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] -2020-03-04 12:00:59,161 [salt.utils.http :234 ][DEBUG ][6920] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method -2020-03-04 12:00:59,161 [salt.utils.http :235 ][DEBUG ][6920] Using backend: tornado -2020-03-04 12:00:59,853 [salt.loaded.int.states.archive:976 ][DEBUG ][6920] file.cached: {'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'result': True, 'changes': {'hash': {'old': None, 'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36'}}} -2020-03-04 12:00:59,860 [salt.loaded.int.states.archive:91 ][DEBUG ][6920] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:00:59,864 [salt.loaded.int.states.archive:996 ][DEBUG ][6920] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected -2020-03-04 12:00:59,911 [salt.loaded.int.module.win_file:1463][DEBUG ][6920] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win -2020-03-04 12:00:59,927 [salt.loaded.int.module.win_file:1463][DEBUG ][6920] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -2020-03-04 12:00:59,927 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6920] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:00:59,927 [salt.loaded.int.states.archive:1247][DEBUG ][6920] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:01:00,162 [salt.loaded.int.states.archive:1543][DEBUG ][6920] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:01:00,162 [salt.state :320 ][INFO ][6920] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} -2020-03-04 12:01:00,162 [salt.state :1997][INFO ][6920] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:01:00.162430 (duration_in_ms=1001.208) -2020-03-04 12:01:00,178 [salt.state :1819][INFO ][6920] Running state [rename-extract] at time 12:01:00.178586 -2020-03-04 12:01:00,178 [salt.state :1852][INFO ][6920] Executing state module.run for [rename-extract] -2020-03-04 12:01:00,178 [salt.state :320 ][INFO ][6920] {'file.rename': True} -2020-03-04 12:01:00,178 [salt.state :1997][INFO ][6920] Completed state [rename-extract] at time 12:01:00.178586 (duration_in_ms=0.0) -2020-03-04 12:01:00,178 [salt.state :1819][INFO ][6920] Running state [pkg.refresh_db] at time 12:01:00.178586 -2020-03-04 12:01:00,178 [salt.state :1852][INFO ][6920] Executing state module.run for [pkg.refresh_db] -2020-03-04 12:01:00,178 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][6920] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:24.126123) -2020-03-04 12:01:00,178 [salt.loaded.int.module.win_pkg:935 ][INFO ][6920] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:01:00,178 [salt.loaded.int.module.win_pkg:954 ][INFO ][6920] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:01:00,193 [salt.fileclient :234 ][INFO ][6920] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:01:00,399 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:01:00,407 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:01:00,407 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:01:00,411 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,411 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:01:00,411 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:01:00,427 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:01:00,427 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:01:00,427 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,427 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:01:00,427 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:01:00,427 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:01:00,442 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:01:00,442 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,442 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:01:00,442 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:01:00,442 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:01:00,442 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:01:00,442 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,458 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:01:00,458 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:01:00,458 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:01:00,458 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:01:00,458 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,473 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:01:00,473 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:01:00,473 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:01:00,473 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:01:00,473 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,489 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:01:00,489 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:01:00,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:01:00,489 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:01:00,489 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,504 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:01:00,504 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:01:00,504 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:01:00,504 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:01:00,504 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,504 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:01:00,520 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:01:00,520 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:01:00,520 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:01:00,520 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,520 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:01:00,520 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:01:00,536 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:01:00,536 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:01:00,536 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,536 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:01:00,536 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:01:00,536 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:01:00,536 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:01:00,552 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,552 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:01:00,552 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:01:00,552 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:01:00,552 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:01:00,552 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,567 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:01:00,567 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:01:00,567 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:01:00,567 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:01:00,567 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,583 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:01:00,583 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:01:00,583 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:01:00,583 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:01:00,583 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,599 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:01:00,599 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:01:00,599 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:01:00,599 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:01:00,599 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,599 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:01:00,614 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:01:00,614 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:01:00,614 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:01:00,614 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,614 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:01:00,614 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:01:00,630 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:01:00,630 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:01:00,630 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,630 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:01:00,630 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:01:00,630 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:01:00,630 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:01:00,646 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,646 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:01:00,646 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:01:00,646 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:01:00,646 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:01:00,646 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,664 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:01:00,664 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:01:00,664 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:01:00,664 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:01:00,664 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,678 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:01:00,678 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:01:00,678 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:01:00,678 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:01:00,678 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,692 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:01:00,692 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:01:00,692 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:01:00,692 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:01:00,692 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,692 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:01:00,708 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:01:00,708 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:01:00,708 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:01:00,708 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,708 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:01:00,708 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:01:00,725 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:01:00,725 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:01:00,725 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,725 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:01:00,725 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:01:00,725 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:01:00,739 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:01:00,739 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,739 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:01:00,739 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:01:00,739 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:01:00,739 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:01:00,739 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,755 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:01:00,755 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:01:00,755 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:01:00,755 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:01:00,755 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,770 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:01:00,770 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:01:00,770 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:01:00,770 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:01:00,770 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,786 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:01:00,786 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:01:00,786 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:01:00,786 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:01:00,786 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,801 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:01:00,801 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:01:00,801 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:01:00,801 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:01:00,801 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,801 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:01:00,818 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:01:00,818 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:01:00,818 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:01:00,818 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,818 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:01:00,818 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:01:00,832 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:01:00,832 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:01:00,832 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,832 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:01:00,849 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:01:00,849 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:01:00,849 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:01:00,849 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,849 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:01:00,849 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:01:00,849 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:01:00,849 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:01:00,865 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,865 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:01:00,865 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:01:00,865 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:01:00,865 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:01:00,865 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,879 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:01:00,879 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:01:00,879 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:01:00,879 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:01:00,879 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,896 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:01:00,896 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:01:00,896 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:01:00,896 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:01:00,896 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,896 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:01:00,911 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:01:00,911 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:01:00,911 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:01:00,911 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,926 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:01:00,926 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:01:00,926 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:01:00,926 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:01:00,926 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,942 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:01:00,942 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:01:00,942 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:01:00,942 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:01:00,942 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,958 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:01:00,958 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:01:00,958 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:01:00,958 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:01:00,958 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,973 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:01:00,973 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:01:00,973 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:01:00,973 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:01:00,973 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:00,990 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:01:01,004 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:01:01,004 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:01:01,004 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:01:01,004 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,004 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:01:01,004 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:01:01,004 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:01:01,020 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:01:01,020 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,020 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:01:01,020 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:01:01,036 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:01:01,036 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:01:01,036 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,036 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:01:01,055 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:01:01,055 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:01:01,055 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:01:01,055 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,055 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:01:01,067 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:01:01,067 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:01:01,067 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:01:01,067 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,067 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:01:01,067 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:01:01,083 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:01:01,083 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:01:01,083 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,083 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:01:01,083 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:01:01,099 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:01:01,099 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:01:01,099 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,099 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:01:01,099 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:01:01,099 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:01:01,099 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:01:01,114 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,114 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:01:01,114 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:01:01,114 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:01:01,114 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:01:01,114 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,130 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:01:01,130 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:01:01,130 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:01:01,130 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:01:01,130 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,130 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:01:01,130 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:01:01,145 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:01:01,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:01:01,145 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,145 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:01:01,145 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:01:01,145 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:01:01,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:01:01,172 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,177 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:01:01,177 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:01:01,177 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:01:01,177 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:01:01,177 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,177 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:01:01,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:01:01,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:01:01,192 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:01:01,192 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,192 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:01:01,208 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:01:01,208 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:01:01,208 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:01:01,208 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,208 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:01:01,224 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:01:01,224 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:01:01,224 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:01:01,224 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,224 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:01:01,239 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:01:01,239 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:01:01,239 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:01:01,239 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,239 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:01:01,239 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:01:01,239 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:01:01,255 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:01:01,255 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,255 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:01:01,255 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:01:01,255 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:01:01,270 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:01:01,270 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,270 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:01:01,270 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:01:01,270 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:01:01,286 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:01:01,286 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,286 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:01:01,286 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:01:01,286 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:01:01,302 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:01:01,302 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,302 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:01:01,302 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:01:01,302 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:01:01,302 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:01:01,317 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,317 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:01:01,317 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:01:01,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:01:01,333 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:01:01,333 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,333 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:01:01,349 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:01:01,349 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:01:01,349 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:01:01,349 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,349 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:01:01,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:01:01,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:01:01,364 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:01:01,364 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,364 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:01:01,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:01:01,380 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:01:01,380 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:01:01,380 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,380 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:01:01,380 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:01:01,395 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:01:01,395 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:01:01,395 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,395 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:01:01,411 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:01:01,411 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:01:01,411 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:01:01,411 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,411 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:01:01,427 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:01:01,427 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:01:01,427 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:01:01,427 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,427 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:01:01,442 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:01:01,442 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:01:01,442 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:01:01,442 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,458 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:01:01,458 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:01:01,458 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:01:01,458 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:01:01,458 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,474 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:01:01,474 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:01:01,474 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:01:01,474 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:01:01,474 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,489 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:01:01,489 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:01:01,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:01:01,489 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:01:01,489 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,505 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:01:01,505 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:01:01,505 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:01:01,505 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:01:01,505 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,521 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:01:01,521 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:01:01,521 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:01:01,521 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:01:01,521 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,536 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:01:01,536 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:01:01,536 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:01:01,536 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:01:01,536 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,551 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:01:01,551 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:01:01,551 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:01:01,551 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:01:01,551 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,567 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:01:01,567 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:01:01,567 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:01:01,567 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:01:01,567 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,583 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:01:01,583 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:01:01,583 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:01:01,583 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:01:01,583 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,598 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:01:01,598 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:01:01,598 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:01:01,598 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:01:01,598 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,614 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:01:01,614 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:01:01,614 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:01:01,614 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:01:01,614 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,614 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:01:01,630 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:01:01,630 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:01:01,630 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:01:01,630 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,630 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:01:01,645 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:01:01,645 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:01:01,645 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:01:01,645 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,645 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:01:01,662 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:01:01,662 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:01:01,662 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:01:01,662 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,662 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:01:01,677 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:01:01,677 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:01:01,677 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:01:01,677 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,677 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:01:01,692 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:01:01,692 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:01:01,692 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:01:01,692 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,692 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:01:01,708 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:01:01,708 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:01:01,708 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:01:01,708 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,708 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:01:01,723 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:01:01,723 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:01:01,723 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:01:01,723 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,723 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:01:01,723 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:01:01,723 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:01:01,739 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:01:01,739 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,739 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:01:01,739 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:01:01,739 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:01:01,754 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:01:01,755 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,755 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:01:01,755 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:01:01,755 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:01:01,755 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:01:01,755 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,770 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:01:01,770 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:01:01,770 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:01:01,770 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:01:01,770 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,770 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:01:01,786 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:01:01,786 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:01:01,786 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:01:01,786 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,786 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:01:01,786 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:01:01,786 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:01:01,801 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:01:01,801 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,801 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:01:01,801 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:01:01,801 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:01:01,801 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:01:01,801 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,817 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:01:01,817 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:01:01,817 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:01:01,817 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:01:01,817 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,817 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:01:01,817 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:01:01,833 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:01:01,833 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:01:01,833 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,833 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:01:01,833 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:01:01,833 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:01:01,833 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:01:01,849 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,865 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:01:01,865 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:01:01,865 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:01:01,865 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:01:01,865 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,865 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,880 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:01:01,880 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,897 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:01:01,897 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:01:01,897 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:01:01,897 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:01:01,897 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,912 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:01:01,912 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:01:01,912 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:01:01,912 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:01:01,912 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,912 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:01:01,927 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:01:01,927 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:01:01,927 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:01:01,927 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,927 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:01:01,927 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:01:01,927 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:01:01,927 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:01:01,943 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,943 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:01:01,943 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:01:01,943 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:01:01,943 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:01:01,943 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,960 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:01:01,960 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:01:01,960 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:01:01,960 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:01:01,960 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,960 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,974 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:01:01,974 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:01,991 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:01:01,991 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:01:01,991 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:01:01,991 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:01:01,991 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,018 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:01:02,020 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:01:02,020 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:01:02,020 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:01:02,020 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,020 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:01:02,020 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:01:02,036 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:01:02,036 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:01:02,036 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,036 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:01:02,036 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:01:02,051 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:01:02,051 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:01:02,051 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,051 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:01:02,051 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:01:02,067 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:01:02,067 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:01:02,067 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,067 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:01:02,067 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:01:02,067 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:01:02,067 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:01:02,067 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,083 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:01:02,083 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:01:02,083 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:01:02,083 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:01:02,083 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,098 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:01:02,098 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:01:02,098 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:01:02,098 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:01:02,098 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,098 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:01:02,098 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:01:02,114 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:01:02,114 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:01:02,114 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,114 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:01:02,114 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:01:02,130 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:01:02,130 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:01:02,130 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,130 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:01:02,130 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:01:02,130 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:01:02,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:01:02,145 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,145 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:01:02,145 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:01:02,145 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:01:02,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:01:02,145 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,161 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:01:02,161 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:01:02,161 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:01:02,161 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:01:02,161 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,177 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:01:02,177 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:01:02,177 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:01:02,177 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:01:02,177 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,192 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:01:02,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:01:02,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:01:02,192 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:01:02,192 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,208 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:01:02,208 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:01:02,208 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:01:02,208 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:01:02,208 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,208 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:01:02,208 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:01:02,224 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:01:02,224 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:01:02,224 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,224 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:01:02,224 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:01:02,239 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:01:02,239 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:01:02,239 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,239 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:01:02,239 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:01:02,239 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:01:02,255 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:01:02,255 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,255 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:01:02,255 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:01:02,255 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:01:02,255 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:01:02,255 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,270 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:01:02,270 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:01:02,270 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:01:02,270 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:01:02,270 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,286 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:01:02,286 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:01:02,286 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:01:02,286 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:01:02,286 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,301 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:01:02,301 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,301 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,301 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,301 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,301 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,317 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,317 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,317 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,317 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,317 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:01:02,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:01:02,333 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:01:02,333 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,333 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:01:02,349 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:01:02,349 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:01:02,349 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:01:02,349 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,349 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:01:02,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:01:02,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:01:02,364 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:01:02,364 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,364 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:01:02,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:01:02,379 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:01:02,380 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:01:02,380 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,380 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:01:02,380 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:01:02,380 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:01:02,380 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:01:02,395 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,395 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:01:02,395 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:01:02,395 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:01:02,395 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:01:02,395 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,411 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:01:02,411 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,411 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,411 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,411 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,427 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:01:02,427 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,427 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,427 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,427 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,441 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,442 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:01:02,442 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:01:02,442 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:01:02,442 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,442 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:01:02,458 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,458 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,458 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,458 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,458 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:01:02,474 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:01:02,474 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:01:02,474 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:01:02,474 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,474 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:01:02,489 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:01:02,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:01:02,489 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:01:02,489 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,489 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:01:02,489 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:01:02,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:01:02,489 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:01:02,504 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,504 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:01:02,504 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:01:02,504 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:01:02,504 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:01:02,504 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,521 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:01:02,521 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:01:02,521 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:01:02,521 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:01:02,521 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,521 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:01:02,536 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:01:02,536 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:01:02,536 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:01:02,536 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,536 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:01:02,536 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:01:02,536 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:01:02,551 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:01:02,552 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,552 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:01:02,552 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:01:02,552 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:01:02,552 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:01:02,552 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,568 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:01:02,568 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:01:02,568 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:01:02,568 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:01:02,568 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,568 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:01:02,582 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:01:02,582 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:01:02,582 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:01:02,582 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,582 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:01:02,582 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:01:02,598 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:01:02,599 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:01:02,599 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,599 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:01:02,599 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:01:02,599 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:01:02,599 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:01:02,599 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,614 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:01:02,614 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:01:02,614 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:01:02,614 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:01:02,614 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,629 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:01:02,629 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:01:02,629 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:01:02,629 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:01:02,629 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,645 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:01:02,645 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:01:02,645 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:01:02,645 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:01:02,645 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,645 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:01:02,661 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:01:02,661 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:01:02,661 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:01:02,661 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,661 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:01:02,661 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:01:02,676 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:01:02,676 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:01:02,676 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,676 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:01:02,676 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:01:02,676 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:01:02,692 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:01:02,692 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,692 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:01:02,692 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:01:02,692 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:01:02,692 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:01:02,692 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,708 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:01:02,708 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:01:02,708 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:01:02,708 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:01:02,708 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,723 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:01:02,723 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:01:02,723 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:01:02,723 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:01:02,723 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,723 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:01:02,739 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:01:02,739 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:01:02,739 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:01:02,739 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,739 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:01:02,755 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:01:02,755 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:01:02,755 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:01:02,755 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,770 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:01:02,770 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:01:02,770 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:01:02,770 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:01:02,770 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,788 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:01:02,788 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:01:02,788 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:01:02,788 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:01:02,788 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,788 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:01:02,803 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:01:02,803 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:01:02,803 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:01:02,803 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,803 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:01:02,803 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:01:02,818 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:01:02,818 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:01:02,818 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,818 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:01:02,818 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:01:02,818 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:01:02,818 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:01:02,833 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,833 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:01:02,833 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:01:02,833 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:01:02,833 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:01:02,833 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,850 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:01:02,850 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:01:02,850 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:01:02,850 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:01:02,850 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,864 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:01:02,864 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:01:02,864 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:01:02,864 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:01:02,864 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,864 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:01:02,880 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:01:02,880 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:01:02,880 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:01:02,880 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,880 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:01:02,880 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:01:02,880 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:01:02,895 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:01:02,895 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,895 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:01:02,895 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:01:02,895 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:01:02,895 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:01:02,911 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,911 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:01:02,911 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:01:02,911 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:01:02,911 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:01:02,911 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,928 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:01:02,928 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:01:02,928 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:01:02,928 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:01:02,928 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,928 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:01:02,944 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:01:02,944 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:01:02,944 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:01:02,944 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,944 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:01:02,958 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:01:02,958 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:01:02,958 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:01:02,958 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,958 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:01:02,958 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:01:02,973 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:01:02,973 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:01:02,973 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,973 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:01:02,973 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:01:02,973 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:01:02,989 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:01:02,989 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:02,989 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:01:02,989 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:01:02,989 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:01:02,989 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:01:02,989 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,005 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:01:03,005 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:01:03,005 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:01:03,005 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:01:03,005 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,020 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:01:03,020 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:01:03,020 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:01:03,020 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:01:03,020 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,036 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:01:03,036 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:01:03,036 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:01:03,036 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:01:03,036 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,036 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:01:03,053 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:01:03,053 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:01:03,053 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:01:03,053 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,053 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:01:03,067 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:01:03,067 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:01:03,067 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:01:03,067 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,067 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:01:03,067 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:01:03,082 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:01:03,082 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:01:03,082 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,082 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:01:03,082 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:01:03,082 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:01:03,082 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:01:03,082 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,098 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:01:03,098 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:01:03,098 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:01:03,098 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:01:03,098 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,115 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:01:03,115 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:01:03,115 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:01:03,115 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:01:03,115 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,115 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:01:03,130 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:01:03,130 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:01:03,130 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:01:03,130 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,130 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:01:03,130 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:01:03,145 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:01:03,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:01:03,145 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,145 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:01:03,145 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:01:03,145 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:01:03,145 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:01:03,145 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,161 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:01:03,161 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:01:03,161 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:01:03,161 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:01:03,161 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,177 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:01:03,177 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:01:03,177 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:01:03,177 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:01:03,177 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,192 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:01:03,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:01:03,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:01:03,192 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:01:03,192 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,192 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:01:03,208 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:01:03,208 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:01:03,208 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:01:03,208 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,208 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:01:03,223 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:01:03,223 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:01:03,223 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:01:03,223 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,223 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:01:03,223 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:01:03,223 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:01:03,223 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:01:03,240 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,240 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:01:03,240 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:01:03,240 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:01:03,240 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:01:03,240 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,256 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:01:03,256 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:01:03,256 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:01:03,256 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:01:03,256 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,270 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:01:03,270 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:01:03,270 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:01:03,270 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:01:03,270 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,286 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:01:03,286 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:01:03,286 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:01:03,286 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:01:03,286 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,301 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:01:03,301 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:01:03,301 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:01:03,301 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:01:03,301 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,301 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:01:03,317 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:01:03,317 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:01:03,317 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:01:03,317 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,317 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:01:03,317 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:01:03,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:01:03,333 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:01:03,333 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,333 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:01:03,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:01:03,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:01:03,348 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:01:03,348 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,348 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:01:03,348 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:01:03,348 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:01:03,348 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:01:03,348 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,364 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:01:03,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:01:03,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:01:03,364 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:01:03,364 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,379 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:01:03,379 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:01:03,379 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:01:03,379 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:01:03,379 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,395 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:01:03,396 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:01:03,396 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:01:03,396 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:01:03,396 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,396 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:01:03,411 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:01:03,411 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:01:03,411 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:01:03,411 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,411 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:01:03,411 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:01:03,426 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:01:03,426 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:01:03,426 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,426 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:01:03,426 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:01:03,442 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:01:03,442 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:01:03,442 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,442 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:01:03,442 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:01:03,442 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:01:03,442 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:01:03,457 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,457 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:01:03,457 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:01:03,457 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:01:03,457 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:01:03,457 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,473 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:01:03,473 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:01:03,473 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:01:03,473 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:01:03,473 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,489 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:01:03,489 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:01:03,489 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:01:03,489 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:01:03,489 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,489 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:01:03,506 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:01:03,506 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:01:03,506 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:01:03,506 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,506 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:01:03,506 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:01:03,506 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:01:03,521 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:01:03,521 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,521 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:01:03,521 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:01:03,521 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:01:03,521 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:01:03,521 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,537 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:01:03,537 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:01:03,537 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:01:03,537 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:01:03,537 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,552 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:01:03,552 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:01:03,552 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:01:03,552 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:01:03,552 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,567 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:01:03,567 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:01:03,567 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:01:03,567 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:01:03,567 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,567 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:01:03,583 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:01:03,583 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:01:03,583 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:01:03,583 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,583 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:01:03,583 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:01:03,599 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:01:03,599 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:01:03,599 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,599 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:01:03,599 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:01:03,599 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:01:03,599 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:01:03,614 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,614 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:01:03,614 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:01:03,614 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:01:03,614 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:01:03,614 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,630 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:01:03,630 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:01:03,630 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:01:03,630 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:01:03,630 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,645 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:01:03,645 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:01:03,645 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:01:03,645 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:01:03,645 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,661 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:01:03,661 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:01:03,661 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:01:03,661 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:01:03,661 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,661 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:01:03,677 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:01:03,677 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:01:03,677 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:01:03,677 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,677 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:01:03,677 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:01:03,677 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:01:03,693 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:01:03,693 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,693 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:01:03,693 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:01:03,693 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:01:03,693 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:01:03,693 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,709 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:01:03,709 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:01:03,709 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:01:03,709 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:01:03,709 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,723 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:01:03,723 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:01:03,723 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:01:03,723 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:01:03,723 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,723 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:01:03,723 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:01:03,740 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:01:03,740 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:01:03,740 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,740 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:01:03,740 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:01:03,740 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:01:03,740 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:01:03,740 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,755 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:01:03,755 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:01:03,755 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:01:03,755 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:01:03,755 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,771 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:01:03,771 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:01:03,771 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:01:03,771 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:01:03,771 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,771 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:01:03,788 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:01:03,788 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:01:03,788 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:01:03,788 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,788 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:01:03,788 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:01:03,802 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:01:03,802 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:01:03,802 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,802 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:01:03,802 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:01:03,802 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:01:03,802 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:01:03,817 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,817 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:01:03,817 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:01:03,817 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:01:03,817 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:01:03,817 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,833 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:01:03,833 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:01:03,833 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:01:03,833 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:01:03,833 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,833 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:01:03,848 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:01:03,848 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:01:03,848 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:01:03,848 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,848 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:01:03,848 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:01:03,848 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:01:03,848 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:01:03,864 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,864 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:01:03,864 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:01:03,864 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:01:03,864 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:01:03,864 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,880 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:01:03,880 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:01:03,880 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:01:03,880 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:01:03,880 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,880 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:01:03,896 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:01:03,896 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:01:03,896 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:01:03,896 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,896 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:01:03,911 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:01:03,911 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:01:03,911 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:01:03,911 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,911 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:01:03,911 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:01:03,927 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:01:03,927 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:01:03,927 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,927 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:01:03,927 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:01:03,927 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:01:03,927 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:01:03,942 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,942 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:01:03,942 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:01:03,942 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:01:03,942 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:01:03,942 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,958 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:01:03,958 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:01:03,958 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:01:03,958 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:01:03,958 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,958 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:01:03,973 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:01:03,973 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:01:03,973 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:01:03,973 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,973 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:01:03,973 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:01:03,973 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:01:03,989 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:01:03,989 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:03,989 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:01:03,989 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:01:03,989 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:01:03,989 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:01:03,989 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,005 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:01:04,005 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:01:04,005 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:01:04,005 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:01:04,005 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,021 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:01:04,021 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:01:04,021 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:01:04,021 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:01:04,021 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,036 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:01:04,036 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:01:04,036 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:01:04,036 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:01:04,036 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,052 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:01:04,052 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:01:04,052 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:01:04,052 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:01:04,052 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,052 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:01:04,052 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:01:04,067 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:01:04,067 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:01:04,067 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,067 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:01:04,067 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:01:04,067 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:01:04,067 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:01:04,067 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,084 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:01:04,084 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:01:04,084 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:01:04,084 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:01:04,084 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,084 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:01:04,084 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:01:04,084 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:01:04,099 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:01:04,099 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,099 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:01:04,099 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:01:04,099 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:01:04,099 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:01:04,099 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,115 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:01:04,115 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:01:04,115 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:01:04,115 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:01:04,115 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,115 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:01:04,115 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:01:04,130 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:01:04,130 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:01:04,130 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,130 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:01:04,130 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:01:04,130 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:01:04,130 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:01:04,130 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,146 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:01:04,146 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:01:04,146 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:01:04,146 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:01:04,146 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,146 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:01:04,146 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:01:04,162 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:01:04,162 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:01:04,162 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,162 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:01:04,162 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:01:04,162 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:01:04,162 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:01:04,177 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,177 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:01:04,177 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:01:04,177 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:01:04,177 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:01:04,177 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,192 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:01:04,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:01:04,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:01:04,192 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:01:04,192 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,192 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:01:04,192 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:01:04,192 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:01:04,192 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:01:04,208 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,208 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:01:04,208 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:01:04,208 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:01:04,208 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:01:04,208 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,224 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:01:04,224 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:01:04,224 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:01:04,224 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:01:04,224 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,224 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:01:04,224 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:01:04,239 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:01:04,239 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:01:04,239 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,239 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:01:04,239 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:01:04,239 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:01:04,239 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:01:04,239 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,255 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:01:04,255 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:01:04,255 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:01:04,255 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:01:04,255 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,255 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:01:04,271 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:01:04,271 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:01:04,271 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:01:04,271 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,271 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:01:04,271 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:01:04,271 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:01:04,286 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:01:04,286 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,286 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:01:04,286 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:01:04,286 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:01:04,286 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:01:04,286 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,302 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:01:04,302 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:01:04,302 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:01:04,302 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:01:04,302 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,302 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:01:04,302 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:01:04,302 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:01:04,317 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:01:04,317 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,317 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:01:04,317 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:01:04,317 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:01:04,317 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:01:04,317 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,333 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:01:04,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:01:04,333 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:01:04,333 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:01:04,333 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,333 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:01:04,333 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:01:04,349 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:01:04,349 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:01:04,349 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,349 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:01:04,349 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:01:04,349 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:01:04,349 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:01:04,349 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,364 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:01:04,364 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:01:04,364 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:01:04,364 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:01:04,364 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,379 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:01:04,380 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:01:04,380 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:01:04,380 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:01:04,380 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,380 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:01:04,380 [salt.fileclient :1093][DEBUG ][6920] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:01:04,395 [salt.fileclient :1101][DEBUG ][6920] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:01:04,395 [salt.fileclient :1121][DEBUG ][6920] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:01:04,395 [salt.fileclient :1149][DEBUG ][6920] No dest file found -2020-03-04 12:01:04,395 [salt.fileclient :1230][INFO ][6920] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:01:04,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,411 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls -2020-03-04 12:01:04,411 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,411 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +2020-03-06 10:01:22,440 [salt.state :320 ][INFO ][6376] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Perms': {'Deny': None, 'Grant': None}, 'Entry': 'SystemDefaultTlsVersions', 'Owner': None, 'Value': 1}}} +2020-03-06 10:01:22,440 [salt.state :2045][INFO ][6376] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:01:22.440387 (duration_in_ms=187.844) +2020-03-06 10:01:22,440 [salt.state :1867][INFO ][6376] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:01:22.440387 +2020-03-06 10:01:22,440 [salt.state :1900][INFO ][6376] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:01:22,440 [salt.utils.http :234 ][DEBUG ][6376] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:01:22,440 [salt.utils.http :235 ][DEBUG ][6376] Using backend: tornado +2020-03-06 10:01:22,957 [salt.loaded.int.states.archive:1039][DEBUG ][6376] file.cached: {'result': True, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'changes': {'hash': {'old': None, 'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36'}}} +2020-03-06 10:01:22,957 [salt.loaded.int.states.archive:91 ][DEBUG ][6376] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:01:22,971 [salt.loaded.int.states.archive:1059][DEBUG ][6376] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:01:23,019 [salt.loaded.int.module.win_file:1463][DEBUG ][6376] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:01:23,019 [salt.loaded.int.module.win_file:1463][DEBUG ][6376] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:01:23,033 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6376] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:01:23,033 [salt.loaded.int.states.archive:1344][DEBUG ][6376] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:01:23,237 [salt.loaded.int.states.archive:1643][DEBUG ][6376] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:01:23,237 [salt.state :320 ][INFO ][6376] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} +2020-03-06 10:01:23,237 [salt.state :2045][INFO ][6376] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:01:23.237301 (duration_in_ms=796.914) +2020-03-06 10:01:23,237 [salt.state :1867][INFO ][6376] Running state [rename-extract] at time 10:01:23.237301 +2020-03-06 10:01:23,237 [salt.state :1900][INFO ][6376] Executing state module.run for [rename-extract] +2020-03-06 10:01:23,237 [salt.state :320 ][INFO ][6376] {'file.rename': True} +2020-03-06 10:01:23,253 [salt.state :2045][INFO ][6376] Completed state [rename-extract] at time 10:01:23.253753 (duration_in_ms=16.452) +2020-03-06 10:01:23,253 [salt.state :1867][INFO ][6376] Running state [pkg.refresh_db] at time 10:01:23.253753 +2020-03-06 10:01:23,253 [salt.state :1900][INFO ][6376] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:01:23,253 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][6376] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:23.984957) +2020-03-06 10:01:23,253 [salt.loaded.int.module.win_pkg:939 ][INFO ][6376] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:01:23,253 [salt.loaded.int.module.win_pkg:958 ][INFO ][6376] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:01:23,253 [salt.fileclient :234 ][INFO ][6376] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:01:23,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:01:23,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:01:23,471 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:01:23,471 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,471 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:01:23,487 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:01:23,487 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:01:23,487 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:01:23,487 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,487 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:01:23,487 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:01:23,487 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:01:23,502 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:01:23,502 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,502 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:01:23,502 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:01:23,502 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:01:23,502 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:01:23,502 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,530 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:01:23,533 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:01:23,533 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:01:23,533 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:01:23,533 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,533 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:01:23,533 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:01:23,533 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:01:23,549 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:01:23,549 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,549 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:01:23,549 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:01:23,549 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:01:23,549 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:01:23,549 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,565 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:01:23,565 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:01:23,565 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:01:23,565 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:01:23,565 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,565 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:01:23,565 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:01:23,581 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:01:23,581 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:01:23,581 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,581 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:01:23,581 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:01:23,581 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:01:23,581 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:01:23,581 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,597 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:01:23,597 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:01:23,597 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:01:23,597 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:01:23,597 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,597 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:01:23,597 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:01:23,597 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:01:23,613 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:01:23,613 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,613 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:01:23,613 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:01:23,613 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:01:23,613 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:01:23,613 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,628 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:01:23,628 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:01:23,628 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:01:23,628 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:01:23,628 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,628 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,643 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:01:23,643 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,658 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:01:23,658 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:01:23,658 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:01:23,658 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:01:23,658 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,674 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:01:23,674 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:01:23,674 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:01:23,674 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:01:23,674 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,674 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:01:23,690 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:01:23,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:01:23,690 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:01:23,690 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,690 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:01:23,690 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:01:23,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:01:23,705 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:01:23,705 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,705 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:01:23,705 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:01:23,705 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:01:23,705 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:01:23,705 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,721 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:01:23,721 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:01:23,721 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:01:23,721 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:01:23,721 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,721 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:01:23,721 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:01:23,721 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:01:23,737 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:01:23,737 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,737 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:01:23,737 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:01:23,737 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:01:23,737 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:01:23,737 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,752 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:01:23,752 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:01:23,752 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:01:23,752 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:01:23,752 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,752 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:01:23,752 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:01:23,752 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:01:23,768 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:01:23,768 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,768 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:01:23,768 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:01:23,768 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:01:23,768 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:01:23,790 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,790 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:01:23,790 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:01:23,799 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:01:23,799 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:01:23,799 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,799 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:01:23,799 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:01:23,799 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:01:23,799 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:01:23,799 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,815 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:01:23,815 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:01:23,815 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:01:23,815 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:01:23,815 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,831 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:01:23,831 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:01:23,831 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:01:23,831 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:01:23,831 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,831 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:01:23,831 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:01:23,846 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:01:23,846 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:01:23,846 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,846 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:01:23,846 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:01:23,846 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:01:23,846 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:01:23,846 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,862 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:01:23,862 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:01:23,862 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:01:23,862 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:01:23,862 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,862 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:01:23,862 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:01:23,877 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:01:23,877 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:01:23,877 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,877 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:01:23,877 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:01:23,877 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:01:23,877 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:01:23,877 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,893 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:01:23,893 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:01:23,893 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:01:23,893 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:01:23,893 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,893 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:01:23,893 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:01:23,909 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:01:23,909 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:01:23,909 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,909 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:01:23,909 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:01:23,909 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:01:23,909 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:01:23,909 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,924 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:01:23,924 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:01:23,924 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:01:23,924 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:01:23,924 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,924 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:01:23,924 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:01:23,924 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:01:23,924 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:01:23,940 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,940 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:01:23,940 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:01:23,940 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:01:23,940 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:01:23,940 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,940 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:01:23,940 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:01:23,956 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:01:23,956 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:01:23,956 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,956 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:01:23,956 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:01:23,956 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:01:23,956 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:01:23,956 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,971 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:01:23,971 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:01:23,971 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:01:23,971 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:01:23,971 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,971 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:01:23,971 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:01:23,971 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:01:23,971 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:01:23,986 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,987 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:01:23,987 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:01:23,987 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:01:23,987 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:01:23,987 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:23,987 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:01:23,987 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:01:23,987 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:01:24,004 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:01:24,004 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,004 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:01:24,004 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:01:24,004 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:01:24,004 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:01:24,004 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,019 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:01:24,019 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:01:24,019 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:01:24,019 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:01:24,019 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,019 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:01:24,019 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:01:24,019 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:01:24,019 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:01:24,035 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,049 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,049 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:01:24,049 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,066 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:01:24,066 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:01:24,066 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:01:24,066 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:01:24,066 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,066 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:01:24,066 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:01:24,066 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:01:24,081 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:01:24,081 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,081 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:01:24,081 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:01:24,081 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:01:24,081 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:01:24,081 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,081 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,097 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:01:24,097 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,112 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,112 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:01:24,112 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,128 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:01:24,128 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:01:24,128 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:01:24,128 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:01:24,128 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,128 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:01:24,128 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:01:24,144 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:01:24,144 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:01:24,144 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,144 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:01:24,144 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:01:24,144 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:01:24,144 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:01:24,144 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,159 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,159 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:01:24,159 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,175 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:01:24,175 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:01:24,175 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:01:24,175 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:01:24,175 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,175 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:01:24,175 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:01:24,175 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:01:24,190 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:01:24,190 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,190 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:01:24,190 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:01:24,190 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:01:24,190 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:01:24,190 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,190 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,206 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:01:24,206 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,206 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,222 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:01:24,222 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,238 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:01:24,238 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:01:24,238 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:01:24,238 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:01:24,238 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,238 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:01:24,238 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:01:24,238 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:01:24,238 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:01:24,253 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,253 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:01:24,253 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:01:24,253 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:01:24,253 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:01:24,253 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,253 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,268 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:01:24,268 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,284 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,284 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:01:24,284 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,300 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,300 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:01:24,300 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,315 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:01:24,315 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:01:24,315 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:01:24,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:01:24,315 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,315 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:01:24,315 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:01:24,315 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:01:24,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:01:24,331 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,331 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:01:24,331 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:01:24,331 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:01:24,331 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:01:24,331 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,331 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,347 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:01:24,347 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,362 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:01:24,362 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:01:24,362 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:01:24,362 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:01:24,362 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,362 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:01:24,362 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:01:24,377 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:01:24,377 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:01:24,377 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,377 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:01:24,377 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:01:24,377 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:01:24,377 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:01:24,377 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,393 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:01:24,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:01:24,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:01:24,393 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:01:24,393 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,393 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:01:24,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:01:24,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:01:24,393 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:01:24,409 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,409 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:01:24,409 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:01:24,409 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:01:24,409 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:01:24,409 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,409 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:01:24,409 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:01:24,409 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:01:24,425 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:01:24,425 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,425 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:01:24,425 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:01:24,425 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:01:24,425 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:01:24,425 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,425 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,439 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:01:24,439 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,455 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,455 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:01:24,455 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,471 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:01:24,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:01:24,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:01:24,471 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:01:24,471 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,471 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:01:24,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:01:24,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:01:24,471 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:01:24,487 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,487 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:01:24,487 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:01:24,487 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:01:24,487 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:01:24,487 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,487 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:01:24,487 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:01:24,502 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:01:24,502 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:01:24,502 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,502 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:01:24,502 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:01:24,502 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:01:24,502 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:01:24,502 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,502 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,518 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:01:24,518 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,534 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:01:24,534 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:01:24,534 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:01:24,534 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:01:24,534 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,534 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:01:24,534 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:01:24,534 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:01:24,534 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:01:24,550 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,550 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:01:24,550 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:01:24,550 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:01:24,550 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:01:24,550 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,550 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:01:24,550 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:01:24,550 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:01:24,566 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:01:24,566 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,566 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:01:24,566 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:01:24,566 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:01:24,566 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:01:24,566 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,566 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,581 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:01:24,581 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,596 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,596 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:01:24,596 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,613 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:01:24,613 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:01:24,613 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:01:24,613 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:01:24,613 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,613 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:01:24,613 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:01:24,613 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:01:24,613 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:01:24,628 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,628 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:01:24,628 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:01:24,628 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:01:24,628 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:01:24,628 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,628 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:01:24,628 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:01:24,628 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:01:24,644 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:01:24,644 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,644 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:01:24,644 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:01:24,644 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:01:24,644 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:01:24,644 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,644 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:01:24,659 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:01:24,659 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:01:24,659 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:01:24,659 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,659 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:01:24,659 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:01:24,659 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:01:24,659 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:01:24,675 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,675 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:01:24,675 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:01:24,675 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:01:24,675 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:01:24,675 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,675 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,690 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:01:24,690 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,706 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,706 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:01:24,706 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,722 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:01:24,722 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:01:24,722 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:01:24,722 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:01:24,722 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,722 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:01:24,722 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:01:24,722 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:01:24,737 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:01:24,737 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,737 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:01:24,737 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:01:24,737 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:01:24,737 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:01:24,737 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,737 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:01:24,737 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:01:24,752 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:01:24,752 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:01:24,752 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,752 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:01:24,752 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:01:24,752 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:01:24,752 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:01:24,752 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,768 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:01:24,768 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:01:24,768 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:01:24,768 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:01:24,768 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,783 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:01:24,783 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:01:24,783 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:01:24,783 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:01:24,783 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,783 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:01:24,783 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,799 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,799 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,799 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,816 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,816 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,816 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,816 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,816 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,831 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,831 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:01:24,831 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,846 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:01:24,846 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:01:24,846 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:01:24,846 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:01:24,846 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,846 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:01:24,846 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:01:24,846 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:01:24,846 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:01:24,863 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,863 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:01:24,863 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:01:24,863 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:01:24,863 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:01:24,863 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,863 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,878 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,878 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,893 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,893 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:01:24,893 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,909 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,909 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:01:24,909 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,924 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:01:24,924 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:01:24,924 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:01:24,924 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:01:24,924 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,924 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:01:24,924 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:01:24,924 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:01:24,940 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:01:24,940 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,940 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:01:24,940 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:01:24,940 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:01:24,940 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:01:24,940 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,940 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,956 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:01:24,956 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,956 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,973 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:01:24,973 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,987 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:24,987 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:01:24,987 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,003 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,003 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:01:25,003 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,019 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:01:25,019 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:01:25,019 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:01:25,019 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:01:25,019 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,019 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:01:25,019 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:01:25,019 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:01:25,019 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:01:25,035 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,035 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:01:25,035 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:01:25,035 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:01:25,035 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:01:25,035 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,035 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,049 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:01:25,049 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,065 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:01:25,065 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:01:25,081 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:01:25,081 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:01:25,081 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,081 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:01:25,081 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:01:25,081 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:01:25,081 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:01:25,081 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,098 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,098 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:01:25,098 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,113 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:01:25,113 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:01:25,113 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:01:25,113 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:01:25,113 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,113 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:01:25,113 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:01:25,128 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:01:25,128 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:01:25,128 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,128 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:01:25,128 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:01:25,128 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:01:25,128 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:01:25,128 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,143 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,143 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:01:25,143 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,160 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,160 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:01:25,160 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,175 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:01:25,175 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:01:25,175 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:01:25,175 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:01:25,175 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,175 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:01:25,175 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:01:25,175 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:01:25,191 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:01:25,191 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,191 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:01:25,191 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:01:25,191 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:01:25,191 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:01:25,191 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,191 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,205 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:01:25,205 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,222 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,222 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:01:25,222 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,237 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:01:25,237 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:01:25,237 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:01:25,237 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:01:25,237 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,237 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:01:25,237 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:01:25,237 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:01:25,255 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:01:25,255 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,255 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:01:25,255 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:01:25,255 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:01:25,255 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:01:25,255 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,269 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:01:25,269 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:01:25,269 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:01:25,269 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:01:25,269 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,284 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,284 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:01:25,284 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,300 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:01:25,300 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:01:25,300 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:01:25,300 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:01:25,300 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,300 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:01:25,300 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:01:25,300 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:01:25,300 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,315 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,315 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:01:25,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:01:25,332 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,332 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:01:25,332 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:01:25,332 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:01:25,332 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:01:25,332 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,332 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,347 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:01:25,347 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,362 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:01:25,362 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:01:25,362 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:01:25,362 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:01:25,362 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,362 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:01:25,362 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:01:25,378 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:01:25,378 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:01:25,378 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,378 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:01:25,378 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:01:25,378 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:01:25,378 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:01:25,378 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,393 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:01:25,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:01:25,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:01:25,393 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:01:25,393 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,409 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:01:25,409 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:01:25,409 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:01:25,409 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:01:25,409 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,409 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:01:25,424 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:01:25,424 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:01:25,424 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:01:25,424 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,424 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:01:25,424 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:01:25,424 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:01:25,440 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:01:25,440 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,440 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:01:25,440 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:01:25,440 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:01:25,440 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:01:25,440 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,456 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:01:25,456 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:01:25,456 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:01:25,456 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:01:25,456 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,456 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:01:25,456 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:01:25,472 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:01:25,472 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:01:25,472 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,472 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:01:25,472 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:01:25,488 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:01:25,488 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:01:25,488 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,488 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:01:25,488 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:01:25,488 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:01:25,488 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:01:25,502 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,502 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:01:25,502 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:01:25,502 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:01:25,502 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:01:25,502 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,519 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:01:25,519 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:01:25,519 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:01:25,519 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:01:25,519 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,519 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:01:25,535 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:01:25,535 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:01:25,535 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:01:25,535 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,535 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,550 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:01:25,550 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,565 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:01:25,565 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:01:25,565 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:01:25,565 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:01:25,565 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,565 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:01:25,581 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:01:25,581 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:01:25,581 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:01:25,581 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,581 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:01:25,581 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:01:25,596 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:01:25,611 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:01:25,611 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,611 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:01:25,611 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:01:25,611 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:01:25,611 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:01:25,611 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,628 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:01:25,628 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:01:25,628 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:01:25,628 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:01:25,628 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,628 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:01:25,644 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:01:25,644 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:01:25,644 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:01:25,644 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,644 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:01:25,658 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:01:25,658 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:01:25,658 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:01:25,658 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,658 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:01:25,658 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:01:25,658 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:01:25,674 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:01:25,674 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,674 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:01:25,674 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:01:25,674 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:01:25,674 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:01:25,690 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,690 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:01:25,690 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:01:25,690 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:01:25,690 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:01:25,690 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,706 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:01:25,706 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:01:25,706 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:01:25,706 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:01:25,706 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,706 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:01:25,721 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:01:25,721 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:01:25,721 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:01:25,721 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,721 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:01:25,736 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:01:25,736 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:01:25,736 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:01:25,736 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,736 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:01:25,736 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:01:25,752 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:01:25,752 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:01:25,752 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,752 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:01:25,752 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:01:25,752 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:01:25,768 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:01:25,768 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,768 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:01:25,768 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:01:25,768 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:01:25,783 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:01:25,783 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,783 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:01:25,783 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:01:25,783 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:01:25,799 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:01:25,799 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,799 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:01:25,799 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:01:25,799 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:01:25,799 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:01:25,799 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,815 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:01:25,815 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:01:25,815 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:01:25,815 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:01:25,815 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,831 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:01:25,831 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:01:25,831 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:01:25,831 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:01:25,831 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,831 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:01:25,846 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:01:25,846 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:01:25,846 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:01:25,846 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,846 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:01:25,846 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:01:25,846 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:01:25,862 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:01:25,862 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,862 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:01:25,862 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:01:25,862 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:01:25,862 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:01:25,862 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,878 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:01:25,878 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:01:25,878 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:01:25,878 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:01:25,878 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,893 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:01:25,893 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:01:25,893 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:01:25,893 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:01:25,893 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,893 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:01:25,909 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:01:25,909 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:01:25,909 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:01:25,909 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,909 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:01:25,909 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:01:25,909 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:01:25,925 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:01:25,925 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,925 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:01:25,925 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:01:25,925 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:01:25,925 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:01:25,925 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,942 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:01:25,942 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:01:25,942 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:01:25,942 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:01:25,942 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,942 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:01:25,956 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:01:25,956 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:01:25,956 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:01:25,956 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,956 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:01:25,956 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:01:25,971 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:01:25,971 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:01:25,971 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,971 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:01:25,971 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:01:25,971 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:01:25,971 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:01:25,971 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,987 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:01:25,987 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:01:25,987 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:01:25,987 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:01:25,987 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:25,987 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:01:26,002 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:01:26,002 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:01:26,002 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:01:26,002 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,002 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:01:26,002 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:01:26,002 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:01:26,002 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:01:26,018 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,018 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:01:26,018 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:01:26,018 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:01:26,018 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:01:26,018 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,034 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:01:26,034 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:01:26,034 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:01:26,034 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:01:26,034 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,049 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:01:26,049 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:01:26,049 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:01:26,049 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:01:26,049 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,049 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:01:26,049 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:01:26,049 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:01:26,075 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:01:26,075 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,081 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:01:26,081 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:01:26,081 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:01:26,081 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:01:26,081 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,081 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:01:26,081 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:01:26,081 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:01:26,097 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:01:26,097 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,097 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:01:26,097 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:01:26,097 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:01:26,097 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:01:26,097 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,113 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:01:26,113 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:01:26,113 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:01:26,113 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:01:26,113 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,127 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:01:26,127 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:01:26,127 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:01:26,127 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:01:26,127 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,143 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:01:26,143 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:01:26,143 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:01:26,143 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:01:26,143 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,143 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:01:26,143 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:01:26,159 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:01:26,159 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:01:26,159 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,159 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:01:26,159 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:01:26,159 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:01:26,159 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:01:26,159 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,175 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:01:26,175 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:01:26,175 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:01:26,175 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:01:26,175 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,175 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,190 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:01:26,190 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,206 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:01:26,206 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:01:26,206 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:01:26,206 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:01:26,206 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,227 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:01:26,227 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:01:26,227 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:01:26,227 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:01:26,227 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,238 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:01:26,238 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:01:26,238 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:01:26,238 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:01:26,238 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,257 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:01:26,257 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:01:26,257 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:01:26,257 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:01:26,257 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,268 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:01:26,268 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:01:26,268 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:01:26,268 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:01:26,268 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,268 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:01:26,286 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:01:26,286 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:01:26,286 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:01:26,286 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,286 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:01:26,286 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:01:26,299 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:01:26,299 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:01:26,299 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,299 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:01:26,299 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:01:26,299 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:01:26,299 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:01:26,299 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,315 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:01:26,315 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:01:26,315 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:01:26,315 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:01:26,315 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,333 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:01:26,333 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:01:26,333 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:01:26,333 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:01:26,333 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,347 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:01:26,347 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:01:26,347 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:01:26,347 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:01:26,347 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,347 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:01:26,362 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:01:26,362 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:01:26,362 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:01:26,362 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,362 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:01:26,362 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:01:26,362 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:01:26,362 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:01:26,378 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,378 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:01:26,378 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:01:26,378 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:01:26,378 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:01:26,378 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,378 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,393 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:01:26,393 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,409 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:01:26,409 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:01:26,409 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:01:26,409 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:01:26,409 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,424 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:01:26,424 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:01:26,424 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:01:26,424 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:01:26,424 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,424 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:01:26,424 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:01:26,424 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:01:26,424 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:01:26,440 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,440 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:01:26,440 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:01:26,440 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:01:26,440 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:01:26,440 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,459 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:01:26,459 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:01:26,459 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:01:26,459 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:01:26,459 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,471 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,471 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:01:26,471 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,488 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:01:26,488 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:01:26,488 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:01:26,488 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:01:26,488 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,488 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,503 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:01:26,503 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,518 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:01:26,518 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:01:26,518 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:01:26,518 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:01:26,518 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,518 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:01:26,518 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:01:26,518 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:01:26,533 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:01:26,533 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,533 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:01:26,533 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:01:26,533 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:01:26,533 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:01:26,533 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,553 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:01:26,553 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:01:26,553 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:01:26,553 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:01:26,553 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,565 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,565 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:01:26,565 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,581 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:01:26,581 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:01:26,581 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:01:26,581 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:01:26,581 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,581 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:01:26,581 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:01:26,597 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:01:26,597 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:01:26,597 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,597 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:01:26,597 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:01:26,597 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:01:26,597 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:01:26,597 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,613 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:01:26,613 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:01:26,613 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:01:26,613 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:01:26,613 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,613 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:01:26,613 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:01:26,613 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:01:26,628 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:01:26,628 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,628 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:01:26,628 [salt.fileclient :1101][DEBUG ][6376] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:01:26,628 [salt.fileclient :1109][DEBUG ][6376] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:01:26,628 [salt.fileclient :1129][DEBUG ][6376] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:01:26,628 [salt.fileclient :1157][DEBUG ][6376] No dest file found +2020-03-06 10:01:26,644 [salt.fileclient :1238][INFO ][6376] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:01:26,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,644 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:01:26,644 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,662 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.017985105514526367 +2020-03-06 10:01:26,662 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -3409,11 +3295,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a 7zip: - '18.06.00.0': + '16.04.00.0': - full_name: '7-Zip 18.06 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1806-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3422,11 +3308,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.05.00.0': + '16.03.00.0': - full_name: '7-Zip 18.05 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1805-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3435,11 +3321,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.03.00.0': + '16.02.00.0': - full_name: '7-Zip 18.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1803-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3448,11 +3334,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.01.00.0': + '16.00.00.0': - full_name: '7-Zip 18.01 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1801-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3463,11 +3349,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a - '16.04.00.0': + '19.00.00.0': - full_name: '7-Zip 16.04 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1604-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3476,11 +3362,13 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.03.00.0': + + + '18.06.00.0': - full_name: '7-Zip 16.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1603-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3489,11 +3377,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.02.00.0': + '18.05.00.0': - full_name: '7-Zip 16.02 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1602-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3502,11 +3390,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.00.00.0': + '18.03.00.0': - full_name: '7-Zip 16.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1600-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3515,13 +3403,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - - - '19.00.00.0': + '18.01.00.0': - full_name: '7-Zip 19.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1900-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3532,15 +3418,15 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a -2020-03-04 12:01:04,426 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('7zip', OrderedDict([('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,426 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,426 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,426 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,426 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls -2020-03-04 12:01:04,426 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,426 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,442 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +2020-03-06 10:01:26,662 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:01:26,662 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,672 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,674 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:01:26,674 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,674 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: activeperl_x64: '5.22.4': @@ -3574,15 +3460,15 @@ activeperl_x64: reboot: False -2020-03-04 12:01:04,442 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,442 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,442 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls -2020-03-04 12:01:04,442 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,460 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.01745319366455078 -2020-03-04 12:01:04,460 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +2020-03-06 10:01:26,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,690 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:01:26,690 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,690 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: activeperl_x86: '5.22.4': @@ -3598,15 +3484,15 @@ activeperl_x86: reboot: False -2020-03-04 12:01:04,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,460 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,460 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,460 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,472 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls -2020-03-04 12:01:04,472 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.002277374267578125 -2020-03-04 12:01:04,474 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +2020-03-06 10:01:26,705 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.01566314697265625 +2020-03-06 10:01:26,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,705 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:01:26,705 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,705 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,705 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: adobeair: latest: full_name: 'Adobe AIR' @@ -3627,15 +3513,15 @@ adobeair: locale: en_US reboot: False -2020-03-04 12:01:04,474 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,705 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,474 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,474 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,474 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls -2020-03-04 12:01:04,474 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,491 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +2020-03-06 10:01:26,705 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,722 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:01:26,722 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,722 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,722 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: # to understand what is meant by "classic" see # http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html @@ -3829,15 +3715,15 @@ adobereader-dc-classic: reboot: False -2020-03-04 12:01:04,491 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,722 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,491 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,491 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,505 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls -2020-03-04 12:01:04,505 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,505 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,505 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +2020-03-06 10:01:26,736 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.014179706573486328 +2020-03-06 10:01:26,736 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,736 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,736 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:01:26,736 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,736 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,736 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: adobereader-xi: '11.0.10': full_name: 'Adobe Reader XI (11.0.10)' @@ -3858,15 +3744,15 @@ adobereader-xi: locale: en_US reboot: False -2020-03-04 12:01:04,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,505 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,505 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls -2020-03-04 12:01:04,505 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,520 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.015719175338745117 -2020-03-04 12:01:04,520 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +2020-03-06 10:01:26,736 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,736 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,753 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:01:26,753 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,753 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: adobereader: '10.1.4': full_name: 'Adobe Reader X (10.1.4)' @@ -3887,15 +3773,15 @@ adobereader: locale: en_US reboot: False -2020-03-04 12:01:04,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,520 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,520 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,520 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,520 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls -2020-03-04 12:01:04,520 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,520 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,520 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +2020-03-06 10:01:26,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,753 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:01:26,753 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,768 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: adobeshockwaveplayer: latest: full_name: 'Adobe Shockwave Player 12.2' @@ -3909,15 +3795,15 @@ adobeshockwaveplayer: # # Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version -2020-03-04 12:01:04,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,536 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,536 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,536 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,536 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls -2020-03-04 12:01:04,536 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,536 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,536 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: +2020-03-06 10:01:26,768 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,768 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:01:26,768 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,785 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.017556190490722656 +2020-03-06 10:01:26,785 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: @@ -3940,15 +3826,15 @@ adv-ip-scanner: # http://www.advanced-ip-scanner.com # a product of: www.radmin.com -2020-03-04 12:01:04,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,785 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,552 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,552 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls -2020-03-04 12:01:04,552 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,568 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.01589369773864746 -2020-03-04 12:01:04,568 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: +2020-03-06 10:01:26,785 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,785 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,785 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,785 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:01:26,785 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,799 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.013691902160644531 +2020-03-06 10:01:26,799 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: @@ -3971,15 +3857,15 @@ adv-port-scanner: # http://www.advanced-port-scanner.com # a product of: www.radmin.com -2020-03-04 12:01:04,568 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,799 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,568 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,583 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,583 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls -2020-03-04 12:01:04,583 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,583 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +2020-03-06 10:01:26,799 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,799 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:01:26,799 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,813 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.014530181884765625 +2020-03-06 10:01:26,816 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: advancedlogging: '1.0.0625.10': full_name: 'IIS Advanced Logging 1.0' @@ -3993,15 +3879,15 @@ advancedlogging: locale: en_US reboot: False -2020-03-04 12:01:04,599 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,816 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,599 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,599 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,599 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,599 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls -2020-03-04 12:01:04,615 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,615 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,615 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +2020-03-06 10:01:26,816 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,816 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,816 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,816 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:01:26,816 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,816 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,830 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: # just 32-bit x86 msi package available @@ -4017,15 +3903,15 @@ anydesk-msi: locale: en_US reboot: False -2020-03-04 12:01:04,615 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,631 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.01557159423828125 -2020-03-04 12:01:04,631 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,646 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,646 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls -2020-03-04 12:01:04,646 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,646 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,646 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +2020-03-06 10:01:26,831 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,831 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,831 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,831 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:01:26,831 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,831 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,831 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: # just 32-bit x86 installer available @@ -4045,15 +3931,15 @@ anydesk: locale: en_US reboot: False -2020-03-04 12:01:04,646 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,646 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,646 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,646 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,664 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls -2020-03-04 12:01:04,664 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,664 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,664 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +2020-03-06 10:01:26,846 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,846 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:01:26,846 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,846 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,846 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: applicationrequestrouting: '3.0.1952': full_name: 'Microsoft Application Request Routing 3.0' @@ -4067,15 +3953,15 @@ applicationrequestrouting: locale: en_US reboot: False -2020-03-04 12:01:04,664 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,664 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,664 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,664 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,664 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls -2020-03-04 12:01:04,679 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,679 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,679 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +2020-03-06 10:01:26,846 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,863 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,863 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:01:26,863 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,863 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,863 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: aspnet-mvc1: '1.0.0.0': full_name: 'Microsoft ASP.NET MVC 1.0' @@ -4087,15 +3973,15 @@ aspnet-mvc1: locale: en_US reboot: False -2020-03-04 12:01:04,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,863 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,679 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,679 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,679 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,679 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls -2020-03-04 12:01:04,679 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,679 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,696 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: +2020-03-06 10:01:26,863 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,863 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,863 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,876 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:01:26,877 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,877 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,877 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: atom: @@ -4160,15 +4046,15 @@ atom: reboot: False -2020-03-04 12:01:04,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,696 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,696 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,696 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,696 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls -2020-03-04 12:01:04,696 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,710 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.013849496841430664 -2020-03-04 12:01:04,710 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: +2020-03-06 10:01:26,877 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,877 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,877 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,877 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:01:26,893 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,893 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: @@ -4196,15 +4082,15 @@ audacity: reboot: False -2020-03-04 12:01:04,710 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,710 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,710 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,710 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,710 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls -2020-03-04 12:01:04,710 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,726 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.016185522079467773 -2020-03-04 12:01:04,726 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: +2020-03-06 10:01:26,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,893 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:01:26,908 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,908 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,908 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: @@ -4246,15 +4132,15 @@ autohotkey: locale: en_US reboot: False -2020-03-04 12:01:04,726 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,726 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,726 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,740 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,740 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls -2020-03-04 12:01:04,740 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,740 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,740 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: +2020-03-06 10:01:26,908 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,908 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,929 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,929 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:01:26,929 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,929 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,938 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: autoit: @@ -4271,15 +4157,15 @@ autoit: reboot: False -2020-03-04 12:01:04,740 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,740 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,754 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls -2020-03-04 12:01:04,754 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,754 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,754 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +2020-03-06 10:01:26,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,940 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:01:26,940 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,940 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: autopsy: '4.3.0': full_name: 'Autopsy' @@ -4293,15 +4179,15 @@ autopsy: locale: en_US reboot: False -2020-03-04 12:01:04,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,754 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,771 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,771 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls -2020-03-04 12:01:04,771 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,771 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,771 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +2020-03-06 10:01:26,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,956 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:01:26,956 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,956 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available awscli: @@ -4317,15 +4203,15 @@ awscli: locale: en_US reboot: False -2020-03-04 12:01:04,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,771 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,786 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls -2020-03-04 12:01:04,786 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,786 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +2020-03-06 10:01:26,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,971 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:01:26,971 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,971 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: # due to winrepo installer limitations you need to manually download the exe from # https://go.microsoft.com/fwlink/?linkid=2049975 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... @@ -4343,15 +4229,15 @@ azuredatastudio: locale: en_US reboot: False -2020-03-04 12:01:04,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,802 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls -2020-03-04 12:01:04,802 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,802 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +2020-03-06 10:01:26,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,971 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:01:26,971 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:26,988 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: #the provider only offers the download of the latest version @@ -4367,15 +4253,15 @@ bandizip: locale: en_US reboot: False -2020-03-04 12:01:04,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:26,988 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,817 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,817 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls -2020-03-04 12:01:04,817 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,817 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,817 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +2020-03-06 10:01:26,988 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:26,988 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:26,988 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:26,988 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:01:26,988 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:26,988 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,001 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: # just 32-bit x86 installer available @@ -4391,15 +4277,15 @@ belarc-advisor: locale: en_US reboot: False -2020-03-04 12:01:04,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,817 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,832 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,833 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls -2020-03-04 12:01:04,833 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,833 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +2020-03-06 10:01:27,002 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,002 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:01:27,002 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,002 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,002 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: bginfo4x: '3.3.6': full_name: 'BGINFO4X for Windows 3.3.6' @@ -4411,15 +4297,15 @@ bginfo4x: locale: en_US reboot: False -2020-03-04 12:01:04,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,833 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls -2020-03-04 12:01:04,848 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,848 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +2020-03-06 10:01:27,002 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,002 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:01:27,018 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,018 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: # source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe bitnami-nginxstack: '1.8.0-0': @@ -4432,15 +4318,15 @@ bitnami-nginxstack: locale: en_US reboot: False -2020-03-04 12:01:04,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,848 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls -2020-03-04 12:01:04,848 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,865 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +2020-03-06 10:01:27,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,018 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:01:27,018 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,034 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -4460,15 +4346,15 @@ bitvise: -2020-03-04 12:01:04,865 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,865 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,865 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,865 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,865 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls -2020-03-04 12:01:04,865 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,865 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,880 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +2020-03-06 10:01:27,034 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,034 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:01:27,034 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,034 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,034 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available blender: @@ -4484,15 +4370,15 @@ blender: locale: en_US reboot: False -2020-03-04 12:01:04,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,880 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,880 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls -2020-03-04 12:01:04,880 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,880 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,895 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +2020-03-06 10:01:27,034 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,050 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,050 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:01:27,050 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,050 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,050 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: bootracer: '6.50.0.450': full_name: 'BootRacer' @@ -4505,15 +4391,15 @@ bootracer: reboot: False # download zip archive manually and unpack msi to slat master winrepo-ng directory -2020-03-04 12:01:04,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,895 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,895 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,895 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,895 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls -2020-03-04 12:01:04,895 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,895 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,910 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: +2020-03-06 10:01:27,050 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,050 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,065 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:01:27,065 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,065 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: bulkrenameutility: @@ -4531,15 +4417,15 @@ bulkrenameutility: -2020-03-04 12:01:04,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,911 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,911 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls -2020-03-04 12:01:04,911 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,911 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,927 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +2020-03-06 10:01:27,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,065 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:01:27,080 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,080 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,080 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: # just 32-bit x86 installer available @@ -4577,15 +4463,15 @@ bulk_extractor: reboot: False -2020-03-04 12:01:04,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,080 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,927 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,927 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,927 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,927 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls -2020-03-04 12:01:04,927 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,927 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:04,943 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: +2020-03-06 10:01:27,080 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,080 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,080 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,080 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:01:27,096 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,096 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,096 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: ccleaner-slim: @@ -4634,15 +4520,15 @@ ccleaner-slim: reboot: False -2020-03-04 12:01:04,943 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,943 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,943 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,943 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,943 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls -2020-03-04 12:01:04,943 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,959 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.016140222549438477 -2020-03-04 12:01:04,959 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: +2020-03-06 10:01:27,096 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,096 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,096 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,096 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:01:27,096 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,111 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.015528440475463867 +2020-03-06 10:01:27,111 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: ccleaner: @@ -4669,15 +4555,15 @@ ccleaner: reboot: False -2020-03-04 12:01:04,959 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,111 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,959 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,959 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,959 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,959 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls -2020-03-04 12:01:04,959 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,974 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.01558232307434082 -2020-03-04 12:01:04,974 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +2020-03-06 10:01:27,111 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,111 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,111 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,111 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:01:27,111 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,127 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.015593528747558594 +2020-03-06 10:01:27,127 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -4693,15 +4579,15 @@ cdburnerxp: locale: en_US reboot: False -2020-03-04 12:01:04,974 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,974 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,974 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,974 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,974 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls -2020-03-04 12:01:04,974 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:04,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.014651775360107422 -2020-03-04 12:01:04,989 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +2020-03-06 10:01:27,127 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,127 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:01:27,127 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,144 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.016782760620117188 +2020-03-06 10:01:27,144 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: # just 32-bit x86 installer available @@ -4717,15 +4603,15 @@ cdroller: locale: en_US reboot: False -2020-03-04 12:01:04,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,144 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:04,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:04,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:04,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:04,989 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls -2020-03-04 12:01:04,989 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,006 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.016625165939331055 -2020-03-04 12:01:05,006 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +2020-03-06 10:01:27,144 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,144 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,144 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,144 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:01:27,144 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,160 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.013293743133544922 +2020-03-06 10:01:27,160 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: check-mk-agent-msi: '1.5.0.3268': @@ -4939,15 +4825,15 @@ check-mk-agent-msi: reboot: False -2020-03-04 12:01:05,006 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,160 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,006 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,019 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,021 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,021 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls -2020-03-04 12:01:05,021 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,021 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,021 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +2020-03-06 10:01:27,160 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,160 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,172 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,174 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:01:27,174 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,174 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: check-mk-agent: 'Not Found': full_name: 'Check_MK Agent 1.2.8b4' @@ -4961,15 +4847,15 @@ check-mk-agent: locale: en_US reboot: False -2020-03-04 12:01:05,021 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,021 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,036 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls -2020-03-04 12:01:05,036 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,036 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +2020-03-06 10:01:27,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,174 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:01:27,174 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,174 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: chrome-rdp: latest: full_name: 'Chrome Remote Desktop Host' @@ -4981,15 +4867,15 @@ chrome-rdp: locale: en_US reboot: False -2020-03-04 12:01:05,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,050 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls -2020-03-04 12:01:05,051 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,051 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,051 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +2020-03-06 10:01:27,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,190 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:01:27,190 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,190 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: chrome: latest: full_name: 'Google Chrome' @@ -5001,15 +4887,15 @@ chrome: locale: en_US reboot: False -2020-03-04 12:01:05,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,051 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,051 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,051 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,051 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls -2020-03-04 12:01:05,051 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,051 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,068 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +2020-03-06 10:01:27,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,206 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:01:27,206 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,206 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,206 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: clamav: '0.99.1': @@ -5036,15 +4922,15 @@ clamav: uninstaller: 'msiexec.exe' uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' -2020-03-04 12:01:05,068 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) -2020-03-04 12:01:05,068 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,068 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,068 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,068 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls -2020-03-04 12:01:05,068 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,068 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,084 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +2020-03-06 10:01:27,206 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,221 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:01:27,221 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,221 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,221 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: # just 32-bit x86 installer available @@ -5078,15 +4964,15 @@ clamwin: locale: en_US reboot: False -2020-03-04 12:01:05,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,221 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,084 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,084 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,084 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,084 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls -2020-03-04 12:01:05,084 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,099 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.015589237213134766 -2020-03-04 12:01:05,099 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +2020-03-06 10:01:27,221 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,236 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,237 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:01:27,237 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,237 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,237 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: classicshell: '4.2.4': full_name: 'Classic Shell' @@ -5100,15 +4986,15 @@ classicshell: locale: en_US reboot: False -2020-03-04 12:01:05,099 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,099 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,099 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls -2020-03-04 12:01:05,099 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,115 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.015659332275390625 -2020-03-04 12:01:05,115 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +2020-03-06 10:01:27,237 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,237 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:01:27,237 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,255 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.01836085319519043 +2020-03-06 10:01:27,255 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: # just 32-bit x86 installer available @@ -5152,15 +5038,15 @@ clink: reboot: False # https://mridgers.github.io/clink/ -2020-03-04 12:01:05,115 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,115 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,115 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,115 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,115 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls -2020-03-04 12:01:05,128 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,129 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0014908313751220703 -2020-03-04 12:01:05,129 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +2020-03-06 10:01:27,255 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,267 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,268 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:01:27,268 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,268 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,268 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: conemu: '11.160.5290': @@ -5174,15 +5060,15 @@ conemu: locale: en_US reboot: False -2020-03-04 12:01:05,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,129 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,129 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,129 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,129 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls -2020-03-04 12:01:05,129 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,129 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,147 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +2020-03-06 10:01:27,268 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,268 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:01:27,283 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0010013580322265625 +2020-03-06 10:01:27,284 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: cpu-z: '1.86': @@ -5428,15 +5314,15 @@ cpu-z: reboot: False -2020-03-04 12:01:05,147 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,147 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,160 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,161 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls -2020-03-04 12:01:05,161 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,161 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,178 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +2020-03-06 10:01:27,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,300 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:01:27,300 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,300 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,300 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available curl: @@ -5500,15 +5386,15 @@ curl: # Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, # so you might not be calling the right 'curl' -2020-03-04 12:01:05,178 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,300 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,178 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,178 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,178 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,178 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls -2020-03-04 12:01:05,178 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,192 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.014081478118896484 -2020-03-04 12:01:05,192 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +2020-03-06 10:01:27,314 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.01428079605102539 +2020-03-06 10:01:27,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,315 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:01:27,315 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,315 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: cyberduck-cli: '1.0.0.0': full_name: 'Cyberduck CLI' @@ -5520,15 +5406,15 @@ cyberduck-cli: locale: en_US reboot: False -2020-03-04 12:01:05,192 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,192 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,192 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,192 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,192 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls -2020-03-04 12:01:05,192 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,210 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.017485380172729492 -2020-03-04 12:01:05,210 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +2020-03-06 10:01:27,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,315 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:01:27,330 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,330 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,330 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: # just 32-bit x86 installer available @@ -5537,10 +5423,10 @@ OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name cyberduck-msi: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5549,10 +5435,10 @@ cyberduck-msi: - '6.9.0.29768': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5573,15 +5459,15 @@ cyberduck-msi: -2020-03-04 12:01:05,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,210 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,210 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,210 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,222 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls -2020-03-04 12:01:05,223 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,223 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,223 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +2020-03-06 10:01:27,330 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:01:27,330 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,330 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,330 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,330 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:01:27,346 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0006434917449951172 +2020-03-06 10:01:27,346 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: # just 32-bit x86 installer available @@ -5590,10 +5476,10 @@ OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_ cyberduck: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5602,10 +5488,10 @@ cyberduck: - '6.9.0.29768': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5626,15 +5512,15 @@ cyberduck: -2020-03-04 12:01:05,223 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,223 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,223 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,240 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,240 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls -2020-03-04 12:01:05,240 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,240 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,240 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +2020-03-06 10:01:27,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:01:27,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,346 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:01:27,362 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,362 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: # just 32-bit x86 installer available @@ -5659,15 +5545,15 @@ defraggler: locale: en_US reboot: False -2020-03-04 12:01:05,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,240 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,254 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls -2020-03-04 12:01:05,254 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,254 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,254 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +2020-03-06 10:01:27,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,362 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:01:27,362 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,379 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.01718449592590332 +2020-03-06 10:01:27,379 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: dotnet: '4.6.01590': full_name: 'Microsoft .NET Framework 4.6.2' @@ -5714,15 +5600,15 @@ dotnet: locale: en_US reboot: False -2020-03-04 12:01:05,254 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,379 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,270 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.015575170516967773 -2020-03-04 12:01:05,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,270 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls -2020-03-04 12:01:05,270 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,270 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,285 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +2020-03-06 10:01:27,379 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,379 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,379 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,379 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:01:27,379 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.013662099838256836 +2020-03-06 10:01:27,393 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: # just 32-bit x86 installer available @@ -5743,15 +5629,15 @@ dropbox: locale: en_US reboot: False -2020-03-04 12:01:05,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,286 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls -2020-03-04 12:01:05,286 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,286 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +2020-03-06 10:01:27,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,393 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:01:27,393 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,408 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: duplicati: '1.3.4': @@ -5768,15 +5654,15 @@ duplicati: cache_dir: False use_scheduler: False -2020-03-04 12:01:05,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,408 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) -2020-03-04 12:01:05,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,302 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,302 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,302 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls -2020-03-04 12:01:05,302 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,302 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,302 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +2020-03-06 10:01:27,408 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,408 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,408 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,408 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:01:27,408 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,408 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,408 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available dvdstyler: @@ -5792,15 +5678,15 @@ dvdstyler: locale: en_US reboot: False -2020-03-04 12:01:05,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,408 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,302 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,318 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,318 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,318 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls -2020-03-04 12:01:05,318 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,318 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,318 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +2020-03-06 10:01:27,408 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,425 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,425 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,425 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:01:27,425 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,425 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,425 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: echo-desktop: '3.0.4': full_name: @@ -5812,15 +5698,15 @@ echo-desktop: uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" -2020-03-04 12:01:05,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,425 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) -2020-03-04 12:01:05,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,333 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls -2020-03-04 12:01:05,333 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,349 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +2020-03-06 10:01:27,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.014904022216796875 +2020-03-06 10:01:27,440 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,440 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,440 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:01:27,440 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,440 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: eea: # '5.0.2260.1': # full_name: 'ESET Endpoint Antivirus' @@ -5852,15 +5738,15 @@ eea: # download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ # for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB -2020-03-04 12:01:05,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) -2020-03-04 12:01:05,349 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,349 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,349 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,349 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls -2020-03-04 12:01:05,349 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,349 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,349 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +2020-03-06 10:01:27,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,440 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,456 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,456 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:01:27,456 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,456 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,456 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: emet: '5.5': full_name: 'EMET 5.5' @@ -5872,15 +5758,15 @@ emet: locale: en_US reboot: False -2020-03-04 12:01:05,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,456 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0007395744323730469 -2020-03-04 12:01:05,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,364 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls -2020-03-04 12:01:05,364 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,364 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +2020-03-06 10:01:27,456 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,456 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,456 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,456 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:01:27,456 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,472 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.015733957290649414 +2020-03-06 10:01:27,472 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: # just 32-bit x86 installer available @@ -5897,15 +5783,15 @@ emsisoft-anti-malware: locale: en_US reboot: False -2020-03-04 12:01:05,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,380 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,380 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls -2020-03-04 12:01:05,380 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,380 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,395 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: +2020-03-06 10:01:27,472 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,472 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,472 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,472 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:01:27,472 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,488 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.016605377197265625 +2020-03-06 10:01:27,488 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: eraser: @@ -5931,15 +5817,15 @@ eraser: reboot: False -2020-03-04 12:01:05,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,488 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,395 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls -2020-03-04 12:01:05,395 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,411 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +2020-03-06 10:01:27,488 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,488 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,488 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,488 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:01:27,488 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,488 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,501 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: evernote: '6.9.7.6770': full_name: 'Evernote v. 6.9.7' @@ -5969,15 +5855,15 @@ evernote: locale: en_US reboot: False -2020-03-04 12:01:05,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,501 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,411 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls -2020-03-04 12:01:05,411 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.015623331069946289 -2020-03-04 12:01:05,427 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +2020-03-06 10:01:27,503 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0021321773529052734 +2020-03-06 10:01:27,503 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,503 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,503 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:01:27,503 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,503 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,503 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: # just 32-bit x86 installer available @@ -5993,15 +5879,15 @@ fiddler: locale: en_US reboot: False -2020-03-04 12:01:05,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,427 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls -2020-03-04 12:01:05,427 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,443 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.016572952270507812 -2020-03-04 12:01:05,443 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +2020-03-06 10:01:27,503 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,503 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,518 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:01:27,518 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,518 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: # just 32-bit x86 installer available @@ -6019,15 +5905,15 @@ filehippo-app-manager: reboot: False # download manually and place on master salt://win/repo-ng/filehippo-app-manager -2020-03-04 12:01:05,443 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,443 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,443 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,443 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,443 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls -2020-03-04 12:01:05,443 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,458 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.01464080810546875 -2020-03-04 12:01:05,458 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: +2020-03-06 10:01:27,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,533 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,533 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,533 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:01:27,533 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,533 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,533 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: filezilla: @@ -6801,15 +6687,15 @@ filezilla: reboot: False -2020-03-04 12:01:05,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,553 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,475 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.016592979431152344 -2020-03-04 12:01:05,487 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,490 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,490 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls -2020-03-04 12:01:05,490 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,490 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,505 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +2020-03-06 10:01:27,553 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.019346952438354492 +2020-03-06 10:01:27,553 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,553 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,553 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:01:27,569 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,569 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,569 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: firefox-esr_x64: '68.5.0': @@ -7473,15 +7359,15 @@ firefox-esr_x64: reboot: False -2020-03-04 12:01:05,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,505 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,521 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls -2020-03-04 12:01:05,521 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,538 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.016689062118530273 -2020-03-04 12:01:05,538 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +2020-03-06 10:01:27,595 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.012043476104736328 +2020-03-06 10:01:27,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,596 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:01:27,596 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,596 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,613 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: firefox-esr_x86: @@ -8258,15 +8144,15 @@ firefox-esr_x86: reboot: False -2020-03-04 12:01:05,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,552 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.014122962951660156 -2020-03-04 12:01:05,565 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,568 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls -2020-03-04 12:01:05,568 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,568 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,585 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +2020-03-06 10:01:27,627 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.014633417129516602 +2020-03-06 10:01:27,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,627 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:01:27,627 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.01605963706970215 +2020-03-06 10:01:27,643 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: firefox_x64: '73.0': @@ -9250,15 +9136,15 @@ firefox_x64: reboot: False -2020-03-04 12:01:05,602 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,610 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.02466750144958496 -2020-03-04 12:01:05,610 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,615 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,615 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls -2020-03-04 12:01:05,615 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,615 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,635 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +2020-03-06 10:01:27,672 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.029073238372802734 +2020-03-06 10:01:27,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,674 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:01:27,674 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,699 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.024995088577270508 +2020-03-06 10:01:27,703 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: firefox_x86: @@ -10605,15 +10491,15 @@ firefox_x86: reboot: False -2020-03-04 12:01:05,646 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,705 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,665 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.029464244842529297 -2020-03-04 12:01:05,665 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,675 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,677 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls -2020-03-04 12:01:05,677 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,677 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,677 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +2020-03-06 10:01:27,727 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.021193265914916992 +2020-03-06 10:01:27,732 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,732 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,732 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:01:27,737 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,737 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,737 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: # just 32-bit x86 installer available @@ -10630,15 +10516,15 @@ gedit: locale: en_US reboot: False -2020-03-04 12:01:05,677 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,737 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,677 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,677 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,677 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,677 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls -2020-03-04 12:01:05,692 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,692 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,692 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +2020-03-06 10:01:27,737 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,737 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:01:27,737 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.01580214500427246 +2020-03-06 10:01:27,753 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: # just 32-bit x86 installer available # Gimp installs into %ProgramFiles on either cpu arch gimp: @@ -10684,15 +10570,15 @@ gimp: restart: False -2020-03-04 12:01:05,692 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) -2020-03-04 12:01:05,692 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,692 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,708 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls -2020-03-04 12:01:05,708 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,708 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,708 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +2020-03-06 10:01:27,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,753 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:01:27,753 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,768 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: git-extensions: '2.48.05': full_name: 'Git Extensions 2.48.05' @@ -10713,15 +10599,15 @@ git-extensions: locale: en_US reboot: False -2020-03-04 12:01:05,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,708 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,724 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls -2020-03-04 12:01:05,724 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,724 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,742 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +2020-03-06 10:01:27,768 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,768 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:01:27,768 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,786 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.018059968948364258 +2020-03-06 10:01:27,786 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available for git @@ -11560,15 +11446,15 @@ msysgit: locale: en_US reboot: False -2020-03-04 12:01:05,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,754 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.012189388275146484 -2020-03-04 12:01:05,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,754 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls -2020-03-04 12:01:05,776 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,776 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,776 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +2020-03-06 10:01:27,802 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.005095958709716797 +2020-03-06 10:01:27,802 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,802 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,813 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:01:27,813 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,815 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0019593238830566406 +2020-03-06 10:01:27,815 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: # just 32-bit x86 installer available @@ -11593,15 +11479,15 @@ glarysoft-absolute-uninstaller: locale: en_US reboot: False -2020-03-04 12:01:05,776 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.009618043899536133 -2020-03-04 12:01:05,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,786 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls -2020-03-04 12:01:05,786 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,786 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +2020-03-06 10:01:27,815 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,815 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:01:27,815 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,815 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,831 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: # just 32-bit x86 installer available @@ -11618,15 +11504,15 @@ gnucash: reboot: False -2020-03-04 12:01:05,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.01563405990600586 -2020-03-04 12:01:05,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,802 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls -2020-03-04 12:01:05,802 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,824 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.021945476531982422 -2020-03-04 12:01:05,824 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +2020-03-06 10:01:27,831 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,831 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,831 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,831 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:01:27,831 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,847 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.01599431037902832 +2020-03-06 10:01:27,847 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: # "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. # See https://golang.org/ @@ -12849,15 +12735,15 @@ golang: reboot: False -2020-03-04 12:01:05,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,863 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,849 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.019720792770385742 -2020-03-04 12:01:05,849 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,849 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,849 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls -2020-03-04 12:01:05,863 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,865 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0019257068634033203 -2020-03-04 12:01:05,865 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +2020-03-06 10:01:27,863 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.015622138977050781 +2020-03-06 10:01:27,875 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,878 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:01:27,878 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,878 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,878 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: goodsync: '9.9.46.6': full_name: 'GoodSync' @@ -12869,15 +12755,15 @@ goodsync: locale: en_US reboot: False -2020-03-04 12:01:05,865 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,878 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,865 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,865 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,865 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,865 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls -2020-03-04 12:01:05,880 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,880 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,880 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +2020-03-06 10:01:27,878 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,892 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:01:27,893 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,893 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: # just 32-bit x86 installer available @@ -12895,15 +12781,15 @@ gow: # Gow - GNU on Windows - The lightweight alternative to Cygwin # https://github.com/bmatzelle/gow/wiki -2020-03-04 12:01:05,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,880 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,896 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,896 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls -2020-03-04 12:01:05,896 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,896 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,896 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +2020-03-06 10:01:27,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,893 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:01:27,893 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,910 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.01711559295654297 +2020-03-06 10:01:27,910 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: # just 32-bit x86 installer available @@ -12977,15 +12863,15 @@ gpg4win-light: # https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 # -2020-03-04 12:01:05,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,910 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,911 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0159146785736084 -2020-03-04 12:01:05,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,911 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls -2020-03-04 12:01:05,911 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.014969825744628906 -2020-03-04 12:01:05,926 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +2020-03-06 10:01:27,910 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,910 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,910 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,910 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:01:27,923 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,925 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0016777515411376953 +2020-03-06 10:01:27,925 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: # just 32-bit x86 installer available @@ -13053,15 +12939,15 @@ gpg4win-vanilla: reboot: False -2020-03-04 12:01:05,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,925 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,926 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,942 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls -2020-03-04 12:01:05,942 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,942 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,942 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: +2020-03-06 10:01:27,925 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,925 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,925 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,925 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:01:27,925 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.015154361724853516 +2020-03-06 10:01:27,940 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: graylog-collector-sidecar: @@ -13137,15 +13023,15 @@ graylog-collector-sidecar: reboot: False -2020-03-04 12:01:05,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.015262126922607422 -2020-03-04 12:01:05,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,958 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls -2020-03-04 12:01:05,958 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,975 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +2020-03-06 10:01:27,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,940 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:01:27,940 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.016051769256591797 +2020-03-06 10:01:27,956 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: grepwin: '1.6.682': @@ -13192,15 +13078,15 @@ grepwin: locale: en_US reboot: False -2020-03-04 12:01:05,975 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,975 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:05,975 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:05,988 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:05,989 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls -2020-03-04 12:01:05,989 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:05,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:05,989 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +2020-03-06 10:01:27,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,956 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:01:27,956 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.015614509582519531 +2020-03-06 10:01:27,971 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: # just 32-bit x86 installer available @@ -13216,15 +13102,15 @@ gvim: locale: en_US reboot: False -2020-03-04 12:01:05,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:05,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,005 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls -2020-03-04 12:01:06,005 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,005 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,005 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +2020-03-06 10:01:27,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,971 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:01:27,971 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,971 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available # Source: https://handbrake.fr @@ -13241,15 +13127,15 @@ handbrake: locale: en_US reboot: False -2020-03-04 12:01:06,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,020 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,020 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls -2020-03-04 12:01:06,020 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.015383005142211914 -2020-03-04 12:01:06,036 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +2020-03-06 10:01:27,986 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.015013456344604492 +2020-03-06 10:01:27,986 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:27,986 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:27,986 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:01:27,986 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:27,986 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:27,986 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: hipchat: @@ -13263,15 +13149,15 @@ hipchat: msiexec: False reboot: False -2020-03-04 12:01:06,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:27,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:01:06,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,052 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,052 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls -2020-03-04 12:01:06,052 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,052 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,052 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +2020-03-06 10:01:27,986 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:27,986 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,002 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:01:28,002 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,002 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,002 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: hostsfileeditor: '1.2.0': @@ -13285,15 +13171,15 @@ hostsfileeditor: locale: en_US reboot: False -2020-03-04 12:01:06,052 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,052 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,052 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,069 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,069 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls -2020-03-04 12:01:06,069 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,069 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,069 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: +2020-03-06 10:01:28,002 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,002 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:01:28,002 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.01583123207092285 +2020-03-06 10:01:28,018 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: hwinfo: '5.70': @@ -13308,15 +13194,15 @@ hwinfo: locale: en_US reboot: False -2020-03-04 12:01:06,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,082 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.01376485824584961 -2020-03-04 12:01:06,083 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,083 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,083 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls -2020-03-04 12:01:06,083 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,083 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,083 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +2020-03-06 10:01:28,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,018 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:01:28,018 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,018 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: # -*- coding: utf-8 -*- # vim: ft=sls ice: @@ -13330,15 +13216,15 @@ ice: locale: en_US reboot: False -2020-03-04 12:01:06,083 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,099 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.01576542854309082 -2020-03-04 12:01:06,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,099 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls -2020-03-04 12:01:06,099 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,099 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,114 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +2020-03-06 10:01:28,036 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,036 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,036 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,036 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:01:28,036 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,036 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,049 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: # just 32-bit x86 installer available @@ -13354,15 +13240,15 @@ icecast: locale: en_US reboot: False -2020-03-04 12:01:06,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,114 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls -2020-03-04 12:01:06,114 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,131 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +2020-03-06 10:01:28,049 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,049 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,049 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,049 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:01:28,049 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,049 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,049 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: icloud: '7.3.0.20': full_name: iCloud @@ -13374,15 +13260,15 @@ icloud: locale: en_US reboot: False -2020-03-04 12:01:06,131 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,131 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,131 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,131 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,131 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls -2020-03-04 12:01:06,145 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,145 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,145 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +2020-03-06 10:01:28,049 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,065 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:01:28,065 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,065 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: iismediaservices: '4.1.0938.454': full_name: 'IIS Media Services 4.1' @@ -13418,15 +13304,15 @@ iismediaservices: locale: en_US reboot: False -2020-03-04 12:01:06,145 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,145 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,161 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls -2020-03-04 12:01:06,161 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,161 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,161 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +2020-03-06 10:01:28,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,080 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,081 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:01:28,081 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,081 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,081 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: influx-capacitor: '1.0.89': full_name: 'Influx Capacitor' @@ -13438,15 +13324,15 @@ influx-capacitor: locale: en_US reboot: False -2020-03-04 12:01:06,161 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,176 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.015024185180664062 -2020-03-04 12:01:06,176 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,176 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,176 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls -2020-03-04 12:01:06,176 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,176 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,176 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +2020-03-06 10:01:28,081 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,081 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,081 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,081 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:01:28,081 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,081 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,081 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: inkscape: '0.91': full_name: 'Inkscape 0.91' @@ -13460,15 +13346,15 @@ inkscape: locale: en_US reboot: False -2020-03-04 12:01:06,192 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,192 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,192 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,192 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,192 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls -2020-03-04 12:01:06,192 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.015799283981323242 -2020-03-04 12:01:06,208 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +2020-03-06 10:01:28,096 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,096 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,096 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,096 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:01:28,096 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,096 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,096 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: # just 32-bit x86 installer available @@ -13486,15 +13372,15 @@ intellij-community: reboot: False -2020-03-04 12:01:06,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,208 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls -2020-03-04 12:01:06,223 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,223 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,223 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +2020-03-06 10:01:28,096 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,111 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,111 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,111 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:01:28,111 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,111 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,111 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: # just 32-bit x86 installer available @@ -13512,15 +13398,15 @@ intellij-ultimate: reboot: False -2020-03-04 12:01:06,223 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,111 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,223 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,239 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls -2020-03-04 12:01:06,239 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,239 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,239 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +2020-03-06 10:01:28,111 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,111 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,128 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,128 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:01:28,128 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,128 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,128 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: internet-evidence-finder: '6.2.3.0001': full_name: 'Internet Evidence Finder' @@ -13532,15 +13418,15 @@ internet-evidence-finder: locale: en_US reboot: False -2020-03-04 12:01:06,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,128 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,254 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.014500141143798828 -2020-03-04 12:01:06,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,254 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls -2020-03-04 12:01:06,254 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,254 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,254 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +2020-03-06 10:01:28,128 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,128 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,128 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,128 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:01:28,128 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.01441192626953125 +2020-03-06 10:01:28,143 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: irfanview-plugins: '4.42': @@ -13555,15 +13441,15 @@ irfanview-plugins: locale: en_US reboot: False -2020-03-04 12:01:06,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,270 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,270 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls -2020-03-04 12:01:06,270 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.016020536422729492 -2020-03-04 12:01:06,286 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +2020-03-06 10:01:28,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,143 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:01:28,143 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,143 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available irfanview: @@ -13590,15 +13476,15 @@ irfanview: # assocallusers: if used, set associations for all users (Windows XP only) # ini: if used, set custom INI file folder (system environment variables are allowed) -2020-03-04 12:01:06,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,160 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,302 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls -2020-03-04 12:01:06,302 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,302 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,302 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +2020-03-06 10:01:28,160 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,160 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,160 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,160 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:01:28,160 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,160 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,160 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: isapirewrite-lite: '3.1.0112': full_name: 'Helicon ISAPI_Rewrite 3 Lite' @@ -13612,15 +13498,15 @@ isapirewrite-lite: locale: en_US reboot: False -2020-03-04 12:01:06,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,160 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,302 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,302 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,317 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls -2020-03-04 12:01:06,317 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,317 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +2020-03-06 10:01:28,160 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,174 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:01:28,174 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,174 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available itunes: '12.8.0.150': @@ -13649,15 +13535,15 @@ itunes: locale: en_US reboot: False -2020-03-04 12:01:06,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,333 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls -2020-03-04 12:01:06,333 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,333 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +2020-03-06 10:01:28,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,189 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,189 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,189 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:01:28,189 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,189 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,189 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way @@ -13680,15 +13566,15 @@ jdk8: locale: en_US reboot: False -2020-03-04 12:01:06,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,189 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,349 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,349 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls -2020-03-04 12:01:06,349 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,349 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,349 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +2020-03-06 10:01:28,189 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,189 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,220 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,221 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:01:28,221 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,221 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,221 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available jre: @@ -13707,15 +13593,15 @@ jre: # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way -2020-03-04 12:01:06,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,221 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,363 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.014274358749389648 -2020-03-04 12:01:06,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,364 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls -2020-03-04 12:01:06,364 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,380 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +2020-03-06 10:01:28,221 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,237 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:01:28,237 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,237 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,237 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://www.java.com/en/download/manual.jsp # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... @@ -13795,15 +13681,15 @@ jre8: -2020-03-04 12:01:06,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,380 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,380 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls -2020-03-04 12:01:06,380 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.015115737915039062 -2020-03-04 12:01:06,395 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +2020-03-06 10:01:28,237 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,253 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,253 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:01:28,253 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,253 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,253 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: jungledisk-server-management: '3.23.0.2': full_name: 'Jungle Disk Server Management' @@ -13817,15 +13703,15 @@ jungledisk-server-management: locale: en_US reboot: False -2020-03-04 12:01:06,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,253 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,395 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls -2020-03-04 12:01:06,395 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.015482187271118164 -2020-03-04 12:01:06,411 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +2020-03-06 10:01:28,253 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,253 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,267 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,268 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:01:28,268 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,268 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,268 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: jungledisk-server: '3.23.0.2': full_name: 'Jungle Disk Server' @@ -13839,15 +13725,15 @@ jungledisk-server: locale: en_US reboot: False -2020-03-04 12:01:06,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,411 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls -2020-03-04 12:01:06,411 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.015954017639160156 -2020-03-04 12:01:06,427 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +2020-03-06 10:01:28,268 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,268 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:01:28,268 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,268 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,284 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: jungledisk-workgroup: '3.23.0.2': full_name: 'Jungle Disk Workgroup' @@ -13861,15 +13747,15 @@ jungledisk-workgroup: locale: en_US reboot: False -2020-03-04 12:01:06,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,427 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls -2020-03-04 12:01:06,427 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,443 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.016567230224609375 -2020-03-04 12:01:06,443 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +2020-03-06 10:01:28,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,284 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:01:28,284 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,284 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: kdiff3: 'Not Found': full_name: 'KDiff3 (remove only)' @@ -13883,15 +13769,15 @@ kdiff3: locale: en_US reboot: False -2020-03-04 12:01:06,443 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,443 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,443 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,443 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,443 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls -2020-03-04 12:01:06,443 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,458 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.014648675918579102 -2020-03-04 12:01:06,458 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +2020-03-06 10:01:28,298 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.014225006103515625 +2020-03-06 10:01:28,299 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,299 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,299 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:01:28,299 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,299 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,299 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: # Keepass 2.x installation from https://keepass.info/ # to keep the versioning in the format of "2..minor", two seperate version arrays are created. @@ -14155,15 +14041,15 @@ keepass-2x: locale: en_US reboot: False -2020-03-04 12:01:06,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.016045331954956055 -2020-03-04 12:01:06,474 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,474 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,474 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls -2020-03-04 12:01:06,474 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,489 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +2020-03-06 10:01:28,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,315 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:01:28,315 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,315 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: keepass: '1.35.0': full_name: 'KeePass 1.35' @@ -14229,15 +14115,15 @@ keepass: locale: en_US reboot: False -2020-03-04 12:01:06,489 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,489 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,489 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls -2020-03-04 12:01:06,489 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,489 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,506 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +2020-03-06 10:01:28,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,331 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:01:28,331 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,331 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: # just 32-bit x86 installer available @@ -14255,15 +14141,15 @@ lastpass: locale: en_US reboot: False -2020-03-04 12:01:06,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,506 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,506 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,506 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,506 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls -2020-03-04 12:01:06,506 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,520 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.014073610305786133 -2020-03-04 12:01:06,520 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +2020-03-06 10:01:28,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.015616178512573242 +2020-03-06 10:01:28,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,346 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:01:28,346 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,346 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: # NOTE: If the lazarus installation directory exists the installation will # pop up a dialog box. This will cause the minion to hang because it # is waiting for the user to click continue on a dialog box that will @@ -14297,15 +14183,15 @@ lazarus: uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES -2020-03-04 12:01:06,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) -2020-03-04 12:01:06,520 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,520 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,537 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,537 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls -2020-03-04 12:01:06,537 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,537 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,537 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +2020-03-06 10:01:28,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.015700817108154297 +2020-03-06 10:01:28,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,362 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:01:28,362 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,362 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: libreoffice: '5.3.5.2': @@ -14381,15 +14267,15 @@ libreoffice: reboot: False -2020-03-04 12:01:06,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,377 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,552 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,552 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls -2020-03-04 12:01:06,552 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,568 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.016619443893432617 -2020-03-04 12:01:06,568 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +2020-03-06 10:01:28,377 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.015105247497558594 +2020-03-06 10:01:28,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,377 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:01:28,377 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,377 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,377 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: logparser: '2.2.10': full_name: 'Log Parser 2.2' @@ -14401,15 +14287,15 @@ logparser: locale: en_US reboot: False -2020-03-04 12:01:06,568 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,377 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,568 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,583 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls -2020-03-04 12:01:06,583 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,583 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +2020-03-06 10:01:28,377 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,393 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:01:28,393 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,393 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: # just 32-bit x86 installer available @@ -14436,15 +14322,15 @@ maas360bootanalyzer: reboot: False # download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory -2020-03-04 12:01:06,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,599 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,599 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,599 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls -2020-03-04 12:01:06,599 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,599 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,615 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +2020-03-06 10:01:28,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,408 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:01:28,409 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,409 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,409 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: # just 32-bit x86 installer available @@ -14461,15 +14347,15 @@ malwarebytes: locale: en_US reboot: Falsea -2020-03-04 12:01:06,615 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) -2020-03-04 12:01:06,615 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,615 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,615 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,615 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls -2020-03-04 12:01:06,629 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,653 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.023877382278442383 -2020-03-04 12:01:06,657 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +2020-03-06 10:01:28,409 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,409 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:01:28,409 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,426 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.0172426700592041 +2020-03-06 10:01:28,441 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: #MariaDB https://downloads.mariadb.org/mariadb/+releases/ #only stable versions are listed @@ -14483,398 +14369,330 @@ OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_na mariadb: - '10.0.38.0': + '5.5.63.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.37.0': + '5.5.62.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.36.0': + '5.5.61.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.35.0': + '5.5.60.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.34.0': + '5.5.59.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.33.0': + '5.5.58.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.32.0': + '5.5.57.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.31.0': + '5.5.56.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.30.0': + '5.5.55.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.29.0': + '5.5.54.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.28.0': + '5.5.53.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.27.0': + '5.5.52.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.26.0': + '5.5.51.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.25.0': + '5.5.50.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.24.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + '5.5.49.0': - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.23.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.22.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.21.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.20.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.19.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.18.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.17.0': + '5.5.48.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.16.0': + '5.5.47.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.15.0': + '5.5.46.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.14.0': + '5.5.45.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.13.0': + '5.5.44.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.12.0': + '5.5.43.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.11.0': + '5.5.42.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.10.0': + '5.5.41.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.3.13.0': + '5.5.40.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.12.0': + '5.5.39.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.11.0': + '5.5.38.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.10.0': + '5.5.37.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.9.0': + '5.5.36.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.8.0': + '5.5.35.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.7.0': + '5.5.34.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15215,519 +15033,587 @@ mariadb: - '5.5.63.0': + '10.3.13.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.62.0': + '10.3.12.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.61.0': + '10.3.11.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.60.0': + '10.3.10.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.59.0': + '10.3.9.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.58.0': + '10.3.8.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.57.0': + '10.3.7.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.56.0': + + + '10.2.22.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.55.0': + '10.2.21.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.54.0': + '10.2.20.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.53.0': + '10.2.19.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.52.0': + '10.2.18.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.51.0': + '10.2.17.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.50.0': + '10.2.16.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.49.0': + '10.2.15.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.48.0': + '10.2.14.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.47.0': + '10.2.13.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.46.0': + '10.2.12.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.45.0': + '10.2.11.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.44.0': + '10.2.10.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.43.0': + '10.2.9.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.42.0': + '10.2.8.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.41.0': + '10.2.7.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.40.0': + '10.2.6.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.39.0': + + + '10.0.38.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.38.0': + '10.0.37.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.37.0': + '10.0.36.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.36.0': + '10.0.35.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.35.0': + '10.0.34.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.34.0': + '10.0.33.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.2.22.0': + '10.0.32.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.21.0': + '10.0.31.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.20.0': + '10.0.30.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.19.0': + '10.0.29.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.18.0': + '10.0.28.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.17.0': + '10.0.27.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.16.0': + '10.0.26.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.15.0': + '10.0.25.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.14.0': + '10.0.24.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.13.0': + '10.0.23.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.12.0': + '10.0.22.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.11.0': + '10.0.21.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.10.0': + '10.0.20.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.9.0': + '10.0.19.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.8.0': + '10.0.18.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.7.0': + '10.0.17.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.6.0': + '10.0.16.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15736,15 +15622,15 @@ mariadb: -2020-03-04 12:01:06,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:01:06,682 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.020847082138061523 -2020-03-04 12:01:06,682 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,692 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,692 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls -2020-03-04 12:01:06,692 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,692 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,692 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +2020-03-06 10:01:28,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:01:28,458 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.016528844833374023 +2020-03-06 10:01:28,458 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,467 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,467 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:01:28,467 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.004106760025024414 +2020-03-06 10:01:28,471 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: mercurial: '3.1.1': @@ -15758,15 +15644,15 @@ mercurial: locale: en_US reboot: False -2020-03-04 12:01:06,692 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,692 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,708 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls -2020-03-04 12:01:06,708 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,708 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,724 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +2020-03-06 10:01:28,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,471 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:01:28,471 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,471 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: messageanalyzer: '4.0.7551.0': full_name: 'Microsoft Message Analyzer' @@ -15781,15 +15667,15 @@ messageanalyzer: locale: en_US reboot: False -2020-03-04 12:01:06,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,724 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,724 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,724 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,724 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls -2020-03-04 12:01:06,724 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,739 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.014585494995117188 -2020-03-04 12:01:06,739 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +2020-03-06 10:01:28,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,487 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:01:28,487 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,487 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,487 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: microsoft-build-tools: '14.0.23107': @@ -15803,15 +15689,15 @@ microsoft-build-tools: locale: en_US reboot: False -2020-03-04 12:01:06,739 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,739 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,739 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,739 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,755 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls -2020-03-04 12:01:06,755 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,755 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,755 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +2020-03-06 10:01:28,487 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,487 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:01:28,502 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,502 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,502 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: mikogo: '5.3.0': full_name: 'Mikogo' @@ -15823,15 +15709,15 @@ mikogo: locale: en_US reboot: False -2020-03-04 12:01:06,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,755 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,755 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,770 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls -2020-03-04 12:01:06,770 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,770 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +2020-03-06 10:01:28,502 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,502 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,502 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,502 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:01:28,502 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,502 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,502 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: miktex-basic: '2.9': full_name: 'MiKTeX 2.9' @@ -15848,15 +15734,15 @@ miktex-basic: locale: en_US reboot: False -2020-03-04 12:01:06,770 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,787 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,787 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,787 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls -2020-03-04 12:01:06,787 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,787 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,787 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +2020-03-06 10:01:28,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,518 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:01:28,518 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,518 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: mongodb: '3.3.5': full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' @@ -15877,15 +15763,15 @@ mongodb: locale: en_US reboot: False -2020-03-04 12:01:06,787 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,801 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.014711856842041016 -2020-03-04 12:01:06,801 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,801 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,801 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls -2020-03-04 12:01:06,801 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,801 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,817 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +2020-03-06 10:01:28,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,534 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:01:28,534 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,534 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ms-mbsa: '2.3.2211': @@ -15900,15 +15786,15 @@ ms-mbsa: locale: en_US reboot: False -2020-03-04 12:01:06,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,817 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,817 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,817 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,817 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls -2020-03-04 12:01:06,817 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.015569210052490234 -2020-03-04 12:01:06,833 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +2020-03-06 10:01:28,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,534 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:01:28,534 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,549 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: ms-vcpp-2005-atl-redist_x64: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15920,15 +15806,15 @@ ms-vcpp-2005-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:06,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,833 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls -2020-03-04 12:01:06,833 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,849 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.01592874526977539 -2020-03-04 12:01:06,849 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +2020-03-06 10:01:28,549 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,549 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:01:28,549 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,549 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,549 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: ms-vcpp-2005-atl-redist_x86: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15940,15 +15826,15 @@ ms-vcpp-2005-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:06,849 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,849 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,849 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,865 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,865 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls -2020-03-04 12:01:06,865 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,865 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,865 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +2020-03-06 10:01:28,549 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,565 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:01:28,565 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,565 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,565 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: ms-vcpp-2005-redist_x64: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15960,15 +15846,15 @@ ms-vcpp-2005-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:06,865 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,865 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,865 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,880 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls -2020-03-04 12:01:06,880 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,880 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,880 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +2020-03-06 10:01:28,565 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,565 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:01:28,565 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,581 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.01513814926147461 +2020-03-06 10:01:28,581 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: ms-vcpp-2005-redist_x86: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15980,15 +15866,15 @@ ms-vcpp-2005-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:06,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,880 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,896 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,896 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,896 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls -2020-03-04 12:01:06,896 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,896 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,896 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +2020-03-06 10:01:28,581 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,581 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,581 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,581 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:01:28,581 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,581 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,581 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: ms-vcpp-2005-sp1-mfc-redist_x64: '8.0.61000': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16000,15 +15886,15 @@ ms-vcpp-2005-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:06,896 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,896 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:06,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,911 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls -2020-03-04 12:01:06,911 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,911 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,911 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +2020-03-06 10:01:28,581 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,596 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:01:28,596 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,596 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,596 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: ms-vcpp-2005-sp1-mfc-redist_x86: '8.0.61001': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16020,15 +15906,15 @@ ms-vcpp-2005-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:06,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,596 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015691518783569336 -2020-03-04 12:01:06,926 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,926 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,926 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls -2020-03-04 12:01:06,926 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,926 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +2020-03-06 10:01:28,596 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,596 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:01:28,612 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,612 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: ms-vcpp-2005-sp1-redist_x64: '8.0.59192': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16040,15 +15926,15 @@ ms-vcpp-2005-sp1-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:06,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,942 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0157470703125 -2020-03-04 12:01:06,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,942 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls -2020-03-04 12:01:06,942 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,942 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,942 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +2020-03-06 10:01:28,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,612 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,612 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,612 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:01:28,612 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,612 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: ms-vcpp-2005-sp1-redist_x86: '8.0.59193': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16060,15 +15946,15 @@ ms-vcpp-2005-sp1-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:06,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.015420913696289062 -2020-03-04 12:01:06,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,958 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls -2020-03-04 12:01:06,958 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,958 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +2020-03-06 10:01:28,627 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.01563429832458496 +2020-03-06 10:01:28,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,627 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:01:28,627 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,627 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,627 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: ms-vcpp-2008-redist_x64: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' @@ -16080,15 +15966,15 @@ ms-vcpp-2008-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:06,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,973 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.015628337860107422 -2020-03-04 12:01:06,973 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,973 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,973 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls -2020-03-04 12:01:06,973 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,973 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,973 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +2020-03-06 10:01:28,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.015890121459960938 +2020-03-06 10:01:28,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,643 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:01:28,643 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,643 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: ms-vcpp-2008-redist_x86: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' @@ -16100,15 +15986,15 @@ ms-vcpp-2008-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:06,973 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:06,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.015872478485107422 -2020-03-04 12:01:06,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:06,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:06,989 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls -2020-03-04 12:01:06,989 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:06,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:06,989 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +2020-03-06 10:01:28,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,658 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:01:28,658 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,658 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,658 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: ms-vcpp-2008-sp1-atl-redist_x64: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' @@ -16120,15 +16006,15 @@ ms-vcpp-2008-sp1-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:06,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,658 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,005 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.015902996063232422 -2020-03-04 12:01:07,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,005 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls -2020-03-04 12:01:07,005 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,005 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,005 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +2020-03-06 10:01:28,658 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,658 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:01:28,674 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,674 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: ms-vcpp-2008-sp1-atl-redist_x86: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' @@ -16140,15 +16026,15 @@ ms-vcpp-2008-sp1-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:07,005 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,020 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.015451669692993164 -2020-03-04 12:01:07,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,020 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls -2020-03-04 12:01:07,020 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,020 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,020 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +2020-03-06 10:01:28,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,674 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:01:28,674 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.015496492385864258 +2020-03-06 10:01:28,690 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: ms-vcpp-2008-sp1-mfc-redist_x64: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' @@ -16160,15 +16046,15 @@ ms-vcpp-2008-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:07,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.015656232833862305 -2020-03-04 12:01:07,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,036 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls -2020-03-04 12:01:07,036 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,036 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +2020-03-06 10:01:28,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,690 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:01:28,690 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,690 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: ms-vcpp-2008-sp1-mfc-redist_x86: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' @@ -16180,15 +16066,15 @@ ms-vcpp-2008-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:07,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,052 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015677452087402344 -2020-03-04 12:01:07,052 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,052 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,052 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls -2020-03-04 12:01:07,052 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,052 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,052 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +2020-03-06 10:01:28,706 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.016064882278442383 +2020-03-06 10:01:28,706 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,706 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,706 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:01:28,706 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,706 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,706 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: ms-vcpp-2010-sp1-mfc-redist_x64: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' @@ -16200,15 +16086,15 @@ ms-vcpp-2010-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:07,052 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,706 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,067 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.01520395278930664 -2020-03-04 12:01:07,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,067 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls -2020-03-04 12:01:07,067 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,067 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,067 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +2020-03-06 10:01:28,706 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,722 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,722 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,722 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:01:28,722 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,722 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,722 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: ms-vcpp-2010-sp1-mfc-redist_x86: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' @@ -16220,15 +16106,15 @@ ms-vcpp-2010-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:07,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,722 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,083 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.01563239097595215 -2020-03-04 12:01:07,083 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,083 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,083 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls -2020-03-04 12:01:07,083 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,083 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,083 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +2020-03-06 10:01:28,722 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,722 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,744 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,744 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:01:28,744 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,751 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.007052183151245117 +2020-03-06 10:01:28,752 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: ms-vcpp-2012-redist_x64: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' @@ -16240,15 +16126,15 @@ ms-vcpp-2012-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:07,083 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,752 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,098 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.015522241592407227 -2020-03-04 12:01:07,098 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,098 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,098 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls -2020-03-04 12:01:07,098 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,098 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,098 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +2020-03-06 10:01:28,752 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,752 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:01:28,752 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,752 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,752 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: ms-vcpp-2012-redist_x86: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' @@ -16260,15 +16146,15 @@ ms-vcpp-2012-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:07,098 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,752 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.01582956314086914 -2020-03-04 12:01:07,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,114 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls -2020-03-04 12:01:07,114 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,114 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +2020-03-06 10:01:28,752 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,768 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:01:28,768 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,768 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,768 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: ms-vcpp-2013-redist_x64: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' @@ -16280,15 +16166,15 @@ ms-vcpp-2013-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:07,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.015774011611938477 -2020-03-04 12:01:07,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,130 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls -2020-03-04 12:01:07,130 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,130 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +2020-03-06 10:01:28,783 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.01507711410522461 +2020-03-06 10:01:28,783 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,783 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,783 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:01:28,783 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,783 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,783 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: ms-vcpp-2013-redist_x86: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' @@ -16300,15 +16186,15 @@ ms-vcpp-2013-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:07,130 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,146 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls -2020-03-04 12:01:07,146 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,146 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,146 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +2020-03-06 10:01:28,800 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,800 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,800 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,800 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:01:28,800 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,800 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,800 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: ms-vcpp-2015-build-tools: '14.0.25420.1': full_name: 'Microsoft Visual C++ Build Tools' @@ -16319,15 +16205,15 @@ ms-vcpp-2015-build-tools: locale: en_US reboot: False -2020-03-04 12:01:07,146 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,146 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,161 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls -2020-03-04 12:01:07,161 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,161 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,161 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +2020-03-06 10:01:28,800 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,800 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,817 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,817 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:01:28,817 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,817 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,817 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: ms-vcpp-2015-redist_x64: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' @@ -16352,15 +16238,15 @@ ms-vcpp-2015-redist_x64: # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} -2020-03-04 12:01:07,161 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,176 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.014710426330566406 -2020-03-04 12:01:07,176 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,176 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,176 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls -2020-03-04 12:01:07,176 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,176 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,176 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +2020-03-06 10:01:28,817 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,817 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,817 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,817 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:01:28,833 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,833 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,833 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: ms-vcpp-2015-redist_x86: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' @@ -16385,15 +16271,15 @@ ms-vcpp-2015-redist_x86: # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} -2020-03-04 12:01:07,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,176 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,176 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,193 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,193 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls -2020-03-04 12:01:07,193 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,193 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,193 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +2020-03-06 10:01:28,833 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,833 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,833 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,833 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:01:28,833 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,847 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.014715194702148438 +2020-03-06 10:01:28,847 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: ms-vcpp-2017-redist_x64: '14.20.27508.1': full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' @@ -16414,15 +16300,15 @@ ms-vcpp-2017-redist_x64: locale: en_US reboot: False -2020-03-04 12:01:07,193 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,847 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,193 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,193 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,208 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls -2020-03-04 12:01:07,208 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,208 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +2020-03-06 10:01:28,847 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,847 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,847 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,847 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:01:28,847 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,847 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,847 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: ms-vcpp-2017-redist_x86: '14.11.25325.0': full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' @@ -16434,15 +16320,15 @@ ms-vcpp-2017-redist_x86: locale: en_US reboot: False -2020-03-04 12:01:07,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,208 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls -2020-03-04 12:01:07,224 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,224 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,224 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: +2020-03-06 10:01:28,864 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.016607046127319336 +2020-03-06 10:01:28,864 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,864 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,864 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:01:28,864 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,879 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.014803886413574219 +2020-03-06 10:01:28,879 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: @@ -16459,15 +16345,15 @@ mucommander: reboot: False -2020-03-04 12:01:07,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,224 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,240 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,240 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,240 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls -2020-03-04 12:01:07,240 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,240 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,240 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +2020-03-06 10:01:28,879 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,879 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,879 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,879 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:01:28,893 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,893 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: mysql-essential: '5.1.73': full_name: 'MySQL Server 5.1' @@ -16481,15 +16367,15 @@ mysql-essential: locale: en_US reboot: False -2020-03-04 12:01:07,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,255 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.014945268630981445 -2020-03-04 12:01:07,255 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,255 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,255 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls -2020-03-04 12:01:07,255 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,255 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,255 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +2020-03-06 10:01:28,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,909 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:01:28,909 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,909 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,909 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: mysql-installer-community: '1.4.3.0': full_name: 'MySQL Installer - Community' @@ -16505,15 +16391,15 @@ mysql-installer-community: # https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html # https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html -2020-03-04 12:01:07,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,255 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,271 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,271 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,271 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls -2020-03-04 12:01:07,271 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,271 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,271 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +2020-03-06 10:01:28,909 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,909 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:01:28,909 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,927 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,927 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: mysql-workbench-community: '8.0.15': @@ -16550,15 +16436,15 @@ mysql-workbench-community: # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html -2020-03-04 12:01:07,271 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,271 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,286 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls -2020-03-04 12:01:07,286 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,286 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +2020-03-06 10:01:28,927 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,927 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,927 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,927 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:01:28,927 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,927 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,927 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: never10: '1.3': full_name: 'Never 10 (GRC)' @@ -16571,15 +16457,15 @@ never10: reboot: False # download it from https://www.grc.com/never10.htm -2020-03-04 12:01:07,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,302 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls -2020-03-04 12:01:07,302 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,302 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,302 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +2020-03-06 10:01:28,943 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.016110658645629883 +2020-03-06 10:01:28,943 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,943 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,943 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:01:28,943 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,943 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,956 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: # Please note that per # https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows # the MSI uninstall does not remove files or settings, @@ -16740,15 +16626,15 @@ newrelic-infra: reboot: False -2020-03-04 12:01:07,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.015366792678833008 -2020-03-04 12:01:07,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,317 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls -2020-03-04 12:01:07,317 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,317 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +2020-03-06 10:01:28,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,956 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:01:28,956 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:28,972 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: nextcloud-client: '2.2.3.4': @@ -16842,15 +16728,15 @@ nextcloud-client: reboot: False -2020-03-04 12:01:07,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,972 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,333 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls -2020-03-04 12:01:07,333 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,351 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.018047094345092773 -2020-03-04 12:01:07,351 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: +2020-03-06 10:01:28,972 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,972 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,972 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,972 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:01:28,972 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:28,987 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.015520811080932617 +2020-03-06 10:01:28,987 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: # just 32-bit x86 installer available @@ -16880,15 +16766,15 @@ nmap: reboot: False -2020-03-04 12:01:07,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:28,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,351 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,351 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,351 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,362 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls -2020-03-04 12:01:07,364 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,364 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +2020-03-06 10:01:28,987 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:28,987 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:28,987 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:28,987 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:01:28,987 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,004 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.016589641571044922 +2020-03-06 10:01:29,004 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: node.js-lts: '12.13.1': @@ -16976,15 +16862,15 @@ node.js-lts: reboot: False -2020-03-04 12:01:07,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,004 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,380 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls -2020-03-04 12:01:07,380 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,380 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,380 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +2020-03-06 10:01:29,004 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,004 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,004 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,004 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:01:29,004 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.01395106315612793 +2020-03-06 10:01:29,018 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: node.js: '13.1.0': @@ -17108,15 +16994,15 @@ node.js: reboot: False -2020-03-04 12:01:07,396 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,396 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.015376806259155273 -2020-03-04 12:01:07,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,396 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls -2020-03-04 12:01:07,396 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,396 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,410 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +2020-03-06 10:01:29,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,018 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:01:29,018 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,034 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.01684880256652832 +2020-03-06 10:01:29,034 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: nomacs: '3.8.0': @@ -17130,15 +17016,15 @@ nomacs: reboot: False -2020-03-04 12:01:07,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,411 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls -2020-03-04 12:01:07,411 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,429 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.018244266510009766 -2020-03-04 12:01:07,429 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +2020-03-06 10:01:29,034 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,034 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:01:29,034 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,049 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.01444244384765625 +2020-03-06 10:01:29,049 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: # just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. @@ -17335,15 +17221,15 @@ npp: # the 64-bit installer is available from: # https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe -2020-03-04 12:01:07,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,473 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.04451251029968262 -2020-03-04 12:01:07,473 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,490 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,490 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls -2020-03-04 12:01:07,490 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,490 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,505 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +2020-03-06 10:01:29,049 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,065 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:01:29,065 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,081 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: nsclient: @@ -17500,24 +17386,24 @@ nsclient: reboot: False -2020-03-04 12:01:07,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,505 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,505 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls -2020-03-04 12:01:07,505 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,521 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.016096830368041992 -2020-03-04 12:01:07,521 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +2020-03-06 10:01:29,081 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,081 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,081 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,081 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:01:29,081 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,096 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.015409231185913086 +2020-03-06 10:01:29,096 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: # Define versions nsis: - '3.03': + '3.0b2': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17527,9 +17413,9 @@ nsis: locale: en_US reboot: False - '3.02.1': + '3.0b1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17539,9 +17425,11 @@ nsis: locale: en_US reboot: False - '3.02': + + + '2.51': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17551,9 +17439,9 @@ nsis: locale: en_US reboot: False - '3.01': + '2.50': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17563,9 +17451,9 @@ nsis: locale: en_US reboot: False - '3.0': + '2.49': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17575,11 +17463,9 @@ nsis: locale: en_US reboot: False - - - '2.51': + '2.48': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17589,9 +17475,9 @@ nsis: locale: en_US reboot: False - '2.50': + '2.47': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17601,9 +17487,9 @@ nsis: locale: en_US reboot: False - '2.49': + '2.46': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17613,9 +17499,11 @@ nsis: locale: en_US reboot: False - '2.48': + + + '3.03': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17625,9 +17513,9 @@ nsis: locale: en_US reboot: False - '2.47': + '3.02.1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17637,9 +17525,9 @@ nsis: locale: en_US reboot: False - '2.46': + '3.02': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17649,11 +17537,9 @@ nsis: locale: en_US reboot: False - - - '3.0b2': + '3.01': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17663,9 +17549,9 @@ nsis: locale: en_US reboot: False - '3.0b1': + '3.0': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17677,15 +17563,15 @@ nsis: -2020-03-04 12:01:07,521 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('nsis', OrderedDict([('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,521 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,534 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,537 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,537 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls -2020-03-04 12:01:07,537 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,537 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,537 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +2020-03-06 10:01:29,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:01:29,096 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,096 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,111 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,112 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:01:29,112 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,112 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: # Install Meinberg NTP daemon for Windows # Note: To do a silent installation, this installer needs a setup file named # setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. @@ -17727,29 +17613,29 @@ ntp: reboot: False -2020-03-04 12:01:07,537 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,551 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.013785362243652344 -2020-03-04 12:01:07,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,552 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls -2020-03-04 12:01:07,552 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,552 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,567 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: +2020-03-06 10:01:29,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,112 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,112 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,127 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:01:29,127 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,127 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,127 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: nunit-console: - '3.9.0': - full_name: 'NUnit Console 3.9.0' + '3.8.0': + full_name: 'NUnit Console 3.8.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False @@ -17770,29 +17656,29 @@ nunit-console: - '3.8.0': - full_name: 'NUnit Console 3.8.0' + '3.9.0': + full_name: 'NUnit Console 3.9.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False -2020-03-04 12:01:07,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('nunit-console', OrderedDict([('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:01:07,567 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,567 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,567 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,567 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls -2020-03-04 12:01:07,567 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,567 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,567 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +2020-03-06 10:01:29,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:01:29,127 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,143 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:01:29,143 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,143 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: nxlog: '2.10.2150': full_name: 'NXLog-CE' @@ -17804,15 +17690,15 @@ nxlog: locale: en_US reboot: False -2020-03-04 12:01:07,582 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0010793209075927734 -2020-03-04 12:01:07,583 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,583 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,583 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls -2020-03-04 12:01:07,583 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,583 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +2020-03-06 10:01:29,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,158 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:01:29,159 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,159 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,159 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -17850,15 +17736,15 @@ octopus-tentacle: reboot: False -2020-03-04 12:01:07,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,598 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,598 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,598 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,598 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls -2020-03-04 12:01:07,598 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,598 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,615 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +2020-03-06 10:01:29,159 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,159 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:01:29,174 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,174 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: # Source: http://openlp.org/ # just 32-bit x86 installer available @@ -17888,15 +17774,15 @@ openlp: reboot: False -2020-03-04 12:01:07,615 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,615 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,615 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,615 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,615 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls -2020-03-04 12:01:07,615 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,615 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,629 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +2020-03-06 10:01:29,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,174 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:01:29,190 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,190 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: openoffice: '4.1.2': full_name: 'OpenOffice 4.1.2' @@ -17929,15 +17815,15 @@ openoffice: # 'fi', 'fr', 'da', 'de', 'bg', 'ast' # -2020-03-04 12:01:07,630 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,630 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,630 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,630 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,630 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls -2020-03-04 12:01:07,630 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,630 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,649 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +2020-03-06 10:01:29,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,190 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:01:29,190 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,208 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.01803135871887207 +2020-03-06 10:01:29,208 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18109,15 +17995,15 @@ openvpn: # /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's # /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's -2020-03-04 12:01:07,649 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,649 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,658 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,661 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls -2020-03-04 12:01:07,661 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,661 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,661 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +2020-03-06 10:01:29,208 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,219 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,221 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:01:29,221 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,221 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,221 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: # Performant endpoint visibility https://osquery.io/ @@ -18170,15 +18056,15 @@ osquery: reboot: False -2020-03-04 12:01:07,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,221 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:01:07,661 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,677 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,677 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls -2020-03-04 12:01:07,677 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,677 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,677 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +2020-03-06 10:01:29,221 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,237 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:01:29,237 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,237 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,237 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: # just 32-bit x86 installer available @@ -18192,9 +18078,9 @@ OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osqu ossec-agent: - '3.1.0': - full_name: 'OSSEC HIDS 3.1.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18204,9 +18090,9 @@ ossec-agent: - '3.0.1': - full_name: 'OSSEC HIDS 3.0.1' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18216,9 +18102,9 @@ ossec-agent: - '3.0.0': - full_name: 'OSSEC HIDS 3.0.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18228,9 +18114,9 @@ ossec-agent: - '2.9.4': - full_name: 'OSSEC HIDS 2.9.4' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18240,9 +18126,9 @@ ossec-agent: - '2.9.3': - full_name: 'OSSEC HIDS 2.9.3' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18252,9 +18138,9 @@ ossec-agent: - '2.9.2': - full_name: 'OSSEC HIDS 2.9.2' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18264,9 +18150,9 @@ ossec-agent: - '3.2.0': - full_name: 'OSSEC HIDS 3.2.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18288,15 +18174,15 @@ ossec-agent: -2020-03-04 12:01:07,692 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('ossec-agent', OrderedDict([('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,692 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,692 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,692 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,692 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls -2020-03-04 12:01:07,692 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,692 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,709 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +2020-03-06 10:01:29,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:01:29,270 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.03389930725097656 +2020-03-06 10:01:29,270 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,270 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,270 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:01:29,270 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,280 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.009647130966186523 +2020-03-06 10:01:29,284 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: owncloud: @@ -18353,15 +18239,15 @@ owncloud: reboot: False -2020-03-04 12:01:07,709 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,709 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,709 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,709 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,709 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls -2020-03-04 12:01:07,709 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,709 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,723 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +2020-03-06 10:01:29,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,284 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:01:29,284 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,284 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: pandoc: '1.17.0.2': full_name: 'Pandoc 1.17.0.2' @@ -18373,15 +18259,15 @@ pandoc: locale: en_US reboot: False -2020-03-04 12:01:07,723 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,723 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,723 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,723 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,723 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls -2020-03-04 12:01:07,723 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,723 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,723 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +2020-03-06 10:01:29,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,299 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,299 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,299 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:01:29,299 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,299 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,299 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: parallels-client-15: '15.0.3869': @@ -18397,15 +18283,15 @@ parallels-client-15: # The latest RAS clients can be downloaded for FREE from: # https://www.parallels.com/uk/products/ras/download/links/ -2020-03-04 12:01:07,723 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,299 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,739 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.015623331069946289 -2020-03-04 12:01:07,739 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,739 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,739 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls -2020-03-04 12:01:07,739 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,739 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,739 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +2020-03-06 10:01:29,299 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,299 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,299 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,315 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:01:29,315 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,315 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18436,15 +18322,15 @@ pass4win: locale: en_US reboot: False -2020-03-04 12:01:07,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,754 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,754 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,754 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls -2020-03-04 12:01:07,754 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,754 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,754 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +2020-03-06 10:01:29,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,315 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:01:29,315 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.01602029800415039 +2020-03-06 10:01:29,331 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: passware-kit-agent: '13.1.7657': full_name: 'Passware Kit Agent (64-bit)' @@ -18456,15 +18342,15 @@ passware-kit-agent: locale: en_US reboot: False -2020-03-04 12:01:07,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.01568293571472168 -2020-03-04 12:01:07,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,770 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls -2020-03-04 12:01:07,770 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,770 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +2020-03-06 10:01:29,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,331 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:01:29,331 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,331 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: passware-kit-forensic: '13.1.7657': full_name: 'Passware Kit Forensic (64-bit)' @@ -18476,15 +18362,15 @@ passware-kit-forensic: locale: en_US reboot: False -2020-03-04 12:01:07,770 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,786 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls -2020-03-04 12:01:07,786 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,786 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +2020-03-06 10:01:29,331 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,346 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:01:29,346 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,346 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: # Source: https://patchmypc.net/ patchmypc-free: '3.0.1.1': @@ -18503,15 +18389,15 @@ patchmypc-free: locale: en_US reboot: False -2020-03-04 12:01:07,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,801 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls -2020-03-04 12:01:07,801 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,801 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,801 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +2020-03-06 10:01:29,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,361 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:01:29,362 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,362 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: pdf24creator: '8.8.2': @@ -18607,15 +18493,15 @@ pdf24creator: # Source: https://en.pdf24.org/ # Packagin info Source: https://chocolatey.org/packages/pdf24 -2020-03-04 12:01:07,801 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,801 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,801 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,817 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,817 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls -2020-03-04 12:01:07,817 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,817 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,817 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +2020-03-06 10:01:29,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,362 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:01:29,377 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,377 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,377 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: # just 32-bit x86 installer available @@ -18631,15 +18517,15 @@ pdfcreator: locale: en_US reboot: False -2020-03-04 12:01:07,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,377 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,836 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.018503665924072266 -2020-03-04 12:01:07,836 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,836 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,836 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls -2020-03-04 12:01:07,836 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,836 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,836 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +2020-03-06 10:01:29,377 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,377 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:01:29,377 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,377 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,393 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: peazip: '6.0.0': @@ -18653,15 +18539,15 @@ peazip: locale: en_US reboot: False -2020-03-04 12:01:07,836 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.012674570083618164 -2020-03-04 12:01:07,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,848 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls -2020-03-04 12:01:07,848 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,848 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: +2020-03-06 10:01:29,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,393 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:01:29,393 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,393 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: @@ -18705,15 +18591,15 @@ pgadmin4: reboot: False -2020-03-04 12:01:07,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,864 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,864 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls -2020-03-04 12:01:07,864 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,864 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,864 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +2020-03-06 10:01:29,409 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,409 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:01:29,409 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,409 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,409 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: pgina: '3.1.8.0': full_name: 'pGina v3.1.8.0' @@ -18723,15 +18609,15 @@ pgina: locale: en_US reboot: False -2020-03-04 12:01:07,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,864 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,880 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,880 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls -2020-03-04 12:01:07,880 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,880 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,880 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: +2020-03-06 10:01:29,409 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,425 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,425 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:01:29,425 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,425 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,425 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: # just 32-bit x86 installer available @@ -18750,15 +18636,15 @@ pidgin: reboot: False -2020-03-04 12:01:07,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,425 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,895 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.015363216400146484 -2020-03-04 12:01:07,895 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,895 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,895 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls -2020-03-04 12:01:07,895 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,895 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,895 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +2020-03-06 10:01:29,425 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,425 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,439 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,440 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:01:29,440 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,440 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: # Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: # salt mid pkg.install postgresql version='"9.6"' @@ -18803,15 +18689,15 @@ postgresql: reboot: False -2020-03-04 12:01:07,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:01:07,912 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.01691579818725586 -2020-03-04 12:01:07,912 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,912 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,912 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls -2020-03-04 12:01:07,912 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,927 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.014942646026611328 -2020-03-04 12:01:07,927 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +2020-03-06 10:01:29,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,440 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,440 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,455 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:01:29,455 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,455 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,455 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: ### NOTE: You must accept the PowerBI Desktop EULA by setting the ### Pillar key `powerbi:desktop:accept_eula` to `True` in order to ### install this package. You can find a copy of the EULA at @@ -18833,15 +18719,15 @@ powerbi-desktop: msiexec: True reboot: False -2020-03-04 12:01:07,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:01:07,927 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,927 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,927 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,927 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls -2020-03-04 12:01:07,942 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,942 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,942 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +2020-03-06 10:01:29,455 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,455 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,455 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,471 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:01:29,471 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,471 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: #PowerShell Core https://github.com/PowerShell/PowerShell @@ -18904,15 +18790,15 @@ powershell-core: reboot: False -2020-03-04 12:01:07,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:01:07,942 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:07,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,958 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls -2020-03-04 12:01:07,958 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:07,958 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +2020-03-06 10:01:29,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,471 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:01:29,471 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,487 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0156400203704834 +2020-03-06 10:01:29,487 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: # Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems # WMI Exporter: https://github.com/martinlindhe/wmi_exporter # Prometheus Monitoring: https://prometheus.io/ @@ -19112,15 +18998,15 @@ prometheus-wmi-exporter: reboot: False -2020-03-04 12:01:07,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,975 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.016882896423339844 -2020-03-04 12:01:07,975 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:07,975 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:07,975 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls -2020-03-04 12:01:07,975 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:07,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.014121770858764648 -2020-03-04 12:01:07,989 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +2020-03-06 10:01:29,487 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,503 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,503 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:01:29,503 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,503 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,503 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: putty: '0.73.0.0': @@ -19246,15 +19132,15 @@ putty: reboot: False -2020-03-04 12:01:07,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:07,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,003 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,005 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls -2020-03-04 12:01:08,005 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,005 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,005 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +2020-03-06 10:01:29,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.015661954879760742 +2020-03-06 10:01:29,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,518 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:01:29,518 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,518 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: python2_x64: @@ -19466,15 +19352,15 @@ python2_x64: reboot: False -2020-03-04 12:01:08,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,020 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.01463937759399414 -2020-03-04 12:01:08,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,020 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls -2020-03-04 12:01:08,020 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015623807907104492 -2020-03-04 12:01:08,036 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +2020-03-06 10:01:29,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0016727447509765625 +2020-03-06 10:01:29,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,534 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:01:29,534 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,534 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: python2_x86: @@ -19686,15 +19572,15 @@ python2_x86: reboot: False -2020-03-04 12:01:08,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,051 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,052 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls -2020-03-04 12:01:08,052 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,052 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,052 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: +2020-03-06 10:01:29,549 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,549 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:01:29,549 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,549 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,568 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: python3_x64: @@ -19831,15 +19717,15 @@ python3_x64: reboot: False -2020-03-04 12:01:08,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,568 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,067 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.01511383056640625 -2020-03-04 12:01:08,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,067 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls -2020-03-04 12:01:08,067 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,084 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.01756739616394043 -2020-03-04 12:01:08,084 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: +2020-03-06 10:01:29,568 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,568 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,577 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,577 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:01:29,580 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,580 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,580 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: python3_x86: @@ -19966,15 +19852,15 @@ python3_x86: reboot: False -2020-03-04 12:01:08,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,084 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,096 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,099 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls -2020-03-04 12:01:08,099 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,099 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,099 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +2020-03-06 10:01:29,580 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,597 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,597 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,597 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:01:29,597 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,597 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,597 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -19991,15 +19877,15 @@ qemu: locale: en_US reboot: False -2020-03-04 12:01:08,099 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,099 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,114 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls -2020-03-04 12:01:08,114 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,114 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: +2020-03-06 10:01:29,597 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,597 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,597 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,612 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:01:29,612 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,612 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: @@ -20015,15 +19901,15 @@ queueexplorerpro: locale: en_US reboot: False -2020-03-04 12:01:08,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,130 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls -2020-03-04 12:01:08,130 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,130 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +2020-03-06 10:01:29,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,612 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,612 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,612 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:01:29,612 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,629 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: quicktime: '7.79.80.95': full_name: 'QuickTime 7' @@ -20048,15 +19934,15 @@ quicktime: # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} -2020-03-04 12:01:08,130 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,629 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,145 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls -2020-03-04 12:01:08,145 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,145 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,145 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: +2020-03-06 10:01:29,629 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,629 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,629 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,629 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:01:29,629 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,629 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,642 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: rabbitmq: @@ -20081,15 +19967,15 @@ rabbitmq: reboot: False -2020-03-04 12:01:08,145 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,145 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,161 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls -2020-03-04 12:01:08,161 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,161 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,161 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +2020-03-06 10:01:29,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,643 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:01:29,643 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,643 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: rakudo-star_x86: '1.0.0': full_name: 'Rakudo Star 2016.01' @@ -20101,15 +19987,15 @@ rakudo-star_x86: locale: en_US reboot: False -2020-03-04 12:01:08,161 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,161 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,177 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,177 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls -2020-03-04 12:01:08,177 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,177 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,177 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +2020-03-06 10:01:29,643 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,643 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,659 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:01:29,659 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,659 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,659 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: rakudo-star_x64: '1.0.0': full_name: 'Rakudo Star 2016.04' @@ -20121,15 +20007,15 @@ rakudo-star_x64: locale: en_US reboot: False -2020-03-04 12:01:08,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,177 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,177 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,191 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,192 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls -2020-03-04 12:01:08,192 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,192 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,192 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +2020-03-06 10:01:29,659 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,659 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:01:29,659 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.01548314094543457 +2020-03-06 10:01:29,674 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: rasclient: '16': @@ -20146,15 +20032,15 @@ rasclient: reboot: False -2020-03-04 12:01:08,192 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,192 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,208 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls -2020-03-04 12:01:08,208 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,208 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +2020-03-06 10:01:29,674 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,674 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,674 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:01:29,689 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0006728172302246094 +2020-03-06 10:01:29,690 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: rdcman: '2.7.14060': full_name: 'Remote Desktop Connection Manager' @@ -20166,15 +20052,15 @@ rdcman: locale: en_US reboot: False -2020-03-04 12:01:08,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,223 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls -2020-03-04 12:01:08,224 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,224 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,224 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: +2020-03-06 10:01:29,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,690 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:01:29,690 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,690 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: rocketchat: @@ -20270,15 +20156,15 @@ rocketchat: reboot: False -2020-03-04 12:01:08,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,705 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,224 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,224 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,240 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,240 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls -2020-03-04 12:01:08,240 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,240 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,240 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +2020-03-06 10:01:29,705 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,705 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:01:29,705 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,705 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,705 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: rubyinstaller_x64: '2.2.3-p173': @@ -20312,15 +20198,15 @@ rubyinstaller_x64: reboot: False -2020-03-04 12:01:08,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,240 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,255 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,255 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,255 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls -2020-03-04 12:01:08,255 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,255 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,255 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +2020-03-06 10:01:29,721 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,721 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:01:29,721 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,721 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,721 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: rubyinstaller_x86: '2.2.3-p173': @@ -20364,15 +20250,15 @@ rubyinstaller_x86: reboot: False -2020-03-04 12:01:08,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,255 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,270 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls -2020-03-04 12:01:08,270 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,270 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,287 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +2020-03-06 10:01:29,737 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.015619754791259766 +2020-03-06 10:01:29,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,737 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:01:29,737 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,737 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,753 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -20892,15 +20778,15 @@ salt-minion: -2020-03-04 12:01:08,287 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:01:08,287 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,301 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls -2020-03-04 12:01:08,301 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,301 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,301 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +2020-03-06 10:01:29,753 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,768 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:01:29,768 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,768 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,784 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -21234,15 +21120,15 @@ salt-minion-py3: -2020-03-04 12:01:08,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:01:08,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,317 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls -2020-03-04 12:01:08,317 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.01616644859313965 -2020-03-04 12:01:08,333 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +2020-03-06 10:01:29,784 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,784 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,784 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,784 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:01:29,802 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,802 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,802 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: sandboxie: '4.20': @@ -21256,15 +21142,15 @@ sandboxie: locale: en_US reboot: False -2020-03-04 12:01:08,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,333 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls -2020-03-04 12:01:08,333 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,348 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +2020-03-06 10:01:29,802 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,802 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,802 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,802 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:01:29,802 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,802 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,818 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: scaleout: latest: @@ -21278,15 +21164,15 @@ scaleout: locale: en_US reboot: False -2020-03-04 12:01:08,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,349 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,349 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,349 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,349 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls -2020-03-04 12:01:08,349 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,349 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,349 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +2020-03-06 10:01:29,818 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,818 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,818 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,818 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:01:29,818 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,818 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,818 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: # just 32-bit x86 installer available @@ -21302,15 +21188,15 @@ secunia.psi: locale: en_US reboot: False -2020-03-04 12:01:08,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,832 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.015500068664550781 -2020-03-04 12:01:08,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,364 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls -2020-03-04 12:01:08,364 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,384 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: +2020-03-06 10:01:29,832 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,832 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,832 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,832 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:01:29,832 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,832 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,849 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: @@ -21380,15 +21266,15 @@ sensu: reboot: False -2020-03-04 12:01:08,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,849 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,384 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,384 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,392 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,392 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls -2020-03-04 12:01:08,392 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,396 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0033135414123535156 -2020-03-04 12:01:08,396 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +2020-03-06 10:01:29,849 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,849 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,849 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,859 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:01:29,859 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,861 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0027704238891601562 +2020-03-06 10:01:29,861 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: sharpdevelop: '5.1.5134': full_name: 'SharpDevelop 5.1 RC' @@ -21427,15 +21313,15 @@ sharpdevelop: locale: en_US reboot: False -2020-03-04 12:01:08,396 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,861 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,396 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,396 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls -2020-03-04 12:01:08,396 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.01572728157043457 -2020-03-04 12:01:08,411 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +2020-03-06 10:01:29,861 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,861 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,861 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,861 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:01:29,861 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,861 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,861 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: # just 32-bit x86 installer available @@ -21451,15 +21337,15 @@ skitch: locale: en_US reboot: False -2020-03-04 12:01:08,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,861 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,411 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,411 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls -2020-03-04 12:01:08,411 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.015637636184692383 -2020-03-04 12:01:08,427 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +2020-03-06 10:01:29,878 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.016101360321044922 +2020-03-06 10:01:29,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,878 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:01:29,878 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,878 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,878 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: skype-msi: '7.41.101': full_name: 'Skypeâ„¢ 7.41' @@ -21495,15 +21381,15 @@ skype-msi: # http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 # you can also check microsite http://skype.techygeekshome.info/ -2020-03-04 12:01:08,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,878 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,427 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,427 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls -2020-03-04 12:01:08,427 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,444 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.01659417152404785 -2020-03-04 12:01:08,444 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +2020-03-06 10:01:29,878 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,893 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:01:29,893 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,893 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: # just 32-bit x86 installer available @@ -21521,15 +21407,15 @@ skype: reboot: False -2020-03-04 12:01:08,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,444 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,444 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,444 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,444 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls -2020-03-04 12:01:08,444 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,458 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.014614582061767578 -2020-03-04 12:01:08,458 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +2020-03-06 10:01:29,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,908 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,908 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:01:29,908 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,908 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,908 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: #MSI machine-wide deployment package #The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. #It is multi-client-capable, meaning that it can be used by multiple users on one machine, @@ -21575,15 +21461,15 @@ slack-machine-msi: reboot: False -2020-03-04 12:01:08,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,458 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,458 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,458 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,458 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls -2020-03-04 12:01:08,458 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,473 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.01503300666809082 -2020-03-04 12:01:08,473 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +2020-03-06 10:01:29,908 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,908 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,908 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,924 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:01:29,924 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,924 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,924 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: #MSI for per-user deployment package #The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. #The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. @@ -21602,15 +21488,15 @@ slack-user-msi: locale: en_US reboot: False -2020-03-04 12:01:08,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,473 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,473 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,473 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,473 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls -2020-03-04 12:01:08,473 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,473 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,473 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +2020-03-06 10:01:29,924 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,924 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,924 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,924 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:01:29,924 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,924 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,940 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: slack: 3.4.0: full_name: Slack @@ -21621,15 +21507,15 @@ slack: msiexec: True reboot: False -2020-03-04 12:01:08,489 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:01:08,489 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,489 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls -2020-03-04 12:01:08,489 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,489 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,489 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +2020-03-06 10:01:29,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,940 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:01:29,940 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,940 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: # just 32-bit x86 installer available @@ -21645,15 +21531,15 @@ smartmontools: locale: en_US reboot: False -2020-03-04 12:01:08,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,505 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,505 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,505 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls -2020-03-04 12:01:08,505 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,505 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,505 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +2020-03-06 10:01:29,955 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.014975547790527344 +2020-03-06 10:01:29,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,956 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:01:29,956 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,956 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: # just 32-bit x86 installer available @@ -21669,15 +21555,15 @@ snmptools: locale: en_US reboot: False -2020-03-04 12:01:08,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,521 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.016592979431152344 -2020-03-04 12:01:08,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,521 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls -2020-03-04 12:01:08,521 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,521 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,535 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: +2020-03-06 10:01:29,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,971 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:01:29,971 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,971 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: soapui: @@ -21694,15 +21580,15 @@ soapui: reboot: False -2020-03-04 12:01:08,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,536 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,536 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,536 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,536 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls -2020-03-04 12:01:08,536 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,536 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,551 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +2020-03-06 10:01:29,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,986 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,987 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:01:29,987 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:29,987 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:29,987 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: # just 32-bit x86 installer available @@ -21719,15 +21605,15 @@ software-informer: locale: en_US reboot: False -2020-03-04 12:01:08,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:29,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,552 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,552 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,552 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls -2020-03-04 12:01:08,552 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,552 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,568 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +2020-03-06 10:01:29,987 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:29,987 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:29,987 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:29,987 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:01:29,987 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,034 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.04714679718017578 +2020-03-06 10:01:30,053 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: sourcetree: '2.3.1.0': @@ -21943,15 +21829,15 @@ sourcetree: reboot: False -2020-03-04 12:01:08,568 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,568 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,583 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls -2020-03-04 12:01:08,583 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,583 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +2020-03-06 10:01:30,053 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,063 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,065 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:01:30,065 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,065 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: # just 32-bit x86 installer available @@ -21967,15 +21853,15 @@ spybot-anti-beacon: locale: en_US reboot: False -2020-03-04 12:01:08,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,583 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,583 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,583 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,583 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls -2020-03-04 12:01:08,599 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,599 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,599 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +2020-03-06 10:01:30,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,065 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:01:30,065 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,080 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.015781641006469727 +2020-03-06 10:01:30,080 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: # just 32-bit x86 installer available @@ -21995,15 +21881,15 @@ spybot: # http://www.spybotupdates.biz/files/spybot-2.4.exe # http://spybot-mirror.com/files/spybot-2.4.exe -2020-03-04 12:01:08,599 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,080 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,599 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,599 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,599 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,614 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls -2020-03-04 12:01:08,614 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,614 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,614 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +2020-03-06 10:01:30,080 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,080 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,080 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,080 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:01:30,080 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,080 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,097 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -22032,15 +21918,15 @@ sscserv-free: reboot: False -2020-03-04 12:01:08,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,097 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,614 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,614 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,614 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,630 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls -2020-03-04 12:01:08,630 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,630 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,630 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +2020-03-06 10:01:30,097 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,097 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,097 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,097 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:01:30,097 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,097 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,112 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: steam: latest: full_name: 'Steam' @@ -22051,15 +21937,15 @@ steam: uninstall_flags: '/S' reboot: False -2020-03-04 12:01:08,630 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,630 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,630 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,645 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,645 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls -2020-03-04 12:01:08,645 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,645 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,645 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +2020-03-06 10:01:30,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,112 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,112 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,112 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:01:30,112 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,112 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available stellarium: @@ -22075,15 +21961,15 @@ stellarium: locale: en_US reboot: False -2020-03-04 12:01:08,645 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,645 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,645 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,662 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,662 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls -2020-03-04 12:01:08,662 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,662 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,662 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +2020-03-06 10:01:30,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,127 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:01:30,127 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,127 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,127 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: strawberryperl_x64: '5.26.1001': @@ -22107,15 +21993,15 @@ strawberryperl_x64: reboot: False -2020-03-04 12:01:08,662 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,662 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,677 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,677 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,677 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls -2020-03-04 12:01:08,677 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,677 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,677 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +2020-03-06 10:01:30,127 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,143 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:01:30,143 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,143 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: strawberryperl_x86: '5.26.1001': @@ -22139,15 +22025,15 @@ strawberryperl_x86: reboot: False -2020-03-04 12:01:08,677 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,677 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,691 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,693 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,693 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls -2020-03-04 12:01:08,693 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,693 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,693 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +2020-03-06 10:01:30,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,143 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:01:30,143 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,159 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.01575303077697754 +2020-03-06 10:01:30,159 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: # just 32-bit x86 installer available @@ -22163,15 +22049,15 @@ stunnel: locale: en_US reboot: False -2020-03-04 12:01:08,693 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,693 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,706 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,709 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,709 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls -2020-03-04 12:01:08,709 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,709 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,709 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +2020-03-06 10:01:30,159 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,159 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:01:30,159 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,159 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,174 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: subinacl: '5.2.3790.1164': full_name: 'Windows Resource Kit Tools - SubInAcl.exe' @@ -22183,15 +22069,15 @@ subinacl: locale: en_US reboot: False -2020-03-04 12:01:08,709 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,709 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,709 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,723 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,724 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls -2020-03-04 12:01:08,724 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,724 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,724 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: +2020-03-06 10:01:30,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,174 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:01:30,174 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,174 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: @@ -22206,15 +22092,15 @@ sumatrapdf: locale: en_US reboot: False -2020-03-04 12:01:08,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,724 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,724 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,724 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,739 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls -2020-03-04 12:01:08,739 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,739 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,739 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +2020-03-06 10:01:30,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,190 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:01:30,190 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,190 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: svn: '1.8.13': full_name: 'Subversion' @@ -22235,15 +22121,15 @@ svn: locale: en_US reboot: False -2020-03-04 12:01:08,739 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,739 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,739 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,739 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,739 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls -2020-03-04 12:01:08,754 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,755 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0008866786956787109 -2020-03-04 12:01:08,755 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +2020-03-06 10:01:30,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,190 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:01:30,190 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,206 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.01546788215637207 +2020-03-06 10:01:30,206 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: # just 32-bit x86 installer available @@ -22263,15 +22149,15 @@ teamviewer: locale: en_US reboot: False -2020-03-04 12:01:08,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,755 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,755 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,755 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,755 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls -2020-03-04 12:01:08,770 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,770 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +2020-03-06 10:01:30,206 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,206 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:01:30,206 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,206 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,222 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: # just 32-bit x86 installer available @@ -22291,15 +22177,15 @@ teamviewer_host: locale: en_US reboot: False -2020-03-04 12:01:08,770 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,222 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,786 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls -2020-03-04 12:01:08,786 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,786 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +2020-03-06 10:01:30,222 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,222 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,222 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,222 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:01:30,222 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,222 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,237 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: # just 32-bit x86 installer available @@ -22318,15 +22204,15 @@ teracopy: locale: en_US reboot: False -2020-03-04 12:01:08,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,802 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls -2020-03-04 12:01:08,802 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,802 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +2020-03-06 10:01:30,237 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,237 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:01:30,237 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,237 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,251 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: # just 32-bit x86 installer available @@ -22342,15 +22228,15 @@ texmaker: locale: en_US reboot: False -2020-03-04 12:01:08,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,817 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,817 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls -2020-03-04 12:01:08,817 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,817 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,817 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: +2020-03-06 10:01:30,252 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,252 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,252 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,252 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:01:30,252 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,252 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,269 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: texniccenter: '2.02 Stable': @@ -22365,15 +22251,15 @@ texniccenter: locale: en_US reboot: False -2020-03-04 12:01:08,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,269 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,817 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,817 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,817 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,833 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls -2020-03-04 12:01:08,833 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,833 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +2020-03-06 10:01:30,269 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,269 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,269 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,269 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:01:30,269 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,269 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,284 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: # just 32-bit x86 installer available @@ -22389,15 +22275,15 @@ texstudio: locale: en_US reboot: False -2020-03-04 12:01:08,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,848 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls -2020-03-04 12:01:08,848 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,848 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +2020-03-06 10:01:30,284 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,284 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:01:30,284 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,303 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.019378662109375 +2020-03-06 10:01:30,303 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: # just 32-bit x86 installer available @@ -22413,15 +22299,15 @@ texworks: locale: en_US reboot: False -2020-03-04 12:01:08,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,303 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,864 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls -2020-03-04 12:01:08,864 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,864 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,864 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +2020-03-06 10:01:30,303 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,303 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,303 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,303 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:01:30,315 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,315 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,315 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: # just 32-bit x86 installer available @@ -22699,15 +22585,15 @@ thunderbird: reboot: False -2020-03-04 12:01:08,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,883 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.018819808959960938 -2020-03-04 12:01:08,883 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,883 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,883 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls -2020-03-04 12:01:08,893 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,896 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0023546218872070312 -2020-03-04 12:01:08,896 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +2020-03-06 10:01:30,330 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.015607357025146484 +2020-03-06 10:01:30,330 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,330 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,330 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:01:30,330 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,330 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,346 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: tightvnc: @@ -22823,15 +22709,15 @@ tightvnc: reboot: False -2020-03-04 12:01:08,896 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,896 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,896 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,911 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls -2020-03-04 12:01:08,911 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,911 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,911 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +2020-03-06 10:01:30,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,346 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,346 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:01:30,346 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,346 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,346 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: todotxt.net: 'Not Found': # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22847,15 +22733,15 @@ todotxt.net: locale: en_US reboot: False -2020-03-04 12:01:08,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,925 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.014187097549438477 -2020-03-04 12:01:08,926 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,926 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,926 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls -2020-03-04 12:01:08,926 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,926 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +2020-03-06 10:01:30,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,362 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,362 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:01:30,362 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,362 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22871,15 +22757,15 @@ todour: locale: en_US reboot: False -2020-03-04 12:01:08,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,942 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls -2020-03-04 12:01:08,942 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,942 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,942 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +2020-03-06 10:01:30,362 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,378 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,378 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,378 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:01:30,378 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,378 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,378 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: # just 32-bit x86 installer available @@ -22896,15 +22782,15 @@ tortoise-bzr: locale: en_US reboot: False -2020-03-04 12:01:08,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,378 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.015984535217285156 -2020-03-04 12:01:08,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,958 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls -2020-03-04 12:01:08,958 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:08,973 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +2020-03-06 10:01:30,378 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,378 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,392 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,393 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:01:30,393 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,393 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: # Source: https://tortoisegit.org/ tortoise-git: @@ -23065,15 +22951,15 @@ tortoise-git: reboot: False -2020-03-04 12:01:08,973 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,973 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,973 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,973 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,973 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls -2020-03-04 12:01:08,973 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:08,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.01595616340637207 -2020-03-04 12:01:08,989 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +2020-03-06 10:01:30,393 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,393 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,409 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:01:30,409 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,409 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,409 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: # Source: http://tortoisehg.bitbucket.org/ tortoise-hg: '3.6.2': @@ -23101,15 +22987,15 @@ tortoise-hg: # Need to download from source site above, so it will append proper aws key credentials # place downloaded msi in master's win_repo-ng -2020-03-04 12:01:08,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:08,989 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:08,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:08,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:08,989 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls -2020-03-04 12:01:09,005 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,005 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,005 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +2020-03-06 10:01:30,409 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,423 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,425 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:01:30,425 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,425 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,425 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: # Source: http://tortoisesvn.net/ tortoise-svn: '1.9.27285': @@ -23125,15 +23011,15 @@ tortoise-svn: reboot: False -2020-03-04 12:01:09,005 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,425 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,005 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,021 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls -2020-03-04 12:01:09,021 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,021 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,021 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +2020-03-06 10:01:30,425 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,425 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,425 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,425 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:01:30,425 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.015526294708251953 +2020-03-06 10:01:30,440 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: # just 32-bit x86 installer available @@ -23149,15 +23035,15 @@ truecrypt: locale: en_US reboot: False -2020-03-04 12:01:09,021 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,021 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,021 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,036 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls -2020-03-04 12:01:09,036 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,036 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +2020-03-06 10:01:30,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,440 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,440 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,440 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:01:30,440 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,440 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,454 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ultradefrag: @@ -23173,15 +23059,15 @@ ultradefrag: locale: en_US reboot: False -2020-03-04 12:01:09,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,036 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,036 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,052 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,052 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls -2020-03-04 12:01:09,052 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,052 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,052 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +2020-03-06 10:01:30,455 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,455 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,455 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,455 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:01:30,455 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,455 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,455 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available urlrewrite: @@ -23208,15 +23094,15 @@ urlrewrite: locale: en_US reboot: False -2020-03-04 12:01:09,052 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,052 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,067 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls -2020-03-04 12:01:09,067 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,067 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,067 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +2020-03-06 10:01:30,455 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,471 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:01:30,471 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,471 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: usbdlm: '5.2.7.0': @@ -23230,15 +23116,15 @@ usbdlm: locale: en_US reboot: False -2020-03-04 12:01:09,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,067 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,083 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,083 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls -2020-03-04 12:01:09,083 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,083 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,098 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +2020-03-06 10:01:30,471 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,486 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:01:30,486 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,486 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,486 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: vagrant: @@ -23744,15 +23630,15 @@ vagrant: reboot: False -2020-03-04 12:01:09,098 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,098 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,114 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls -2020-03-04 12:01:09,114 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,114 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +2020-03-06 10:01:30,505 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.01902294158935547 +2020-03-06 10:01:30,505 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,505 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,505 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:01:30,505 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,515 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.009915351867675781 +2020-03-06 10:01:30,515 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: vcforpython27: '9.0.1.30729': full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' @@ -23764,15 +23650,15 @@ vcforpython27: locale: en_US reboot: False -2020-03-04 12:01:09,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,114 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,130 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls -2020-03-04 12:01:09,130 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,130 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: +2020-03-06 10:01:30,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.002749204635620117 +2020-03-06 10:01:30,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,518 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,518 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:01:30,518 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,518 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,518 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: @@ -23804,15 +23690,15 @@ vcxsrv: reboot: False -2020-03-04 12:01:09,130 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,130 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,146 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls -2020-03-04 12:01:09,146 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,146 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,146 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: +2020-03-06 10:01:30,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.015542745590209961 +2020-03-06 10:01:30,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,534 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:01:30,534 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,534 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: verysleepy: @@ -23827,15 +23713,15 @@ verysleepy: locale: en_US reboot: False -2020-03-04 12:01:09,146 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,146 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,161 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls -2020-03-04 12:01:09,161 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,161 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,161 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +2020-03-06 10:01:30,534 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,534 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,549 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:01:30,549 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,549 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,549 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -23866,15 +23752,15 @@ veyon: reboot: False -2020-03-04 12:01:09,161 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,176 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.015394926071166992 -2020-03-04 12:01:09,177 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,177 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,177 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls -2020-03-04 12:01:09,177 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,177 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,198 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +2020-03-06 10:01:30,549 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,549 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,549 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:01:30,565 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,565 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,565 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: # Version 5.1 and older are no longer supported by Oracle # https://www.virtualbox.org/wiki/Download_Old_Builds @@ -23937,15 +23823,15 @@ virtualbox: reboot: False -2020-03-04 12:01:09,198 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,198 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,204 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,208 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls -2020-03-04 12:01:09,208 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,208 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: +2020-03-06 10:01:30,581 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0159151554107666 +2020-03-06 10:01:30,581 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,581 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,581 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:01:30,581 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,581 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,581 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: @@ -23980,15 +23866,15 @@ viscosity: reboot: False -2020-03-04 12:01:09,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:01:09,208 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,224 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,224 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls -2020-03-04 12:01:09,224 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,224 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,224 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +2020-03-06 10:01:30,596 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.015598058700561523 +2020-03-06 10:01:30,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,596 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:01:30,596 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,596 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,596 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: #Vivaldi is a Chromium-based browser #https://vivaldi.com @@ -24007,15 +23893,15 @@ vivaldi: locale: en_US reboot: False -2020-03-04 12:01:09,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,596 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,224 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,239 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,239 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls -2020-03-04 12:01:09,239 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,239 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,239 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +2020-03-06 10:01:30,596 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,612 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,612 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:01:30,612 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,612 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available vlc: @@ -24165,15 +24051,15 @@ vlc: reboot: False -2020-03-04 12:01:09,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,255 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0016052722930908203 -2020-03-04 12:01:09,255 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,255 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,255 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls -2020-03-04 12:01:09,255 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,271 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.016107797622680664 -2020-03-04 12:01:09,271 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +2020-03-06 10:01:30,612 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,627 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:01:30,627 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,627 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,627 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: vs-community: 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) full_name: @@ -24192,15 +24078,15 @@ vs-community: --norestart reboot: False -2020-03-04 12:01:09,271 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,271 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,271 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,271 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,286 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls -2020-03-04 12:01:09,286 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,286 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +2020-03-06 10:01:30,627 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,644 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:01:30,644 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,644 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,644 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: # due to winrepo installer limitations you need to manually download x86 + x64 System installer from # https://code.visualstudio.com/Download # and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... @@ -24276,15 +24162,15 @@ vscode: -2020-03-04 12:01:09,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,286 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,305 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,305 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls -2020-03-04 12:01:09,305 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,305 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,305 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +2020-03-06 10:01:30,644 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,659 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:01:30,659 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,659 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,659 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: vsee: '15.0.0.707': full_name: 'VSee' @@ -24296,15 +24182,15 @@ vsee: locale: en_US reboot: False -2020-03-04 12:01:09,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,305 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,305 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,317 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls -2020-03-04 12:01:09,317 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,317 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +2020-03-06 10:01:30,659 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,675 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,675 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:01:30,675 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,675 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,675 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: vs_remotetools_2017: latest: full_name: 'Remote Tools for Visual Studio 2017' @@ -24319,15 +24205,15 @@ vs_remotetools_2017: locale: en_US reboot: False -2020-03-04 12:01:09,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,675 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,317 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,332 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls -2020-03-04 12:01:09,333 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,333 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +2020-03-06 10:01:30,675 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,675 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,675 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,690 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:01:30,690 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,690 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: wamp-server-3: '3.1.3': @@ -24341,15 +24227,15 @@ wamp-server-3: locale: en_US reboot: False -2020-03-04 12:01:09,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,333 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,333 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls -2020-03-04 12:01:09,333 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,349 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.016611099243164062 -2020-03-04 12:01:09,349 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: +2020-03-06 10:01:30,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,690 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:01:30,690 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,690 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,707 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: wamp-stack: @@ -24375,15 +24261,15 @@ wamp-stack: reboot: False -2020-03-04 12:01:09,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,707 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,349 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,349 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,349 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,349 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls -2020-03-04 12:01:09,364 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,364 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +2020-03-06 10:01:30,707 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,707 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,707 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,707 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:01:30,707 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,707 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,707 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: webdeploy: '3.1237.1764': full_name: 'Microsoft Web Deploy 3.5' @@ -24397,15 +24283,15 @@ webdeploy: locale: en_US reboot: False -2020-03-04 12:01:09,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,364 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,364 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,364 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls -2020-03-04 12:01:09,364 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,380 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.015605449676513672 -2020-03-04 12:01:09,380 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +2020-03-06 10:01:30,721 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.001514434814453125 +2020-03-06 10:01:30,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,721 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:01:30,721 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,721 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,721 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: webplatforminstaller: '5.0.50430.0': full_name: 'Microsoft Web Platform Installer 5.0' @@ -24419,15 +24305,15 @@ webplatforminstaller: locale: en_US reboot: False -2020-03-04 12:01:09,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,380 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,380 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,380 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls -2020-03-04 12:01:09,380 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.015654802322387695 -2020-03-04 12:01:09,395 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +2020-03-06 10:01:30,721 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,737 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:01:30,737 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,737 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,737 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: # Source: http://winappmanager.herokuapp.com/ @@ -24443,15 +24329,15 @@ win-app-manager: locale: en_US reboot: False -2020-03-04 12:01:09,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,737 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,395 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,395 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls -2020-03-04 12:01:09,395 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,395 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,412 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: +2020-03-06 10:01:30,737 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,752 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:01:30,752 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,752 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,752 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: @@ -24466,15 +24352,15 @@ windirstat: locale: en_US reboot: False -2020-03-04 12:01:09,412 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,752 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,412 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,412 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,412 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,412 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls -2020-03-04 12:01:09,412 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,426 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.013954877853393555 -2020-03-04 12:01:09,426 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +2020-03-06 10:01:30,752 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,752 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,752 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:01:30,752 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,752 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,768 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: winhttpcertcfg: '5.2.3790.1060': full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' @@ -24486,15 +24372,15 @@ winhttpcertcfg: locale: en_US reboot: False -2020-03-04 12:01:09,426 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,426 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,426 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,426 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,426 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls -2020-03-04 12:01:09,426 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,442 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.015447139739990234 -2020-03-04 12:01:09,442 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: +2020-03-06 10:01:30,768 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,768 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:01:30,768 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,768 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,783 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: @@ -24522,15 +24408,15 @@ winmerge: reboot: False -2020-03-04 12:01:09,442 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,783 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,442 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,458 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls -2020-03-04 12:01:09,458 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,458 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,458 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +2020-03-06 10:01:30,783 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,783 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,783 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,783 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:01:30,783 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,783 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,783 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: winmtr: '0.92': @@ -24548,15 +24434,15 @@ winmtr: # download exe from winmtr.net # create two installers using http://www.ssesetup.com/ -2020-03-04 12:01:09,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,799 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,458 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,458 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,474 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,474 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls -2020-03-04 12:01:09,474 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,474 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +2020-03-06 10:01:30,799 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,799 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:01:30,799 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,799 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,799 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: winpcap: '4.1.0.2980': full_name: 'WinPcap 4.1.3' @@ -24568,15 +24454,15 @@ winpcap: locale: en_US reboot: False -2020-03-04 12:01:09,474 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,474 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,474 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,474 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,474 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls -2020-03-04 12:01:09,489 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,489 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0007824897766113281 -2020-03-04 12:01:09,489 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +2020-03-06 10:01:30,815 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,815 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:01:30,815 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,845 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.03003406524658203 +2020-03-06 10:01:30,846 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: #if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) @@ -24611,15 +24497,15 @@ winrar: -2020-03-04 12:01:09,489 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,489 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,504 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,504 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls -2020-03-04 12:01:09,504 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,504 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,504 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: +2020-03-06 10:01:30,846 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,846 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:01:30,846 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,864 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.017569303512573242 +2020-03-06 10:01:30,864 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: @@ -24886,15 +24772,15 @@ winscp: reboot: False -2020-03-04 12:01:09,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,520 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.01592731475830078 -2020-03-04 12:01:09,520 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,520 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,520 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls -2020-03-04 12:01:09,520 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,536 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.01544332504272461 -2020-03-04 12:01:09,536 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +2020-03-06 10:01:30,864 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,875 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,878 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:01:30,878 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,878 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,878 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available wireshark: @@ -25416,15 +25302,15 @@ wireshark: reboot: False -2020-03-04 12:01:09,558 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,558 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.022647857666015625 -2020-03-04 12:01:09,567 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,567 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,567 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls -2020-03-04 12:01:09,567 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,567 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,567 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +2020-03-06 10:01:30,893 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.015263080596923828 +2020-03-06 10:01:30,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,893 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:01:30,908 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,909 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0006437301635742188 +2020-03-06 10:01:30,909 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: # source: http://www.kls-soft.com/wscc/ wscc: '2.5.0.4': @@ -25439,15 +25325,15 @@ wscc: locale: en_US reboot: False -2020-03-04 12:01:09,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,567 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,567 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,584 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,584 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls -2020-03-04 12:01:09,584 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,584 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,584 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +2020-03-06 10:01:30,909 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,909 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,909 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:01:30,909 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,909 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,926 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: # Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 # https://github.com/zeffy/wufuc @@ -25469,15 +25355,15 @@ wufuc: reboot: False -2020-03-04 12:01:09,584 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,598 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.013963460922241211 -2020-03-04 12:01:09,598 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,598 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,598 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls -2020-03-04 12:01:09,598 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,598 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,598 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +2020-03-06 10:01:30,926 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,926 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,926 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,926 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:01:30,926 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,926 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,938 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: xampp: '7.2.6.0': full_name: 'XAMPP 7.2.6' @@ -25489,15 +25375,15 @@ xampp: locale: en_US reboot: False -2020-03-04 12:01:09,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,598 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,614 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,614 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,614 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls -2020-03-04 12:01:09,614 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,614 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,614 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +2020-03-06 10:01:30,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,940 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,940 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:01:30,940 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,940 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: # just 32-bit x86 installer available @@ -25514,15 +25400,15 @@ xming: locale: en_US reboot: False -2020-03-04 12:01:09,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,614 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,614 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,630 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,630 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls -2020-03-04 12:01:09,630 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,630 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,646 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: +2020-03-06 10:01:30,940 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,956 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,956 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:01:30,956 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,956 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: yubikey-manager: @@ -25588,15 +25474,15 @@ yubikey-manager: reboot: False -2020-03-04 12:01:09,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,661 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0015180110931396484 -2020-03-04 12:01:09,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,661 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,661 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls -2020-03-04 12:01:09,661 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,661 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,661 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +2020-03-06 10:01:30,956 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,971 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:01:30,971 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,971 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: yubikey-personalization-tool: '3.1.24': full_name: 'YubiKey Personalization Tool' @@ -25606,15 +25492,15 @@ yubikey-personalization-tool: uninstall_flags: '/S' reboot: False -2020-03-04 12:01:09,678 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:30,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,678 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,678 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,678 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,678 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls -2020-03-04 12:01:09,678 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,696 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.017763376235961914 -2020-03-04 12:01:09,696 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +2020-03-06 10:01:30,971 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:30,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:30,987 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:30,987 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:01:30,987 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:30,987 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:30,987 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -25622,11 +25508,11 @@ OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDic zabbix-agent: - '3.0.26.2400': + '4.2.3.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25634,11 +25520,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.27.2400': + '4.2.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25646,11 +25532,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.28.2400': + '4.2.5.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25658,11 +25544,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.29.2400': + '4.2.6.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25670,13 +25556,11 @@ zabbix-agent: locale: en_US reboot: False - - - '4.2.3.2400': + '4.2.7.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25684,11 +25568,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.4.2400': + '4.2.8.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25696,11 +25580,13 @@ zabbix-agent: locale: en_US reboot: False - '4.2.5.2400': + + + '3.0.26.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25708,11 +25594,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.6.2400': + '3.0.27.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25720,11 +25606,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.7.2400': + '3.0.28.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25732,11 +25618,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.8.2400': + '3.0.29.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25746,11 +25632,11 @@ zabbix-agent: - '4.0.9.2400': + '4.4.1.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25758,11 +25644,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.10.2400': + '4.4.2.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25770,11 +25656,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.11.2400': + '4.4.3.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25782,11 +25668,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.12.2400': + '4.4.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25794,11 +25680,13 @@ zabbix-agent: locale: en_US reboot: False - '4.0.13.2400': + + + '4.0.9.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25806,11 +25694,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.14.2400': + '4.0.10.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25818,11 +25706,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.15.2400': + '4.0.11.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25830,11 +25718,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.16.2400': + '4.0.12.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25842,13 +25730,11 @@ zabbix-agent: locale: en_US reboot: False - - - '4.4.1.2400': + '4.0.13.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25856,11 +25742,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.2.2400': + '4.0.14.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25868,11 +25754,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.3.2400': + '4.0.15.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25880,11 +25766,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.4.2400': + '4.0.16.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25894,15 +25780,15 @@ zabbix-agent: -2020-03-04 12:01:09,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: -OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,707 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.01089620590209961 -2020-03-04 12:01:09,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,708 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls -2020-03-04 12:01:09,708 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,708 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,708 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: +2020-03-06 10:01:31,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:01:31,002 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,002 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,002 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:01:31,002 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,002 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,002 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: zoom: latest: @@ -25914,15 +25800,15 @@ zoom: msiexec: True reboot: False -2020-03-04 12:01:09,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:01:09,708 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,708 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,724 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,724 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls -2020-03-04 12:01:09,724 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,724 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,724 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +2020-03-06 10:01:31,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,018 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,018 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:01:31,018 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,018 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: # Software Definition File for Elasticsearch Auditbeat # Uses the following associated scripts @@ -25984,15 +25870,15 @@ auditbeat: cache_dir: True -2020-03-04 12:01:09,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,724 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,740 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,740 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,740 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls -2020-03-04 12:01:09,740 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,740 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,740 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +2020-03-06 10:01:31,018 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,033 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,033 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,033 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:01:31,033 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,033 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,033 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: chocolatey: latest: full_name: 'Chocolatey' @@ -26006,15 +25892,15 @@ chocolatey: # https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 -2020-03-04 12:01:09,740 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,033 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,740 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,740 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,755 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,755 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls -2020-03-04 12:01:09,755 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,755 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,755 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: +2020-03-06 10:01:31,033 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,033 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,033 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,049 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:01:31,049 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,049 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,049 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: @@ -26042,15 +25928,15 @@ erlang: reboot: False -2020-03-04 12:01:09,769 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:01:09,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.001535654067993164 -2020-03-04 12:01:09,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,770 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,770 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls -2020-03-04 12:01:09,770 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,770 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,770 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +2020-03-06 10:01:31,049 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,049 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,065 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:01:31,065 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,065 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: # Software Definition File for Elasticsearch Filebeat # Uses the following associated scripts @@ -26112,15 +25998,15 @@ filebeat: cache_dir: True -2020-03-04 12:01:09,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,786 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,786 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls -2020-03-04 12:01:09,786 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,786 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,802 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +2020-03-06 10:01:31,065 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,065 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,080 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:01:31,080 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,080 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,080 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: # Software Definition File for Elasticsearch Functionbeat # Uses the following associated scripts @@ -26182,15 +26068,15 @@ functionbeat: cache_dir: True -2020-03-04 12:01:09,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,080 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,802 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,802 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls -2020-03-04 12:01:09,802 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,802 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,818 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +2020-03-06 10:01:31,080 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,080 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,080 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,080 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:01:31,080 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,097 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.016611576080322266 +2020-03-06 10:01:31,097 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: # just 32-bit x86 installer available @@ -26289,15 +26175,15 @@ gpg4win: reboot: False -2020-03-04 12:01:09,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,097 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:01:09,818 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,818 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,818 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,818 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls -2020-03-04 12:01:09,818 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.01445913314819336 -2020-03-04 12:01:09,833 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +2020-03-06 10:01:31,097 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,097 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,097 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,111 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:01:31,112 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,112 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: # Software Definition File for Elasticsearch Heartbeat # Uses the following associated scripts @@ -26359,15 +26245,15 @@ heartbeat: cache_dir: True -2020-03-04 12:01:09,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,833 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,833 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,833 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls -2020-03-04 12:01:09,833 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.015588760375976562 -2020-03-04 12:01:09,848 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +2020-03-06 10:01:31,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,112 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,112 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,112 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:01:31,112 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,112 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,129 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: # Software Definition File for Elasticsearch Metricbeat # Uses the following associated scripts @@ -26429,15 +26315,15 @@ metricbeat: cache_dir: True -2020-03-04 12:01:09,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,848 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,848 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,848 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls -2020-03-04 12:01:09,848 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,864 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.01595616340637207 -2020-03-04 12:01:09,864 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +2020-03-06 10:01:31,129 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,129 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,129 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,129 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:01:31,129 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,129 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,143 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: # Software Definition File for Elasticsearch Packetbeat # Uses the following associated scripts @@ -26499,15 +26385,15 @@ packetbeat: cache_dir: True -2020-03-04 12:01:09,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,864 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,864 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,864 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls -2020-03-04 12:01:09,879 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,879 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,879 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: +2020-03-06 10:01:31,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,143 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:01:31,143 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,143 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,143 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: @@ -26526,15 +26412,15 @@ pycharm-pro: reboot: False -2020-03-04 12:01:09,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:01:09,879 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,879 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,879 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,879 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls -2020-03-04 12:01:09,895 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,895 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,895 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +2020-03-06 10:01:31,159 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,159 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:01:31,159 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,159 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,159 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: # just 32-bit x86 installer available @@ -26549,15 +26435,15 @@ stayawake: uninstall_flags: '/S' -2020-03-04 12:01:09,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) -2020-03-04 12:01:09,895 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,895 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,911 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,911 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls -2020-03-04 12:01:09,911 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,911 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,911 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +2020-03-06 10:01:31,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.01538991928100586 +2020-03-06 10:01:31,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,174 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:01:31,174 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,174 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,174 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: # Software Definition File for Elasticsearch Winlogbeat # Uses the following associated scripts @@ -26619,31 +26505,31 @@ winlogbeat: cache_dir: True -2020-03-04 12:01:09,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,911 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,926 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,926 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,926 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls -2020-03-04 12:01:09,926 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,926 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +2020-03-06 10:01:31,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.015678882598876953 +2020-03-06 10:01:31,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,190 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,190 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:01:31,190 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,190 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: ############################################################# # Windows ############################################################# # -2020-03-04 12:01:09,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: {} -2020-03-04 12:01:09,926 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,942 [salt.loaded.int.module.win_pkg:1213][DEBUG ][6920] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing -2020-03-04 12:01:09,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:09,942 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:09,942 [salt.template :59 ][DEBUG ][6920] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls -2020-03-04 12:01:09,942 [salt.utils.jinja :85 ][DEBUG ][6920] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:01:09,942 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:01:09,942 [salt.template :120 ][DEBUG ][6920] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +2020-03-06 10:01:31,190 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,190 [salt.loaded.int.module.win_pkg:1217][DEBUG ][6376] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:01:31,205 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:31,205 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:31,205 [salt.template :59 ][DEBUG ][6376] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:01:31,205 [salt.utils.jinja :85 ][DEBUG ][6376] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:01:31,205 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:01:31,205 [salt.template :120 ][DEBUG ][6376] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: # only 32-bit (x86) installer available @@ -26677,1605 +26563,818 @@ zipinstaller: # as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache # -2020-03-04 12:01:09,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][6920] Results of YAML rendering: +2020-03-06 10:01:31,205 [salt.loaded.int.render.yaml:80 ][DEBUG ][6376] Results of YAML rendering: OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) -2020-03-04 12:01:09,958 [salt.template :26 ][PROFILE ][6920] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:01:09,958 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 12:01:09,980 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 12:01:10,005 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: Volume in drive C is Windows 10 +2020-03-06 10:01:31,205 [salt.template :30 ][PROFILE ][6376] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:01:31,223 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:01:31,239 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:01:31,252 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Volume in drive C is Windows 10 Volume Serial Number is 9C77-B555 Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng -03/04/2020 03:01 PM . -03/04/2020 03:01 PM .. -03/04/2020 03:01 PM 927 7zip.sls -03/04/2020 03:01 PM 723 activeperl_x64.sls -03/04/2020 03:01 PM 973 activeperl_x86.sls -03/04/2020 03:01 PM 798 adobeair.sls -03/04/2020 03:01 PM 956 adobereader-dc-classic.sls -03/04/2020 03:01 PM 851 adobereader-xi.sls -03/04/2020 03:01 PM 830 adobereader.sls -03/04/2020 03:01 PM 589 adobeshockwaveplayer.sls -03/04/2020 03:01 PM 775 adv-ip-scanner.sls -03/04/2020 03:01 PM 787 adv-port-scanner.sls -03/04/2020 03:01 PM 769 advancedlogging.sls -03/04/2020 03:01 PM 373 anydesk-msi.sls -03/04/2020 03:01 PM 597 anydesk.sls -03/04/2020 03:01 PM 803 applicationrequestrouting.sls -03/04/2020 03:01 PM 370 aspnet-mvc1.sls -03/04/2020 03:01 PM 439 atom.sls -03/04/2020 03:01 PM 655 audacity.sls -03/04/2020 03:01 PM auditbeat -03/04/2020 03:01 PM 1,768 autohotkey.sls -03/04/2020 03:01 PM 611 autoit.sls -03/04/2020 03:01 PM 670 autopsy.sls -03/04/2020 03:01 PM 659 awscli.sls -03/04/2020 03:01 PM 799 azuredatastudio.sls -03/04/2020 03:01 PM 422 bandizip.sls -03/04/2020 03:01 PM 563 belarc-advisor.sls -03/04/2020 03:01 PM 367 bginfo4x.sls -03/04/2020 03:01 PM 547 bitnami-nginxstack.sls -03/04/2020 03:01 PM 568 bitvise.sls -03/04/2020 03:01 PM 777 blender.sls -03/04/2020 03:01 PM 395 bootracer.sls -03/04/2020 03:01 PM 664 bulkrenameutility.sls -03/04/2020 03:01 PM 661 bulk_extractor.sls -03/04/2020 03:01 PM 476 ccleaner-slim.sls -03/04/2020 03:01 PM 445 ccleaner.sls -03/04/2020 03:01 PM 606 cdburnerxp.sls -03/04/2020 03:01 PM 594 cdroller.sls -03/04/2020 03:01 PM 658 check-mk-agent-msi.sls -03/04/2020 03:01 PM 451 check-mk-agent.sls -03/04/2020 03:01 PM chocolatey -03/04/2020 03:01 PM 394 chrome-rdp.sls -03/04/2020 03:01 PM 375 chrome.sls -03/04/2020 03:01 PM 1,296 clamav.sls -03/04/2020 03:01 PM 1,200 clamwin.sls -03/04/2020 03:01 PM 500 classicshell.sls -03/04/2020 03:01 PM 1,521 clink.sls -03/04/2020 03:01 PM 617 conemu.sls -03/04/2020 03:01 PM 687 cpu-z.sls -03/04/2020 03:01 PM 2,833 curl.sls -03/04/2020 03:01 PM 374 cyberduck-cli.sls -03/04/2020 03:01 PM 616 cyberduck-msi.sls -03/04/2020 03:01 PM 639 cyberduck.sls -03/04/2020 03:01 PM 751 defraggler.sls -03/04/2020 03:01 PM 2,637 dotnet.sls -03/04/2020 03:01 PM 643 dropbox.sls -03/04/2020 03:01 PM 683 duplicati.sls -03/04/2020 03:01 PM 712 dvdstyler.sls -03/04/2020 03:01 PM 737 echo-desktop.sls -03/04/2020 03:01 PM 1,327 eea.sls -03/04/2020 03:01 PM 423 emet.sls -03/04/2020 03:01 PM 625 emsisoft-anti-malware.sls -03/04/2020 03:01 PM 721 eraser.sls -03/04/2020 03:01 PM erlang -03/04/2020 03:01 PM 982 evernote.sls -03/04/2020 03:01 PM 531 fiddler.sls -03/04/2020 03:01 PM filebeat -03/04/2020 03:01 PM 660 filehippo-app-manager.sls -03/04/2020 03:01 PM 1,271 filezilla.sls -03/04/2020 03:01 PM 1,115 firefox-esr_x64.sls -03/04/2020 03:01 PM 1,396 firefox-esr_x86.sls -03/04/2020 03:01 PM 1,365 firefox_x64.sls -03/04/2020 03:01 PM 1,870 firefox_x86.sls -03/04/2020 03:01 PM functionbeat -03/04/2020 03:01 PM 552 gedit.sls -03/04/2020 03:01 PM 822 gimp.sls -03/04/2020 03:01 PM 953 git-extensions.sls -03/04/2020 03:01 PM 3,855 git.sls -03/04/2020 03:01 PM 848 glarysoft-absolute-uninstaller.sls -03/04/2020 03:01 PM 563 gnucash.sls -03/04/2020 03:01 PM 2,152 golang.sls -03/04/2020 03:01 PM 320 goodsync.sls -03/04/2020 03:01 PM 601 gow.sls -03/04/2020 03:01 PM gpg4win -03/04/2020 03:01 PM 847 gpg4win-light.sls -03/04/2020 03:01 PM 621 gpg4win-vanilla.sls -03/04/2020 03:01 PM 544 graylog-collector-sidecar.sls -03/04/2020 03:01 PM 2,661 grepwin.sls -03/04/2020 03:01 PM 505 gvim.sls -03/04/2020 03:01 PM 622 handbrake.sls -03/04/2020 03:01 PM heartbeat -03/04/2020 03:01 PM 503 hipchat.sls -03/04/2020 03:01 PM 771 hostsfileeditor.sls -03/04/2020 03:01 PM 623 hwinfo.sls -03/04/2020 03:01 PM 339 ice.sls -03/04/2020 03:01 PM 493 icecast.sls -03/04/2020 03:01 PM 377 icloud.sls -03/04/2020 03:01 PM 2,197 iismediaservices.sls -03/04/2020 03:01 PM 358 influx-capacitor.sls -03/04/2020 03:01 PM 644 inkscape.sls -03/04/2020 03:01 PM 646 intellij-community.sls -03/04/2020 03:01 PM 618 intellij-ultimate.sls -03/04/2020 03:01 PM 360 internet-evidence-finder.sls -03/04/2020 03:01 PM 702 irfanview-plugins.sls -03/04/2020 03:01 PM 1,610 irfanview.sls -03/04/2020 03:01 PM 697 isapirewrite-lite.sls -03/04/2020 03:01 PM 2,602 itunes.sls -03/04/2020 03:01 PM 1,279 jdk8.sls -03/04/2020 03:01 PM 1,200 jre.sls -03/04/2020 03:01 PM 1,480 jre8.sls -03/04/2020 03:01 PM 995 jungledisk-server-management.sls -03/04/2020 03:01 PM 891 jungledisk-server.sls -03/04/2020 03:01 PM 921 jungledisk-workgroup.sls -03/04/2020 03:01 PM 518 kdiff3.sls -03/04/2020 03:01 PM 1,091 keepass-2x.sls -03/04/2020 03:01 PM 2,655 keepass.sls -03/04/2020 03:01 PM 673 lastpass.sls -03/04/2020 03:01 PM 1,329 lazarus.sls -03/04/2020 03:01 PM 951 libreoffice.sls -03/04/2020 03:01 PM 419 logparser.sls -03/04/2020 03:01 PM 2,627 maas360bootanalyzer.sls -03/04/2020 03:01 PM 722 malwarebytes.sls -03/04/2020 03:01 PM 1,884 mariadb.sls -03/04/2020 03:01 PM 653 mercurial.sls -03/04/2020 03:01 PM 649 messageanalyzer.sls -03/04/2020 03:01 PM metricbeat -03/04/2020 03:01 PM 603 microsoft-build-tools.sls -03/04/2020 03:01 PM 317 mikogo.sls -03/04/2020 03:01 PM 766 miktex-basic.sls -03/04/2020 03:01 PM 787 mongodb.sls -03/04/2020 03:01 PM 831 ms-mbsa.sls -03/04/2020 03:01 PM 419 ms-vcpp-2005-atl-redist_x64.sls -03/04/2020 03:01 PM 413 ms-vcpp-2005-atl-redist_x86.sls -03/04/2020 03:01 PM 412 ms-vcpp-2005-redist_x64.sls -03/04/2020 03:01 PM 406 ms-vcpp-2005-redist_x86.sls -03/04/2020 03:01 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls -03/04/2020 03:01 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls -03/04/2020 03:01 PM 416 ms-vcpp-2005-sp1-redist_x64.sls -03/04/2020 03:01 PM 410 ms-vcpp-2005-sp1-redist_x86.sls -03/04/2020 03:01 PM 434 ms-vcpp-2008-redist_x64.sls -03/04/2020 03:01 PM 434 ms-vcpp-2008-redist_x86.sls -03/04/2020 03:01 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls -03/04/2020 03:01 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls -03/04/2020 03:01 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls -03/04/2020 03:01 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls -03/04/2020 03:01 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls -03/04/2020 03:01 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls -03/04/2020 03:01 PM 493 ms-vcpp-2012-redist_x64.sls -03/04/2020 03:01 PM 495 ms-vcpp-2012-redist_x86.sls -03/04/2020 03:01 PM 503 ms-vcpp-2013-redist_x64.sls -03/04/2020 03:01 PM 503 ms-vcpp-2013-redist_x86.sls -03/04/2020 03:01 PM 481 ms-vcpp-2015-build-tools.sls -03/04/2020 03:01 PM 1,407 ms-vcpp-2015-redist_x64.sls -03/04/2020 03:01 PM 1,407 ms-vcpp-2015-redist_x86.sls -03/04/2020 03:01 PM 1,166 ms-vcpp-2017-redist_x64.sls -03/04/2020 03:01 PM 539 ms-vcpp-2017-redist_x86.sls -03/04/2020 03:01 PM 585 mucommander.sls -03/04/2020 03:01 PM 638 mysql-essential.sls -03/04/2020 03:01 PM 632 mysql-installer-community.sls -03/04/2020 03:01 PM 639 mysql-workbench.sls -03/04/2020 03:01 PM 298 never10.sls -03/04/2020 03:01 PM 929 newrelic-infra.sls -03/04/2020 03:01 PM 526 nextcloud-client.sls -03/04/2020 03:01 PM 584 nmap.sls -03/04/2020 03:01 PM 709 node.js-lts.sls -03/04/2020 03:01 PM 733 node.js.sls -03/04/2020 03:01 PM 368 nomacs.sls -03/04/2020 03:01 PM 985 npp.sls -03/04/2020 03:01 PM 1,252 nsclient.sls -03/04/2020 03:01 PM 826 nsis.sls -03/04/2020 03:01 PM 902 ntp.sls -03/04/2020 03:01 PM 793 nunit-console.sls -03/04/2020 03:01 PM 363 nxlog.sls -03/04/2020 03:01 PM 1,081 octopus-tentacle.sls -03/04/2020 03:01 PM 678 openlp.sls -03/04/2020 03:01 PM 1,192 openoffice.sls -03/04/2020 03:01 PM 2,130 openvpn.sls -03/04/2020 03:01 PM 587 osquery.sls -03/04/2020 03:01 PM 878 ossec-agent.sls -03/04/2020 03:01 PM 590 owncloud.sls -03/04/2020 03:01 PM packetbeat -03/04/2020 03:01 PM 400 pandoc.sls -03/04/2020 03:01 PM 814 parallels-client-15.sls -03/04/2020 03:01 PM 1,709 pass4win.sls -03/04/2020 03:01 PM 378 passware-kit-agent.sls -03/04/2020 03:01 PM 416 passware-kit-forensic.sls -03/04/2020 03:01 PM 656 patchmypc-free.sls -03/04/2020 03:01 PM 638 pdf24creator.sls -03/04/2020 03:01 PM 567 pdfcreator.sls -03/04/2020 03:01 PM 611 peazip.sls -03/04/2020 03:01 PM 812 pgadmin4.sls -03/04/2020 03:01 PM 235 pgina.sls -03/04/2020 03:01 PM 617 pidgin.sls -03/04/2020 03:01 PM 1,898 postgresql.sls -03/04/2020 03:01 PM 997 powerbi-desktop.sls -03/04/2020 03:01 PM 864 powershell-core.sls -03/04/2020 03:01 PM 1,172 prometheus-wmi-exporter.sls -03/04/2020 03:01 PM 1,488 putty.sls -03/04/2020 03:01 PM pycharm-pro -03/04/2020 03:01 PM 567 python2_x64.sls -03/04/2020 03:01 PM 526 python2_x86.sls -03/04/2020 03:01 PM 1,540 python3_x64.sls -03/04/2020 03:01 PM 1,435 python3_x86.sls -03/04/2020 03:01 PM 449 qemu.sls -03/04/2020 03:01 PM 562 queueexplorerpro.sls -03/04/2020 03:01 PM 1,542 quicktime.sls -03/04/2020 03:01 PM 495 rabbitmq.sls -03/04/2020 03:01 PM 379 rakudo-star-no-jit_x86.sls -03/04/2020 03:01 PM 375 rakudo-star_x64.sls -03/04/2020 03:01 PM 888 rasclient.sls -03/04/2020 03:01 PM 444 rdcman.sls -03/04/2020 03:01 PM 609 rocketchat.sls -03/04/2020 03:01 PM 526 rubyinstaller_x64.sls -03/04/2020 03:01 PM 551 rubyinstaller_x86.sls -03/04/2020 03:01 PM 3,719 salt-minion-py2.sls -03/04/2020 03:01 PM 2,050 salt-minion-py3.sls -03/04/2020 03:01 PM 562 sandboxie.sls -03/04/2020 03:01 PM 581 scaleout.sls -03/04/2020 03:01 PM 476 secunia.psi.sls -03/04/2020 03:01 PM 1,190 sensu.sls -03/04/2020 03:01 PM 1,827 sharpdevelop.sls -03/04/2020 03:01 PM 539 skitch.sls -03/04/2020 03:01 PM 1,533 skype-msi.sls -03/04/2020 03:01 PM 708 skype.sls -03/04/2020 03:01 PM 1,244 slack-machine-msi.sls -03/04/2020 03:01 PM 1,023 slack-user-msi.sls -03/04/2020 03:01 PM 329 slack.sls -03/04/2020 03:01 PM 591 smartmontools.sls -03/04/2020 03:01 PM 556 snmptools.sls -03/04/2020 03:01 PM 653 soapui.sls -03/04/2020 03:01 PM 623 software-informer.sls -03/04/2020 03:01 PM 1,039 sourcetree.sls -03/04/2020 03:01 PM 591 spybot-anti-beacon.sls -03/04/2020 03:01 PM 765 spybot.sls -03/04/2020 03:01 PM 664 sscserv-free.sls -03/04/2020 03:01 PM stayawake -03/04/2020 03:01 PM 443 steam.sls -03/04/2020 03:01 PM 658 stellarium.sls -03/04/2020 03:01 PM 540 strawberryperl_x64.sls -03/04/2020 03:01 PM 531 strawberryperl_x86.sls -03/04/2020 03:01 PM 521 stunnel.sls -03/04/2020 03:01 PM 398 subinacl.sls -03/04/2020 03:01 PM 467 sumatrapdf.sls -03/04/2020 03:01 PM 769 svn.sls -03/04/2020 03:01 PM 534 teamviewer.sls -03/04/2020 03:01 PM 549 teamviewer_host.sls -03/04/2020 03:01 PM 749 teracopy.sls -03/04/2020 03:01 PM 491 texmaker.sls -03/04/2020 03:01 PM 709 texniccenter.sls -03/04/2020 03:01 PM 639 texstudio.sls -03/04/2020 03:01 PM 643 texworks.sls -03/04/2020 03:01 PM 937 thunderbird.sls -03/04/2020 03:01 PM 1,014 tightvnc.sls -03/04/2020 03:01 PM 623 todotxt.net.sls -03/04/2020 03:01 PM 551 todour.sls -03/04/2020 03:01 PM 630 tortoise-bzr.sls -03/04/2020 03:01 PM 983 tortoise-git.sls -03/04/2020 03:01 PM 1,367 tortoise-hg.sls -03/04/2020 03:01 PM 897 tortoise-svn.sls -03/04/2020 03:01 PM 503 truecrypt.sls -03/04/2020 03:01 PM 662 ultradefrag.sls -03/04/2020 03:01 PM 1,598 urlrewrite.sls -03/04/2020 03:01 PM 560 usbdlm.sls -03/04/2020 03:01 PM 1,361 vagrant.sls -03/04/2020 03:01 PM 479 vcforpython27.sls -03/04/2020 03:01 PM 820 vcxsrv.sls -03/04/2020 03:01 PM 434 verysleepy.sls -03/04/2020 03:01 PM 611 veyon.sls -03/04/2020 03:01 PM 2,570 virtualbox.sls -03/04/2020 03:01 PM 794 viscosity.sls -03/04/2020 03:01 PM 657 vivaldi.sls -03/04/2020 03:01 PM 739 vlc.sls -03/04/2020 03:01 PM 713 vs-community.sls -03/04/2020 03:01 PM 1,388 vscode.sls -03/04/2020 03:01 PM 325 vsee.sls -03/04/2020 03:01 PM 640 vs_remotetools_2017.sls -03/04/2020 03:01 PM 835 wamp-server-3.sls -03/04/2020 03:01 PM 585 wamp-stack.sls -03/04/2020 03:01 PM 775 webdeploy.sls -03/04/2020 03:01 PM 842 webplatforminstaller.sls -03/04/2020 03:01 PM 610 win-app-manager.sls -03/04/2020 03:01 PM 467 windirstat.sls -03/04/2020 03:01 PM 468 winhttpcertcfg.sls -03/04/2020 03:01 PM winlogbeat -03/04/2020 03:01 PM 618 winmerge.sls -03/04/2020 03:01 PM 737 winmtr.sls -03/04/2020 03:01 PM 288 winpcap.sls -03/04/2020 03:01 PM 825 winrar.sls -03/04/2020 03:01 PM 828 winscp.sls -03/04/2020 03:01 PM 1,136 wireshark.sls -03/04/2020 03:01 PM wmi_provider -03/04/2020 03:01 PM 539 wscc.sls -03/04/2020 03:01 PM 726 wufuc.sls -03/04/2020 03:01 PM 352 xampp.sls -03/04/2020 03:01 PM 649 xming.sls -03/04/2020 03:01 PM 621 yubikey-manager.sls -03/04/2020 03:01 PM 546 yubikey-personalization-tool.sls -03/04/2020 03:01 PM 1,119 zabbix-agent.sls -03/04/2020 03:01 PM zipinstaller -03/04/2020 03:01 PM 278 zoom.sls +03/06/2020 01:01 PM . +03/06/2020 01:01 PM .. +03/06/2020 01:01 PM 927 7zip.sls +03/06/2020 01:01 PM 723 activeperl_x64.sls +03/06/2020 01:01 PM 973 activeperl_x86.sls +03/06/2020 01:01 PM 798 adobeair.sls +03/06/2020 01:01 PM 956 adobereader-dc-classic.sls +03/06/2020 01:01 PM 851 adobereader-xi.sls +03/06/2020 01:01 PM 830 adobereader.sls +03/06/2020 01:01 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:01 PM 775 adv-ip-scanner.sls +03/06/2020 01:01 PM 787 adv-port-scanner.sls +03/06/2020 01:01 PM 769 advancedlogging.sls +03/06/2020 01:01 PM 373 anydesk-msi.sls +03/06/2020 01:01 PM 597 anydesk.sls +03/06/2020 01:01 PM 803 applicationrequestrouting.sls +03/06/2020 01:01 PM 370 aspnet-mvc1.sls +03/06/2020 01:01 PM 439 atom.sls +03/06/2020 01:01 PM 655 audacity.sls +03/06/2020 01:01 PM auditbeat +03/06/2020 01:01 PM 1,768 autohotkey.sls +03/06/2020 01:01 PM 611 autoit.sls +03/06/2020 01:01 PM 670 autopsy.sls +03/06/2020 01:01 PM 659 awscli.sls +03/06/2020 01:01 PM 799 azuredatastudio.sls +03/06/2020 01:01 PM 422 bandizip.sls +03/06/2020 01:01 PM 563 belarc-advisor.sls +03/06/2020 01:01 PM 367 bginfo4x.sls +03/06/2020 01:01 PM 547 bitnami-nginxstack.sls +03/06/2020 01:01 PM 568 bitvise.sls +03/06/2020 01:01 PM 777 blender.sls +03/06/2020 01:01 PM 395 bootracer.sls +03/06/2020 01:01 PM 664 bulkrenameutility.sls +03/06/2020 01:01 PM 661 bulk_extractor.sls +03/06/2020 01:01 PM 476 ccleaner-slim.sls +03/06/2020 01:01 PM 445 ccleaner.sls +03/06/2020 01:01 PM 606 cdburnerxp.sls +03/06/2020 01:01 PM 594 cdroller.sls +03/06/2020 01:01 PM 658 check-mk-agent-msi.sls +03/06/2020 01:01 PM 451 check-mk-agent.sls +03/06/2020 01:01 PM chocolatey +03/06/2020 01:01 PM 394 chrome-rdp.sls +03/06/2020 01:01 PM 375 chrome.sls +03/06/2020 01:01 PM 1,296 clamav.sls +03/06/2020 01:01 PM 1,200 clamwin.sls +03/06/2020 01:01 PM 500 classicshell.sls +03/06/2020 01:01 PM 1,521 clink.sls +03/06/2020 01:01 PM 617 conemu.sls +03/06/2020 01:01 PM 687 cpu-z.sls +03/06/2020 01:01 PM 2,833 curl.sls +03/06/2020 01:01 PM 374 cyberduck-cli.sls +03/06/2020 01:01 PM 616 cyberduck-msi.sls +03/06/2020 01:01 PM 639 cyberduck.sls +03/06/2020 01:01 PM 751 defraggler.sls +03/06/2020 01:01 PM 2,637 dotnet.sls +03/06/2020 01:01 PM 643 dropbox.sls +03/06/2020 01:01 PM 683 duplicati.sls +03/06/2020 01:01 PM 712 dvdstyler.sls +03/06/2020 01:01 PM 737 echo-desktop.sls +03/06/2020 01:01 PM 1,327 eea.sls +03/06/2020 01:01 PM 423 emet.sls +03/06/2020 01:01 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:01 PM 721 eraser.sls +03/06/2020 01:01 PM erlang +03/06/2020 01:01 PM 982 evernote.sls +03/06/2020 01:01 PM 531 fiddler.sls +03/06/2020 01:01 PM filebeat +03/06/2020 01:01 PM 660 filehippo-app-manager.sls +03/06/2020 01:01 PM 1,271 filezilla.sls +03/06/2020 01:01 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:01 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:01 PM 1,365 firefox_x64.sls +03/06/2020 01:01 PM 1,870 firefox_x86.sls +03/06/2020 01:01 PM functionbeat +03/06/2020 01:01 PM 552 gedit.sls +03/06/2020 01:01 PM 822 gimp.sls +03/06/2020 01:01 PM 953 git-extensions.sls +03/06/2020 01:01 PM 3,855 git.sls +03/06/2020 01:01 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:01 PM 563 gnucash.sls +03/06/2020 01:01 PM 2,152 golang.sls +03/06/2020 01:01 PM 320 goodsync.sls +03/06/2020 01:01 PM 601 gow.sls +03/06/2020 01:01 PM gpg4win +03/06/2020 01:01 PM 847 gpg4win-light.sls +03/06/2020 01:01 PM 621 gpg4win-vanilla.sls +03/06/2020 01:01 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:01 PM 2,661 grepwin.sls +03/06/2020 01:01 PM 505 gvim.sls +03/06/2020 01:01 PM 622 handbrake.sls +03/06/2020 01:01 PM heartbeat +03/06/2020 01:01 PM 503 hipchat.sls +03/06/2020 01:01 PM 771 hostsfileeditor.sls +03/06/2020 01:01 PM 623 hwinfo.sls +03/06/2020 01:01 PM 339 ice.sls +03/06/2020 01:01 PM 493 icecast.sls +03/06/2020 01:01 PM 377 icloud.sls +03/06/2020 01:01 PM 2,197 iismediaservices.sls +03/06/2020 01:01 PM 358 influx-capacitor.sls +03/06/2020 01:01 PM 644 inkscape.sls +03/06/2020 01:01 PM 646 intellij-community.sls +03/06/2020 01:01 PM 618 intellij-ultimate.sls +03/06/2020 01:01 PM 360 internet-evidence-finder.sls +03/06/2020 01:01 PM 702 irfanview-plugins.sls +03/06/2020 01:01 PM 1,610 irfanview.sls +03/06/2020 01:01 PM 697 isapirewrite-lite.sls +03/06/2020 01:01 PM 2,602 itunes.sls +03/06/2020 01:01 PM 1,279 jdk8.sls +03/06/2020 01:01 PM 1,200 jre.sls +03/06/2020 01:01 PM 1,480 jre8.sls +03/06/2020 01:01 PM 995 jungledisk-server-management.sls +03/06/2020 01:01 PM 891 jungledisk-server.sls +03/06/2020 01:01 PM 921 jungledisk-workgroup.sls +03/06/2020 01:01 PM 518 kdiff3.sls +03/06/2020 01:01 PM 1,091 keepass-2x.sls +03/06/2020 01:01 PM 2,655 keepass.sls +03/06/2020 01:01 PM 673 lastpass.sls +03/06/2020 01:01 PM 1,329 lazarus.sls +03/06/2020 01:01 PM 951 libreoffice.sls +03/06/2020 01:01 PM 419 logparser.sls +03/06/2020 01:01 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:01 PM 722 malwarebytes.sls +03/06/2020 01:01 PM 1,884 mariadb.sls +03/06/2020 01:01 PM 653 mercurial.sls +03/06/2020 01:01 PM 649 messageanalyzer.sls +03/06/2020 01:01 PM metricbeat +03/06/2020 01:01 PM 603 microsoft-build-tools.sls +03/06/2020 01:01 PM 317 mikogo.sls +03/06/2020 01:01 PM 766 miktex-basic.sls +03/06/2020 01:01 PM 787 mongodb.sls +03/06/2020 01:01 PM 831 ms-mbsa.sls +03/06/2020 01:01 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:01 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:01 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:01 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:01 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:01 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:01 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:01 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:01 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:01 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:01 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:01 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:01 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:01 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:01 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:01 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:01 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:01 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:01 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:01 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:01 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:01 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:01 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:01 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:01 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:01 PM 585 mucommander.sls +03/06/2020 01:01 PM 638 mysql-essential.sls +03/06/2020 01:01 PM 632 mysql-installer-community.sls +03/06/2020 01:01 PM 639 mysql-workbench.sls +03/06/2020 01:01 PM 298 never10.sls +03/06/2020 01:01 PM 929 newrelic-infra.sls +03/06/2020 01:01 PM 526 nextcloud-client.sls +03/06/2020 01:01 PM 584 nmap.sls +03/06/2020 01:01 PM 709 node.js-lts.sls +03/06/2020 01:01 PM 733 node.js.sls +03/06/2020 01:01 PM 368 nomacs.sls +03/06/2020 01:01 PM 985 npp.sls +03/06/2020 01:01 PM 1,252 nsclient.sls +03/06/2020 01:01 PM 826 nsis.sls +03/06/2020 01:01 PM 902 ntp.sls +03/06/2020 01:01 PM 793 nunit-console.sls +03/06/2020 01:01 PM 363 nxlog.sls +03/06/2020 01:01 PM 1,081 octopus-tentacle.sls +03/06/2020 01:01 PM 678 openlp.sls +03/06/2020 01:01 PM 1,192 openoffice.sls +03/06/2020 01:01 PM 2,130 openvpn.sls +03/06/2020 01:01 PM 587 osquery.sls +03/06/2020 01:01 PM 878 ossec-agent.sls +03/06/2020 01:01 PM 590 owncloud.sls +03/06/2020 01:01 PM packetbeat +03/06/2020 01:01 PM 400 pandoc.sls +03/06/2020 01:01 PM 814 parallels-client-15.sls +03/06/2020 01:01 PM 1,709 pass4win.sls +03/06/2020 01:01 PM 378 passware-kit-agent.sls +03/06/2020 01:01 PM 416 passware-kit-forensic.sls +03/06/2020 01:01 PM 656 patchmypc-free.sls +03/06/2020 01:01 PM 638 pdf24creator.sls +03/06/2020 01:01 PM 567 pdfcreator.sls +03/06/2020 01:01 PM 611 peazip.sls +03/06/2020 01:01 PM 812 pgadmin4.sls +03/06/2020 01:01 PM 235 pgina.sls +03/06/2020 01:01 PM 617 pidgin.sls +03/06/2020 01:01 PM 1,898 postgresql.sls +03/06/2020 01:01 PM 997 powerbi-desktop.sls +03/06/2020 01:01 PM 864 powershell-core.sls +03/06/2020 01:01 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:01 PM 1,488 putty.sls +03/06/2020 01:01 PM pycharm-pro +03/06/2020 01:01 PM 567 python2_x64.sls +03/06/2020 01:01 PM 526 python2_x86.sls +03/06/2020 01:01 PM 1,540 python3_x64.sls +03/06/2020 01:01 PM 1,435 python3_x86.sls +03/06/2020 01:01 PM 449 qemu.sls +03/06/2020 01:01 PM 562 queueexplorerpro.sls +03/06/2020 01:01 PM 1,542 quicktime.sls +03/06/2020 01:01 PM 495 rabbitmq.sls +03/06/2020 01:01 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:01 PM 375 rakudo-star_x64.sls +03/06/2020 01:01 PM 888 rasclient.sls +03/06/2020 01:01 PM 444 rdcman.sls +03/06/2020 01:01 PM 609 rocketchat.sls +03/06/2020 01:01 PM 526 rubyinstaller_x64.sls +03/06/2020 01:01 PM 551 rubyinstaller_x86.sls +03/06/2020 01:01 PM 3,719 salt-minion-py2.sls +03/06/2020 01:01 PM 2,050 salt-minion-py3.sls +03/06/2020 01:01 PM 562 sandboxie.sls +03/06/2020 01:01 PM 581 scaleout.sls +03/06/2020 01:01 PM 476 secunia.psi.sls +03/06/2020 01:01 PM 1,190 sensu.sls +03/06/2020 01:01 PM 1,827 sharpdevelop.sls +03/06/2020 01:01 PM 539 skitch.sls +03/06/2020 01:01 PM 1,533 skype-msi.sls +03/06/2020 01:01 PM 708 skype.sls +03/06/2020 01:01 PM 1,244 slack-machine-msi.sls +03/06/2020 01:01 PM 1,023 slack-user-msi.sls +03/06/2020 01:01 PM 329 slack.sls +03/06/2020 01:01 PM 591 smartmontools.sls +03/06/2020 01:01 PM 556 snmptools.sls +03/06/2020 01:01 PM 653 soapui.sls +03/06/2020 01:01 PM 623 software-informer.sls +03/06/2020 01:01 PM 1,039 sourcetree.sls +03/06/2020 01:01 PM 591 spybot-anti-beacon.sls +03/06/2020 01:01 PM 765 spybot.sls +03/06/2020 01:01 PM 664 sscserv-free.sls +03/06/2020 01:01 PM stayawake +03/06/2020 01:01 PM 443 steam.sls +03/06/2020 01:01 PM 658 stellarium.sls +03/06/2020 01:01 PM 540 strawberryperl_x64.sls +03/06/2020 01:01 PM 531 strawberryperl_x86.sls +03/06/2020 01:01 PM 521 stunnel.sls +03/06/2020 01:01 PM 398 subinacl.sls +03/06/2020 01:01 PM 467 sumatrapdf.sls +03/06/2020 01:01 PM 769 svn.sls +03/06/2020 01:01 PM 534 teamviewer.sls +03/06/2020 01:01 PM 549 teamviewer_host.sls +03/06/2020 01:01 PM 749 teracopy.sls +03/06/2020 01:01 PM 491 texmaker.sls +03/06/2020 01:01 PM 709 texniccenter.sls +03/06/2020 01:01 PM 639 texstudio.sls +03/06/2020 01:01 PM 643 texworks.sls +03/06/2020 01:01 PM 937 thunderbird.sls +03/06/2020 01:01 PM 1,014 tightvnc.sls +03/06/2020 01:01 PM 623 todotxt.net.sls +03/06/2020 01:01 PM 551 todour.sls +03/06/2020 01:01 PM 630 tortoise-bzr.sls +03/06/2020 01:01 PM 983 tortoise-git.sls +03/06/2020 01:01 PM 1,367 tortoise-hg.sls +03/06/2020 01:01 PM 897 tortoise-svn.sls +03/06/2020 01:01 PM 503 truecrypt.sls +03/06/2020 01:01 PM 662 ultradefrag.sls +03/06/2020 01:01 PM 1,598 urlrewrite.sls +03/06/2020 01:01 PM 560 usbdlm.sls +03/06/2020 01:01 PM 1,361 vagrant.sls +03/06/2020 01:01 PM 479 vcforpython27.sls +03/06/2020 01:01 PM 820 vcxsrv.sls +03/06/2020 01:01 PM 434 verysleepy.sls +03/06/2020 01:01 PM 611 veyon.sls +03/06/2020 01:01 PM 2,570 virtualbox.sls +03/06/2020 01:01 PM 794 viscosity.sls +03/06/2020 01:01 PM 657 vivaldi.sls +03/06/2020 01:01 PM 739 vlc.sls +03/06/2020 01:01 PM 713 vs-community.sls +03/06/2020 01:01 PM 1,388 vscode.sls +03/06/2020 01:01 PM 325 vsee.sls +03/06/2020 01:01 PM 640 vs_remotetools_2017.sls +03/06/2020 01:01 PM 835 wamp-server-3.sls +03/06/2020 01:01 PM 585 wamp-stack.sls +03/06/2020 01:01 PM 775 webdeploy.sls +03/06/2020 01:01 PM 842 webplatforminstaller.sls +03/06/2020 01:01 PM 610 win-app-manager.sls +03/06/2020 01:01 PM 467 windirstat.sls +03/06/2020 01:01 PM 468 winhttpcertcfg.sls +03/06/2020 01:01 PM winlogbeat +03/06/2020 01:01 PM 618 winmerge.sls +03/06/2020 01:01 PM 737 winmtr.sls +03/06/2020 01:01 PM 288 winpcap.sls +03/06/2020 01:01 PM 825 winrar.sls +03/06/2020 01:01 PM 828 winscp.sls +03/06/2020 01:01 PM 1,136 wireshark.sls +03/06/2020 01:01 PM wmi_provider +03/06/2020 01:01 PM 539 wscc.sls +03/06/2020 01:01 PM 726 wufuc.sls +03/06/2020 01:01 PM 352 xampp.sls +03/06/2020 01:01 PM 649 xming.sls +03/06/2020 01:01 PM 621 yubikey-manager.sls +03/06/2020 01:01 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:01 PM 1,119 zabbix-agent.sls +03/06/2020 01:01 PM zipinstaller +03/06/2020 01:01 PM 278 zoom.sls 284 File(s) 232,192 bytes - 16 Dir(s) 49,391,763,456 bytes free -2020-03-04 12:01:10,005 [salt.state :938 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:01:10,020 [salt.state :320 ][INFO ][6920] {'pkg.refresh_db': {'failed': 0, 'total': 298, 'success': 298}} -2020-03-04 12:01:10,020 [salt.state :1997][INFO ][6920] Completed state [pkg.refresh_db] at time 12:01:10.020999 (duration_in_ms=9842.413) -2020-03-04 12:01:10,020 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. -2020-03-04 12:01:10,039 [salt.state :1819][INFO ][6920] Running state [git] at time 12:01:10.039820 -2020-03-04 12:01:10,039 [salt.state :1852][INFO ][6920] Executing state pkg.installed for [git] -2020-03-04 12:01:10,055 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:01:10,055 [salt.loaded.int.module.win_pkg:802 ][INFO ][6920] Refresh skipped, age of winrepo metadata in seconds (0.0977017879486084) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:01:10,062 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.097702) -2020-03-04 12:01:10,145 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,161 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,161 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,161 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,161 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,161 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,161 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,176 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,177 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,177 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,177 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,177 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,177 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,177 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,195 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:01:10,211 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:01:10,225 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:01:10,225 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.267515) -2020-03-04 12:01:10,240 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,240 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,240 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,240 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,240 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,240 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,240 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,253 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:10,255 [salt.utils.http :234 ][DEBUG ][6920] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method -2020-03-04 12:01:10,270 [salt.utils.http :235 ][DEBUG ][6920] Using backend: tornado -2020-03-04 12:01:13,771 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' -2020-03-04 12:01:27,473 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.515791) -2020-03-04 12:01:27,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,505 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,520 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:01:27,520 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.562644) -2020-03-04 12:01:27,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products + 16 Dir(s) 49,368,383,488 bytes free +2020-03-06 10:01:31,268 [salt.state :986 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:01:31,268 [salt.state :320 ][INFO ][6376] {'pkg.refresh_db': {'total': 298, 'failed': 0, 'success': 298}} +2020-03-06 10:01:31,268 [salt.state :2045][INFO ][6376] Completed state [pkg.refresh_db] at time 10:01:31.268600 (duration_in_ms=8014.847) +2020-03-06 10:01:31,268 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:01:31,290 [salt.state :1867][INFO ][6376] Running state [kdiff3] at time 10:01:31.290777 +2020-03-06 10:01:31,290 [salt.state :1900][INFO ][6376] Executing state pkg.installed for [kdiff3] +2020-03-06 10:01:31,299 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:01:31,299 [salt.loaded.int.module.win_pkg:806 ][INFO ][6376] Refresh skipped, age of winrepo metadata in seconds (0.07613706588745117) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:01:31,299 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.076137) +2020-03-06 10:01:31,408 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:01:31,443 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:01:31,455 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:01:31,474 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.251338) +2020-03-06 10:01:31,474 [salt.utils.http :234 ][DEBUG ][6376] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:01:31,486 [salt.utils.http :235 ][DEBUG ][6376] Using backend: tornado +2020-03-06 10:01:37,987 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:01:38,476 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:07.252979) +2020-03-06 10:01:38,489 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:01:38,506 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:07.282725) +2020-03-06 10:01:38,506 [salt.state :320 ][INFO ][6376] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:01:38,506 [salt.state :1048][DEBUG ][6376] Refreshing modules... +2020-03-06 10:01:38,550 [salt.state :1014][INFO ][6376] Loading fresh modules for state activity +2020-03-06 10:01:38,611 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:38,611 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:38,627 [salt.state :2045][INFO ][6376] Completed state [kdiff3] at time 10:01:38.627530 (duration_in_ms=7336.753) +2020-03-06 10:01:38,627 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded config.option +2020-03-06 10:01:38,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pkg.install +2020-03-06 10:01:38,658 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pkg.installed +2020-03-06 10:01:38,658 [salt.state :1867][INFO ][6376] Running state [7zip] at time 10:01:38.658956 +2020-03-06 10:01:38,675 [salt.state :1900][INFO ][6376] Executing state pkg.installed for [7zip] +2020-03-06 10:01:39,708 [salt.config :2215][DEBUG ][6376] Missing configuration file: /etc/salt/minion +2020-03-06 10:01:39,708 [salt.config :3612][DEBUG ][6376] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:01:39,830 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:01:39,830 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:01:40,127 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:01:40,127 [salt.loader :1671][DEBUG ][6376] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:01:40,659 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt.secret_key, ret: _|- +2020-03-06 10:01:40,659 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt:secret_key, ret: _|- +2020-03-06 10:01:41,409 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet.api_key, ret: _|- +2020-03-06 10:01:41,422 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet:api_key, ret: _|- +2020-03-06 10:01:41,721 [salt.loader :1671][DEBUG ][6376] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:01:41,971 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops.api_key, ret: _|- +2020-03-06 10:01:41,971 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops:api_key, ret: _|- +2020-03-06 10:01:49,705 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:01:49,705 [salt.loaded.int.module.win_pkg:806 ][INFO ][6376] Refresh skipped, age of winrepo metadata in seconds (18.48248791694641) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:01:49,705 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:18.482488) +2020-03-06 10:01:49,737 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:01:49,768 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:01:49,799 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:01:49,799 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:18.576064) +2020-03-06 10:01:49,815 [salt.utils.http :234 ][DEBUG ][6376] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:01:49,815 [salt.utils.http :235 ][DEBUG ][6376] Using backend: tornado +2020-03-06 10:01:50,862 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:01:51,565 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:20.341895) +2020-03-06 10:01:51,596 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:01:51,596 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:20.373624) +2020-03-06 10:01:51,628 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:01:51,643 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:01:51,643 [salt.state :320 ][INFO ][6376] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' + +2020-03-06 10:01:51,643 [salt.state :1048][DEBUG ][6376] Refreshing modules... +2020-03-06 10:01:51,721 [salt.state :1014][INFO ][6376] Loading fresh modules for state activity +2020-03-06 10:01:51,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:01:51,799 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:01:51,799 [salt.state :2045][INFO ][6376] Completed state [7zip] at time 10:01:51.799968 (duration_in_ms=13141.012) +2020-03-06 10:01:51,815 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded config.option +2020-03-06 10:01:51,861 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pkg.install +2020-03-06 10:01:51,861 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pkg.installed +2020-03-06 10:01:51,861 [salt.state :1867][INFO ][6376] Running state [git] at time 10:01:51.861965 +2020-03-06 10:01:51,877 [salt.state :1900][INFO ][6376] Executing state pkg.installed for [git] +2020-03-06 10:01:53,096 [salt.config :2215][DEBUG ][6376] Missing configuration file: /etc/salt/minion +2020-03-06 10:01:53,096 [salt.config :3612][DEBUG ][6376] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:01:53,221 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:01:53,221 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:01:53,549 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:01:53,565 [salt.loader :1671][DEBUG ][6376] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:01:54,143 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt.secret_key, ret: _|- +2020-03-06 10:01:54,143 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt:secret_key, ret: _|- +2020-03-06 10:01:55,394 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet.api_key, ret: _|- +2020-03-06 10:01:55,394 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet:api_key, ret: _|- +2020-03-06 10:01:56,347 [salt.loader :1671][DEBUG ][6376] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:27,553 [salt.state :320 ][INFO ][6920] Made the following changes: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:01:56,986 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops.api_key, ret: _|- +2020-03-06 10:01:56,986 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops:api_key, ret: _|- +2020-03-06 10:02:05,596 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:02:05,611 [salt.loaded.int.module.win_pkg:806 ][INFO ][6376] Refresh skipped, age of winrepo metadata in seconds (34.387232303619385) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:02:05,611 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.387232) +2020-03-06 10:02:05,645 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:02:05,661 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:02:05,691 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:02:05,691 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.467656) +2020-03-06 10:02:05,706 [salt.utils.http :234 ][DEBUG ][6376] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:02:05,721 [salt.utils.http :235 ][DEBUG ][6376] Using backend: tornado +2020-03-06 10:02:19,565 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:02:35,018 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:01:03.795340) +2020-03-06 10:02:35,049 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:02:35,049 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6376] Using existing pkg metadata db for saltenv 'base' (age is 0:01:03.826062) +2020-03-06 10:02:35,065 [salt.state :320 ][INFO ][6376] Made the following changes: 'git' changed from 'absent' to '2.23.0.windows.1' -2020-03-04 12:01:27,567 [salt.state :1000][DEBUG ][6920] Refreshing modules... -2020-03-04 12:01:27,599 [salt.state :966 ][INFO ][6920] Loading fresh modules for state activity -2020-03-04 12:01:27,692 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:27,692 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:27,707 [salt.state :1997][INFO ][6920] Completed state [git] at time 12:01:27.707999 (duration_in_ms=17668.179) -2020-03-04 12:01:27,707 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded config.option -2020-03-04 12:01:27,723 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pkg.install -2020-03-04 12:01:27,723 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pkg.installed -2020-03-04 12:01:27,723 [salt.state :1819][INFO ][6920] Running state [kdiff3] at time 12:01:27.723752 -2020-03-04 12:01:27,723 [salt.state :1852][INFO ][6920] Executing state pkg.installed for [kdiff3] -2020-03-04 12:01:28,505 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt.secret_key, ret: _|- -2020-03-04 12:01:28,520 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt:secret_key, ret: _|- -2020-03-04 12:01:28,833 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet.api_key, ret: _|- -2020-03-04 12:01:28,833 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet:api_key, ret: _|- -2020-03-04 12:01:29,271 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded reg.read_value -2020-03-04 12:01:29,473 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops.api_key, ret: _|- -2020-03-04 12:01:29,473 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops:api_key, ret: _|- -2020-03-04 12:01:37,257 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded platform.is_windows -2020-03-04 12:01:37,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded path.which -2020-03-04 12:01:37,335 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:01:37,335 [salt.loaded.int.module.win_pkg:802 ][INFO ][6920] Refresh skipped, age of winrepo metadata in seconds (27.377436637878418) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:01:37,335 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.377437) -2020-03-04 12:01:37,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,350 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,365 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,365 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,365 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,365 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,365 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,379 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,379 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,379 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,379 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,411 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:01:37,429 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:01:37,460 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:01:37,460 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.502402) -2020-03-04 12:01:37,475 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,475 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,475 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,475 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,475 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,489 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,504 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,504 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:37,504 [salt.utils.http :234 ][DEBUG ][6920] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method -2020-03-04 12:01:37,504 [salt.utils.http :235 ][DEBUG ][6920] Using backend: tornado -2020-03-04 12:01:39,755 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' -2020-03-04 12:01:40,224 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:30.266343) -2020-03-04 12:01:40,224 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +2020-03-06 10:02:35,065 [salt.state :1048][DEBUG ][6376] Refreshing modules... +2020-03-06 10:02:35,111 [salt.state :1014][INFO ][6376] Loading fresh modules for state activity +2020-03-06 10:02:35,208 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded jinja.render +2020-03-06 10:02:35,208 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded yaml.render +2020-03-06 10:02:35,208 [salt.state :2045][INFO ][6376] Completed state [git] at time 10:02:35.208026 (duration_in_ms=43346.061) +2020-03-06 10:02:35,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded config.option +2020-03-06 10:02:35,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded module.run +2020-03-06 10:02:35,221 [salt.state :1867][INFO ][6376] Running state [windows_environment.refresh.path] at time 10:02:35.221481 +2020-03-06 10:02:35,221 [salt.state :1900][INFO ][6376] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:02:35,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded windows_environment.refresh +2020-03-06 10:02:35,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cmd.run +2020-03-06 10:02:35,237 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:02:35,255 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:02:35,255 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6376] output: +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment + ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe + DriverData REG_SZ C:\Windows\System32\Drivers\DriverData + OS REG_SZ Windows_NT + Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd + PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC + PROCESSOR_ARCHITECTURE REG_SZ AMD64 + PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules + TEMP REG_EXPAND_SZ %SystemRoot%\TEMP + TMP REG_EXPAND_SZ %SystemRoot%\TEMP + USERNAME REG_SZ SYSTEM + windir REG_EXPAND_SZ %SystemRoot% + NUMBER_OF_PROCESSORS REG_SZ 2 + PROCESSOR_LEVEL REG_SZ 6 + PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel + PROCESSOR_REVISION REG_SZ 8e0c +2020-03-06 10:02:35,255 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded environ.get +2020-03-06 10:02:35,268 [py.warnings :919 ][WARNING ][6376] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + environ[key] = redata.sub(a, value) + +2020-03-06 10:02:35,268 [py.warnings :919 ][WARNING ][6376] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + environ[key] = redata.sub(a, value) + +2020-03-06 10:02:35,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded event.fire +2020-03-06 10:02:35,268 [salt.utils.event :310 ][DEBUG ][6376] SaltEvent PUB socket URI: 4510 +2020-03-06 10:02:35,268 [salt.utils.event :311 ][DEBUG ][6376] SaltEvent PULL socket URI: 4511 +2020-03-06 10:02:35,268 [salt.utils.event :736 ][DEBUG ][6376] Sending event: tag = environ_setenv; data = {'_stamp': '2020-03-06T18:02:35.268129', 'permanent': False, 'false_unsets': False, 'clear_all': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:02:35,283 [salt.transport.ipc:363 ][DEBUG ][6376] Closing IPCMessageClient instance +2020-03-06 10:02:35,283 [salt.state :320 ][INFO ][6376] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:02:35,283 [salt.state :2045][INFO ][6376] Completed state [windows_environment.refresh.path] at time 10:02:35.283757 (duration_in_ms=62.276) +2020-03-06 10:02:35,283 [salt.state :1867][INFO ][6376] Running state [chocolatey.bootstrap] at time 10:02:35.283757 +2020-03-06 10:02:35,283 [salt.state :1900][INFO ][6376] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:02:36,627 [salt.config :2215][DEBUG ][6376] Missing configuration file: /etc/salt/minion +2020-03-06 10:02:36,627 [salt.config :3612][DEBUG ][6376] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 10:02:36,768 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:02:36,815 [git.cmd :722 ][DEBUG ][6376] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:02:37,301 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:02:37,301 [salt.loader :1671][DEBUG ][6376] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:02:38,066 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt.secret_key, ret: _|- +2020-03-06 10:02:38,066 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: ifttt:secret_key, ret: _|- +2020-03-06 10:02:39,049 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet.api_key, ret: _|- +2020-03-06 10:02:39,049 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: pushbullet:api_key, ret: _|- +2020-03-06 10:02:39,581 [salt.loader :1671][DEBUG ][6376] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,254 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,254 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,254 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,271 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:01:40,271 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:30.313031) -2020-03-04 12:01:40,271 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,271 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,271 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,286 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,301 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,302 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,302 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:40,302 [salt.state :320 ][INFO ][6920] Made the following changes: -'kdiff3' changed from 'absent' to 'Not Found' - -2020-03-04 12:01:40,302 [salt.state :1000][DEBUG ][6920] Refreshing modules... -2020-03-04 12:01:40,334 [salt.state :966 ][INFO ][6920] Loading fresh modules for state activity -2020-03-04 12:01:40,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:40,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:40,396 [salt.state :1997][INFO ][6920] Completed state [kdiff3] at time 12:01:40.396479 (duration_in_ms=12672.727) -2020-03-04 12:01:40,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded config.option -2020-03-04 12:01:40,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pkg.install -2020-03-04 12:01:40,411 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pkg.installed -2020-03-04 12:01:40,411 [salt.state :1819][INFO ][6920] Running state [7zip] at time 12:01:40.411538 -2020-03-04 12:01:40,411 [salt.state :1852][INFO ][6920] Executing state pkg.installed for [7zip] -2020-03-04 12:01:40,974 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt.secret_key, ret: _|- -2020-03-04 12:01:40,974 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt:secret_key, ret: _|- -2020-03-04 12:01:41,286 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet.api_key, ret: _|- -2020-03-04 12:01:41,286 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet:api_key, ret: _|- -2020-03-04 12:01:41,490 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded reg.read_value -2020-03-04 12:01:41,614 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops.api_key, ret: _|- -2020-03-04 12:01:41,614 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops:api_key, ret: _|- -2020-03-04 12:01:48,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded platform.is_windows -2020-03-04 12:01:48,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded path.which -2020-03-04 12:01:48,365 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:01:48,365 [salt.loaded.int.module.win_pkg:802 ][INFO ][6920] Refresh skipped, age of winrepo metadata in seconds (38.407219886779785) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:01:48,365 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:38.407220) -2020-03-04 12:01:48,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,396 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,396 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,396 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,396 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,396 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,414 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,414 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,414 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,414 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,414 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,427 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,427 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,458 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:01:48,473 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:01:48,506 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:01:48,521 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:38.563545) -2020-03-04 12:01:48,521 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,536 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,552 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,552 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,552 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,552 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,552 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,552 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,567 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:48,567 [salt.utils.http :234 ][DEBUG ][6920] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method -2020-03-04 12:01:48,567 [salt.utils.http :235 ][DEBUG ][6920] Using backend: tornado -2020-03-04 12:01:52,004 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' -2020-03-04 12:01:52,723 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:42.765809) -2020-03-04 12:01:52,723 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,739 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,755 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,772 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:01:52,772 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6920] Using existing pkg metadata db for saltenv 'base' (age is 0:00:42.814003) -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,786 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,802 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,802 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,802 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,802 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,802 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-21-3606173970-3686194111-1760979364-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,802 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6920] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:01:52,819 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. -2020-03-04 12:01:52,833 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. -2020-03-04 12:01:52,848 [salt.state :320 ][INFO ][6920] Made the following changes: -'7zip' changed from 'absent' to '18.06.00.0' - -2020-03-04 12:01:52,848 [salt.state :1000][DEBUG ][6920] Refreshing modules... -2020-03-04 12:01:52,880 [salt.state :966 ][INFO ][6920] Loading fresh modules for state activity -2020-03-04 12:01:52,948 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded jinja.render -2020-03-04 12:01:52,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded yaml.render -2020-03-04 12:01:52,958 [salt.state :1997][INFO ][6920] Completed state [7zip] at time 12:01:52.958197 (duration_in_ms=12546.659) -2020-03-04 12:01:52,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded config.option -2020-03-04 12:01:52,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded module.run -2020-03-04 12:01:52,958 [salt.state :1819][INFO ][6920] Running state [windows_environment.refresh.path] at time 12:01:52.958197 -2020-03-04 12:01:52,958 [salt.state :1852][INFO ][6920] Executing state module.run for [windows_environment.refresh.path] -2020-03-04 12:01:52,973 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded windows_environment.refresh -2020-03-04 12:01:52,973 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cmd.run -2020-03-04 12:01:52,973 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' -2020-03-04 12:01:52,989 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: -HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment - ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe - DriverData REG_SZ C:\Windows\System32\Drivers\DriverData - OS REG_SZ Windows_NT - Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd - PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC - PROCESSOR_ARCHITECTURE REG_SZ AMD64 - PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules - TEMP REG_EXPAND_SZ %SystemRoot%\TEMP - TMP REG_EXPAND_SZ %SystemRoot%\TEMP - USERNAME REG_SZ SYSTEM - windir REG_EXPAND_SZ %SystemRoot% - NUMBER_OF_PROCESSORS REG_SZ 2 - PROCESSOR_LEVEL REG_SZ 6 - PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel - PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:01:52,989 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6920] output: -HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment - ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe - DriverData REG_SZ C:\Windows\System32\Drivers\DriverData - OS REG_SZ Windows_NT - Path REG_EXPAND_SZ %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd - PATHEXT REG_SZ .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC - PROCESSOR_ARCHITECTURE REG_SZ AMD64 - PSModulePath REG_EXPAND_SZ %ProgramFiles%\WindowsPowerShell\Modules;%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules - TEMP REG_EXPAND_SZ %SystemRoot%\TEMP - TMP REG_EXPAND_SZ %SystemRoot%\TEMP - USERNAME REG_SZ SYSTEM - windir REG_EXPAND_SZ %SystemRoot% - NUMBER_OF_PROCESSORS REG_SZ 2 - PROCESSOR_LEVEL REG_SZ 6 - PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel - PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:01:52,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded environ.get -2020-03-04 12:01:52,989 [py.warnings :919 ][WARNING ][6920] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W - environ[key] = redata.sub(a, value) - -2020-03-04 12:01:53,016 [py.warnings :919 ][WARNING ][6920] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P - environ[key] = redata.sub(a, value) - -2020-03-04 12:01:53,019 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded event.fire -2020-03-04 12:01:53,021 [salt.utils.event :322 ][DEBUG ][6920] SaltEvent PUB socket URI: 4510 -2020-03-04 12:01:53,021 [salt.utils.event :323 ][DEBUG ][6920] SaltEvent PULL socket URI: 4511 -2020-03-04 12:01:53,021 [salt.utils.event :737 ][DEBUG ][6920] Sending event: tag = environ_setenv; data = {'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, '_stamp': '2020-03-04T20:01:53.021212', 'false_unsets': False, 'clear_all': False, 'permanent': False} -2020-03-04 12:01:53,021 [salt.transport.ipc:364 ][DEBUG ][6920] Closing IPCMessageClient instance -2020-03-04 12:01:53,021 [salt.state :320 ][INFO ][6920] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 12:01:53,021 [salt.state :1997][INFO ][6920] Completed state [windows_environment.refresh.path] at time 12:01:53.021212 (duration_in_ms=63.015) -2020-03-04 12:01:53,021 [salt.state :1819][INFO ][6920] Running state [chocolatey.bootstrap] at time 12:01:53.021212 -2020-03-04 12:01:53,021 [salt.state :1852][INFO ][6920] Executing state module.run for [chocolatey.bootstrap] -2020-03-04 12:01:53,615 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt.secret_key, ret: _|- -2020-03-04 12:01:53,630 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: ifttt:secret_key, ret: _|- -2020-03-04 12:01:53,880 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet.api_key, ret: _|- -2020-03-04 12:01:53,880 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: pushbullet:api_key, ret: _|- -2020-03-04 12:01:54,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded reg.read_value -2020-03-04 12:01:54,286 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops.api_key, ret: _|- -2020-03-04 12:01:54,286 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: victorops:api_key, ret: _|- -2020-03-04 12:02:01,051 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded platform.is_windows -2020-03-04 12:02:01,051 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded path.which -2020-03-04 12:02:01,083 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:02:01,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded apache.config -2020-03-04 12:02:01,208 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded apache.a2enconf -2020-03-04 12:02:01,224 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded apache.a2ensite -2020-03-04 12:02:01,239 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:02:01,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:02:01,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:02:01,254 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:02:01,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:02:01,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:02:01,270 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:02:01,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:02:01,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_asg.exists -2020-03-04 12:02:01,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cfn.exists -2020-03-04 12:02:01,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:02:01,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:02:01,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:02:01,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:02:01,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:02:01,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:02:01,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_dynamodb.exists -2020-03-04 12:02:01,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_ec2.get_key -2020-03-04 12:02:01,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elasticache.exists -2020-03-04 12:02:01,303 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:02:01,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elb.exists -2020-03-04 12:02:01,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:02:01,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_iam.get_user -2020-03-04 12:02:01,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_iam.role_exists -2020-03-04 12:02:01,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_iot.policy_exists -2020-03-04 12:02:01,319 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_kinesis.exists -2020-03-04 12:02:01,335 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_kms.describe_key -2020-03-04 12:02:01,335 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_lambda.function_exists -2020-03-04 12:02:01,335 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_asg.exists -2020-03-04 12:02:01,335 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_rds.exists -2020-03-04 12:02:01,335 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_route53.get_record -2020-03-04 12:02:01,335 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:02:01,335 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:02:01,350 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_secgroup.exists -2020-03-04 12:02:01,350 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_sns.exists -2020-03-04 12:02:01,350 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_sqs.exists -2020-03-04 12:02:01,350 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded boto_vpc.exists -2020-03-04 12:02:01,350 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded bower.list -2020-03-04 12:02:01,366 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded chef.client -2020-03-04 12:02:01,366 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cimc.get_system_info -2020-03-04 12:02:01,366 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded cisconso.set_data_value -2020-03-04 12:02:01,381 [salt.loader :1577][DEBUG ][6920] Failed to import states cloud: -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:02:01,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded ddns.update -2020-03-04 12:02:01,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded chassis.cmd -2020-03-04 12:02:01,412 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:02:01,427 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:02:01,458 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:02:01,474 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:02:01,896 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded esxi.cmd -2020-03-04 12:02:01,911 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:01,958 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: git version 2.23.0.windows.1 -2020-03-04 12:02:01,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded github.list_users -2020-03-04 12:02:01,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded glanceng.image_get -2020-03-04 12:02:01,973 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded elasticsearch.exists -2020-03-04 12:02:01,973 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: grafana_version, ret: _|- -2020-03-04 12:02:01,973 [salt.loaded.int.module.config:398 ][DEBUG ][6920] key: grafana_version, ret: _|- -2020-03-04 12:02:01,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded icinga2.generate_ticket -2020-03-04 12:02:01,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded ifttt.trigger_event -2020-03-04 12:02:02,020 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:02:02,036 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:02:02,051 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:02:02,083 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:02:02,099 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:02:02,115 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:02:02,146 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:02:02,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.domain_get -2020-03-04 12:02:02,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:02:02,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.group_get -2020-03-04 12:02:02,146 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.project_get -2020-03-04 12:02:02,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.role_get -2020-03-04 12:02:02,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.role_grant -2020-03-04 12:02:02,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.service_get -2020-03-04 12:02:02,161 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded keystoneng.user_get -2020-03-04 12:02:02,192 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:02:02,209 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:02:02,224 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:02:02,241 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:02:02,271 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:02:02,286 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:02:02,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:02:02,286 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:02:02,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:02:02,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded lxd.version -2020-03-04 12:02:02,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded memcached.status -2020-03-04 12:02:02,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mongodb.db_exists -2020-03-04 12:02:02,301 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mongodb.user_exists -2020-03-04 12:02:02,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:02:02,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:02:02,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:02:02,317 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded mssql.version -2020-03-04 12:02:02,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_networks -2020-03-04 12:02:02,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_subnets -2020-03-04 12:02:02,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_subnets -2020-03-04 12:02:02,333 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded neutronng.list_subnets -2020-03-04 12:02:02,348 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded npm.list -2020-03-04 12:02:02,348 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nxos.cmd -2020-03-04 12:02:02,365 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:02:02,380 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:02:02,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded panos.commit -2020-03-04 12:02:02,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pdbedit.create -2020-03-04 12:02:02,396 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded pecl.list -2020-03-04 12:02:02,411 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:02:02,427 [salt.loader :1577][DEBUG ][6920] Failed to import states ports: -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:02:02,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.cluster_exists -2020-03-04 12:02:02,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.user_exists -2020-03-04 12:02:02,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.create_extension -2020-03-04 12:02:02,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.group_create -2020-03-04 12:02:02,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.datadir_init -2020-03-04 12:02:02,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.language_create -2020-03-04 12:02:02,427 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.privileges_grant -2020-03-04 12:02:02,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.schema_exists -2020-03-04 12:02:02,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.tablespace_exists -2020-03-04 12:02:02,442 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded postgres.user_exists -2020-03-04 12:02:02,474 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:02:02,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded selinux.getenforce -2020-03-04 12:02:02,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded splunk.list_users -2020-03-04 12:02:02,489 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded splunk_search.get -2020-03-04 12:02:02,505 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:02:02,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded tomcat.status -2020-03-04 12:02:02,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded vagrant.version -2020-03-04 12:02:02,521 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded victorops.create_event -2020-03-04 12:02:02,536 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded win_iis.create_site -2020-03-04 12:02:02,551 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded win_servermanager.install -2020-03-04 12:02:02,551 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:02:02,551 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded wordpress.show_plugin -2020-03-04 12:02:02,551 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded x509.get_pem_entry -2020-03-04 12:02:02,567 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded xmpp.send_msg -2020-03-04 12:02:02,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded zk_concurrency.lock -2020-03-04 12:02:02,568 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded zonecfg.create -2020-03-04 12:02:02,583 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded zookeeper.create -2020-03-04 12:02:02,599 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:02:02,599 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' -2020-03-04 12:02:02,817 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: INFO: Could not find files for the given pattern(s). -2020-03-04 12:02:02,817 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][6920] retcode: 1 -2020-03-04 12:02:02,817 [salt.state :915 ][DEBUG ][6920] Last command return code: 1 -2020-03-04 12:02:02,832 [salt.utils.http :234 ][DEBUG ][6920] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method -2020-03-04 12:02:02,833 [salt.utils.http :235 ][DEBUG ][6920] Using backend: tornado -2020-03-04 12:02:03,099 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:09,022 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: Preparing: C:\af35ce30d7e16d4e38f69c231470a298\header.bmp... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\SplashScreen.bmp... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\watermark.bmp... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\DisplayIcon.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Print.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate1.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate2.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate3.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate4.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate5.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate6.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate7.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Rotate8.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Save.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\Setup.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\stop.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\SysReqMet.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\SysReqNotMet.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Graphics\warn.ico... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1033\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1042\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1041\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1037\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1025\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1035\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1030\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1044\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1043\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1040\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1029\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1031\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1036\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1032\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1038\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\2052\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1028\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\3076\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1055\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1053\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\3082\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\2070\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1046\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1049\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1045\LocalizedData.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Client\Parameterinfo.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Extended\Parameterinfo.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\ParameterInfo.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Strings.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\UiInfo.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Client\UiInfo.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Extended\UiInfo.xml... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\SetupUi.xsd... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\DHtmlHeader.html... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1033\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1025\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1028\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1030\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1031\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1029\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1036\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1035\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1032\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1038\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1037\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1040\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1041\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1042\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1044\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1043\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1046\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1045\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1055\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1053\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\2052\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1049\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\3082\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\2070\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\3076\eula.rtf... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\Setup.exe... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\SetupUtility.exe... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\SetupEngine.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1025\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1033\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1029\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1030\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1035\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1031\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1036\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1032\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1028\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\2052\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\3076\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1042\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1041\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1037\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1044\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1053\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1055\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1040\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1045\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1046\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1049\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1038\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\2070\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\3082\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\1043\SetupResources.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\SetupUi.dll... -Preparing: C:\af35ce30d7e16d4e38f69c231470a298\sqmapi.dll... -2020-03-04 12:02:09,040 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' -2020-03-04 12:02:14,083 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: Getting latest version of the Chocolatey package for download. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:02:39,925 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops.api_key, ret: _|- +2020-03-06 10:02:39,925 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: victorops:api_key, ret: _|- +2020-03-06 10:02:52,034 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:02:52,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded acme.cert +2020-03-06 10:02:52,034 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded alternatives.auto +2020-03-06 10:02:52,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded apache.config +2020-03-06 10:02:52,127 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded apache.a2enconf +2020-03-06 10:02:52,143 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded apache.a2ensite +2020-03-06 10:02:52,174 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:02:52,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded at.at +2020-03-06 10:02:52,189 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:02:52,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:02:52,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:02:52,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:02:52,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:02:52,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded disk.tune +2020-03-06 10:02:52,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:02:52,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:02:52,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:02:52,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:02:52,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:02:52,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_asg.exists +2020-03-06 10:02:52,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cfn.exists +2020-03-06 10:02:52,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:02:52,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:02:52,237 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:02:52,252 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:02:52,252 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:02:52,252 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:02:52,252 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_dynamodb.exists +2020-03-06 10:02:52,252 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_ec2.get_key +2020-03-06 10:02:52,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elasticache.exists +2020-03-06 10:02:52,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:02:52,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elb.exists +2020-03-06 10:02:52,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:02:52,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_iam.get_user +2020-03-06 10:02:52,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_iam.role_exists +2020-03-06 10:02:52,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_iot.policy_exists +2020-03-06 10:02:52,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_kinesis.exists +2020-03-06 10:02:52,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_kms.describe_key +2020-03-06 10:02:52,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_lambda.function_exists +2020-03-06 10:02:52,284 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_asg.exists +2020-03-06 10:02:52,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_rds.exists +2020-03-06 10:02:52,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_route53.get_record +2020-03-06 10:02:52,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:02:52,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:02:52,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_secgroup.exists +2020-03-06 10:02:52,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_sns.exists +2020-03-06 10:02:52,300 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_sqs.exists +2020-03-06 10:02:52,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded boto_vpc.exists +2020-03-06 10:02:52,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded bower.list +2020-03-06 10:02:52,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded chef.client +2020-03-06 10:02:52,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cimc.get_system_info +2020-03-06 10:02:52,332 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cisconso.set_data_value +2020-03-06 10:02:52,332 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded cron.list_tab +2020-03-06 10:02:52,332 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded ddns.update +2020-03-06 10:02:52,332 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded chassis.cmd +2020-03-06 10:02:52,362 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:02:52,377 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:02:52,436 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:02:52,457 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:02:52,474 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded eselect.exec_action +2020-03-06 10:02:52,893 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded esxi.cmd +2020-03-06 10:02:52,908 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:02:52,971 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: git version 2.23.0.windows.1 +2020-03-06 10:02:52,971 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded github.list_users +2020-03-06 10:02:52,990 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded glanceng.image_get +2020-03-06 10:02:52,990 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded glusterfs.list_volumes +2020-03-06 10:02:52,990 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded elasticsearch.exists +2020-03-06 10:02:52,990 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: grafana_version, ret: _|- +2020-03-06 10:02:53,006 [salt.loaded.int.module.config:483 ][DEBUG ][6376] key: grafana_version, ret: _|- +2020-03-06 10:02:53,006 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded icinga2.generate_ticket +2020-03-06 10:02:53,006 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded ifttt.trigger_event +2020-03-06 10:02:53,038 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:02:53,052 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:02:53,084 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:02:53,101 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:02:53,130 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:02:53,143 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:02:53,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded ipset.version +2020-03-06 10:02:53,159 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded iptables.version +2020-03-06 10:02:53,174 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded kapacitor.version +2020-03-06 10:02:53,190 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:02:53,206 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keyboard.get_sys +2020-03-06 10:02:53,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystone.auth +2020-03-06 10:02:53,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.domain_get +2020-03-06 10:02:53,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:02:53,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.group_get +2020-03-06 10:02:53,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.project_get +2020-03-06 10:02:53,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.role_get +2020-03-06 10:02:53,221 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.role_grant +2020-03-06 10:02:53,239 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.service_get +2020-03-06 10:02:53,239 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystoneng.user_get +2020-03-06 10:02:53,239 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded keystore.list +2020-03-06 10:02:53,239 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded kmod.available +2020-03-06 10:02:53,268 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:02:53,268 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded layman.add +2020-03-06 10:02:53,301 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:02:53,301 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded logadm.list_conf +2020-03-06 10:02:53,301 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded logrotate.show_conf +2020-03-06 10:02:53,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lvs.get_rules +2020-03-06 10:02:53,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lvs.get_rules +2020-03-06 10:02:53,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:02:53,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:02:53,315 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:02:53,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded lxd.version +2020-03-06 10:02:53,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded makeconf.get_var +2020-03-06 10:02:53,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded memcached.status +2020-03-06 10:02:53,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded mongodb.db_exists +2020-03-06 10:02:53,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded mongodb.user_exists +2020-03-06 10:02:53,331 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded monit.summary +2020-03-06 10:02:53,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_networks +2020-03-06 10:02:53,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_subnets +2020-03-06 10:02:53,377 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_subnets +2020-03-06 10:02:53,394 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded neutronng.list_subnets +2020-03-06 10:02:53,394 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nftables.version +2020-03-06 10:02:53,394 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded npm.list +2020-03-06 10:02:53,394 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nxos.cmd +2020-03-06 10:02:53,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded openvswitch.bridge_create +2020-03-06 10:02:53,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded openvswitch.port_add +2020-03-06 10:02:53,409 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded panos.commit +2020-03-06 10:02:53,424 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pdbedit.create +2020-03-06 10:02:53,424 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded pecl.list +2020-03-06 10:02:53,455 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:02:53,455 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:02:53,455 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.cluster_exists +2020-03-06 10:02:53,470 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.user_exists +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.create_extension +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.group_create +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.datadir_init +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.language_create +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.privileges_grant +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.schema_exists +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.tablespace_exists +2020-03-06 10:02:53,471 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded postgres.user_exists +2020-03-06 10:02:53,487 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded quota.report +2020-03-06 10:02:53,503 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:02:53,534 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:02:53,550 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:02:53,565 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded selinux.getenforce +2020-03-06 10:02:53,580 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:02:53,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded snapper.diff +2020-03-06 10:02:53,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded splunk.list_users +2020-03-06 10:02:53,596 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded splunk_search.get +2020-03-06 10:02:53,627 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:02:53,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded tomcat.status +2020-03-06 10:02:53,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded trafficserver.set_config +2020-03-06 10:02:53,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded vagrant.version +2020-03-06 10:02:53,644 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded victorops.create_event +2020-03-06 10:02:53,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded virt.node_info +2020-03-06 10:02:53,659 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded win_iis.create_site +2020-03-06 10:02:53,675 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded win_servermanager.install +2020-03-06 10:02:53,675 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:02:53,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded wordpress.show_plugin +2020-03-06 10:02:53,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded x509.get_pem_entry +2020-03-06 10:02:53,690 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded xmpp.send_msg +2020-03-06 10:02:53,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded zk_concurrency.lock +2020-03-06 10:02:53,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded zonecfg.create +2020-03-06 10:02:53,705 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded zookeeper.create +2020-03-06 10:02:53,721 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:02:53,721 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:02:53,964 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:02:53,964 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][6376] retcode: 1 +2020-03-06 10:02:53,964 [salt.state :951 ][DEBUG ][6376] Last command return code: 1 +2020-03-06 10:02:53,971 [salt.utils.http :234 ][DEBUG ][6376] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:02:53,971 [salt.utils.http :235 ][DEBUG ][6376] Using backend: tornado +2020-03-06 10:02:54,502 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:00,424 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Preparing: C:\77436c810763954de9fbff82dffbccd4\header.bmp... +Preparing: C:\77436c810763954de9fbff82dffbccd4\SplashScreen.bmp... +Preparing: C:\77436c810763954de9fbff82dffbccd4\watermark.bmp... +Preparing: C:\77436c810763954de9fbff82dffbccd4\DisplayIcon.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Print.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate1.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate2.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate3.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate4.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate5.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate6.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate7.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Rotate8.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Save.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\Setup.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\stop.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\SysReqMet.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\SysReqNotMet.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Graphics\warn.ico... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1033\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1042\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1041\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1037\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1025\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1035\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1030\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1044\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1043\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1040\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1029\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1031\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1036\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1032\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1038\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\2052\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1028\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\3076\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1055\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1053\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\3082\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\2070\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1046\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1049\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1045\LocalizedData.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Client\Parameterinfo.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Extended\Parameterinfo.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\ParameterInfo.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Strings.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\UiInfo.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Client\UiInfo.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Extended\UiInfo.xml... +Preparing: C:\77436c810763954de9fbff82dffbccd4\SetupUi.xsd... +Preparing: C:\77436c810763954de9fbff82dffbccd4\DHtmlHeader.html... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1033\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1025\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1028\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1030\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1031\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1029\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1036\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1035\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1032\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1038\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1037\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1040\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1041\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1042\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1044\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1043\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1046\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1045\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1055\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1053\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\2052\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1049\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\3082\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\2070\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\3076\eula.rtf... +Preparing: C:\77436c810763954de9fbff82dffbccd4\Setup.exe... +Preparing: C:\77436c810763954de9fbff82dffbccd4\SetupUtility.exe... +Preparing: C:\77436c810763954de9fbff82dffbccd4\SetupEngine.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1025\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1033\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1029\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1030\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1035\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1031\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1036\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1032\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1028\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\2052\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\3076\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1042\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1041\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1037\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1044\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1053\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1055\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1040\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1045\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1046\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1049\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1038\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\2070\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\3082\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\1043\SetupResources.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\SetupUi.dll... +Preparing: C:\77436c810763954de9fbff82dffbccd4\sqmapi.dll... +2020-03-06 10:03:00,440 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:03:05,799 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Getting latest version of the Chocolatey package for download. Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. Downloading 7-Zip commandline tool prior to extraction. Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... @@ -28309,17 +27408,17 @@ You may need to shut down and restart powershell and/or consoles first prior to using choco. Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder -2020-03-04 12:02:14,083 [salt.state :320 ][INFO ][6920] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} -2020-03-04 12:02:14,083 [salt.state :1997][INFO ][6920] Completed state [chocolatey.bootstrap] at time 12:02:14.083443 (duration_in_ms=21062.231) -2020-03-04 12:02:14,083 [salt.state :1819][INFO ][6920] Running state [notepadplusplus] at time 12:02:14.083443 -2020-03-04 12:02:14,083 [salt.state :1852][INFO ][6920] Executing state chocolatey.installed for [notepadplusplus] -2020-03-04 12:02:14,083 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:15,428 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: chocolatey|0.10.15 -2020-03-04 12:02:15,442 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:16,333 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: 0.10.15 -2020-03-04 12:02:16,333 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6920] output: 0.10.15 -2020-03-04 12:02:16,333 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:28,882 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: Chocolatey v0.10.15 +2020-03-06 10:03:05,799 [salt.state :320 ][INFO ][6376] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:03:05,799 [salt.state :2045][INFO ][6376] Completed state [chocolatey.bootstrap] at time 10:03:05.799626 (duration_in_ms=30515.869) +2020-03-06 10:03:05,799 [salt.state :1867][INFO ][6376] Running state [notepadplusplus] at time 10:03:05.799626 +2020-03-06 10:03:05,799 [salt.state :1900][INFO ][6376] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:03:05,799 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:07,159 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: chocolatey|0.10.15 +2020-03-06 10:03:07,159 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:08,034 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: 0.10.15 +2020-03-06 10:03:08,034 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6376] output: 0.10.15 +2020-03-06 10:03:08,034 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:18,752 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28340,7 +27439,7 @@ chocolatey-core.extension package files install completed. Performing other inst The install of chocolatey-core.extension was successful. Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' -notepadplusplus.install v7.8.4 [Approved] +notepadplusplus.install v7.8.5 notepadplusplus.install package files install completed. Performing other installation steps. Installing 64-bit notepadplusplus.install... notepadplusplus.install has been installed. @@ -28350,7 +27449,7 @@ Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program fi The install of notepadplusplus.install was successful. Software installed as 'exe', install location is likely default. -notepadplusplus v7.8.4 [Approved] +notepadplusplus v7.8.5 [Approved] notepadplusplus package files install completed. Performing other installation steps. The install of notepadplusplus was successful. Software install location not explicitly set, could be in package or @@ -28358,25 +27457,25 @@ notepadplusplus package files install completed. Performing other installation s Chocolatey installed 3/3 packages. See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:02:28,882 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:30,286 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: chocolatey|0.10.15 +2020-03-06 10:03:18,752 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:20,096 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:02:30,302 [salt.state :320 ][INFO ][6920] Made the following changes: -'notepadplusplus' changed from 'absent' to '['7.8.4']' -'notepadplusplus.install' changed from 'absent' to '['7.8.4']' - -2020-03-04 12:02:30,302 [salt.state :1997][INFO ][6920] Completed state [notepadplusplus] at time 12:02:30.302226 (duration_in_ms=16218.783) -2020-03-04 12:02:30,302 [salt.state :1819][INFO ][6920] Running state [windirstat] at time 12:02:30.302226 -2020-03-04 12:02:30,302 [salt.state :1852][INFO ][6920] Executing state chocolatey.installed for [windirstat] -2020-03-04 12:02:30,302 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:31,801 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: chocolatey|0.10.15 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:03:20,096 [salt.state :320 ][INFO ][6376] Made the following changes: +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' +'notepadplusplus' changed from 'absent' to '['7.8.5']' + +2020-03-06 10:03:20,112 [salt.state :2045][INFO ][6376] Completed state [notepadplusplus] at time 10:03:20.112856 (duration_in_ms=14313.23) +2020-03-06 10:03:20,112 [salt.state :1867][INFO ][6376] Running state [windirstat] at time 10:03:20.112856 +2020-03-06 10:03:20,112 [salt.state :1900][INFO ][6376] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:03:20,112 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:21,377 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:02:31,817 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:38,164 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: Chocolatey v0.10.15 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 10:03:21,377 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:25,832 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28400,24 +27499,28 @@ WinDirStat has been installed. Software installed to 'C:\Program Files (x86)\WinDirStat' Chocolatey installed 1/1 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:02:38,164 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:39,974 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: chocolatey|0.10.15 + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). + +Enjoy using Chocolatey? Explore more amazing features to take your +experience to the next level at + https://chocolatey.org/compare +2020-03-06 10:03:25,832 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:27,081 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 windirstat|1.1.2.20161210 -2020-03-04 12:02:39,974 [salt.state :320 ][INFO ][6920] Made the following changes: +2020-03-06 10:03:27,096 [salt.state :320 ][INFO ][6376] Made the following changes: 'windirstat' changed from 'absent' to '['1.1.2.20161210']' -2020-03-04 12:02:39,974 [salt.state :1997][INFO ][6920] Completed state [windirstat] at time 12:02:39.974095 (duration_in_ms=9671.869) -2020-03-04 12:02:39,974 [salt.state :1819][INFO ][6920] Running state [TelnetClient] at time 12:02:39.974095 -2020-03-04 12:02:39,974 [salt.state :1852][INFO ][6920] Executing state dism.feature_installed for [TelnetClient] -2020-03-04 12:02:40,005 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. -2020-03-04 12:02:40,005 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:02:42,895 [salt.state :889 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:02:42,912 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:44,364 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: +2020-03-06 10:03:27,096 [salt.state :2045][INFO ][6376] Completed state [windirstat] at time 10:03:27.096622 (duration_in_ms=6983.766) +2020-03-06 10:03:27,096 [salt.state :1867][INFO ][6376] Running state [TelnetClient] at time 10:03:27.096622 +2020-03-06 10:03:27,096 [salt.state :1900][INFO ][6376] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 10:03:27,112 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 10:03:27,112 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:03:29,315 [salt.state :906 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:03:29,315 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:30,674 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Deployment Image Servicing and Management tool Version: 10.0.17763.1 @@ -28840,7 +27943,7 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:02:44,364 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6920] output: +2020-03-06 10:03:30,674 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6376] output: Deployment Image Servicing and Management tool Version: 10.0.17763.1 @@ -29263,9 +28366,9 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:02:44,364 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:45,598 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 12:02:47,365 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6920] stdout: +2020-03-06 10:03:30,674 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:31,940 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 10:03:33,424 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6376] stdout: Deployment Image Servicing and Management tool Version: 10.0.17763.1 @@ -29688,7 +28791,7 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:02:47,380 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6920] output: +2020-03-06 10:03:33,424 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6376] output: Deployment Image Servicing and Management tool Version: 10.0.17763.1 @@ -30111,49 +29214,909 @@ Feature Name : Internet-Explorer-Optional-amd64 State : Enabled The operation completed successfully. -2020-03-04 12:02:47,380 [salt.state :320 ][INFO ][6920] {'stderr': '', 'retcode': 0, 'pid': 1340, 'stdout': '', 'feature': {'new': 'TelnetClient'}} -2020-03-04 12:02:47,380 [salt.state :1997][INFO ][6920] Completed state [TelnetClient] at time 12:02:47.380081 (duration_in_ms=7405.986) -2020-03-04 12:02:47,396 [salt.state :1819][INFO ][6920] Running state [windows.module.system.reboot] at time 12:02:47.396062 -2020-03-04 12:02:47,396 [salt.state :1852][INFO ][6920] Executing state module.run for [windows.module.system.reboot] -2020-03-04 12:02:47,427 [salt.utils.lazy :107 ][DEBUG ][6920] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:02:47,442 [salt.loaded.int.module.cmdmod:397 ][INFO ][6920] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' -2020-03-04 12:02:47,849 [salt.state :889 ][DEBUG ][6920] Last command return code: 0 -2020-03-04 12:02:47,849 [salt.loaded.int.module.win_system:1413][DEBUG ][6920] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired -2020-03-04 12:02:47,849 [salt.loaded.int.module.win_system:1348][DEBUG ][6920] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:02:47,864 [salt.loaded.int.module.win_system:1348][DEBUG ][6920] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:02:47,864 [salt.loaded.int.module.win_system:1387][DEBUG ][6920] Unable to access key: SOFTWARE\Microsoft\ServerManager -2020-03-04 12:02:47,864 [salt.loaded.int.module.win_system:1273][DEBUG ][6920] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending -2020-03-04 12:02:47,927 [salt.state :320 ][INFO ][6920] {'system.reboot': True} -2020-03-04 12:02:47,927 [salt.state :1997][INFO ][6920] Completed state [windows.module.system.reboot] at time 12:02:47.927169 (duration_in_ms=531.107) -2020-03-04 12:02:47,927 [salt.state :2801][DEBUG ][6920] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2513917269048 does not exist, no need to cleanup -2020-03-04 12:02:47,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded state.check_result -2020-03-04 12:02:47,958 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded highstate.output -2020-03-04 12:02:47,975 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:47,975 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:47,975 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:47,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:47,989 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,005 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,020 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,037 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,037 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,051 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,051 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,067 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,083 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,083 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,099 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,114 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,130 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 12:02:48,145 [salt.utils.lazy :104 ][DEBUG ][6920] LazyLoaded nested.output -2020-03-04 15:02:53,272 [salt.loader :747 ][DEBUG ][2728] Grains refresh requested. Refreshing grains. -2020-03-04 15:02:53,287 [salt.config :2190][DEBUG ][2728] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 15:02:53,287 [salt.config :2334][DEBUG ][2728] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 15:02:53,287 [salt.config :2190][DEBUG ][2728] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:03:33,424 [salt.state :320 ][INFO ][6376] {'retcode': 0, 'stderr': '', 'feature': {'new': ['TelnetClient']}, 'pid': 2840, 'stdout': ''} +2020-03-06 10:03:33,424 [salt.state :2045][INFO ][6376] Completed state [TelnetClient] at time 10:03:33.424945 (duration_in_ms=6328.323) +2020-03-06 10:03:33,424 [salt.state :1867][INFO ][6376] Running state [windows.module.system.reboot] at time 10:03:33.424945 +2020-03-06 10:03:33,424 [salt.state :1900][INFO ][6376] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:03:33,440 [salt.utils.lazy :107 ][DEBUG ][6376] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:03:33,440 [salt.loaded.int.module.cmdmod:397 ][INFO ][6376] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:03:33,627 [salt.state :906 ][DEBUG ][6376] Last command return code: 0 +2020-03-06 10:03:33,643 [salt.loaded.int.module.win_system:1413][DEBUG ][6376] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:03:33,643 [salt.loaded.int.module.win_system:1348][DEBUG ][6376] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:03:33,643 [salt.loaded.int.module.win_system:1348][DEBUG ][6376] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:03:33,643 [salt.loaded.int.module.win_system:1387][DEBUG ][6376] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:03:33,643 [salt.loaded.int.module.win_system:1273][DEBUG ][6376] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:03:33,690 [salt.state :320 ][INFO ][6376] {'system.reboot': True} +2020-03-06 10:03:33,690 [salt.state :2045][INFO ][6376] Completed state [windows.module.system.reboot] at time 10:03:33.690635 (duration_in_ms=265.69) +2020-03-06 10:03:33,690 [salt.state :2921][DEBUG ][6376] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2666068888376 does not exist, no need to cleanup +2020-03-06 10:03:33,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded highstate.output +2020-03-06 10:03:33,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,721 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,737 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,753 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,768 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,787 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,800 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,800 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,800 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,800 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,830 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,830 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,830 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,846 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,862 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,862 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 10:03:33,878 [salt.utils.lazy :104 ][DEBUG ][6376] LazyLoaded nested.output +2020-03-06 13:03:40,659 [salt.loader :770 ][DEBUG ][2176] Grains refresh requested. Refreshing grains. +2020-03-06 13:03:40,674 [salt.config :2111][DEBUG ][2176] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:03:40,674 [salt.config :2255][DEBUG ][2176] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:03:40,674 [salt.config :2111][DEBUG ][2176] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 13:03:46,190 [salt.pillar :57 ][DEBUG ][2176] Determining pillar cache +2020-03-06 13:03:46,268 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded jinja.render +2020-03-06 13:03:46,268 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded yaml.render +2020-03-06 13:03:46,300 [salt.template :59 ][DEBUG ][2176] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 13:03:46,300 [salt.utils.jinja :85 ][DEBUG ][2176] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 13:03:46,315 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015616655349731445 +2020-03-06 13:03:46,315 [salt.template :120 ][DEBUG ][2176] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 13:03:46,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][2176] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 13:03:46,315 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 13:03:46,331 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded confirm_top.confirm_top +2020-03-06 13:03:46,346 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded compound_match.match +2020-03-06 13:03:46,346 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][2176] compound_match: vagrant-10 ? * +2020-03-06 13:03:46,346 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded glob_match.match +2020-03-06 13:03:46,346 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][2176] compound_match vagrant-10 ? "*" => "True" +2020-03-06 13:03:46,346 [salt.template :59 ][DEBUG ][2176] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 13:03:46,346 [salt.utils.jinja :85 ][DEBUG ][2176] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 13:03:46,365 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.018455982208251953 +2020-03-06 13:03:46,365 [salt.template :120 ][DEBUG ][2176] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 13:03:46,365 [salt.loaded.int.render.yaml:80 ][DEBUG ][2176] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 13:03:46,365 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 +2020-03-06 13:03:46,471 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded jinja.render +2020-03-06 13:03:46,471 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded yaml.render +2020-03-06 13:03:46,471 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded pillar.items +2020-03-06 13:03:46,471 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded direct_call.execute +2020-03-06 13:03:46,471 [salt.pillar :57 ][DEBUG ][2176] Determining pillar cache +2020-03-06 13:03:46,550 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded jinja.render +2020-03-06 13:03:46,550 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded yaml.render +2020-03-06 13:03:46,580 [salt.template :59 ][DEBUG ][2176] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 13:03:46,580 [salt.utils.jinja :85 ][DEBUG ][2176] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 13:03:46,580 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 +2020-03-06 13:03:46,580 [salt.template :120 ][DEBUG ][2176] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +--- +base: + "*": + - windows + +2020-03-06 13:03:46,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][2176] Results of YAML rendering: +OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) +2020-03-06 13:03:46,580 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 13:03:46,580 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded confirm_top.confirm_top +2020-03-06 13:03:46,596 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded compound_match.match +2020-03-06 13:03:46,596 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][2176] compound_match: vagrant-10 ? * +2020-03-06 13:03:46,596 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded glob_match.match +2020-03-06 13:03:46,596 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][2176] compound_match vagrant-10 ? "*" => "True" +2020-03-06 13:03:46,596 [salt.template :59 ][DEBUG ][2176] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 13:03:46,596 [salt.utils.jinja :85 ][DEBUG ][2176] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 13:03:46,612 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.015141963958740234 +2020-03-06 13:03:46,612 [salt.template :120 ][DEBUG ][2176] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +# -*- coding: utf-8 -*- +# vim: ft=yaml +--- +windows: + states: + enabled: true + system: + computer_desc: + id: description + enabled: true + name: "Saltstack Computer Description" + require: + - windows.state.system.hostname.saltstack1 + hostname: + name: "saltstack1" + timezone: + system: + name: America/New_York + utc: false + wua: + # settings: + # enabled: true + # level: 4 + # recommended: true + # featured: false + # elevated: true + # msupdate: true + # day: Everyday + # time: "01:00" + uptodate: + enabled: false + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + modules: + enabled: true + environ: + items: + enabled: true + system: + reboot: + enabled: true + timeout: 5 + in_seconds: true + only_on_pending_reboot: true + wait_for_reboot: false + onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" + order: last + user: + enabled: true + current: + enabled: true + sam: true + status: + uptime: + enabled: true + human_readable: true + require: + - windows.module.user.current + system: + enabled: true + reboot: + enabled: false + timeout_in_seconds: 10 + only_on_pending_reboot: true + dsc: + enabled: false + client: + root: c:\\DSC\\ + manifest: + source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ + configuration: Win10DSC + user: + enabled: false + disable: + Administrator: + disable: false + Guest: + disable: true + packages: + enabled: true + always_install_latest_version: false + always_upgrade_to_latest_version: false + providers: + enabled: false + installed: + NuGet: + powershell: + modules: + enabled: true + installed: + PSDscResources: + cChoco: + chocolatey: + enabled: true + installed: + notepadplusplus: + windirstat: + version: '1.1.2.20161210' + saltstack: + enabled: true + installed: + git: + refresh_minion_env_path: true + 7zip: + version: '18.06.00.0' + refresh_minion_env_path: false + kdiff3: + appx: + enabled: true + provisioned: + uninstalled: + # Microsoft.3DBuilder: + # Microsoft.BingWeather: + # Microsoft.DesktopAppInstaller: + # Microsoft.Getstarted: + # Microsoft.Messaging: + # Microsoft.Microsoft3DViewer: + # Microsoft.MicrosoftOfficeHub: + Microsoft.MicrosoftSolitaireCollection: + # Microsoft.MicrosoftStickyNotes: + # Microsoft.MSPaint: + # Microsoft.Office.OneNote: + # Microsoft.OneConnect: + # Microsoft.People: + # Microsoft.SkypeApp: + # Microsoft.StorePurchaseApp: + Microsoft.Wallet: + # Microsoft.Windows.Photos: + # Microsoft.WindowsAlarms: + # Microsoft.WindowsCalculator: + # Microsoft.WindowsCamera: + # microsoft.windowscommunicationsapps: + # Microsoft.WindowsFeedbackHub: + # Microsoft.WindowsMaps: + # Microsoft.WindowsSoundRecorder: + # Microsoft.WindowsStore: + # Microsoft.XboxApp: + # Microsoft.XboxGameOverlay: + # Microsoft.XboxIdentityProvider: + # Microsoft.XboxSpeechToTextOverlay: + Microsoft.ZuneMusic: + Microsoft.ZuneVideo: + # Microsoft.GetHelp: + # Microsoft.Print3D: + # Microsoft.Xbox.TCUI: + # Microsoft.WebMediaExtensions: + # Microsoft.XboxGamingOverlay: + # Microsoft.HEIFImageExtension: + Microsoft.MixedReality.Portal: + # Microsoft.ScreenSketch: + # Microsoft.VP9VideoExtensions: + # Microsoft.WebpImageExtension: + # Microsoft.YourPhone: + server: + enabled: true + features: + enabled: true + installed: + telnet-client: + desktop: + enabled: true + optional_features: + enabled: true + installed: + # Client-DeviceLockdown: + # Client-EmbeddedBootExp: + # Client-EmbeddedLogon: + # Client-EmbeddedShellLauncher: + # ClientForNFS-Infrastructure: + # Client-KeyboardFilter: + # Client-ProjFS: + # Client-UnifiedWriteFilter: + # Containers: + # Containers-DisposableClientVM: + # DataCenterBridging: + # DirectoryServices-ADAM-Client: + # DirectPlay: + # FaxServicesClientPackage: + # HostGuardian: + # HypervisorPlatform: + # IIS-ApplicationDevelopment: + # IIS-ApplicationInit: + # IIS-ASP: + # IIS-ASPNET: + # IIS-ASPNET45: + # IIS-BasicAuthentication: + # IIS-CertProvider: + # IIS-CGI: + # IIS-ClientCertificateMappingAuthentication: + # IIS-CommonHttpFeatures: + # IIS-CustomLogging: + # IIS-DefaultDocument: + # IIS-DigestAuthentication: + # IIS-DirectoryBrowsing: + # IIS-FTPExtensibility: + # IIS-FTPServer: + # IIS-FTPSvc: + # IIS-HealthAndDiagnostics: + # IIS-HostableWebCore: + # IIS-HttpCompressionDynamic: + # IIS-HttpCompressionStatic: + # IIS-HttpErrors: + # IIS-HttpLogging: + # IIS-HttpRedirect: + # IIS-HttpTracing: + # IIS-IIS6ManagementCompatibility: + # IIS-IISCertificateMappingAuthentication: + # IIS-IPSecurity: + # IIS-ISAPIExtensions: + # IIS-ISAPIFilter: + # IIS-LegacyScripts: + # IIS-LegacySnapIn: + # IIS-LoggingLibraries: + # IIS-ManagementConsole: + # IIS-ManagementScriptingTools: + # IIS-ManagementService: + # IIS-Metabase: + # IIS-NetFxExtensibility: + # IIS-NetFxExtensibility45: + # IIS-ODBCLogging: + # IIS-Performance: + # IIS-RequestFiltering: + # IIS-RequestMonitor: + # IIS-Security: + # IIS-ServerSideIncludes: + # IIS-StaticContent: + # IIS-URLAuthorization: + # IIS-WebDAV: + # IIS-WebServer: + # IIS-WebServerManagementTools: + # IIS-WebServerRole: + # IIS-WebSockets: + # IIS-WindowsAuthentication: + # IIS-WMICompatibility: + # Internet-Explorer-Optional-amd64: + # LegacyComponents: + # MediaPlayback: + # Microsoft-Hyper-V: + # Microsoft-Hyper-V-All: + # Microsoft-Hyper-V-Hypervisor: + # Microsoft-Hyper-V-Management-Clients: + # Microsoft-Hyper-V-Management-PowerShell: + # Microsoft-Hyper-V-Services: + # Microsoft-Hyper-V-Tools-All: + # Microsoft-Windows-Client-EmbeddedExp-Package: + # Microsoft-Windows-NetFx3-OC-Package: + # Microsoft-Windows-NetFx3-WCF-OC-Package: + # Microsoft-Windows-NetFx4-US-OC-Package: + # Microsoft-Windows-NetFx4-WCF-US-OC-Package: + # MicrosoftWindowsPowerShellV2: + # MicrosoftWindowsPowerShellV2Root: + # Microsoft-Windows-Subsystem-Linux: + # MSMQ-ADIntegration: + # MSMQ-Container: + # MSMQ-DCOMProxy: + # MSMQ-HTTP: + # MSMQ-Multicast: + # MSMQ-Server: + # MSMQ-Triggers: + # MSRDC-Infrastructure: + # MultiPoint-Connector: + # MultiPoint-Connector-Services: + # MultiPoint-Tools: + # NetFx3: + # NetFx4-AdvSrvs: + # NetFx4Extended-ASPNET45: + # NFS-Administration: + # Printing-Foundation-Features: + # Printing-Foundation-InternetPrinting-Client: + # Printing-Foundation-LPDPrintService: + # Printing-Foundation-LPRPortMonitor: + # Printing-PrintToPDFServices-Features: + # Printing-XPSServices-Features: + # SearchEngine-Client-Package: + # ServicesForNFS-ClientOnly: + # SimpleTCP: + # SMB1Protocol: + # SMB1Protocol-Client: + # SMB1Protocol-Deprecation: + # SMB1Protocol-Server: + # SmbDirect: + TelnetClient: + # TFTP: + # TIFFIFilter: + # VirtualMachinePlatform: + # WAS-ConfigurationAPI: + # WAS-NetFxEnvironment: + # WAS-ProcessModel: + # WAS-WindowsActivationService: + # WCF-HTTP-Activation: + # WCF-HTTP-Activation45: + # WCF-MSMQ-Activation45: + # WCF-NonHTTP-Activation: + # WCF-Pipe-Activation45: + # WCF-Services45: + # WCF-TCP-Activation45: + # WCF-TCP-PortSharing45: + # Windows-Defender-ApplicationGuard: + # Windows-Defender-Default-Definitions: + # Windows-Identity-Foundation: + # WindowsMediaPlayer: + # WorkFolders-Client: + packages: + enabled: true + system_old: + enabled: true + timezone: America/New_York + computer: + enabled: true + hostname: "saltstack1" + description: "Saltstack Computer Description" + wua: + enabled: true + settings: + enabled: true + level: 4 + recommended: true + featured: false + elevated: true + msupdate: true + day: Everyday + time: "01:00" + uptodate: + enabled: true + only_initial_build: true + software: true + drivers: true + skip_hidden: false + skip_mandatory: false + skip_reboot: false + categories: + - Critical Updates + - Definition Updates + - Drivers + - Feature Packs + - Security Updates + - Update Rollups + - Updates + - Update Rollups + - Windows Defender + severities: + - Critical + - Important + user: + enabled: false + create: + saltuser1: + enabled: true + password: P@55w0rd! + fullname: User1 SaltStack + description: SaltStack User1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Power Users + - saltstack_users + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + saltadmin1: + enabled: false + password: P@55w0rd! + fullname: Admin1 SaltStack + description: SaltStack Admin1 + home: \\fileserver\home\foo + homedrive: "c:" + profile: \\fileserver\profiles\foo + logonscript: logonscript.ps1 + groups: + - Administrators + - saltstack_administrators + # update + expiration_date: None + expired: None + account_disabled: false + unlock_account: true + password_never_expires: false + disallow_change_password: false + +2020-03-06 13:03:46,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][2176] Results of YAML rendering: +OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) +2020-03-06 13:03:46,612 [salt.template :30 ][PROFILE ][2176] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 +2020-03-06 13:03:46,628 [salt.utils.lazy :104 ][DEBUG ][2176] LazyLoaded nested.output diff --git a/test/results/py3-windows-10-1903.inspec.results.json b/test/results/py3-windows-10-1903.inspec.results.json index 3e7be35..1d14245 100644 --- a/test/results/py3-windows-10-1903.inspec.results.json +++ b/test/results/py3-windows-10-1903.inspec.results.json @@ -1 +1 @@ -{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.18362"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001177,"start_time":"2020-03-04T14:57:58-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.3023662,"start_time":"2020-03-04T14:57:58-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0447944,"start_time":"2020-03-04T14:57:58-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0389849,"start_time":"2020-03-04T14:57:58-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0388734,"start_time":"2020-03-04T14:57:58-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0506324,"start_time":"2020-03-04T14:57:58-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001627,"start_time":"2020-03-04T14:57:59-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":0.0001066,"start_time":"2020-03-04T14:57:59-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001626,"start_time":"2020-03-04T14:57:59-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":1.13e-05,"start_time":"2020-03-04T14:57:59-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.1076793,"start_time":"2020-03-04T14:57:59-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5742223,"start_time":"2020-03-04T14:57:59-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":3.6697929,"start_time":"2020-03-04T14:57:59-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0479686,"start_time":"2020-03-04T14:58:03-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0002433,"start_time":"2020-03-04T14:58:03-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.4298593,"start_time":"2020-03-04T14:58:03-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.2936617,"start_time":"2020-03-04T14:58:03-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1824969,"start_time":"2020-03-04T14:58:04-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.2208735,"start_time":"2020-03-04T14:58:04-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.2006732,"start_time":"2020-03-04T14:58:04-05:00"}]}],"status":"loaded"}],"statistics":{"duration":6.2391289},"version":"4.18.39"} \ No newline at end of file +{"platform":{"name":"windows_10_enterprise_evaluation","release":"10.0.18362"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_10_enterprise_evaluation should include \"windows\"","run_time":0.0001074,"start_time":"2020-03-06T12:58:19-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.1979289,"start_time":"2020-03-06T12:58:19-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0350443,"start_time":"2020-03-06T12:58:20-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0330581,"start_time":"2020-03-06T12:58:20-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0290897,"start_time":"2020-03-06T12:58:20-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0340859,"start_time":"2020-03-06T12:58:20-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001302,"start_time":"2020-03-06T12:58:20-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":8.24e-05,"start_time":"2020-03-06T12:58:20-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001329,"start_time":"2020-03-06T12:58:20-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"No-op","run_time":8.0e-06,"start_time":"2020-03-06T12:58:20-05:00","resource":"No-op","skip_message":"Skipped control due to only_if condition: only supported on servers"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0482952,"start_time":"2020-03-06T12:58:20-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4398386,"start_time":"2020-03-06T12:58:20-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Optional Feature: `TelnetClient` should be installed","run_time":2.1038065,"start_time":"2020-03-06T12:58:20-05:00"}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0192527,"start_time":"2020-03-06T12:58:22-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001611,"start_time":"2020-03-06T12:58:22-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.0988618,"start_time":"2020-03-06T12:58:22-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1519444,"start_time":"2020-03-06T12:58:22-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1411013,"start_time":"2020-03-06T12:58:23-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1384968,"start_time":"2020-03-06T12:58:23-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1294099,"start_time":"2020-03-06T12:58:23-05:00"}]}],"status":"loaded"}],"statistics":{"duration":3.6311579},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-windows-10-1903.inspec.results.txt b/test/results/py3-windows-10-1903.inspec.results.txt index c1f4d81..49f40fa 100644 --- a/test/results/py3-windows-10-1903.inspec.results.txt +++ b/test/results/py3-windows-10-1903.inspec.results.txt @@ -66,6 +66,6 @@ Pending: (Failures listed here are expected and do not affect your suite's statu # Not yet implemented # -Finished in 6.24 seconds (files took 4 minutes 23.8 seconds to load) +Finished in 3.63 seconds (files took 5 minutes 3 seconds to load) 20 examples, 0 failures, 1 pending diff --git a/test/results/py3-windows-10-1903.inspec.results.xml b/test/results/py3-windows-10-1903.inspec.results.xml index 433050d..73e1705 100644 --- a/test/results/py3-windows-10-1903.inspec.results.xml +++ b/test/results/py3-windows-10-1903.inspec.results.xml @@ -1,27 +1,27 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + diff --git a/test/results/py3-windows-10-1903.kitchen.log b/test/results/py3-windows-10-1903.kitchen.log index b397976..9f8d952 100644 --- a/test/results/py3-windows-10-1903.kitchen.log +++ b/test/results/py3-windows-10-1903.kitchen.log @@ -1,1036 +1,1037 @@ -I, [2020-03-04T14:53:40.043124 #1554] INFO -- py3-windows-10-1903: -----> Cleaning up any prior instances of -I, [2020-03-04T14:53:40.043282 #1554] INFO -- py3-windows-10-1903: -----> Destroying ... -I, [2020-03-04T14:53:40.044640 #1554] INFO -- py3-windows-10-1903: Finished destroying (0m0.00s). -I, [2020-03-04T14:53:40.045668 #1554] INFO -- py3-windows-10-1903: -----> Testing -I, [2020-03-04T14:53:40.045770 #1554] INFO -- py3-windows-10-1903: -----> Creating ... -I, [2020-03-04T14:53:46.456999 #1554] INFO -- py3-windows-10-1903: Bringing machine 'default' up with 'virtualbox' provider... -I, [2020-03-04T14:53:47.152478 #1554] INFO -- py3-windows-10-1903: ==> default: Cloning VM... -I, [2020-03-04T14:53:47.646772 #1554] INFO -- py3-windows-10-1903: ==> default: Matching MAC address for NAT networking... -I, [2020-03-04T14:53:47.882935 #1554] INFO -- py3-windows-10-1903: ==> default: Checking if box 'StefanScherer/windows_10' version '2020.01.15' is up to date... -I, [2020-03-04T14:53:49.087166 #1554] INFO -- py3-windows-10-1903: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1903-e7944924-3788-4321-9739-cc0a6445a1d9 -I, [2020-03-04T14:53:52.920687 #1554] INFO -- py3-windows-10-1903: ==> default: Clearing any previously set network interfaces... -I, [2020-03-04T14:53:53.078832 #1554] INFO -- py3-windows-10-1903: ==> default: Preparing network interfaces based on configuration... -I, [2020-03-04T14:53:53.079357 #1554] INFO -- py3-windows-10-1903: default: Adapter 1: nat -I, [2020-03-04T14:53:53.299047 #1554] INFO -- py3-windows-10-1903: ==> default: Forwarding ports... -I, [2020-03-04T14:53:53.493589 #1554] INFO -- py3-windows-10-1903: default: 3389 (guest) => 3389 (host) (adapter 1) -I, [2020-03-04T14:53:53.494729 #1554] INFO -- py3-windows-10-1903: default: 5985 (guest) => 55985 (host) (adapter 1) -I, [2020-03-04T14:53:53.495368 #1554] INFO -- py3-windows-10-1903: default: 5986 (guest) => 55986 (host) (adapter 1) -I, [2020-03-04T14:53:53.495990 #1554] INFO -- py3-windows-10-1903: default: 22 (guest) => 2222 (host) (adapter 1) -I, [2020-03-04T14:53:54.044706 #1554] INFO -- py3-windows-10-1903: ==> default: Running 'pre-boot' VM customizations... -I, [2020-03-04T14:53:55.355761 #1554] INFO -- py3-windows-10-1903: ==> default: Booting VM... -I, [2020-03-04T14:53:57.978859 #1554] INFO -- py3-windows-10-1903: ==> default: Waiting for machine to boot. This may take a few minutes... -I, [2020-03-04T14:53:59.780865 #1554] INFO -- py3-windows-10-1903: default: WinRM address: 127.0.0.1:55985 -I, [2020-03-04T14:53:59.780995 #1554] INFO -- py3-windows-10-1903: default: WinRM username: vagrant -I, [2020-03-04T14:53:59.781284 #1554] INFO -- py3-windows-10-1903: default: WinRM execution_time_limit: PT2H -I, [2020-03-04T14:53:59.781566 #1554] INFO -- py3-windows-10-1903: default: WinRM transport: negotiate -I, [2020-03-04T14:54:21.493661 #1554] INFO -- py3-windows-10-1903: ==> default: Machine booted and ready! -I, [2020-03-04T14:54:21.529922 #1554] INFO -- py3-windows-10-1903: ==> default: Checking for guest additions in VM... -I, [2020-03-04T14:54:21.767100 #1554] INFO -- py3-windows-10-1903: default: The guest additions on this VM do not match the installed version of -I, [2020-03-04T14:54:21.767216 #1554] INFO -- py3-windows-10-1903: default: VirtualBox! In most cases this is fine, but in rare cases it can -I, [2020-03-04T14:54:21.767263 #1554] INFO -- py3-windows-10-1903: default: prevent things such as shared folders from working properly. If you see -I, [2020-03-04T14:54:21.767304 #1554] INFO -- py3-windows-10-1903: default: shared folder errors, please make sure the guest additions within the -I, [2020-03-04T14:54:21.767345 #1554] INFO -- py3-windows-10-1903: default: virtual machine match the version of VirtualBox you have installed on -I, [2020-03-04T14:54:21.767398 #1554] INFO -- py3-windows-10-1903: default: your host and reload your VM. -I, [2020-03-04T14:54:21.767443 #1554] INFO -- py3-windows-10-1903: default: -I, [2020-03-04T14:54:21.767494 #1554] INFO -- py3-windows-10-1903: default: Guest Additions Version: 6.0.10 -I, [2020-03-04T14:54:21.767538 #1554] INFO -- py3-windows-10-1903: default: VirtualBox Version: 6.1 -I, [2020-03-04T14:54:22.638047 #1554] INFO -- py3-windows-10-1903: ==> default: Mounting shared folders... -I, [2020-03-04T14:54:22.639617 #1554] INFO -- py3-windows-10-1903: default: /results => /mnt/c/tmp/results -I, [2020-03-04T14:54:30.570764 #1554] INFO -- py3-windows-10-1903: ==> default: Machine not provisioned because `--no-provision` is specified. -I, [2020-03-04T14:54:41.910567 #1554] INFO -- py3-windows-10-1903: [WinRM] Established -I, [2020-03-04T14:54:41.910671 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:54:41.919915 #1554] INFO -- py3-windows-10-1903: Vagrant instance created. -I, [2020-03-04T14:54:41.921681 #1554] INFO -- py3-windows-10-1903: Finished creating (1m1.87s). -I, [2020-03-04T14:54:41.921920 #1554] INFO -- py3-windows-10-1903: -----> Converging ... -I, [2020-03-04T14:54:41.924576 #1554] INFO -- py3-windows-10-1903: Preparing files for transfer -I, [2020-03-04T14:54:41.924754 #1554] INFO -- py3-windows-10-1903: Preparing salt-minion -I, [2020-03-04T14:54:41.929140 #1554] INFO -- py3-windows-10-1903: Preparing pillars into /srv/pillar -I, [2020-03-04T14:54:41.929270 #1554] INFO -- py3-windows-10-1903: pillars-from-files is deprecated in favor of pillars_from_files -I, [2020-03-04T14:54:41.933694 #1554] INFO -- py3-windows-10-1903: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula -I, [2020-03-04T14:54:42.078393 #1554] INFO -- py3-windows-10-1903: Preparing state_top -I, [2020-03-04T14:54:42.079926 #1554] INFO -- py3-windows-10-1903: Preparing scripts into /etc/salt/scripts -I, [2020-03-04T14:54:43.447801 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:54:43.448314 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:54:43.448851 #1554] INFO -- py3-windows-10-1903: Directory: C:\ -I, [2020-03-04T14:54:43.449304 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:54:43.449715 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:54:43.450310 #1554] INFO -- py3-windows-10-1903: Mode LastWriteTime Length Name -I, [2020-03-04T14:54:43.450902 #1554] INFO -- py3-windows-10-1903: ---- ------------- ------ ---- -I, [2020-03-04T14:54:43.451499 #1554] INFO -- py3-windows-10-1903: d----- 3/4/2020 11:54 AM temp -I, [2020-03-04T14:54:44.274460 #1554] INFO -- py3-windows-10-1903: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe -I, [2020-03-04T14:54:52.496031 #1554] INFO -- py3-windows-10-1903: Installing Salt minion -I, [2020-03-04T14:55:05.853132 #1554] INFO -- py3-windows-10-1903: Starting the Salt minion service -I, [2020-03-04T14:55:05.853651 #1554] INFO -- py3-windows-10-1903: Salt minion successfully installed -I, [2020-03-04T14:55:07.841838 #1554] INFO -- py3-windows-10-1903: You asked for latest and you have 2019.2.3 installed, sweet! -I, [2020-03-04T14:55:07.842395 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:07.842821 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:08.427249 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:08.427682 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:08.428135 #1554] INFO -- py3-windows-10-1903: Directory: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T14:55:08.428477 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:08.428785 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:08.429137 #1554] INFO -- py3-windows-10-1903: Mode LastWriteTime Length Name -I, [2020-03-04T14:55:08.429535 #1554] INFO -- py3-windows-10-1903: ---- ------------- ------ ---- -I, [2020-03-04T14:55:08.429973 #1554] INFO -- py3-windows-10-1903: d----- 3/4/2020 11:55 AM kitchen -I, [2020-03-04T14:55:08.430310 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:08.430632 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:08.440993 #1554] INFO -- py3-windows-10-1903: Transferring files to -I, [2020-03-04T14:55:40.278963 #1554] INFO -- py3-windows-10-1903: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T14:55:40.279430 #1554] INFO -- py3-windows-10-1903: At line:1 char:131 -I, [2020-03-04T14:55:40.279753 #1554] INFO -- py3-windows-10-1903: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... -I, [2020-03-04T14:55:40.280053 #1554] INFO -- py3-windows-10-1903: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -I, [2020-03-04T14:55:40.280414 #1554] INFO -- py3-windows-10-1903: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException -I, [2020-03-04T14:55:40.280733 #1554] INFO -- py3-windows-10-1903: + FullyQualifiedErrorId : NativeCommandError -I, [2020-03-04T14:55:40.281070 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:40.281357 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:40.281701 #1554] INFO -- py3-windows-10-1903: Traceback (most recent call last): -I, [2020-03-04T14:55:40.281999 #1554] INFO -- py3-windows-10-1903: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T14:55:40.282364 #1554] INFO -- py3-windows-10-1903: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T14:55:40.282668 #1554] INFO -- py3-windows-10-1903: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T14:55:40.283039 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:55:40.283326 #1554] INFO -- py3-windows-10-1903: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T14:55:40.283605 #1554] INFO -- py3-windows-10-1903: Traceback (most recent call last): -I, [2020-03-04T14:55:40.283979 #1554] INFO -- py3-windows-10-1903: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T14:55:40.284289 #1554] INFO -- py3-windows-10-1903: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T14:55:40.284535 #1554] INFO -- py3-windows-10-1903: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T14:55:40.284714 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:56:26.035367 #1554] INFO -- py3-windows-10-1903: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W -I, [2020-03-04T14:56:26.035805 #1554] INFO -- py3-windows-10-1903: environ[key] = redata.sub(a, value) -I, [2020-03-04T14:56:26.036172 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:56:26.036507 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:56:26.036834 #1554] INFO -- py3-windows-10-1903: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P -I, [2020-03-04T14:56:26.037154 #1554] INFO -- py3-windows-10-1903: environ[key] = redata.sub(a, value) -I, [2020-03-04T14:56:26.037451 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:56:26.037713 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.007342 #1554] INFO -- py3-windows-10-1903: local: -I, [2020-03-04T14:57:11.007770 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.008098 #1554] INFO -- py3-windows-10-1903: ID: windows.state.system.hostname.saltstack1 -I, [2020-03-04T14:57:11.008424 #1554] INFO -- py3-windows-10-1903: Function: system.hostname -I, [2020-03-04T14:57:11.008697 #1554] INFO -- py3-windows-10-1903: Name: saltstack1 -I, [2020-03-04T14:57:11.009029 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.009419 #1554] INFO -- py3-windows-10-1903: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot -I, [2020-03-04T14:57:11.009745 #1554] INFO -- py3-windows-10-1903: Started: 11:55:19.833229 -I, [2020-03-04T14:57:11.010126 #1554] INFO -- py3-windows-10-1903: Duration: 91.817 ms -I, [2020-03-04T14:57:11.010567 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.011002 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.011439 #1554] INFO -- py3-windows-10-1903: hostname: -I, [2020-03-04T14:57:11.011832 #1554] INFO -- py3-windows-10-1903: saltstack1 -I, [2020-03-04T14:57:11.012267 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.012730 #1554] INFO -- py3-windows-10-1903: ID: windows.state.system.computer_desc.description -I, [2020-03-04T14:57:11.013203 #1554] INFO -- py3-windows-10-1903: Function: system.computer_desc -I, [2020-03-04T14:57:11.014976 #1554] INFO -- py3-windows-10-1903: Name: Saltstack Computer Description -I, [2020-03-04T14:57:11.016582 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.018073 #1554] INFO -- py3-windows-10-1903: Comment: Computer description successfully changed to 'Saltstack Computer Description' -I, [2020-03-04T14:57:11.019334 #1554] INFO -- py3-windows-10-1903: Started: 11:55:19.925046 -I, [2020-03-04T14:57:11.020340 #1554] INFO -- py3-windows-10-1903: Duration: 2702.172 ms -I, [2020-03-04T14:57:11.021175 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.021960 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.022725 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.023453 #1554] INFO -- py3-windows-10-1903: Saltstack Computer Description -I, [2020-03-04T14:57:11.024445 #1554] INFO -- py3-windows-10-1903: old: -I, [2020-03-04T14:57:11.025957 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.026488 #1554] INFO -- py3-windows-10-1903: ID: windows.state.timezone.system.America/New_York -I, [2020-03-04T14:57:11.028187 #1554] INFO -- py3-windows-10-1903: Function: timezone.system -I, [2020-03-04T14:57:11.029926 #1554] INFO -- py3-windows-10-1903: Name: America/New_York -I, [2020-03-04T14:57:11.031549 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.033356 #1554] INFO -- py3-windows-10-1903: Comment: Set timezone America/New_York -I, [2020-03-04T14:57:11.035407 #1554] INFO -- py3-windows-10-1903: Started: 11:55:22.644276 -I, [2020-03-04T14:57:11.037354 #1554] INFO -- py3-windows-10-1903: Duration: 15.194 ms -I, [2020-03-04T14:57:11.039120 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.040978 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.042539 #1554] INFO -- py3-windows-10-1903: timezone: -I, [2020-03-04T14:57:11.044160 #1554] INFO -- py3-windows-10-1903: America/New_York -I, [2020-03-04T14:57:11.046029 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.047804 #1554] INFO -- py3-windows-10-1903: ID: windows.module.environ.items -I, [2020-03-04T14:57:11.048753 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.049628 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.051480 #1554] INFO -- py3-windows-10-1903: Comment: environ.items: Success -I, [2020-03-04T14:57:11.053138 #1554] INFO -- py3-windows-10-1903: Started: 11:55:22.675113 -I, [2020-03-04T14:57:11.054557 #1554] INFO -- py3-windows-10-1903: Duration: 0.0 ms -I, [2020-03-04T14:57:11.055187 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.056226 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.056620 #1554] INFO -- py3-windows-10-1903: environ.items: -I, [2020-03-04T14:57:11.058104 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.060584 #1554] INFO -- py3-windows-10-1903: ALLUSERSPROFILE: -I, [2020-03-04T14:57:11.062017 #1554] INFO -- py3-windows-10-1903: C:\ProgramData -I, [2020-03-04T14:57:11.063322 #1554] INFO -- py3-windows-10-1903: APPDATA: -I, [2020-03-04T14:57:11.064827 #1554] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Roaming -I, [2020-03-04T14:57:11.065311 #1554] INFO -- py3-windows-10-1903: COMMONPROGRAMFILES: -I, [2020-03-04T14:57:11.066537 #1554] INFO -- py3-windows-10-1903: C:\Program Files\Common Files -I, [2020-03-04T14:57:11.067445 #1554] INFO -- py3-windows-10-1903: COMMONPROGRAMFILES(X86): -I, [2020-03-04T14:57:11.068163 #1554] INFO -- py3-windows-10-1903: C:\Program Files (x86)\Common Files -I, [2020-03-04T14:57:11.068946 #1554] INFO -- py3-windows-10-1903: COMMONPROGRAMW6432: -I, [2020-03-04T14:57:11.069722 #1554] INFO -- py3-windows-10-1903: C:\Program Files\Common Files -I, [2020-03-04T14:57:11.070616 #1554] INFO -- py3-windows-10-1903: COMPUTERNAME: -I, [2020-03-04T14:57:11.071568 #1554] INFO -- py3-windows-10-1903: VAGRANT-10 -I, [2020-03-04T14:57:11.072365 #1554] INFO -- py3-windows-10-1903: COMSPEC: -I, [2020-03-04T14:57:11.073087 #1554] INFO -- py3-windows-10-1903: C:\Windows\system32\cmd.exe -I, [2020-03-04T14:57:11.078108 #1554] INFO -- py3-windows-10-1903: DRIVERDATA: -I, [2020-03-04T14:57:11.078577 #1554] INFO -- py3-windows-10-1903: C:\Windows\System32\Drivers\DriverData -I, [2020-03-04T14:57:11.078990 #1554] INFO -- py3-windows-10-1903: HOMEDRIVE: -I, [2020-03-04T14:57:11.079331 #1554] INFO -- py3-windows-10-1903: C: -I, [2020-03-04T14:57:11.079654 #1554] INFO -- py3-windows-10-1903: HOMEPATH: -I, [2020-03-04T14:57:11.079986 #1554] INFO -- py3-windows-10-1903: \Users\vagrant -I, [2020-03-04T14:57:11.080387 #1554] INFO -- py3-windows-10-1903: LOCALAPPDATA: -I, [2020-03-04T14:57:11.080752 #1554] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Local -I, [2020-03-04T14:57:11.081070 #1554] INFO -- py3-windows-10-1903: LOGONSERVER: -I, [2020-03-04T14:57:11.081414 #1554] INFO -- py3-windows-10-1903: \\VAGRANT-10 -I, [2020-03-04T14:57:11.081754 #1554] INFO -- py3-windows-10-1903: NUMBER_OF_PROCESSORS: -I, [2020-03-04T14:57:11.082144 #1554] INFO -- py3-windows-10-1903: 2 -I, [2020-03-04T14:57:11.082512 #1554] INFO -- py3-windows-10-1903: ONEDRIVE: -I, [2020-03-04T14:57:11.082835 #1554] INFO -- py3-windows-10-1903: C:\Users\vagrant\OneDrive -I, [2020-03-04T14:57:11.083181 #1554] INFO -- py3-windows-10-1903: OS: -I, [2020-03-04T14:57:11.083624 #1554] INFO -- py3-windows-10-1903: Windows_NT -I, [2020-03-04T14:57:11.083963 #1554] INFO -- py3-windows-10-1903: PATH: -I, [2020-03-04T14:57:11.085114 #1554] INFO -- py3-windows-10-1903: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 -I, [2020-03-04T14:57:11.085522 #1554] INFO -- py3-windows-10-1903: PATHEXT: -I, [2020-03-04T14:57:11.086082 #1554] INFO -- py3-windows-10-1903: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL -I, [2020-03-04T14:57:11.086589 #1554] INFO -- py3-windows-10-1903: PROCESSOR_ARCHITECTURE: -I, [2020-03-04T14:57:11.087100 #1554] INFO -- py3-windows-10-1903: AMD64 -I, [2020-03-04T14:57:11.087499 #1554] INFO -- py3-windows-10-1903: PROCESSOR_IDENTIFIER: -I, [2020-03-04T14:57:11.087845 #1554] INFO -- py3-windows-10-1903: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel -I, [2020-03-04T14:57:11.088184 #1554] INFO -- py3-windows-10-1903: PROCESSOR_LEVEL: -I, [2020-03-04T14:57:11.088522 #1554] INFO -- py3-windows-10-1903: 6 -I, [2020-03-04T14:57:11.088853 #1554] INFO -- py3-windows-10-1903: PROCESSOR_REVISION: -I, [2020-03-04T14:57:11.089236 #1554] INFO -- py3-windows-10-1903: 8e0c -I, [2020-03-04T14:57:11.089563 #1554] INFO -- py3-windows-10-1903: PROGRAMDATA: -I, [2020-03-04T14:57:11.089865 #1554] INFO -- py3-windows-10-1903: C:\ProgramData -I, [2020-03-04T14:57:11.090301 #1554] INFO -- py3-windows-10-1903: PROGRAMFILES: -I, [2020-03-04T14:57:11.090735 #1554] INFO -- py3-windows-10-1903: C:\Program Files -I, [2020-03-04T14:57:11.091162 #1554] INFO -- py3-windows-10-1903: PROGRAMFILES(X86): -I, [2020-03-04T14:57:11.091531 #1554] INFO -- py3-windows-10-1903: C:\Program Files (x86) -I, [2020-03-04T14:57:11.091865 #1554] INFO -- py3-windows-10-1903: PROGRAMW6432: -I, [2020-03-04T14:57:11.092208 #1554] INFO -- py3-windows-10-1903: C:\Program Files -I, [2020-03-04T14:57:11.092542 #1554] INFO -- py3-windows-10-1903: PROMPT: -I, [2020-03-04T14:57:11.092855 #1554] INFO -- py3-windows-10-1903: $P$G -I, [2020-03-04T14:57:11.093177 #1554] INFO -- py3-windows-10-1903: PSMODULEPATH: -I, [2020-03-04T14:57:11.093577 #1554] INFO -- py3-windows-10-1903: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules -I, [2020-03-04T14:57:11.093999 #1554] INFO -- py3-windows-10-1903: PUBLIC: -I, [2020-03-04T14:57:11.094386 #1554] INFO -- py3-windows-10-1903: C:\Users\Public -I, [2020-03-04T14:57:11.094719 #1554] INFO -- py3-windows-10-1903: PYTHON: -I, [2020-03-04T14:57:11.095072 #1554] INFO -- py3-windows-10-1903: C:\salt\bin\python.exe -I, [2020-03-04T14:57:11.095392 #1554] INFO -- py3-windows-10-1903: SALTDIR: -I, [2020-03-04T14:57:11.095745 #1554] INFO -- py3-windows-10-1903: C:\salt -I, [2020-03-04T14:57:11.096140 #1554] INFO -- py3-windows-10-1903: SCRIPT: -I, [2020-03-04T14:57:11.096476 #1554] INFO -- py3-windows-10-1903: C:\salt\bin\Scripts\salt-call -I, [2020-03-04T14:57:11.096830 #1554] INFO -- py3-windows-10-1903: SYSTEMDRIVE: -I, [2020-03-04T14:57:11.097170 #1554] INFO -- py3-windows-10-1903: C: -I, [2020-03-04T14:57:11.097507 #1554] INFO -- py3-windows-10-1903: SYSTEMROOT: -I, [2020-03-04T14:57:11.097839 #1554] INFO -- py3-windows-10-1903: C:\Windows -I, [2020-03-04T14:57:11.098183 #1554] INFO -- py3-windows-10-1903: TEMP: -I, [2020-03-04T14:57:11.098515 #1554] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T14:57:11.098905 #1554] INFO -- py3-windows-10-1903: TMP: -I, [2020-03-04T14:57:11.099267 #1554] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T14:57:11.099565 #1554] INFO -- py3-windows-10-1903: USERDOMAIN: -I, [2020-03-04T14:57:11.099864 #1554] INFO -- py3-windows-10-1903: VAGRANT-10 -I, [2020-03-04T14:57:11.100215 #1554] INFO -- py3-windows-10-1903: USERDOMAIN_ROAMINGPROFILE: -I, [2020-03-04T14:57:11.100527 #1554] INFO -- py3-windows-10-1903: VAGRANT-10 -I, [2020-03-04T14:57:11.100832 #1554] INFO -- py3-windows-10-1903: USERNAME: -I, [2020-03-04T14:57:11.101157 #1554] INFO -- py3-windows-10-1903: vagrant -I, [2020-03-04T14:57:11.101458 #1554] INFO -- py3-windows-10-1903: USERPROFILE: -I, [2020-03-04T14:57:11.101856 #1554] INFO -- py3-windows-10-1903: C:\Users\vagrant -I, [2020-03-04T14:57:11.102188 #1554] INFO -- py3-windows-10-1903: WINDIR: -I, [2020-03-04T14:57:11.102478 #1554] INFO -- py3-windows-10-1903: C:\Windows -I, [2020-03-04T14:57:11.102800 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.103126 #1554] INFO -- py3-windows-10-1903: ID: windows.module.user.current -I, [2020-03-04T14:57:11.103437 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.103727 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.104082 #1554] INFO -- py3-windows-10-1903: Comment: user.current: VAGRANT-10\vagrant -I, [2020-03-04T14:57:11.104368 #1554] INFO -- py3-windows-10-1903: Started: 11:55:22.675113 -I, [2020-03-04T14:57:11.104663 #1554] INFO -- py3-windows-10-1903: Duration: 15.442 ms -I, [2020-03-04T14:57:11.104988 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.105370 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.105752 #1554] INFO -- py3-windows-10-1903: user.current: -I, [2020-03-04T14:57:11.106119 #1554] INFO -- py3-windows-10-1903: VAGRANT-10\vagrant -I, [2020-03-04T14:57:11.106536 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.106931 #1554] INFO -- py3-windows-10-1903: ID: windows.module.status.uptime -I, [2020-03-04T14:57:11.107277 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.107598 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.107925 #1554] INFO -- py3-windows-10-1903: Comment: status.uptime: 0:01:20.740518 -I, [2020-03-04T14:57:11.108208 #1554] INFO -- py3-windows-10-1903: Started: 11:55:22.690555 -I, [2020-03-04T14:57:11.108509 #1554] INFO -- py3-windows-10-1903: Duration: 49.963 ms -I, [2020-03-04T14:57:11.108827 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.109143 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.109459 #1554] INFO -- py3-windows-10-1903: status.uptime: -I, [2020-03-04T14:57:11.109806 #1554] INFO -- py3-windows-10-1903: 0:01:20.740518 -I, [2020-03-04T14:57:11.110114 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.110459 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection -I, [2020-03-04T14:57:11.110792 #1554] INFO -- py3-windows-10-1903: Function: cmd.run -I, [2020-03-04T14:57:11.111186 #1554] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers -I, [2020-03-04T14:57:11.111576 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.111972 #1554] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:57:11.112277 #1554] INFO -- py3-windows-10-1903: Started: 11:55:22.753995 -I, [2020-03-04T14:57:11.112625 #1554] INFO -- py3-windows-10-1903: Duration: 2093.483 ms -I, [2020-03-04T14:57:11.112984 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.113367 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.113854 #1554] INFO -- py3-windows-10-1903: pid: -I, [2020-03-04T14:57:11.114331 #1554] INFO -- py3-windows-10-1903: 6712 -I, [2020-03-04T14:57:11.114817 #1554] INFO -- py3-windows-10-1903: retcode: -I, [2020-03-04T14:57:11.115251 #1554] INFO -- py3-windows-10-1903: 0 -I, [2020-03-04T14:57:11.115703 #1554] INFO -- py3-windows-10-1903: stderr: -I, [2020-03-04T14:57:11.116138 #1554] INFO -- py3-windows-10-1903: stdout: -I, [2020-03-04T14:57:11.116557 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.117024 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet -I, [2020-03-04T14:57:11.117447 #1554] INFO -- py3-windows-10-1903: Function: cmd.run -I, [2020-03-04T14:57:11.117909 #1554] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers -I, [2020-03-04T14:57:11.118330 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.118782 #1554] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:57:11.119208 #1554] INFO -- py3-windows-10-1903: Started: 11:55:24.862291 -I, [2020-03-04T14:57:11.119645 #1554] INFO -- py3-windows-10-1903: Duration: 1859.384 ms -I, [2020-03-04T14:57:11.120065 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.120491 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.120938 #1554] INFO -- py3-windows-10-1903: pid: -I, [2020-03-04T14:57:11.121365 #1554] INFO -- py3-windows-10-1903: 3492 -I, [2020-03-04T14:57:11.121808 #1554] INFO -- py3-windows-10-1903: retcode: -I, [2020-03-04T14:57:11.122282 #1554] INFO -- py3-windows-10-1903: 0 -I, [2020-03-04T14:57:11.122769 #1554] INFO -- py3-windows-10-1903: stderr: -I, [2020-03-04T14:57:11.123213 #1554] INFO -- py3-windows-10-1903: stdout: -I, [2020-03-04T14:57:11.123667 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.124127 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic -I, [2020-03-04T14:57:11.124589 #1554] INFO -- py3-windows-10-1903: Function: cmd.run -I, [2020-03-04T14:57:11.125069 #1554] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers -I, [2020-03-04T14:57:11.125556 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.126026 #1554] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:57:11.126511 #1554] INFO -- py3-windows-10-1903: Started: 11:55:26.721675 -I, [2020-03-04T14:57:11.126970 #1554] INFO -- py3-windows-10-1903: Duration: 1546.842 ms -I, [2020-03-04T14:57:11.127439 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.133811 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.134646 #1554] INFO -- py3-windows-10-1903: pid: -I, [2020-03-04T14:57:11.135258 #1554] INFO -- py3-windows-10-1903: 1864 -I, [2020-03-04T14:57:11.135808 #1554] INFO -- py3-windows-10-1903: retcode: -I, [2020-03-04T14:57:11.136327 #1554] INFO -- py3-windows-10-1903: 0 -I, [2020-03-04T14:57:11.136813 #1554] INFO -- py3-windows-10-1903: stderr: -I, [2020-03-04T14:57:11.137276 #1554] INFO -- py3-windows-10-1903: stdout: -I, [2020-03-04T14:57:11.137742 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.138144 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo -I, [2020-03-04T14:57:11.138534 #1554] INFO -- py3-windows-10-1903: Function: cmd.run -I, [2020-03-04T14:57:11.139001 #1554] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers -I, [2020-03-04T14:57:11.139505 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.139983 #1554] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:57:11.140399 #1554] INFO -- py3-windows-10-1903: Started: 11:55:28.268517 -I, [2020-03-04T14:57:11.140756 #1554] INFO -- py3-windows-10-1903: Duration: 1546.941 ms -I, [2020-03-04T14:57:11.141162 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.141662 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.142089 #1554] INFO -- py3-windows-10-1903: pid: -I, [2020-03-04T14:57:11.142555 #1554] INFO -- py3-windows-10-1903: 3244 -I, [2020-03-04T14:57:11.142975 #1554] INFO -- py3-windows-10-1903: retcode: -I, [2020-03-04T14:57:11.143410 #1554] INFO -- py3-windows-10-1903: 0 -I, [2020-03-04T14:57:11.143763 #1554] INFO -- py3-windows-10-1903: stderr: -I, [2020-03-04T14:57:11.144237 #1554] INFO -- py3-windows-10-1903: stdout: -I, [2020-03-04T14:57:11.144706 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.145167 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal -I, [2020-03-04T14:57:11.145533 #1554] INFO -- py3-windows-10-1903: Function: cmd.run -I, [2020-03-04T14:57:11.145974 #1554] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers -I, [2020-03-04T14:57:11.146357 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.146709 #1554] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:57:11.147050 #1554] INFO -- py3-windows-10-1903: Started: 11:55:29.815458 -I, [2020-03-04T14:57:11.147495 #1554] INFO -- py3-windows-10-1903: Duration: 1547.048 ms -I, [2020-03-04T14:57:11.147846 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.148278 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.148705 #1554] INFO -- py3-windows-10-1903: pid: -I, [2020-03-04T14:57:11.149181 #1554] INFO -- py3-windows-10-1903: 6044 -I, [2020-03-04T14:57:11.149540 #1554] INFO -- py3-windows-10-1903: retcode: -I, [2020-03-04T14:57:11.149908 #1554] INFO -- py3-windows-10-1903: 0 -I, [2020-03-04T14:57:11.150259 #1554] INFO -- py3-windows-10-1903: stderr: -I, [2020-03-04T14:57:11.150647 #1554] INFO -- py3-windows-10-1903: stdout: -I, [2020-03-04T14:57:11.151079 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.151515 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 -I, [2020-03-04T14:57:11.151945 #1554] INFO -- py3-windows-10-1903: Function: reg.present -I, [2020-03-04T14:57:11.152386 #1554] INFO -- py3-windows-10-1903: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:57:11.152801 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.153220 #1554] INFO -- py3-windows-10-1903: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:57:11.153627 #1554] INFO -- py3-windows-10-1903: Started: 11:55:31.362506 -I, [2020-03-04T14:57:11.154035 #1554] INFO -- py3-windows-10-1903: Duration: 8187.4 ms -I, [2020-03-04T14:57:11.154381 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.154728 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.155063 #1554] INFO -- py3-windows-10-1903: reg: -I, [2020-03-04T14:57:11.155363 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.155793 #1554] INFO -- py3-windows-10-1903: Added: -I, [2020-03-04T14:57:11.156218 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.156658 #1554] INFO -- py3-windows-10-1903: Entry: -I, [2020-03-04T14:57:11.157104 #1554] INFO -- py3-windows-10-1903: SystemDefaultTlsVersions -I, [2020-03-04T14:57:11.157540 #1554] INFO -- py3-windows-10-1903: Inheritance: -I, [2020-03-04T14:57:11.158047 #1554] INFO -- py3-windows-10-1903: True -I, [2020-03-04T14:57:11.158502 #1554] INFO -- py3-windows-10-1903: Key: -I, [2020-03-04T14:57:11.159006 #1554] INFO -- py3-windows-10-1903: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:57:11.159427 #1554] INFO -- py3-windows-10-1903: Owner: -I, [2020-03-04T14:57:11.159800 #1554] INFO -- py3-windows-10-1903: None -I, [2020-03-04T14:57:11.160254 #1554] INFO -- py3-windows-10-1903: Perms: -I, [2020-03-04T14:57:11.160716 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.161272 #1554] INFO -- py3-windows-10-1903: Deny: -I, [2020-03-04T14:57:11.161775 #1554] INFO -- py3-windows-10-1903: None -I, [2020-03-04T14:57:11.162263 #1554] INFO -- py3-windows-10-1903: Grant: -I, [2020-03-04T14:57:11.162772 #1554] INFO -- py3-windows-10-1903: None -I, [2020-03-04T14:57:11.163259 #1554] INFO -- py3-windows-10-1903: Value: -I, [2020-03-04T14:57:11.163790 #1554] INFO -- py3-windows-10-1903: 1 -I, [2020-03-04T14:57:11.164315 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.164923 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -I, [2020-03-04T14:57:11.165487 #1554] INFO -- py3-windows-10-1903: Function: reg.present -I, [2020-03-04T14:57:11.165993 #1554] INFO -- py3-windows-10-1903: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:57:11.166404 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.166770 #1554] INFO -- py3-windows-10-1903: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:57:11.167232 #1554] INFO -- py3-windows-10-1903: Started: 11:55:39.549906 -I, [2020-03-04T14:57:11.167776 #1554] INFO -- py3-windows-10-1903: Duration: 219.213 ms -I, [2020-03-04T14:57:11.168299 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.168716 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.169106 #1554] INFO -- py3-windows-10-1903: reg: -I, [2020-03-04T14:57:11.169505 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.169881 #1554] INFO -- py3-windows-10-1903: Added: -I, [2020-03-04T14:57:11.170271 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.170621 #1554] INFO -- py3-windows-10-1903: Entry: -I, [2020-03-04T14:57:11.171026 #1554] INFO -- py3-windows-10-1903: SystemDefaultTlsVersions -I, [2020-03-04T14:57:11.171565 #1554] INFO -- py3-windows-10-1903: Inheritance: -I, [2020-03-04T14:57:11.172140 #1554] INFO -- py3-windows-10-1903: True -I, [2020-03-04T14:57:11.172713 #1554] INFO -- py3-windows-10-1903: Key: -I, [2020-03-04T14:57:11.173294 #1554] INFO -- py3-windows-10-1903: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:57:11.173896 #1554] INFO -- py3-windows-10-1903: Owner: -I, [2020-03-04T14:57:11.174448 #1554] INFO -- py3-windows-10-1903: None -I, [2020-03-04T14:57:11.175001 #1554] INFO -- py3-windows-10-1903: Perms: -I, [2020-03-04T14:57:11.175587 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.176143 #1554] INFO -- py3-windows-10-1903: Deny: -I, [2020-03-04T14:57:11.176711 #1554] INFO -- py3-windows-10-1903: None -I, [2020-03-04T14:57:11.177294 #1554] INFO -- py3-windows-10-1903: Grant: -I, [2020-03-04T14:57:11.177860 #1554] INFO -- py3-windows-10-1903: None -I, [2020-03-04T14:57:11.178434 #1554] INFO -- py3-windows-10-1903: Value: -I, [2020-03-04T14:57:11.178991 #1554] INFO -- py3-windows-10-1903: 1 -I, [2020-03-04T14:57:11.179486 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.179984 #1554] INFO -- py3-windows-10-1903: ID: manually.update_git_repo-ng -I, [2020-03-04T14:57:11.180375 #1554] INFO -- py3-windows-10-1903: Function: archive.extracted -I, [2020-03-04T14:57:11.180716 #1554] INFO -- py3-windows-10-1903: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -I, [2020-03-04T14:57:11.181068 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.181542 #1554] INFO -- py3-windows-10-1903: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs -I, [2020-03-04T14:57:11.181909 #1554] INFO -- py3-windows-10-1903: Started: 11:55:39.769119 -I, [2020-03-04T14:57:11.182252 #1554] INFO -- py3-windows-10-1903: Duration: 814.194 ms -I, [2020-03-04T14:57:11.182555 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.182916 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.183268 #1554] INFO -- py3-windows-10-1903: directories_created: -I, [2020-03-04T14:57:11.183617 #1554] INFO -- py3-windows-10-1903: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -I, [2020-03-04T14:57:11.183990 #1554] INFO -- py3-windows-10-1903: extracted_files: -I, [2020-03-04T14:57:11.184364 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ -I, [2020-03-04T14:57:11.184765 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.gitignore -I, [2020-03-04T14:57:11.185205 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis.yml -I, [2020-03-04T14:57:11.185611 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis/ -I, [2020-03-04T14:57:11.186026 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis/requirements.txt -I, [2020-03-04T14:57:11.186412 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis/tests.py -I, [2020-03-04T14:57:11.186739 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/7zip.sls -I, [2020-03-04T14:57:11.187122 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/LICENSE -I, [2020-03-04T14:57:11.187482 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/README.md -I, [2020-03-04T14:57:11.187846 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/_config.yml -I, [2020-03-04T14:57:11.188248 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/activeperl_x64.sls -I, [2020-03-04T14:57:11.188617 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/activeperl_x86.sls -I, [2020-03-04T14:57:11.189015 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobeair.sls -I, [2020-03-04T14:57:11.189364 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobereader-dc-classic.sls -I, [2020-03-04T14:57:11.189765 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobereader-xi.sls -I, [2020-03-04T14:57:11.190187 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobereader.sls -I, [2020-03-04T14:57:11.190620 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobeshockwaveplayer.sls -I, [2020-03-04T14:57:11.195396 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adv-ip-scanner.sls -I, [2020-03-04T14:57:11.195934 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adv-port-scanner.sls -I, [2020-03-04T14:57:11.196394 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/advancedlogging.sls -I, [2020-03-04T14:57:11.196769 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/anydesk-msi.sls -I, [2020-03-04T14:57:11.197110 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/anydesk.sls -I, [2020-03-04T14:57:11.197507 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/applicationrequestrouting.sls -I, [2020-03-04T14:57:11.197987 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/aspnet-mvc1.sls -I, [2020-03-04T14:57:11.198452 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/atom.sls -I, [2020-03-04T14:57:11.198946 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/audacity.sls -I, [2020-03-04T14:57:11.199417 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/ -I, [2020-03-04T14:57:11.199871 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/init.sls -I, [2020-03-04T14:57:11.200274 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/install.cmd -I, [2020-03-04T14:57:11.200695 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/install.ps1 -I, [2020-03-04T14:57:11.201071 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/remove.cmd -I, [2020-03-04T14:57:11.201505 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/autohotkey.sls -I, [2020-03-04T14:57:11.201882 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/autoit.sls -I, [2020-03-04T14:57:11.202295 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/autopsy.sls -I, [2020-03-04T14:57:11.202733 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/awscli.sls -I, [2020-03-04T14:57:11.203151 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/azuredatastudio.sls -I, [2020-03-04T14:57:11.203601 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bandizip.sls -I, [2020-03-04T14:57:11.203987 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/belarc-advisor.sls -I, [2020-03-04T14:57:11.204352 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bginfo4x.sls -I, [2020-03-04T14:57:11.204730 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bitnami-nginxstack.sls -I, [2020-03-04T14:57:11.205086 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bitvise.sls -I, [2020-03-04T14:57:11.205432 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/blender.sls -I, [2020-03-04T14:57:11.205800 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bootracer.sls -I, [2020-03-04T14:57:11.206162 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bulk_extractor.sls -I, [2020-03-04T14:57:11.206521 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bulkrenameutility.sls -I, [2020-03-04T14:57:11.206862 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ccleaner-slim.sls -I, [2020-03-04T14:57:11.207417 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ccleaner.sls -I, [2020-03-04T14:57:11.207981 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cdburnerxp.sls -I, [2020-03-04T14:57:11.208533 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cdroller.sls -I, [2020-03-04T14:57:11.208972 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/check-mk-agent-msi.sls -I, [2020-03-04T14:57:11.209378 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/check-mk-agent.sls -I, [2020-03-04T14:57:11.209763 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/ -I, [2020-03-04T14:57:11.210142 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/init.sls -I, [2020-03-04T14:57:11.210526 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/install.cmd -I, [2020-03-04T14:57:11.210891 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/uninstall.cmd -I, [2020-03-04T14:57:11.211284 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 -I, [2020-03-04T14:57:11.211647 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chrome-rdp.sls -I, [2020-03-04T14:57:11.212041 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chrome.sls -I, [2020-03-04T14:57:11.212419 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/clamav.sls -I, [2020-03-04T14:57:11.212795 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/clamwin.sls -I, [2020-03-04T14:57:11.213194 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/classicshell.sls -I, [2020-03-04T14:57:11.213544 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/clink.sls -I, [2020-03-04T14:57:11.213928 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/conemu.sls -I, [2020-03-04T14:57:11.214417 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cpu-z.sls -I, [2020-03-04T14:57:11.214777 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/curl.sls -I, [2020-03-04T14:57:11.215123 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cyberduck-cli.sls -I, [2020-03-04T14:57:11.215478 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cyberduck-msi.sls -I, [2020-03-04T14:57:11.215910 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cyberduck.sls -I, [2020-03-04T14:57:11.216331 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/defraggler.sls -I, [2020-03-04T14:57:11.216842 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/docs/ -I, [2020-03-04T14:57:11.217353 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/docs/ReadMe.md -I, [2020-03-04T14:57:11.217896 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/dotnet.sls -I, [2020-03-04T14:57:11.218460 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/dropbox.sls -I, [2020-03-04T14:57:11.218991 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/duplicati.sls -I, [2020-03-04T14:57:11.219503 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/dvdstyler.sls -I, [2020-03-04T14:57:11.220023 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/echo-desktop.sls -I, [2020-03-04T14:57:11.220570 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/eea.sls -I, [2020-03-04T14:57:11.221237 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/emet.sls -I, [2020-03-04T14:57:11.221937 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/emsisoft-anti-malware.sls -I, [2020-03-04T14:57:11.222619 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/eraser.sls -I, [2020-03-04T14:57:11.223299 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/erlang/ -I, [2020-03-04T14:57:11.223960 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/erlang/init.sls -I, [2020-03-04T14:57:11.224679 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/erlang/install.cmd -I, [2020-03-04T14:57:11.225395 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/evernote.sls -I, [2020-03-04T14:57:11.226093 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/fiddler.sls -I, [2020-03-04T14:57:11.226941 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/ -I, [2020-03-04T14:57:11.227685 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/init.sls -I, [2020-03-04T14:57:11.228415 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/install.cmd -I, [2020-03-04T14:57:11.229161 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/install.ps1 -I, [2020-03-04T14:57:11.229739 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/remove.cmd -I, [2020-03-04T14:57:11.230252 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filehippo-app-manager.sls -I, [2020-03-04T14:57:11.230694 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filezilla.sls -I, [2020-03-04T14:57:11.231642 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox-esr_x64.sls -I, [2020-03-04T14:57:11.232367 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox-esr_x86.sls -I, [2020-03-04T14:57:11.233285 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox_x64.sls -I, [2020-03-04T14:57:11.234266 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox_x86.sls -I, [2020-03-04T14:57:11.235131 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/ -I, [2020-03-04T14:57:11.236024 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/init.sls -I, [2020-03-04T14:57:11.236864 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/install.cmd -I, [2020-03-04T14:57:11.237652 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/install.ps1 -I, [2020-03-04T14:57:11.238369 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/remove.cmd -I, [2020-03-04T14:57:11.238924 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gedit.sls -I, [2020-03-04T14:57:11.239429 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gimp.sls -I, [2020-03-04T14:57:11.240099 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/git-extensions.sls -I, [2020-03-04T14:57:11.240744 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/git.sls -I, [2020-03-04T14:57:11.241300 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls -I, [2020-03-04T14:57:11.241968 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gnucash.sls -I, [2020-03-04T14:57:11.242506 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/golang.sls -I, [2020-03-04T14:57:11.243045 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/goodsync.sls -I, [2020-03-04T14:57:11.243559 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gow.sls -I, [2020-03-04T14:57:11.244108 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win-light.sls -I, [2020-03-04T14:57:11.244700 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win-vanilla.sls -I, [2020-03-04T14:57:11.245229 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win/ -I, [2020-03-04T14:57:11.245878 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win/init.sls -I, [2020-03-04T14:57:11.246402 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win/silent.ini -I, [2020-03-04T14:57:11.246953 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/graylog-collector-sidecar.sls -I, [2020-03-04T14:57:11.247541 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/grepwin.sls -I, [2020-03-04T14:57:11.248064 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gvim.sls -I, [2020-03-04T14:57:11.248559 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/handbrake.sls -I, [2020-03-04T14:57:11.249062 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/ -I, [2020-03-04T14:57:11.249575 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp -I, [2020-03-04T14:57:11.250116 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/init.sls -I, [2020-03-04T14:57:11.250642 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/install.cmd -I, [2020-03-04T14:57:11.251115 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/install.ps1 -I, [2020-03-04T14:57:11.251600 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/remove.cmd -I, [2020-03-04T14:57:11.252074 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/hipchat.sls -I, [2020-03-04T14:57:11.252578 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/hostsfileeditor.sls -I, [2020-03-04T14:57:11.253044 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/hwinfo.sls -I, [2020-03-04T14:57:11.253646 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ice.sls -I, [2020-03-04T14:57:11.254161 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/icecast.sls -I, [2020-03-04T14:57:11.254617 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/icloud.sls -I, [2020-03-04T14:57:11.255057 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/iismediaservices.sls -I, [2020-03-04T14:57:11.255546 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/influx-capacitor.sls -I, [2020-03-04T14:57:11.255999 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/inkscape.sls -I, [2020-03-04T14:57:11.256525 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/intellij-community.sls -I, [2020-03-04T14:57:11.257034 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/intellij-ultimate.sls -I, [2020-03-04T14:57:11.257526 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/internet-evidence-finder.sls -I, [2020-03-04T14:57:11.257992 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/irfanview-plugins.sls -I, [2020-03-04T14:57:11.258507 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/irfanview.sls -I, [2020-03-04T14:57:11.258986 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/isapirewrite-lite.sls -I, [2020-03-04T14:57:11.259497 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/itunes.sls -I, [2020-03-04T14:57:11.259945 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jdk8.sls -I, [2020-03-04T14:57:11.260429 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jre.sls -I, [2020-03-04T14:57:11.265859 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jre8.sls -I, [2020-03-04T14:57:11.266662 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jungledisk-server-management.sls -I, [2020-03-04T14:57:11.267271 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jungledisk-server.sls -I, [2020-03-04T14:57:11.267742 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jungledisk-workgroup.sls -I, [2020-03-04T14:57:11.268225 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/kdiff3.sls -I, [2020-03-04T14:57:11.268719 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/keepass-2x.sls -I, [2020-03-04T14:57:11.269257 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/keepass.sls -I, [2020-03-04T14:57:11.269751 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/lastpass.sls -I, [2020-03-04T14:57:11.270384 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/lazarus.sls -I, [2020-03-04T14:57:11.270973 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/libreoffice.sls -I, [2020-03-04T14:57:11.271485 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/logparser.sls -I, [2020-03-04T14:57:11.272116 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/maas360bootanalyzer.sls -I, [2020-03-04T14:57:11.272659 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/malwarebytes.sls -I, [2020-03-04T14:57:11.273298 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mariadb.sls -I, [2020-03-04T14:57:11.273878 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mercurial.sls -I, [2020-03-04T14:57:11.274420 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/messageanalyzer.sls -I, [2020-03-04T14:57:11.274978 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/ -I, [2020-03-04T14:57:11.275513 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp -I, [2020-03-04T14:57:11.276149 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/init.sls -I, [2020-03-04T14:57:11.276659 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/install.cmd -I, [2020-03-04T14:57:11.277149 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/install.ps1 -I, [2020-03-04T14:57:11.277759 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/remove.cmd -I, [2020-03-04T14:57:11.278385 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/microsoft-build-tools.sls -I, [2020-03-04T14:57:11.278991 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mikogo.sls -I, [2020-03-04T14:57:11.279520 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/miktex-basic.sls -I, [2020-03-04T14:57:11.280024 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mongodb.sls -I, [2020-03-04T14:57:11.280469 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-mbsa.sls -I, [2020-03-04T14:57:11.281873 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls -I, [2020-03-04T14:57:11.282526 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls -I, [2020-03-04T14:57:11.283200 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls -I, [2020-03-04T14:57:11.283796 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls -I, [2020-03-04T14:57:11.284368 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls -I, [2020-03-04T14:57:11.284896 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls -I, [2020-03-04T14:57:11.285437 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls -I, [2020-03-04T14:57:11.285984 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls -I, [2020-03-04T14:57:11.286570 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls -I, [2020-03-04T14:57:11.287125 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls -I, [2020-03-04T14:57:11.287708 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls -I, [2020-03-04T14:57:11.288269 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls -I, [2020-03-04T14:57:11.288853 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls -I, [2020-03-04T14:57:11.289401 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls -I, [2020-03-04T14:57:11.290077 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls -I, [2020-03-04T14:57:11.290716 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls -I, [2020-03-04T14:57:11.291278 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls -I, [2020-03-04T14:57:11.291817 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls -I, [2020-03-04T14:57:11.292340 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls -I, [2020-03-04T14:57:11.292916 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls -I, [2020-03-04T14:57:11.293542 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls -I, [2020-03-04T14:57:11.294082 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls -I, [2020-03-04T14:57:11.294577 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls -I, [2020-03-04T14:57:11.295206 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls -I, [2020-03-04T14:57:11.295774 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls -I, [2020-03-04T14:57:11.296280 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mucommander.sls -I, [2020-03-04T14:57:11.296767 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mysql-essential.sls -I, [2020-03-04T14:57:11.297304 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mysql-installer-community.sls -I, [2020-03-04T14:57:11.297811 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mysql-workbench.sls -I, [2020-03-04T14:57:11.298441 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/never10.sls -I, [2020-03-04T14:57:11.298980 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/newrelic-infra.sls -I, [2020-03-04T14:57:11.299594 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nextcloud-client.sls -I, [2020-03-04T14:57:11.300146 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nmap.sls -I, [2020-03-04T14:57:11.300672 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/node.js-lts.sls -I, [2020-03-04T14:57:11.301237 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/node.js.sls -I, [2020-03-04T14:57:11.301834 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nomacs.sls -I, [2020-03-04T14:57:11.302446 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/npp.sls -I, [2020-03-04T14:57:11.302998 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nsclient.sls -I, [2020-03-04T14:57:11.303493 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nsis.sls -I, [2020-03-04T14:57:11.304015 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ntp.sls -I, [2020-03-04T14:57:11.304553 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nunit-console.sls -I, [2020-03-04T14:57:11.305087 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nxlog.sls -I, [2020-03-04T14:57:11.305595 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/octopus-tentacle.sls -I, [2020-03-04T14:57:11.306107 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/openlp.sls -I, [2020-03-04T14:57:11.306611 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/openoffice.sls -I, [2020-03-04T14:57:11.307150 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/openvpn.sls -I, [2020-03-04T14:57:11.307727 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/osquery.sls -I, [2020-03-04T14:57:11.308261 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ossec-agent.sls -I, [2020-03-04T14:57:11.308799 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/owncloud.sls -I, [2020-03-04T14:57:11.309382 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/ -I, [2020-03-04T14:57:11.309891 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/init.sls -I, [2020-03-04T14:57:11.310507 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/install.cmd -I, [2020-03-04T14:57:11.311135 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/install.ps1 -I, [2020-03-04T14:57:11.311697 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/remove.cmd -I, [2020-03-04T14:57:11.312291 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pandoc.sls -I, [2020-03-04T14:57:11.312794 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/parallels-client-15.sls -I, [2020-03-04T14:57:11.313292 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pass4win.sls -I, [2020-03-04T14:57:11.313837 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/passware-kit-agent.sls -I, [2020-03-04T14:57:11.314341 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/passware-kit-forensic.sls -I, [2020-03-04T14:57:11.314855 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/patchmypc-free.sls -I, [2020-03-04T14:57:11.315351 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pdf24creator.sls -I, [2020-03-04T14:57:11.315970 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pdfcreator.sls -I, [2020-03-04T14:57:11.316522 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/peazip.sls -I, [2020-03-04T14:57:11.317082 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pgadmin4.sls -I, [2020-03-04T14:57:11.317745 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pgina.sls -I, [2020-03-04T14:57:11.318482 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pidgin.sls -I, [2020-03-04T14:57:11.319204 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/postgresql.sls -I, [2020-03-04T14:57:11.319934 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/powerbi-desktop.sls -I, [2020-03-04T14:57:11.320642 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/powershell-core.sls -I, [2020-03-04T14:57:11.321382 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls -I, [2020-03-04T14:57:11.322092 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/putty.sls -I, [2020-03-04T14:57:11.322822 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/ -I, [2020-03-04T14:57:11.323512 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/init.sls -I, [2020-03-04T14:57:11.324214 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/silent.config -I, [2020-03-04T14:57:11.324994 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python2_x64.sls -I, [2020-03-04T14:57:11.325705 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python2_x86.sls -I, [2020-03-04T14:57:11.326465 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python3_x64.sls -I, [2020-03-04T14:57:11.327226 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python3_x86.sls -I, [2020-03-04T14:57:11.327945 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/qemu.sls -I, [2020-03-04T14:57:11.328666 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/queueexplorerpro.sls -I, [2020-03-04T14:57:11.329353 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/quicktime.sls -I, [2020-03-04T14:57:11.330055 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rabbitmq.sls -I, [2020-03-04T14:57:11.330795 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls -I, [2020-03-04T14:57:11.331494 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rakudo-star_x64.sls -I, [2020-03-04T14:57:11.332171 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rasclient.sls -I, [2020-03-04T14:57:11.332849 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rdcman.sls -I, [2020-03-04T14:57:11.333518 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rocketchat.sls -I, [2020-03-04T14:57:11.334134 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rubyinstaller_x64.sls -I, [2020-03-04T14:57:11.334609 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rubyinstaller_x86.sls -I, [2020-03-04T14:57:11.335080 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/salt-minion-py2.sls -I, [2020-03-04T14:57:11.335521 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/salt-minion-py3.sls -I, [2020-03-04T14:57:11.335975 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sandboxie.sls -I, [2020-03-04T14:57:11.336452 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/scaleout.sls -I, [2020-03-04T14:57:11.336901 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/secunia.psi.sls -I, [2020-03-04T14:57:11.337503 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sensu.sls -I, [2020-03-04T14:57:11.338014 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sharpdevelop.sls -I, [2020-03-04T14:57:11.338489 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/skitch.sls -I, [2020-03-04T14:57:11.338974 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/skype-msi.sls -I, [2020-03-04T14:57:11.344171 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/skype.sls -I, [2020-03-04T14:57:11.344846 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/slack-machine-msi.sls -I, [2020-03-04T14:57:11.345362 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/slack-user-msi.sls -I, [2020-03-04T14:57:11.345856 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/slack.sls -I, [2020-03-04T14:57:11.346342 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/smartmontools.sls -I, [2020-03-04T14:57:11.346800 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/snmptools.sls -I, [2020-03-04T14:57:11.347281 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/soapui.sls -I, [2020-03-04T14:57:11.347740 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/software-informer.sls -I, [2020-03-04T14:57:11.348235 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sourcetree.sls -I, [2020-03-04T14:57:11.348709 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/spybot-anti-beacon.sls -I, [2020-03-04T14:57:11.349191 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/spybot.sls -I, [2020-03-04T14:57:11.349628 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sscserv-free.sls -I, [2020-03-04T14:57:11.350130 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stayawake/ -I, [2020-03-04T14:57:11.350561 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stayawake/init.sls -I, [2020-03-04T14:57:11.351059 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stayawake/install.cmd -I, [2020-03-04T14:57:11.351532 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/steam.sls -I, [2020-03-04T14:57:11.352049 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stellarium.sls -I, [2020-03-04T14:57:11.353346 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/strawberryperl_x64.sls -I, [2020-03-04T14:57:11.354228 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/strawberryperl_x86.sls -I, [2020-03-04T14:57:11.354758 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stunnel.sls -I, [2020-03-04T14:57:11.355224 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/subinacl.sls -I, [2020-03-04T14:57:11.355636 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sumatrapdf.sls -I, [2020-03-04T14:57:11.356058 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/svn.sls -I, [2020-03-04T14:57:11.356525 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/teamviewer.sls -I, [2020-03-04T14:57:11.357035 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/teamviewer_host.sls -I, [2020-03-04T14:57:11.357547 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/teracopy.sls -I, [2020-03-04T14:57:11.358218 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texmaker.sls -I, [2020-03-04T14:57:11.358883 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texniccenter.sls -I, [2020-03-04T14:57:11.359520 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texstudio.sls -I, [2020-03-04T14:57:11.360070 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texworks.sls -I, [2020-03-04T14:57:11.360538 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/thunderbird.sls -I, [2020-03-04T14:57:11.361026 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tightvnc.sls -I, [2020-03-04T14:57:11.361484 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/todotxt.net.sls -I, [2020-03-04T14:57:11.361932 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/todour.sls -I, [2020-03-04T14:57:11.362389 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-bzr.sls -I, [2020-03-04T14:57:11.362859 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-git.sls -I, [2020-03-04T14:57:11.363285 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-hg.sls -I, [2020-03-04T14:57:11.363726 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-svn.sls -I, [2020-03-04T14:57:11.364176 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/truecrypt.sls -I, [2020-03-04T14:57:11.364617 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ultradefrag.sls -I, [2020-03-04T14:57:11.365021 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/urlrewrite.sls -I, [2020-03-04T14:57:11.365446 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/usbdlm.sls -I, [2020-03-04T14:57:11.365861 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vagrant.sls -I, [2020-03-04T14:57:11.366275 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vcforpython27.sls -I, [2020-03-04T14:57:11.476195 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vcxsrv.sls -I, [2020-03-04T14:57:11.476763 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/verysleepy.sls -I, [2020-03-04T14:57:11.477252 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/veyon.sls -I, [2020-03-04T14:57:11.477702 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/virtualbox.sls -I, [2020-03-04T14:57:11.478160 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/viscosity.sls -I, [2020-03-04T14:57:11.478611 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vivaldi.sls -I, [2020-03-04T14:57:11.479063 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vlc.sls -I, [2020-03-04T14:57:11.479516 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vs-community.sls -I, [2020-03-04T14:57:11.479985 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vs_remotetools_2017.sls -I, [2020-03-04T14:57:11.480429 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vscode.sls -I, [2020-03-04T14:57:11.480850 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vsee.sls -I, [2020-03-04T14:57:11.481267 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wamp-server-3.sls -I, [2020-03-04T14:57:11.481660 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wamp-stack.sls -I, [2020-03-04T14:57:11.482071 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/webdeploy.sls -I, [2020-03-04T14:57:11.482498 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/webplatforminstaller.sls -I, [2020-03-04T14:57:11.482930 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/win-app-manager.sls -I, [2020-03-04T14:57:11.483347 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/windirstat.sls -I, [2020-03-04T14:57:11.483833 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winhttpcertcfg.sls -I, [2020-03-04T14:57:11.484321 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/ -I, [2020-03-04T14:57:11.484743 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/init.sls -I, [2020-03-04T14:57:11.485180 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/install.cmd -I, [2020-03-04T14:57:11.485584 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/install.ps1 -I, [2020-03-04T14:57:11.486078 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/remove.cmd -I, [2020-03-04T14:57:11.486518 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winmerge.sls -I, [2020-03-04T14:57:11.486952 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winmtr.sls -I, [2020-03-04T14:57:11.487392 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winpcap.sls -I, [2020-03-04T14:57:11.487854 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winrar.sls -I, [2020-03-04T14:57:11.488279 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winscp.sls -I, [2020-03-04T14:57:11.488702 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wireshark.sls -I, [2020-03-04T14:57:11.489117 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/ -I, [2020-03-04T14:57:11.489530 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/README.md -I, [2020-03-04T14:57:11.489971 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/answer.txt -I, [2020-03-04T14:57:11.490400 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/init.sls -I, [2020-03-04T14:57:11.490786 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/majsetup.reg -I, [2020-03-04T14:57:11.491195 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wscc.sls -I, [2020-03-04T14:57:11.491582 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wufuc.sls -I, [2020-03-04T14:57:11.492036 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/xampp.sls -I, [2020-03-04T14:57:11.492460 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/xming.sls -I, [2020-03-04T14:57:11.492903 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/yubikey-manager.sls -I, [2020-03-04T14:57:11.493310 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/yubikey-personalization-tool.sls -I, [2020-03-04T14:57:11.493745 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zabbix-agent.sls -I, [2020-03-04T14:57:11.494181 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/ -I, [2020-03-04T14:57:11.494579 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/init.sls -I, [2020-03-04T14:57:11.495023 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic -I, [2020-03-04T14:57:11.495470 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic -I, [2020-03-04T14:57:11.495870 #1554] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zoom.sls -I, [2020-03-04T14:57:11.496243 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.496639 #1554] INFO -- py3-windows-10-1903: ID: rename-extract -I, [2020-03-04T14:57:11.497033 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.497415 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.497788 #1554] INFO -- py3-windows-10-1903: Comment: file.rename: True -I, [2020-03-04T14:57:11.498188 #1554] INFO -- py3-windows-10-1903: Started: 11:55:40.583313 -I, [2020-03-04T14:57:11.498595 #1554] INFO -- py3-windows-10-1903: Duration: 14.773 ms -I, [2020-03-04T14:57:11.498996 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.499375 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.499762 #1554] INFO -- py3-windows-10-1903: file.rename: -I, [2020-03-04T14:57:11.500109 #1554] INFO -- py3-windows-10-1903: True -I, [2020-03-04T14:57:11.500478 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.500861 #1554] INFO -- py3-windows-10-1903: ID: pkg.refresh_db -I, [2020-03-04T14:57:11.501259 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.501674 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.502040 #1554] INFO -- py3-windows-10-1903: Comment: check_cmd determined the state succeeded -I, [2020-03-04T14:57:11.502412 #1554] INFO -- py3-windows-10-1903: Started: 11:55:40.598086 -I, [2020-03-04T14:57:11.502793 #1554] INFO -- py3-windows-10-1903: Duration: 7436.119 ms -I, [2020-03-04T14:57:11.503130 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.503503 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.503873 #1554] INFO -- py3-windows-10-1903: pkg.refresh_db: -I, [2020-03-04T14:57:11.504224 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.504588 #1554] INFO -- py3-windows-10-1903: failed: -I, [2020-03-04T14:57:11.504954 #1554] INFO -- py3-windows-10-1903: 0 -I, [2020-03-04T14:57:11.505312 #1554] INFO -- py3-windows-10-1903: success: -I, [2020-03-04T14:57:11.505704 #1554] INFO -- py3-windows-10-1903: 298 -I, [2020-03-04T14:57:11.506068 #1554] INFO -- py3-windows-10-1903: total: -I, [2020-03-04T14:57:11.506415 #1554] INFO -- py3-windows-10-1903: 298 -I, [2020-03-04T14:57:11.506788 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.507150 #1554] INFO -- py3-windows-10-1903: ID: git -I, [2020-03-04T14:57:11.507550 #1554] INFO -- py3-windows-10-1903: Function: pkg.installed -I, [2020-03-04T14:57:11.507908 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.508255 #1554] INFO -- py3-windows-10-1903: Comment: The following packages were installed/updated: git -I, [2020-03-04T14:57:11.508635 #1554] INFO -- py3-windows-10-1903: Started: 11:55:48.052983 -I, [2020-03-04T14:57:11.509006 #1554] INFO -- py3-windows-10-1903: Duration: 18560.592 ms -I, [2020-03-04T14:57:11.509393 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.509804 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.510204 #1554] INFO -- py3-windows-10-1903: git: -I, [2020-03-04T14:57:11.510611 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.510956 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.511364 #1554] INFO -- py3-windows-10-1903: 2.23.0.windows.1 -I, [2020-03-04T14:57:11.511758 #1554] INFO -- py3-windows-10-1903: old: -I, [2020-03-04T14:57:11.512254 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.512715 #1554] INFO -- py3-windows-10-1903: ID: kdiff3 -I, [2020-03-04T14:57:11.513127 #1554] INFO -- py3-windows-10-1903: Function: pkg.installed -I, [2020-03-04T14:57:11.513516 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.513895 #1554] INFO -- py3-windows-10-1903: Comment: The following packages were installed/updated: kdiff3 -I, [2020-03-04T14:57:11.514274 #1554] INFO -- py3-windows-10-1903: Started: 11:56:06.613575 -I, [2020-03-04T14:57:11.514658 #1554] INFO -- py3-windows-10-1903: Duration: 9139.736 ms -I, [2020-03-04T14:57:11.515037 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.519832 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.520498 #1554] INFO -- py3-windows-10-1903: kdiff3: -I, [2020-03-04T14:57:11.520970 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.521406 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.521819 #1554] INFO -- py3-windows-10-1903: Not Found -I, [2020-03-04T14:57:11.522221 #1554] INFO -- py3-windows-10-1903: old: -I, [2020-03-04T14:57:11.522580 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.522978 #1554] INFO -- py3-windows-10-1903: ID: 7zip -I, [2020-03-04T14:57:11.523380 #1554] INFO -- py3-windows-10-1903: Function: pkg.installed -I, [2020-03-04T14:57:11.523761 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.524144 #1554] INFO -- py3-windows-10-1903: Comment: The following packages were installed/updated: 7zip=18.06.00.0 -I, [2020-03-04T14:57:11.524526 #1554] INFO -- py3-windows-10-1903: Started: 11:56:15.769852 -I, [2020-03-04T14:57:11.524943 #1554] INFO -- py3-windows-10-1903: Duration: 9701.71 ms -I, [2020-03-04T14:57:11.525317 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.525695 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.526077 #1554] INFO -- py3-windows-10-1903: 7zip: -I, [2020-03-04T14:57:11.526498 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.526969 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.527557 #1554] INFO -- py3-windows-10-1903: 18.06.00.0 -I, [2020-03-04T14:57:11.527996 #1554] INFO -- py3-windows-10-1903: old: -I, [2020-03-04T14:57:11.528545 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.528970 #1554] INFO -- py3-windows-10-1903: ID: windows_environment.refresh.path -I, [2020-03-04T14:57:11.529385 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.529757 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.530174 #1554] INFO -- py3-windows-10-1903: Comment: windows_environment.refresh: Success -I, [2020-03-04T14:57:11.530583 #1554] INFO -- py3-windows-10-1903: Started: 11:56:25.471562 -I, [2020-03-04T14:57:11.530972 #1554] INFO -- py3-windows-10-1903: Duration: 47.923 ms -I, [2020-03-04T14:57:11.531320 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.531732 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.532122 #1554] INFO -- py3-windows-10-1903: windows_environment.refresh: -I, [2020-03-04T14:57:11.532501 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.532927 #1554] INFO -- py3-windows-10-1903: PATH: -I, [2020-03-04T14:57:11.533855 #1554] INFO -- py3-windows-10-1903: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd -I, [2020-03-04T14:57:11.534269 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.534665 #1554] INFO -- py3-windows-10-1903: ID: chocolatey.bootstrap -I, [2020-03-04T14:57:11.535069 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.535447 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.535859 #1554] INFO -- py3-windows-10-1903: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T14:57:11.536174 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.536577 #1554] INFO -- py3-windows-10-1903: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T14:57:11.536958 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.537327 #1554] INFO -- py3-windows-10-1903: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T14:57:11.537701 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.538091 #1554] INFO -- py3-windows-10-1903: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T14:57:11.538443 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.538825 #1554] INFO -- py3-windows-10-1903: Installing chocolatey on this machine -I, [2020-03-04T14:57:11.539138 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.539539 #1554] INFO -- py3-windows-10-1903: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T14:57:11.539962 #1554] INFO -- py3-windows-10-1903: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T14:57:11.540310 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.540705 #1554] INFO -- py3-windows-10-1903: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T14:57:11.541082 #1554] INFO -- py3-windows-10-1903: before you can use choco. -I, [2020-03-04T14:57:11.541470 #1554] INFO -- py3-windows-10-1903: Restricting write permissions to Administrators -I, [2020-03-04T14:57:11.541833 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.542212 #1554] INFO -- py3-windows-10-1903: We are setting up the Chocolatey package repository. -I, [2020-03-04T14:57:11.542583 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.542942 #1554] INFO -- py3-windows-10-1903: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T14:57:11.543302 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.543721 #1554] INFO -- py3-windows-10-1903: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T14:57:11.544060 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.544485 #1554] INFO -- py3-windows-10-1903: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T14:57:11.544858 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.545282 #1554] INFO -- py3-windows-10-1903: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T14:57:11.545651 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.545999 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.546344 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.546749 #1554] INFO -- py3-windows-10-1903: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T14:57:11.547079 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.547458 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.547826 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.548285 #1554] INFO -- py3-windows-10-1903: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T14:57:11.548860 #1554] INFO -- py3-windows-10-1903: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T14:57:11.549369 #1554] INFO -- py3-windows-10-1903: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T14:57:11.549825 #1554] INFO -- py3-windows-10-1903: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T14:57:11.550260 #1554] INFO -- py3-windows-10-1903: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T14:57:11.550685 #1554] INFO -- py3-windows-10-1903: Attempting to locate it from bootstrapper. -I, [2020-03-04T14:57:11.551049 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.551486 #1554] INFO -- py3-windows-10-1903: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T14:57:11.551931 #1554] INFO -- py3-windows-10-1903: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T14:57:11.552292 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.552711 #1554] INFO -- py3-windows-10-1903: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T14:57:11.553142 #1554] INFO -- py3-windows-10-1903: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T14:57:11.553598 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.553979 #1554] INFO -- py3-windows-10-1903: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T14:57:11.554383 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.554747 #1554] INFO -- py3-windows-10-1903: Run choco /? for a list of functions. -I, [2020-03-04T14:57:11.555065 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.555480 #1554] INFO -- py3-windows-10-1903: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T14:57:11.555810 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.556219 #1554] INFO -- py3-windows-10-1903: first prior to using choco. -I, [2020-03-04T14:57:11.556583 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.556970 #1554] INFO -- py3-windows-10-1903: Ensuring chocolatey commands are on the path -I, [2020-03-04T14:57:11.557335 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.557692 #1554] INFO -- py3-windows-10-1903: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T14:57:11.558109 #1554] INFO -- py3-windows-10-1903: Started: 11:56:25.519485 -I, [2020-03-04T14:57:11.558494 #1554] INFO -- py3-windows-10-1903: Duration: 22405.93 ms -I, [2020-03-04T14:57:11.558833 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.559248 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.559623 #1554] INFO -- py3-windows-10-1903: chocolatey.bootstrap: -I, [2020-03-04T14:57:11.560035 #1554] INFO -- py3-windows-10-1903: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T14:57:11.560439 #1554] INFO -- py3-windows-10-1903: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T14:57:11.560853 #1554] INFO -- py3-windows-10-1903: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T14:57:11.561286 #1554] INFO -- py3-windows-10-1903: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T14:57:11.561665 #1554] INFO -- py3-windows-10-1903: Installing chocolatey on this machine -I, [2020-03-04T14:57:11.562108 #1554] INFO -- py3-windows-10-1903: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T14:57:11.562518 #1554] INFO -- py3-windows-10-1903: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T14:57:11.562932 #1554] INFO -- py3-windows-10-1903: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T14:57:11.563341 #1554] INFO -- py3-windows-10-1903: before you can use choco. -I, [2020-03-04T14:57:11.563726 #1554] INFO -- py3-windows-10-1903: Restricting write permissions to Administrators -I, [2020-03-04T14:57:11.564146 #1554] INFO -- py3-windows-10-1903: We are setting up the Chocolatey package repository. -I, [2020-03-04T14:57:11.569283 #1554] INFO -- py3-windows-10-1903: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T14:57:11.569743 #1554] INFO -- py3-windows-10-1903: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T14:57:11.570160 #1554] INFO -- py3-windows-10-1903: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T14:57:11.570576 #1554] INFO -- py3-windows-10-1903: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T14:57:11.570976 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.571384 #1554] INFO -- py3-windows-10-1903: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T14:57:11.571802 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.572209 #1554] INFO -- py3-windows-10-1903: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T14:57:11.572617 #1554] INFO -- py3-windows-10-1903: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T14:57:11.573017 #1554] INFO -- py3-windows-10-1903: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T14:57:11.573391 #1554] INFO -- py3-windows-10-1903: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T14:57:11.573807 #1554] INFO -- py3-windows-10-1903: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T14:57:11.574232 #1554] INFO -- py3-windows-10-1903: Attempting to locate it from bootstrapper. -I, [2020-03-04T14:57:11.574635 #1554] INFO -- py3-windows-10-1903: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T14:57:11.575061 #1554] INFO -- py3-windows-10-1903: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T14:57:11.575474 #1554] INFO -- py3-windows-10-1903: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T14:57:11.575866 #1554] INFO -- py3-windows-10-1903: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T14:57:11.576274 #1554] INFO -- py3-windows-10-1903: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T14:57:11.576685 #1554] INFO -- py3-windows-10-1903: Run choco /? for a list of functions. -I, [2020-03-04T14:57:11.577107 #1554] INFO -- py3-windows-10-1903: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T14:57:11.577559 #1554] INFO -- py3-windows-10-1903: first prior to using choco. -I, [2020-03-04T14:57:11.577960 #1554] INFO -- py3-windows-10-1903: Ensuring chocolatey commands are on the path -I, [2020-03-04T14:57:11.578334 #1554] INFO -- py3-windows-10-1903: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T14:57:11.578761 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.579125 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.chocolatey.notepadplusplus -I, [2020-03-04T14:57:11.579517 #1554] INFO -- py3-windows-10-1903: Function: chocolatey.installed -I, [2020-03-04T14:57:11.579932 #1554] INFO -- py3-windows-10-1903: Name: notepadplusplus -I, [2020-03-04T14:57:11.580312 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.580693 #1554] INFO -- py3-windows-10-1903: Comment: -I, [2020-03-04T14:57:11.581095 #1554] INFO -- py3-windows-10-1903: Started: 11:56:47.925415 -I, [2020-03-04T14:57:11.581607 #1554] INFO -- py3-windows-10-1903: Duration: 10906.232 ms -I, [2020-03-04T14:57:11.582249 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.582882 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.583467 #1554] INFO -- py3-windows-10-1903: notepadplusplus: -I, [2020-03-04T14:57:11.584020 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.584532 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.585018 #1554] INFO -- py3-windows-10-1903: - 7.8.4 -I, [2020-03-04T14:57:11.585549 #1554] INFO -- py3-windows-10-1903: old: -I, [2020-03-04T14:57:11.586008 #1554] INFO -- py3-windows-10-1903: notepadplusplus.install: -I, [2020-03-04T14:57:11.586417 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.586805 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.587227 #1554] INFO -- py3-windows-10-1903: - 7.8.4 -I, [2020-03-04T14:57:11.587637 #1554] INFO -- py3-windows-10-1903: old: -I, [2020-03-04T14:57:11.588033 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.588456 #1554] INFO -- py3-windows-10-1903: ID: windows.system.packages.chocolatey.windirstat -I, [2020-03-04T14:57:11.588975 #1554] INFO -- py3-windows-10-1903: Function: chocolatey.installed -I, [2020-03-04T14:57:11.589410 #1554] INFO -- py3-windows-10-1903: Name: windirstat -I, [2020-03-04T14:57:11.589820 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.590221 #1554] INFO -- py3-windows-10-1903: Comment: -I, [2020-03-04T14:57:11.590637 #1554] INFO -- py3-windows-10-1903: Started: 11:56:58.831647 -I, [2020-03-04T14:57:11.591128 #1554] INFO -- py3-windows-10-1903: Duration: 5514.968 ms -I, [2020-03-04T14:57:11.591522 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.591905 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.592331 #1554] INFO -- py3-windows-10-1903: windirstat: -I, [2020-03-04T14:57:11.592756 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.593160 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.593581 #1554] INFO -- py3-windows-10-1903: - 1.1.2.20161210 -I, [2020-03-04T14:57:11.593969 #1554] INFO -- py3-windows-10-1903: old: -I, [2020-03-04T14:57:11.594394 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.594790 #1554] INFO -- py3-windows-10-1903: ID: windows.system.desktop.optional_features.installed.TelnetClient -I, [2020-03-04T14:57:11.595214 #1554] INFO -- py3-windows-10-1903: Function: dism.feature_installed -I, [2020-03-04T14:57:11.595624 #1554] INFO -- py3-windows-10-1903: Name: TelnetClient -I, [2020-03-04T14:57:11.596017 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.596420 #1554] INFO -- py3-windows-10-1903: Comment: Installed TelnetClient -I, [2020-03-04T14:57:11.596798 #1554] INFO -- py3-windows-10-1903: Started: 11:57:04.346615 -I, [2020-03-04T14:57:11.597204 #1554] INFO -- py3-windows-10-1903: Duration: 6078.279 ms -I, [2020-03-04T14:57:11.597603 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.598002 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.598529 #1554] INFO -- py3-windows-10-1903: feature: -I, [2020-03-04T14:57:11.599102 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.599648 #1554] INFO -- py3-windows-10-1903: new: -I, [2020-03-04T14:57:11.600179 #1554] INFO -- py3-windows-10-1903: TelnetClient -I, [2020-03-04T14:57:11.600721 #1554] INFO -- py3-windows-10-1903: pid: -I, [2020-03-04T14:57:11.601192 #1554] INFO -- py3-windows-10-1903: 4596 -I, [2020-03-04T14:57:11.601618 #1554] INFO -- py3-windows-10-1903: retcode: -I, [2020-03-04T14:57:11.602056 #1554] INFO -- py3-windows-10-1903: 0 -I, [2020-03-04T14:57:11.602486 #1554] INFO -- py3-windows-10-1903: stderr: -I, [2020-03-04T14:57:11.602922 #1554] INFO -- py3-windows-10-1903: stdout: -I, [2020-03-04T14:57:11.603376 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.603931 #1554] INFO -- py3-windows-10-1903: ID: windows.module.system.reboot -I, [2020-03-04T14:57:11.604494 #1554] INFO -- py3-windows-10-1903: Function: module.run -I, [2020-03-04T14:57:11.605016 #1554] INFO -- py3-windows-10-1903: Result: True -I, [2020-03-04T14:57:11.605449 #1554] INFO -- py3-windows-10-1903: Comment: system.reboot: True -I, [2020-03-04T14:57:11.605817 #1554] INFO -- py3-windows-10-1903: Started: 11:57:10.424894 -I, [2020-03-04T14:57:11.606222 #1554] INFO -- py3-windows-10-1903: Duration: 203.021 ms -I, [2020-03-04T14:57:11.606601 #1554] INFO -- py3-windows-10-1903: Changes: -I, [2020-03-04T14:57:11.606984 #1554] INFO -- py3-windows-10-1903: ---------- -I, [2020-03-04T14:57:11.607425 #1554] INFO -- py3-windows-10-1903: system.reboot: -I, [2020-03-04T14:57:11.607915 #1554] INFO -- py3-windows-10-1903: True -I, [2020-03-04T14:57:11.608491 #1554] INFO -- py3-windows-10-1903: -I, [2020-03-04T14:57:11.609058 #1554] INFO -- py3-windows-10-1903: Summary for local -I, [2020-03-04T14:57:11.609643 #1554] INFO -- py3-windows-10-1903: ------------- -I, [2020-03-04T14:57:11.610227 #1554] INFO -- py3-windows-10-1903: Succeeded: 25 (changed=25) -I, [2020-03-04T14:57:11.610644 #1554] INFO -- py3-windows-10-1903: Failed: 0 -I, [2020-03-04T14:57:11.611014 #1554] INFO -- py3-windows-10-1903: ------------- -I, [2020-03-04T14:57:11.611386 #1554] INFO -- py3-windows-10-1903: Total states run: 25 -I, [2020-03-04T14:57:11.611763 #1554] INFO -- py3-windows-10-1903: Total run time: 110.698 s -I, [2020-03-04T14:57:11.637250 #1554] INFO -- py3-windows-10-1903: Downloading files from -I, [2020-03-04T14:57:11.797408 #1554] INFO -- py3-windows-10-1903: Finished converging (2m29.87s). -I, [2020-03-04T14:57:11.797596 #1554] INFO -- py3-windows-10-1903: -----> Setting up ... -I, [2020-03-04T14:57:11.804336 #1554] INFO -- py3-windows-10-1903: Finished setting up (0m0.00s). -I, [2020-03-04T14:57:11.804523 #1554] INFO -- py3-windows-10-1903: -----> Verifying ... -I, [2020-03-04T14:57:12.804292 #1554] INFO -- py3-windows-10-1903: Loaded default -I, [2020-03-04T14:58:04.792507 #1554] INFO -- py3-windows-10-1903: Finished verifying (0m52.99s). -I, [2020-03-04T14:58:04.794139 #1554] INFO -- py3-windows-10-1903: -----> Destroying ... -I, [2020-03-04T14:58:15.401897 #1554] INFO -- py3-windows-10-1903: ==> default: Forcing shutdown of VM... -I, [2020-03-04T14:58:17.142902 #1554] INFO -- py3-windows-10-1903: ==> default: Destroying VM and associated drives... -I, [2020-03-04T14:58:18.113270 #1554] INFO -- py3-windows-10-1903: Vagrant instance destroyed. -I, [2020-03-04T14:58:18.114757 #1554] INFO -- py3-windows-10-1903: Finished destroying (0m13.32s). -I, [2020-03-04T14:58:18.115890 #1554] INFO -- py3-windows-10-1903: Finished testing (4m38.07s). +I, [2020-03-06T12:53:21.895435 #15577] INFO -- py3-windows-10-1903: -----> Cleaning up any prior instances of +I, [2020-03-06T12:53:21.895605 #15577] INFO -- py3-windows-10-1903: -----> Destroying ... +I, [2020-03-06T12:53:21.896843 #15577] INFO -- py3-windows-10-1903: Finished destroying (0m0.00s). +I, [2020-03-06T12:53:21.897843 #15577] INFO -- py3-windows-10-1903: -----> Testing +I, [2020-03-06T12:53:21.897952 #15577] INFO -- py3-windows-10-1903: -----> Creating ... +I, [2020-03-06T12:53:27.759779 #15577] INFO -- py3-windows-10-1903: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T12:53:28.788929 #15577] INFO -- py3-windows-10-1903: ==> default: Cloning VM... +I, [2020-03-06T12:53:29.260114 #15577] INFO -- py3-windows-10-1903: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T12:53:29.508460 #15577] INFO -- py3-windows-10-1903: ==> default: Checking if box 'StefanScherer/windows_10' version '2020.01.15' is up to date... +I, [2020-03-06T12:53:31.063474 #15577] INFO -- py3-windows-10-1903: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1903-6b2e3604-b707-400e-ae5a-98681f818615 +I, [2020-03-06T12:53:35.117878 #15577] INFO -- py3-windows-10-1903: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T12:53:35.269868 #15577] INFO -- py3-windows-10-1903: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T12:53:35.270442 #15577] INFO -- py3-windows-10-1903: default: Adapter 1: nat +I, [2020-03-06T12:53:35.462395 #15577] INFO -- py3-windows-10-1903: ==> default: Forwarding ports... +I, [2020-03-06T12:53:35.630609 #15577] INFO -- py3-windows-10-1903: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T12:53:35.631025 #15577] INFO -- py3-windows-10-1903: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T12:53:35.631794 #15577] INFO -- py3-windows-10-1903: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T12:53:35.632291 #15577] INFO -- py3-windows-10-1903: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T12:53:36.167134 #15577] INFO -- py3-windows-10-1903: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T12:53:37.542845 #15577] INFO -- py3-windows-10-1903: ==> default: Booting VM... +I, [2020-03-06T12:53:40.297262 #15577] INFO -- py3-windows-10-1903: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T12:53:41.749487 #15577] INFO -- py3-windows-10-1903: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T12:53:41.749867 #15577] INFO -- py3-windows-10-1903: default: WinRM username: vagrant +I, [2020-03-06T12:53:41.750176 #15577] INFO -- py3-windows-10-1903: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T12:53:41.750464 #15577] INFO -- py3-windows-10-1903: default: WinRM transport: negotiate +I, [2020-03-06T12:54:02.626621 #15577] INFO -- py3-windows-10-1903: ==> default: Machine booted and ready! +I, [2020-03-06T12:54:02.653959 #15577] INFO -- py3-windows-10-1903: ==> default: Checking for guest additions in VM... +I, [2020-03-06T12:54:02.858911 #15577] INFO -- py3-windows-10-1903: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T12:54:02.859020 #15577] INFO -- py3-windows-10-1903: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T12:54:02.859055 #15577] INFO -- py3-windows-10-1903: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T12:54:02.859109 #15577] INFO -- py3-windows-10-1903: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T12:54:02.859153 #15577] INFO -- py3-windows-10-1903: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T12:54:02.859178 #15577] INFO -- py3-windows-10-1903: default: your host and reload your VM. +I, [2020-03-06T12:54:02.859206 #15577] INFO -- py3-windows-10-1903: default: +I, [2020-03-06T12:54:02.859236 #15577] INFO -- py3-windows-10-1903: default: Guest Additions Version: 6.0.10 +I, [2020-03-06T12:54:02.859274 #15577] INFO -- py3-windows-10-1903: default: VirtualBox Version: 6.1 +I, [2020-03-06T12:54:03.594372 #15577] INFO -- py3-windows-10-1903: ==> default: Mounting shared folders... +I, [2020-03-06T12:54:03.595367 #15577] INFO -- py3-windows-10-1903: default: /results => /mnt/c/tmp/results +I, [2020-03-06T12:54:10.953758 #15577] INFO -- py3-windows-10-1903: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T12:54:22.532425 #15577] INFO -- py3-windows-10-1903: [WinRM] Established +I, [2020-03-06T12:54:22.532537 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:22.543541 #15577] INFO -- py3-windows-10-1903: Vagrant instance created. +I, [2020-03-06T12:54:22.545217 #15577] INFO -- py3-windows-10-1903: Finished creating (1m0.65s). +I, [2020-03-06T12:54:22.545453 #15577] INFO -- py3-windows-10-1903: -----> Converging ... +I, [2020-03-06T12:54:22.547918 #15577] INFO -- py3-windows-10-1903: Preparing files for transfer +I, [2020-03-06T12:54:22.548058 #15577] INFO -- py3-windows-10-1903: Preparing salt-minion +I, [2020-03-06T12:54:22.553008 #15577] INFO -- py3-windows-10-1903: Preparing pillars into /srv/pillar +I, [2020-03-06T12:54:22.553140 #15577] INFO -- py3-windows-10-1903: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T12:54:22.557102 #15577] INFO -- py3-windows-10-1903: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T12:54:22.680276 #15577] INFO -- py3-windows-10-1903: Preparing state_top +I, [2020-03-06T12:54:22.681670 #15577] INFO -- py3-windows-10-1903: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T12:54:23.964580 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:23.964888 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:23.965281 #15577] INFO -- py3-windows-10-1903: Directory: C:\ +I, [2020-03-06T12:54:23.965684 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:23.965984 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:23.966325 #15577] INFO -- py3-windows-10-1903: Mode LastWriteTime Length Name +I, [2020-03-06T12:54:23.966734 #15577] INFO -- py3-windows-10-1903: ---- ------------- ------ ---- +I, [2020-03-06T12:54:23.967154 #15577] INFO -- py3-windows-10-1903: d----- 3/6/2020 9:54 AM temp +I, [2020-03-06T12:54:24.731189 #15577] INFO -- py3-windows-10-1903: Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe +I, [2020-03-06T12:54:32.801464 #15577] INFO -- py3-windows-10-1903: Installing Salt minion +I, [2020-03-06T12:54:45.181823 #15577] INFO -- py3-windows-10-1903: Starting the Salt minion service +I, [2020-03-06T12:54:45.182325 #15577] INFO -- py3-windows-10-1903: Salt minion successfully installed +I, [2020-03-06T12:54:48.425268 #15577] INFO -- py3-windows-10-1903: You asked for latest and you have 3000 installed, sweet! +I, [2020-03-06T12:54:48.425815 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.426233 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.892949 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.893537 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.894129 #15577] INFO -- py3-windows-10-1903: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T12:54:48.894529 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.894856 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.895279 #15577] INFO -- py3-windows-10-1903: Mode LastWriteTime Length Name +I, [2020-03-06T12:54:48.895720 #15577] INFO -- py3-windows-10-1903: ---- ------------- ------ ---- +I, [2020-03-06T12:54:48.896181 #15577] INFO -- py3-windows-10-1903: d----- 3/6/2020 9:54 AM kitchen +I, [2020-03-06T12:54:48.896583 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.896961 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:54:48.908254 #15577] INFO -- py3-windows-10-1903: Transferring files to +I, [2020-03-06T12:55:25.372857 #15577] INFO -- py3-windows-10-1903: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T12:55:25.373141 #15577] INFO -- py3-windows-10-1903: At line:1 char:131 +I, [2020-03-06T12:55:25.373439 #15577] INFO -- py3-windows-10-1903: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T12:55:25.373818 #15577] INFO -- py3-windows-10-1903: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T12:55:25.374136 #15577] INFO -- py3-windows-10-1903: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T12:55:25.374545 #15577] INFO -- py3-windows-10-1903: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T12:55:25.374960 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:55:25.375259 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:55:25.375593 #15577] INFO -- py3-windows-10-1903: Traceback (most recent call last): +I, [2020-03-06T12:55:25.376048 #15577] INFO -- py3-windows-10-1903: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T12:55:25.376321 #15577] INFO -- py3-windows-10-1903: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T12:55:25.376579 #15577] INFO -- py3-windows-10-1903: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T12:55:25.376854 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:55:25.377133 #15577] INFO -- py3-windows-10-1903: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T12:55:25.377386 #15577] INFO -- py3-windows-10-1903: Traceback (most recent call last): +I, [2020-03-06T12:55:25.377647 #15577] INFO -- py3-windows-10-1903: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T12:55:25.377872 #15577] INFO -- py3-windows-10-1903: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T12:55:25.378121 #15577] INFO -- py3-windows-10-1903: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T12:55:25.378348 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:56:17.995194 #15577] INFO -- py3-windows-10-1903: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T12:56:17.995630 #15577] INFO -- py3-windows-10-1903: environ[key] = redata.sub(a, value) +I, [2020-03-06T12:56:17.996108 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:56:17.996588 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:56:17.997085 #15577] INFO -- py3-windows-10-1903: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T12:56:17.997550 #15577] INFO -- py3-windows-10-1903: environ[key] = redata.sub(a, value) +I, [2020-03-06T12:56:17.997948 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:56:17.998384 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:03.635832 #15577] INFO -- py3-windows-10-1903: local: +I, [2020-03-06T12:57:03.636321 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.636840 #15577] INFO -- py3-windows-10-1903: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T12:57:03.637229 #15577] INFO -- py3-windows-10-1903: Function: system.hostname +I, [2020-03-06T12:57:03.637560 #15577] INFO -- py3-windows-10-1903: Name: saltstack1 +I, [2020-03-06T12:57:03.637860 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.638171 #15577] INFO -- py3-windows-10-1903: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T12:57:03.638513 #15577] INFO -- py3-windows-10-1903: Started: 09:55:01.584554 +I, [2020-03-06T12:57:03.638797 #15577] INFO -- py3-windows-10-1903: Duration: 92.406 ms +I, [2020-03-06T12:57:03.639098 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.639404 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.639773 #15577] INFO -- py3-windows-10-1903: hostname: +I, [2020-03-06T12:57:03.640172 #15577] INFO -- py3-windows-10-1903: saltstack1 +I, [2020-03-06T12:57:03.640501 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.640865 #15577] INFO -- py3-windows-10-1903: ID: windows.state.system.computer_desc.description +I, [2020-03-06T12:57:03.641264 #15577] INFO -- py3-windows-10-1903: Function: system.computer_desc +I, [2020-03-06T12:57:03.641623 #15577] INFO -- py3-windows-10-1903: Name: Saltstack Computer Description +I, [2020-03-06T12:57:03.641979 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.642357 #15577] INFO -- py3-windows-10-1903: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T12:57:03.642660 #15577] INFO -- py3-windows-10-1903: Started: 09:55:01.676960 +I, [2020-03-06T12:57:03.642949 #15577] INFO -- py3-windows-10-1903: Duration: 2703.133 ms +I, [2020-03-06T12:57:03.643239 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.643519 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.643853 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:03.644281 #15577] INFO -- py3-windows-10-1903: Saltstack Computer Description +I, [2020-03-06T12:57:03.644617 #15577] INFO -- py3-windows-10-1903: old: +I, [2020-03-06T12:57:03.644967 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.645346 #15577] INFO -- py3-windows-10-1903: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T12:57:03.645690 #15577] INFO -- py3-windows-10-1903: Function: timezone.system +I, [2020-03-06T12:57:03.646044 #15577] INFO -- py3-windows-10-1903: Name: America/New_York +I, [2020-03-06T12:57:03.646410 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.646779 #15577] INFO -- py3-windows-10-1903: Comment: Set timezone America/New_York +I, [2020-03-06T12:57:03.647177 #15577] INFO -- py3-windows-10-1903: Started: 09:55:04.411278 +I, [2020-03-06T12:57:03.647538 #15577] INFO -- py3-windows-10-1903: Duration: 16.146 ms +I, [2020-03-06T12:57:03.647893 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.648269 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.648613 #15577] INFO -- py3-windows-10-1903: timezone: +I, [2020-03-06T12:57:03.648984 #15577] INFO -- py3-windows-10-1903: America/New_York +I, [2020-03-06T12:57:03.649344 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.649765 #15577] INFO -- py3-windows-10-1903: ID: windows.module.environ.items +I, [2020-03-06T12:57:03.650195 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:03.650543 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.650885 #15577] INFO -- py3-windows-10-1903: Comment: environ.items: Success +I, [2020-03-06T12:57:03.651239 #15577] INFO -- py3-windows-10-1903: Started: 09:55:04.442912 +I, [2020-03-06T12:57:03.651591 #15577] INFO -- py3-windows-10-1903: Duration: 0.0 ms +I, [2020-03-06T12:57:03.651946 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.652362 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.652699 #15577] INFO -- py3-windows-10-1903: environ.items: +I, [2020-03-06T12:57:03.653117 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.653462 #15577] INFO -- py3-windows-10-1903: ALLUSERSPROFILE: +I, [2020-03-06T12:57:03.653864 #15577] INFO -- py3-windows-10-1903: C:\ProgramData +I, [2020-03-06T12:57:03.654241 #15577] INFO -- py3-windows-10-1903: APPDATA: +I, [2020-03-06T12:57:03.654585 #15577] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T12:57:03.655020 #15577] INFO -- py3-windows-10-1903: COMMONPROGRAMFILES: +I, [2020-03-06T12:57:03.655463 #15577] INFO -- py3-windows-10-1903: C:\Program Files\Common Files +I, [2020-03-06T12:57:03.655984 #15577] INFO -- py3-windows-10-1903: COMMONPROGRAMFILES(X86): +I, [2020-03-06T12:57:03.656554 #15577] INFO -- py3-windows-10-1903: C:\Program Files (x86)\Common Files +I, [2020-03-06T12:57:03.657067 #15577] INFO -- py3-windows-10-1903: COMMONPROGRAMW6432: +I, [2020-03-06T12:57:03.657624 #15577] INFO -- py3-windows-10-1903: C:\Program Files\Common Files +I, [2020-03-06T12:57:03.658203 #15577] INFO -- py3-windows-10-1903: COMPUTERNAME: +I, [2020-03-06T12:57:03.658724 #15577] INFO -- py3-windows-10-1903: VAGRANT-10 +I, [2020-03-06T12:57:03.659256 #15577] INFO -- py3-windows-10-1903: COMSPEC: +I, [2020-03-06T12:57:03.659753 #15577] INFO -- py3-windows-10-1903: C:\Windows\system32\cmd.exe +I, [2020-03-06T12:57:03.660236 #15577] INFO -- py3-windows-10-1903: DRIVERDATA: +I, [2020-03-06T12:57:03.660713 #15577] INFO -- py3-windows-10-1903: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T12:57:03.661198 #15577] INFO -- py3-windows-10-1903: HOMEDRIVE: +I, [2020-03-06T12:57:03.661704 #15577] INFO -- py3-windows-10-1903: C: +I, [2020-03-06T12:57:03.662194 #15577] INFO -- py3-windows-10-1903: HOMEPATH: +I, [2020-03-06T12:57:03.662670 #15577] INFO -- py3-windows-10-1903: \Users\vagrant +I, [2020-03-06T12:57:03.663162 #15577] INFO -- py3-windows-10-1903: LOCALAPPDATA: +I, [2020-03-06T12:57:03.663634 #15577] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Local +I, [2020-03-06T12:57:03.664115 #15577] INFO -- py3-windows-10-1903: LOGONSERVER: +I, [2020-03-06T12:57:03.664570 #15577] INFO -- py3-windows-10-1903: \\VAGRANT-10 +I, [2020-03-06T12:57:03.665076 #15577] INFO -- py3-windows-10-1903: NUMBER_OF_PROCESSORS: +I, [2020-03-06T12:57:03.665547 #15577] INFO -- py3-windows-10-1903: 2 +I, [2020-03-06T12:57:03.666039 #15577] INFO -- py3-windows-10-1903: ONEDRIVE: +I, [2020-03-06T12:57:03.666519 #15577] INFO -- py3-windows-10-1903: C:\Users\vagrant\OneDrive +I, [2020-03-06T12:57:03.666992 #15577] INFO -- py3-windows-10-1903: OS: +I, [2020-03-06T12:57:03.667465 #15577] INFO -- py3-windows-10-1903: Windows_NT +I, [2020-03-06T12:57:03.667953 #15577] INFO -- py3-windows-10-1903: PATH: +I, [2020-03-06T12:57:03.668526 #15577] INFO -- py3-windows-10-1903: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T12:57:03.669013 #15577] INFO -- py3-windows-10-1903: PATHEXT: +I, [2020-03-06T12:57:03.669513 #15577] INFO -- py3-windows-10-1903: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T12:57:03.670010 #15577] INFO -- py3-windows-10-1903: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T12:57:03.670500 #15577] INFO -- py3-windows-10-1903: AMD64 +I, [2020-03-06T12:57:03.670984 #15577] INFO -- py3-windows-10-1903: PROCESSOR_IDENTIFIER: +I, [2020-03-06T12:57:03.671470 #15577] INFO -- py3-windows-10-1903: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T12:57:03.672003 #15577] INFO -- py3-windows-10-1903: PROCESSOR_LEVEL: +I, [2020-03-06T12:57:03.672477 #15577] INFO -- py3-windows-10-1903: 6 +I, [2020-03-06T12:57:03.672951 #15577] INFO -- py3-windows-10-1903: PROCESSOR_REVISION: +I, [2020-03-06T12:57:03.673412 #15577] INFO -- py3-windows-10-1903: 8e0c +I, [2020-03-06T12:57:03.673893 #15577] INFO -- py3-windows-10-1903: PROGRAMDATA: +I, [2020-03-06T12:57:03.674370 #15577] INFO -- py3-windows-10-1903: C:\ProgramData +I, [2020-03-06T12:57:03.674846 #15577] INFO -- py3-windows-10-1903: PROGRAMFILES: +I, [2020-03-06T12:57:03.675332 #15577] INFO -- py3-windows-10-1903: C:\Program Files +I, [2020-03-06T12:57:03.675818 #15577] INFO -- py3-windows-10-1903: PROGRAMFILES(X86): +I, [2020-03-06T12:57:03.676305 #15577] INFO -- py3-windows-10-1903: C:\Program Files (x86) +I, [2020-03-06T12:57:03.676782 #15577] INFO -- py3-windows-10-1903: PROGRAMW6432: +I, [2020-03-06T12:57:03.677254 #15577] INFO -- py3-windows-10-1903: C:\Program Files +I, [2020-03-06T12:57:03.677760 #15577] INFO -- py3-windows-10-1903: PROMPT: +I, [2020-03-06T12:57:03.678238 #15577] INFO -- py3-windows-10-1903: $P$G +I, [2020-03-06T12:57:03.678751 #15577] INFO -- py3-windows-10-1903: PSMODULEPATH: +I, [2020-03-06T12:57:03.679297 #15577] INFO -- py3-windows-10-1903: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T12:57:03.679816 #15577] INFO -- py3-windows-10-1903: PUBLIC: +I, [2020-03-06T12:57:03.680316 #15577] INFO -- py3-windows-10-1903: C:\Users\Public +I, [2020-03-06T12:57:03.680804 #15577] INFO -- py3-windows-10-1903: PYTHON: +I, [2020-03-06T12:57:03.681311 #15577] INFO -- py3-windows-10-1903: C:\salt\bin\python.exe +I, [2020-03-06T12:57:03.681819 #15577] INFO -- py3-windows-10-1903: SALTDIR: +I, [2020-03-06T12:57:03.682365 #15577] INFO -- py3-windows-10-1903: C:\salt +I, [2020-03-06T12:57:03.682877 #15577] INFO -- py3-windows-10-1903: SCRIPT: +I, [2020-03-06T12:57:03.683408 #15577] INFO -- py3-windows-10-1903: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T12:57:03.683918 #15577] INFO -- py3-windows-10-1903: SYSTEMDRIVE: +I, [2020-03-06T12:57:03.684447 #15577] INFO -- py3-windows-10-1903: C: +I, [2020-03-06T12:57:03.684837 #15577] INFO -- py3-windows-10-1903: SYSTEMROOT: +I, [2020-03-06T12:57:03.685237 #15577] INFO -- py3-windows-10-1903: C:\Windows +I, [2020-03-06T12:57:03.685645 #15577] INFO -- py3-windows-10-1903: TEMP: +I, [2020-03-06T12:57:03.686004 #15577] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T12:57:03.686428 #15577] INFO -- py3-windows-10-1903: TMP: +I, [2020-03-06T12:57:03.686836 #15577] INFO -- py3-windows-10-1903: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T12:57:03.687234 #15577] INFO -- py3-windows-10-1903: USERDOMAIN: +I, [2020-03-06T12:57:03.687686 #15577] INFO -- py3-windows-10-1903: VAGRANT-10 +I, [2020-03-06T12:57:03.688194 #15577] INFO -- py3-windows-10-1903: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T12:57:03.688709 #15577] INFO -- py3-windows-10-1903: VAGRANT-10 +I, [2020-03-06T12:57:03.689269 #15577] INFO -- py3-windows-10-1903: USERNAME: +I, [2020-03-06T12:57:03.689849 #15577] INFO -- py3-windows-10-1903: vagrant +I, [2020-03-06T12:57:03.690431 #15577] INFO -- py3-windows-10-1903: USERPROFILE: +I, [2020-03-06T12:57:03.691194 #15577] INFO -- py3-windows-10-1903: C:\Users\vagrant +I, [2020-03-06T12:57:03.691665 #15577] INFO -- py3-windows-10-1903: WINDIR: +I, [2020-03-06T12:57:03.692266 #15577] INFO -- py3-windows-10-1903: C:\Windows +I, [2020-03-06T12:57:03.692754 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.693375 #15577] INFO -- py3-windows-10-1903: ID: windows.module.user.current +I, [2020-03-06T12:57:03.693841 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:03.694432 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.694946 #15577] INFO -- py3-windows-10-1903: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T12:57:03.695426 #15577] INFO -- py3-windows-10-1903: Started: 09:55:04.442912 +I, [2020-03-06T12:57:03.696018 #15577] INFO -- py3-windows-10-1903: Duration: 46.439 ms +I, [2020-03-06T12:57:03.696470 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.697103 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.697523 #15577] INFO -- py3-windows-10-1903: user.current: +I, [2020-03-06T12:57:03.698155 #15577] INFO -- py3-windows-10-1903: VAGRANT-10\vagrant +I, [2020-03-06T12:57:03.698646 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.699090 #15577] INFO -- py3-windows-10-1903: ID: windows.module.status.uptime +I, [2020-03-06T12:57:03.699456 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:03.699824 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.700256 #15577] INFO -- py3-windows-10-1903: Comment: status.uptime: 0:01:20.504924 +I, [2020-03-06T12:57:03.700623 #15577] INFO -- py3-windows-10-1903: Started: 09:55:04.489351 +I, [2020-03-06T12:57:03.701014 #15577] INFO -- py3-windows-10-1903: Duration: 15.573 ms +I, [2020-03-06T12:57:03.701408 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.701823 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.702206 #15577] INFO -- py3-windows-10-1903: status.uptime: +I, [2020-03-06T12:57:03.702619 #15577] INFO -- py3-windows-10-1903: 0:01:20.504924 +I, [2020-03-06T12:57:03.702991 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.703372 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T12:57:03.703754 #15577] INFO -- py3-windows-10-1903: Function: cmd.run +I, [2020-03-06T12:57:03.704149 #15577] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers +I, [2020-03-06T12:57:03.704519 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.704966 #15577] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:57:03.705316 #15577] INFO -- py3-windows-10-1903: Started: 09:55:04.520557 +I, [2020-03-06T12:57:03.705662 #15577] INFO -- py3-windows-10-1903: Duration: 2062.348 ms +I, [2020-03-06T12:57:03.706012 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.706370 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.706923 #15577] INFO -- py3-windows-10-1903: pid: +I, [2020-03-06T12:57:03.707471 #15577] INFO -- py3-windows-10-1903: 2584 +I, [2020-03-06T12:57:03.707995 #15577] INFO -- py3-windows-10-1903: retcode: +I, [2020-03-06T12:57:03.708475 #15577] INFO -- py3-windows-10-1903: 0 +I, [2020-03-06T12:57:03.708972 #15577] INFO -- py3-windows-10-1903: stderr: +I, [2020-03-06T12:57:03.709461 #15577] INFO -- py3-windows-10-1903: stdout: +I, [2020-03-06T12:57:03.709990 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.710494 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T12:57:03.711010 #15577] INFO -- py3-windows-10-1903: Function: cmd.run +I, [2020-03-06T12:57:03.711512 #15577] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers +I, [2020-03-06T12:57:03.712053 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.712597 #15577] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:57:03.713128 #15577] INFO -- py3-windows-10-1903: Started: 09:55:06.582905 +I, [2020-03-06T12:57:03.713670 #15577] INFO -- py3-windows-10-1903: Duration: 1656.409 ms +I, [2020-03-06T12:57:03.714211 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.714764 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.715318 #15577] INFO -- py3-windows-10-1903: pid: +I, [2020-03-06T12:57:03.715900 #15577] INFO -- py3-windows-10-1903: 1184 +I, [2020-03-06T12:57:03.716429 #15577] INFO -- py3-windows-10-1903: retcode: +I, [2020-03-06T12:57:03.717012 #15577] INFO -- py3-windows-10-1903: 0 +I, [2020-03-06T12:57:03.717588 #15577] INFO -- py3-windows-10-1903: stderr: +I, [2020-03-06T12:57:03.718210 #15577] INFO -- py3-windows-10-1903: stdout: +I, [2020-03-06T12:57:03.718750 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.719238 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T12:57:03.719688 #15577] INFO -- py3-windows-10-1903: Function: cmd.run +I, [2020-03-06T12:57:03.720167 #15577] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers +I, [2020-03-06T12:57:03.720605 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.721048 #15577] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:57:03.721542 #15577] INFO -- py3-windows-10-1903: Started: 09:55:08.239314 +I, [2020-03-06T12:57:03.722034 #15577] INFO -- py3-windows-10-1903: Duration: 1547.052 ms +I, [2020-03-06T12:57:03.728982 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.729651 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.730201 #15577] INFO -- py3-windows-10-1903: pid: +I, [2020-03-06T12:57:03.730673 #15577] INFO -- py3-windows-10-1903: 2624 +I, [2020-03-06T12:57:03.731078 #15577] INFO -- py3-windows-10-1903: retcode: +I, [2020-03-06T12:57:03.731663 #15577] INFO -- py3-windows-10-1903: 0 +I, [2020-03-06T12:57:03.732064 #15577] INFO -- py3-windows-10-1903: stderr: +I, [2020-03-06T12:57:03.732435 #15577] INFO -- py3-windows-10-1903: stdout: +I, [2020-03-06T12:57:03.732858 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.733263 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T12:57:03.733649 #15577] INFO -- py3-windows-10-1903: Function: cmd.run +I, [2020-03-06T12:57:03.734048 #15577] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers +I, [2020-03-06T12:57:03.734452 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.734871 #15577] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:57:03.735236 #15577] INFO -- py3-windows-10-1903: Started: 09:55:09.786366 +I, [2020-03-06T12:57:03.735624 #15577] INFO -- py3-windows-10-1903: Duration: 1703.034 ms +I, [2020-03-06T12:57:03.736029 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.736390 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.736768 #15577] INFO -- py3-windows-10-1903: pid: +I, [2020-03-06T12:57:03.737176 #15577] INFO -- py3-windows-10-1903: 7004 +I, [2020-03-06T12:57:03.737646 #15577] INFO -- py3-windows-10-1903: retcode: +I, [2020-03-06T12:57:03.738154 #15577] INFO -- py3-windows-10-1903: 0 +I, [2020-03-06T12:57:03.738635 #15577] INFO -- py3-windows-10-1903: stderr: +I, [2020-03-06T12:57:03.739119 #15577] INFO -- py3-windows-10-1903: stdout: +I, [2020-03-06T12:57:03.739534 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.739896 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal +I, [2020-03-06T12:57:03.740262 #15577] INFO -- py3-windows-10-1903: Function: cmd.run +I, [2020-03-06T12:57:03.740630 #15577] INFO -- py3-windows-10-1903: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers +I, [2020-03-06T12:57:03.741036 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.741482 #15577] INFO -- py3-windows-10-1903: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:57:03.741946 #15577] INFO -- py3-windows-10-1903: Started: 09:55:11.489400 +I, [2020-03-06T12:57:03.742509 #15577] INFO -- py3-windows-10-1903: Duration: 1453.314 ms +I, [2020-03-06T12:57:03.743035 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.743422 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.743839 #15577] INFO -- py3-windows-10-1903: pid: +I, [2020-03-06T12:57:03.744200 #15577] INFO -- py3-windows-10-1903: 1200 +I, [2020-03-06T12:57:03.744530 #15577] INFO -- py3-windows-10-1903: retcode: +I, [2020-03-06T12:57:03.744914 #15577] INFO -- py3-windows-10-1903: 0 +I, [2020-03-06T12:57:03.745309 #15577] INFO -- py3-windows-10-1903: stderr: +I, [2020-03-06T12:57:03.745655 #15577] INFO -- py3-windows-10-1903: stdout: +I, [2020-03-06T12:57:03.746054 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.746523 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T12:57:03.747045 #15577] INFO -- py3-windows-10-1903: Function: reg.present +I, [2020-03-06T12:57:03.747503 #15577] INFO -- py3-windows-10-1903: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:57:03.747851 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.748178 #15577] INFO -- py3-windows-10-1903: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:57:03.748550 #15577] INFO -- py3-windows-10-1903: Started: 09:55:12.942714 +I, [2020-03-06T12:57:03.748889 #15577] INFO -- py3-windows-10-1903: Duration: 11718.532 ms +I, [2020-03-06T12:57:03.749261 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.749587 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.750022 #15577] INFO -- py3-windows-10-1903: reg: +I, [2020-03-06T12:57:03.750521 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.751049 #15577] INFO -- py3-windows-10-1903: Added: +I, [2020-03-06T12:57:03.751563 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.752089 #15577] INFO -- py3-windows-10-1903: Entry: +I, [2020-03-06T12:57:03.752599 #15577] INFO -- py3-windows-10-1903: SystemDefaultTlsVersions +I, [2020-03-06T12:57:03.753105 #15577] INFO -- py3-windows-10-1903: Inheritance: +I, [2020-03-06T12:57:03.753560 #15577] INFO -- py3-windows-10-1903: True +I, [2020-03-06T12:57:03.754021 #15577] INFO -- py3-windows-10-1903: Key: +I, [2020-03-06T12:57:03.754505 #15577] INFO -- py3-windows-10-1903: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:57:03.754991 #15577] INFO -- py3-windows-10-1903: Owner: +I, [2020-03-06T12:57:03.755438 #15577] INFO -- py3-windows-10-1903: None +I, [2020-03-06T12:57:03.755907 #15577] INFO -- py3-windows-10-1903: Perms: +I, [2020-03-06T12:57:03.756368 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.756855 #15577] INFO -- py3-windows-10-1903: Deny: +I, [2020-03-06T12:57:03.757295 #15577] INFO -- py3-windows-10-1903: None +I, [2020-03-06T12:57:03.757749 #15577] INFO -- py3-windows-10-1903: Grant: +I, [2020-03-06T12:57:03.758183 #15577] INFO -- py3-windows-10-1903: None +I, [2020-03-06T12:57:03.758654 #15577] INFO -- py3-windows-10-1903: Value: +I, [2020-03-06T12:57:03.759093 #15577] INFO -- py3-windows-10-1903: 1 +I, [2020-03-06T12:57:03.759532 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.759983 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T12:57:03.761230 #15577] INFO -- py3-windows-10-1903: Function: reg.present +I, [2020-03-06T12:57:03.761888 #15577] INFO -- py3-windows-10-1903: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:57:03.762433 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.762901 #15577] INFO -- py3-windows-10-1903: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:57:03.763238 #15577] INFO -- py3-windows-10-1903: Started: 09:55:24.661246 +I, [2020-03-06T12:57:03.763594 #15577] INFO -- py3-windows-10-1903: Duration: 218.496 ms +I, [2020-03-06T12:57:03.764011 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.764448 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.764788 #15577] INFO -- py3-windows-10-1903: reg: +I, [2020-03-06T12:57:03.765120 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.765484 #15577] INFO -- py3-windows-10-1903: Added: +I, [2020-03-06T12:57:03.765828 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.766204 #15577] INFO -- py3-windows-10-1903: Entry: +I, [2020-03-06T12:57:03.766601 #15577] INFO -- py3-windows-10-1903: SystemDefaultTlsVersions +I, [2020-03-06T12:57:03.766929 #15577] INFO -- py3-windows-10-1903: Inheritance: +I, [2020-03-06T12:57:03.767263 #15577] INFO -- py3-windows-10-1903: True +I, [2020-03-06T12:57:03.767618 #15577] INFO -- py3-windows-10-1903: Key: +I, [2020-03-06T12:57:03.767991 #15577] INFO -- py3-windows-10-1903: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:57:03.768387 #15577] INFO -- py3-windows-10-1903: Owner: +I, [2020-03-06T12:57:03.768713 #15577] INFO -- py3-windows-10-1903: None +I, [2020-03-06T12:57:03.769068 #15577] INFO -- py3-windows-10-1903: Perms: +I, [2020-03-06T12:57:03.769506 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.769957 #15577] INFO -- py3-windows-10-1903: Deny: +I, [2020-03-06T12:57:03.770328 #15577] INFO -- py3-windows-10-1903: None +I, [2020-03-06T12:57:03.770710 #15577] INFO -- py3-windows-10-1903: Grant: +I, [2020-03-06T12:57:03.771142 #15577] INFO -- py3-windows-10-1903: None +I, [2020-03-06T12:57:03.771573 #15577] INFO -- py3-windows-10-1903: Value: +I, [2020-03-06T12:57:03.771983 #15577] INFO -- py3-windows-10-1903: 1 +I, [2020-03-06T12:57:03.772331 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.772650 #15577] INFO -- py3-windows-10-1903: ID: manually.update_git_repo-ng +I, [2020-03-06T12:57:03.773042 #15577] INFO -- py3-windows-10-1903: Function: archive.extracted +I, [2020-03-06T12:57:03.773404 #15577] INFO -- py3-windows-10-1903: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T12:57:03.773866 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:03.774280 #15577] INFO -- py3-windows-10-1903: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T12:57:03.774656 #15577] INFO -- py3-windows-10-1903: Started: 09:55:24.879742 +I, [2020-03-06T12:57:03.775022 #15577] INFO -- py3-windows-10-1903: Duration: 750.859 ms +I, [2020-03-06T12:57:03.775468 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:03.775842 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:03.776304 #15577] INFO -- py3-windows-10-1903: directories_created: +I, [2020-03-06T12:57:03.776720 #15577] INFO -- py3-windows-10-1903: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T12:57:03.777080 #15577] INFO -- py3-windows-10-1903: extracted_files: +I, [2020-03-06T12:57:03.777415 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ +I, [2020-03-06T12:57:03.777801 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T12:57:03.778238 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T12:57:03.778655 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T12:57:03.779021 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T12:57:03.779352 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T12:57:03.779796 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T12:57:03.780218 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T12:57:03.780595 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/README.md +I, [2020-03-06T12:57:03.780943 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T12:57:03.781317 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T12:57:03.781713 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T12:57:03.782152 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T12:57:03.782506 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T12:57:03.783082 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T12:57:03.783740 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T12:57:03.784327 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T12:57:03.784840 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T12:57:03.785362 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T12:57:03.785868 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T12:57:03.786369 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T12:57:03.786838 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T12:57:03.787348 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T12:57:03.787847 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T12:57:03.788369 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T12:57:03.788902 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T12:57:03.789389 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T12:57:03.789919 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T12:57:03.790461 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T12:57:03.791005 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T12:57:03.791518 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T12:57:03.792065 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T12:57:03.792558 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T12:57:03.793093 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T12:57:03.793662 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T12:57:03.794147 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T12:57:03.794559 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T12:57:03.795063 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T12:57:03.795616 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T12:57:03.796217 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T12:57:03.796789 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T12:57:03.797358 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T12:57:03.798023 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T12:57:03.798678 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T12:57:03.799510 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T12:57:03.800211 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T12:57:03.800797 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T12:57:03.801412 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T12:57:03.801963 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T12:57:03.802558 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T12:57:03.803129 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T12:57:03.803695 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T12:57:03.804313 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T12:57:03.804866 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T12:57:03.805466 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T12:57:03.806037 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T12:57:03.806586 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T12:57:03.807086 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T12:57:03.807604 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T12:57:03.808084 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T12:57:03.808581 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T12:57:03.809058 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T12:57:03.809586 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T12:57:03.810081 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T12:57:03.810536 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T12:57:03.811007 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T12:57:03.811514 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T12:57:03.812002 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T12:57:03.812564 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T12:57:03.813089 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T12:57:03.813637 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T12:57:03.814249 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T12:57:03.814768 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T12:57:03.815211 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T12:57:03.815615 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T12:57:03.815999 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T12:57:03.816504 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T12:57:03.816977 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T12:57:03.817395 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T12:57:03.817771 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T12:57:03.818173 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T12:57:03.818727 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T12:57:03.819296 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T12:57:03.819846 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T12:57:03.820389 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T12:57:03.820929 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T12:57:03.821444 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T12:57:03.821887 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T12:57:03.822322 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T12:57:03.822755 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T12:57:03.823256 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T12:57:03.823702 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T12:57:03.824201 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T12:57:03.824706 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T12:57:03.825166 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T12:57:03.825656 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T12:57:03.826185 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T12:57:03.826722 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T12:57:03.827287 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T12:57:03.827773 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T12:57:03.828224 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T12:57:03.828667 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T12:57:03.829109 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T12:57:03.829527 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T12:57:03.829971 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T12:57:03.830449 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T12:57:03.830897 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T12:57:03.831301 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T12:57:03.831746 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T12:57:03.832162 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T12:57:03.832682 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T12:57:03.833246 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T12:57:03.833781 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T12:57:03.834245 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T12:57:03.834788 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T12:57:03.835298 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T12:57:03.835809 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T12:57:03.836375 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T12:57:03.836998 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T12:57:03.837567 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T12:57:03.838131 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T12:57:03.838635 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T12:57:03.839072 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T12:57:03.839547 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T12:57:03.840059 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T12:57:03.840533 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T12:57:03.840984 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T12:57:03.841439 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T12:57:03.841882 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T12:57:03.842358 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T12:57:03.842850 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T12:57:03.843320 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T12:57:03.843849 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T12:57:03.844423 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T12:57:03.845067 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T12:57:03.845655 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T12:57:03.852915 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T12:57:03.853608 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T12:57:03.854125 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T12:57:03.854593 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T12:57:03.855137 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T12:57:03.855595 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T12:57:03.856033 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T12:57:03.856491 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T12:57:03.856963 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T12:57:03.857528 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T12:57:03.858028 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T12:57:03.858490 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T12:57:03.859010 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T12:57:03.859499 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T12:57:03.859965 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T12:57:03.860403 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T12:57:03.860884 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T12:57:03.861338 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T12:57:03.861783 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T12:57:03.862272 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T12:57:03.862711 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T12:57:03.863127 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T12:57:03.863586 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T12:57:03.864042 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T12:57:03.864566 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T12:57:03.865078 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T12:57:03.865571 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T12:57:03.866063 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T12:57:03.866525 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T12:57:03.867040 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T12:57:03.867510 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T12:57:03.867996 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T12:57:03.868434 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T12:57:03.868883 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T12:57:03.870564 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T12:57:03.871196 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T12:57:03.871705 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T12:57:03.872280 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T12:57:03.872869 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T12:57:03.873492 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T12:57:03.874140 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T12:57:03.874670 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T12:57:03.875172 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T12:57:03.875690 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T12:57:03.876210 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T12:57:03.876728 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T12:57:03.877210 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T12:57:03.877723 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T12:57:03.878158 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T12:57:03.878686 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T12:57:03.879174 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T12:57:03.879663 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T12:57:03.880168 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T12:57:03.880659 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T12:57:03.881116 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T12:57:03.881646 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T12:57:03.882125 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T12:57:03.882630 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T12:57:03.883118 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T12:57:03.883626 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T12:57:03.884097 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T12:57:03.884646 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T12:57:03.885223 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T12:57:03.885794 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T12:57:03.886370 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T12:57:03.886969 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T12:57:03.887541 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T12:57:03.888115 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T12:57:03.888738 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T12:57:03.889325 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T12:57:03.889914 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T12:57:03.890515 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T12:57:03.891109 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T12:57:03.891710 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T12:57:03.892296 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T12:57:03.892939 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T12:57:03.893552 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T12:57:03.894096 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T12:57:03.894577 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T12:57:03.895101 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T12:57:03.895707 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T12:57:03.896332 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T12:57:03.896907 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T12:57:03.897503 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T12:57:03.898109 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T12:57:03.898738 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T12:57:03.899324 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T12:57:03.899913 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T12:57:03.900516 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T12:57:03.901102 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T12:57:03.901684 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T12:57:03.902278 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T12:57:03.902856 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T12:57:03.903440 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T12:57:03.903992 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T12:57:03.904616 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T12:57:03.905214 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T12:57:03.905786 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T12:57:03.906381 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T12:57:03.906956 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T12:57:03.907550 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T12:57:03.908152 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T12:57:03.908726 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T12:57:03.909318 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T12:57:03.909941 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T12:57:03.910513 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T12:57:03.911089 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T12:57:03.911663 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T12:57:03.912159 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T12:57:03.912694 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T12:57:03.913271 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T12:57:03.913875 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T12:57:03.914455 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T12:57:03.914990 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T12:57:03.915519 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T12:57:03.916068 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T12:57:03.916630 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T12:57:03.917207 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T12:57:03.917766 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T12:57:03.918295 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T12:57:03.918835 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T12:57:03.919382 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T12:57:03.919971 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T12:57:03.920507 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T12:57:03.921046 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T12:57:03.921543 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T12:57:03.922106 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T12:57:03.922661 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T12:57:03.923233 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T12:57:03.923805 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T12:57:03.924380 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T12:57:03.924962 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T12:57:03.925532 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T12:57:03.926139 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T12:57:03.926706 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T12:57:03.927215 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T12:57:03.927735 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T12:57:03.928162 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T12:57:03.928547 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T12:57:03.929000 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T12:57:03.929481 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T12:57:03.929875 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T12:57:03.930247 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T12:57:03.930657 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T12:57:03.931145 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T12:57:03.931731 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T12:57:03.932298 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T12:57:03.932888 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T12:57:03.933386 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T12:57:03.933796 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T12:57:03.934430 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T12:57:03.935038 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T12:57:03.935540 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T12:57:03.935966 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T12:57:03.936479 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T12:57:03.937073 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T12:57:03.937583 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T12:57:03.938109 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T12:57:03.938577 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T12:57:03.939033 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T12:57:03.939495 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T12:57:03.940013 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T12:57:03.940476 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T12:57:03.940912 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T12:57:03.941377 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T12:57:03.941852 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T12:57:03.942404 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T12:57:03.942966 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T12:57:03.943469 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T12:57:03.943964 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T12:57:03.944497 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T12:57:03.945051 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T12:57:03.945629 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T12:57:03.946214 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T12:57:03.946803 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T12:57:03.947432 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T12:57:04.081721 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T12:57:04.082226 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T12:57:04.082774 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T12:57:04.083199 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T12:57:04.083579 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T12:57:04.084049 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T12:57:04.084443 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T12:57:04.084840 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T12:57:04.085281 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T12:57:04.085712 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T12:57:04.086109 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T12:57:04.086491 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T12:57:04.086899 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T12:57:04.087338 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T12:57:04.087712 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T12:57:04.088110 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T12:57:04.088606 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T12:57:04.089149 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T12:57:04.089686 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T12:57:04.090251 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T12:57:04.090788 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T12:57:04.091335 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T12:57:04.091885 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T12:57:04.092419 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T12:57:04.092842 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T12:57:04.093205 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T12:57:04.093612 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T12:57:04.094055 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T12:57:04.094420 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T12:57:04.094846 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T12:57:04.095258 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T12:57:04.095642 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T12:57:04.096073 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T12:57:04.096452 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T12:57:04.096877 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T12:57:04.097350 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T12:57:04.097772 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T12:57:04.098149 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T12:57:04.098547 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T12:57:04.098924 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T12:57:04.099281 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T12:57:04.099817 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T12:57:04.100338 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T12:57:04.100913 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T12:57:04.101471 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T12:57:04.102012 #15577] INFO -- py3-windows-10-1903: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T12:57:04.102451 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.102911 #15577] INFO -- py3-windows-10-1903: ID: rename-extract +I, [2020-03-06T12:57:04.103313 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:04.103732 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.104129 #15577] INFO -- py3-windows-10-1903: Comment: file.rename: True +I, [2020-03-06T12:57:04.104574 #15577] INFO -- py3-windows-10-1903: Started: 09:55:25.630601 +I, [2020-03-06T12:57:04.104967 #15577] INFO -- py3-windows-10-1903: Duration: 0.0 ms +I, [2020-03-06T12:57:04.105409 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.105929 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.106447 #15577] INFO -- py3-windows-10-1903: file.rename: +I, [2020-03-06T12:57:04.106972 #15577] INFO -- py3-windows-10-1903: True +I, [2020-03-06T12:57:04.107480 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.108000 #15577] INFO -- py3-windows-10-1903: ID: pkg.refresh_db +I, [2020-03-06T12:57:04.108511 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:04.109019 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.109526 #15577] INFO -- py3-windows-10-1903: Comment: check_cmd determined the state succeeded +I, [2020-03-06T12:57:04.109890 #15577] INFO -- py3-windows-10-1903: Started: 09:55:25.630601 +I, [2020-03-06T12:57:04.110327 #15577] INFO -- py3-windows-10-1903: Duration: 6327.533 ms +I, [2020-03-06T12:57:04.110774 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.111149 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.111533 #15577] INFO -- py3-windows-10-1903: pkg.refresh_db: +I, [2020-03-06T12:57:04.111934 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.112345 #15577] INFO -- py3-windows-10-1903: failed: +I, [2020-03-06T12:57:04.112681 #15577] INFO -- py3-windows-10-1903: 0 +I, [2020-03-06T12:57:04.113023 #15577] INFO -- py3-windows-10-1903: success: +I, [2020-03-06T12:57:04.113439 #15577] INFO -- py3-windows-10-1903: 298 +I, [2020-03-06T12:57:04.113875 #15577] INFO -- py3-windows-10-1903: total: +I, [2020-03-06T12:57:04.114430 #15577] INFO -- py3-windows-10-1903: 298 +I, [2020-03-06T12:57:04.114956 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.115478 #15577] INFO -- py3-windows-10-1903: ID: git +I, [2020-03-06T12:57:04.116001 #15577] INFO -- py3-windows-10-1903: Function: pkg.installed +I, [2020-03-06T12:57:04.116506 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.117017 #15577] INFO -- py3-windows-10-1903: Comment: The following packages were installed/updated: git +I, [2020-03-06T12:57:04.117436 #15577] INFO -- py3-windows-10-1903: Started: 09:55:31.974892 +I, [2020-03-06T12:57:04.117778 #15577] INFO -- py3-windows-10-1903: Duration: 15904.873 ms +I, [2020-03-06T12:57:04.118183 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.118541 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.118948 #15577] INFO -- py3-windows-10-1903: git: +I, [2020-03-06T12:57:04.119333 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.119700 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:04.120067 #15577] INFO -- py3-windows-10-1903: 2.23.0.windows.1 +I, [2020-03-06T12:57:04.120467 #15577] INFO -- py3-windows-10-1903: old: +I, [2020-03-06T12:57:04.120892 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.121263 #15577] INFO -- py3-windows-10-1903: ID: 7zip +I, [2020-03-06T12:57:04.121622 #15577] INFO -- py3-windows-10-1903: Function: pkg.installed +I, [2020-03-06T12:57:04.122012 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.122416 #15577] INFO -- py3-windows-10-1903: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T12:57:04.122767 #15577] INFO -- py3-windows-10-1903: Started: 09:55:47.927536 +I, [2020-03-06T12:57:04.123125 #15577] INFO -- py3-windows-10-1903: Duration: 12328.162 ms +I, [2020-03-06T12:57:04.123491 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.123846 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.124207 #15577] INFO -- py3-windows-10-1903: 7zip: +I, [2020-03-06T12:57:04.124571 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.124997 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:04.125426 #15577] INFO -- py3-windows-10-1903: 18.06.00.0 +I, [2020-03-06T12:57:04.125829 #15577] INFO -- py3-windows-10-1903: old: +I, [2020-03-06T12:57:04.126303 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.126728 #15577] INFO -- py3-windows-10-1903: ID: kdiff3 +I, [2020-03-06T12:57:04.127106 #15577] INFO -- py3-windows-10-1903: Function: pkg.installed +I, [2020-03-06T12:57:04.127495 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.127955 #15577] INFO -- py3-windows-10-1903: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T12:57:04.128461 #15577] INFO -- py3-windows-10-1903: Started: 09:56:00.317382 +I, [2020-03-06T12:57:04.128966 #15577] INFO -- py3-windows-10-1903: Duration: 17109.249 ms +I, [2020-03-06T12:57:04.129482 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.129931 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.130301 #15577] INFO -- py3-windows-10-1903: kdiff3: +I, [2020-03-06T12:57:04.130711 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.131171 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:04.131537 #15577] INFO -- py3-windows-10-1903: Not Found +I, [2020-03-06T12:57:04.131936 #15577] INFO -- py3-windows-10-1903: old: +I, [2020-03-06T12:57:04.132372 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.132862 #15577] INFO -- py3-windows-10-1903: ID: windows_environment.refresh.path +I, [2020-03-06T12:57:04.133337 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:04.133750 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.134243 #15577] INFO -- py3-windows-10-1903: Comment: windows_environment.refresh: Success +I, [2020-03-06T12:57:04.134787 #15577] INFO -- py3-windows-10-1903: Started: 09:56:17.442252 +I, [2020-03-06T12:57:04.135314 #15577] INFO -- py3-windows-10-1903: Duration: 47.332 ms +I, [2020-03-06T12:57:04.135805 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.136329 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.136890 #15577] INFO -- py3-windows-10-1903: windows_environment.refresh: +I, [2020-03-06T12:57:04.137404 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.137938 #15577] INFO -- py3-windows-10-1903: PATH: +I, [2020-03-06T12:57:04.138500 #15577] INFO -- py3-windows-10-1903: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T12:57:04.139022 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.139548 #15577] INFO -- py3-windows-10-1903: ID: chocolatey.bootstrap +I, [2020-03-06T12:57:04.140071 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:04.140563 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.141014 #15577] INFO -- py3-windows-10-1903: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T12:57:04.141426 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.141968 #15577] INFO -- py3-windows-10-1903: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T12:57:04.142375 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.142807 #15577] INFO -- py3-windows-10-1903: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T12:57:04.143169 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.143612 #15577] INFO -- py3-windows-10-1903: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T12:57:04.143973 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.144379 #15577] INFO -- py3-windows-10-1903: Installing chocolatey on this machine +I, [2020-03-06T12:57:04.144791 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.145229 #15577] INFO -- py3-windows-10-1903: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T12:57:04.145616 #15577] INFO -- py3-windows-10-1903: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T12:57:04.145962 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.146360 #15577] INFO -- py3-windows-10-1903: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T12:57:04.146733 #15577] INFO -- py3-windows-10-1903: before you can use choco. +I, [2020-03-06T12:57:04.147077 #15577] INFO -- py3-windows-10-1903: Restricting write permissions to Administrators +I, [2020-03-06T12:57:04.147480 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.147878 #15577] INFO -- py3-windows-10-1903: We are setting up the Chocolatey package repository. +I, [2020-03-06T12:57:04.148210 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.148622 #15577] INFO -- py3-windows-10-1903: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T12:57:04.148988 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.149372 #15577] INFO -- py3-windows-10-1903: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T12:57:04.149719 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.150142 #15577] INFO -- py3-windows-10-1903: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T12:57:04.150505 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.150856 #15577] INFO -- py3-windows-10-1903: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T12:57:04.151200 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.151606 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.151918 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.152312 #15577] INFO -- py3-windows-10-1903: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T12:57:04.152686 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.153180 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.153651 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.154203 #15577] INFO -- py3-windows-10-1903: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T12:57:04.154781 #15577] INFO -- py3-windows-10-1903: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T12:57:04.155340 #15577] INFO -- py3-windows-10-1903: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T12:57:04.155919 #15577] INFO -- py3-windows-10-1903: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T12:57:04.156491 #15577] INFO -- py3-windows-10-1903: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T12:57:04.157051 #15577] INFO -- py3-windows-10-1903: Attempting to locate it from bootstrapper. +I, [2020-03-06T12:57:04.157530 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.158083 #15577] INFO -- py3-windows-10-1903: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T12:57:04.158658 #15577] INFO -- py3-windows-10-1903: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T12:57:04.159160 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.159729 #15577] INFO -- py3-windows-10-1903: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T12:57:04.160274 #15577] INFO -- py3-windows-10-1903: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T12:57:04.160688 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.161151 #15577] INFO -- py3-windows-10-1903: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T12:57:04.161507 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.161891 #15577] INFO -- py3-windows-10-1903: Run choco /? for a list of functions. +I, [2020-03-06T12:57:04.162304 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.162754 #15577] INFO -- py3-windows-10-1903: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T12:57:04.163112 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.163504 #15577] INFO -- py3-windows-10-1903: first prior to using choco. +I, [2020-03-06T12:57:04.163899 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.164311 #15577] INFO -- py3-windows-10-1903: Ensuring chocolatey commands are on the path +I, [2020-03-06T12:57:04.164631 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.165079 #15577] INFO -- py3-windows-10-1903: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T12:57:04.165502 #15577] INFO -- py3-windows-10-1903: Started: 09:56:17.505202 +I, [2020-03-06T12:57:04.165889 #15577] INFO -- py3-windows-10-1903: Duration: 22937.524 ms +I, [2020-03-06T12:57:04.166252 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.173561 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.174095 #15577] INFO -- py3-windows-10-1903: chocolatey.bootstrap: +I, [2020-03-06T12:57:04.174610 #15577] INFO -- py3-windows-10-1903: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T12:57:04.175058 #15577] INFO -- py3-windows-10-1903: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T12:57:04.175505 #15577] INFO -- py3-windows-10-1903: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T12:57:04.176048 #15577] INFO -- py3-windows-10-1903: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T12:57:04.176558 #15577] INFO -- py3-windows-10-1903: Installing chocolatey on this machine +I, [2020-03-06T12:57:04.176988 #15577] INFO -- py3-windows-10-1903: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T12:57:04.177450 #15577] INFO -- py3-windows-10-1903: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T12:57:04.177938 #15577] INFO -- py3-windows-10-1903: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T12:57:04.178347 #15577] INFO -- py3-windows-10-1903: before you can use choco. +I, [2020-03-06T12:57:04.178815 #15577] INFO -- py3-windows-10-1903: Restricting write permissions to Administrators +I, [2020-03-06T12:57:04.179231 #15577] INFO -- py3-windows-10-1903: We are setting up the Chocolatey package repository. +I, [2020-03-06T12:57:04.179763 #15577] INFO -- py3-windows-10-1903: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T12:57:04.180218 #15577] INFO -- py3-windows-10-1903: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T12:57:04.180729 #15577] INFO -- py3-windows-10-1903: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T12:57:04.181205 #15577] INFO -- py3-windows-10-1903: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T12:57:04.181637 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.182096 #15577] INFO -- py3-windows-10-1903: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T12:57:04.182504 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.182919 #15577] INFO -- py3-windows-10-1903: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T12:57:04.183443 #15577] INFO -- py3-windows-10-1903: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T12:57:04.184044 #15577] INFO -- py3-windows-10-1903: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T12:57:04.184642 #15577] INFO -- py3-windows-10-1903: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T12:57:04.185294 #15577] INFO -- py3-windows-10-1903: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T12:57:04.185861 #15577] INFO -- py3-windows-10-1903: Attempting to locate it from bootstrapper. +I, [2020-03-06T12:57:04.186384 #15577] INFO -- py3-windows-10-1903: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T12:57:04.186915 #15577] INFO -- py3-windows-10-1903: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T12:57:04.187523 #15577] INFO -- py3-windows-10-1903: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T12:57:04.188141 #15577] INFO -- py3-windows-10-1903: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T12:57:04.188750 #15577] INFO -- py3-windows-10-1903: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T12:57:04.189313 #15577] INFO -- py3-windows-10-1903: Run choco /? for a list of functions. +I, [2020-03-06T12:57:04.189843 #15577] INFO -- py3-windows-10-1903: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T12:57:04.190338 #15577] INFO -- py3-windows-10-1903: first prior to using choco. +I, [2020-03-06T12:57:04.190823 #15577] INFO -- py3-windows-10-1903: Ensuring chocolatey commands are on the path +I, [2020-03-06T12:57:04.191326 #15577] INFO -- py3-windows-10-1903: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T12:57:04.191781 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.192261 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T12:57:04.192693 #15577] INFO -- py3-windows-10-1903: Function: chocolatey.installed +I, [2020-03-06T12:57:04.193105 #15577] INFO -- py3-windows-10-1903: Name: notepadplusplus +I, [2020-03-06T12:57:04.193560 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.193917 #15577] INFO -- py3-windows-10-1903: Comment: +I, [2020-03-06T12:57:04.194400 #15577] INFO -- py3-windows-10-1903: Started: 09:56:40.442726 +I, [2020-03-06T12:57:04.194927 #15577] INFO -- py3-windows-10-1903: Duration: 10830.15 ms +I, [2020-03-06T12:57:04.195403 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.195787 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.196190 #15577] INFO -- py3-windows-10-1903: notepadplusplus: +I, [2020-03-06T12:57:04.196614 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.197061 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:04.197457 #15577] INFO -- py3-windows-10-1903: - 7.8.5 +I, [2020-03-06T12:57:04.197946 #15577] INFO -- py3-windows-10-1903: old: +I, [2020-03-06T12:57:04.198402 #15577] INFO -- py3-windows-10-1903: notepadplusplus.install: +I, [2020-03-06T12:57:04.198778 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.199194 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:04.199670 #15577] INFO -- py3-windows-10-1903: - 7.8.5 +I, [2020-03-06T12:57:04.200111 #15577] INFO -- py3-windows-10-1903: old: +I, [2020-03-06T12:57:04.200503 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.200972 #15577] INFO -- py3-windows-10-1903: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T12:57:04.201378 #15577] INFO -- py3-windows-10-1903: Function: chocolatey.installed +I, [2020-03-06T12:57:04.201783 #15577] INFO -- py3-windows-10-1903: Name: windirstat +I, [2020-03-06T12:57:04.202214 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.202614 #15577] INFO -- py3-windows-10-1903: Comment: +I, [2020-03-06T12:57:04.203042 #15577] INFO -- py3-windows-10-1903: Started: 09:56:51.272876 +I, [2020-03-06T12:57:04.203475 #15577] INFO -- py3-windows-10-1903: Duration: 5435.275 ms +I, [2020-03-06T12:57:04.203938 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.204358 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.204756 #15577] INFO -- py3-windows-10-1903: windirstat: +I, [2020-03-06T12:57:04.205207 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.205569 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:04.205956 #15577] INFO -- py3-windows-10-1903: - 1.1.2.20161210 +I, [2020-03-06T12:57:04.206327 #15577] INFO -- py3-windows-10-1903: old: +I, [2020-03-06T12:57:04.206817 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.207229 #15577] INFO -- py3-windows-10-1903: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T12:57:04.207594 #15577] INFO -- py3-windows-10-1903: Function: dism.feature_installed +I, [2020-03-06T12:57:04.207985 #15577] INFO -- py3-windows-10-1903: Name: TelnetClient +I, [2020-03-06T12:57:04.208396 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.208855 #15577] INFO -- py3-windows-10-1903: Comment: Installed TelnetClient +I, [2020-03-06T12:57:04.209240 #15577] INFO -- py3-windows-10-1903: Started: 09:56:56.708151 +I, [2020-03-06T12:57:04.209620 #15577] INFO -- py3-windows-10-1903: Duration: 6265.557 ms +I, [2020-03-06T12:57:04.210045 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.210503 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.210950 #15577] INFO -- py3-windows-10-1903: feature: +I, [2020-03-06T12:57:04.211364 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.211796 #15577] INFO -- py3-windows-10-1903: new: +I, [2020-03-06T12:57:04.212198 #15577] INFO -- py3-windows-10-1903: - TelnetClient +I, [2020-03-06T12:57:04.212664 #15577] INFO -- py3-windows-10-1903: pid: +I, [2020-03-06T12:57:04.213223 #15577] INFO -- py3-windows-10-1903: 4076 +I, [2020-03-06T12:57:04.213761 #15577] INFO -- py3-windows-10-1903: retcode: +I, [2020-03-06T12:57:04.214326 #15577] INFO -- py3-windows-10-1903: 0 +I, [2020-03-06T12:57:04.214871 #15577] INFO -- py3-windows-10-1903: stderr: +I, [2020-03-06T12:57:04.215441 #15577] INFO -- py3-windows-10-1903: stdout: +I, [2020-03-06T12:57:04.215969 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.216501 #15577] INFO -- py3-windows-10-1903: ID: windows.module.system.reboot +I, [2020-03-06T12:57:04.217076 #15577] INFO -- py3-windows-10-1903: Function: module.run +I, [2020-03-06T12:57:04.217614 #15577] INFO -- py3-windows-10-1903: Result: True +I, [2020-03-06T12:57:04.218138 #15577] INFO -- py3-windows-10-1903: Comment: system.reboot: True +I, [2020-03-06T12:57:04.218664 #15577] INFO -- py3-windows-10-1903: Started: 09:57:02.973708 +I, [2020-03-06T12:57:04.219209 #15577] INFO -- py3-windows-10-1903: Duration: 234.144 ms +I, [2020-03-06T12:57:04.219760 #15577] INFO -- py3-windows-10-1903: Changes: +I, [2020-03-06T12:57:04.220364 #15577] INFO -- py3-windows-10-1903: ---------- +I, [2020-03-06T12:57:04.220969 #15577] INFO -- py3-windows-10-1903: system.reboot: +I, [2020-03-06T12:57:04.221459 #15577] INFO -- py3-windows-10-1903: True +I, [2020-03-06T12:57:04.221847 #15577] INFO -- py3-windows-10-1903: +I, [2020-03-06T12:57:04.222352 #15577] INFO -- py3-windows-10-1903: Summary for local +I, [2020-03-06T12:57:04.222922 #15577] INFO -- py3-windows-10-1903: ------------- +I, [2020-03-06T12:57:04.223485 #15577] INFO -- py3-windows-10-1903: Succeeded: 25 (changed=25) +I, [2020-03-06T12:57:04.224028 #15577] INFO -- py3-windows-10-1903: Failed: 0 +I, [2020-03-06T12:57:04.224549 #15577] INFO -- py3-windows-10-1903: ------------- +I, [2020-03-06T12:57:04.225099 #15577] INFO -- py3-windows-10-1903: Total states run: 25 +I, [2020-03-06T12:57:04.225556 #15577] INFO -- py3-windows-10-1903: Total run time: 121.404 s +I, [2020-03-06T12:57:04.245771 #15577] INFO -- py3-windows-10-1903: Downloading files from +I, [2020-03-06T12:57:04.411941 #15577] INFO -- py3-windows-10-1903: Finished converging (2m41.86s). +I, [2020-03-06T12:57:04.412164 #15577] INFO -- py3-windows-10-1903: -----> Setting up ... +I, [2020-03-06T12:57:04.414645 #15577] INFO -- py3-windows-10-1903: Finished setting up (0m0.00s). +I, [2020-03-06T12:57:04.414810 #15577] INFO -- py3-windows-10-1903: -----> Verifying ... +I, [2020-03-06T12:57:05.575324 #15577] INFO -- py3-windows-10-1903: Loaded default +I, [2020-03-06T12:57:10.010526 #15577] INFO -- py3-windows-10-1903: [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). +I, [2020-03-06T12:58:23.551799 #15577] INFO -- py3-windows-10-1903: Finished verifying (1m19.13s). +I, [2020-03-06T12:58:23.551963 #15577] INFO -- py3-windows-10-1903: Finished testing (5m1.66s). +I, [2020-03-06T12:58:23.553321 #15577] INFO -- py3-windows-10-1903: -----> Destroying ... +I, [2020-03-06T12:58:33.389684 #15577] INFO -- py3-windows-10-1903: ==> default: Forcing shutdown of VM... +I, [2020-03-06T12:58:35.176173 #15577] INFO -- py3-windows-10-1903: ==> default: Destroying VM and associated drives... +I, [2020-03-06T12:58:35.838962 #15577] INFO -- py3-windows-10-1903: Vagrant instance destroyed. +I, [2020-03-06T12:58:35.840178 #15577] INFO -- py3-windows-10-1903: Finished destroying (0m12.29s). diff --git a/test/results/py3-windows-10-1903.log b/test/results/py3-windows-10-1903.log index 70894f2..aef0485 100644 --- a/test/results/py3-windows-10-1903.log +++ b/test/results/py3-windows-10-1903.log @@ -1,15 +1,13 @@ -Wed Mar 4 14:53:21 EST 2020 -commit 83df63b728d6440d0a2e75a16942f0c1d8916fb0 +Fri Mar 6 12:53:03 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Author: Peter Mudd -Date: Mon Mar 2 12:13:52 2020 -0500 +Date: Fri Mar 6 12:43:24 2020 -0500 - feat: convert `template-formula` to `windows-formula` - - BREAKING CHANGE: changed all state names and ids + feat: support saltstack 3000 CURRENT BRANCH COMMIT ID -83df63b728d6440d0a2e75a16942f0c1d8916fb0 +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e CURRENT RELEASE TAG -v1.0.1 +v1.0.0 -----> Starting Test Kitchen (v2.3.4) -----> Cleaning up any prior instances of -----> Destroying ... @@ -20,7 +18,7 @@ v1.0.1 ==> default: Cloning VM... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'StefanScherer/windows_10' version '2020.01.15' is up to date... - ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1903-e7944924-3788-4321-9739-cc0a6445a1d9 + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1903-6b2e3604-b707-400e-ae5a-98681f818615 ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat @@ -53,7 +51,7 @@ v1.0.1 [WinRM] Established Vagrant instance created. - Finished creating (1m1.87s). + Finished creating (1m0.65s). -----> Converging ... Preparing files for transfer Preparing salt-minion @@ -69,12 +67,12 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 11:54 AM temp - Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + d----- 3/6/2020 9:54 AM temp + Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe Installing Salt minion Starting the Salt minion service Salt minion successfully installed - You asked for latest and you have 2019.2.3 installed, sweet! + You asked for latest and you have 3000 installed, sweet! @@ -84,7 +82,7 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 11:55 AM kitchen + d----- 3/6/2020 9:54 AM kitchen Transferring files to @@ -97,13 +95,13 @@ v1.0.1 Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') @@ -122,8 +120,8 @@ v1.0.1 Name: saltstack1 Result: True Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot - Started: 11:55:19.833229 - Duration: 91.817 ms + Started: 09:55:01.584554 + Duration: 92.406 ms Changes: ---------- hostname: @@ -134,8 +132,8 @@ v1.0.1 Name: Saltstack Computer Description Result: True Comment: Computer description successfully changed to 'Saltstack Computer Description' - Started: 11:55:19.925046 - Duration: 2702.172 ms + Started: 09:55:01.676960 + Duration: 2703.133 ms Changes: ---------- new: @@ -147,8 +145,8 @@ v1.0.1 Name: America/New_York Result: True Comment: Set timezone America/New_York - Started: 11:55:22.644276 - Duration: 15.194 ms + Started: 09:55:04.411278 + Duration: 16.146 ms Changes: ---------- timezone: @@ -158,7 +156,7 @@ v1.0.1 Function: module.run Result: True Comment: environ.items: Success - Started: 11:55:22.675113 + Started: 09:55:04.442912 Duration: 0.0 ms Changes: ---------- @@ -249,8 +247,8 @@ v1.0.1 Function: module.run Result: True Comment: user.current: VAGRANT-10\vagrant - Started: 11:55:22.675113 - Duration: 15.442 ms + Started: 09:55:04.442912 + Duration: 46.439 ms Changes: ---------- user.current: @@ -259,25 +257,25 @@ v1.0.1 ID: windows.module.status.uptime Function: module.run Result: True - Comment: status.uptime: 0:01:20.740518 - Started: 11:55:22.690555 - Duration: 49.963 ms + Comment: status.uptime: 0:01:20.504924 + Started: 09:55:04.489351 + Duration: 15.573 ms Changes: ---------- status.uptime: - 0:01:20.740518 + 0:01:20.504924 ---------- ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection Function: cmd.run Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run - Started: 11:55:22.753995 - Duration: 2093.483 ms + Started: 09:55:04.520557 + Duration: 2062.348 ms Changes: ---------- pid: - 6712 + 2584 retcode: 0 stderr: @@ -288,12 +286,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run - Started: 11:55:24.862291 - Duration: 1859.384 ms + Started: 09:55:06.582905 + Duration: 1656.409 ms Changes: ---------- pid: - 3492 + 1184 retcode: 0 stderr: @@ -304,12 +302,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run - Started: 11:55:26.721675 - Duration: 1546.842 ms + Started: 09:55:08.239314 + Duration: 1547.052 ms Changes: ---------- pid: - 1864 + 2624 retcode: 0 stderr: @@ -320,12 +318,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run - Started: 11:55:28.268517 - Duration: 1546.941 ms + Started: 09:55:09.786366 + Duration: 1703.034 ms Changes: ---------- pid: - 3244 + 7004 retcode: 0 stderr: @@ -336,12 +334,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run - Started: 11:55:29.815458 - Duration: 1547.048 ms + Started: 09:55:11.489400 + Duration: 1453.314 ms Changes: ---------- pid: - 6044 + 1200 retcode: 0 stderr: @@ -352,8 +350,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 11:55:31.362506 - Duration: 8187.4 ms + Started: 09:55:12.942714 + Duration: 11718.532 ms Changes: ---------- reg: @@ -382,8 +380,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 11:55:39.549906 - Duration: 219.213 ms + Started: 09:55:24.661246 + Duration: 218.496 ms Changes: ---------- reg: @@ -412,8 +410,8 @@ v1.0.1 Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng Result: True Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs - Started: 11:55:39.769119 - Duration: 814.194 ms + Started: 09:55:24.879742 + Duration: 750.859 ms Changes: ---------- directories_created: @@ -782,8 +780,8 @@ v1.0.1 Function: module.run Result: True Comment: file.rename: True - Started: 11:55:40.583313 - Duration: 14.773 ms + Started: 09:55:25.630601 + Duration: 0.0 ms Changes: ---------- file.rename: @@ -793,8 +791,8 @@ v1.0.1 Function: module.run Result: True Comment: check_cmd determined the state succeeded - Started: 11:55:40.598086 - Duration: 7436.119 ms + Started: 09:55:25.630601 + Duration: 6327.533 ms Changes: ---------- pkg.refresh_db: @@ -810,8 +808,8 @@ v1.0.1 Function: pkg.installed Result: True Comment: The following packages were installed/updated: git - Started: 11:55:48.052983 - Duration: 18560.592 ms + Started: 09:55:31.974892 + Duration: 15904.873 ms Changes: ---------- git: @@ -820,40 +818,40 @@ v1.0.1 2.23.0.windows.1 old: ---------- - ID: kdiff3 + ID: 7zip Function: pkg.installed Result: True - Comment: The following packages were installed/updated: kdiff3 - Started: 11:56:06.613575 - Duration: 9139.736 ms + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 09:55:47.927536 + Duration: 12328.162 ms Changes: ---------- - kdiff3: + 7zip: ---------- new: - Not Found + 18.06.00.0 old: ---------- - ID: 7zip + ID: kdiff3 Function: pkg.installed Result: True - Comment: The following packages were installed/updated: 7zip=18.06.00.0 - Started: 11:56:15.769852 - Duration: 9701.71 ms + Comment: The following packages were installed/updated: kdiff3 + Started: 09:56:00.317382 + Duration: 17109.249 ms Changes: ---------- - 7zip: + kdiff3: ---------- new: - 18.06.00.0 + Not Found old: ---------- ID: windows_environment.refresh.path Function: module.run Result: True Comment: windows_environment.refresh: Success - Started: 11:56:25.471562 - Duration: 47.923 ms + Started: 09:56:17.442252 + Duration: 47.332 ms Changes: ---------- windows_environment.refresh: @@ -921,8 +919,8 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder - Started: 11:56:25.519485 - Duration: 22405.93 ms + Started: 09:56:17.505202 + Duration: 22937.524 ms Changes: ---------- chocolatey.bootstrap: @@ -966,19 +964,19 @@ v1.0.1 Name: notepadplusplus Result: True Comment: - Started: 11:56:47.925415 - Duration: 10906.232 ms + Started: 09:56:40.442726 + Duration: 10830.15 ms Changes: ---------- notepadplusplus: ---------- new: - - 7.8.4 + - 7.8.5 old: notepadplusplus.install: ---------- new: - - 7.8.4 + - 7.8.5 old: ---------- ID: windows.system.packages.chocolatey.windirstat @@ -986,8 +984,8 @@ v1.0.1 Name: windirstat Result: True Comment: - Started: 11:56:58.831647 - Duration: 5514.968 ms + Started: 09:56:51.272876 + Duration: 5435.275 ms Changes: ---------- windirstat: @@ -1001,16 +999,16 @@ v1.0.1 Name: TelnetClient Result: True Comment: Installed TelnetClient - Started: 11:57:04.346615 - Duration: 6078.279 ms + Started: 09:56:56.708151 + Duration: 6265.557 ms Changes: ---------- feature: ---------- new: - TelnetClient + - TelnetClient pid: - 4596 + 4076 retcode: 0 stderr: @@ -1020,8 +1018,8 @@ v1.0.1 Function: module.run Result: True Comment: system.reboot: True - Started: 11:57:10.424894 - Duration: 203.021 ms + Started: 09:57:02.973708 + Duration: 234.144 ms Changes: ---------- system.reboot: @@ -1033,16 +1031,20 @@ v1.0.1 Failed: 0 ------------- Total states run: 25 - Total run time: 110.698 s + Total run time: 121.404 s Downloading files from - Finished converging (2m29.87s). + Finished converging (2m41.86s). -----> Setting up ... Finished setting up (0m0.00s). -----> Verifying ... Loaded default -`execution expired`, target may be rebooting after highstate. Remaining retries: 20 + [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). +`[WSMAN ERROR CODE: 995]: The I/O operation has been aborted because of either a thread exit or an application request. `, target may be rebooting after highstate. Remaining retries: 20 `execution expired`, target may be rebooting after highstate. Remaining retries: 19 `execution expired`, target may be rebooting after highstate. Remaining retries: 18 +`execution expired`, target may be rebooting after highstate. Remaining retries: 17 +`execution expired`, target may be rebooting after highstate. Remaining retries: 16 +`execution expired`, target may be rebooting after highstate. Remaining retries: 15 INFO: Got pillar from the target minion using WinRM. Profile: SaltStack Windows Formula (default) @@ -1083,13 +1085,13 @@ Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 Profile Summary: 9 successful controls, 0 control failures, 1 control skipped Test Summary: 19 successful, 0 failures, 1 skipped - Finished verifying (0m52.99s). + Finished verifying (1m19.13s). + Finished testing (5m1.66s). -----> Destroying ... ==> default: Forcing shutdown of VM... ==> default: Destroying VM and associated drives... Vagrant instance destroyed. - Finished destroying (0m13.32s). - Finished testing (4m38.07s). ------> Test Kitchen is finished. (4m50.57s) + Finished destroying (0m12.29s). +-----> Test Kitchen is finished. (5m25.95s) KITCHEN TEST EXIT CODE 0 diff --git a/test/results/py3-windows-10-1903.salt.log b/test/results/py3-windows-10-1903.salt.log index fd40555..0d8beab 100755 --- a/test/results/py3-windows-10-1903.salt.log +++ b/test/results/py3-windows-10-1903.salt.log @@ -1,31 +1,31 @@ -2020-03-04 11:55:12,284 [salt.loader :747 ][DEBUG ][5396] Grains refresh requested. Refreshing grains. -2020-03-04 11:55:12,299 [salt.config :2190][DEBUG ][5396] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 11:55:12,299 [salt.config :2334][DEBUG ][5396] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 11:55:12,299 [salt.config :2190][DEBUG ][5396] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 11:55:17,080 [salt.pillar :57 ][DEBUG ][5396] Determining pillar cache -2020-03-04 11:55:17,128 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:17,128 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:17,128 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 11:55:17,146 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 11:55:17,156 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.009526729583740234 -2020-03-04 11:55:17,159 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +2020-03-06 09:54:53,540 [salt.loader :770 ][DEBUG ][5008] Grains refresh requested. Refreshing grains. +2020-03-06 09:54:53,540 [salt.config :2111][DEBUG ][5008] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 09:54:53,540 [salt.config :2255][DEBUG ][5008] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 09:54:53,552 [salt.config :2111][DEBUG ][5008] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 09:54:58,473 [salt.pillar :57 ][DEBUG ][5008] Determining pillar cache +2020-03-06 09:54:58,505 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:54:58,505 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:54:58,520 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 09:54:58,520 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 09:54:58,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015505313873291016 +2020-03-06 09:54:58,536 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: --- base: "*": - windows -2020-03-04 11:55:17,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:54:58,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 11:55:17,159 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:17,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded confirm_top.confirm_top -2020-03-04 11:55:17,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded compound_match.match -2020-03-04 11:55:17,159 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5396] compound_match: vagrant-10 ? * -2020-03-04 11:55:17,177 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded glob_match.match -2020-03-04 11:55:17,177 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5396] compound_match vagrant-10 ? "*" => "True" -2020-03-04 11:55:17,177 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 11:55:17,177 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 11:55:17,177 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:17,177 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +2020-03-06 09:54:58,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:54:58,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded confirm_top.confirm_top +2020-03-06 09:54:58,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded compound_match.match +2020-03-06 09:54:58,551 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5008] compound_match: vagrant-10 ? * +2020-03-06 09:54:58,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded glob_match.match +2020-03-06 09:54:58,551 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5008] compound_match vagrant-10 ? "*" => "True" +2020-03-06 09:54:58,551 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 09:54:58,551 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 09:54:58,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.015825986862182617 +2020-03-06 09:54:58,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: # -*- coding: utf-8 -*- # vim: ft=yaml --- @@ -427,283 +427,292 @@ windows: password_never_expires: false disallow_change_password: false -2020-03-04 11:55:17,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:54:58,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 11:55:17,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0009908676147460938 -2020-03-04 11:55:17,221 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:17,221 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:17,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded state.highstate -2020-03-04 11:55:17,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded direct_call.execute -2020-03-04 11:55:17,300 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded grains.get -2020-03-04 11:55:17,347 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded saltutil.is_running -2020-03-04 11:55:17,378 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded config.get -2020-03-04 11:55:17,392 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: test, ret: _|- -2020-03-04 11:55:17,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:17,644 [git.cmd :722 ][DEBUG ][5396] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) -2020-03-04 11:55:17,660 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:17,674 [salt.fileserver :502 ][DEBUG ][5396] Updating roots fileserver cache -2020-03-04 11:55:17,721 [salt.state :736 ][DEBUG ][5396] Gathering pillar data for state run -2020-03-04 11:55:17,721 [salt.state :750 ][DEBUG ][5396] Finished gathering pillar data for state run -2020-03-04 11:55:17,721 [salt.state :966 ][INFO ][5396] Loading fresh modules for state activity -2020-03-04 11:55:17,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:17,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:17,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' -2020-03-04 11:55:17,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' -2020-03-04 11:55:17,753 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' -2020-03-04 11:55:17,767 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:17,768 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'top.sls' -2020-03-04 11:55:17,768 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls -2020-03-04 11:55:17,768 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:17,785 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:17,800 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:17,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.032076358795166016 -2020-03-04 11:55:17,800 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +2020-03-06 09:54:58,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:54:58,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:54:58,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:54:58,679 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded state.highstate +2020-03-06 09:54:58,695 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded direct_call.execute +2020-03-06 09:54:58,695 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded grains.get +2020-03-06 09:54:58,754 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded saltutil.is_running +2020-03-06 09:54:58,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded config.get +2020-03-06 09:54:58,817 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: test, ret: _|- +2020-03-06 09:54:58,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,083 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:54:59,083 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:54:59,114 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,114 [salt.fileserver :502 ][DEBUG ][5008] Updating roots fileserver cache +2020-03-06 09:54:59,162 [salt.state :735 ][DEBUG ][5008] Gathering pillar data for state run +2020-03-06 09:54:59,175 [salt.state :749 ][DEBUG ][5008] Finished gathering pillar data for state run +2020-03-06 09:54:59,176 [salt.state :1014][INFO ][5008] Loading fresh modules for state activity +2020-03-06 09:54:59,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:54:59,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:54:59,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 09:54:59,208 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 09:54:59,208 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 09:54:59,224 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:54:59,224 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 09:54:59,224 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 09:54:59,224 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:54:59,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,255 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.03130912780761719 +2020-03-06 09:54:59,270 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: --- base: "*": - windows -2020-03-04 11:55:17,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:54:59,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 11:55:17,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:17,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded confirm_top.confirm_top -2020-03-04 11:55:17,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded compound_match.match -2020-03-04 11:55:17,814 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5396] compound_match: vagrant-10 ? * -2020-03-04 11:55:17,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded glob_match.match -2020-03-04 11:55:17,815 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5396] compound_match vagrant-10 ? "*" => "True" -2020-03-04 11:55:17,815 [salt.fileclient :1368][DEBUG ][5396] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. -2020-03-04 11:55:17,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded saltutil.sync_all -2020-03-04 11:55:17,815 [salt.loaded.int.module.saltutil:968 ][DEBUG ][5396] Syncing all -2020-03-04 11:55:17,815 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' -2020-03-04 11:55:17,834 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:17,846 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:17,846 [salt.utils.extmods:90 ][INFO ][5396] Syncing clouds for environment 'base' -2020-03-04 11:55:17,846 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_clouds, for base) -2020-03-04 11:55:17,846 [salt.fileclient :234 ][INFO ][5396] Caching directory '_clouds/' for environment 'base' -2020-03-04 11:55:17,846 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:17,846 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' -2020-03-04 11:55:17,846 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' -2020-03-04 11:55:17,863 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:17,878 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:17,878 [salt.utils.extmods:90 ][INFO ][5396] Syncing beacons for environment 'base' -2020-03-04 11:55:17,878 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_beacons, for base) -2020-03-04 11:55:17,878 [salt.fileclient :234 ][INFO ][5396] Caching directory '_beacons/' for environment 'base' -2020-03-04 11:55:17,878 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:17,878 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' -2020-03-04 11:55:17,878 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' -2020-03-04 11:55:17,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:17,909 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:17,909 [salt.utils.extmods:90 ][INFO ][5396] Syncing modules for environment 'base' -2020-03-04 11:55:17,909 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_modules, for base) -2020-03-04 11:55:17,909 [salt.fileclient :234 ][INFO ][5396] Caching directory '_modules/' for environment 'base' -2020-03-04 11:55:17,909 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:17,909 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 11:55:17,909 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 11:55:17,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' -2020-03-04 11:55:17,924 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:17,925 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' -2020-03-04 11:55:17,925 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' -2020-03-04 11:55:17,925 [salt.utils.extmods:119 ][INFO ][5396] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' -2020-03-04 11:55:17,925 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' -2020-03-04 11:55:17,941 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:17,941 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:17,957 [salt.utils.extmods:90 ][INFO ][5396] Syncing states for environment 'base' -2020-03-04 11:55:17,957 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_states, for base) -2020-03-04 11:55:17,957 [salt.fileclient :234 ][INFO ][5396] Caching directory '_states/' for environment 'base' -2020-03-04 11:55:17,957 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:17,957 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' -2020-03-04 11:55:17,957 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' -2020-03-04 11:55:17,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:17,988 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:17,988 [salt.utils.extmods:90 ][INFO ][5396] Syncing sdb for environment 'base' -2020-03-04 11:55:17,988 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_sdb, for base) -2020-03-04 11:55:17,988 [salt.fileclient :234 ][INFO ][5396] Caching directory '_sdb/' for environment 'base' -2020-03-04 11:55:17,988 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:17,988 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' -2020-03-04 11:55:17,988 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' -2020-03-04 11:55:18,003 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,034 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,034 [salt.utils.extmods:90 ][INFO ][5396] Syncing grains for environment 'base' -2020-03-04 11:55:18,034 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_grains, for base) -2020-03-04 11:55:18,034 [salt.fileclient :234 ][INFO ][5396] Caching directory '_grains/' for environment 'base' -2020-03-04 11:55:18,034 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,034 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' -2020-03-04 11:55:18,034 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' -2020-03-04 11:55:18,050 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,050 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,068 [salt.utils.extmods:90 ][INFO ][5396] Syncing renderers for environment 'base' -2020-03-04 11:55:18,068 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_renderers, for base) -2020-03-04 11:55:18,068 [salt.fileclient :234 ][INFO ][5396] Caching directory '_renderers/' for environment 'base' -2020-03-04 11:55:18,068 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,068 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' -2020-03-04 11:55:18,068 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' -2020-03-04 11:55:18,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,096 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,096 [salt.utils.extmods:90 ][INFO ][5396] Syncing returners for environment 'base' -2020-03-04 11:55:18,096 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_returners, for base) -2020-03-04 11:55:18,096 [salt.fileclient :234 ][INFO ][5396] Caching directory '_returners/' for environment 'base' -2020-03-04 11:55:18,096 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,096 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' -2020-03-04 11:55:18,096 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' -2020-03-04 11:55:18,112 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,127 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,127 [salt.utils.extmods:90 ][INFO ][5396] Syncing output for environment 'base' -2020-03-04 11:55:18,127 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_output, for base) -2020-03-04 11:55:18,127 [salt.fileclient :234 ][INFO ][5396] Caching directory '_output/' for environment 'base' -2020-03-04 11:55:18,127 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,127 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' -2020-03-04 11:55:18,127 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' -2020-03-04 11:55:18,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,159 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,159 [salt.utils.extmods:90 ][INFO ][5396] Syncing utils for environment 'base' -2020-03-04 11:55:18,159 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_utils, for base) -2020-03-04 11:55:18,159 [salt.fileclient :234 ][INFO ][5396] Caching directory '_utils/' for environment 'base' -2020-03-04 11:55:18,159 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,159 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' -2020-03-04 11:55:18,174 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' -2020-03-04 11:55:18,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,190 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,190 [salt.utils.extmods:90 ][INFO ][5396] Syncing log_handlers for environment 'base' -2020-03-04 11:55:18,190 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_log_handlers, for base) -2020-03-04 11:55:18,190 [salt.fileclient :234 ][INFO ][5396] Caching directory '_log_handlers/' for environment 'base' -2020-03-04 11:55:18,190 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,206 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' -2020-03-04 11:55:18,206 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' -2020-03-04 11:55:18,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,222 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,222 [salt.utils.extmods:90 ][INFO ][5396] Syncing proxy for environment 'base' -2020-03-04 11:55:18,222 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_proxy, for base) -2020-03-04 11:55:18,222 [salt.fileclient :234 ][INFO ][5396] Caching directory '_proxy/' for environment 'base' -2020-03-04 11:55:18,222 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,237 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' -2020-03-04 11:55:18,237 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' -2020-03-04 11:55:18,253 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,253 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,253 [salt.utils.extmods:90 ][INFO ][5396] Syncing engines for environment 'base' -2020-03-04 11:55:18,253 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_engines, for base) -2020-03-04 11:55:18,267 [salt.fileclient :234 ][INFO ][5396] Caching directory '_engines/' for environment 'base' -2020-03-04 11:55:18,268 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,268 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' -2020-03-04 11:55:18,268 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' -2020-03-04 11:55:18,285 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,285 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,285 [salt.utils.extmods:90 ][INFO ][5396] Syncing thorium for environment 'base' -2020-03-04 11:55:18,285 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_thorium, for base) -2020-03-04 11:55:18,299 [salt.fileclient :234 ][INFO ][5396] Caching directory '_thorium/' for environment 'base' -2020-03-04 11:55:18,300 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,300 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' -2020-03-04 11:55:18,300 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' -2020-03-04 11:55:18,316 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,316 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,316 [salt.utils.extmods:90 ][INFO ][5396] Syncing serializers for environment 'base' -2020-03-04 11:55:18,316 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_serializers, for base) -2020-03-04 11:55:18,330 [salt.fileclient :234 ][INFO ][5396] Caching directory '_serializers/' for environment 'base' -2020-03-04 11:55:18,331 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,331 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' -2020-03-04 11:55:18,331 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' -2020-03-04 11:55:18,347 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,347 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,347 [salt.utils.extmods:90 ][INFO ][5396] Syncing matchers for environment 'base' -2020-03-04 11:55:18,347 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_matchers, for base) -2020-03-04 11:55:18,361 [salt.fileclient :234 ][INFO ][5396] Caching directory '_matchers/' for environment 'base' -2020-03-04 11:55:18,362 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,362 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' -2020-03-04 11:55:18,362 [salt.utils.extmods:79 ][INFO ][5396] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' -2020-03-04 11:55:18,378 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:18,378 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:18,378 [salt.utils.extmods:90 ][INFO ][5396] Syncing pillar for environment 'base' -2020-03-04 11:55:18,393 [salt.utils.extmods:94 ][INFO ][5396] Loading cache from salt://_pillar, for base) -2020-03-04 11:55:18,393 [salt.fileclient :234 ][INFO ][5396] Caching directory '_pillar/' for environment 'base' -2020-03-04 11:55:18,393 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:18,393 [salt.utils.extmods:109 ][DEBUG ][5396] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' -2020-03-04 11:55:18,393 [salt.state :1000][DEBUG ][5396] Refreshing modules... -2020-03-04 11:55:18,409 [salt.state :966 ][INFO ][5396] Loading fresh modules for state activity -2020-03-04 11:55:18,431 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:18,445 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:18,445 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows.sls' in saltenv 'base' -2020-03-04 11:55:18,445 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 11:55:18,452 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 11:55:18,452 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' -2020-03-04 11:55:18,452 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,456 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' -2020-03-04 11:55:18,456 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls -2020-03-04 11:55:18,456 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,456 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' -2020-03-04 11:55:18,471 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,471 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' -2020-03-04 11:55:18,487 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,487 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,487 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,487 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,487 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' -2020-03-04 11:55:18,502 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,502 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,502 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,502 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,502 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' -2020-03-04 11:55:18,502 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,502 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,502 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,518 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,518 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' -2020-03-04 11:55:18,518 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,518 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,518 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,518 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,533 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,534 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,534 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,550 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' -2020-03-04 11:55:18,550 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded config.get -2020-03-04 11:55:18,550 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded grains.filter_by -2020-03-04 11:55:18,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.10908222198486328 -2020-03-04 11:55:18,565 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +2020-03-06 09:54:59,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:54:59,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded confirm_top.confirm_top +2020-03-06 09:54:59,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded compound_match.match +2020-03-06 09:54:59,270 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5008] compound_match: vagrant-10 ? * +2020-03-06 09:54:59,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded glob_match.match +2020-03-06 09:54:59,287 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5008] compound_match vagrant-10 ? "*" => "True" +2020-03-06 09:54:59,287 [salt.fileclient :1376][DEBUG ][5008] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 09:54:59,287 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded saltutil.sync_all +2020-03-06 09:54:59,287 [salt.loaded.int.module.saltutil:1009][DEBUG ][5008] Syncing all +2020-03-06 09:54:59,287 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 09:54:59,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,317 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,317 [salt.utils.extmods:90 ][INFO ][5008] Syncing clouds for environment 'base' +2020-03-06 09:54:59,317 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_clouds, for base) +2020-03-06 09:54:59,317 [salt.fileclient :234 ][INFO ][5008] Caching directory '_clouds/' for environment 'base' +2020-03-06 09:54:59,317 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,317 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 09:54:59,317 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 09:54:59,332 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,354 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,354 [salt.utils.extmods:90 ][INFO ][5008] Syncing beacons for environment 'base' +2020-03-06 09:54:59,354 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_beacons, for base) +2020-03-06 09:54:59,363 [salt.fileclient :234 ][INFO ][5008] Caching directory '_beacons/' for environment 'base' +2020-03-06 09:54:59,364 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,364 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 09:54:59,364 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 09:54:59,381 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,381 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,396 [salt.utils.extmods:90 ][INFO ][5008] Syncing modules for environment 'base' +2020-03-06 09:54:59,396 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_modules, for base) +2020-03-06 09:54:59,396 [salt.fileclient :234 ][INFO ][5008] Caching directory '_modules/' for environment 'base' +2020-03-06 09:54:59,396 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,396 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 09:54:59,396 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 09:54:59,396 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 09:54:59,396 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:54:59,410 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 09:54:59,411 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 09:54:59,411 [salt.utils.extmods:119 ][INFO ][5008] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 09:54:59,411 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 09:54:59,428 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,442 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,442 [salt.utils.extmods:90 ][INFO ][5008] Syncing states for environment 'base' +2020-03-06 09:54:59,442 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_states, for base) +2020-03-06 09:54:59,442 [salt.fileclient :234 ][INFO ][5008] Caching directory '_states/' for environment 'base' +2020-03-06 09:54:59,442 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,442 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 09:54:59,442 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 09:54:59,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,473 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,473 [salt.utils.extmods:90 ][INFO ][5008] Syncing sdb for environment 'base' +2020-03-06 09:54:59,473 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_sdb, for base) +2020-03-06 09:54:59,473 [salt.fileclient :234 ][INFO ][5008] Caching directory '_sdb/' for environment 'base' +2020-03-06 09:54:59,473 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,473 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 09:54:59,473 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 09:54:59,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,504 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,504 [salt.utils.extmods:90 ][INFO ][5008] Syncing grains for environment 'base' +2020-03-06 09:54:59,504 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_grains, for base) +2020-03-06 09:54:59,504 [salt.fileclient :234 ][INFO ][5008] Caching directory '_grains/' for environment 'base' +2020-03-06 09:54:59,504 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,504 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 09:54:59,504 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 09:54:59,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,536 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,536 [salt.utils.extmods:90 ][INFO ][5008] Syncing renderers for environment 'base' +2020-03-06 09:54:59,536 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_renderers, for base) +2020-03-06 09:54:59,536 [salt.fileclient :234 ][INFO ][5008] Caching directory '_renderers/' for environment 'base' +2020-03-06 09:54:59,550 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,551 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 09:54:59,551 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 09:54:59,568 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,568 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,582 [salt.utils.extmods:90 ][INFO ][5008] Syncing returners for environment 'base' +2020-03-06 09:54:59,582 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_returners, for base) +2020-03-06 09:54:59,582 [salt.fileclient :234 ][INFO ][5008] Caching directory '_returners/' for environment 'base' +2020-03-06 09:54:59,582 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,582 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 09:54:59,582 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 09:54:59,599 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,614 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,614 [salt.utils.extmods:90 ][INFO ][5008] Syncing output for environment 'base' +2020-03-06 09:54:59,614 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_output, for base) +2020-03-06 09:54:59,614 [salt.fileclient :234 ][INFO ][5008] Caching directory '_output/' for environment 'base' +2020-03-06 09:54:59,614 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,614 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 09:54:59,614 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 09:54:59,629 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,646 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,646 [salt.utils.extmods:90 ][INFO ][5008] Syncing utils for environment 'base' +2020-03-06 09:54:59,646 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_utils, for base) +2020-03-06 09:54:59,646 [salt.fileclient :234 ][INFO ][5008] Caching directory '_utils/' for environment 'base' +2020-03-06 09:54:59,646 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,646 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 09:54:59,646 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 09:54:59,677 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,677 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,677 [salt.utils.extmods:90 ][INFO ][5008] Syncing log_handlers for environment 'base' +2020-03-06 09:54:59,677 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_log_handlers, for base) +2020-03-06 09:54:59,691 [salt.fileclient :234 ][INFO ][5008] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 09:54:59,692 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,692 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 09:54:59,692 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\executors' +2020-03-06 09:54:59,709 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,724 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,724 [salt.utils.extmods:90 ][INFO ][5008] Syncing executors for environment 'base' +2020-03-06 09:54:59,724 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_executors, for base) +2020-03-06 09:54:59,724 [salt.fileclient :234 ][INFO ][5008] Caching directory '_executors/' for environment 'base' +2020-03-06 09:54:59,724 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,724 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_executors' +2020-03-06 09:54:59,724 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 09:54:59,739 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,755 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,755 [salt.utils.extmods:90 ][INFO ][5008] Syncing proxy for environment 'base' +2020-03-06 09:54:59,755 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_proxy, for base) +2020-03-06 09:54:59,755 [salt.fileclient :234 ][INFO ][5008] Caching directory '_proxy/' for environment 'base' +2020-03-06 09:54:59,755 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,755 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 09:54:59,755 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 09:54:59,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,786 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,786 [salt.utils.extmods:90 ][INFO ][5008] Syncing engines for environment 'base' +2020-03-06 09:54:59,786 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_engines, for base) +2020-03-06 09:54:59,786 [salt.fileclient :234 ][INFO ][5008] Caching directory '_engines/' for environment 'base' +2020-03-06 09:54:59,786 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,786 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 09:54:59,802 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 09:54:59,818 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,818 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,832 [salt.utils.extmods:90 ][INFO ][5008] Syncing thorium for environment 'base' +2020-03-06 09:54:59,832 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_thorium, for base) +2020-03-06 09:54:59,832 [salt.fileclient :234 ][INFO ][5008] Caching directory '_thorium/' for environment 'base' +2020-03-06 09:54:59,832 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,832 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 09:54:59,832 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 09:54:59,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,864 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,864 [salt.utils.extmods:90 ][INFO ][5008] Syncing serializers for environment 'base' +2020-03-06 09:54:59,864 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_serializers, for base) +2020-03-06 09:54:59,864 [salt.fileclient :234 ][INFO ][5008] Caching directory '_serializers/' for environment 'base' +2020-03-06 09:54:59,864 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,864 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 09:54:59,864 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 09:54:59,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,895 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,895 [salt.utils.extmods:90 ][INFO ][5008] Syncing matchers for environment 'base' +2020-03-06 09:54:59,895 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_matchers, for base) +2020-03-06 09:54:59,895 [salt.fileclient :234 ][INFO ][5008] Caching directory '_matchers/' for environment 'base' +2020-03-06 09:54:59,895 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,895 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 09:54:59,895 [salt.utils.extmods:79 ][INFO ][5008] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 09:54:59,927 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:54:59,927 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:54:59,927 [salt.utils.extmods:90 ][INFO ][5008] Syncing pillar for environment 'base' +2020-03-06 09:54:59,927 [salt.utils.extmods:94 ][INFO ][5008] Loading cache from salt://_pillar, for base) +2020-03-06 09:54:59,942 [salt.fileclient :234 ][INFO ][5008] Caching directory '_pillar/' for environment 'base' +2020-03-06 09:54:59,942 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:54:59,942 [salt.utils.extmods:109 ][DEBUG ][5008] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 09:54:59,942 [salt.state :1048][DEBUG ][5008] Refreshing modules... +2020-03-06 09:54:59,958 [salt.state :1014][INFO ][5008] Loading fresh modules for state activity +2020-03-06 09:55:00,010 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:00,010 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:00,010 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 09:55:00,016 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 09:55:00,016 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 09:55:00,020 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 09:55:00,020 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,020 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 09:55:00,020 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 09:55:00,020 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,036 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,036 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,036 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 09:55:00,036 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,036 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 09:55:00,068 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,068 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,068 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,068 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,068 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 09:55:00,068 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,068 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,082 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,082 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,082 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 09:55:00,082 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,082 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,082 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,082 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,098 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,098 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,098 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,115 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 09:55:00,115 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,115 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,115 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,115 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,115 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 09:55:00,131 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded config.get +2020-03-06 09:55:00,131 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded grains.filter_by +2020-03-06 09:55:00,131 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.11128377914428711 +2020-03-06 09:55:00,131 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .states - .modules - .system -2020-03-04 11:55:18,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,131 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.states', '.modules', '.system'])]) -2020-03-04 11:55:18,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,565 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 11:55:18,565 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 11:55:18,565 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' -2020-03-04 11:55:18,565 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,565 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' -2020-03-04 11:55:18,565 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls -2020-03-04 11:55:18,581 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,581 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:55:18,581 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:55:18,581 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' -2020-03-04 11:55:18,581 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,581 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' -2020-03-04 11:55:18,628 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,628 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,643 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,643 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.0937342643737793 -2020-03-04 11:55:18,674 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +2020-03-06 09:55:00,131 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,144 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 09:55:00,145 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 09:55:00,145 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 09:55:00,145 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,145 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 09:55:00,145 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 09:55:00,145 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,145 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:55:00,145 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:55:00,161 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 09:55:00,161 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,161 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 09:55:00,204 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,206 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,223 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,239 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,239 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,239 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.09355926513671875 +2020-03-06 09:55:00,239 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -722,34 +731,34 @@ windows.state.timezone.system.America/New_York: -2020-03-04 11:55:18,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,254 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) -2020-03-04 11:55:18,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,674 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 11:55:18,674 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 11:55:18,690 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' -2020-03-04 11:55:18,690 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,690 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' -2020-03-04 11:55:18,690 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls -2020-03-04 11:55:18,690 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,690 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:55:18,690 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:55:18,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,768 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,768 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,768 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,768 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,768 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.09364461898803711 -2020-03-04 11:55:18,784 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +2020-03-06 09:55:00,254 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,254 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 09:55:00,254 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 09:55:00,254 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 09:55:00,254 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,254 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 09:55:00,254 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 09:55:00,254 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,270 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:55:00,270 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:55:00,304 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,304 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,320 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,320 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,320 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,339 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,339 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,339 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,339 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,339 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,339 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,349 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,349 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,349 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.0950918197631836 +2020-03-06 09:55:00,349 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -777,33 +786,33 @@ windows.module.status.uptime: - windows.module.user.current -2020-03-04 11:55:18,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) -2020-03-04 11:55:18,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,784 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system.sls' in saltenv 'base' -2020-03-04 11:55:18,784 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 11:55:18,784 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 11:55:18,784 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' -2020-03-04 11:55:18,784 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,799 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' -2020-03-04 11:55:18,799 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls -2020-03-04 11:55:18,799 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,799 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,799 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,816 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,816 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,816 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,831 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,846 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,846 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.04674553871154785 -2020-03-04 11:55:18,846 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +2020-03-06 09:55:00,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,366 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 09:55:00,366 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 09:55:00,366 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 09:55:00,366 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 09:55:00,366 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,366 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 09:55:00,366 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 09:55:00,366 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,382 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,382 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,399 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,399 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,399 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,399 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,399 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,399 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,412 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,412 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,412 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,412 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,412 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,412 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,429 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.06309819221496582 +2020-03-06 09:55:00,429 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls # sls: windows.system windows system @@ -820,19 +829,19 @@ include: - .desktop -2020-03-04 11:55:18,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,429 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.packages', '.server', '.desktop'])]) -2020-03-04 11:55:18,846 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,846 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' -2020-03-04 11:55:18,846 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 11:55:18,862 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 11:55:18,862 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' -2020-03-04 11:55:18,862 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,862 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' -2020-03-04 11:55:18,862 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls -2020-03-04 11:55:18,862 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:18,862 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +2020-03-06 09:55:00,429 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,429 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 09:55:00,429 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 09:55:00,429 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 09:55:00,429 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 09:55:00,429 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,443 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 09:55:00,443 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 09:55:00,443 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,443 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:00,443 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -841,67 +850,67 @@ include: - .powershell - .saltstack - .chocolatey -2020-03-04 11:55:18,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,443 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) -2020-03-04 11:55:18,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,862 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' -2020-03-04 11:55:18,862 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 11:55:18,862 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 11:55:18,862 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' -2020-03-04 11:55:18,878 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,878 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' -2020-03-04 11:55:18,878 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls -2020-03-04 11:55:18,878 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,878 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:18,878 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +2020-03-06 09:55:00,443 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,443 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 09:55:00,443 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 09:55:00,443 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 09:55:00,443 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 09:55:00,443 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,458 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 09:55:00,458 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 09:55:00,458 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:00,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .remove-provisioned-apps -2020-03-04 11:55:18,878 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.remove-provisioned-apps'])]) -2020-03-04 11:55:18,878 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,878 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:55:18,878 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:55:18,878 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:55:18,878 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,893 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:55:18,893 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls -2020-03-04 11:55:18,893 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:18,893 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +2020-03-06 09:55:00,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,458 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:55:00,458 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:55:00,458 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:55:00,458 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,473 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:55:00,473 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 09:55:00,473 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:00,473 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .removed -2020-03-04 11:55:18,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.removed'])]) -2020-03-04 11:55:18,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,893 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 11:55:18,893 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 11:55:18,893 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 11:55:18,893 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,909 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' -2020-03-04 11:55:18,909 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls -2020-03-04 11:55:18,909 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,909 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,909 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:18,940 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,940 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:18,940 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,940 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:18,972 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.06253671646118164 -2020-03-04 11:55:18,972 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +2020-03-06 09:55:00,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,473 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 09:55:00,473 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 09:55:00,473 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 09:55:00,473 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,473 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 09:55:00,490 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 09:55:00,490 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,490 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,490 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,505 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,505 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,520 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,536 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,536 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.04595589637756348 +2020-03-06 09:55:00,536 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -945,87 +954,87 @@ windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Port -2020-03-04 11:55:18,972 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) -2020-03-04 11:55:18,972 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,972 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' -2020-03-04 11:55:18,987 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 11:55:18,987 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 11:55:18,987 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 11:55:18,987 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:18,987 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' -2020-03-04 11:55:18,987 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls -2020-03-04 11:55:18,987 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:18,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:18,987 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +2020-03-06 09:55:00,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,552 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 09:55:00,552 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 09:55:00,552 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 09:55:00,552 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 09:55:00,552 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,552 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 09:55:00,552 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 09:55:00,552 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,552 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:00,552 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .modules - .framework -2020-03-04 11:55:18,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.framework'])]) -2020-03-04 11:55:18,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:18,987 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' -2020-03-04 11:55:18,987 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:55:19,003 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:55:19,003 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:55:19,003 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,003 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:55:19,003 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls -2020-03-04 11:55:19,003 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,003 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,003 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +2020-03-06 09:55:00,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,567 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 09:55:00,567 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:55:00,567 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:55:00,567 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:55:00,567 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,567 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:55:00,567 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 09:55:00,567 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:00,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .v4_5 -2020-03-04 11:55:19,003 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.v4_5'])]) -2020-03-04 11:55:19,003 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,003 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' -2020-03-04 11:55:19,018 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:55:19,018 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:55:19,018 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:55:19,018 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,018 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:55:19,018 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls -2020-03-04 11:55:19,018 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,018 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,018 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +2020-03-06 09:55:00,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,583 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 09:55:00,583 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:55:00,583 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:55:00,583 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:55:00,583 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,583 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:55:00,583 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 09:55:00,583 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,583 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:00,583 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .tls1_2 -2020-03-04 11:55:19,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.tls1_2'])]) -2020-03-04 11:55:19,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.015410423278808594 -2020-03-04 11:55:19,034 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:55:19,034 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:55:19,034 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:55:19,034 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,034 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:55:19,034 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls -2020-03-04 11:55:19,034 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,049 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,049 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,049 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,049 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,072 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,072 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,072 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,072 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,080 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,081 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,081 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,081 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,081 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,081 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,096 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.0627143383026123 -2020-03-04 11:55:19,096 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +2020-03-06 09:55:00,583 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,599 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:55:00,599 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:55:00,599 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:55:00,599 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,599 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:55:00,599 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 09:55:00,599 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,599 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,599 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,616 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,616 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,630 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,630 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,630 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,645 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,645 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,645 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,645 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.04576826095581055 +2020-03-06 09:55:00,645 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1053,141 +1062,71 @@ windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversion - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} -2020-03-04 11:55:19,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) -2020-03-04 11:55:19,096 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,096 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' -2020-03-04 11:55:19,096 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 11:55:19,096 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 11:55:19,096 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 11:55:19,096 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,112 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' -2020-03-04 11:55:19,112 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls -2020-03-04 11:55:19,112 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,112 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +2020-03-06 09:55:00,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,661 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 09:55:00,661 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 09:55:00,661 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 09:55:00,661 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 09:55:00,661 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,661 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 09:55:00,661 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 09:55:00,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:00,676 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 11:55:19,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:00,676 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 11:55:19,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,112 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 11:55:19,112 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 11:55:19,112 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 11:55:19,112 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,129 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' -2020-03-04 11:55:19,129 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls -2020-03-04 11:55:19,129 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,129 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 11:55:19,129 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 11:55:19,129 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 11:55:19,129 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,144 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' -2020-03-04 11:55:19,144 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,144 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,160 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,160 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,160 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,183 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,183 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,183 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,206 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:55:19,206 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:55:19,206 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:55:19,206 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,206 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:55:19,286 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pkg.version -2020-03-04 11:55:19,286 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][5396] No winrepo.p cache file for saltenv 'base', creating one now -2020-03-04 11:55:19,286 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][5396] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) -2020-03-04 11:55:19,286 [salt.loaded.int.module.win_pkg:935 ][INFO ][5396] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 11:55:19,286 [salt.loaded.int.module.win_pkg:954 ][INFO ][5396] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 11:55:19,299 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cp.cache_dir -2020-03-04 11:55:19,299 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded roots.envs -2020-03-04 11:55:19,328 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:55:19,329 [salt.fileclient :234 ][INFO ][5396] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 11:55:19,331 [salt.fileserver :159 ][DEBUG ][5396] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:55:19,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded reg.list_keys -2020-03-04 11:55:19,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.21718811988830566 -2020-03-04 11:55:19,362 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +2020-03-06 09:55:00,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:00,676 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 09:55:00,676 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 09:55:00,676 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 09:55:00,676 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,676 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 09:55:00,676 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 09:55:00,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:00,693 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 09:55:00,693 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 09:55:00,693 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 09:55:00,693 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,693 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 09:55:00,693 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,693 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:00,710 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,710 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,727 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:00,742 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,742 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:00,742 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:55:00,742 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:55:00,742 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:55:00,742 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:00,757 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:55:00,957 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pkg.version +2020-03-06 09:55:00,957 [salt.loaded.int.module.win_pkg:827 ][DEBUG ][5008] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 09:55:00,973 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][5008] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 09:55:00,973 [salt.loaded.int.module.win_pkg:939 ][INFO ][5008] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 09:55:00,973 [salt.loaded.int.module.win_pkg:958 ][INFO ][5008] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 09:55:00,973 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cp.cache_dir +2020-03-06 09:55:00,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded roots.envs +2020-03-06 09:55:01,005 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:55:01,020 [salt.fileclient :234 ][INFO ][5008] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 09:55:01,020 [salt.fileserver :159 ][DEBUG ][5008] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:55:01,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded reg.list_keys +2020-03-06 09:55:01,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.35935115814208984 +2020-03-06 09:55:01,036 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1199,105 +1138,35 @@ git: - refresh_minion_env_path: True - require: - pkg.refresh_db -kdiff3: - pkg.installed: - - require: - - pkg.refresh_db 7zip: pkg.installed: - version: 18.06.00.0 - refresh_minion_env_path: False - require: - pkg.refresh_db +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db windows_environment.refresh.path: module.run: - windows_environment.refresh: - onchanges: - pkg: git -2020-03-04 11:55:19,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('include', ['.windows_software_repository']), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) -2020-03-04 11:55:19,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,362 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:55:19,362 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:55:19,362 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:55:19,362 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,362 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:55:19,362 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls -2020-03-04 11:55:19,362 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,378 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.047391) -2020-03-04 11:55:19,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,378 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:19,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.03136181831359863 -2020-03-04 11:55:19,393 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +2020-03-06 09:55:01,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 09:55:01,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,036 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:55:01,036 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:55:01,036 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:55:01,036 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,052 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:55:01,052 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 09:55:01,052 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,052 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.031743) +2020-03-06 09:55:01,068 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.016509294509887695 +2020-03-06 09:55:01,068 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1330,50 +1199,50 @@ pkg.refresh_db: attempts: 10 until: True interval: 5 -2020-03-04 11:55:19,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,068 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) -2020-03-04 11:55:19,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,393 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' -2020-03-04 11:55:19,410 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 11:55:19,410 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 11:55:19,410 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 11:55:19,410 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,410 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' -2020-03-04 11:55:19,410 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls -2020-03-04 11:55:19,410 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,410 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,410 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +2020-03-06 09:55:01,068 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,068 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 09:55:01,068 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 09:55:01,068 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 09:55:01,068 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 09:55:01,082 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,083 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 09:55:01,083 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 09:55:01,083 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,083 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:01,083 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 11:55:19,410 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,083 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 11:55:19,410 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,410 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:55:19,425 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:55:19,425 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:55:19,425 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,425 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:55:19,425 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls -2020-03-04 11:55:19,425 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,440 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,440 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06186223030090332 -2020-03-04 11:55:19,487 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +2020-03-06 09:55:01,083 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,083 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:55:01,083 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:55:01,083 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:55:01,083 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,098 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:55:01,098 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 09:55:01,098 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,098 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,114 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,129 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,129 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,129 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,129 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,129 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,129 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,129 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,145 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,146 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,146 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,146 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,146 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.04735136032104492 +2020-03-06 09:55:01,146 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -1391,32 +1260,32 @@ windows.system.packages.chocolatey.windirstat: - name: windirstat - version: 1.1.2.20161210 -2020-03-04 11:55:19,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,160 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) -2020-03-04 11:55:19,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,487 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:55:19,487 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:55:19,487 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:55:19,487 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,502 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:55:19,502 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls -2020-03-04 11:55:19,502 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,502 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,502 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,519 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,519 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,519 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,519 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,519 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,533 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,534 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,534 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,534 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,534 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,534 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,534 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.04693317413330078 -2020-03-04 11:55:19,549 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +2020-03-06 09:55:01,161 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.015096664428710938 +2020-03-06 09:55:01,161 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:55:01,161 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:55:01,161 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:55:01,161 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,161 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:55:01,161 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 09:55:01,161 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,161 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,177 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,192 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,192 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,192 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,192 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,208 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,224 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.06320524215698242 +2020-03-06 09:55:01,224 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: # -*- coding: utf-8 -*- # vim: ft=sls chocolatey.bootstrap: @@ -1426,149 +1295,149 @@ chocolatey.bootstrap: - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -2020-03-04 11:55:19,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) -2020-03-04 11:55:19,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,549 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' -2020-03-04 11:55:19,549 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 11:55:19,549 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 11:55:19,549 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' -2020-03-04 11:55:19,549 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,565 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' -2020-03-04 11:55:19,565 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls -2020-03-04 11:55:19,565 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,565 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +2020-03-06 09:55:01,224 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,224 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 09:55:01,224 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 09:55:01,224 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 09:55:01,238 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 09:55:01,239 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,239 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 09:55:01,239 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 09:55:01,239 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:01,239 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .features -2020-03-04 11:55:19,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.features'])]) -2020-03-04 11:55:19,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,586 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' -2020-03-04 11:55:19,586 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 11:55:19,586 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 11:55:19,586 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' -2020-03-04 11:55:19,586 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,586 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' -2020-03-04 11:55:19,586 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls -2020-03-04 11:55:19,597 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,597 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +2020-03-06 09:55:01,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,239 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 09:55:01,239 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 09:55:01,239 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 09:55:01,239 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 09:55:01,255 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,255 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 09:55:01,255 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 09:55:01,255 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:01,255 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 11:55:19,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 11:55:19,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,597 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 11:55:19,597 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 11:55:19,597 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' -2020-03-04 11:55:19,597 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,597 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' -2020-03-04 11:55:19,597 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls -2020-03-04 11:55:19,597 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,613 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 11:55:19,613 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 11:55:19,613 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' -2020-03-04 11:55:19,613 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,613 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' -2020-03-04 11:55:19,613 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,628 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,628 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,643 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,643 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,643 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.061979055404663086 -2020-03-04 11:55:19,674 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +2020-03-06 09:55:01,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,255 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 09:55:01,255 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 09:55:01,255 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 09:55:01,255 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,272 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 09:55:01,272 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 09:55:01,272 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,272 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 09:55:01,272 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 09:55:01,272 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 09:55:01,272 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,272 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 09:55:01,287 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,287 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,302 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,302 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,302 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,302 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,317 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.06144547462463379 +2020-03-06 09:55:01,333 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls -2020-03-04 11:55:19,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: {} -2020-03-04 11:55:19,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,674 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' -2020-03-04 11:55:19,674 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 11:55:19,674 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 11:55:19,674 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' -2020-03-04 11:55:19,674 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,674 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' -2020-03-04 11:55:19,674 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls -2020-03-04 11:55:19,674 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,690 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +2020-03-06 09:55:01,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,333 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 09:55:01,333 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 09:55:01,333 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 09:55:01,348 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 09:55:01,348 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,348 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 09:55:01,348 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 09:55:01,348 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,348 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:01,348 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .packages - .optional_features -2020-03-04 11:55:19,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,348 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.optional_features'])]) -2020-03-04 11:55:19,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,690 [salt.fileclient :1072][DEBUG ][5396] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' -2020-03-04 11:55:19,690 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 11:55:19,690 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 11:55:19,690 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 11:55:19,690 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,690 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' -2020-03-04 11:55:19,690 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls -2020-03-04 11:55:19,690 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:19,690 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +2020-03-06 09:55:01,348 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,348 [salt.fileclient :1080][DEBUG ][5008] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 09:55:01,348 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 09:55:01,348 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 09:55:01,348 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 09:55:01,365 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,365 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 09:55:01,365 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 09:55:01,365 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,365 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:01,365 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .feature_installed -2020-03-04 11:55:19,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,365 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('include', ['.feature_installed'])]) -2020-03-04 11:55:19,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:19,707 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:55:19,707 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:55:19,707 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:55:19,707 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,707 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:55:19,707 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls -2020-03-04 11:55:19,707 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:19,707 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:55:19,707 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:55:19,707 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:55:19,721 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,721 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:55:19,721 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,721 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:55:19,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:55:19,769 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,769 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:55:19,769 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:55:19,769 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:55:19,769 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:55:19,784 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:19,784 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:55:19,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.07643580436706543 -2020-03-04 11:55:19,784 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +2020-03-06 09:55:01,365 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,365 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:55:01,365 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:55:01,365 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:55:01,365 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,380 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:55:01,380 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 09:55:01,380 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:01,380 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:55:01,380 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:55:01,380 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:55:01,380 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,380 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:55:01,396 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,396 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:55:01,412 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,412 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:55:01,412 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,412 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,426 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:55:01,442 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:55:01,442 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:55:01,442 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:55:01,442 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:01,442 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:55:01,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.07846570014953613 +2020-03-06 09:55:01,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls# -*- coding: utf-8 -*- # vim: ft=sls @@ -1581,1827 +1450,1844 @@ windows.system.desktop.optional_features.installed.TelnetClient: Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" -2020-03-04 11:55:19,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:01,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) -2020-03-04 11:55:19,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.01590275764465332 -2020-03-04 11:55:19,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cmd.run -2020-03-04 11:55:19,833 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded system.get_computer_desc -2020-03-04 11:55:19,833 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded system.computer_desc -2020-03-04 11:55:19,833 [salt.state :1819][INFO ][5396] Running state [saltstack1] at time 11:55:19.833229 -2020-03-04 11:55:19,833 [salt.state :1852][INFO ][5396] Executing state system.hostname for [saltstack1] -2020-03-04 11:55:19,833 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 11:55:19,846 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: vagrant-10 -2020-03-04 11:55:19,846 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5396] output: vagrant-10 -2020-03-04 11:55:19,846 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 11:55:19,862 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: vagrant-10 -2020-03-04 11:55:19,862 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5396] output: vagrant-10 -2020-03-04 11:55:19,862 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' -2020-03-04 11:55:19,925 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 09:55:01,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:01,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cmd.run +2020-03-06 09:55:01,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded system.get_computer_desc +2020-03-06 09:55:01,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded system.computer_desc +2020-03-06 09:55:01,584 [salt.state :1867][INFO ][5008] Running state [saltstack1] at time 09:55:01.584554 +2020-03-06 09:55:01,584 [salt.state :1900][INFO ][5008] Executing state system.hostname for [saltstack1] +2020-03-06 09:55:01,584 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 09:55:01,598 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: vagrant-10 +2020-03-06 09:55:01,598 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5008] output: vagrant-10 +2020-03-06 09:55:01,598 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 09:55:01,598 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: vagrant-10 +2020-03-06 09:55:01,614 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5008] output: vagrant-10 +2020-03-06 09:55:01,614 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 09:55:01,676 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 11:55:19,925 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5396] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 09:55:01,676 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5008] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 11:55:19,925 [salt.state :320 ][INFO ][5396] {'hostname': 'saltstack1'} -2020-03-04 11:55:19,925 [salt.state :1997][INFO ][5396] Completed state [saltstack1] at time 11:55:19.925046 (duration_in_ms=91.817) -2020-03-04 11:55:19,925 [salt.state :1819][INFO ][5396] Running state [Saltstack Computer Description] at time 11:55:19.925046 -2020-03-04 11:55:19,925 [salt.state :1852][INFO ][5396] Executing state system.computer_desc for [Saltstack Computer Description] -2020-03-04 11:55:22,613 [salt.state :320 ][INFO ][5396] {'new': 'Saltstack Computer Description', 'old': ''} -2020-03-04 11:55:22,627 [salt.state :1997][INFO ][5396] Completed state [Saltstack Computer Description] at time 11:55:22.627218 (duration_in_ms=2702.172) -2020-03-04 11:55:22,644 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded platform.is_windows -2020-03-04 11:55:22,644 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded path.which -2020-03-04 11:55:22,644 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded timezone.get_zone -2020-03-04 11:55:22,644 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded timezone.system -2020-03-04 11:55:22,644 [salt.state :1819][INFO ][5396] Running state [America/New_York] at time 11:55:22.644276 -2020-03-04 11:55:22,644 [salt.state :1852][INFO ][5396] Executing state timezone.system for [America/New_York] -2020-03-04 11:55:22,644 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' -2020-03-04 11:55:22,659 [salt.state :320 ][INFO ][5396] {'timezone': 'America/New_York'} -2020-03-04 11:55:22,659 [salt.state :1997][INFO ][5396] Completed state [America/New_York] at time 11:55:22.659470 (duration_in_ms=15.194) -2020-03-04 11:55:22,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded module.run -2020-03-04 11:55:22,675 [salt.state :1819][INFO ][5396] Running state [windows.module.environ.items] at time 11:55:22.675113 -2020-03-04 11:55:22,675 [salt.state :1852][INFO ][5396] Executing state module.run for [windows.module.environ.items] -2020-03-04 11:55:22,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded environ.items -2020-03-04 11:55:22,675 [salt.state :320 ][INFO ][5396] {'environ.items': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'OS': 'Windows_NT', 'PROMPT': '$P$G', 'NUMBER_OF_PROCESSORS': '2', 'WINDIR': 'C:\\Windows', 'HOMEDRIVE': 'C:', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PROGRAMDATA': 'C:\\ProgramData', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'SYSTEMDRIVE': 'C:', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'HOMEPATH': '\\Users\\vagrant', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'PROGRAMW6432': 'C:\\Program Files', 'USERDOMAIN': 'VAGRANT-10', 'PROGRAMFILES': 'C:\\Program Files', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'USERPROFILE': 'C:\\Users\\vagrant', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'SALTDIR': 'C:\\salt', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'PUBLIC': 'C:\\Users\\Public', 'PROCESSOR_REVISION': '8e0c', 'USERNAME': 'vagrant', 'LOGONSERVER': '\\\\VAGRANT-10', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'SYSTEMROOT': 'C:\\Windows', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROCESSOR_LEVEL': '6', 'COMPUTERNAME': 'VAGRANT-10'}} -2020-03-04 11:55:22,675 [salt.state :1997][INFO ][5396] Completed state [windows.module.environ.items] at time 11:55:22.675113 (duration_in_ms=0.0) -2020-03-04 11:55:22,675 [salt.state :1819][INFO ][5396] Running state [windows.module.user.current] at time 11:55:22.675113 -2020-03-04 11:55:22,675 [salt.state :1852][INFO ][5396] Executing state module.run for [windows.module.user.current] -2020-03-04 11:55:22,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded user.current -2020-03-04 11:55:22,690 [salt.state :320 ][INFO ][5396] {'user.current': 'VAGRANT-10\\vagrant'} -2020-03-04 11:55:22,690 [salt.state :1997][INFO ][5396] Completed state [windows.module.user.current] at time 11:55:22.690555 (duration_in_ms=15.442) -2020-03-04 11:55:22,690 [salt.state :1819][INFO ][5396] Running state [windows.module.status.uptime] at time 11:55:22.690555 -2020-03-04 11:55:22,714 [salt.state :1852][INFO ][5396] Executing state module.run for [windows.module.status.uptime] -2020-03-04 11:55:22,740 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded status.uptime -2020-03-04 11:55:22,740 [salt.state :320 ][INFO ][5396] {'status.uptime': '0:01:20.740518'} -2020-03-04 11:55:22,740 [salt.state :1997][INFO ][5396] Completed state [windows.module.status.uptime] at time 11:55:22.740518 (duration_in_ms=49.963) -2020-03-04 11:55:22,740 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cmd.run -2020-03-04 11:55:22,753 [salt.state :1819][INFO ][5396] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 11:55:22.753995 -2020-03-04 11:55:22,753 [salt.state :1852][INFO ][5396] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] -2020-03-04 11:55:22,753 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:23,284 [salt.loaded.int.states.cmd:343 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:23,284 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:24,847 [salt.state :320 ][INFO ][5396] {'stderr': '', 'retcode': 0, 'pid': 6712, 'stdout': ''} -2020-03-04 11:55:24,847 [salt.state :1997][INFO ][5396] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 11:55:24.847478 (duration_in_ms=2093.483) -2020-03-04 11:55:24,862 [salt.state :1819][INFO ][5396] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 11:55:24.862291 -2020-03-04 11:55:24,862 [salt.state :1852][INFO ][5396] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] -2020-03-04 11:55:24,862 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:25,440 [salt.loaded.int.states.cmd:343 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:25,440 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:26,721 [salt.state :320 ][INFO ][5396] {'stderr': '', 'retcode': 0, 'pid': 3492, 'stdout': ''} -2020-03-04 11:55:26,721 [salt.state :1997][INFO ][5396] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 11:55:26.721675 (duration_in_ms=1859.384) -2020-03-04 11:55:26,721 [salt.state :1819][INFO ][5396] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 11:55:26.721675 -2020-03-04 11:55:26,721 [salt.state :1852][INFO ][5396] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] -2020-03-04 11:55:26,721 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:27,190 [salt.loaded.int.states.cmd:343 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:27,190 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:28,265 [salt.state :320 ][INFO ][5396] {'stderr': '', 'retcode': 0, 'pid': 1864, 'stdout': ''} -2020-03-04 11:55:28,268 [salt.state :1997][INFO ][5396] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 11:55:28.268517 (duration_in_ms=1546.842) -2020-03-04 11:55:28,268 [salt.state :1819][INFO ][5396] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 11:55:28.268517 -2020-03-04 11:55:28,268 [salt.state :1852][INFO ][5396] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] -2020-03-04 11:55:28,268 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:28,737 [salt.loaded.int.states.cmd:343 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:28,737 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:29,815 [salt.state :320 ][INFO ][5396] {'stderr': '', 'retcode': 0, 'pid': 3244, 'stdout': ''} -2020-03-04 11:55:29,815 [salt.state :1997][INFO ][5396] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 11:55:29.815458 (duration_in_ms=1546.941) -2020-03-04 11:55:29,815 [salt.state :1819][INFO ][5396] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 11:55:29.815458 -2020-03-04 11:55:29,815 [salt.state :1852][INFO ][5396] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] -2020-03-04 11:55:29,815 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:30,300 [salt.loaded.int.states.cmd:343 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:30,300 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:31,362 [salt.state :320 ][INFO ][5396] {'stderr': '', 'retcode': 0, 'pid': 6044, 'stdout': ''} -2020-03-04 11:55:31,362 [salt.state :1997][INFO ][5396] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 11:55:31.362506 (duration_in_ms=1547.048) -2020-03-04 11:55:31,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded reg.present -2020-03-04 11:55:31,362 [salt.state :1819][INFO ][5396] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:55:31.362506 -2020-03-04 11:55:31,362 [salt.state :1852][INFO ][5396] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 11:55:32,190 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt.secret_key, ret: _|- -2020-03-04 11:55:32,190 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt:secret_key, ret: _|- -2020-03-04 11:55:32,723 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet.api_key, ret: _|- -2020-03-04 11:55:32,723 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet:api_key, ret: _|- -2020-03-04 11:55:33,081 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops.api_key, ret: _|- -2020-03-04 11:55:33,081 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops:api_key, ret: _|- -2020-03-04 11:55:37,316 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 11:55:37,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded apache.a2enconf -2020-03-04 11:55:37,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded apache.a2enmod -2020-03-04 11:55:37,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded apache.a2ensite -2020-03-04 11:55:37,347 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 11:55:37,363 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 11:55:37,378 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 11:55:37,378 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 11:55:37,395 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 11:55:37,408 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 11:55:37,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto3_sns.topic_exists -2020-03-04 11:55:37,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_apigateway.describe_apis -2020-03-04 11:55:37,426 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_asg.exists -2020-03-04 11:55:37,426 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cfn.exists -2020-03-04 11:55:37,426 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 11:55:37,426 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudtrail.exists -2020-03-04 11:55:37,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 11:55:37,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 11:55:37,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 11:55:37,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 11:55:37,457 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_dynamodb.exists -2020-03-04 11:55:37,457 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_ec2.get_key -2020-03-04 11:55:37,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elasticache.exists -2020-03-04 11:55:37,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 11:55:37,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elb.exists -2020-03-04 11:55:37,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 11:55:37,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_iam.get_user -2020-03-04 11:55:37,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_iam.role_exists -2020-03-04 11:55:37,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_iot.policy_exists -2020-03-04 11:55:37,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_kinesis.exists -2020-03-04 11:55:37,519 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_kms.describe_key -2020-03-04 11:55:37,519 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_lambda.function_exists -2020-03-04 11:55:37,519 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_asg.exists -2020-03-04 11:55:37,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_rds.exists -2020-03-04 11:55:37,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_route53.get_record -2020-03-04 11:55:37,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_s3.get_object_metadata -2020-03-04 11:55:37,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_s3_bucket.exists -2020-03-04 11:55:37,550 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_secgroup.exists -2020-03-04 11:55:37,550 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_sns.exists -2020-03-04 11:55:37,550 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_sqs.exists -2020-03-04 11:55:37,566 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_vpc.exists -2020-03-04 11:55:37,566 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded bower.list -2020-03-04 11:55:37,579 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded chef.client -2020-03-04 11:55:37,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cimc.get_system_info -2020-03-04 11:55:37,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cisconso.set_data_value -2020-03-04 11:55:37,597 [salt.loader :1577][DEBUG ][5396] Failed to import states cloud: +2020-03-06 09:55:01,676 [salt.state :320 ][INFO ][5008] {'hostname': 'saltstack1'} +2020-03-06 09:55:01,676 [salt.state :2045][INFO ][5008] Completed state [saltstack1] at time 09:55:01.676960 (duration_in_ms=92.406) +2020-03-06 09:55:01,676 [salt.state :1867][INFO ][5008] Running state [Saltstack Computer Description] at time 09:55:01.676960 +2020-03-06 09:55:01,676 [salt.state :1900][INFO ][5008] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 09:55:04,380 [salt.state :320 ][INFO ][5008] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 09:55:04,380 [salt.state :2045][INFO ][5008] Completed state [Saltstack Computer Description] at time 09:55:04.380093 (duration_in_ms=2703.133) +2020-03-06 09:55:04,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded platform.is_windows +2020-03-06 09:55:04,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded path.which +2020-03-06 09:55:04,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded timezone.get_zone +2020-03-06 09:55:04,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded timezone.system +2020-03-06 09:55:04,411 [salt.state :1867][INFO ][5008] Running state [America/New_York] at time 09:55:04.411278 +2020-03-06 09:55:04,411 [salt.state :1900][INFO ][5008] Executing state timezone.system for [America/New_York] +2020-03-06 09:55:04,411 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 09:55:04,427 [salt.state :320 ][INFO ][5008] {'timezone': 'America/New_York'} +2020-03-06 09:55:04,427 [salt.state :2045][INFO ][5008] Completed state [America/New_York] at time 09:55:04.427424 (duration_in_ms=16.146) +2020-03-06 09:55:04,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded module.run +2020-03-06 09:55:04,442 [salt.state :1867][INFO ][5008] Running state [windows.module.environ.items] at time 09:55:04.442912 +2020-03-06 09:55:04,442 [salt.state :1900][INFO ][5008] Executing state module.run for [windows.module.environ.items] +2020-03-06 09:55:04,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded environ.items +2020-03-06 09:55:04,442 [salt.state :320 ][INFO ][5008] {'environ.items': {'WINDIR': 'C:\\Windows', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'PROCESSOR_REVISION': '8e0c', 'SYSTEMDRIVE': 'C:', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PROMPT': '$P$G', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'USERDOMAIN': 'VAGRANT-10', 'PROGRAMW6432': 'C:\\Program Files', 'USERNAME': 'vagrant', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'PROCESSOR_LEVEL': '6', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMFILES': 'C:\\Program Files', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PUBLIC': 'C:\\Users\\Public', 'COMPUTERNAME': 'VAGRANT-10', 'HOMEPATH': '\\Users\\vagrant', 'SALTDIR': 'C:\\salt', 'USERPROFILE': 'C:\\Users\\vagrant', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'NUMBER_OF_PROCESSORS': '2', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'SYSTEMROOT': 'C:\\Windows', 'OS': 'Windows_NT', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'LOGONSERVER': '\\\\VAGRANT-10', 'HOMEDRIVE': 'C:', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'PROGRAMDATA': 'C:\\ProgramData'}} +2020-03-06 09:55:04,442 [salt.state :2045][INFO ][5008] Completed state [windows.module.environ.items] at time 09:55:04.442912 (duration_in_ms=0.0) +2020-03-06 09:55:04,442 [salt.state :1867][INFO ][5008] Running state [windows.module.user.current] at time 09:55:04.442912 +2020-03-06 09:55:04,442 [salt.state :1900][INFO ][5008] Executing state module.run for [windows.module.user.current] +2020-03-06 09:55:04,474 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded user.current +2020-03-06 09:55:04,474 [salt.state :320 ][INFO ][5008] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 09:55:04,489 [salt.state :2045][INFO ][5008] Completed state [windows.module.user.current] at time 09:55:04.489351 (duration_in_ms=46.439) +2020-03-06 09:55:04,489 [salt.state :1867][INFO ][5008] Running state [windows.module.status.uptime] at time 09:55:04.489351 +2020-03-06 09:55:04,489 [salt.state :1900][INFO ][5008] Executing state module.run for [windows.module.status.uptime] +2020-03-06 09:55:04,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded status.uptime +2020-03-06 09:55:04,504 [salt.state :320 ][INFO ][5008] {'status.uptime': '0:01:20.504924'} +2020-03-06 09:55:04,504 [salt.state :2045][INFO ][5008] Completed state [windows.module.status.uptime] at time 09:55:04.504924 (duration_in_ms=15.573) +2020-03-06 09:55:04,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cmd.run +2020-03-06 09:55:04,520 [salt.state :1867][INFO ][5008] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 09:55:04.520557 +2020-03-06 09:55:04,520 [salt.state :1900][INFO ][5008] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] +2020-03-06 09:55:04,520 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:04,989 [salt.loaded.int.states.cmd:344 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:04,989 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:06,568 [salt.state :320 ][INFO ][5008] {'retcode': 0, 'stdout': '', 'stderr': '', 'pid': 2584} +2020-03-06 09:55:06,582 [salt.state :2045][INFO ][5008] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 09:55:06.582905 (duration_in_ms=2062.348) +2020-03-06 09:55:06,582 [salt.state :1867][INFO ][5008] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 09:55:06.582905 +2020-03-06 09:55:06,582 [salt.state :1900][INFO ][5008] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] +2020-03-06 09:55:06,582 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:07,161 [salt.loaded.int.states.cmd:344 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:07,161 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:08,239 [salt.state :320 ][INFO ][5008] {'retcode': 0, 'stdout': '', 'stderr': '', 'pid': 1184} +2020-03-06 09:55:08,239 [salt.state :2045][INFO ][5008] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 09:55:08.239314 (duration_in_ms=1656.409) +2020-03-06 09:55:08,239 [salt.state :1867][INFO ][5008] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 09:55:08.239314 +2020-03-06 09:55:08,239 [salt.state :1900][INFO ][5008] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] +2020-03-06 09:55:08,239 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:08,676 [salt.loaded.int.states.cmd:344 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:08,676 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:09,770 [salt.state :320 ][INFO ][5008] {'retcode': 0, 'stdout': '', 'stderr': '', 'pid': 2624} +2020-03-06 09:55:09,786 [salt.state :2045][INFO ][5008] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 09:55:09.786366 (duration_in_ms=1547.052) +2020-03-06 09:55:09,786 [salt.state :1867][INFO ][5008] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 09:55:09.786366 +2020-03-06 09:55:09,786 [salt.state :1900][INFO ][5008] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] +2020-03-06 09:55:09,786 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:10,254 [salt.loaded.int.states.cmd:344 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:10,254 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:11,489 [salt.state :320 ][INFO ][5008] {'retcode': 0, 'stdout': '', 'stderr': '', 'pid': 7004} +2020-03-06 09:55:11,489 [salt.state :2045][INFO ][5008] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 09:55:11.489400 (duration_in_ms=1703.034) +2020-03-06 09:55:11,489 [salt.state :1867][INFO ][5008] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 09:55:11.489400 +2020-03-06 09:55:11,505 [salt.state :1900][INFO ][5008] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] +2020-03-06 09:55:11,505 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:11,942 [salt.loaded.int.states.cmd:344 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:11,957 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:12,942 [salt.state :320 ][INFO ][5008] {'retcode': 0, 'stdout': '', 'stderr': '', 'pid': 1200} +2020-03-06 09:55:12,942 [salt.state :2045][INFO ][5008] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 09:55:12.942714 (duration_in_ms=1453.314) +2020-03-06 09:55:12,942 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded reg.present +2020-03-06 09:55:12,942 [salt.state :1867][INFO ][5008] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:55:12.942714 +2020-03-06 09:55:12,942 [salt.state :1900][INFO ][5008] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 09:55:13,645 [salt.config :2215][DEBUG ][5008] Missing configuration file: /etc/salt/minion +2020-03-06 09:55:13,663 [salt.config :3612][DEBUG ][5008] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 09:55:13,786 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:55:13,786 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:55:14,208 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 09:55:14,208 [salt.loader :1671][DEBUG ][5008] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 11:55:37,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded ddns.update -2020-03-04 11:55:37,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded chassis.cmd -2020-03-04 11:55:37,612 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:55:37,645 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:55:37,660 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:55:37,676 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:55:37,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded esxi.cmd -2020-03-04 11:55:37,903 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded git.version -2020-03-04 11:55:37,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded github.list_users -2020-03-04 11:55:37,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded glanceng.image_get -2020-03-04 11:55:37,925 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded elasticsearch.exists -2020-03-04 11:55:37,940 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: grafana_version, ret: _|- -2020-03-04 11:55:37,940 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: grafana_version, ret: _|- -2020-03-04 11:55:37,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded icinga2.generate_ticket -2020-03-04 11:55:37,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded ifttt.trigger_event -2020-03-04 11:55:37,971 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:55:37,991 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:55:38,004 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:55:38,020 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:55:38,034 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:55:38,034 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:55:38,085 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 11:55:38,085 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.domain_get -2020-03-04 11:55:38,085 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.endpoint_get -2020-03-04 11:55:38,093 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.group_get -2020-03-04 11:55:38,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.project_get -2020-03-04 11:55:38,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.role_get -2020-03-04 11:55:38,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.role_grant -2020-03-04 11:55:38,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.service_get -2020-03-04 11:55:38,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.user_get -2020-03-04 11:55:38,112 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 11:55:38,143 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 11:55:38,143 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 11:55:38,176 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 11:55:38,192 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:55:38,206 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:55:38,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:55:38,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:55:38,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:55:38,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:55:38,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded memcached.status -2020-03-04 11:55:38,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mongodb.db_exists -2020-03-04 11:55:38,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mongodb.user_exists -2020-03-04 11:55:38,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:55:38,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:55:38,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:55:38,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:55:38,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_networks -2020-03-04 11:55:38,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_subnets -2020-03-04 11:55:38,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_subnets -2020-03-04 11:55:38,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_subnets -2020-03-04 11:55:38,299 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded npm.list -2020-03-04 11:55:38,299 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nxos.cmd -2020-03-04 11:55:38,318 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 11:55:38,331 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 11:55:38,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded panos.commit -2020-03-04 11:55:38,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pdbedit.create -2020-03-04 11:55:38,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pecl.list -2020-03-04 11:55:38,691 [pip.vcs :60 ][DEBUG ][5396] Registered VCS backend: git -2020-03-04 11:55:38,769 [pip.vcs :60 ][DEBUG ][5396] Registered VCS backend: hg -2020-03-04 11:55:38,784 [pip.pep425tags :79 ][DEBUG ][5396] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 11:55:38,784 [pip.pep425tags :79 ][DEBUG ][5396] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 11:55:38,784 [pip.pep425tags :79 ][DEBUG ][5396] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 11:55:38,784 [pip.pep425tags :79 ][DEBUG ][5396] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 11:55:38,972 [pip.vcs :60 ][DEBUG ][5396] Registered VCS backend: svn -2020-03-04 11:55:38,972 [pip.vcs :60 ][DEBUG ][5396] Registered VCS backend: bzr -2020-03-04 11:55:39,065 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 11:55:39,065 [salt.loader :1577][DEBUG ][5396] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 09:55:15,145 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt.secret_key, ret: _|- +2020-03-06 09:55:15,145 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt:secret_key, ret: _|- +2020-03-06 09:55:16,348 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet.api_key, ret: _|- +2020-03-06 09:55:16,348 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet:api_key, ret: _|- +2020-03-06 09:55:16,754 [salt.loader :1671][DEBUG ][5008] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 11:55:39,082 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.cluster_exists -2020-03-04 11:55:39,082 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.user_exists -2020-03-04 11:55:39,082 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.create_extension -2020-03-04 11:55:39,082 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.group_create -2020-03-04 11:55:39,082 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.datadir_init -2020-03-04 11:55:39,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.language_create -2020-03-04 11:55:39,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.privileges_grant -2020-03-04 11:55:39,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.schema_exists -2020-03-04 11:55:39,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.tablespace_exists -2020-03-04 11:55:39,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.user_exists -2020-03-04 11:55:39,143 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 11:55:39,178 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded selinux.getenforce -2020-03-04 11:55:39,191 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded splunk.list_users -2020-03-04 11:55:39,191 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded splunk_search.get -2020-03-04 11:55:39,206 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 11:55:39,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded tomcat.status -2020-03-04 11:55:39,238 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded vagrant.version -2020-03-04 11:55:39,238 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded victorops.create_event -2020-03-04 11:55:39,253 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded win_iis.create_site -2020-03-04 11:55:39,269 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded win_servermanager.install -2020-03-04 11:55:39,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded win_snmp.get_agent_settings -2020-03-04 11:55:39,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded wordpress.show_plugin -2020-03-04 11:55:39,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded x509.get_pem_entry -2020-03-04 11:55:39,299 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded xmpp.send_msg -2020-03-04 11:55:39,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded zk_concurrency.lock -2020-03-04 11:55:39,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded zonecfg.create -2020-03-04 11:55:39,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded zookeeper.create -2020-03-04 11:55:39,349 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 11:55:39,349 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:55:39,534 [salt.state :889 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:39,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded dacl.check_perms -2020-03-04 11:55:39,549 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5396] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 11:55:39,549 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5396] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 09:55:16,927 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops.api_key, ret: _|- +2020-03-06 09:55:16,927 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops:api_key, ret: _|- +2020-03-06 09:55:22,052 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad acme.cert: 'acme' __virtual__ returned False: The ACME execution module cannot be loaded: letsencrypt-auto not installed. +2020-03-06 09:55:22,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded alternatives.auto +2020-03-06 09:55:22,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded apache.config +2020-03-06 09:55:22,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded apache.a2enconf +2020-03-06 09:55:22,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded apache.a2enmod +2020-03-06 09:55:22,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded apache.a2ensite +2020-03-06 09:55:22,130 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 09:55:22,145 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded at.at +2020-03-06 09:55:22,165 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 09:55:22,178 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 09:55:22,178 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 09:55:22,193 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 09:55:22,193 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 09:55:22,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded disk.tune +2020-03-06 09:55:22,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 09:55:22,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 09:55:22,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 09:55:22,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_sns.topic_exists +2020-03-06 09:55:22,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_apigateway.describe_apis +2020-03-06 09:55:22,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_asg.exists +2020-03-06 09:55:22,254 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cfn.exists +2020-03-06 09:55:22,254 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 09:55:22,254 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudtrail.exists +2020-03-06 09:55:22,254 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 09:55:22,254 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 09:55:22,271 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 09:55:22,271 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 09:55:22,271 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_dynamodb.exists +2020-03-06 09:55:22,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_ec2.get_key +2020-03-06 09:55:22,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elasticache.exists +2020-03-06 09:55:22,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 09:55:22,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elb.exists +2020-03-06 09:55:22,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 09:55:22,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_iam.get_user +2020-03-06 09:55:22,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_iam.role_exists +2020-03-06 09:55:22,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_iot.policy_exists +2020-03-06 09:55:22,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_kinesis.exists +2020-03-06 09:55:22,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_kms.describe_key +2020-03-06 09:55:22,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_lambda.function_exists +2020-03-06 09:55:22,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_asg.exists +2020-03-06 09:55:22,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_rds.exists +2020-03-06 09:55:22,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_route53.get_record +2020-03-06 09:55:22,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_s3.get_object_metadata +2020-03-06 09:55:22,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_s3_bucket.exists +2020-03-06 09:55:22,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_secgroup.exists +2020-03-06 09:55:22,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_sns.exists +2020-03-06 09:55:22,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_sqs.exists +2020-03-06 09:55:22,380 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_vpc.exists +2020-03-06 09:55:22,380 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded bower.list +2020-03-06 09:55:22,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded chef.client +2020-03-06 09:55:22,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cimc.get_system_info +2020-03-06 09:55:22,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cisconso.set_data_value +2020-03-06 09:55:22,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cron.list_tab +2020-03-06 09:55:22,428 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded ddns.update +2020-03-06 09:55:22,428 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded chassis.cmd +2020-03-06 09:55:22,457 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:55:22,473 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:55:22,505 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:55:22,520 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:55:22,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded eselect.exec_action +2020-03-06 09:55:22,739 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded esxi.cmd +2020-03-06 09:55:22,805 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded git.version +2020-03-06 09:55:22,814 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded github.list_users +2020-03-06 09:55:22,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded glanceng.image_get +2020-03-06 09:55:22,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded glusterfs.list_volumes +2020-03-06 09:55:22,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded elasticsearch.exists +2020-03-06 09:55:22,849 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: grafana_version, ret: _|- +2020-03-06 09:55:22,849 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: grafana_version, ret: _|- +2020-03-06 09:55:22,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded icinga2.generate_ticket +2020-03-06 09:55:22,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded ifttt.trigger_event +2020-03-06 09:55:22,895 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:55:22,926 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:55:22,942 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:55:22,958 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:55:22,973 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:55:23,005 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:55:23,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded ipset.version +2020-03-06 09:55:23,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded iptables.version +2020-03-06 09:55:23,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded kapacitor.version +2020-03-06 09:55:23,051 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 09:55:23,051 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keyboard.get_sys +2020-03-06 09:55:23,051 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystone.auth +2020-03-06 09:55:23,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.domain_get +2020-03-06 09:55:23,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.endpoint_get +2020-03-06 09:55:23,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.group_get +2020-03-06 09:55:23,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.project_get +2020-03-06 09:55:23,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.role_get +2020-03-06 09:55:23,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.role_grant +2020-03-06 09:55:23,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.service_get +2020-03-06 09:55:23,083 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.user_get +2020-03-06 09:55:23,083 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystore.list +2020-03-06 09:55:23,083 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded kmod.available +2020-03-06 09:55:23,099 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 09:55:23,113 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded layman.add +2020-03-06 09:55:23,145 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 09:55:23,145 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded logadm.list_conf +2020-03-06 09:55:23,145 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded logrotate.show_conf +2020-03-06 09:55:23,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lvs.get_rules +2020-03-06 09:55:23,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lvs.get_rules +2020-03-06 09:55:23,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:55:23,176 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:55:23,176 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:55:23,176 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:55:23,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded makeconf.get_var +2020-03-06 09:55:23,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded memcached.status +2020-03-06 09:55:23,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded mongodb.db_exists +2020-03-06 09:55:23,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded mongodb.user_exists +2020-03-06 09:55:23,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded monit.summary +2020-03-06 09:55:23,256 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_networks +2020-03-06 09:55:23,256 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_subnets +2020-03-06 09:55:23,256 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_subnets +2020-03-06 09:55:23,269 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_subnets +2020-03-06 09:55:23,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nftables.version +2020-03-06 09:55:23,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded npm.list +2020-03-06 09:55:23,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nxos.cmd +2020-03-06 09:55:23,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded openvswitch.bridge_create +2020-03-06 09:55:23,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded openvswitch.port_add +2020-03-06 09:55:23,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded panos.commit +2020-03-06 09:55:23,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pdbedit.create +2020-03-06 09:55:23,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pecl.list +2020-03-06 09:55:23,676 [pip.vcs :60 ][DEBUG ][5008] Registered VCS backend: git +2020-03-06 09:55:23,755 [pip.vcs :60 ][DEBUG ][5008] Registered VCS backend: hg +2020-03-06 09:55:23,803 [pip.pep425tags :79 ][DEBUG ][5008] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 09:55:23,803 [pip.pep425tags :79 ][DEBUG ][5008] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 09:55:23,803 [pip.pep425tags :79 ][DEBUG ][5008] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 09:55:23,803 [pip.pep425tags :79 ][DEBUG ][5008] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 09:55:23,942 [pip.vcs :60 ][DEBUG ][5008] Registered VCS backend: svn +2020-03-06 09:55:23,942 [pip.vcs :60 ][DEBUG ][5008] Registered VCS backend: bzr +2020-03-06 09:55:24,036 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 09:55:24,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded portage_config.get_missing_flags +2020-03-06 09:55:24,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.cluster_exists +2020-03-06 09:55:24,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.user_exists +2020-03-06 09:55:24,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.create_extension +2020-03-06 09:55:24,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.group_create +2020-03-06 09:55:24,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.datadir_init +2020-03-06 09:55:24,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.language_create +2020-03-06 09:55:24,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.privileges_grant +2020-03-06 09:55:24,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.schema_exists +2020-03-06 09:55:24,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.tablespace_exists +2020-03-06 09:55:24,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.user_exists +2020-03-06 09:55:24,083 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded quota.report +2020-03-06 09:55:24,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded rabbitmq.list_upstreams +2020-03-06 09:55:24,145 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 09:55:24,162 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 09:55:24,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded selinux.getenforce +2020-03-06 09:55:24,257 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 09:55:24,272 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded snapper.diff +2020-03-06 09:55:24,272 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded splunk.list_users +2020-03-06 09:55:24,272 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded splunk_search.get +2020-03-06 09:55:24,302 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 09:55:24,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded tomcat.status +2020-03-06 09:55:24,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded trafficserver.set_config +2020-03-06 09:55:24,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded vagrant.version +2020-03-06 09:55:24,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded victorops.create_event +2020-03-06 09:55:24,365 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded virt.node_info +2020-03-06 09:55:24,380 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded win_iis.create_site +2020-03-06 09:55:24,396 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded win_servermanager.install +2020-03-06 09:55:24,396 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded win_snmp.get_agent_settings +2020-03-06 09:55:24,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded wordpress.show_plugin +2020-03-06 09:55:24,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded x509.get_pem_entry +2020-03-06 09:55:24,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded xmpp.send_msg +2020-03-06 09:55:24,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded zk_concurrency.lock +2020-03-06 09:55:24,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded zonecfg.create +2020-03-06 09:55:24,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded zookeeper.create +2020-03-06 09:55:24,489 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 09:55:24,489 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:55:24,646 [salt.state :906 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:24,646 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][5008] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:55:24,661 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5008] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:55:24,661 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5008] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 11:55:39,549 [salt.state :320 ][INFO ][5396] {'reg': {'Added': {'Inheritance': True, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Grant': None, 'Deny': None}, 'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Owner': None}}} -2020-03-04 11:55:39,549 [salt.state :1997][INFO ][5396] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:55:39.549906 (duration_in_ms=8187.4) -2020-03-04 11:55:39,549 [salt.state :1819][INFO ][5396] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:55:39.549906 -2020-03-04 11:55:39,549 [salt.state :1852][INFO ][5396] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 11:55:39,565 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 11:55:39,565 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' -2020-03-04 11:55:39,752 [salt.state :889 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:39,752 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5396] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 11:55:39,752 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5396] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +2020-03-06 09:55:24,661 [salt.state :320 ][INFO ][5008] {'reg': {'Added': {'Perms': {'Grant': None, 'Deny': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions', 'Value': 1, 'Owner': None, 'Inheritance': True}}} +2020-03-06 09:55:24,661 [salt.state :2045][INFO ][5008] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:55:24.661246 (duration_in_ms=11718.532) +2020-03-06 09:55:24,661 [salt.state :1867][INFO ][5008] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:55:24.661246 +2020-03-06 09:55:24,661 [salt.state :1900][INFO ][5008] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 09:55:24,677 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 09:55:24,677 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 09:55:24,864 [salt.state :906 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:24,864 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][5008] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:55:24,864 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5008] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:55:24,864 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5008] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 11:55:39,769 [salt.state :320 ][INFO ][5396] {'reg': {'Added': {'Inheritance': True, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Grant': None, 'Deny': None}, 'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Owner': None}}} -2020-03-04 11:55:39,769 [salt.state :1997][INFO ][5396] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:55:39.769119 (duration_in_ms=219.213) -2020-03-04 11:55:39,769 [salt.state :1819][INFO ][5396] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:55:39.769119 -2020-03-04 11:55:39,769 [salt.state :1852][INFO ][5396] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] -2020-03-04 11:55:39,769 [salt.utils.http :234 ][DEBUG ][5396] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method -2020-03-04 11:55:39,769 [salt.utils.http :235 ][DEBUG ][5396] Using backend: tornado -2020-03-04 11:55:40,330 [salt.loaded.int.states.archive:976 ][DEBUG ][5396] file.cached: {'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'result': True, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip'} -2020-03-04 11:55:40,330 [salt.loaded.int.states.archive:91 ][DEBUG ][5396] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 11:55:40,330 [salt.loaded.int.states.archive:996 ][DEBUG ][5396] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected -2020-03-04 11:55:40,362 [salt.loaded.int.module.win_file:1463][DEBUG ][5396] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win -2020-03-04 11:55:40,385 [salt.loaded.int.module.win_file:1463][DEBUG ][5396] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -2020-03-04 11:55:40,391 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5396] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 11:55:40,393 [salt.loaded.int.states.archive:1247][DEBUG ][5396] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 11:55:40,583 [salt.loaded.int.states.archive:1543][DEBUG ][5396] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 11:55:40,583 [salt.state :320 ][INFO ][5396] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} -2020-03-04 11:55:40,583 [salt.state :1997][INFO ][5396] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:55:40.583313 (duration_in_ms=814.194) -2020-03-04 11:55:40,583 [salt.state :1819][INFO ][5396] Running state [rename-extract] at time 11:55:40.583313 -2020-03-04 11:55:40,583 [salt.state :1852][INFO ][5396] Executing state module.run for [rename-extract] -2020-03-04 11:55:40,598 [salt.state :320 ][INFO ][5396] {'file.rename': True} -2020-03-04 11:55:40,598 [salt.state :1997][INFO ][5396] Completed state [rename-extract] at time 11:55:40.598086 (duration_in_ms=14.773) -2020-03-04 11:55:40,598 [salt.state :1819][INFO ][5396] Running state [pkg.refresh_db] at time 11:55:40.598086 -2020-03-04 11:55:40,598 [salt.state :1852][INFO ][5396] Executing state module.run for [pkg.refresh_db] -2020-03-04 11:55:40,598 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][5396] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:21.267054) -2020-03-04 11:55:40,598 [salt.loaded.int.module.win_pkg:935 ][INFO ][5396] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 11:55:40,598 [salt.loaded.int.module.win_pkg:954 ][INFO ][5396] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 11:55:40,598 [salt.fileclient :234 ][INFO ][5396] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 11:55:40,865 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:55:40,865 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:55:40,865 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:55:40,865 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,877 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:55:40,877 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:55:40,877 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:55:40,877 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:55:40,877 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,877 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:55:40,877 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:55:40,877 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:55:40,877 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:55:40,893 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,893 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:55:40,893 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:55:40,893 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:55:40,893 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:55:40,893 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,893 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,909 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:55:40,909 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,925 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:55:40,925 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:55:40,925 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:55:40,925 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:55:40,925 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,925 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,940 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:55:40,940 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,956 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:55:40,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:55:40,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:55:40,956 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:55:40,956 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,956 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:55:40,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:55:40,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:55:40,971 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:55:40,971 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,971 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:55:40,971 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:55:40,971 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:55:40,971 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:55:40,971 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,987 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:40,987 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:55:40,987 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,003 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,018 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:55:41,018 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,049 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,049 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:55:41,049 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,067 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:55:41,067 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:55:41,067 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:55:41,067 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:55:41,067 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,067 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:55:41,081 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:55:41,081 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:55:41,081 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:55:41,081 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,081 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:55:41,081 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:55:41,081 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:55:41,081 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:55:41,096 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,096 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:55:41,096 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:55:41,096 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:55:41,096 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:55:41,096 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,096 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:55:41,096 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:55:41,096 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:55:41,113 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:55:41,113 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,113 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:55:41,113 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:55:41,113 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:55:41,113 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:55:41,113 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,127 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,127 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:55:41,127 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,143 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:55:41,143 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:55:41,143 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:55:41,143 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:55:41,143 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,143 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:55:41,143 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:55:41,159 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:55:41,159 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:55:41,159 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,159 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:55:41,159 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:55:41,159 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:55:41,159 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:55:41,159 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,177 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:55:41,177 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:55:41,177 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:55:41,177 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:55:41,177 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,177 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,190 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:55:41,190 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,206 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:55:41,206 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:55:41,206 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:55:41,206 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:55:41,206 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,206 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:55:41,206 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:55:41,206 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:55:41,221 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:55:41,221 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,221 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:55:41,221 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:55:41,221 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:55:41,221 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:55:41,221 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,221 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:55:41,221 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:55:41,238 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:55:41,238 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:55:41,238 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,238 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:55:41,238 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:55:41,238 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:55:41,238 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:55:41,238 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,253 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,253 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:55:41,253 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,268 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,268 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:55:41,268 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,284 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:55:41,284 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:55:41,284 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:55:41,284 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:55:41,284 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,284 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:55:41,284 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:55:41,284 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,299 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,299 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:55:41,299 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,315 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,315 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:55:41,315 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:55:41,331 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:55:41,331 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,331 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:55:41,331 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:55:41,331 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:55:41,331 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:55:41,331 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,346 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:55:41,346 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:55:41,346 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:55:41,346 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:55:41,346 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,346 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:55:41,346 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:55:41,362 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:55:41,362 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:55:41,362 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,362 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:55:41,362 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:55:41,362 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:55:41,362 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:55:41,362 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,377 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,377 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:55:41,377 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,394 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:55:41,394 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:55:41,394 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:55:41,394 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:55:41,394 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,394 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:55:41,394 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:55:41,394 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:55:41,409 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:55:41,409 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,409 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:55:41,409 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:55:41,409 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:55:41,409 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:55:41,409 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,409 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,424 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:55:41,424 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,440 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:55:41,440 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:55:41,440 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:55:41,440 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:55:41,440 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,440 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:55:41,440 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:55:41,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:55:41,456 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:55:41,456 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,456 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:55:41,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:55:41,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:55:41,456 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:55:41,456 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,471 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,471 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:55:41,471 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,487 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:55:41,487 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:55:41,487 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:55:41,487 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:55:41,487 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,487 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:55:41,487 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:55:41,504 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:55:41,504 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:55:41,504 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,504 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:55:41,504 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:55:41,504 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:55:41,504 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:55:41,504 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,519 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:55:41,519 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:55:41,519 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:55:41,519 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:55:41,519 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,519 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:55:41,535 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:55:41,535 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:55:41,535 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:55:41,535 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,535 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:55:41,557 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:55:41,557 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:55:41,557 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:55:41,557 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,565 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,565 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:55:41,565 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,581 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:55:41,581 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:55:41,581 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:55:41,581 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:55:41,581 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,581 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:55:41,581 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,596 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,596 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:55:41,596 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:55:41,613 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:55:41,613 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:55:41,613 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,613 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:55:41,613 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:55:41,613 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:55:41,613 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:55:41,613 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,629 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:55:41,629 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:55:41,629 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:55:41,629 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:55:41,629 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,629 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:55:41,629 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:55:41,644 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:55:41,644 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:55:41,644 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,644 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:55:41,644 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:55:41,644 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:55:41,644 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:55:41,644 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,659 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:55:41,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:55:41,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:55:41,659 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:55:41,659 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,659 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:55:41,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:55:41,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:55:41,659 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:55:41,675 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,675 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:55:41,675 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:55:41,675 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:55:41,675 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:55:41,675 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,675 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:55:41,675 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:55:41,675 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:55:41,692 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:55:41,692 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,692 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:55:41,692 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:55:41,692 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:55:41,692 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:55:41,692 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,707 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:55:41,707 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:55:41,707 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:55:41,707 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:55:41,707 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,707 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:55:41,707 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:55:41,707 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:55:41,722 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:55:41,722 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,722 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:55:41,722 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:55:41,722 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:55:41,722 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:55:41,722 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,737 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:55:41,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:55:41,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:55:41,737 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:55:41,737 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,737 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:55:41,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:55:41,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:55:41,752 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:55:41,752 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,752 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:55:41,752 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:55:41,752 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:55:41,752 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:55:41,752 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,752 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,768 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:55:41,768 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,784 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:55:41,784 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:55:41,784 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:55:41,784 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:55:41,784 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,784 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:55:41,784 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:55:41,784 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:55:41,799 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:55:41,799 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,799 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:55:41,799 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:55:41,799 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:55:41,799 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:55:41,799 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,799 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,815 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:55:41,815 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,831 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:55:41,831 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:55:41,831 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:55:41,831 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:55:41,831 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,846 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:55:41,846 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:55:41,846 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:55:41,846 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:55:41,846 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,846 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:55:41,846 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:55:41,862 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:55:41,862 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:55:41,862 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,862 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:55:41,862 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:55:41,878 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:55:41,878 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:55:41,878 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,878 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:55:41,878 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:55:41,878 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:55:41,893 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:55:41,893 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,893 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:55:41,893 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:55:41,893 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:55:41,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:55:41,909 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,909 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:55:41,909 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:55:41,909 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:55:41,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:55:41,924 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,924 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:55:41,924 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:55:41,924 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:55:41,924 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:55:41,924 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,941 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:55:41,941 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:55:41,941 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:55:41,941 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:55:41,941 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,957 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:55:41,957 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:55:41,957 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:55:41,957 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:55:41,957 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,973 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:55:41,973 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:55:41,973 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:55:41,973 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:55:41,973 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,987 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:55:41,987 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:55:41,987 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:55:41,987 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:55:41,987 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:41,987 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:55:42,005 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:55:42,005 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:55:42,005 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:55:42,005 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,020 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:55:42,020 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:55:42,020 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:55:42,020 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:55:42,020 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,034 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:55:42,034 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:55:42,034 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:55:42,034 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:55:42,034 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,049 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:55:42,049 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:55:42,049 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:55:42,049 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:55:42,049 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,065 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:55:42,065 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:55:42,065 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:55:42,065 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:55:42,089 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,089 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,096 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:55:42,096 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,112 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:55:42,112 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:55:42,112 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:55:42,112 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:55:42,112 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,112 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:55:42,112 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:55:42,128 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:55:42,128 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:55:42,128 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,128 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:55:42,128 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:55:42,128 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:55:42,128 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:55:42,128 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,144 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:55:42,144 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:55:42,144 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:55:42,144 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:55:42,144 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,159 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:55:42,159 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:55:42,159 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:55:42,159 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:55:42,159 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,159 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:55:42,175 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:55:42,175 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:55:42,175 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:55:42,175 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,190 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:55:42,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:55:42,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:55:42,190 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:55:42,190 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,190 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:55:42,206 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:55:42,206 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:55:42,206 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:55:42,206 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,206 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:55:42,222 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:55:42,222 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:55:42,222 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:55:42,222 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,222 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:55:42,222 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:55:42,237 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:55:42,237 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:55:42,237 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,237 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:55:42,237 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:55:42,237 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:55:42,237 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:55:42,237 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,252 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:55:42,252 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:55:42,252 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:55:42,252 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:55:42,252 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,268 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:55:42,268 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:55:42,268 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:55:42,268 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:55:42,268 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,284 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:55:42,284 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:55:42,284 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:55:42,284 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:55:42,284 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,284 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:55:42,300 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:55:42,300 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:55:42,300 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:55:42,300 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,300 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:55:42,300 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:55:42,300 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:55:42,315 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:55:42,315 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,315 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:55:42,315 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:55:42,315 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:55:42,315 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:55:42,315 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,331 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:55:42,331 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,331 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,331 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,331 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,346 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,346 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,346 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,346 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,346 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,346 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,362 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:55:42,362 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:55:42,362 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:55:42,362 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,362 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:55:42,362 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:55:42,377 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:55:42,377 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:55:42,377 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,377 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:55:42,377 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:55:42,377 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:55:42,377 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:55:42,377 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,393 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:55:42,393 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:55:42,393 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:55:42,393 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:55:42,393 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,409 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:55:42,409 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:55:42,409 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:55:42,409 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:55:42,409 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,409 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:55:42,424 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:55:42,424 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:55:42,424 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:55:42,424 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,424 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:55:42,424 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,424 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,424 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,440 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,440 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:55:42,440 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,440 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,440 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,440 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,456 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:55:42,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:55:42,456 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:55:42,456 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,471 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:55:42,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,471 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,471 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,471 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:55:42,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:55:42,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:55:42,487 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:55:42,487 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,487 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:55:42,487 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:55:42,487 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:55:42,487 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:55:42,487 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,487 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,503 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:55:42,503 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,518 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,518 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:55:42,518 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,535 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,535 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:55:42,535 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,552 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:55:42,552 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:55:42,552 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:55:42,552 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:55:42,552 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,552 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,566 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:55:42,566 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,582 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:55:42,582 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:55:42,582 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:55:42,582 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:55:42,582 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,597 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:55:42,597 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:55:42,597 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:55:42,597 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:55:42,597 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,613 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:55:42,613 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:55:42,613 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:55:42,613 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:55:42,613 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,613 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:55:42,613 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:55:42,628 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:55:42,628 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:55:42,628 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,628 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:55:42,628 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:55:42,628 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:55:42,628 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:55:42,628 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,644 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:55:42,644 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:55:42,644 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:55:42,644 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:55:42,644 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,644 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:55:42,644 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:55:42,644 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:55:42,644 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:55:42,659 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,659 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:55:42,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:55:42,659 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:55:42,659 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:55:42,659 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,659 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:55:42,659 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:55:42,675 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:55:42,675 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:55:42,675 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,675 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:55:42,675 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:55:42,675 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:55:42,675 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:55:42,675 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,690 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,690 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:55:42,690 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,706 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,706 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:55:42,706 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,722 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,722 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:55:42,722 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,737 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,737 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:55:42,737 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,752 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,752 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:55:42,752 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,768 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,768 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:55:42,768 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,768 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,784 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:55:42,784 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,784 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,799 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:55:42,799 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,799 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,815 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,815 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:55:42,815 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,832 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,832 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:55:42,832 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,848 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,848 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:55:42,848 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,863 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,863 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:55:42,863 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:55:42,879 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:55:42,879 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,879 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:55:42,879 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:55:42,879 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:55:42,879 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:55:42,879 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,879 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:55:42,879 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,893 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,893 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:55:42,893 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,909 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,909 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:55:42,909 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,925 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,925 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:55:42,925 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,941 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,941 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:55:42,941 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,956 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,956 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:55:42,956 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,972 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,972 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:55:42,972 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,987 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:42,987 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:55:42,987 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,003 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:55:43,003 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:55:43,003 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:55:43,003 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:55:43,003 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,003 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:55:43,003 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:55:43,003 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:55:43,018 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:55:43,018 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,018 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:55:43,018 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:55:43,018 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:55:43,018 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:55:43,018 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,018 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:55:43,018 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,035 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,035 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:55:43,035 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:55:43,050 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:55:43,050 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:55:43,050 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,050 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:55:43,050 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:55:43,050 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:55:43,050 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:55:43,050 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,050 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,065 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,065 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:55:43,065 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:55:43,081 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:55:43,081 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:55:43,081 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,081 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:55:43,081 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:55:43,081 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:55:43,081 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:55:43,081 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,081 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,097 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:55:43,097 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,113 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:55:43,113 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:55:43,113 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:55:43,113 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:55:43,113 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,113 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,131 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:55:43,131 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,144 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:55:43,144 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:55:43,144 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:55:43,144 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:55:43,144 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,144 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:55:43,144 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:55:43,144 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:55:43,144 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:55:43,158 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,159 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:55:43,159 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:55:43,159 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:55:43,179 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:55:43,179 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,179 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:55:43,179 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:55:43,179 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:55:43,179 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,190 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,190 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:55:43,190 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,206 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,206 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:55:43,206 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,223 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,223 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:55:43,223 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,239 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,239 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:55:43,239 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,254 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,254 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:55:43,254 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,269 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:55:43,269 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:55:43,269 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:55:43,269 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:55:43,269 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,269 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:55:43,269 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,284 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,284 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:55:43,284 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,302 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,302 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:55:43,302 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,317 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,317 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:55:43,317 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,332 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,332 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:55:43,332 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,348 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,348 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:55:43,348 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,364 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,364 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:55:43,364 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,378 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,378 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:55:43,378 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,393 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,393 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:55:43,393 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,393 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,409 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:55:43,409 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,424 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,424 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:55:43,424 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,424 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,440 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:55:43,440 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,455 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,456 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:55:43,456 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,456 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,471 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:55:43,471 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,471 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,488 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:55:43,488 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,503 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,503 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:55:43,503 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,503 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,519 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:55:43,519 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,534 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,534 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:55:43,534 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,550 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,550 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:55:43,550 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,565 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,565 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:55:43,565 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,581 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,581 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:55:43,581 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,596 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,596 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:55:43,596 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,612 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,612 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:55:43,612 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,643 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:55:43,643 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:55:43,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:55:43,643 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:55:43,643 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,643 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:55:43,643 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:55:43,643 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:55:43,643 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:55:43,660 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,660 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:55:43,660 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:55:43,660 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:55:43,660 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:55:43,660 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,660 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:55:43,660 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,674 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,674 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:55:43,674 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,690 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,690 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:55:43,690 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,706 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,706 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:55:43,706 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:55:43,723 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,723 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:55:43,723 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:55:43,723 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:55:43,723 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:55:43,723 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,723 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,737 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:55:43,737 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,737 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,753 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1093][DEBUG ][5396] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1101][DEBUG ][5396] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1121][DEBUG ][5396] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:55:43,753 [salt.fileclient :1149][DEBUG ][5396] No dest file found -2020-03-04 11:55:43,753 [salt.fileclient :1230][INFO ][5396] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:55:43,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,768 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls -2020-03-04 11:55:43,768 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,785 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.016717910766601562 -2020-03-04 11:55:43,785 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +2020-03-06 09:55:24,864 [salt.state :320 ][INFO ][5008] {'reg': {'Added': {'Perms': {'Grant': None, 'Deny': None}, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Entry': 'SystemDefaultTlsVersions', 'Value': 1, 'Owner': None, 'Inheritance': True}}} +2020-03-06 09:55:24,879 [salt.state :2045][INFO ][5008] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:55:24.879742 (duration_in_ms=218.496) +2020-03-06 09:55:24,879 [salt.state :1867][INFO ][5008] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 09:55:24.879742 +2020-03-06 09:55:24,879 [salt.state :1900][INFO ][5008] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 09:55:24,879 [salt.utils.http :234 ][DEBUG ][5008] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 09:55:24,879 [salt.utils.http :235 ][DEBUG ][5008] Using backend: tornado +2020-03-06 09:55:25,412 [salt.loaded.int.states.archive:1039][DEBUG ][5008] file.cached: {'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True, 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}} +2020-03-06 09:55:25,412 [salt.loaded.int.states.archive:91 ][DEBUG ][5008] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 09:55:25,426 [salt.loaded.int.states.archive:1059][DEBUG ][5008] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 09:55:25,458 [salt.loaded.int.module.win_file:1463][DEBUG ][5008] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 09:55:25,473 [salt.loaded.int.module.win_file:1463][DEBUG ][5008] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 09:55:25,473 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5008] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 09:55:25,473 [salt.loaded.int.states.archive:1344][DEBUG ][5008] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 09:55:25,630 [salt.loaded.int.states.archive:1643][DEBUG ][5008] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 09:55:25,630 [salt.state :320 ][INFO ][5008] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} +2020-03-06 09:55:25,630 [salt.state :2045][INFO ][5008] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 09:55:25.630601 (duration_in_ms=750.859) +2020-03-06 09:55:25,630 [salt.state :1867][INFO ][5008] Running state [rename-extract] at time 09:55:25.630601 +2020-03-06 09:55:25,630 [salt.state :1900][INFO ][5008] Executing state module.run for [rename-extract] +2020-03-06 09:55:25,630 [salt.state :320 ][INFO ][5008] {'file.rename': True} +2020-03-06 09:55:25,630 [salt.state :2045][INFO ][5008] Completed state [rename-extract] at time 09:55:25.630601 (duration_in_ms=0.0) +2020-03-06 09:55:25,630 [salt.state :1867][INFO ][5008] Running state [pkg.refresh_db] at time 09:55:25.630601 +2020-03-06 09:55:25,630 [salt.state :1900][INFO ][5008] Executing state module.run for [pkg.refresh_db] +2020-03-06 09:55:25,630 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][5008] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:24.610155) +2020-03-06 09:55:25,630 [salt.loaded.int.module.win_pkg:939 ][INFO ][5008] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 09:55:25,630 [salt.loaded.int.module.win_pkg:958 ][INFO ][5008] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 09:55:25,630 [salt.fileclient :234 ][INFO ][5008] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 09:55:25,786 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:55:25,786 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:55:25,786 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:55:25,802 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,802 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:55:25,802 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:55:25,802 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,817 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,817 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:55:25,817 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,833 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,833 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:55:25,833 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,850 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,850 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:55:25,850 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,865 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,865 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:55:25,865 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,865 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,880 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,880 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:55:25,880 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,896 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,896 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:55:25,896 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,911 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,911 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:55:25,911 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,926 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,926 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:55:25,926 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,943 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,943 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:55:25,943 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,959 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,959 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:55:25,959 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,974 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,974 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:55:25,974 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,974 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,989 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:25,989 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:55:25,989 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,006 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,006 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:55:26,006 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,021 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,021 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:55:26,021 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,036 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,036 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:55:26,036 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,052 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,052 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:55:26,052 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,068 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,068 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:55:26,068 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,082 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,082 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:55:26,082 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,098 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,098 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:55:26,098 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,114 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,114 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:55:26,114 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,114 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,130 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:55:26,130 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,130 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,146 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,146 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:55:26,146 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,161 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,161 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:55:26,161 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,176 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,176 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:55:26,176 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,193 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,193 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:55:26,193 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,208 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,208 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:55:26,208 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,224 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,224 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:55:26,224 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,240 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,240 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:55:26,240 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,254 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,254 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:55:26,254 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,271 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,271 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:55:26,271 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,286 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,286 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:55:26,286 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,303 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,303 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:55:26,303 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,317 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,317 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:55:26,317 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,333 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:55:26,333 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:55:26,333 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:55:26,333 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:55:26,333 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,333 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:55:26,333 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:55:26,333 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:55:26,333 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:55:26,349 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,349 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:55:26,349 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:55:26,349 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:55:26,349 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:55:26,349 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,349 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:55:26,349 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,365 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,365 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:55:26,365 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,379 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,379 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:55:26,379 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,396 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,396 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:55:26,396 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,411 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,411 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:55:26,411 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,427 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,427 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:55:26,427 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:55:26,443 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:55:26,443 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,443 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:55:26,443 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:55:26,443 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:55:26,443 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:55:26,443 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,443 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:55:26,443 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,458 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,458 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:55:26,458 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,474 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,474 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:55:26,474 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:55:26,489 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:55:26,489 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:55:26,489 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,489 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:55:26,489 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:55:26,489 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:55:26,489 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:55:26,489 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,489 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,505 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,505 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:55:26,505 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:55:26,521 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:55:26,521 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:55:26,521 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,521 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:55:26,521 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:55:26,521 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:55:26,521 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:55:26,521 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,537 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,537 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:55:26,537 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,552 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,552 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:55:26,552 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,552 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,568 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:55:26,568 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,584 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,584 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:55:26,584 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,599 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,599 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:55:26,599 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,614 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,614 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:55:26,614 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,630 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,630 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:55:26,630 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,646 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,646 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:55:26,646 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,661 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,661 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:55:26,661 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,677 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,677 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:55:26,677 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,692 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,692 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:55:26,692 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,709 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:55:26,709 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:55:26,709 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:55:26,709 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:55:26,709 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,709 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:55:26,709 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,724 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,724 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:55:26,724 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:55:26,739 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:55:26,739 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,739 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:55:26,739 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:55:26,739 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:55:26,739 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:55:26,739 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,739 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,755 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:55:26,755 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,770 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,770 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:55:26,770 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,770 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,787 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:55:26,787 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,802 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,802 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:55:26,802 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,818 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,818 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:55:26,818 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,833 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,833 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,833 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,849 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,849 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:55:26,849 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,864 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,864 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:55:26,864 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,880 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,880 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:55:26,880 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,897 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:55:26,897 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,897 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,897 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,897 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,897 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:55:26,897 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,897 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,897 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,912 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,912 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,912 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:55:26,912 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:55:26,912 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:55:26,912 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,912 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:55:26,912 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,926 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,926 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:55:26,926 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,942 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,942 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:55:26,942 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,958 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,958 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:55:26,958 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,975 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,975 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:55:26,975 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,989 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:26,989 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:55:26,989 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,005 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,005 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:55:27,005 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,021 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,021 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:55:27,021 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,036 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,036 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:55:27,036 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,051 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,051 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:55:27,051 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,068 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,068 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:55:27,068 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,083 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,083 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:55:27,083 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,100 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:55:27,100 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:55:27,100 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:55:27,100 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:55:27,100 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,100 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:55:27,100 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:55:27,100 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:55:27,100 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,115 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,115 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:55:27,115 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,130 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,130 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:55:27,130 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,146 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:55:27,146 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:55:27,146 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:55:27,146 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:55:27,146 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,146 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:55:27,146 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:55:27,146 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:55:27,146 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:55:27,161 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,161 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:55:27,161 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:55:27,161 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:55:27,161 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:55:27,161 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,161 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:55:27,161 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:55:27,161 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,176 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,176 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:55:27,176 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,192 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,192 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:55:27,192 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,209 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:55:27,209 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:55:27,209 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:55:27,209 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:55:27,209 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,209 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:55:27,209 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:55:27,209 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:55:27,209 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,223 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,223 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:55:27,223 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,239 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,239 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:55:27,239 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,255 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:55:27,255 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:55:27,255 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:55:27,255 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:55:27,255 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,271 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,271 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:55:27,271 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,287 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,287 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:55:27,287 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,302 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,302 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:55:27,302 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,318 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,318 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:55:27,318 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,318 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,333 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:55:27,333 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,333 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:55:27,349 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:55:27,349 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:55:27,349 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:55:27,349 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,349 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,365 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:55:27,365 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,365 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,380 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:55:27,380 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,380 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,396 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:55:27,396 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,396 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,411 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,411 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:55:27,411 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:55:27,427 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:55:27,427 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,427 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:55:27,427 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:55:27,427 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:55:27,427 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:55:27,427 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,427 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:55:27,427 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,442 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,442 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:55:27,442 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,458 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,458 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:55:27,458 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,473 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,473 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:55:27,473 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,490 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:55:27,490 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:55:27,490 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:55:27,490 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:55:27,490 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,505 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:55:27,505 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:55:27,505 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:55:27,505 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:55:27,505 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,521 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,521 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:55:27,521 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,536 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,536 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:55:27,536 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,552 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,552 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:55:27,552 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,567 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,567 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:55:27,567 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,582 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,583 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:55:27,583 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,583 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,600 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:55:27,600 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,600 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,614 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:55:27,614 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,614 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,630 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:55:27,630 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,630 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,646 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:55:27,646 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,646 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,661 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:55:27,661 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,661 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,677 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,677 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:55:27,677 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,693 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,693 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:55:27,693 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,708 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,708 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:55:27,708 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,723 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,723 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:55:27,723 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,739 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,739 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:55:27,739 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,755 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,755 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:55:27,755 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,771 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,771 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:55:27,771 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,786 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,786 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:55:27,786 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,802 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,802 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:55:27,802 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,817 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,817 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:55:27,817 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,833 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,833 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:55:27,833 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,849 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,849 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:55:27,849 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,864 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,864 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:55:27,864 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,880 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,880 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:55:27,880 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,895 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:55:27,895 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:55:27,895 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:55:27,895 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:55:27,895 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,895 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:55:27,895 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,911 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,911 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:55:27,911 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,927 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,927 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:55:27,927 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,942 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,942 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:55:27,942 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:55:27,958 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:55:27,958 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,958 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:55:27,958 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:55:27,958 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:55:27,958 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:55:27,958 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,958 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:55:27,958 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:55:27,974 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:55:27,974 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:55:27,974 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,974 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:55:27,974 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:55:27,974 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:55:27,974 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:55:27,974 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,974 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:55:27,990 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:55:27,990 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:55:27,990 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:55:27,990 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:27,990 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:55:27,990 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:55:27,990 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:55:27,990 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:55:28,006 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,006 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:55:28,006 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:55:28,006 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:55:28,006 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:55:28,006 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,006 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:55:28,006 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,021 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,021 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:55:28,021 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:55:28,037 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:55:28,037 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,037 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:55:28,037 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:55:28,037 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:55:28,037 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:55:28,037 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,037 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:55:28,037 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,051 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,051 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:55:28,051 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:55:28,067 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:55:28,067 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,067 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:55:28,067 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:55:28,067 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:55:28,067 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:55:28,067 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,067 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:55:28,067 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:55:28,082 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:55:28,083 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:55:28,083 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,083 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:55:28,083 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:55:28,083 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:55:28,083 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:55:28,083 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,083 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:55:28,083 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,098 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,098 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:55:28,098 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,114 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,114 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:55:28,114 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,130 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:55:28,130 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:55:28,130 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:55:28,130 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:55:28,130 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,130 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:55:28,130 [salt.fileclient :1101][DEBUG ][5008] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:55:28,130 [salt.fileclient :1109][DEBUG ][5008] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:55:28,130 [salt.fileclient :1129][DEBUG ][5008] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:55:28,145 [salt.fileclient :1157][DEBUG ][5008] No dest file found +2020-03-06 09:55:28,145 [salt.fileclient :1238][INFO ][5008] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:55:28,145 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,145 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,145 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 09:55:28,145 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,162 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.016728639602661133 +2020-03-06 09:55:28,162 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -3409,11 +3295,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a 7zip: - '18.06.00.0': + '16.04.00.0': - full_name: '7-Zip 18.06 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1806-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3422,11 +3308,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.05.00.0': + '16.03.00.0': - full_name: '7-Zip 18.05 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1805-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3435,11 +3321,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.03.00.0': + '16.02.00.0': - full_name: '7-Zip 18.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1803-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3448,11 +3334,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '18.01.00.0': + '16.00.00.0': - full_name: '7-Zip 18.01 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1801-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3463,11 +3349,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a - '19.00.00.0': + '18.06.00.0': - full_name: '7-Zip 19.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1900-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3476,13 +3362,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - - - '16.04.00.0': + '18.05.00.0': - full_name: '7-Zip 16.04 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1604-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3491,11 +3375,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.03.00.0': + '18.03.00.0': - full_name: '7-Zip 16.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1603-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3504,11 +3388,11 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.02.00.0': + '18.01.00.0': - full_name: '7-Zip 16.02 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1602-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3517,11 +3401,13 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a locale: en_US reboot: False - '16.00.00.0': + + + '19.00.00.0': - full_name: '7-Zip 16.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1600-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3532,15 +3418,15 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a -2020-03-04 11:55:43,785 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('7zip', OrderedDict([('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,785 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,785 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,785 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,785 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls -2020-03-04 11:55:43,785 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.015088319778442383 -2020-03-04 11:55:43,800 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +2020-03-06 09:55:28,162 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:55:28,162 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,162 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,162 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,162 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 09:55:28,162 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,178 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.016244888305664062 +2020-03-06 09:55:28,178 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: activeperl_x64: '5.22.4': @@ -3574,15 +3460,15 @@ activeperl_x64: reboot: False -2020-03-04 11:55:43,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,178 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,800 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls -2020-03-04 11:55:43,800 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.015154600143432617 -2020-03-04 11:55:43,815 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +2020-03-06 09:55:28,178 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,178 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,178 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,178 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 09:55:28,178 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,193 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0147705078125 +2020-03-06 09:55:28,193 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: activeperl_x86: '5.22.4': @@ -3598,15 +3484,15 @@ activeperl_x86: reboot: False -2020-03-04 11:55:43,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,193 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,815 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls -2020-03-04 11:55:43,815 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,815 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +2020-03-06 09:55:28,193 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,193 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,193 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,193 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 09:55:28,193 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,193 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,193 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: adobeair: latest: full_name: 'Adobe AIR' @@ -3627,15 +3513,15 @@ adobeair: locale: en_US reboot: False -2020-03-04 11:55:43,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,193 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.015614509582519531 -2020-03-04 11:55:43,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,831 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls -2020-03-04 11:55:43,831 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,831 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +2020-03-06 09:55:28,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.014521360397338867 +2020-03-06 09:55:28,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,208 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 09:55:28,208 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,208 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: # to understand what is meant by "classic" see # http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html @@ -3829,15 +3715,15 @@ adobereader-dc-classic: reboot: False -2020-03-04 11:55:43,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,846 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.01581120491027832 -2020-03-04 11:55:43,846 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,846 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,846 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls -2020-03-04 11:55:43,846 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,846 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,846 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +2020-03-06 09:55:28,224 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.01626133918762207 +2020-03-06 09:55:28,224 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,224 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,224 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 09:55:28,224 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,224 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,224 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: adobereader-xi: '11.0.10': full_name: 'Adobe Reader XI (11.0.10)' @@ -3858,15 +3744,15 @@ adobereader-xi: locale: en_US reboot: False -2020-03-04 11:55:43,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,846 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,846 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,846 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,862 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls -2020-03-04 11:55:43,862 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,862 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +2020-03-06 09:55:28,224 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,224 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,224 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,224 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 09:55:28,239 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,239 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: adobereader: '10.1.4': full_name: 'Adobe Reader X (10.1.4)' @@ -3887,15 +3773,15 @@ adobereader: locale: en_US reboot: False -2020-03-04 11:55:43,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,862 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls -2020-03-04 11:55:43,862 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,862 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +2020-03-06 09:55:28,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,239 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 09:55:28,239 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,239 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: adobeshockwaveplayer: latest: full_name: 'Adobe Shockwave Player 12.2' @@ -3909,15 +3795,15 @@ adobeshockwaveplayer: # # Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version -2020-03-04 11:55:43,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,878 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,878 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,878 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls -2020-03-04 11:55:43,878 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,878 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,878 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: +2020-03-06 09:55:28,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,255 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 09:55:28,255 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,255 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: @@ -3940,15 +3826,15 @@ adv-ip-scanner: # http://www.advanced-ip-scanner.com # a product of: www.radmin.com -2020-03-04 11:55:43,878 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,878 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,878 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,878 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,893 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls -2020-03-04 11:55:43,893 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,893 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: +2020-03-06 09:55:28,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,270 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 09:55:28,270 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,270 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: @@ -3971,15 +3857,15 @@ adv-port-scanner: # http://www.advanced-port-scanner.com # a product of: www.radmin.com -2020-03-04 11:55:43,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,893 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls -2020-03-04 11:55:43,908 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0008025169372558594 -2020-03-04 11:55:43,909 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +2020-03-06 09:55:28,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,270 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 09:55:28,270 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.015595436096191406 +2020-03-06 09:55:28,286 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: advancedlogging: '1.0.0625.10': full_name: 'IIS Advanced Logging 1.0' @@ -3993,15 +3879,15 @@ advancedlogging: locale: en_US reboot: False -2020-03-04 11:55:43,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,909 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls -2020-03-04 11:55:43,909 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,909 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +2020-03-06 09:55:28,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,286 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 09:55:28,286 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,286 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: # just 32-bit x86 msi package available @@ -4017,15 +3903,15 @@ anydesk-msi: locale: en_US reboot: False -2020-03-04 11:55:43,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,925 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0008916854858398438 -2020-03-04 11:55:43,925 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,925 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,925 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls -2020-03-04 11:55:43,925 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,925 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,925 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +2020-03-06 09:55:28,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,301 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 09:55:28,301 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,301 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,301 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: # just 32-bit x86 installer available @@ -4045,15 +3931,15 @@ anydesk: locale: en_US reboot: False -2020-03-04 11:55:43,925 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,301 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,925 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,925 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,940 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls -2020-03-04 11:55:43,940 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,940 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +2020-03-06 09:55:28,301 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,301 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 09:55:28,301 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,317 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.01559138298034668 +2020-03-06 09:55:28,317 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: applicationrequestrouting: '3.0.1952': full_name: 'Microsoft Application Request Routing 3.0' @@ -4067,15 +3953,15 @@ applicationrequestrouting: locale: en_US reboot: False -2020-03-04 11:55:43,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,940 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls -2020-03-04 11:55:43,940 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,940 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +2020-03-06 09:55:28,317 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,317 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 09:55:28,317 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,317 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,317 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: aspnet-mvc1: '1.0.0.0': full_name: 'Microsoft ASP.NET MVC 1.0' @@ -4087,15 +3973,15 @@ aspnet-mvc1: locale: en_US reboot: False -2020-03-04 11:55:43,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.015620708465576172 -2020-03-04 11:55:43,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,956 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls -2020-03-04 11:55:43,956 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,956 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: +2020-03-06 09:55:28,317 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,333 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 09:55:28,333 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,333 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: atom: @@ -4160,15 +4046,15 @@ atom: reboot: False -2020-03-04 11:55:43,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,971 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls -2020-03-04 11:55:43,971 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:43,971 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: +2020-03-06 09:55:28,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,333 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 09:55:28,333 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.016096830368041992 +2020-03-06 09:55:28,349 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: @@ -4196,15 +4082,15 @@ audacity: reboot: False -2020-03-04 11:55:43,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,971 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls -2020-03-04 11:55:43,971 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:43,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.015579938888549805 -2020-03-04 11:55:43,987 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: +2020-03-06 09:55:28,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,349 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 09:55:28,349 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.015624284744262695 +2020-03-06 09:55:28,364 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: @@ -4246,15 +4132,15 @@ autohotkey: locale: en_US reboot: False -2020-03-04 11:55:43,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:43,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:43,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:43,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:43,987 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls -2020-03-04 11:55:43,987 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,003 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.01616668701171875 -2020-03-04 11:55:44,003 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: +2020-03-06 09:55:28,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,364 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 09:55:28,364 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,364 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: autoit: @@ -4271,15 +4157,15 @@ autoit: reboot: False -2020-03-04 11:55:44,003 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,379 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,003 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,003 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,003 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,003 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls -2020-03-04 11:55:44,003 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,003 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,018 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +2020-03-06 09:55:28,379 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,379 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 09:55:28,379 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,379 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,379 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: autopsy: '4.3.0': full_name: 'Autopsy' @@ -4293,15 +4179,15 @@ autopsy: locale: en_US reboot: False -2020-03-04 11:55:44,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,379 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,018 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,018 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,018 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,018 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls -2020-03-04 11:55:44,018 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,018 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,018 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +2020-03-06 09:55:28,379 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,379 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 09:55:28,395 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,395 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available awscli: @@ -4317,15 +4203,15 @@ awscli: locale: en_US reboot: False -2020-03-04 11:55:44,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,018 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,018 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,034 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls -2020-03-04 11:55:44,034 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,034 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +2020-03-06 09:55:28,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,395 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 09:55:28,395 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,395 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: # due to winrepo installer limitations you need to manually download the exe from # https://go.microsoft.com/fwlink/?linkid=2049975 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... @@ -4343,15 +4229,15 @@ azuredatastudio: locale: en_US reboot: False -2020-03-04 11:55:44,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,034 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls -2020-03-04 11:55:44,034 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,049 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.015637874603271484 -2020-03-04 11:55:44,049 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +2020-03-06 09:55:28,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.01567983627319336 +2020-03-06 09:55:28,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,411 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 09:55:28,411 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,411 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: #the provider only offers the download of the latest version @@ -4367,15 +4253,15 @@ bandizip: locale: en_US reboot: False -2020-03-04 11:55:44,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,049 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,049 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,049 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,049 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls -2020-03-04 11:55:44,049 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,049 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,049 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +2020-03-06 09:55:28,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,411 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 09:55:28,411 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,427 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.01631331443786621 +2020-03-06 09:55:28,427 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: # just 32-bit x86 installer available @@ -4391,15 +4277,15 @@ belarc-advisor: locale: en_US reboot: False -2020-03-04 11:55:44,049 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,049 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,065 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls -2020-03-04 11:55:44,065 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,065 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +2020-03-06 09:55:28,427 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,427 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 09:55:28,427 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,427 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,427 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: bginfo4x: '3.3.6': full_name: 'BGINFO4X for Windows 3.3.6' @@ -4411,15 +4297,15 @@ bginfo4x: locale: en_US reboot: False -2020-03-04 11:55:44,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,065 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls -2020-03-04 11:55:44,065 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,065 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +2020-03-06 09:55:28,427 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,442 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 09:55:28,442 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,442 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: # source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe bitnami-nginxstack: '1.8.0-0': @@ -4432,15 +4318,15 @@ bitnami-nginxstack: locale: en_US reboot: False -2020-03-04 11:55:44,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,442 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,081 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls -2020-03-04 11:55:44,081 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,081 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +2020-03-06 09:55:28,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,442 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 09:55:28,442 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,442 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -4460,15 +4346,15 @@ bitvise: -2020-03-04 11:55:44,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,097 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,097 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls -2020-03-04 11:55:44,097 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,097 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,097 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +2020-03-06 09:55:28,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.015544891357421875 +2020-03-06 09:55:28,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,458 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 09:55:28,458 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available blender: @@ -4484,15 +4370,15 @@ blender: locale: en_US reboot: False -2020-03-04 11:55:44,097 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,097 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,097 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,097 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,097 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls -2020-03-04 11:55:44,111 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0010426044464111328 -2020-03-04 11:55:44,112 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +2020-03-06 09:55:28,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,473 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 09:55:28,473 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,473 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: bootracer: '6.50.0.450': full_name: 'BootRacer' @@ -4505,15 +4391,15 @@ bootracer: reboot: False # download zip archive manually and unpack msi to slat master winrepo-ng directory -2020-03-04 11:55:44,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,112 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,112 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,112 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls -2020-03-04 11:55:44,112 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,112 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: +2020-03-06 09:55:28,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,473 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 09:55:28,473 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,473 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: bulkrenameutility: @@ -4531,15 +4417,15 @@ bulkrenameutility: -2020-03-04 11:55:44,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,127 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,127 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,127 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,127 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls -2020-03-04 11:55:44,127 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,127 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,127 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +2020-03-06 09:55:28,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,490 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,490 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,490 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 09:55:28,490 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,490 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,490 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: # just 32-bit x86 installer available @@ -4577,15 +4463,15 @@ bulk_extractor: reboot: False -2020-03-04 11:55:44,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,490 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.015666961669921875 -2020-03-04 11:55:44,143 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,143 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,143 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls -2020-03-04 11:55:44,143 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,143 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: +2020-03-06 09:55:28,490 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,490 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,505 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,505 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 09:55:28,505 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,505 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,505 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: ccleaner-slim: @@ -4634,15 +4520,15 @@ ccleaner-slim: reboot: False -2020-03-04 11:55:44,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,159 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls -2020-03-04 11:55:44,159 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,159 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,179 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: +2020-03-06 09:55:28,505 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,505 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,505 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,505 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 09:55:28,505 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,520 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.014968633651733398 +2020-03-06 09:55:28,520 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: ccleaner: @@ -4669,15 +4555,15 @@ ccleaner: reboot: False -2020-03-04 11:55:44,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,179 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,179 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,179 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,179 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls -2020-03-04 11:55:44,179 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.011844158172607422 -2020-03-04 11:55:44,190 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +2020-03-06 09:55:28,520 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,520 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 09:55:28,520 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,520 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,520 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -4693,15 +4579,15 @@ cdburnerxp: locale: en_US reboot: False -2020-03-04 11:55:44,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,190 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls -2020-03-04 11:55:44,190 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,190 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +2020-03-06 09:55:28,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,536 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 09:55:28,536 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,536 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: # just 32-bit x86 installer available @@ -4717,15 +4603,15 @@ cdroller: locale: en_US reboot: False -2020-03-04 11:55:44,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,206 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.01512289047241211 -2020-03-04 11:55:44,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,206 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls -2020-03-04 11:55:44,206 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,206 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,206 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +2020-03-06 09:55:28,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,551 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 09:55:28,551 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,551 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,551 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: check-mk-agent-msi: '1.5.0.3268': @@ -4939,15 +4825,15 @@ check-mk-agent-msi: reboot: False -2020-03-04 11:55:44,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,551 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.015998125076293945 -2020-03-04 11:55:44,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,222 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls -2020-03-04 11:55:44,222 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,222 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +2020-03-06 09:55:28,551 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,567 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 09:55:28,567 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: check-mk-agent: 'Not Found': full_name: 'Check_MK Agent 1.2.8b4' @@ -4961,15 +4847,15 @@ check-mk-agent: locale: en_US reboot: False -2020-03-04 11:55:44,222 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,237 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls -2020-03-04 11:55:44,237 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,237 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +2020-03-06 09:55:28,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,567 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 09:55:28,567 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: chrome-rdp: latest: full_name: 'Chrome Remote Desktop Host' @@ -4981,15 +4867,15 @@ chrome-rdp: locale: en_US reboot: False -2020-03-04 11:55:44,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,252 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.015697717666625977 -2020-03-04 11:55:44,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,252 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls -2020-03-04 11:55:44,252 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,252 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,252 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +2020-03-06 09:55:28,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,583 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,583 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,583 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 09:55:28,583 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,583 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,583 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: chrome: latest: full_name: 'Google Chrome' @@ -5001,15 +4887,15 @@ chrome: locale: en_US reboot: False -2020-03-04 11:55:44,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,252 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,269 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls -2020-03-04 11:55:44,269 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,269 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,269 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +2020-03-06 09:55:28,583 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,583 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,583 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,583 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 09:55:28,583 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,583 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,598 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: clamav: '0.99.1': @@ -5036,15 +4922,15 @@ clamav: uninstaller: 'msiexec.exe' uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' -2020-03-04 11:55:44,269 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) -2020-03-04 11:55:44,269 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,269 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,269 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,269 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls -2020-03-04 11:55:44,269 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.015054941177368164 -2020-03-04 11:55:44,284 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +2020-03-06 09:55:28,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,598 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 09:55:28,598 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,598 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: # just 32-bit x86 installer available @@ -5078,15 +4964,15 @@ clamwin: locale: en_US reboot: False -2020-03-04 11:55:44,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,284 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls -2020-03-04 11:55:44,284 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,284 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +2020-03-06 09:55:28,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,614 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 09:55:28,614 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,614 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: classicshell: '4.2.4': full_name: 'Classic Shell' @@ -5100,15 +4986,15 @@ classicshell: locale: en_US reboot: False -2020-03-04 11:55:44,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,300 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.016057491302490234 -2020-03-04 11:55:44,300 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,300 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,300 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls -2020-03-04 11:55:44,300 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,300 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,300 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +2020-03-06 09:55:28,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,614 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 09:55:28,614 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,629 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.015805482864379883 +2020-03-06 09:55:28,629 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: # just 32-bit x86 installer available @@ -5152,15 +5038,15 @@ clink: reboot: False # https://mridgers.github.io/clink/ -2020-03-04 11:55:44,300 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,629 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,300 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,315 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls -2020-03-04 11:55:44,315 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,315 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,315 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +2020-03-06 09:55:28,629 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,629 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,629 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,629 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 09:55:28,629 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,629 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,629 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: conemu: '11.160.5290': @@ -5174,15 +5060,15 @@ conemu: locale: en_US reboot: False -2020-03-04 11:55:44,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,629 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,315 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,315 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls -2020-03-04 11:55:44,331 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,331 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,331 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +2020-03-06 09:55:28,645 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,645 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,645 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,645 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 09:55:28,645 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,645 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,645 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: cpu-z: '1.86': @@ -5428,15 +5314,15 @@ cpu-z: reboot: False -2020-03-04 11:55:44,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,645 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,331 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,346 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls -2020-03-04 11:55:44,346 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,346 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +2020-03-06 09:55:28,645 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,661 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,661 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,661 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 09:55:28,661 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,661 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available curl: @@ -5500,15 +5386,15 @@ curl: # Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, # so you might not be calling the right 'curl' -2020-03-04 11:55:44,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,362 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls -2020-03-04 11:55:44,362 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,362 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +2020-03-06 09:55:28,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,661 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,676 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 09:55:28,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,676 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: cyberduck-cli: '1.0.0.0': full_name: 'Cyberduck CLI' @@ -5520,15 +5406,15 @@ cyberduck-cli: locale: en_US reboot: False -2020-03-04 11:55:44,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,676 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,362 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls -2020-03-04 11:55:44,362 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,377 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.015185356140136719 -2020-03-04 11:55:44,377 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +2020-03-06 09:55:28,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,676 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 09:55:28,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,692 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.015651226043701172 +2020-03-06 09:55:28,692 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: # just 32-bit x86 installer available @@ -5549,10 +5435,10 @@ cyberduck-msi: - '6.9.0.29768': + '6.8.2.28974': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5561,10 +5447,10 @@ cyberduck-msi: - '6.8.2.28974': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5573,15 +5459,15 @@ cyberduck-msi: -2020-03-04 11:55:44,377 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,377 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,377 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,377 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,377 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls -2020-03-04 11:55:44,377 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,395 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.017904996871948242 -2020-03-04 11:55:44,395 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +2020-03-06 09:55:28,692 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:55:28,692 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,692 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,692 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,692 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 09:55:28,692 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,692 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,692 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: # just 32-bit x86 installer available @@ -5602,10 +5488,10 @@ cyberduck: - '6.9.0.29768': + '6.8.2.28974': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5614,10 +5500,10 @@ cyberduck: - '6.8.2.28974': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5626,15 +5512,15 @@ cyberduck: -2020-03-04 11:55:44,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,395 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,395 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,395 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,395 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls -2020-03-04 11:55:44,395 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.013706445693969727 -2020-03-04 11:55:44,409 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +2020-03-06 09:55:28,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:55:28,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.016080379486083984 +2020-03-06 09:55:28,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,708 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 09:55:28,708 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,708 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: # just 32-bit x86 installer available @@ -5659,15 +5545,15 @@ defraggler: locale: en_US reboot: False -2020-03-04 11:55:44,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,409 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls -2020-03-04 11:55:44,409 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,424 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +2020-03-06 09:55:28,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,725 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,725 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 09:55:28,725 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,725 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,725 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: dotnet: '4.6.01590': full_name: 'Microsoft .NET Framework 4.6.2' @@ -5714,15 +5600,15 @@ dotnet: locale: en_US reboot: False -2020-03-04 11:55:44,424 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,424 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,424 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls -2020-03-04 11:55:44,424 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,424 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,424 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +2020-03-06 09:55:28,725 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,725 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,739 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,739 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 09:55:28,739 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,739 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,739 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: # just 32-bit x86 installer available @@ -5743,15 +5629,15 @@ dropbox: locale: en_US reboot: False -2020-03-04 11:55:44,424 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,739 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,424 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,440 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls -2020-03-04 11:55:44,440 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,440 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,440 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +2020-03-06 09:55:28,739 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,739 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,739 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,739 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 09:55:28,739 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,754 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.01560211181640625 +2020-03-06 09:55:28,754 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: duplicati: '1.3.4': @@ -5768,15 +5654,15 @@ duplicati: cache_dir: False use_scheduler: False -2020-03-04 11:55:44,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) -2020-03-04 11:55:44,440 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,440 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls -2020-03-04 11:55:44,440 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,456 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.015704631805419922 -2020-03-04 11:55:44,456 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +2020-03-06 09:55:28,754 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,754 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,754 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,754 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 09:55:28,754 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,754 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,754 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available dvdstyler: @@ -5792,15 +5678,15 @@ dvdstyler: locale: en_US reboot: False -2020-03-04 11:55:44,456 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,456 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,456 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,456 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,456 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls -2020-03-04 11:55:44,456 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.016021728515625 -2020-03-04 11:55:44,472 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +2020-03-06 09:55:28,754 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,770 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,770 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,770 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 09:55:28,770 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,770 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,770 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: echo-desktop: '3.0.4': full_name: @@ -5812,15 +5698,15 @@ echo-desktop: uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" -2020-03-04 11:55:44,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,770 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) -2020-03-04 11:55:44,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,472 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls -2020-03-04 11:55:44,472 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,487 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +2020-03-06 09:55:28,770 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,786 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 09:55:28,786 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,786 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: eea: # '5.0.2260.1': # full_name: 'ESET Endpoint Antivirus' @@ -5852,15 +5738,15 @@ eea: # download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ # for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB -2020-03-04 11:55:44,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) -2020-03-04 11:55:44,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,487 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls -2020-03-04 11:55:44,487 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,487 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +2020-03-06 09:55:28,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,786 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 09:55:28,801 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,802 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0008518695831298828 +2020-03-06 09:55:28,802 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: emet: '5.5': full_name: 'EMET 5.5' @@ -5872,15 +5758,15 @@ emet: locale: en_US reboot: False -2020-03-04 11:55:44,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,502 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,502 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,502 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls -2020-03-04 11:55:44,502 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,502 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,502 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +2020-03-06 09:55:28,802 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,802 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,802 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,802 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 09:55:28,802 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,802 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,802 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: # just 32-bit x86 installer available @@ -5897,15 +5783,15 @@ emsisoft-anti-malware: locale: en_US reboot: False -2020-03-04 11:55:44,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,502 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,518 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls -2020-03-04 11:55:44,518 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,518 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: +2020-03-06 09:55:28,817 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.015475988388061523 +2020-03-06 09:55:28,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,817 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 09:55:28,817 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,817 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,817 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: eraser: @@ -5931,15 +5817,15 @@ eraser: reboot: False -2020-03-04 11:55:44,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,533 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls -2020-03-04 11:55:44,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,534 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +2020-03-06 09:55:28,817 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,833 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 09:55:28,833 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,833 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: evernote: '6.9.7.6770': full_name: 'Evernote v. 6.9.7' @@ -5969,15 +5855,15 @@ evernote: locale: en_US reboot: False -2020-03-04 11:55:44,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,534 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls -2020-03-04 11:55:44,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,534 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +2020-03-06 09:55:28,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,833 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 09:55:28,833 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.01513051986694336 +2020-03-06 09:55:28,848 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: # just 32-bit x86 installer available @@ -5993,15 +5879,15 @@ fiddler: locale: en_US reboot: False -2020-03-04 11:55:44,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.015769004821777344 -2020-03-04 11:55:44,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,549 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls -2020-03-04 11:55:44,549 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,549 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +2020-03-06 09:55:28,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,848 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,848 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,848 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 09:55:28,848 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,848 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: # just 32-bit x86 installer available @@ -6019,15 +5905,15 @@ filehippo-app-manager: reboot: False # download manually and place on master salt://win/repo-ng/filehippo-app-manager -2020-03-04 11:55:44,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,565 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls -2020-03-04 11:55:44,565 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,565 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: +2020-03-06 09:55:28,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:28,848 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,864 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,864 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 09:55:28,864 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,864 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: filezilla: @@ -6801,15 +6687,15 @@ filezilla: reboot: False -2020-03-04 11:55:44,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.01650261878967285 -2020-03-04 11:55:44,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,581 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls -2020-03-04 11:55:44,596 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,596 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,596 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +2020-03-06 09:55:28,880 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.01610565185546875 +2020-03-06 09:55:28,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,880 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 09:55:28,880 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,895 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.015109062194824219 +2020-03-06 09:55:28,895 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: firefox-esr_x64: '68.5.0': @@ -7473,15 +7359,15 @@ firefox-esr_x64: reboot: False -2020-03-04 11:55:44,613 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,613 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.016171932220458984 -2020-03-04 11:55:44,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,613 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls -2020-03-04 11:55:44,613 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,628 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.015538215637207031 -2020-03-04 11:55:44,628 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +2020-03-06 09:55:28,911 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.016410112380981445 +2020-03-06 09:55:28,911 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,911 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,926 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 09:55:28,926 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,926 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,926 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: firefox-esr_x86: @@ -8258,15 +8144,15 @@ firefox-esr_x86: reboot: False -2020-03-04 11:55:44,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,643 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015311241149902344 -2020-03-04 11:55:44,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,643 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls -2020-03-04 11:55:44,658 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.001276254653930664 -2020-03-04 11:55:44,659 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +2020-03-06 09:55:28,942 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015941381454467773 +2020-03-06 09:55:28,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,958 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 09:55:28,958 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:28,958 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:28,958 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: firefox_x64: '73.0': @@ -9250,15 +9136,15 @@ firefox_x64: reboot: False -2020-03-04 11:55:44,675 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:28,973 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.030246496200561523 -2020-03-04 11:55:44,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,690 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls -2020-03-04 11:55:44,690 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,707 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.016584396362304688 -2020-03-04 11:55:44,707 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +2020-03-06 09:55:28,989 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.016017675399780273 +2020-03-06 09:55:28,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:28,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:28,989 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 09:55:28,989 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.01564502716064453 +2020-03-06 09:55:29,005 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: firefox_x86: @@ -10605,15 +10491,15 @@ firefox_x86: reboot: False -2020-03-04 11:55:44,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,737 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.029985666275024414 -2020-03-04 11:55:44,737 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,737 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,737 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls -2020-03-04 11:55:44,737 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,737 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,737 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +2020-03-06 09:55:29,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.031209707260131836 +2020-03-06 09:55:29,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,036 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 09:55:29,036 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,051 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: # just 32-bit x86 installer available @@ -10630,15 +10516,15 @@ gedit: locale: en_US reboot: False -2020-03-04 11:55:44,737 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,737 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,753 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls -2020-03-04 11:55:44,753 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,753 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,753 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +2020-03-06 09:55:29,051 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,051 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,051 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,051 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 09:55:29,051 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,051 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,051 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: # just 32-bit x86 installer available # Gimp installs into %ProgramFiles on either cpu arch gimp: @@ -10684,15 +10570,15 @@ gimp: restart: False -2020-03-04 11:55:44,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) -2020-03-04 11:55:44,753 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,768 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls -2020-03-04 11:55:44,768 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,768 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +2020-03-06 09:55:29,051 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,051 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,067 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 09:55:29,067 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,067 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,067 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: git-extensions: '2.48.05': full_name: 'Git Extensions 2.48.05' @@ -10713,15 +10599,15 @@ git-extensions: locale: en_US reboot: False -2020-03-04 11:55:44,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,768 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls -2020-03-04 11:55:44,768 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.01619720458984375 -2020-03-04 11:55:44,784 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +2020-03-06 09:55:29,067 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,067 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 09:55:29,067 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,083 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.016149520874023438 +2020-03-06 09:55:29,083 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available for git @@ -11560,15 +11446,15 @@ msysgit: locale: en_US reboot: False -2020-03-04 11:55:44,799 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,099 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,799 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,799 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,799 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,815 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls -2020-03-04 11:55:44,815 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,815 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +2020-03-06 09:55:29,099 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015615224838256836 +2020-03-06 09:55:29,099 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,099 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,099 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 09:55:29,099 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,099 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,099 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: # just 32-bit x86 installer available @@ -11593,15 +11479,15 @@ glarysoft-absolute-uninstaller: locale: en_US reboot: False -2020-03-04 11:55:44,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,099 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,815 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls -2020-03-04 11:55:44,815 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.015607357025146484 -2020-03-04 11:55:44,831 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +2020-03-06 09:55:29,114 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.014939069747924805 +2020-03-06 09:55:29,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,114 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 09:55:29,114 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,130 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.016122817993164062 +2020-03-06 09:55:29,130 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: # just 32-bit x86 installer available @@ -11618,15 +11504,15 @@ gnucash: reboot: False -2020-03-04 11:55:44,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,130 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,831 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls -2020-03-04 11:55:44,831 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,853 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +2020-03-06 09:55:29,130 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,130 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,130 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,130 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 09:55:29,130 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,146 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015777587890625 +2020-03-06 09:55:29,146 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: # "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. # See https://golang.org/ @@ -12849,15 +12735,15 @@ golang: reboot: False -2020-03-04 11:55:44,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,161 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.009119272232055664 -2020-03-04 11:55:44,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,879 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls -2020-03-04 11:55:44,879 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,879 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,879 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +2020-03-06 09:55:29,161 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.015618324279785156 +2020-03-06 09:55:29,177 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,177 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,177 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 09:55:29,177 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,177 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,177 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: goodsync: '9.9.46.6': full_name: 'GoodSync' @@ -12869,15 +12755,15 @@ goodsync: locale: en_US reboot: False -2020-03-04 11:55:44,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,879 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,879 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,879 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,879 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls -2020-03-04 11:55:44,879 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.013956785202026367 -2020-03-04 11:55:44,893 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +2020-03-06 09:55:29,177 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,177 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,177 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,177 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 09:55:29,177 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.015442609786987305 +2020-03-06 09:55:29,192 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: # just 32-bit x86 installer available @@ -12895,15 +12781,15 @@ gow: # Gow - GNU on Windows - The lightweight alternative to Cygwin # https://github.com/bmatzelle/gow/wiki -2020-03-04 11:55:44,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,192 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,893 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls -2020-03-04 11:55:44,893 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,893 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +2020-03-06 09:55:29,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,192 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 09:55:29,192 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,208 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: # just 32-bit x86 installer available @@ -12977,15 +12863,15 @@ gpg4win-light: # https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 # -2020-03-04 11:55:44,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,909 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls -2020-03-04 11:55:44,909 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,925 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +2020-03-06 09:55:29,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,208 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 09:55:29,208 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,223 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.015578746795654297 +2020-03-06 09:55:29,223 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: # just 32-bit x86 installer available @@ -13053,15 +12939,15 @@ gpg4win-vanilla: reboot: False -2020-03-04 11:55:44,925 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,223 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,925 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,925 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,925 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,925 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls -2020-03-04 11:55:44,925 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,925 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,940 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: +2020-03-06 09:55:29,223 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,239 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 09:55:29,239 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,239 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: graylog-collector-sidecar: @@ -13137,15 +13023,15 @@ graylog-collector-sidecar: reboot: False -2020-03-04 11:55:44,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,940 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls -2020-03-04 11:55:44,940 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.016108036041259766 -2020-03-04 11:55:44,956 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +2020-03-06 09:55:29,239 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,239 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 09:55:29,239 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.015182018280029297 +2020-03-06 09:55:29,255 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: grepwin: '1.6.682': @@ -13192,15 +13078,15 @@ grepwin: locale: en_US reboot: False -2020-03-04 11:55:44,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,956 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls -2020-03-04 11:55:44,956 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,971 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +2020-03-06 09:55:29,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,255 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 09:55:29,255 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.015617847442626953 +2020-03-06 09:55:29,270 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: # just 32-bit x86 installer available @@ -13216,15 +13102,15 @@ gvim: locale: en_US reboot: False -2020-03-04 11:55:44,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,971 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls -2020-03-04 11:55:44,971 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,971 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +2020-03-06 09:55:29,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,270 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 09:55:29,270 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,270 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available # Source: https://handbrake.fr @@ -13241,15 +13127,15 @@ handbrake: locale: en_US reboot: False -2020-03-04 11:55:44,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:44,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:44,987 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls -2020-03-04 11:55:44,987 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:44,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:44,987 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +2020-03-06 09:55:29,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,287 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 09:55:29,287 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,287 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,287 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: hipchat: @@ -13263,15 +13149,15 @@ hipchat: msiexec: False reboot: False -2020-03-04 11:55:44,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,287 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:55:44,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:44,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:44,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,002 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls -2020-03-04 11:55:45,002 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,002 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,002 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +2020-03-06 09:55:29,287 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,287 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,287 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,287 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 09:55:29,287 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,287 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,302 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: hostsfileeditor: '1.2.0': @@ -13285,15 +13171,15 @@ hostsfileeditor: locale: en_US reboot: False -2020-03-04 11:55:45,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,002 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,002 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,002 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,019 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls -2020-03-04 11:55:45,019 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,019 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,019 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: +2020-03-06 09:55:29,302 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,302 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 09:55:29,302 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,302 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,302 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: hwinfo: '5.70': @@ -13308,15 +13194,15 @@ hwinfo: locale: en_US reboot: False -2020-03-04 11:55:45,019 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,019 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,019 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,019 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,019 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls -2020-03-04 11:55:45,019 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.014952659606933594 -2020-03-04 11:55:45,034 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +2020-03-06 09:55:29,302 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,317 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 09:55:29,317 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,317 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,317 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: # -*- coding: utf-8 -*- # vim: ft=sls ice: @@ -13330,15 +13216,15 @@ ice: locale: en_US reboot: False -2020-03-04 11:55:45,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,034 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls -2020-03-04 11:55:45,034 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,034 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +2020-03-06 09:55:29,317 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,317 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 09:55:29,317 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,332 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.01551365852355957 +2020-03-06 09:55:29,332 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: # just 32-bit x86 installer available @@ -13354,15 +13240,15 @@ icecast: locale: en_US reboot: False -2020-03-04 11:55:45,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,332 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,050 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.01558065414428711 -2020-03-04 11:55:45,050 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,050 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,050 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls -2020-03-04 11:55:45,050 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,050 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,050 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +2020-03-06 09:55:29,332 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,332 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,332 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,332 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 09:55:29,332 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,332 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,332 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: icloud: '7.3.0.20': full_name: iCloud @@ -13374,15 +13260,15 @@ icloud: locale: en_US reboot: False -2020-03-04 11:55:45,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,332 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,050 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,050 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,050 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,050 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls -2020-03-04 11:55:45,050 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.01579880714416504 -2020-03-04 11:55:45,065 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +2020-03-06 09:55:29,332 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,349 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 09:55:29,349 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,349 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: iismediaservices: '4.1.0938.454': full_name: 'IIS Media Services 4.1' @@ -13418,15 +13304,15 @@ iismediaservices: locale: en_US reboot: False -2020-03-04 11:55:45,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,065 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls -2020-03-04 11:55:45,065 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.01521444320678711 -2020-03-04 11:55:45,081 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +2020-03-06 09:55:29,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,364 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 09:55:29,364 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,364 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: influx-capacitor: '1.0.89': full_name: 'Influx Capacitor' @@ -13438,15 +13324,15 @@ influx-capacitor: locale: en_US reboot: False -2020-03-04 11:55:45,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,081 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls -2020-03-04 11:55:45,081 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,081 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +2020-03-06 09:55:29,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,364 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 09:55:29,364 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,364 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: inkscape: '0.91': full_name: 'Inkscape 0.91' @@ -13460,15 +13346,15 @@ inkscape: locale: en_US reboot: False -2020-03-04 11:55:45,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,097 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,097 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,097 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls -2020-03-04 11:55:45,097 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,097 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,097 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +2020-03-06 09:55:29,379 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.015410661697387695 +2020-03-06 09:55:29,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,379 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 09:55:29,379 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,379 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,379 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: # just 32-bit x86 installer available @@ -13486,15 +13372,15 @@ intellij-community: reboot: False -2020-03-04 11:55:45,097 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,379 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,097 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,112 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,112 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,112 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls -2020-03-04 11:55:45,112 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,112 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +2020-03-06 09:55:29,379 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,395 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 09:55:29,395 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,395 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: # just 32-bit x86 installer available @@ -13512,15 +13398,15 @@ intellij-ultimate: reboot: False -2020-03-04 11:55:45,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,127 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,127 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,127 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls -2020-03-04 11:55:45,127 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,127 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,127 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +2020-03-06 09:55:29,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,395 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 09:55:29,395 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,411 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: internet-evidence-finder: '6.2.3.0001': full_name: 'Internet Evidence Finder' @@ -13532,15 +13418,15 @@ internet-evidence-finder: locale: en_US reboot: False -2020-03-04 11:55:45,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,127 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,127 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,127 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,127 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls -2020-03-04 11:55:45,127 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.015832901000976562 -2020-03-04 11:55:45,143 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +2020-03-06 09:55:29,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,411 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 09:55:29,411 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,411 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: irfanview-plugins: '4.42': @@ -13555,15 +13441,15 @@ irfanview-plugins: locale: en_US reboot: False -2020-03-04 11:55:45,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,143 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,143 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,143 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls -2020-03-04 11:55:45,143 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,143 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +2020-03-06 09:55:29,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,426 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 09:55:29,426 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,426 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,426 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available irfanview: @@ -13590,15 +13476,15 @@ irfanview: # assocallusers: if used, set associations for all users (Windows XP only) # ini: if used, set custom INI file folder (system environment variables are allowed) -2020-03-04 11:55:45,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,426 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,159 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,159 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls -2020-03-04 11:55:45,159 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,159 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,177 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +2020-03-06 09:55:29,426 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,426 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 09:55:29,426 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,426 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,442 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: isapirewrite-lite: '3.1.0112': full_name: 'Helicon ISAPI_Rewrite 3 Lite' @@ -13612,15 +13498,15 @@ isapirewrite-lite: locale: en_US reboot: False -2020-03-04 11:55:45,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,442 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,177 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,177 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,177 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,177 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls -2020-03-04 11:55:45,177 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,191 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.013940095901489258 -2020-03-04 11:55:45,191 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +2020-03-06 09:55:29,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,442 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 09:55:29,442 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,442 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available itunes: '12.8.0.150': @@ -13649,15 +13535,15 @@ itunes: locale: en_US reboot: False -2020-03-04 11:55:45,191 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,442 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,191 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,191 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,211 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,211 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls -2020-03-04 11:55:45,211 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,211 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,211 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +2020-03-06 09:55:29,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,442 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 09:55:29,458 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way @@ -13680,15 +13566,15 @@ jdk8: locale: en_US reboot: False -2020-03-04 11:55:45,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,211 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,221 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,221 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,221 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls -2020-03-04 11:55:45,221 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,221 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,221 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +2020-03-06 09:55:29,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,458 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 09:55:29,458 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available jre: @@ -13707,15 +13593,15 @@ jre: # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way -2020-03-04 11:55:45,221 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,221 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,221 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,237 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls -2020-03-04 11:55:45,237 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,237 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +2020-03-06 09:55:29,474 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.01584649085998535 +2020-03-06 09:55:29,474 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,474 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,474 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 09:55:29,474 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,474 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,474 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://www.java.com/en/download/manual.jsp # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... @@ -13795,15 +13681,15 @@ jre8: -2020-03-04 11:55:45,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,474 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,252 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls -2020-03-04 11:55:45,252 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,252 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,252 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +2020-03-06 09:55:29,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.015162229537963867 +2020-03-06 09:55:29,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,489 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 09:55:29,489 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,489 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: jungledisk-server-management: '3.23.0.2': full_name: 'Jungle Disk Server Management' @@ -13817,15 +13703,15 @@ jungledisk-server-management: locale: en_US reboot: False -2020-03-04 11:55:45,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,489 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,252 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,268 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls -2020-03-04 11:55:45,268 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,268 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,268 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +2020-03-06 09:55:29,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,489 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 09:55:29,504 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.015816926956176758 +2020-03-06 09:55:29,504 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: jungledisk-server: '3.23.0.2': full_name: 'Jungle Disk Server' @@ -13839,15 +13725,15 @@ jungledisk-server: locale: en_US reboot: False -2020-03-04 11:55:45,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,504 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,268 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,268 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,268 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,268 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls -2020-03-04 11:55:45,268 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.015980005264282227 -2020-03-04 11:55:45,284 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +2020-03-06 09:55:29,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,504 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 09:55:29,504 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,504 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: jungledisk-workgroup: '3.23.0.2': full_name: 'Jungle Disk Workgroup' @@ -13861,15 +13747,15 @@ jungledisk-workgroup: locale: en_US reboot: False -2020-03-04 11:55:45,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,504 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,284 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls -2020-03-04 11:55:45,284 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,284 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +2020-03-06 09:55:29,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,520 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 09:55:29,520 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,520 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,520 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: kdiff3: 'Not Found': full_name: 'KDiff3 (remove only)' @@ -13883,15 +13769,15 @@ kdiff3: locale: en_US reboot: False -2020-03-04 11:55:45,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,299 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.014862060546875 -2020-03-04 11:55:45,299 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,299 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,299 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls -2020-03-04 11:55:45,299 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,299 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,299 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +2020-03-06 09:55:29,520 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,520 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 09:55:29,520 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.015617132186889648 +2020-03-06 09:55:29,536 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: # Keepass 2.x installation from https://keepass.info/ # to keep the versioning in the format of "2..minor", two seperate version arrays are created. @@ -14155,15 +14041,15 @@ keepass-2x: locale: en_US reboot: False -2020-03-04 11:55:45,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,315 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,315 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls -2020-03-04 11:55:45,315 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,315 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,331 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +2020-03-06 09:55:29,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,552 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,552 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 09:55:29,552 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,552 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,552 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: keepass: '1.35.0': full_name: 'KeePass 1.35' @@ -14229,15 +14115,15 @@ keepass: locale: en_US reboot: False -2020-03-04 11:55:45,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,331 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,331 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls -2020-03-04 11:55:45,331 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,331 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,331 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +2020-03-06 09:55:29,552 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,552 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,552 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,552 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 09:55:29,552 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.015159845352172852 +2020-03-06 09:55:29,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: # just 32-bit x86 installer available @@ -14255,15 +14141,15 @@ lastpass: locale: en_US reboot: False -2020-03-04 11:55:45,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.015543937683105469 -2020-03-04 11:55:45,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,346 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls -2020-03-04 11:55:45,346 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,346 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +2020-03-06 09:55:29,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,567 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 09:55:29,567 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,583 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: # NOTE: If the lazarus installation directory exists the installation will # pop up a dialog box. This will cause the minion to hang because it # is waiting for the user to click continue on a dialog box that will @@ -14297,15 +14183,15 @@ lazarus: uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES -2020-03-04 11:55:45,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) -2020-03-04 11:55:45,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.015617847442626953 -2020-03-04 11:55:45,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,362 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls -2020-03-04 11:55:45,362 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,362 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +2020-03-06 09:55:29,583 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,583 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,583 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,583 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 09:55:29,583 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,583 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,583 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: libreoffice: '5.3.5.2': @@ -14381,15 +14267,15 @@ libreoffice: reboot: False -2020-03-04 11:55:45,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,583 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,377 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.015618324279785156 -2020-03-04 11:55:45,377 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,377 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,377 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls -2020-03-04 11:55:45,377 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,377 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,377 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +2020-03-06 09:55:29,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.015480518341064453 +2020-03-06 09:55:29,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,598 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 09:55:29,598 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,598 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: logparser: '2.2.10': full_name: 'Log Parser 2.2' @@ -14401,15 +14287,15 @@ logparser: locale: en_US reboot: False -2020-03-04 11:55:45,377 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,377 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,377 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,377 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,393 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls -2020-03-04 11:55:45,393 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,393 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +2020-03-06 09:55:29,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,598 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 09:55:29,598 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.01567864418029785 +2020-03-06 09:55:29,614 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: # just 32-bit x86 installer available @@ -14436,15 +14322,15 @@ maas360bootanalyzer: reboot: False # download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory -2020-03-04 11:55:45,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,393 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,393 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,393 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls -2020-03-04 11:55:45,409 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,409 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +2020-03-06 09:55:29,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,614 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 09:55:29,614 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,614 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: # just 32-bit x86 installer available @@ -14461,15 +14347,15 @@ malwarebytes: locale: en_US reboot: Falsea -2020-03-04 11:55:45,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) -2020-03-04 11:55:45,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,409 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls -2020-03-04 11:55:45,409 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,441 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.032248497009277344 -2020-03-04 11:55:45,441 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +2020-03-06 09:55:29,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,630 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,630 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,630 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 09:55:29,630 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,646 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.015684843063354492 +2020-03-06 09:55:29,646 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: #MariaDB https://downloads.mariadb.org/mariadb/+releases/ #only stable versions are listed @@ -14483,651 +14369,598 @@ OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_na mariadb: - '10.0.38.0': + '10.1.38.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.37.0': + '10.1.37.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.36.0': + '10.1.36.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.35.0': + '10.1.35.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.34.0': + '10.1.34.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.33.0': + '10.1.33.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.32.0': + '10.1.32.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.31.0': + '10.1.31.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.30.0': + '10.1.30.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.29.0': + '10.1.29.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.28.0': + '10.1.28.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.27.0': + '10.1.27.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.26.0': + '10.1.26.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.25.0': + '10.1.25.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.24.0': + '10.1.24.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.23.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.22.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.21.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.20.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.19.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.18.0': + '10.1.23.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.17.0': + '10.1.22.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.16.0': + '10.1.21.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.15.0': + '10.1.20.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.14.0': + '10.1.19.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.13.0': + '10.1.18.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.12.0': + '10.1.17.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.11.0': + '10.1.16.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.10.0': + '10.1.14.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.1.38.0': + '10.1.13.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.37.0': + '10.1.12.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.36.0': + '10.1.11.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.35.0': + '10.1.10.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.34.0': + '10.1.9.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.33.0': + '10.1.8.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.32.0': + + + '10.3.13.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.31.0': + '10.3.12.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.30.0': + '10.3.11.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.29.0': + '10.3.10.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.28.0': + '10.3.9.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.27.0': + '10.3.8.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.26.0': + '10.3.7.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.25.0': + + + '10.2.22.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.24.0': + '10.2.21.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.23.0': + '10.2.20.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.22.0': + '10.2.19.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.21.0': + '10.2.18.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.20.0': - - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + '10.2.17.0': + + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.19.0': + '10.2.16.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.18.0': + '10.2.15.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.17.0': + '10.2.14.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.16.0': + '10.2.13.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.14.0': + '10.2.12.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.13.0': + '10.2.11.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.12.0': + '10.2.10.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.11.0': + '10.2.9.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.10.0': + '10.2.8.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.9.0': + '10.2.7.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.8.0': + '10.2.6.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15468,266 +15301,319 @@ mariadb: - '10.3.13.0': + '10.0.38.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.12.0': + '10.0.37.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.11.0': + '10.0.36.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.10.0': + '10.0.35.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.9.0': + '10.0.34.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.8.0': + '10.0.33.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.7.0': + '10.0.32.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False + '10.0.31.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + '10.0.30.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False - '10.2.22.0': + '10.0.29.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.21.0': + '10.0.28.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.20.0': + '10.0.27.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.19.0': + '10.0.26.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.18.0': + '10.0.25.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.17.0': + '10.0.24.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.16.0': + '10.0.23.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.22.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.21.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.20.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.15.0': + '10.0.19.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.14.0': + '10.0.18.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.13.0': + '10.0.17.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.12.0': + '10.0.16.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.11.0': + '10.0.15.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.10.0': + '10.0.14.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.9.0': + '10.0.13.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.8.0': + '10.0.12.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.7.0': + '10.0.11.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.6.0': + '10.0.10.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15736,15 +15622,15 @@ mariadb: -2020-03-04 11:55:45,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:55:45,455 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.014626026153564453 -2020-03-04 11:55:45,455 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,455 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,455 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls -2020-03-04 11:55:45,455 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.016118288040161133 -2020-03-04 11:55:45,472 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +2020-03-06 09:55:29,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 09:55:29,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.015189409255981445 +2020-03-06 09:55:29,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,676 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 09:55:29,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,676 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: mercurial: '3.1.1': @@ -15758,15 +15644,15 @@ mercurial: locale: en_US reboot: False -2020-03-04 11:55:45,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,676 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,472 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls -2020-03-04 11:55:45,472 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,472 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +2020-03-06 09:55:29,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,676 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 09:55:29,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,693 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.01634383201599121 +2020-03-06 09:55:29,693 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: messageanalyzer: '4.0.7551.0': full_name: 'Microsoft Message Analyzer' @@ -15781,15 +15667,15 @@ messageanalyzer: locale: en_US reboot: False -2020-03-04 11:55:45,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,693 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,487 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls -2020-03-04 11:55:45,487 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,487 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +2020-03-06 09:55:29,693 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,693 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,693 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,693 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 09:55:29,693 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,693 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,693 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: microsoft-build-tools: '14.0.23107': @@ -15803,15 +15689,15 @@ microsoft-build-tools: locale: en_US reboot: False -2020-03-04 11:55:45,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,693 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,487 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls -2020-03-04 11:55:45,487 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,502 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.015453338623046875 -2020-03-04 11:55:45,503 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +2020-03-06 09:55:29,693 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,693 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,708 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 09:55:29,708 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,708 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: mikogo: '5.3.0': full_name: 'Mikogo' @@ -15823,15 +15709,15 @@ mikogo: locale: en_US reboot: False -2020-03-04 11:55:45,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,503 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,503 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls -2020-03-04 11:55:45,503 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,503 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,503 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +2020-03-06 09:55:29,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,708 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 09:55:29,708 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,708 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: miktex-basic: '2.9': full_name: 'MiKTeX 2.9' @@ -15848,15 +15734,15 @@ miktex-basic: locale: en_US reboot: False -2020-03-04 11:55:45,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,503 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,518 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls -2020-03-04 11:55:45,518 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,518 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +2020-03-06 09:55:29,723 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.015317201614379883 +2020-03-06 09:55:29,723 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,723 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,723 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 09:55:29,723 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,723 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,723 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: mongodb: '3.3.5': full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' @@ -15877,15 +15763,15 @@ mongodb: locale: en_US reboot: False -2020-03-04 11:55:45,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,723 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,518 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls -2020-03-04 11:55:45,518 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,518 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +2020-03-06 09:55:29,723 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,723 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,723 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,723 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 09:55:29,723 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,723 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,740 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ms-mbsa: '2.3.2211': @@ -15900,15 +15786,15 @@ ms-mbsa: locale: en_US reboot: False -2020-03-04 11:55:45,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,740 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,534 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls -2020-03-04 11:55:45,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,534 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +2020-03-06 09:55:29,740 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,740 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,740 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,740 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 09:55:29,740 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,740 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,740 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: ms-vcpp-2005-atl-redist_x64: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15920,15 +15806,15 @@ ms-vcpp-2005-atl-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,740 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,534 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls -2020-03-04 11:55:45,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,549 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +2020-03-06 09:55:29,740 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,740 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,740 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,740 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 09:55:29,755 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,755 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,755 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: ms-vcpp-2005-atl-redist_x86: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15940,15 +15826,15 @@ ms-vcpp-2005-atl-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,549 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls -2020-03-04 11:55:45,549 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,549 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +2020-03-06 09:55:29,755 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,755 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,755 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,755 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 09:55:29,755 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,755 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,755 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: ms-vcpp-2005-redist_x64: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15960,15 +15846,15 @@ ms-vcpp-2005-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,549 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls -2020-03-04 11:55:45,549 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.015843868255615234 -2020-03-04 11:55:45,565 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +2020-03-06 09:55:29,755 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,771 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 09:55:29,771 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,771 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: ms-vcpp-2005-redist_x86: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15980,15 +15866,15 @@ ms-vcpp-2005-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,565 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls -2020-03-04 11:55:45,565 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,565 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +2020-03-06 09:55:29,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,771 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 09:55:29,771 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,786 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: ms-vcpp-2005-sp1-mfc-redist_x64: '8.0.61000': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16000,15 +15886,15 @@ ms-vcpp-2005-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,581 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls -2020-03-04 11:55:45,581 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,581 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +2020-03-06 09:55:29,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,786 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 09:55:29,786 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,786 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: ms-vcpp-2005-sp1-mfc-redist_x86: '8.0.61001': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16020,15 +15906,15 @@ ms-vcpp-2005-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,581 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls -2020-03-04 11:55:45,581 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,581 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +2020-03-06 09:55:29,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,801 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 09:55:29,801 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,801 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,801 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: ms-vcpp-2005-sp1-redist_x64: '8.0.59192': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16040,15 +15926,15 @@ ms-vcpp-2005-sp1-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,801 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,597 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls -2020-03-04 11:55:45,597 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,597 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +2020-03-06 09:55:29,801 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,801 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,801 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,801 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 09:55:29,801 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,801 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,801 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: ms-vcpp-2005-sp1-redist_x86: '8.0.59193': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16060,15 +15946,15 @@ ms-vcpp-2005-sp1-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,801 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,597 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls -2020-03-04 11:55:45,597 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,597 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +2020-03-06 09:55:29,801 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,818 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,818 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,818 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 09:55:29,818 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,818 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,818 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: ms-vcpp-2008-redist_x64: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' @@ -16080,15 +15966,15 @@ ms-vcpp-2008-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,612 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.015427112579345703 -2020-03-04 11:55:45,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,612 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls -2020-03-04 11:55:45,612 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,612 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,612 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +2020-03-06 09:55:29,818 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,818 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,818 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,818 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 09:55:29,818 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,818 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,818 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: ms-vcpp-2008-redist_x86: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' @@ -16100,15 +15986,15 @@ ms-vcpp-2008-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,612 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,612 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls -2020-03-04 11:55:45,612 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,627 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.015431642532348633 -2020-03-04 11:55:45,627 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +2020-03-06 09:55:29,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,833 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 09:55:29,833 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,833 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: ms-vcpp-2008-sp1-atl-redist_x64: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' @@ -16120,15 +16006,15 @@ ms-vcpp-2008-sp1-atl-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,627 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,627 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,627 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,627 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls -2020-03-04 11:55:45,627 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,627 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,627 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +2020-03-06 09:55:29,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,833 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 09:55:29,848 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,848 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: ms-vcpp-2008-sp1-atl-redist_x86: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' @@ -16140,15 +16026,15 @@ ms-vcpp-2008-sp1-atl-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,627 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,627 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,627 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,643 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls -2020-03-04 11:55:45,643 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,643 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,643 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +2020-03-06 09:55:29,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,848 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,848 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,848 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 09:55:29,848 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,848 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: ms-vcpp-2008-sp1-mfc-redist_x64: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' @@ -16160,15 +16046,15 @@ ms-vcpp-2008-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,643 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,643 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls -2020-03-04 11:55:45,643 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,643 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,643 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +2020-03-06 09:55:29,848 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,848 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,864 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,864 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 09:55:29,864 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,864 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: ms-vcpp-2008-sp1-mfc-redist_x86: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' @@ -16180,15 +16066,15 @@ ms-vcpp-2008-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,643 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,659 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls -2020-03-04 11:55:45,659 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,659 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +2020-03-06 09:55:29,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,864 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,864 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,864 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 09:55:29,864 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,864 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: ms-vcpp-2010-sp1-mfc-redist_x64: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' @@ -16200,15 +16086,15 @@ ms-vcpp-2010-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,659 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls -2020-03-04 11:55:45,659 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,659 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +2020-03-06 09:55:29,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,880 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 09:55:29,880 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,880 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,880 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: ms-vcpp-2010-sp1-mfc-redist_x86: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' @@ -16220,15 +16106,15 @@ ms-vcpp-2010-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015520095825195312 -2020-03-04 11:55:45,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,674 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls -2020-03-04 11:55:45,674 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,674 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +2020-03-06 09:55:29,880 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,880 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 09:55:29,880 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,880 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,894 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: ms-vcpp-2012-redist_x64: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' @@ -16240,15 +16126,15 @@ ms-vcpp-2012-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,674 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls -2020-03-04 11:55:45,674 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,690 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +2020-03-06 09:55:29,895 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,895 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,895 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,895 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 09:55:29,895 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,895 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,895 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: ms-vcpp-2012-redist_x86: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' @@ -16260,15 +16146,15 @@ ms-vcpp-2012-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,690 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls -2020-03-04 11:55:45,690 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,690 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +2020-03-06 09:55:29,895 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,895 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,895 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,895 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 09:55:29,895 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,911 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.015711545944213867 +2020-03-06 09:55:29,911 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: ms-vcpp-2013-redist_x64: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' @@ -16280,15 +16166,15 @@ ms-vcpp-2013-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,706 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls -2020-03-04 11:55:45,706 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,706 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,706 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +2020-03-06 09:55:29,911 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,911 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,911 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,911 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 09:55:29,911 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,911 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,911 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: ms-vcpp-2013-redist_x86: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' @@ -16300,15 +16186,15 @@ ms-vcpp-2013-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,706 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,706 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,721 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls -2020-03-04 11:55:45,721 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,721 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,721 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +2020-03-06 09:55:29,911 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,911 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,911 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,911 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 09:55:29,927 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,927 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,927 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: ms-vcpp-2015-build-tools: '14.0.25420.1': full_name: 'Microsoft Visual C++ Build Tools' @@ -16319,15 +16205,15 @@ ms-vcpp-2015-build-tools: locale: en_US reboot: False -2020-03-04 11:55:45,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,738 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.01641225814819336 -2020-03-04 11:55:45,738 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,738 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,738 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls -2020-03-04 11:55:45,738 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,738 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,738 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +2020-03-06 09:55:29,927 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,927 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,927 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,927 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 09:55:29,927 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,927 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,927 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: ms-vcpp-2015-redist_x64: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' @@ -16352,15 +16238,15 @@ ms-vcpp-2015-redist_x64: # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} -2020-03-04 11:55:45,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,738 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,753 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls -2020-03-04 11:55:45,753 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,753 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,753 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +2020-03-06 09:55:29,927 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,942 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,942 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,942 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 09:55:29,942 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,942 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,942 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: ms-vcpp-2015-redist_x86: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' @@ -16385,15 +16271,15 @@ ms-vcpp-2015-redist_x86: # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} -2020-03-04 11:55:45,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,753 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,753 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls -2020-03-04 11:55:45,753 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.015427827835083008 -2020-03-04 11:55:45,768 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +2020-03-06 09:55:29,942 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,942 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,942 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,942 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 09:55:29,942 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,942 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,942 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: ms-vcpp-2017-redist_x64: '14.20.27508.1': full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' @@ -16414,15 +16300,15 @@ ms-vcpp-2017-redist_x64: locale: en_US reboot: False -2020-03-04 11:55:45,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,768 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls -2020-03-04 11:55:45,768 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,768 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +2020-03-06 09:55:29,958 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,958 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 09:55:29,958 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,958 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,958 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: ms-vcpp-2017-redist_x86: '14.11.25325.0': full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' @@ -16434,15 +16320,15 @@ ms-vcpp-2017-redist_x86: locale: en_US reboot: False -2020-03-04 11:55:45,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,784 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,784 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,784 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls -2020-03-04 11:55:45,784 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,784 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: +2020-03-06 09:55:29,958 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,958 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 09:55:29,958 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,974 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.015587568283081055 +2020-03-06 09:55:29,974 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: @@ -16459,15 +16345,15 @@ mucommander: reboot: False -2020-03-04 11:55:45,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,974 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,800 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls -2020-03-04 11:55:45,800 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,800 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +2020-03-06 09:55:29,974 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,974 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,974 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,974 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 09:55:29,974 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,974 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,974 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: mysql-essential: '5.1.73': full_name: 'MySQL Server 5.1' @@ -16481,15 +16367,15 @@ mysql-essential: locale: en_US reboot: False -2020-03-04 11:55:45,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,974 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,800 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls -2020-03-04 11:55:45,800 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.01548147201538086 -2020-03-04 11:55:45,815 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +2020-03-06 09:55:29,991 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.016701936721801758 +2020-03-06 09:55:29,991 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,991 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,991 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 09:55:29,991 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:29,991 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:29,991 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: mysql-installer-community: '1.4.3.0': full_name: 'MySQL Installer - Community' @@ -16505,15 +16391,15 @@ mysql-installer-community: # https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html # https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html -2020-03-04 11:55:45,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:29,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,815 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls -2020-03-04 11:55:45,815 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,815 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +2020-03-06 09:55:29,991 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:29,991 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:29,991 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:29,991 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 09:55:30,005 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,005 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: mysql-workbench-community: '8.0.15': @@ -16550,15 +16436,15 @@ mysql-workbench-community: # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html -2020-03-04 11:55:45,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,005 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,831 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls -2020-03-04 11:55:45,831 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,831 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +2020-03-06 09:55:30,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,005 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 09:55:30,005 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,005 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: never10: '1.3': full_name: 'Never 10 (GRC)' @@ -16571,15 +16457,15 @@ never10: reboot: False # download it from https://www.grc.com/never10.htm -2020-03-04 11:55:45,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,005 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,831 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls -2020-03-04 11:55:45,831 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,846 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.015645742416381836 -2020-03-04 11:55:45,846 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +2020-03-06 09:55:30,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,020 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 09:55:30,020 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,020 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,020 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: # Please note that per # https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows # the MSI uninstall does not remove files or settings, @@ -16740,15 +16626,15 @@ newrelic-infra: reboot: False -2020-03-04 11:55:45,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,846 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,846 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,846 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,846 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls -2020-03-04 11:55:45,846 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.015612602233886719 -2020-03-04 11:55:45,862 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +2020-03-06 09:55:30,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.016300439834594727 +2020-03-06 09:55:30,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,036 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 09:55:30,036 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,036 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: nextcloud-client: '2.2.3.4': @@ -16842,15 +16728,15 @@ nextcloud-client: reboot: False -2020-03-04 11:55:45,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,862 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls -2020-03-04 11:55:45,862 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,878 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.01612401008605957 -2020-03-04 11:55:45,878 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: +2020-03-06 09:55:30,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,052 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 09:55:30,052 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,052 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,052 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: # just 32-bit x86 installer available @@ -16880,15 +16766,15 @@ nmap: reboot: False -2020-03-04 11:55:45,878 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,052 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,878 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,878 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,878 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,878 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls -2020-03-04 11:55:45,878 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,878 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,893 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +2020-03-06 09:55:30,052 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,052 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 09:55:30,067 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,067 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,067 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: node.js-lts: '12.13.1': @@ -16976,15 +16862,15 @@ node.js-lts: reboot: False -2020-03-04 11:55:45,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,893 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls -2020-03-04 11:55:45,893 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,910 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +2020-03-06 09:55:30,067 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,067 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 09:55:30,067 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,082 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.015218019485473633 +2020-03-06 09:55:30,082 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: node.js: '13.1.0': @@ -17108,15 +16994,15 @@ node.js: reboot: False -2020-03-04 11:55:45,910 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,082 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,910 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,910 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,910 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,910 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls -2020-03-04 11:55:45,910 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,910 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,924 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +2020-03-06 09:55:30,082 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,082 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,082 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,082 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 09:55:30,082 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,098 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.016043901443481445 +2020-03-06 09:55:30,098 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: nomacs: '3.8.0': @@ -17130,15 +17016,15 @@ nomacs: reboot: False -2020-03-04 11:55:45,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,098 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,924 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:45,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,924 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls -2020-03-04 11:55:45,924 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,924 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:45,924 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +2020-03-06 09:55:30,098 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,098 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 09:55:30,098 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,098 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,098 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: # just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. @@ -17335,15 +17221,15 @@ npp: # the 64-bit installer is available from: # https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe -2020-03-04 11:55:45,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:45,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.03160595893859863 -2020-03-04 11:55:45,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:45,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:45,987 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls -2020-03-04 11:55:45,987 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:45,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,002 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +2020-03-06 09:55:30,114 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.01559138298034668 +2020-03-06 09:55:30,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,114 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 09:55:30,114 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,114 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,132 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: nsclient: @@ -17500,15 +17386,15 @@ nsclient: reboot: False -2020-03-04 11:55:46,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,002 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,002 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,002 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,002 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls -2020-03-04 11:55:46,002 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,019 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.01635432243347168 -2020-03-04 11:55:46,019 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +2020-03-06 09:55:30,132 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,132 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,132 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,132 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 09:55:30,132 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,145 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.013188838958740234 +2020-03-06 09:55:30,145 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: # Define versions @@ -17541,9 +17427,9 @@ nsis: - '3.03': + '2.51': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17553,9 +17439,9 @@ nsis: locale: en_US reboot: False - '3.02.1': + '2.50': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17565,9 +17451,9 @@ nsis: locale: en_US reboot: False - '3.02': + '2.49': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17577,9 +17463,9 @@ nsis: locale: en_US reboot: False - '3.01': + '2.48': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17589,9 +17475,9 @@ nsis: locale: en_US reboot: False - '3.0': + '2.47': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17601,11 +17487,9 @@ nsis: locale: en_US reboot: False - - - '2.51': + '2.46': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17615,9 +17499,11 @@ nsis: locale: en_US reboot: False - '2.50': + + + '3.03': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17627,9 +17513,9 @@ nsis: locale: en_US reboot: False - '2.49': + '3.02.1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17639,9 +17525,9 @@ nsis: locale: en_US reboot: False - '2.48': + '3.02': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17651,9 +17537,9 @@ nsis: locale: en_US reboot: False - '2.47': + '3.01': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17663,9 +17549,9 @@ nsis: locale: en_US reboot: False - '2.46': + '3.0': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17677,15 +17563,15 @@ nsis: -2020-03-04 11:55:46,019 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,019 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,019 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,019 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,019 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls -2020-03-04 11:55:46,033 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0007710456848144531 -2020-03-04 11:55:46,034 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +2020-03-06 09:55:30,145 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:55:30,145 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,145 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,145 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,145 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 09:55:30,145 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,160 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.01563715934753418 +2020-03-06 09:55:30,160 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: # Install Meinberg NTP daemon for Windows # Note: To do a silent installation, this installer needs a setup file named # setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. @@ -17727,15 +17613,15 @@ ntp: reboot: False -2020-03-04 11:55:46,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,160 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,034 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls -2020-03-04 11:55:46,034 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,050 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.016123294830322266 -2020-03-04 11:55:46,050 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: +2020-03-06 09:55:30,160 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,160 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,160 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,160 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 09:55:30,160 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,177 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.01657271385192871 +2020-03-06 09:55:30,177 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: @@ -17784,15 +17670,15 @@ nunit-console: -2020-03-04 11:55:46,050 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:55:46,050 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,050 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,050 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,050 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls -2020-03-04 11:55:46,050 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,050 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,065 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +2020-03-06 09:55:30,177 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,177 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,177 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,177 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 09:55:30,177 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,177 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,177 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: nxlog: '2.10.2150': full_name: 'NXLog-CE' @@ -17804,15 +17690,15 @@ nxlog: locale: en_US reboot: False -2020-03-04 11:55:46,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,065 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls -2020-03-04 11:55:46,065 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,065 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +2020-03-06 09:55:30,177 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,192 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 09:55:30,192 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,192 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -17850,15 +17736,15 @@ octopus-tentacle: reboot: False -2020-03-04 11:55:46,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,192 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.015668630599975586 -2020-03-04 11:55:46,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,081 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls -2020-03-04 11:55:46,081 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,081 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +2020-03-06 09:55:30,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,208 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 09:55:30,208 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,208 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: # Source: http://openlp.org/ # just 32-bit x86 installer available @@ -17888,15 +17774,15 @@ openlp: reboot: False -2020-03-04 11:55:46,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,096 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls -2020-03-04 11:55:46,096 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,096 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,096 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +2020-03-06 09:55:30,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,208 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 09:55:30,208 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,208 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: openoffice: '4.1.2': full_name: 'OpenOffice 4.1.2' @@ -17929,15 +17815,15 @@ openoffice: # 'fi', 'fr', 'da', 'de', 'bg', 'ast' # -2020-03-04 11:55:46,096 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,096 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,096 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls -2020-03-04 11:55:46,096 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.015740156173706055 -2020-03-04 11:55:46,112 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +2020-03-06 09:55:30,224 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,224 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,224 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,224 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 09:55:30,224 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,224 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,240 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18109,15 +17995,15 @@ openvpn: # /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's # /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's -2020-03-04 11:55:46,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,128 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,128 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,128 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls -2020-03-04 11:55:46,128 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,128 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,128 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +2020-03-06 09:55:30,240 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,240 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,240 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,240 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 09:55:30,240 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,240 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,240 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: # Performant endpoint visibility https://osquery.io/ @@ -18170,15 +18056,15 @@ osquery: reboot: False -2020-03-04 11:55:46,128 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:55:46,128 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,128 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,143 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,143 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls -2020-03-04 11:55:46,143 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,143 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +2020-03-06 09:55:30,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.015084981918334961 +2020-03-06 09:55:30,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,255 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 09:55:30,255 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,255 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: # just 32-bit x86 installer available @@ -18192,9 +18078,9 @@ OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osqu ossec-agent: - '2.9.0': - full_name: 'OSSEC HIDS 2.9.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18204,9 +18090,9 @@ ossec-agent: - '3.1.0': - full_name: 'OSSEC HIDS 3.1.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18216,9 +18102,9 @@ ossec-agent: - '2.9.2': - full_name: 'OSSEC HIDS 2.9.2' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18240,18 +18126,6 @@ ossec-agent: - '2.9.4': - full_name: 'OSSEC HIDS 2.9.4' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' - install_flags: '/S' - uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' - uninstall_flags: '/S' - msiexec: False - locale: en_US - reboot: False - - - '3.0.1': full_name: 'OSSEC HIDS 3.0.1' installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' @@ -18287,16 +18161,28 @@ ossec-agent: reboot: False + + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + install_flags: '/S' + uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' + uninstall_flags: '/S' + msiexec: False + locale: en_US + reboot: False + + -2020-03-04 11:55:46,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('ossec-agent', OrderedDict([('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,159 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls -2020-03-04 11:55:46,159 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,159 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,159 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +2020-03-06 09:55:30,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:55:30,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,270 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,270 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 09:55:30,270 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,270 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: owncloud: @@ -18353,15 +18239,15 @@ owncloud: reboot: False -2020-03-04 11:55:46,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,176 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,176 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,176 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,176 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls -2020-03-04 11:55:46,176 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,176 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,176 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +2020-03-06 09:55:30,270 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,286 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 09:55:30,286 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,286 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: pandoc: '1.17.0.2': full_name: 'Pandoc 1.17.0.2' @@ -18373,15 +18259,15 @@ pandoc: locale: en_US reboot: False -2020-03-04 11:55:46,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,176 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,190 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls -2020-03-04 11:55:46,190 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,190 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +2020-03-06 09:55:30,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,286 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 09:55:30,286 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,302 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: parallels-client-15: '15.0.3869': @@ -18397,15 +18283,15 @@ parallels-client-15: # The latest RAS clients can be downloaded for FREE from: # https://www.parallels.com/uk/products/ras/download/links/ -2020-03-04 11:55:46,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,190 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls -2020-03-04 11:55:46,190 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,206 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.016114234924316406 -2020-03-04 11:55:46,206 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +2020-03-06 09:55:30,302 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,302 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 09:55:30,302 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,302 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,302 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18436,15 +18322,15 @@ pass4win: locale: en_US reboot: False -2020-03-04 11:55:46,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,206 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,206 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls -2020-03-04 11:55:46,206 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,206 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,206 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +2020-03-06 09:55:30,302 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,318 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,318 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,318 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 09:55:30,318 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,318 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,318 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: passware-kit-agent: '13.1.7657': full_name: 'Passware Kit Agent (64-bit)' @@ -18456,15 +18342,15 @@ passware-kit-agent: locale: en_US reboot: False -2020-03-04 11:55:46,220 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,318 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0012803077697753906 -2020-03-04 11:55:46,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,222 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls -2020-03-04 11:55:46,222 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,222 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +2020-03-06 09:55:30,318 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,318 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,318 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,318 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 09:55:30,318 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,318 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,318 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: passware-kit-forensic: '13.1.7657': full_name: 'Passware Kit Forensic (64-bit)' @@ -18476,15 +18362,15 @@ passware-kit-forensic: locale: en_US reboot: False -2020-03-04 11:55:46,222 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,318 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,237 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls -2020-03-04 11:55:46,237 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,237 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +2020-03-06 09:55:30,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.015533447265625 +2020-03-06 09:55:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,333 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 09:55:30,333 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,333 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: # Source: https://patchmypc.net/ patchmypc-free: '3.0.1.1': @@ -18503,15 +18389,15 @@ patchmypc-free: locale: en_US reboot: False -2020-03-04 11:55:46,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,262 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,262 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,262 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls -2020-03-04 11:55:46,268 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,268 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,268 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +2020-03-06 09:55:30,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,333 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 09:55:30,333 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.015689849853515625 +2020-03-06 09:55:30,349 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: pdf24creator: '8.8.2': @@ -18607,15 +18493,15 @@ pdf24creator: # Source: https://en.pdf24.org/ # Packagin info Source: https://chocolatey.org/packages/pdf24 -2020-03-04 11:55:46,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,268 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,268 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,268 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,268 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls -2020-03-04 11:55:46,268 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.016181230545043945 -2020-03-04 11:55:46,284 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +2020-03-06 09:55:30,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,349 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 09:55:30,349 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,349 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,349 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: # just 32-bit x86 installer available @@ -18631,15 +18517,15 @@ pdfcreator: locale: en_US reboot: False -2020-03-04 11:55:46,284 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,284 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls -2020-03-04 11:55:46,284 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,284 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,284 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +2020-03-06 09:55:30,365 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.015830516815185547 +2020-03-06 09:55:30,365 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,365 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,365 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 09:55:30,365 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,365 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,365 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: peazip: '6.0.0': @@ -18653,15 +18539,15 @@ peazip: locale: en_US reboot: False -2020-03-04 11:55:46,299 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,365 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,300 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0006985664367675781 -2020-03-04 11:55:46,300 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,300 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,300 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls -2020-03-04 11:55:46,300 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,300 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,300 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: +2020-03-06 09:55:30,365 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,365 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,365 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,365 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 09:55:30,379 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,380 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0005733966827392578 +2020-03-06 09:55:30,380 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: @@ -18705,15 +18591,15 @@ pgadmin4: reboot: False -2020-03-04 11:55:46,300 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,315 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.015296220779418945 -2020-03-04 11:55:46,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,315 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls -2020-03-04 11:55:46,315 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,315 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,315 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +2020-03-06 09:55:30,380 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,380 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,380 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,380 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 09:55:30,380 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,380 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,395 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: pgina: '3.1.8.0': full_name: 'pGina v3.1.8.0' @@ -18723,15 +18609,15 @@ pgina: locale: en_US reboot: False -2020-03-04 11:55:46,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,315 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,315 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,315 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls -2020-03-04 11:55:46,330 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,330 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,330 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: +2020-03-06 09:55:30,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,395 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 09:55:30,395 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,395 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: # just 32-bit x86 installer available @@ -18750,15 +18636,15 @@ pidgin: reboot: False -2020-03-04 11:55:46,330 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,330 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,330 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,330 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,330 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls -2020-03-04 11:55:46,330 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,347 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.016809701919555664 -2020-03-04 11:55:46,347 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +2020-03-06 09:55:30,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,411 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 09:55:30,411 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,411 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: # Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: # salt mid pkg.install postgresql version='"9.6"' @@ -18803,15 +18689,15 @@ postgresql: reboot: False -2020-03-04 11:55:46,347 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:55:46,347 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,347 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,347 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,347 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls -2020-03-04 11:55:46,347 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.01463937759399414 -2020-03-04 11:55:46,362 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +2020-03-06 09:55:30,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,411 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 09:55:30,411 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,426 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.015291452407836914 +2020-03-06 09:55:30,426 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: ### NOTE: You must accept the PowerBI Desktop EULA by setting the ### Pillar key `powerbi:desktop:accept_eula` to `True` in order to ### install this package. You can find a copy of the EULA at @@ -18833,15 +18719,15 @@ powerbi-desktop: msiexec: True reboot: False -2020-03-04 11:55:46,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,426 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:55:46,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,362 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls -2020-03-04 11:55:46,362 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,379 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +2020-03-06 09:55:30,426 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,426 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 09:55:30,426 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,443 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.016162395477294922 +2020-03-06 09:55:30,443 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: #PowerShell Core https://github.com/PowerShell/PowerShell @@ -18904,15 +18790,15 @@ powershell-core: reboot: False -2020-03-04 11:55:46,379 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,443 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:55:46,379 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,379 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,379 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,379 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls -2020-03-04 11:55:46,379 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.014671087265014648 -2020-03-04 11:55:46,393 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +2020-03-06 09:55:30,443 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,443 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 09:55:30,443 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,443 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: # Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems # WMI Exporter: https://github.com/martinlindhe/wmi_exporter # Prometheus Monitoring: https://prometheus.io/ @@ -19112,15 +18998,15 @@ prometheus-wmi-exporter: reboot: False -2020-03-04 11:55:46,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,393 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,393 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,393 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls -2020-03-04 11:55:46,393 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.01559305191040039 -2020-03-04 11:55:46,409 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +2020-03-06 09:55:30,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,458 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 09:55:30,458 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.015266895294189453 +2020-03-06 09:55:30,473 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: putty: '0.73.0.0': @@ -19246,15 +19132,15 @@ putty: reboot: False -2020-03-04 11:55:46,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,424 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls -2020-03-04 11:55:46,424 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,424 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,424 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +2020-03-06 09:55:30,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,473 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 09:55:30,473 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.015617847442626953 +2020-03-06 09:55:30,489 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: python2_x64: @@ -19466,15 +19352,15 @@ python2_x64: reboot: False -2020-03-04 11:55:46,424 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,489 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,440 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.015627145767211914 -2020-03-04 11:55:46,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,440 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls -2020-03-04 11:55:46,440 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,440 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,440 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +2020-03-06 09:55:30,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,489 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 09:55:30,489 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015626907348632812 +2020-03-06 09:55:30,504 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: python2_x86: @@ -19686,15 +19572,15 @@ python2_x86: reboot: False -2020-03-04 11:55:46,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,504 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,456 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.016193866729736328 -2020-03-04 11:55:46,456 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,456 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,456 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls -2020-03-04 11:55:46,456 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,456 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,471 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: +2020-03-06 09:55:30,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,504 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 09:55:30,520 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,520 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,520 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: python3_x64: @@ -19831,15 +19717,15 @@ python3_x64: reboot: False -2020-03-04 11:55:46,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,471 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,471 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,471 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,471 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls -2020-03-04 11:55:46,471 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.015588760375976562 -2020-03-04 11:55:46,487 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: +2020-03-06 09:55:30,520 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,520 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,536 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 09:55:30,536 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,536 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: python3_x86: @@ -19966,15 +19852,15 @@ python3_x86: reboot: False -2020-03-04 11:55:46,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,487 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls -2020-03-04 11:55:46,502 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,502 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,502 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +2020-03-06 09:55:30,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,551 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 09:55:30,551 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,551 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,551 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -19991,15 +19877,15 @@ qemu: locale: en_US reboot: False -2020-03-04 11:55:46,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,551 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,502 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,502 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,502 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,502 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls -2020-03-04 11:55:46,502 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,502 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,518 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: +2020-03-06 09:55:30,551 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,551 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 09:55:30,551 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.015768766403198242 +2020-03-06 09:55:30,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: @@ -20015,15 +19901,15 @@ queueexplorerpro: locale: en_US reboot: False -2020-03-04 11:55:46,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,518 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls -2020-03-04 11:55:46,518 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,518 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +2020-03-06 09:55:30,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,567 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 09:55:30,567 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: quicktime: '7.79.80.95': full_name: 'QuickTime 7' @@ -20048,15 +19934,15 @@ quicktime: # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} -2020-03-04 11:55:46,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,534 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls -2020-03-04 11:55:46,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,534 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: +2020-03-06 09:55:30,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,584 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 09:55:30,584 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,584 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,584 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: rabbitmq: @@ -20081,15 +19967,15 @@ rabbitmq: reboot: False -2020-03-04 11:55:46,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,584 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,534 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls -2020-03-04 11:55:46,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,534 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +2020-03-06 09:55:30,584 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,584 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 09:55:30,584 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.014575481414794922 +2020-03-06 09:55:30,598 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: rakudo-star_x86: '1.0.0': full_name: 'Rakudo Star 2016.01' @@ -20101,15 +19987,15 @@ rakudo-star_x86: locale: en_US reboot: False -2020-03-04 11:55:46,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,549 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls -2020-03-04 11:55:46,549 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,549 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +2020-03-06 09:55:30,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,598 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 09:55:30,598 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,598 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: rakudo-star_x64: '1.0.0': full_name: 'Rakudo Star 2016.04' @@ -20121,15 +20007,15 @@ rakudo-star_x64: locale: en_US reboot: False -2020-03-04 11:55:46,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,598 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,549 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls -2020-03-04 11:55:46,549 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.015754222869873047 -2020-03-04 11:55:46,565 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +2020-03-06 09:55:30,598 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,598 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,598 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 09:55:30,598 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.015656232833862305 +2020-03-06 09:55:30,614 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: rasclient: '16': @@ -20146,15 +20032,15 @@ rasclient: reboot: False -2020-03-04 11:55:46,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,565 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls -2020-03-04 11:55:46,565 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.015421390533447266 -2020-03-04 11:55:46,581 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +2020-03-06 09:55:30,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,614 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,614 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 09:55:30,614 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,614 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,614 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: rdcman: '2.7.14060': full_name: 'Remote Desktop Connection Manager' @@ -20166,15 +20052,15 @@ rdcman: locale: en_US reboot: False -2020-03-04 11:55:46,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,581 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls -2020-03-04 11:55:46,581 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,581 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: +2020-03-06 09:55:30,630 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.016008377075195312 +2020-03-06 09:55:30,630 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,630 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,630 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 09:55:30,630 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,630 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,630 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: rocketchat: @@ -20270,15 +20156,15 @@ rocketchat: reboot: False -2020-03-04 11:55:46,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,630 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.016045570373535156 -2020-03-04 11:55:46,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,597 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls -2020-03-04 11:55:46,597 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,597 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +2020-03-06 09:55:30,630 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,646 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,646 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,646 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 09:55:30,646 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,646 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,646 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: rubyinstaller_x64: '2.2.3-p173': @@ -20312,15 +20198,15 @@ rubyinstaller_x64: reboot: False -2020-03-04 11:55:46,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,646 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,611 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.014836311340332031 -2020-03-04 11:55:46,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,612 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls -2020-03-04 11:55:46,612 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,612 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,612 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +2020-03-06 09:55:30,646 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,646 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,646 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,646 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 09:55:30,646 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.015593290328979492 +2020-03-06 09:55:30,661 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: rubyinstaller_x86: '2.2.3-p173': @@ -20364,15 +20250,15 @@ rubyinstaller_x86: reboot: False -2020-03-04 11:55:46,612 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,612 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,627 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,627 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls -2020-03-04 11:55:46,627 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,627 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,627 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +2020-03-06 09:55:30,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,661 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,661 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,661 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 09:55:30,661 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.01526951789855957 +2020-03-06 09:55:30,676 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -20892,15 +20778,15 @@ salt-minion: -2020-03-04 11:55:46,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,676 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 11:55:46,644 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.016173124313354492 -2020-03-04 11:55:46,644 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,644 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,644 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls -2020-03-04 11:55:46,644 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.01510310173034668 -2020-03-04 11:55:46,659 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +2020-03-06 09:55:30,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,696 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 09:55:30,696 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,696 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,696 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -21234,15 +21120,15 @@ salt-minion-py3: -2020-03-04 11:55:46,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 11:55:46,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,659 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls -2020-03-04 11:55:46,659 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.015535116195678711 -2020-03-04 11:55:46,674 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +2020-03-06 09:55:30,709 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.01304936408996582 +2020-03-06 09:55:30,709 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,709 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,709 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 09:55:30,709 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,709 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,709 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: sandboxie: '4.20': @@ -21256,15 +21142,15 @@ sandboxie: locale: en_US reboot: False -2020-03-04 11:55:46,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,709 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,674 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls -2020-03-04 11:55:46,674 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,674 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,674 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +2020-03-06 09:55:30,709 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,709 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,709 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,709 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 09:55:30,725 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,725 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,725 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: scaleout: latest: @@ -21278,15 +21164,15 @@ scaleout: locale: en_US reboot: False -2020-03-04 11:55:46,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.01571941375732422 -2020-03-04 11:55:46,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,690 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls -2020-03-04 11:55:46,690 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,690 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +2020-03-06 09:55:30,725 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,725 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,725 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,725 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 09:55:30,725 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,725 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,725 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: # just 32-bit x86 installer available @@ -21302,15 +21188,15 @@ secunia.psi: locale: en_US reboot: False -2020-03-04 11:55:46,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,706 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls -2020-03-04 11:55:46,706 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,706 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,706 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: +2020-03-06 09:55:30,725 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,741 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,741 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,741 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 09:55:30,741 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,741 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,741 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: @@ -21380,15 +21266,15 @@ sensu: reboot: False -2020-03-04 11:55:46,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,721 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,721 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls -2020-03-04 11:55:46,721 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,721 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,721 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +2020-03-06 09:55:30,758 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.01675868034362793 +2020-03-06 09:55:30,758 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,758 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,758 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 09:55:30,758 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,758 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,758 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: sharpdevelop: '5.1.5134': full_name: 'SharpDevelop 5.1 RC' @@ -21427,15 +21313,15 @@ sharpdevelop: locale: en_US reboot: False -2020-03-04 11:55:46,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,758 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,721 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,737 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,737 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,737 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls -2020-03-04 11:55:46,737 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,737 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,737 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +2020-03-06 09:55:30,758 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,758 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,771 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 09:55:30,771 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,771 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: # just 32-bit x86 installer available @@ -21451,15 +21337,15 @@ skitch: locale: en_US reboot: False -2020-03-04 11:55:46,737 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,737 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,737 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,752 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,752 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls -2020-03-04 11:55:46,752 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,752 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,752 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +2020-03-06 09:55:30,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,771 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 09:55:30,771 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,787 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.015125513076782227 +2020-03-06 09:55:30,787 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: skype-msi: '7.41.101': full_name: 'Skypeâ„¢ 7.41' @@ -21495,15 +21381,15 @@ skype-msi: # http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 # you can also check microsite http://skype.techygeekshome.info/ -2020-03-04 11:55:46,752 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,787 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,752 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,752 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,752 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,752 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls -2020-03-04 11:55:46,771 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,771 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,771 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +2020-03-06 09:55:30,787 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,787 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,787 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,787 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 09:55:30,787 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,787 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,787 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: # just 32-bit x86 installer available @@ -21521,15 +21407,15 @@ skype: reboot: False -2020-03-04 11:55:46,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,787 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,771 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,786 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,786 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,786 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls -2020-03-04 11:55:46,786 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,786 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,786 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +2020-03-06 09:55:30,787 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,803 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,803 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,803 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 09:55:30,803 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,803 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,803 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: #MSI machine-wide deployment package #The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. #It is multi-client-capable, meaning that it can be used by multiple users on one machine, @@ -21575,15 +21461,15 @@ slack-machine-msi: reboot: False -2020-03-04 11:55:46,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,803 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.013448715209960938 -2020-03-04 11:55:46,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,800 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls -2020-03-04 11:55:46,800 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,800 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +2020-03-06 09:55:30,803 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,803 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,803 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,819 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 09:55:30,819 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,819 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,819 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: #MSI for per-user deployment package #The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. #The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. @@ -21602,15 +21488,15 @@ slack-user-msi: locale: en_US reboot: False -2020-03-04 11:55:46,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,815 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls -2020-03-04 11:55:46,815 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,815 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +2020-03-06 09:55:30,819 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,819 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,819 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,819 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 09:55:30,819 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,819 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,819 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: slack: 3.4.0: full_name: Slack @@ -21621,15 +21507,15 @@ slack: msiexec: True reboot: False -2020-03-04 11:55:46,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:55:46,815 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,815 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,815 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls -2020-03-04 11:55:46,830 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,830 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,830 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +2020-03-06 09:55:30,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.01421499252319336 +2020-03-06 09:55:30,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,833 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 09:55:30,833 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,833 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: # just 32-bit x86 installer available @@ -21645,15 +21531,15 @@ smartmontools: locale: en_US reboot: False -2020-03-04 11:55:46,830 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,830 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,830 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,830 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,830 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls -2020-03-04 11:55:46,830 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,830 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,847 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +2020-03-06 09:55:30,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,849 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 09:55:30,849 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,849 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,849 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: # just 32-bit x86 installer available @@ -21669,15 +21555,15 @@ snmptools: locale: en_US reboot: False -2020-03-04 11:55:46,847 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,849 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,847 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,847 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,847 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,847 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls -2020-03-04 11:55:46,847 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,847 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,861 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: +2020-03-06 09:55:30,849 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,849 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 09:55:30,849 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,866 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.017338991165161133 +2020-03-06 09:55:30,866 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: soapui: @@ -21694,15 +21580,15 @@ soapui: reboot: False -2020-03-04 11:55:46,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,862 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls -2020-03-04 11:55:46,862 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,862 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +2020-03-06 09:55:30,866 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,866 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,866 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,866 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 09:55:30,866 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,866 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,866 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: # just 32-bit x86 installer available @@ -21719,15 +21605,15 @@ software-informer: locale: en_US reboot: False -2020-03-04 11:55:46,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,881 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,877 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,877 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,877 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls -2020-03-04 11:55:46,877 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,877 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,877 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +2020-03-06 09:55:30,881 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.014403104782104492 +2020-03-06 09:55:30,881 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,881 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,881 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 09:55:30,881 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,926 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.045615196228027344 +2020-03-06 09:55:30,926 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: sourcetree: '2.3.1.0': @@ -21943,15 +21829,15 @@ sourcetree: reboot: False -2020-03-04 11:55:46,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.01613140106201172 -2020-03-04 11:55:46,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,893 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls -2020-03-04 11:55:46,893 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,893 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +2020-03-06 09:55:30,942 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0010263919830322266 +2020-03-06 09:55:30,942 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,942 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,942 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 09:55:30,942 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,942 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,942 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: # just 32-bit x86 installer available @@ -21967,15 +21853,15 @@ spybot-anti-beacon: locale: en_US reboot: False -2020-03-04 11:55:46,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,942 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.01506805419921875 -2020-03-04 11:55:46,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,909 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls -2020-03-04 11:55:46,909 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,909 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +2020-03-06 09:55:30,958 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,958 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 09:55:30,958 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,958 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,958 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: # just 32-bit x86 installer available @@ -21995,15 +21881,15 @@ spybot: # http://www.spybotupdates.biz/files/spybot-2.4.exe # http://spybot-mirror.com/files/spybot-2.4.exe -2020-03-04 11:55:46,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,924 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls -2020-03-04 11:55:46,924 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,924 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,924 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +2020-03-06 09:55:30,958 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,958 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,973 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 09:55:30,973 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,973 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:30,973 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -22032,15 +21918,15 @@ sscserv-free: reboot: False -2020-03-04 11:55:46,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,973 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,924 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,924 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls -2020-03-04 11:55:46,940 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0007410049438476562 -2020-03-04 11:55:46,940 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +2020-03-06 09:55:30,973 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,973 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,973 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,973 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 09:55:30,973 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,989 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.015887737274169922 +2020-03-06 09:55:30,989 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: steam: latest: full_name: 'Steam' @@ -22051,15 +21937,15 @@ steam: uninstall_flags: '/S' reboot: False -2020-03-04 11:55:46,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:30,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,940 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls -2020-03-04 11:55:46,940 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,956 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +2020-03-06 09:55:30,989 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:30,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:30,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:30,989 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 09:55:30,989 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:30,989 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,005 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available stellarium: @@ -22075,15 +21961,15 @@ stellarium: locale: en_US reboot: False -2020-03-04 11:55:46,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,005 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,956 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls -2020-03-04 11:55:46,956 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,956 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +2020-03-06 09:55:31,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,005 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 09:55:31,005 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,005 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: strawberryperl_x64: '5.26.1001': @@ -22107,15 +21993,15 @@ strawberryperl_x64: reboot: False -2020-03-04 11:55:46,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,005 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.014414310455322266 -2020-03-04 11:55:46,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,971 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls -2020-03-04 11:55:46,971 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,971 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +2020-03-06 09:55:31,005 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,020 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 09:55:31,020 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,020 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,020 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: strawberryperl_x86: '5.26.1001': @@ -22139,15 +22025,15 @@ strawberryperl_x86: reboot: False -2020-03-04 11:55:46,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,971 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,971 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,987 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls -2020-03-04 11:55:46,987 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,987 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +2020-03-06 09:55:31,020 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,020 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,020 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 09:55:31,020 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,020 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,036 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: # just 32-bit x86 installer available @@ -22163,15 +22049,15 @@ stunnel: locale: en_US reboot: False -2020-03-04 11:55:46,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:46,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:46,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:46,987 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:46,987 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls -2020-03-04 11:55:46,987 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:46,987 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:46,987 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +2020-03-06 09:55:31,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,036 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 09:55:31,036 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,036 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: subinacl: '5.2.3790.1164': full_name: 'Windows Resource Kit Tools - SubInAcl.exe' @@ -22183,15 +22069,15 @@ subinacl: locale: en_US reboot: False -2020-03-04 11:55:47,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,002 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,002 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,002 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,002 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls -2020-03-04 11:55:47,002 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,002 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,002 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: +2020-03-06 09:55:31,036 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,036 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,051 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 09:55:31,051 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,051 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,051 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: @@ -22206,15 +22092,15 @@ sumatrapdf: locale: en_US reboot: False -2020-03-04 11:55:47,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,002 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,018 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,018 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,018 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls -2020-03-04 11:55:47,018 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,018 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,018 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +2020-03-06 09:55:31,051 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,051 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,051 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,051 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 09:55:31,051 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,051 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,051 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: svn: '1.8.13': full_name: 'Subversion' @@ -22235,15 +22121,15 @@ svn: locale: en_US reboot: False -2020-03-04 11:55:47,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,018 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,018 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,018 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,018 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls -2020-03-04 11:55:47,018 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.01576852798461914 -2020-03-04 11:55:47,034 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +2020-03-06 09:55:31,067 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.015851974487304688 +2020-03-06 09:55:31,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,067 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 09:55:31,067 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,067 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,067 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: # just 32-bit x86 installer available @@ -22263,15 +22149,15 @@ teamviewer: locale: en_US reboot: False -2020-03-04 11:55:47,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,034 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,034 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls -2020-03-04 11:55:47,034 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,051 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.017053842544555664 -2020-03-04 11:55:47,051 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +2020-03-06 09:55:31,067 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,067 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 09:55:31,067 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,084 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.016480684280395508 +2020-03-06 09:55:31,084 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: # just 32-bit x86 installer available @@ -22291,15 +22177,15 @@ teamviewer_host: locale: en_US reboot: False -2020-03-04 11:55:47,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,051 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,051 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,051 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,051 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls -2020-03-04 11:55:47,051 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,064 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.012702465057373047 -2020-03-04 11:55:47,065 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +2020-03-06 09:55:31,084 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,084 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,084 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,084 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 09:55:31,084 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,084 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,084 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: # just 32-bit x86 installer available @@ -22318,15 +22204,15 @@ teracopy: locale: en_US reboot: False -2020-03-04 11:55:47,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,065 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,065 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls -2020-03-04 11:55:47,065 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,065 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +2020-03-06 09:55:31,099 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.014949798583984375 +2020-03-06 09:55:31,099 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,099 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,099 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 09:55:31,099 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,099 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,099 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: # just 32-bit x86 installer available @@ -22342,15 +22228,15 @@ texmaker: locale: en_US reboot: False -2020-03-04 11:55:47,065 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,099 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,065 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,081 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls -2020-03-04 11:55:47,081 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,081 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: +2020-03-06 09:55:31,099 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,099 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,099 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,114 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 09:55:31,114 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,114 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,114 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: texniccenter: '2.02 Stable': @@ -22365,15 +22251,15 @@ texniccenter: locale: en_US reboot: False -2020-03-04 11:55:47,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,081 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,081 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls -2020-03-04 11:55:47,096 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,097 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0007741451263427734 -2020-03-04 11:55:47,097 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +2020-03-06 09:55:31,114 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,114 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 09:55:31,114 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,114 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,114 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: # just 32-bit x86 installer available @@ -22389,15 +22275,15 @@ texstudio: locale: en_US reboot: False -2020-03-04 11:55:47,097 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,097 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,097 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,097 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,097 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls -2020-03-04 11:55:47,097 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,097 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,112 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +2020-03-06 09:55:31,129 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.015601634979248047 +2020-03-06 09:55:31,129 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,129 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,129 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 09:55:31,129 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,129 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,129 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: # just 32-bit x86 installer available @@ -22413,15 +22299,15 @@ texworks: locale: en_US reboot: False -2020-03-04 11:55:47,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,112 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,112 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,112 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,112 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls -2020-03-04 11:55:47,112 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,127 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.01474308967590332 -2020-03-04 11:55:47,128 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +2020-03-06 09:55:31,129 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,129 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,129 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,129 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 09:55:31,145 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,145 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,161 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: # just 32-bit x86 installer available @@ -22699,15 +22585,15 @@ thunderbird: reboot: False -2020-03-04 11:55:47,128 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,161 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,128 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,128 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,128 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,128 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls -2020-03-04 11:55:47,128 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.015748262405395508 -2020-03-04 11:55:47,143 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +2020-03-06 09:55:31,161 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,176 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 09:55:31,176 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,176 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,176 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: tightvnc: @@ -22823,15 +22709,15 @@ tightvnc: reboot: False -2020-03-04 11:55:47,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,143 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,143 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,143 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,159 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls -2020-03-04 11:55:47,159 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,159 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,159 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +2020-03-06 09:55:31,176 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,176 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,176 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,176 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 09:55:31,192 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,192 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: todotxt.net: 'Not Found': # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22847,15 +22733,15 @@ todotxt.net: locale: en_US reboot: False -2020-03-04 11:55:47,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,192 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,159 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,159 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,177 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls -2020-03-04 11:55:47,177 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,177 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,177 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +2020-03-06 09:55:31,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,192 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,192 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 09:55:31,192 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,192 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,192 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22871,15 +22757,15 @@ todour: locale: en_US reboot: False -2020-03-04 11:55:47,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,177 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,177 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,177 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,190 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls -2020-03-04 11:55:47,190 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,190 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +2020-03-06 09:55:31,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.01545262336730957 +2020-03-06 09:55:31,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,208 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 09:55:31,208 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,208 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: # just 32-bit x86 installer available @@ -22896,15 +22782,15 @@ tortoise-bzr: locale: en_US reboot: False -2020-03-04 11:55:47,190 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,190 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,190 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,190 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls -2020-03-04 11:55:47,190 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,206 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.016200780868530273 -2020-03-04 11:55:47,206 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +2020-03-06 09:55:31,208 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,208 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,208 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 09:55:31,223 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,223 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,223 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: # Source: https://tortoisegit.org/ tortoise-git: @@ -23065,15 +22951,15 @@ tortoise-git: reboot: False -2020-03-04 11:55:47,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,223 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,206 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,206 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,206 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls -2020-03-04 11:55:47,221 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0008320808410644531 -2020-03-04 11:55:47,222 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +2020-03-06 09:55:31,223 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,223 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 09:55:31,223 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,240 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.016391754150390625 +2020-03-06 09:55:31,240 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: # Source: http://tortoisehg.bitbucket.org/ tortoise-hg: '3.6.2': @@ -23101,15 +22987,15 @@ tortoise-hg: # Need to download from source site above, so it will append proper aws key credentials # place downloaded msi in master's win_repo-ng -2020-03-04 11:55:47,222 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,222 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,222 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls -2020-03-04 11:55:47,222 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,222 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,237 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +2020-03-06 09:55:31,240 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,240 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,240 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,240 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 09:55:31,255 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,255 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: # Source: http://tortoisesvn.net/ tortoise-svn: '1.9.27285': @@ -23125,15 +23011,15 @@ tortoise-svn: reboot: False -2020-03-04 11:55:47,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,237 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls -2020-03-04 11:55:47,237 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,237 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +2020-03-06 09:55:31,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,255 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 09:55:31,255 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,255 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,255 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: # just 32-bit x86 installer available @@ -23149,15 +23035,15 @@ truecrypt: locale: en_US reboot: False -2020-03-04 11:55:47,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,271 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,237 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,252 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls -2020-03-04 11:55:47,252 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,252 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,252 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +2020-03-06 09:55:31,271 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.015573978424072266 +2020-03-06 09:55:31,271 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,271 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,271 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 09:55:31,271 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,271 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,271 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ultradefrag: @@ -23173,15 +23059,15 @@ ultradefrag: locale: en_US reboot: False -2020-03-04 11:55:47,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,271 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,252 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,252 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,252 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls -2020-03-04 11:55:47,252 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,268 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.01578497886657715 -2020-03-04 11:55:47,268 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +2020-03-06 09:55:31,271 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,271 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,271 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,271 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 09:55:31,286 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,286 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available urlrewrite: @@ -23208,15 +23094,15 @@ urlrewrite: locale: en_US reboot: False -2020-03-04 11:55:47,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,268 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,268 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,268 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,268 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls -2020-03-04 11:55:47,268 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,289 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.02108311653137207 -2020-03-04 11:55:47,289 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +2020-03-06 09:55:31,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,286 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 09:55:31,286 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,286 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,286 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: usbdlm: '5.2.7.0': @@ -23230,15 +23116,15 @@ usbdlm: locale: en_US reboot: False -2020-03-04 11:55:47,289 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,301 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,289 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,289 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,297 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,297 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls -2020-03-04 11:55:47,297 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,300 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0028803348541259766 -2020-03-04 11:55:47,300 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +2020-03-06 09:55:31,301 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.015661001205444336 +2020-03-06 09:55:31,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,301 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 09:55:31,301 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,301 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,301 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: vagrant: @@ -23744,15 +23630,15 @@ vagrant: reboot: False -2020-03-04 11:55:47,316 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,316 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.015984058380126953 -2020-03-04 11:55:47,316 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,316 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,316 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls -2020-03-04 11:55:47,316 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,316 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,330 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +2020-03-06 09:55:31,317 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,317 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 09:55:31,317 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.015757083892822266 +2020-03-06 09:55:31,333 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: vcforpython27: '9.0.1.30729': full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' @@ -23764,15 +23650,15 @@ vcforpython27: locale: en_US reboot: False -2020-03-04 11:55:47,330 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,333 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,330 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,330 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,330 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,330 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls -2020-03-04 11:55:47,330 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,330 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,330 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: +2020-03-06 09:55:31,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,333 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 09:55:31,333 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,333 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,333 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: @@ -23804,15 +23690,15 @@ vcxsrv: reboot: False -2020-03-04 11:55:47,330 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,348 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.015917062759399414 -2020-03-04 11:55:47,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,346 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls -2020-03-04 11:55:47,346 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,346 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: +2020-03-06 09:55:31,348 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.015312910079956055 +2020-03-06 09:55:31,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,348 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 09:55:31,348 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,348 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,348 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: verysleepy: @@ -23827,15 +23713,15 @@ verysleepy: locale: en_US reboot: False -2020-03-04 11:55:47,346 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,348 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,346 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,362 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls -2020-03-04 11:55:47,362 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,362 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +2020-03-06 09:55:31,348 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,348 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 09:55:31,348 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.016007184982299805 +2020-03-06 09:55:31,364 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -23866,15 +23752,15 @@ veyon: reboot: False -2020-03-04 11:55:47,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,362 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,378 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls -2020-03-04 11:55:47,378 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,378 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,393 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +2020-03-06 09:55:31,364 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,364 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,364 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 09:55:31,364 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,382 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.01823711395263672 +2020-03-06 09:55:31,382 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: # Version 5.1 and older are no longer supported by Oracle # https://www.virtualbox.org/wiki/Download_Old_Builds @@ -23937,15 +23823,15 @@ virtualbox: reboot: False -2020-03-04 11:55:47,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,382 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,393 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,393 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,393 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls -2020-03-04 11:55:47,393 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,393 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,393 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: +2020-03-06 09:55:31,382 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,382 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,382 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,382 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 09:55:31,395 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,395 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: @@ -23980,15 +23866,15 @@ viscosity: reboot: False -2020-03-04 11:55:47,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:55:47,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.01594376564025879 -2020-03-04 11:55:47,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,409 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls -2020-03-04 11:55:47,409 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,409 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +2020-03-06 09:55:31,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,395 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 09:55:31,395 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,395 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,411 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: #Vivaldi is a Chromium-based browser #https://vivaldi.com @@ -24007,15 +23893,15 @@ vivaldi: locale: en_US reboot: False -2020-03-04 11:55:47,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,411 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,409 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,409 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,424 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls -2020-03-04 11:55:47,424 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,424 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,424 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +2020-03-06 09:55:31,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,411 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 09:55:31,411 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,411 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,411 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available vlc: @@ -24165,15 +24051,15 @@ vlc: reboot: False -2020-03-04 11:55:47,424 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,424 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,440 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls -2020-03-04 11:55:47,440 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,440 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,440 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +2020-03-06 09:55:31,427 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.01569223403930664 +2020-03-06 09:55:31,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,427 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 09:55:31,427 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,427 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,427 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: vs-community: 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) full_name: @@ -24192,15 +24078,15 @@ vs-community: --norestart reboot: False -2020-03-04 11:55:47,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,427 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,440 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,440 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,440 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls -2020-03-04 11:55:47,440 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,456 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.015838623046875 -2020-03-04 11:55:47,456 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +2020-03-06 09:55:31,427 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,442 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 09:55:31,442 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,442 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: # due to winrepo installer limitations you need to manually download x86 + x64 System installer from # https://code.visualstudio.com/Download # and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... @@ -24276,15 +24162,15 @@ vscode: -2020-03-04 11:55:47,456 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,442 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,456 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,456 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,456 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,456 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls -2020-03-04 11:55:47,471 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0007405281066894531 -2020-03-04 11:55:47,472 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +2020-03-06 09:55:31,442 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,458 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 09:55:31,458 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: vsee: '15.0.0.707': full_name: 'VSee' @@ -24296,15 +24182,15 @@ vsee: locale: en_US reboot: False -2020-03-04 11:55:47,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,472 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls -2020-03-04 11:55:47,472 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,472 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,472 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +2020-03-06 09:55:31,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,458 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 09:55:31,458 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,458 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,458 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: vs_remotetools_2017: latest: full_name: 'Remote Tools for Visual Studio 2017' @@ -24319,15 +24205,15 @@ vs_remotetools_2017: locale: en_US reboot: False -2020-03-04 11:55:47,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.015215396881103516 -2020-03-04 11:55:47,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,487 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls -2020-03-04 11:55:47,487 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,487 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +2020-03-06 09:55:31,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.015122413635253906 +2020-03-06 09:55:31,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,473 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 09:55:31,473 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,473 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: wamp-server-3: '3.1.3': @@ -24341,15 +24227,15 @@ wamp-server-3: locale: en_US reboot: False -2020-03-04 11:55:47,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,487 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,487 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls -2020-03-04 11:55:47,503 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,503 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,503 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: +2020-03-06 09:55:31,473 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,473 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 09:55:31,473 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.01587224006652832 +2020-03-06 09:55:31,489 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: wamp-stack: @@ -24375,15 +24261,15 @@ wamp-stack: reboot: False -2020-03-04 11:55:47,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,489 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,503 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,503 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls -2020-03-04 11:55:47,503 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,503 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,518 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +2020-03-06 09:55:31,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,489 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 09:55:31,489 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,489 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: webdeploy: '3.1237.1764': full_name: 'Microsoft Web Deploy 3.5' @@ -24397,15 +24283,15 @@ webdeploy: locale: en_US reboot: False -2020-03-04 11:55:47,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,489 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,518 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls -2020-03-04 11:55:47,518 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,518 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +2020-03-06 09:55:31,489 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,504 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 09:55:31,504 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,504 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: webplatforminstaller: '5.0.50430.0': full_name: 'Microsoft Web Platform Installer 5.0' @@ -24419,15 +24305,15 @@ webplatforminstaller: locale: en_US reboot: False -2020-03-04 11:55:47,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,504 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,518 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,534 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls -2020-03-04 11:55:47,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,534 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +2020-03-06 09:55:31,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,504 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,504 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 09:55:31,504 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,504 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,521 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: # Source: http://winappmanager.herokuapp.com/ @@ -24443,15 +24329,15 @@ win-app-manager: locale: en_US reboot: False -2020-03-04 11:55:47,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,521 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,534 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,534 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls -2020-03-04 11:55:47,534 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0156862735748291 -2020-03-04 11:55:47,549 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: +2020-03-06 09:55:31,521 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,521 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,521 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,521 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 09:55:31,521 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,521 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,521 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: @@ -24466,15 +24352,15 @@ windirstat: locale: en_US reboot: False -2020-03-04 11:55:47,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,521 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,549 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,549 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls -2020-03-04 11:55:47,549 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,549 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +2020-03-06 09:55:31,521 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,521 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,535 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,536 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 09:55:31,536 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,536 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: winhttpcertcfg: '5.2.3790.1060': full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' @@ -24486,15 +24372,15 @@ winhttpcertcfg: locale: en_US reboot: False -2020-03-04 11:55:47,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,536 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,549 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,565 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls -2020-03-04 11:55:47,565 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,565 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: +2020-03-06 09:55:31,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,536 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,536 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 09:55:31,536 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,536 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,536 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: @@ -24522,15 +24408,15 @@ winmerge: reboot: False -2020-03-04 11:55:47,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,551 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,565 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,565 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,581 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls -2020-03-04 11:55:47,581 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,581 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +2020-03-06 09:55:31,551 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.015277385711669922 +2020-03-06 09:55:31,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,551 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,551 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 09:55:31,567 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: winmtr: '0.92': @@ -24548,15 +24434,15 @@ winmtr: # download exe from winmtr.net # create two installers using http://www.ssesetup.com/ -2020-03-04 11:55:47,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,581 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,581 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls -2020-03-04 11:55:47,581 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0159149169921875 -2020-03-04 11:55:47,597 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +2020-03-06 09:55:31,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,567 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,567 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 09:55:31,567 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,567 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,567 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: winpcap: '4.1.0.2980': full_name: 'WinPcap 4.1.3' @@ -24568,15 +24454,15 @@ winpcap: locale: en_US reboot: False -2020-03-04 11:55:47,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,597 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,597 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls -2020-03-04 11:55:47,597 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,597 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,597 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +2020-03-06 09:55:31,584 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.01676177978515625 +2020-03-06 09:55:31,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,584 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 09:55:31,584 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,584 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,584 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: #if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) @@ -24611,15 +24497,15 @@ winrar: -2020-03-04 11:55:47,613 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,584 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,613 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,613 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls -2020-03-04 11:55:47,613 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,613 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,613 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: +2020-03-06 09:55:31,584 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,584 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,601 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,601 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 09:55:31,601 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,601 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,601 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: @@ -24886,15 +24772,15 @@ winscp: reboot: False -2020-03-04 11:55:47,628 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,601 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,628 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,628 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls -2020-03-04 11:55:47,628 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,644 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.015872478485107422 -2020-03-04 11:55:47,644 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +2020-03-06 09:55:31,616 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.015345335006713867 +2020-03-06 09:55:31,616 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,616 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,616 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 09:55:31,616 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,616 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,616 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available wireshark: @@ -25416,15 +25302,15 @@ wireshark: reboot: False -2020-03-04 11:55:47,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,631 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,658 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.014892816543579102 -2020-03-04 11:55:47,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,659 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls -2020-03-04 11:55:47,659 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,659 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +2020-03-06 09:55:31,631 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,631 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,631 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,631 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 09:55:31,631 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,647 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.01675271987915039 +2020-03-06 09:55:31,647 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: # source: http://www.kls-soft.com/wscc/ wscc: '2.5.0.4': @@ -25439,15 +25325,15 @@ wscc: locale: en_US reboot: False -2020-03-04 11:55:47,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,659 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,675 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls -2020-03-04 11:55:47,675 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,675 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,675 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +2020-03-06 09:55:31,647 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,647 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,647 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,647 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 09:55:31,647 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.013678789138793945 +2020-03-06 09:55:31,661 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: # Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 # https://github.com/zeffy/wufuc @@ -25469,15 +25355,15 @@ wufuc: reboot: False -2020-03-04 11:55:47,675 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,675 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,675 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls -2020-03-04 11:55:47,690 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,690 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +2020-03-06 09:55:31,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,661 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,661 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,661 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 09:55:31,661 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,661 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: xampp: '7.2.6.0': full_name: 'XAMPP 7.2.6' @@ -25489,15 +25375,15 @@ xampp: locale: en_US reboot: False -2020-03-04 11:55:47,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,661 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,690 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls -2020-03-04 11:55:47,690 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,690 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +2020-03-06 09:55:31,661 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,676 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 09:55:31,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,676 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: # just 32-bit x86 installer available @@ -25514,15 +25400,15 @@ xming: locale: en_US reboot: False -2020-03-04 11:55:47,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,676 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,690 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,706 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls -2020-03-04 11:55:47,706 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,706 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,706 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: +2020-03-06 09:55:31,676 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,676 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,676 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 09:55:31,676 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,692 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.015524864196777344 +2020-03-06 09:55:31,692 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: yubikey-manager: @@ -25588,15 +25474,15 @@ yubikey-manager: reboot: False -2020-03-04 11:55:47,706 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,692 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,706 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,721 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls -2020-03-04 11:55:47,721 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,721 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,721 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +2020-03-06 09:55:31,692 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,692 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,692 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,692 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 09:55:31,692 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.015902996063232422 +2020-03-06 09:55:31,708 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: yubikey-personalization-tool: '3.1.24': full_name: 'YubiKey Personalization Tool' @@ -25606,15 +25492,15 @@ yubikey-personalization-tool: uninstall_flags: '/S' reboot: False -2020-03-04 11:55:47,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,721 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,721 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls -2020-03-04 11:55:47,721 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,737 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.015583515167236328 -2020-03-04 11:55:47,737 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +2020-03-06 09:55:31,708 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,708 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,708 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 09:55:31,708 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,724 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.015605449676513672 +2020-03-06 09:55:31,724 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -25622,59 +25508,11 @@ OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDic zabbix-agent: - '4.0.9.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '4.0.10.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '4.0.11.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '4.0.12.2400': - - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' - - install_flags: '/qn /norestart SERVER=localhost' - uninstall_flags: '/qn /norestart' - msiexec: True - locale: en_US - reboot: False - - '4.0.13.2400': + '3.0.26.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25682,11 +25520,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.14.2400': + '3.0.27.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25694,11 +25532,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.15.2400': + '3.0.28.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25706,11 +25544,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.16.2400': + '3.0.29.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25720,11 +25558,11 @@ zabbix-agent: - '3.0.26.2400': + '4.0.9.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25732,11 +25570,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.27.2400': + '4.0.10.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25744,11 +25582,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.28.2400': + '4.0.11.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25756,11 +25594,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.29.2400': + '4.0.12.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25768,13 +25606,11 @@ zabbix-agent: locale: en_US reboot: False - - - '4.4.1.2400': + '4.0.13.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25782,11 +25618,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.2.2400': + '4.0.14.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25794,11 +25630,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.3.2400': + '4.0.15.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25806,11 +25642,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.4.2400': + '4.0.16.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25893,16 +25729,66 @@ zabbix-agent: reboot: False + + '4.4.1.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.2.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.3.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + '4.4.4.2400': + + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + + install_flags: '/qn /norestart SERVER=localhost' + uninstall_flags: '/qn /norestart' + msiexec: True + locale: en_US + reboot: False + + -2020-03-04 11:55:47,737 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: -OrderedDict([('zabbix-agent', OrderedDict([('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,753 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0159604549407959 -2020-03-04 11:55:47,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,753 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls -2020-03-04 11:55:47,753 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,753 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,753 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: +2020-03-06 09:55:31,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:55:31,724 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,724 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,724 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,724 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 09:55:31,724 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,739 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.015109777450561523 +2020-03-06 09:55:31,739 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: zoom: latest: @@ -25914,15 +25800,15 @@ zoom: msiexec: True reboot: False -2020-03-04 11:55:47,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,739 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:55:47,753 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,768 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls -2020-03-04 11:55:47,768 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,768 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +2020-03-06 09:55:31,739 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,739 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,739 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,739 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 09:55:31,739 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,739 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,739 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: # Software Definition File for Elasticsearch Auditbeat # Uses the following associated scripts @@ -25984,15 +25870,15 @@ auditbeat: cache_dir: True -2020-03-04 11:55:47,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,739 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,768 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,768 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,783 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,784 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls -2020-03-04 11:55:47,784 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,784 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +2020-03-06 09:55:31,739 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,754 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,754 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,754 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 09:55:31,754 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,754 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,754 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: chocolatey: latest: full_name: 'Chocolatey' @@ -26006,15 +25892,15 @@ chocolatey: # https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 -2020-03-04 11:55:47,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,754 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,784 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,784 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,784 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,784 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls -2020-03-04 11:55:47,784 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.016528606414794922 -2020-03-04 11:55:47,800 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: +2020-03-06 09:55:31,754 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,754 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,754 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,754 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 09:55:31,754 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.01710057258605957 +2020-03-06 09:55:31,771 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: @@ -26042,15 +25928,15 @@ erlang: reboot: False -2020-03-04 11:55:47,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:55:47,800 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,800 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,825 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,825 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls -2020-03-04 11:55:47,825 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0062139034271240234 -2020-03-04 11:55:47,831 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +2020-03-06 09:55:31,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,771 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,771 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 09:55:31,771 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,771 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,771 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: # Software Definition File for Elasticsearch Filebeat # Uses the following associated scripts @@ -26112,15 +25998,15 @@ filebeat: cache_dir: True -2020-03-04 11:55:47,831 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,831 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,831 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls -2020-03-04 11:55:47,831 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,831 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,831 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +2020-03-06 09:55:31,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,786 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,786 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 09:55:31,786 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,786 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: # Software Definition File for Elasticsearch Functionbeat # Uses the following associated scripts @@ -26182,15 +26068,15 @@ functionbeat: cache_dir: True -2020-03-04 11:55:47,847 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,847 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0005462169647216797 -2020-03-04 11:55:47,847 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,847 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,847 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls -2020-03-04 11:55:47,847 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,847 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,847 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +2020-03-06 09:55:31,786 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,802 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,802 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,802 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 09:55:31,802 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,802 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,802 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: # just 32-bit x86 installer available @@ -26289,15 +26175,15 @@ gpg4win: reboot: False -2020-03-04 11:55:47,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,802 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:55:47,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.015565156936645508 -2020-03-04 11:55:47,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,862 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,862 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls -2020-03-04 11:55:47,862 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,862 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,862 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +2020-03-06 09:55:31,816 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.014091730117797852 +2020-03-06 09:55:31,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,817 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 09:55:31,817 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,817 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,817 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: # Software Definition File for Elasticsearch Heartbeat # Uses the following associated scripts @@ -26359,15 +26245,15 @@ heartbeat: cache_dir: True -2020-03-04 11:55:47,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,877 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.015179157257080078 -2020-03-04 11:55:47,877 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,877 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,877 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls -2020-03-04 11:55:47,877 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,877 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,877 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +2020-03-06 09:55:31,817 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,817 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 09:55:31,833 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,833 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: # Software Definition File for Elasticsearch Metricbeat # Uses the following associated scripts @@ -26429,15 +26315,15 @@ metricbeat: cache_dir: True -2020-03-04 11:55:47,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.015781879425048828 -2020-03-04 11:55:47,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,893 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,893 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls -2020-03-04 11:55:47,893 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,893 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +2020-03-06 09:55:31,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,833 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,833 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 09:55:31,833 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,833 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,849 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: # Software Definition File for Elasticsearch Packetbeat # Uses the following associated scripts @@ -26499,15 +26385,15 @@ packetbeat: cache_dir: True -2020-03-04 11:55:47,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,849 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,893 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,909 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls -2020-03-04 11:55:47,909 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,909 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: +2020-03-06 09:55:31,849 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,849 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,849 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 09:55:31,849 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,849 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,849 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: @@ -26526,15 +26412,15 @@ pycharm-pro: reboot: False -2020-03-04 11:55:47,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:55:47,909 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,909 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,924 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls -2020-03-04 11:55:47,924 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,924 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,924 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +2020-03-06 09:55:31,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,864 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,864 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,864 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 09:55:31,864 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,864 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: # just 32-bit x86 installer available @@ -26549,15 +26435,15 @@ stayawake: uninstall_flags: '/S' -2020-03-04 11:55:47,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) -2020-03-04 11:55:47,924 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,924 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,924 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls -2020-03-04 11:55:47,924 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.015483856201171875 -2020-03-04 11:55:47,940 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +2020-03-06 09:55:31,864 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,880 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 09:55:31,880 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,880 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,880 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: # Software Definition File for Elasticsearch Winlogbeat # Uses the following associated scripts @@ -26619,31 +26505,31 @@ winlogbeat: cache_dir: True -2020-03-04 11:55:47,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,880 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,940 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,940 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls -2020-03-04 11:55:47,940 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,940 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,940 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +2020-03-06 09:55:31,880 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,880 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,880 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 09:55:31,880 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,895 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.015247106552124023 +2020-03-06 09:55:31,895 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: ############################################################# # Windows ############################################################# # -2020-03-04 11:55:47,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: {} -2020-03-04 11:55:47,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:47,956 [salt.loaded.int.module.win_pkg:1213][DEBUG ][5396] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing -2020-03-04 11:55:47,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:55:47,956 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:55:47,956 [salt.template :59 ][DEBUG ][5396] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls -2020-03-04 11:55:47,956 [salt.utils.jinja :85 ][DEBUG ][5396] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:55:47,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:55:47,956 [salt.template :120 ][DEBUG ][5396] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +2020-03-06 09:55:31,895 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,895 [salt.loaded.int.module.win_pkg:1217][DEBUG ][5008] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 09:55:31,895 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:31,895 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:31,895 [salt.template :59 ][DEBUG ][5008] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 09:55:31,895 [salt.utils.jinja :85 ][DEBUG ][5008] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:55:31,895 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:55:31,911 [salt.template :120 ][DEBUG ][5008] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: # only 32-bit (x86) installer available @@ -26677,1265 +26563,465 @@ zipinstaller: # as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache # -2020-03-04 11:55:47,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][5396] Results of YAML rendering: +2020-03-06 09:55:31,911 [salt.loaded.int.render.yaml:80 ][DEBUG ][5008] Results of YAML rendering: OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) -2020-03-04 11:55:47,956 [salt.template :26 ][PROFILE ][5396] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:55:48,002 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 11:55:48,002 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 11:55:48,034 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: Volume in drive C is Windows 10 +2020-03-06 09:55:31,911 [salt.template :30 ][PROFILE ][5008] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:55:31,927 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 09:55:31,927 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 09:55:31,958 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Volume in drive C is Windows 10 Volume Serial Number is 9432-5789 Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng -03/04/2020 02:55 PM . -03/04/2020 02:55 PM .. -03/04/2020 02:55 PM 927 7zip.sls -03/04/2020 02:55 PM 723 activeperl_x64.sls -03/04/2020 02:55 PM 973 activeperl_x86.sls -03/04/2020 02:55 PM 798 adobeair.sls -03/04/2020 02:55 PM 956 adobereader-dc-classic.sls -03/04/2020 02:55 PM 851 adobereader-xi.sls -03/04/2020 02:55 PM 830 adobereader.sls -03/04/2020 02:55 PM 589 adobeshockwaveplayer.sls -03/04/2020 02:55 PM 775 adv-ip-scanner.sls -03/04/2020 02:55 PM 787 adv-port-scanner.sls -03/04/2020 02:55 PM 769 advancedlogging.sls -03/04/2020 02:55 PM 373 anydesk-msi.sls -03/04/2020 02:55 PM 597 anydesk.sls -03/04/2020 02:55 PM 803 applicationrequestrouting.sls -03/04/2020 02:55 PM 370 aspnet-mvc1.sls -03/04/2020 02:55 PM 439 atom.sls -03/04/2020 02:55 PM 655 audacity.sls -03/04/2020 02:55 PM auditbeat -03/04/2020 02:55 PM 1,768 autohotkey.sls -03/04/2020 02:55 PM 611 autoit.sls -03/04/2020 02:55 PM 670 autopsy.sls -03/04/2020 02:55 PM 659 awscli.sls -03/04/2020 02:55 PM 799 azuredatastudio.sls -03/04/2020 02:55 PM 422 bandizip.sls -03/04/2020 02:55 PM 563 belarc-advisor.sls -03/04/2020 02:55 PM 367 bginfo4x.sls -03/04/2020 02:55 PM 547 bitnami-nginxstack.sls -03/04/2020 02:55 PM 568 bitvise.sls -03/04/2020 02:55 PM 777 blender.sls -03/04/2020 02:55 PM 395 bootracer.sls -03/04/2020 02:55 PM 664 bulkrenameutility.sls -03/04/2020 02:55 PM 661 bulk_extractor.sls -03/04/2020 02:55 PM 476 ccleaner-slim.sls -03/04/2020 02:55 PM 445 ccleaner.sls -03/04/2020 02:55 PM 606 cdburnerxp.sls -03/04/2020 02:55 PM 594 cdroller.sls -03/04/2020 02:55 PM 658 check-mk-agent-msi.sls -03/04/2020 02:55 PM 451 check-mk-agent.sls -03/04/2020 02:55 PM chocolatey -03/04/2020 02:55 PM 394 chrome-rdp.sls -03/04/2020 02:55 PM 375 chrome.sls -03/04/2020 02:55 PM 1,296 clamav.sls -03/04/2020 02:55 PM 1,200 clamwin.sls -03/04/2020 02:55 PM 500 classicshell.sls -03/04/2020 02:55 PM 1,521 clink.sls -03/04/2020 02:55 PM 617 conemu.sls -03/04/2020 02:55 PM 687 cpu-z.sls -03/04/2020 02:55 PM 2,833 curl.sls -03/04/2020 02:55 PM 374 cyberduck-cli.sls -03/04/2020 02:55 PM 616 cyberduck-msi.sls -03/04/2020 02:55 PM 639 cyberduck.sls -03/04/2020 02:55 PM 751 defraggler.sls -03/04/2020 02:55 PM 2,637 dotnet.sls -03/04/2020 02:55 PM 643 dropbox.sls -03/04/2020 02:55 PM 683 duplicati.sls -03/04/2020 02:55 PM 712 dvdstyler.sls -03/04/2020 02:55 PM 737 echo-desktop.sls -03/04/2020 02:55 PM 1,327 eea.sls -03/04/2020 02:55 PM 423 emet.sls -03/04/2020 02:55 PM 625 emsisoft-anti-malware.sls -03/04/2020 02:55 PM 721 eraser.sls -03/04/2020 02:55 PM erlang -03/04/2020 02:55 PM 982 evernote.sls -03/04/2020 02:55 PM 531 fiddler.sls -03/04/2020 02:55 PM filebeat -03/04/2020 02:55 PM 660 filehippo-app-manager.sls -03/04/2020 02:55 PM 1,271 filezilla.sls -03/04/2020 02:55 PM 1,115 firefox-esr_x64.sls -03/04/2020 02:55 PM 1,396 firefox-esr_x86.sls -03/04/2020 02:55 PM 1,365 firefox_x64.sls -03/04/2020 02:55 PM 1,870 firefox_x86.sls -03/04/2020 02:55 PM functionbeat -03/04/2020 02:55 PM 552 gedit.sls -03/04/2020 02:55 PM 822 gimp.sls -03/04/2020 02:55 PM 953 git-extensions.sls -03/04/2020 02:55 PM 3,855 git.sls -03/04/2020 02:55 PM 848 glarysoft-absolute-uninstaller.sls -03/04/2020 02:55 PM 563 gnucash.sls -03/04/2020 02:55 PM 2,152 golang.sls -03/04/2020 02:55 PM 320 goodsync.sls -03/04/2020 02:55 PM 601 gow.sls -03/04/2020 02:55 PM gpg4win -03/04/2020 02:55 PM 847 gpg4win-light.sls -03/04/2020 02:55 PM 621 gpg4win-vanilla.sls -03/04/2020 02:55 PM 544 graylog-collector-sidecar.sls -03/04/2020 02:55 PM 2,661 grepwin.sls -03/04/2020 02:55 PM 505 gvim.sls -03/04/2020 02:55 PM 622 handbrake.sls -03/04/2020 02:55 PM heartbeat -03/04/2020 02:55 PM 503 hipchat.sls -03/04/2020 02:55 PM 771 hostsfileeditor.sls -03/04/2020 02:55 PM 623 hwinfo.sls -03/04/2020 02:55 PM 339 ice.sls -03/04/2020 02:55 PM 493 icecast.sls -03/04/2020 02:55 PM 377 icloud.sls -03/04/2020 02:55 PM 2,197 iismediaservices.sls -03/04/2020 02:55 PM 358 influx-capacitor.sls -03/04/2020 02:55 PM 644 inkscape.sls -03/04/2020 02:55 PM 646 intellij-community.sls -03/04/2020 02:55 PM 618 intellij-ultimate.sls -03/04/2020 02:55 PM 360 internet-evidence-finder.sls -03/04/2020 02:55 PM 702 irfanview-plugins.sls -03/04/2020 02:55 PM 1,610 irfanview.sls -03/04/2020 02:55 PM 697 isapirewrite-lite.sls -03/04/2020 02:55 PM 2,602 itunes.sls -03/04/2020 02:55 PM 1,279 jdk8.sls -03/04/2020 02:55 PM 1,200 jre.sls -03/04/2020 02:55 PM 1,480 jre8.sls -03/04/2020 02:55 PM 995 jungledisk-server-management.sls -03/04/2020 02:55 PM 891 jungledisk-server.sls -03/04/2020 02:55 PM 921 jungledisk-workgroup.sls -03/04/2020 02:55 PM 518 kdiff3.sls -03/04/2020 02:55 PM 1,091 keepass-2x.sls -03/04/2020 02:55 PM 2,655 keepass.sls -03/04/2020 02:55 PM 673 lastpass.sls -03/04/2020 02:55 PM 1,329 lazarus.sls -03/04/2020 02:55 PM 951 libreoffice.sls -03/04/2020 02:55 PM 419 logparser.sls -03/04/2020 02:55 PM 2,627 maas360bootanalyzer.sls -03/04/2020 02:55 PM 722 malwarebytes.sls -03/04/2020 02:55 PM 1,884 mariadb.sls -03/04/2020 02:55 PM 653 mercurial.sls -03/04/2020 02:55 PM 649 messageanalyzer.sls -03/04/2020 02:55 PM metricbeat -03/04/2020 02:55 PM 603 microsoft-build-tools.sls -03/04/2020 02:55 PM 317 mikogo.sls -03/04/2020 02:55 PM 766 miktex-basic.sls -03/04/2020 02:55 PM 787 mongodb.sls -03/04/2020 02:55 PM 831 ms-mbsa.sls -03/04/2020 02:55 PM 419 ms-vcpp-2005-atl-redist_x64.sls -03/04/2020 02:55 PM 413 ms-vcpp-2005-atl-redist_x86.sls -03/04/2020 02:55 PM 412 ms-vcpp-2005-redist_x64.sls -03/04/2020 02:55 PM 406 ms-vcpp-2005-redist_x86.sls -03/04/2020 02:55 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls -03/04/2020 02:55 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls -03/04/2020 02:55 PM 416 ms-vcpp-2005-sp1-redist_x64.sls -03/04/2020 02:55 PM 410 ms-vcpp-2005-sp1-redist_x86.sls -03/04/2020 02:55 PM 434 ms-vcpp-2008-redist_x64.sls -03/04/2020 02:55 PM 434 ms-vcpp-2008-redist_x86.sls -03/04/2020 02:55 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls -03/04/2020 02:55 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls -03/04/2020 02:55 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls -03/04/2020 02:55 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls -03/04/2020 02:55 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls -03/04/2020 02:55 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls -03/04/2020 02:55 PM 493 ms-vcpp-2012-redist_x64.sls -03/04/2020 02:55 PM 495 ms-vcpp-2012-redist_x86.sls -03/04/2020 02:55 PM 503 ms-vcpp-2013-redist_x64.sls -03/04/2020 02:55 PM 503 ms-vcpp-2013-redist_x86.sls -03/04/2020 02:55 PM 481 ms-vcpp-2015-build-tools.sls -03/04/2020 02:55 PM 1,407 ms-vcpp-2015-redist_x64.sls -03/04/2020 02:55 PM 1,407 ms-vcpp-2015-redist_x86.sls -03/04/2020 02:55 PM 1,166 ms-vcpp-2017-redist_x64.sls -03/04/2020 02:55 PM 539 ms-vcpp-2017-redist_x86.sls -03/04/2020 02:55 PM 585 mucommander.sls -03/04/2020 02:55 PM 638 mysql-essential.sls -03/04/2020 02:55 PM 632 mysql-installer-community.sls -03/04/2020 02:55 PM 639 mysql-workbench.sls -03/04/2020 02:55 PM 298 never10.sls -03/04/2020 02:55 PM 929 newrelic-infra.sls -03/04/2020 02:55 PM 526 nextcloud-client.sls -03/04/2020 02:55 PM 584 nmap.sls -03/04/2020 02:55 PM 709 node.js-lts.sls -03/04/2020 02:55 PM 733 node.js.sls -03/04/2020 02:55 PM 368 nomacs.sls -03/04/2020 02:55 PM 985 npp.sls -03/04/2020 02:55 PM 1,252 nsclient.sls -03/04/2020 02:55 PM 826 nsis.sls -03/04/2020 02:55 PM 902 ntp.sls -03/04/2020 02:55 PM 793 nunit-console.sls -03/04/2020 02:55 PM 363 nxlog.sls -03/04/2020 02:55 PM 1,081 octopus-tentacle.sls -03/04/2020 02:55 PM 678 openlp.sls -03/04/2020 02:55 PM 1,192 openoffice.sls -03/04/2020 02:55 PM 2,130 openvpn.sls -03/04/2020 02:55 PM 587 osquery.sls -03/04/2020 02:55 PM 878 ossec-agent.sls -03/04/2020 02:55 PM 590 owncloud.sls -03/04/2020 02:55 PM packetbeat -03/04/2020 02:55 PM 400 pandoc.sls -03/04/2020 02:55 PM 814 parallels-client-15.sls -03/04/2020 02:55 PM 1,709 pass4win.sls -03/04/2020 02:55 PM 378 passware-kit-agent.sls -03/04/2020 02:55 PM 416 passware-kit-forensic.sls -03/04/2020 02:55 PM 656 patchmypc-free.sls -03/04/2020 02:55 PM 638 pdf24creator.sls -03/04/2020 02:55 PM 567 pdfcreator.sls -03/04/2020 02:55 PM 611 peazip.sls -03/04/2020 02:55 PM 812 pgadmin4.sls -03/04/2020 02:55 PM 235 pgina.sls -03/04/2020 02:55 PM 617 pidgin.sls -03/04/2020 02:55 PM 1,898 postgresql.sls -03/04/2020 02:55 PM 997 powerbi-desktop.sls -03/04/2020 02:55 PM 864 powershell-core.sls -03/04/2020 02:55 PM 1,172 prometheus-wmi-exporter.sls -03/04/2020 02:55 PM 1,488 putty.sls -03/04/2020 02:55 PM pycharm-pro -03/04/2020 02:55 PM 567 python2_x64.sls -03/04/2020 02:55 PM 526 python2_x86.sls -03/04/2020 02:55 PM 1,540 python3_x64.sls -03/04/2020 02:55 PM 1,435 python3_x86.sls -03/04/2020 02:55 PM 449 qemu.sls -03/04/2020 02:55 PM 562 queueexplorerpro.sls -03/04/2020 02:55 PM 1,542 quicktime.sls -03/04/2020 02:55 PM 495 rabbitmq.sls -03/04/2020 02:55 PM 379 rakudo-star-no-jit_x86.sls -03/04/2020 02:55 PM 375 rakudo-star_x64.sls -03/04/2020 02:55 PM 888 rasclient.sls -03/04/2020 02:55 PM 444 rdcman.sls -03/04/2020 02:55 PM 609 rocketchat.sls -03/04/2020 02:55 PM 526 rubyinstaller_x64.sls -03/04/2020 02:55 PM 551 rubyinstaller_x86.sls -03/04/2020 02:55 PM 3,719 salt-minion-py2.sls -03/04/2020 02:55 PM 2,050 salt-minion-py3.sls -03/04/2020 02:55 PM 562 sandboxie.sls -03/04/2020 02:55 PM 581 scaleout.sls -03/04/2020 02:55 PM 476 secunia.psi.sls -03/04/2020 02:55 PM 1,190 sensu.sls -03/04/2020 02:55 PM 1,827 sharpdevelop.sls -03/04/2020 02:55 PM 539 skitch.sls -03/04/2020 02:55 PM 1,533 skype-msi.sls -03/04/2020 02:55 PM 708 skype.sls -03/04/2020 02:55 PM 1,244 slack-machine-msi.sls -03/04/2020 02:55 PM 1,023 slack-user-msi.sls -03/04/2020 02:55 PM 329 slack.sls -03/04/2020 02:55 PM 591 smartmontools.sls -03/04/2020 02:55 PM 556 snmptools.sls -03/04/2020 02:55 PM 653 soapui.sls -03/04/2020 02:55 PM 623 software-informer.sls -03/04/2020 02:55 PM 1,039 sourcetree.sls -03/04/2020 02:55 PM 591 spybot-anti-beacon.sls -03/04/2020 02:55 PM 765 spybot.sls -03/04/2020 02:55 PM 664 sscserv-free.sls -03/04/2020 02:55 PM stayawake -03/04/2020 02:55 PM 443 steam.sls -03/04/2020 02:55 PM 658 stellarium.sls -03/04/2020 02:55 PM 540 strawberryperl_x64.sls -03/04/2020 02:55 PM 531 strawberryperl_x86.sls -03/04/2020 02:55 PM 521 stunnel.sls -03/04/2020 02:55 PM 398 subinacl.sls -03/04/2020 02:55 PM 467 sumatrapdf.sls -03/04/2020 02:55 PM 769 svn.sls -03/04/2020 02:55 PM 534 teamviewer.sls -03/04/2020 02:55 PM 549 teamviewer_host.sls -03/04/2020 02:55 PM 749 teracopy.sls -03/04/2020 02:55 PM 491 texmaker.sls -03/04/2020 02:55 PM 709 texniccenter.sls -03/04/2020 02:55 PM 639 texstudio.sls -03/04/2020 02:55 PM 643 texworks.sls -03/04/2020 02:55 PM 937 thunderbird.sls -03/04/2020 02:55 PM 1,014 tightvnc.sls -03/04/2020 02:55 PM 623 todotxt.net.sls -03/04/2020 02:55 PM 551 todour.sls -03/04/2020 02:55 PM 630 tortoise-bzr.sls -03/04/2020 02:55 PM 983 tortoise-git.sls -03/04/2020 02:55 PM 1,367 tortoise-hg.sls -03/04/2020 02:55 PM 897 tortoise-svn.sls -03/04/2020 02:55 PM 503 truecrypt.sls -03/04/2020 02:55 PM 662 ultradefrag.sls -03/04/2020 02:55 PM 1,598 urlrewrite.sls -03/04/2020 02:55 PM 560 usbdlm.sls -03/04/2020 02:55 PM 1,361 vagrant.sls -03/04/2020 02:55 PM 479 vcforpython27.sls -03/04/2020 02:55 PM 820 vcxsrv.sls -03/04/2020 02:55 PM 434 verysleepy.sls -03/04/2020 02:55 PM 611 veyon.sls -03/04/2020 02:55 PM 2,570 virtualbox.sls -03/04/2020 02:55 PM 794 viscosity.sls -03/04/2020 02:55 PM 657 vivaldi.sls -03/04/2020 02:55 PM 739 vlc.sls -03/04/2020 02:55 PM 713 vs-community.sls -03/04/2020 02:55 PM 1,388 vscode.sls -03/04/2020 02:55 PM 325 vsee.sls -03/04/2020 02:55 PM 640 vs_remotetools_2017.sls -03/04/2020 02:55 PM 835 wamp-server-3.sls -03/04/2020 02:55 PM 585 wamp-stack.sls -03/04/2020 02:55 PM 775 webdeploy.sls -03/04/2020 02:55 PM 842 webplatforminstaller.sls -03/04/2020 02:55 PM 610 win-app-manager.sls -03/04/2020 02:55 PM 467 windirstat.sls -03/04/2020 02:55 PM 468 winhttpcertcfg.sls -03/04/2020 02:55 PM winlogbeat -03/04/2020 02:55 PM 618 winmerge.sls -03/04/2020 02:55 PM 737 winmtr.sls -03/04/2020 02:55 PM 288 winpcap.sls -03/04/2020 02:55 PM 825 winrar.sls -03/04/2020 02:55 PM 828 winscp.sls -03/04/2020 02:55 PM 1,136 wireshark.sls -03/04/2020 02:55 PM wmi_provider -03/04/2020 02:55 PM 539 wscc.sls -03/04/2020 02:55 PM 726 wufuc.sls -03/04/2020 02:55 PM 352 xampp.sls -03/04/2020 02:55 PM 649 xming.sls -03/04/2020 02:55 PM 621 yubikey-manager.sls -03/04/2020 02:55 PM 546 yubikey-personalization-tool.sls -03/04/2020 02:55 PM 1,119 zabbix-agent.sls -03/04/2020 02:55 PM zipinstaller -03/04/2020 02:55 PM 278 zoom.sls +03/06/2020 12:55 PM . +03/06/2020 12:55 PM .. +03/06/2020 12:55 PM 927 7zip.sls +03/06/2020 12:55 PM 723 activeperl_x64.sls +03/06/2020 12:55 PM 973 activeperl_x86.sls +03/06/2020 12:55 PM 798 adobeair.sls +03/06/2020 12:55 PM 956 adobereader-dc-classic.sls +03/06/2020 12:55 PM 851 adobereader-xi.sls +03/06/2020 12:55 PM 830 adobereader.sls +03/06/2020 12:55 PM 589 adobeshockwaveplayer.sls +03/06/2020 12:55 PM 775 adv-ip-scanner.sls +03/06/2020 12:55 PM 787 adv-port-scanner.sls +03/06/2020 12:55 PM 769 advancedlogging.sls +03/06/2020 12:55 PM 373 anydesk-msi.sls +03/06/2020 12:55 PM 597 anydesk.sls +03/06/2020 12:55 PM 803 applicationrequestrouting.sls +03/06/2020 12:55 PM 370 aspnet-mvc1.sls +03/06/2020 12:55 PM 439 atom.sls +03/06/2020 12:55 PM 655 audacity.sls +03/06/2020 12:55 PM auditbeat +03/06/2020 12:55 PM 1,768 autohotkey.sls +03/06/2020 12:55 PM 611 autoit.sls +03/06/2020 12:55 PM 670 autopsy.sls +03/06/2020 12:55 PM 659 awscli.sls +03/06/2020 12:55 PM 799 azuredatastudio.sls +03/06/2020 12:55 PM 422 bandizip.sls +03/06/2020 12:55 PM 563 belarc-advisor.sls +03/06/2020 12:55 PM 367 bginfo4x.sls +03/06/2020 12:55 PM 547 bitnami-nginxstack.sls +03/06/2020 12:55 PM 568 bitvise.sls +03/06/2020 12:55 PM 777 blender.sls +03/06/2020 12:55 PM 395 bootracer.sls +03/06/2020 12:55 PM 664 bulkrenameutility.sls +03/06/2020 12:55 PM 661 bulk_extractor.sls +03/06/2020 12:55 PM 476 ccleaner-slim.sls +03/06/2020 12:55 PM 445 ccleaner.sls +03/06/2020 12:55 PM 606 cdburnerxp.sls +03/06/2020 12:55 PM 594 cdroller.sls +03/06/2020 12:55 PM 658 check-mk-agent-msi.sls +03/06/2020 12:55 PM 451 check-mk-agent.sls +03/06/2020 12:55 PM chocolatey +03/06/2020 12:55 PM 394 chrome-rdp.sls +03/06/2020 12:55 PM 375 chrome.sls +03/06/2020 12:55 PM 1,296 clamav.sls +03/06/2020 12:55 PM 1,200 clamwin.sls +03/06/2020 12:55 PM 500 classicshell.sls +03/06/2020 12:55 PM 1,521 clink.sls +03/06/2020 12:55 PM 617 conemu.sls +03/06/2020 12:55 PM 687 cpu-z.sls +03/06/2020 12:55 PM 2,833 curl.sls +03/06/2020 12:55 PM 374 cyberduck-cli.sls +03/06/2020 12:55 PM 616 cyberduck-msi.sls +03/06/2020 12:55 PM 639 cyberduck.sls +03/06/2020 12:55 PM 751 defraggler.sls +03/06/2020 12:55 PM 2,637 dotnet.sls +03/06/2020 12:55 PM 643 dropbox.sls +03/06/2020 12:55 PM 683 duplicati.sls +03/06/2020 12:55 PM 712 dvdstyler.sls +03/06/2020 12:55 PM 737 echo-desktop.sls +03/06/2020 12:55 PM 1,327 eea.sls +03/06/2020 12:55 PM 423 emet.sls +03/06/2020 12:55 PM 625 emsisoft-anti-malware.sls +03/06/2020 12:55 PM 721 eraser.sls +03/06/2020 12:55 PM erlang +03/06/2020 12:55 PM 982 evernote.sls +03/06/2020 12:55 PM 531 fiddler.sls +03/06/2020 12:55 PM filebeat +03/06/2020 12:55 PM 660 filehippo-app-manager.sls +03/06/2020 12:55 PM 1,271 filezilla.sls +03/06/2020 12:55 PM 1,115 firefox-esr_x64.sls +03/06/2020 12:55 PM 1,396 firefox-esr_x86.sls +03/06/2020 12:55 PM 1,365 firefox_x64.sls +03/06/2020 12:55 PM 1,870 firefox_x86.sls +03/06/2020 12:55 PM functionbeat +03/06/2020 12:55 PM 552 gedit.sls +03/06/2020 12:55 PM 822 gimp.sls +03/06/2020 12:55 PM 953 git-extensions.sls +03/06/2020 12:55 PM 3,855 git.sls +03/06/2020 12:55 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 12:55 PM 563 gnucash.sls +03/06/2020 12:55 PM 2,152 golang.sls +03/06/2020 12:55 PM 320 goodsync.sls +03/06/2020 12:55 PM 601 gow.sls +03/06/2020 12:55 PM gpg4win +03/06/2020 12:55 PM 847 gpg4win-light.sls +03/06/2020 12:55 PM 621 gpg4win-vanilla.sls +03/06/2020 12:55 PM 544 graylog-collector-sidecar.sls +03/06/2020 12:55 PM 2,661 grepwin.sls +03/06/2020 12:55 PM 505 gvim.sls +03/06/2020 12:55 PM 622 handbrake.sls +03/06/2020 12:55 PM heartbeat +03/06/2020 12:55 PM 503 hipchat.sls +03/06/2020 12:55 PM 771 hostsfileeditor.sls +03/06/2020 12:55 PM 623 hwinfo.sls +03/06/2020 12:55 PM 339 ice.sls +03/06/2020 12:55 PM 493 icecast.sls +03/06/2020 12:55 PM 377 icloud.sls +03/06/2020 12:55 PM 2,197 iismediaservices.sls +03/06/2020 12:55 PM 358 influx-capacitor.sls +03/06/2020 12:55 PM 644 inkscape.sls +03/06/2020 12:55 PM 646 intellij-community.sls +03/06/2020 12:55 PM 618 intellij-ultimate.sls +03/06/2020 12:55 PM 360 internet-evidence-finder.sls +03/06/2020 12:55 PM 702 irfanview-plugins.sls +03/06/2020 12:55 PM 1,610 irfanview.sls +03/06/2020 12:55 PM 697 isapirewrite-lite.sls +03/06/2020 12:55 PM 2,602 itunes.sls +03/06/2020 12:55 PM 1,279 jdk8.sls +03/06/2020 12:55 PM 1,200 jre.sls +03/06/2020 12:55 PM 1,480 jre8.sls +03/06/2020 12:55 PM 995 jungledisk-server-management.sls +03/06/2020 12:55 PM 891 jungledisk-server.sls +03/06/2020 12:55 PM 921 jungledisk-workgroup.sls +03/06/2020 12:55 PM 518 kdiff3.sls +03/06/2020 12:55 PM 1,091 keepass-2x.sls +03/06/2020 12:55 PM 2,655 keepass.sls +03/06/2020 12:55 PM 673 lastpass.sls +03/06/2020 12:55 PM 1,329 lazarus.sls +03/06/2020 12:55 PM 951 libreoffice.sls +03/06/2020 12:55 PM 419 logparser.sls +03/06/2020 12:55 PM 2,627 maas360bootanalyzer.sls +03/06/2020 12:55 PM 722 malwarebytes.sls +03/06/2020 12:55 PM 1,884 mariadb.sls +03/06/2020 12:55 PM 653 mercurial.sls +03/06/2020 12:55 PM 649 messageanalyzer.sls +03/06/2020 12:55 PM metricbeat +03/06/2020 12:55 PM 603 microsoft-build-tools.sls +03/06/2020 12:55 PM 317 mikogo.sls +03/06/2020 12:55 PM 766 miktex-basic.sls +03/06/2020 12:55 PM 787 mongodb.sls +03/06/2020 12:55 PM 831 ms-mbsa.sls +03/06/2020 12:55 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 12:55 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 12:55 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 12:55 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 12:55 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 12:55 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 12:55 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 12:55 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 12:55 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 12:55 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 12:55 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 12:55 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 12:55 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 12:55 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 12:55 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 12:55 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 12:55 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 12:55 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 12:55 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 12:55 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 12:55 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 12:55 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 12:55 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 12:55 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 12:55 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 12:55 PM 585 mucommander.sls +03/06/2020 12:55 PM 638 mysql-essential.sls +03/06/2020 12:55 PM 632 mysql-installer-community.sls +03/06/2020 12:55 PM 639 mysql-workbench.sls +03/06/2020 12:55 PM 298 never10.sls +03/06/2020 12:55 PM 929 newrelic-infra.sls +03/06/2020 12:55 PM 526 nextcloud-client.sls +03/06/2020 12:55 PM 584 nmap.sls +03/06/2020 12:55 PM 709 node.js-lts.sls +03/06/2020 12:55 PM 733 node.js.sls +03/06/2020 12:55 PM 368 nomacs.sls +03/06/2020 12:55 PM 985 npp.sls +03/06/2020 12:55 PM 1,252 nsclient.sls +03/06/2020 12:55 PM 826 nsis.sls +03/06/2020 12:55 PM 902 ntp.sls +03/06/2020 12:55 PM 793 nunit-console.sls +03/06/2020 12:55 PM 363 nxlog.sls +03/06/2020 12:55 PM 1,081 octopus-tentacle.sls +03/06/2020 12:55 PM 678 openlp.sls +03/06/2020 12:55 PM 1,192 openoffice.sls +03/06/2020 12:55 PM 2,130 openvpn.sls +03/06/2020 12:55 PM 587 osquery.sls +03/06/2020 12:55 PM 878 ossec-agent.sls +03/06/2020 12:55 PM 590 owncloud.sls +03/06/2020 12:55 PM packetbeat +03/06/2020 12:55 PM 400 pandoc.sls +03/06/2020 12:55 PM 814 parallels-client-15.sls +03/06/2020 12:55 PM 1,709 pass4win.sls +03/06/2020 12:55 PM 378 passware-kit-agent.sls +03/06/2020 12:55 PM 416 passware-kit-forensic.sls +03/06/2020 12:55 PM 656 patchmypc-free.sls +03/06/2020 12:55 PM 638 pdf24creator.sls +03/06/2020 12:55 PM 567 pdfcreator.sls +03/06/2020 12:55 PM 611 peazip.sls +03/06/2020 12:55 PM 812 pgadmin4.sls +03/06/2020 12:55 PM 235 pgina.sls +03/06/2020 12:55 PM 617 pidgin.sls +03/06/2020 12:55 PM 1,898 postgresql.sls +03/06/2020 12:55 PM 997 powerbi-desktop.sls +03/06/2020 12:55 PM 864 powershell-core.sls +03/06/2020 12:55 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 12:55 PM 1,488 putty.sls +03/06/2020 12:55 PM pycharm-pro +03/06/2020 12:55 PM 567 python2_x64.sls +03/06/2020 12:55 PM 526 python2_x86.sls +03/06/2020 12:55 PM 1,540 python3_x64.sls +03/06/2020 12:55 PM 1,435 python3_x86.sls +03/06/2020 12:55 PM 449 qemu.sls +03/06/2020 12:55 PM 562 queueexplorerpro.sls +03/06/2020 12:55 PM 1,542 quicktime.sls +03/06/2020 12:55 PM 495 rabbitmq.sls +03/06/2020 12:55 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 12:55 PM 375 rakudo-star_x64.sls +03/06/2020 12:55 PM 888 rasclient.sls +03/06/2020 12:55 PM 444 rdcman.sls +03/06/2020 12:55 PM 609 rocketchat.sls +03/06/2020 12:55 PM 526 rubyinstaller_x64.sls +03/06/2020 12:55 PM 551 rubyinstaller_x86.sls +03/06/2020 12:55 PM 3,719 salt-minion-py2.sls +03/06/2020 12:55 PM 2,050 salt-minion-py3.sls +03/06/2020 12:55 PM 562 sandboxie.sls +03/06/2020 12:55 PM 581 scaleout.sls +03/06/2020 12:55 PM 476 secunia.psi.sls +03/06/2020 12:55 PM 1,190 sensu.sls +03/06/2020 12:55 PM 1,827 sharpdevelop.sls +03/06/2020 12:55 PM 539 skitch.sls +03/06/2020 12:55 PM 1,533 skype-msi.sls +03/06/2020 12:55 PM 708 skype.sls +03/06/2020 12:55 PM 1,244 slack-machine-msi.sls +03/06/2020 12:55 PM 1,023 slack-user-msi.sls +03/06/2020 12:55 PM 329 slack.sls +03/06/2020 12:55 PM 591 smartmontools.sls +03/06/2020 12:55 PM 556 snmptools.sls +03/06/2020 12:55 PM 653 soapui.sls +03/06/2020 12:55 PM 623 software-informer.sls +03/06/2020 12:55 PM 1,039 sourcetree.sls +03/06/2020 12:55 PM 591 spybot-anti-beacon.sls +03/06/2020 12:55 PM 765 spybot.sls +03/06/2020 12:55 PM 664 sscserv-free.sls +03/06/2020 12:55 PM stayawake +03/06/2020 12:55 PM 443 steam.sls +03/06/2020 12:55 PM 658 stellarium.sls +03/06/2020 12:55 PM 540 strawberryperl_x64.sls +03/06/2020 12:55 PM 531 strawberryperl_x86.sls +03/06/2020 12:55 PM 521 stunnel.sls +03/06/2020 12:55 PM 398 subinacl.sls +03/06/2020 12:55 PM 467 sumatrapdf.sls +03/06/2020 12:55 PM 769 svn.sls +03/06/2020 12:55 PM 534 teamviewer.sls +03/06/2020 12:55 PM 549 teamviewer_host.sls +03/06/2020 12:55 PM 749 teracopy.sls +03/06/2020 12:55 PM 491 texmaker.sls +03/06/2020 12:55 PM 709 texniccenter.sls +03/06/2020 12:55 PM 639 texstudio.sls +03/06/2020 12:55 PM 643 texworks.sls +03/06/2020 12:55 PM 937 thunderbird.sls +03/06/2020 12:55 PM 1,014 tightvnc.sls +03/06/2020 12:55 PM 623 todotxt.net.sls +03/06/2020 12:55 PM 551 todour.sls +03/06/2020 12:55 PM 630 tortoise-bzr.sls +03/06/2020 12:55 PM 983 tortoise-git.sls +03/06/2020 12:55 PM 1,367 tortoise-hg.sls +03/06/2020 12:55 PM 897 tortoise-svn.sls +03/06/2020 12:55 PM 503 truecrypt.sls +03/06/2020 12:55 PM 662 ultradefrag.sls +03/06/2020 12:55 PM 1,598 urlrewrite.sls +03/06/2020 12:55 PM 560 usbdlm.sls +03/06/2020 12:55 PM 1,361 vagrant.sls +03/06/2020 12:55 PM 479 vcforpython27.sls +03/06/2020 12:55 PM 820 vcxsrv.sls +03/06/2020 12:55 PM 434 verysleepy.sls +03/06/2020 12:55 PM 611 veyon.sls +03/06/2020 12:55 PM 2,570 virtualbox.sls +03/06/2020 12:55 PM 794 viscosity.sls +03/06/2020 12:55 PM 657 vivaldi.sls +03/06/2020 12:55 PM 739 vlc.sls +03/06/2020 12:55 PM 713 vs-community.sls +03/06/2020 12:55 PM 1,388 vscode.sls +03/06/2020 12:55 PM 325 vsee.sls +03/06/2020 12:55 PM 640 vs_remotetools_2017.sls +03/06/2020 12:55 PM 835 wamp-server-3.sls +03/06/2020 12:55 PM 585 wamp-stack.sls +03/06/2020 12:55 PM 775 webdeploy.sls +03/06/2020 12:55 PM 842 webplatforminstaller.sls +03/06/2020 12:55 PM 610 win-app-manager.sls +03/06/2020 12:55 PM 467 windirstat.sls +03/06/2020 12:55 PM 468 winhttpcertcfg.sls +03/06/2020 12:55 PM winlogbeat +03/06/2020 12:55 PM 618 winmerge.sls +03/06/2020 12:55 PM 737 winmtr.sls +03/06/2020 12:55 PM 288 winpcap.sls +03/06/2020 12:55 PM 825 winrar.sls +03/06/2020 12:55 PM 828 winscp.sls +03/06/2020 12:55 PM 1,136 wireshark.sls +03/06/2020 12:55 PM wmi_provider +03/06/2020 12:55 PM 539 wscc.sls +03/06/2020 12:55 PM 726 wufuc.sls +03/06/2020 12:55 PM 352 xampp.sls +03/06/2020 12:55 PM 649 xming.sls +03/06/2020 12:55 PM 621 yubikey-manager.sls +03/06/2020 12:55 PM 546 yubikey-personalization-tool.sls +03/06/2020 12:55 PM 1,119 zabbix-agent.sls +03/06/2020 12:55 PM zipinstaller +03/06/2020 12:55 PM 278 zoom.sls 284 File(s) 232,192 bytes - 16 Dir(s) 41,603,194,880 bytes free -2020-03-04 11:55:48,034 [salt.state :938 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:55:48,034 [salt.state :320 ][INFO ][5396] {'pkg.refresh_db': {'total': 298, 'success': 298, 'failed': 0}} -2020-03-04 11:55:48,034 [salt.state :1997][INFO ][5396] Completed state [pkg.refresh_db] at time 11:55:48.034205 (duration_in_ms=7436.119) -2020-03-04 11:55:48,034 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. -2020-03-04 11:55:48,052 [salt.state :1819][INFO ][5396] Running state [git] at time 11:55:48.052983 -2020-03-04 11:55:48,052 [salt.state :1852][INFO ][5396] Executing state pkg.installed for [git] -2020-03-04 11:55:48,052 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 11:55:48,068 [salt.loaded.int.module.win_pkg:802 ][INFO ][5396] Refresh skipped, age of winrepo metadata in seconds (0.08138370513916016) is less than winrepo_cache_expire_min (1800) -2020-03-04 11:55:48,068 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.081384) -2020-03-04 11:55:48,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,158 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,180 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:55:48,191 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 11:55:48,208 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:55:48,208 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.236563) -2020-03-04 11:55:48,208 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,220 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,221 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:55:48,237 [salt.utils.http :234 ][DEBUG ][5396] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method -2020-03-04 11:55:48,237 [salt.utils.http :235 ][DEBUG ][5396] Using backend: tornado -2020-03-04 11:55:54,409 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' -2020-03-04 11:56:06,440 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:18.468888) -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,456 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,470 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,472 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,472 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,472 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 11:56:06,487 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:18.515637) -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,487 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,502 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,502 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,502 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,502 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,502 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,502 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:06,502 [salt.state :320 ][INFO ][5396] Made the following changes: + 16 Dir(s) 41,574,912,000 bytes free +2020-03-06 09:55:31,958 [salt.state :986 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:55:31,958 [salt.state :320 ][INFO ][5008] {'pkg.refresh_db': {'success': 298, 'failed': 0, 'total': 298}} +2020-03-06 09:55:31,958 [salt.state :2045][INFO ][5008] Completed state [pkg.refresh_db] at time 09:55:31.958134 (duration_in_ms=6327.533) +2020-03-06 09:55:31,974 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 09:55:31,974 [salt.state :1867][INFO ][5008] Running state [git] at time 09:55:31.974892 +2020-03-06 09:55:31,974 [salt.state :1900][INFO ][5008] Executing state pkg.installed for [git] +2020-03-06 09:55:32,005 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 09:55:32,005 [salt.loaded.int.module.win_pkg:806 ][INFO ][5008] Refresh skipped, age of winrepo metadata in seconds (0.09411025047302246) is less than winrepo_cache_expire_min (1800) +2020-03-06 09:55:32,005 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.094110) +2020-03-06 09:55:32,114 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:55:32,130 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 09:55:32,162 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:55:32,162 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.250775) +2020-03-06 09:55:32,177 [salt.utils.http :234 ][DEBUG ][5008] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 09:55:32,177 [salt.utils.http :235 ][DEBUG ][5008] Using backend: tornado +2020-03-06 09:55:35,785 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 09:55:47,723 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:15.812407) +2020-03-06 09:55:47,754 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 09:55:47,755 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:15.843694) +2020-03-06 09:55:47,755 [salt.state :320 ][INFO ][5008] Made the following changes: 'git' changed from 'absent' to '2.23.0.windows.1' -2020-03-04 11:56:06,502 [salt.state :1000][DEBUG ][5396] Refreshing modules... -2020-03-04 11:56:06,538 [salt.state :966 ][INFO ][5396] Loading fresh modules for state activity -2020-03-04 11:56:06,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:56:06,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:56:06,613 [salt.state :1997][INFO ][5396] Completed state [git] at time 11:56:06.613575 (duration_in_ms=18560.592) -2020-03-04 11:56:06,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded config.option -2020-03-04 11:56:06,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pkg.install -2020-03-04 11:56:06,613 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pkg.installed -2020-03-04 11:56:06,613 [salt.state :1819][INFO ][5396] Running state [kdiff3] at time 11:56:06.613575 -2020-03-04 11:56:06,634 [salt.state :1852][INFO ][5396] Executing state pkg.installed for [kdiff3] -2020-03-04 11:56:07,088 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt.secret_key, ret: _|- -2020-03-04 11:56:07,094 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt:secret_key, ret: _|- -2020-03-04 11:56:07,314 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet.api_key, ret: _|- -2020-03-04 11:56:07,315 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet:api_key, ret: _|- -2020-03-04 11:56:07,476 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded reg.read_value -2020-03-04 11:56:07,565 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops.api_key, ret: _|- -2020-03-04 11:56:07,565 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops:api_key, ret: _|- -2020-03-04 11:56:12,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded platform.is_windows -2020-03-04 11:56:12,284 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded path.which -2020-03-04 11:56:12,316 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 11:56:12,316 [salt.loaded.int.module.win_pkg:802 ][INFO ][5396] Refresh skipped, age of winrepo metadata in seconds (24.344732999801636) is less than winrepo_cache_expire_min (1800) -2020-03-04 11:56:12,328 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:24.344733) -2020-03-04 11:56:12,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,348 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,348 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,348 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,348 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,348 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,348 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,348 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,366 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:56:12,379 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 11:56:12,394 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:56:12,394 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:24.422839) -2020-03-04 11:56:12,394 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,406 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,406 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,408 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:12,409 [salt.utils.http :234 ][DEBUG ][5396] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method -2020-03-04 11:56:12,424 [salt.utils.http :235 ][DEBUG ][5396] Using backend: tornado -2020-03-04 11:56:15,159 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' -2020-03-04 11:56:15,597 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.625433) -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,612 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,628 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,628 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,628 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 11:56:15,628 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.656402) -2020-03-04 11:56:15,628 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products +2020-03-06 09:55:47,755 [salt.state :1048][DEBUG ][5008] Refreshing modules... +2020-03-06 09:55:47,804 [salt.state :1014][INFO ][5008] Loading fresh modules for state activity +2020-03-06 09:55:47,879 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:55:47,879 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:55:47,879 [salt.state :2045][INFO ][5008] Completed state [git] at time 09:55:47.879765 (duration_in_ms=15904.873) +2020-03-06 09:55:47,879 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded config.option +2020-03-06 09:55:47,927 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pkg.install +2020-03-06 09:55:47,927 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pkg.installed +2020-03-06 09:55:47,927 [salt.state :1867][INFO ][5008] Running state [7zip] at time 09:55:47.927536 +2020-03-06 09:55:47,927 [salt.state :1900][INFO ][5008] Executing state pkg.installed for [7zip] +2020-03-06 09:55:48,990 [salt.config :2215][DEBUG ][5008] Missing configuration file: /etc/salt/minion +2020-03-06 09:55:48,990 [salt.config :3612][DEBUG ][5008] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 09:55:49,098 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:55:49,117 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:55:49,411 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 09:55:49,411 [salt.loader :1671][DEBUG ][5008] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 09:55:50,165 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt.secret_key, ret: _|- +2020-03-06 09:55:50,165 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt:secret_key, ret: _|- +2020-03-06 09:55:50,927 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet.api_key, ret: _|- +2020-03-06 09:55:50,927 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet:api_key, ret: _|- +2020-03-06 09:55:51,296 [salt.loader :1671][DEBUG ][5008] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,659 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,659 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,659 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,659 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:15,659 [salt.state :320 ][INFO ][5396] Made the following changes: -'kdiff3' changed from 'absent' to 'Not Found' + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 09:55:51,552 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops.api_key, ret: _|- +2020-03-06 09:55:51,552 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops:api_key, ret: _|- +2020-03-06 09:55:58,474 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 09:55:58,474 [salt.loaded.int.module.win_pkg:806 ][INFO ][5008] Refresh skipped, age of winrepo metadata in seconds (26.562835454940796) is less than winrepo_cache_expire_min (1800) +2020-03-06 09:55:58,494 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:26.562835) +2020-03-06 09:55:58,520 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:55:58,536 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 09:55:58,552 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:55:58,552 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:26.640885) +2020-03-06 09:55:58,567 [salt.utils.http :234 ][DEBUG ][5008] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 09:55:58,567 [salt.utils.http :235 ][DEBUG ][5008] Using backend: tornado +2020-03-06 09:55:59,565 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 09:56:00,052 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.140576) +2020-03-06 09:56:00,068 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 09:56:00,068 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.156660) +2020-03-06 09:56:00,114 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 09:56:00,129 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 09:56:00,129 [salt.state :320 ][INFO ][5008] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' -2020-03-04 11:56:15,659 [salt.state :1000][DEBUG ][5396] Refreshing modules... -2020-03-04 11:56:15,690 [salt.state :966 ][INFO ][5396] Loading fresh modules for state activity -2020-03-04 11:56:15,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:56:15,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:56:15,753 [salt.state :1997][INFO ][5396] Completed state [kdiff3] at time 11:56:15.753311 (duration_in_ms=9139.736) -2020-03-04 11:56:15,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded config.option -2020-03-04 11:56:15,753 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pkg.install -2020-03-04 11:56:15,769 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pkg.installed -2020-03-04 11:56:15,769 [salt.state :1819][INFO ][5396] Running state [7zip] at time 11:56:15.769852 -2020-03-04 11:56:15,769 [salt.state :1852][INFO ][5396] Executing state pkg.installed for [7zip] -2020-03-04 11:56:16,190 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt.secret_key, ret: _|- -2020-03-04 11:56:16,190 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt:secret_key, ret: _|- -2020-03-04 11:56:16,394 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet.api_key, ret: _|- -2020-03-04 11:56:16,394 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet:api_key, ret: _|- -2020-03-04 11:56:16,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded reg.read_value -2020-03-04 11:56:16,659 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops.api_key, ret: _|- -2020-03-04 11:56:16,682 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops:api_key, ret: _|- -2020-03-04 11:56:22,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded platform.is_windows -2020-03-04 11:56:22,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded path.which -2020-03-04 11:56:22,127 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 11:56:22,127 [salt.loaded.int.module.win_pkg:802 ][INFO ][5396] Refresh skipped, age of winrepo metadata in seconds (34.15635323524475) is less than winrepo_cache_expire_min (1800) -2020-03-04 11:56:22,127 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.156353) -2020-03-04 11:56:22,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,143 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,159 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,178 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:56:22,192 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 11:56:22,206 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:56:22,206 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.234901) -2020-03-04 11:56:22,223 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,223 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,223 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,223 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,223 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,223 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,223 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,235 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,237 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,237 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,237 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products +2020-03-06 09:56:00,129 [salt.state :1048][DEBUG ][5008] Refreshing modules... +2020-03-06 09:56:00,177 [salt.state :1014][INFO ][5008] Loading fresh modules for state activity +2020-03-06 09:56:00,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:56:00,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:56:00,255 [salt.state :2045][INFO ][5008] Completed state [7zip] at time 09:56:00.255698 (duration_in_ms=12328.162) +2020-03-06 09:56:00,267 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded config.option +2020-03-06 09:56:00,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pkg.install +2020-03-06 09:56:00,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pkg.installed +2020-03-06 09:56:00,317 [salt.state :1867][INFO ][5008] Running state [kdiff3] at time 09:56:00.317382 +2020-03-06 09:56:00,317 [salt.state :1900][INFO ][5008] Executing state pkg.installed for [kdiff3] +2020-03-06 09:56:01,927 [salt.config :2215][DEBUG ][5008] Missing configuration file: /etc/salt/minion +2020-03-06 09:56:01,927 [salt.config :3612][DEBUG ][5008] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 09:56:02,067 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:56:02,067 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:56:02,521 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 09:56:02,536 [salt.loader :1671][DEBUG ][5008] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,237 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 09:56:03,504 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt.secret_key, ret: _|- +2020-03-06 09:56:03,504 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt:secret_key, ret: _|- +2020-03-06 09:56:04,755 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet.api_key, ret: _|- +2020-03-06 09:56:04,755 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet:api_key, ret: _|- +2020-03-06 09:56:05,410 [salt.loader :1671][DEBUG ][5008] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,237 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,237 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:22,237 [salt.utils.http :234 ][DEBUG ][5396] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method -2020-03-04 11:56:22,237 [salt.utils.http :235 ][DEBUG ][5396] Using backend: tornado -2020-03-04 11:56:24,674 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' -2020-03-04 11:56:25,238 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:37.266495) -2020-03-04 11:56:25,238 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,269 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,291 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 11:56:25,291 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][5396] Using existing pkg metadata db for saltenv 'base' (age is 0:00:37.319838) -2020-03-04 11:56:25,291 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,291 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-21-3986487613-1238762046-2462075807-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][5396] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:56:25,316 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. -2020-03-04 11:56:25,339 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. -2020-03-04 11:56:25,339 [salt.state :320 ][INFO ][5396] Made the following changes: -'7zip' changed from 'absent' to '18.06.00.0' + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 09:56:05,895 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops.api_key, ret: _|- +2020-03-06 09:56:05,895 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops:api_key, ret: _|- +2020-03-06 09:56:14,583 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 09:56:14,583 [salt.loaded.int.module.win_pkg:806 ][INFO ][5008] Refresh skipped, age of winrepo metadata in seconds (42.67150807380676) is less than winrepo_cache_expire_min (1800) +2020-03-06 09:56:14,583 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:42.671508) +2020-03-06 09:56:14,614 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:56:14,629 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 09:56:14,661 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:56:14,661 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:42.750028) +2020-03-06 09:56:14,661 [salt.utils.http :234 ][DEBUG ][5008] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 09:56:14,676 [salt.utils.http :235 ][DEBUG ][5008] Using backend: tornado +2020-03-06 09:56:16,239 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 09:56:17,068 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:45.157392) +2020-03-06 09:56:17,098 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 09:56:17,114 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5008] Using existing pkg metadata db for saltenv 'base' (age is 0:00:45.202854) +2020-03-06 09:56:17,131 [salt.state :320 ][INFO ][5008] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' -2020-03-04 11:56:25,339 [salt.state :1000][DEBUG ][5396] Refreshing modules... -2020-03-04 11:56:25,380 [salt.state :966 ][INFO ][5396] Loading fresh modules for state activity -2020-03-04 11:56:25,442 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded jinja.render -2020-03-04 11:56:25,471 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded yaml.render -2020-03-04 11:56:25,471 [salt.state :1997][INFO ][5396] Completed state [7zip] at time 11:56:25.471562 (duration_in_ms=9701.71) -2020-03-04 11:56:25,471 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded config.option -2020-03-04 11:56:25,471 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded module.run -2020-03-04 11:56:25,471 [salt.state :1819][INFO ][5396] Running state [windows_environment.refresh.path] at time 11:56:25.471562 -2020-03-04 11:56:25,471 [salt.state :1852][INFO ][5396] Executing state module.run for [windows_environment.refresh.path] -2020-03-04 11:56:25,471 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded windows_environment.refresh -2020-03-04 11:56:25,489 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cmd.run -2020-03-04 11:56:25,489 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' -2020-03-04 11:56:25,505 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: +2020-03-06 09:56:17,131 [salt.state :1048][DEBUG ][5008] Refreshing modules... +2020-03-06 09:56:17,239 [salt.state :1014][INFO ][5008] Loading fresh modules for state activity +2020-03-06 09:56:17,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded jinja.render +2020-03-06 09:56:17,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded yaml.render +2020-03-06 09:56:17,426 [salt.state :2045][INFO ][5008] Completed state [kdiff3] at time 09:56:17.426631 (duration_in_ms=17109.249) +2020-03-06 09:56:17,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded config.option +2020-03-06 09:56:17,426 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded module.run +2020-03-06 09:56:17,442 [salt.state :1867][INFO ][5008] Running state [windows_environment.refresh.path] at time 09:56:17.442252 +2020-03-06 09:56:17,442 [salt.state :1900][INFO ][5008] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 09:56:17,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded windows_environment.refresh +2020-03-06 09:56:17,442 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cmd.run +2020-03-06 09:56:17,458 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 09:56:17,473 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27952,7 +27038,7 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 11:56:25,505 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5396] output: +2020-03-06 09:56:17,473 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5008] output: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27969,313 +27055,326 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 11:56:25,505 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded environ.get -2020-03-04 11:56:25,505 [py.warnings :919 ][WARNING ][5396] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +2020-03-06 09:56:17,473 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded environ.get +2020-03-06 09:56:17,473 [py.warnings :919 ][WARNING ][5008] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) -2020-03-04 11:56:25,505 [py.warnings :919 ][WARNING ][5396] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +2020-03-06 09:56:17,473 [py.warnings :919 ][WARNING ][5008] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) -2020-03-04 11:56:25,505 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded event.fire -2020-03-04 11:56:25,519 [salt.utils.event :322 ][DEBUG ][5396] SaltEvent PUB socket URI: 4510 -2020-03-04 11:56:25,519 [salt.utils.event :323 ][DEBUG ][5396] SaltEvent PULL socket URI: 4511 -2020-03-04 11:56:25,519 [salt.utils.event :737 ][DEBUG ][5396] Sending event: tag = environ_setenv; data = {'false_unsets': False, 'permanent': False, '_stamp': '2020-03-04T19:56:25.519485', 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'clear_all': False} -2020-03-04 11:56:25,519 [salt.transport.ipc:364 ][DEBUG ][5396] Closing IPCMessageClient instance -2020-03-04 11:56:25,519 [salt.state :320 ][INFO ][5396] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 11:56:25,519 [salt.state :1997][INFO ][5396] Completed state [windows_environment.refresh.path] at time 11:56:25.519485 (duration_in_ms=47.923) -2020-03-04 11:56:25,519 [salt.state :1819][INFO ][5396] Running state [chocolatey.bootstrap] at time 11:56:25.519485 -2020-03-04 11:56:25,519 [salt.state :1852][INFO ][5396] Executing state module.run for [chocolatey.bootstrap] -2020-03-04 11:56:26,049 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt.secret_key, ret: _|- -2020-03-04 11:56:26,049 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: ifttt:secret_key, ret: _|- -2020-03-04 11:56:26,331 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet.api_key, ret: _|- -2020-03-04 11:56:26,331 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: pushbullet:api_key, ret: _|- -2020-03-04 11:56:26,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded reg.read_value -2020-03-04 11:56:26,831 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops.api_key, ret: _|- -2020-03-04 11:56:26,831 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: victorops:api_key, ret: _|- -2020-03-04 11:56:35,363 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded platform.is_windows -2020-03-04 11:56:35,378 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded path.which -2020-03-04 11:56:35,424 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 11:56:35,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded apache.config -2020-03-04 11:56:35,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded apache.a2enconf -2020-03-04 11:56:35,581 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded apache.a2ensite -2020-03-04 11:56:35,612 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 11:56:35,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 11:56:35,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 11:56:35,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 11:56:35,612 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto3_sns.topic_exists -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_apigateway.describe_apis -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_asg.exists -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cfn.exists -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudtrail.exists -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 11:56:35,628 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 11:56:35,645 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 11:56:35,645 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 11:56:35,645 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_dynamodb.exists -2020-03-04 11:56:35,645 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_ec2.get_key -2020-03-04 11:56:35,645 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elasticache.exists -2020-03-04 11:56:35,645 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 11:56:35,645 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elb.exists -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_iam.get_user -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_iam.role_exists -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_iot.policy_exists -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_kinesis.exists -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_kms.describe_key -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_lambda.function_exists -2020-03-04 11:56:35,660 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_asg.exists -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_rds.exists -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_route53.get_record -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_s3.get_object_metadata -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_s3_bucket.exists -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_secgroup.exists -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_sns.exists -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_sqs.exists -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded boto_vpc.exists -2020-03-04 11:56:35,675 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded bower.list -2020-03-04 11:56:35,692 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded chef.client -2020-03-04 11:56:35,692 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cimc.get_system_info -2020-03-04 11:56:35,692 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded cisconso.set_data_value -2020-03-04 11:56:35,707 [salt.loader :1577][DEBUG ][5396] Failed to import states cloud: +2020-03-06 09:56:17,489 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded event.fire +2020-03-06 09:56:17,489 [salt.utils.event :310 ][DEBUG ][5008] SaltEvent PUB socket URI: 4510 +2020-03-06 09:56:17,489 [salt.utils.event :311 ][DEBUG ][5008] SaltEvent PULL socket URI: 4511 +2020-03-06 09:56:17,489 [salt.utils.event :736 ][DEBUG ][5008] Sending event: tag = environ_setenv; data = {'_stamp': '2020-03-06T17:56:17.489584', 'clear_all': False, 'false_unsets': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'permanent': False} +2020-03-06 09:56:17,489 [salt.transport.ipc:363 ][DEBUG ][5008] Closing IPCMessageClient instance +2020-03-06 09:56:17,489 [salt.state :320 ][INFO ][5008] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 09:56:17,489 [salt.state :2045][INFO ][5008] Completed state [windows_environment.refresh.path] at time 09:56:17.489584 (duration_in_ms=47.332) +2020-03-06 09:56:17,505 [salt.state :1867][INFO ][5008] Running state [chocolatey.bootstrap] at time 09:56:17.505202 +2020-03-06 09:56:17,505 [salt.state :1900][INFO ][5008] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 09:56:20,006 [salt.config :2215][DEBUG ][5008] Missing configuration file: /etc/salt/minion +2020-03-06 09:56:20,006 [salt.config :3612][DEBUG ][5008] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 09:56:20,131 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:56:20,176 [git.cmd :722 ][DEBUG ][5008] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:56:20,645 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 09:56:20,645 [salt.loader :1671][DEBUG ][5008] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 11:56:35,707 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded ddns.update -2020-03-04 11:56:35,707 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded chassis.cmd -2020-03-04 11:56:35,740 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:56:35,755 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:56:35,784 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:56:35,799 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:56:36,034 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded esxi.cmd -2020-03-04 11:56:36,049 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' -2020-03-04 11:56:36,081 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: git version 2.23.0.windows.1 -2020-03-04 11:56:36,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded github.list_users -2020-03-04 11:56:36,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded glanceng.image_get -2020-03-04 11:56:36,081 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded elasticsearch.exists -2020-03-04 11:56:36,081 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: grafana_version, ret: _|- -2020-03-04 11:56:36,096 [salt.loaded.int.module.config:398 ][DEBUG ][5396] key: grafana_version, ret: _|- -2020-03-04 11:56:36,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded icinga2.generate_ticket -2020-03-04 11:56:36,096 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded ifttt.trigger_event -2020-03-04 11:56:36,114 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:56:36,128 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:56:36,144 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:56:36,159 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:56:36,191 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:56:36,206 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:56:36,227 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 11:56:36,227 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.domain_get -2020-03-04 11:56:36,233 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.endpoint_get -2020-03-04 11:56:36,233 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.group_get -2020-03-04 11:56:36,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.project_get -2020-03-04 11:56:36,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.role_get -2020-03-04 11:56:36,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.role_grant -2020-03-04 11:56:36,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.service_get -2020-03-04 11:56:36,237 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded keystoneng.user_get -2020-03-04 11:56:36,253 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 11:56:36,253 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 11:56:36,285 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 11:56:36,285 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 11:56:36,316 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:56:36,331 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:56:36,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:56:36,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:56:36,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:56:36,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded lxd.version -2020-03-04 11:56:36,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded memcached.status -2020-03-04 11:56:36,331 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mongodb.db_exists -2020-03-04 11:56:36,344 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mongodb.user_exists -2020-03-04 11:56:36,344 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:56:36,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:56:36,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:56:36,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded mssql.version -2020-03-04 11:56:36,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_networks -2020-03-04 11:56:36,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_subnets -2020-03-04 11:56:36,346 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_subnets -2020-03-04 11:56:36,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded neutronng.list_subnets -2020-03-04 11:56:36,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded npm.list -2020-03-04 11:56:36,362 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nxos.cmd -2020-03-04 11:56:36,378 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 11:56:36,378 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 11:56:36,398 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded panos.commit -2020-03-04 11:56:36,398 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pdbedit.create -2020-03-04 11:56:36,407 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded pecl.list -2020-03-04 11:56:36,409 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 11:56:36,424 [salt.loader :1577][DEBUG ][5396] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 09:56:21,348 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt.secret_key, ret: _|- +2020-03-06 09:56:21,348 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: ifttt:secret_key, ret: _|- +2020-03-06 09:56:22,380 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet.api_key, ret: _|- +2020-03-06 09:56:22,403 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: pushbullet:api_key, ret: _|- +2020-03-06 09:56:22,739 [salt.loader :1671][DEBUG ][5008] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.cluster_exists -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.user_exists -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.create_extension -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.group_create -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.datadir_init -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.language_create -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.privileges_grant -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.schema_exists -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.tablespace_exists -2020-03-04 11:56:36,424 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded postgres.user_exists -2020-03-04 11:56:36,456 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 11:56:36,456 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded selinux.getenforce -2020-03-04 11:56:36,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded splunk.list_users -2020-03-04 11:56:36,472 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded splunk_search.get -2020-03-04 11:56:36,487 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 11:56:36,487 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded tomcat.status -2020-03-04 11:56:36,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded vagrant.version -2020-03-04 11:56:36,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded victorops.create_event -2020-03-04 11:56:36,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded win_iis.create_site -2020-03-04 11:56:36,503 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded win_servermanager.install -2020-03-04 11:56:36,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded win_snmp.get_agent_settings -2020-03-04 11:56:36,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded wordpress.show_plugin -2020-03-04 11:56:36,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded x509.get_pem_entry -2020-03-04 11:56:36,518 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded xmpp.send_msg -2020-03-04 11:56:36,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded zk_concurrency.lock -2020-03-04 11:56:36,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded zonecfg.create -2020-03-04 11:56:36,534 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded zookeeper.create -2020-03-04 11:56:36,549 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 11:56:36,549 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' -2020-03-04 11:56:36,708 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: INFO: Could not find files for the given pattern(s). -2020-03-04 11:56:36,708 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][5396] retcode: 1 -2020-03-04 11:56:36,708 [salt.state :915 ][DEBUG ][5396] Last command return code: 1 -2020-03-04 11:56:36,708 [salt.utils.http :234 ][DEBUG ][5396] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method -2020-03-04 11:56:36,708 [salt.utils.http :235 ][DEBUG ][5396] Using backend: tornado -2020-03-04 11:56:37,471 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' -2020-03-04 11:56:43,862 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: Preparing: C:\1382f426da2b955936cb4310\header.bmp... -Preparing: C:\1382f426da2b955936cb4310\SplashScreen.bmp... -Preparing: C:\1382f426da2b955936cb4310\watermark.bmp... -Preparing: C:\1382f426da2b955936cb4310\DisplayIcon.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Print.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate1.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate2.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate3.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate4.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate5.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate6.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate7.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Rotate8.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Save.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\Setup.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\stop.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\SysReqMet.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\SysReqNotMet.ico... -Preparing: C:\1382f426da2b955936cb4310\Graphics\warn.ico... -Preparing: C:\1382f426da2b955936cb4310\1033\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1042\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1041\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1037\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1025\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1035\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1030\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1044\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1043\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1040\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1029\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1031\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1036\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1032\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1038\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\2052\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1028\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\3076\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1055\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1053\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\3082\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\2070\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1046\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1049\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\1045\LocalizedData.xml... -Preparing: C:\1382f426da2b955936cb4310\Client\Parameterinfo.xml... -Preparing: C:\1382f426da2b955936cb4310\Extended\Parameterinfo.xml... -Preparing: C:\1382f426da2b955936cb4310\ParameterInfo.xml... -Preparing: C:\1382f426da2b955936cb4310\Strings.xml... -Preparing: C:\1382f426da2b955936cb4310\UiInfo.xml... -Preparing: C:\1382f426da2b955936cb4310\Client\UiInfo.xml... -Preparing: C:\1382f426da2b955936cb4310\Extended\UiInfo.xml... -Preparing: C:\1382f426da2b955936cb4310\SetupUi.xsd... -Preparing: C:\1382f426da2b955936cb4310\DHtmlHeader.html... -Preparing: C:\1382f426da2b955936cb4310\1033\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1025\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1028\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1030\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1031\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1029\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1036\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1035\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1032\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1038\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1037\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1040\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1041\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1042\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1044\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1043\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1046\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1045\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1055\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1053\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\2052\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\1049\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\3082\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\2070\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\3076\eula.rtf... -Preparing: C:\1382f426da2b955936cb4310\Setup.exe... -Preparing: C:\1382f426da2b955936cb4310\SetupUtility.exe... -Preparing: C:\1382f426da2b955936cb4310\SetupEngine.dll... -Preparing: C:\1382f426da2b955936cb4310\1025\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1033\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1029\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1030\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1035\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1031\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1036\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1032\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1028\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\2052\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\3076\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1042\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1041\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1037\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1044\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1053\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1055\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1040\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1045\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1046\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1049\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1038\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\2070\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\3082\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\1043\SetupResources.dll... -Preparing: C:\1382f426da2b955936cb4310\SetupUi.dll... -Preparing: C:\1382f426da2b955936cb4310\sqmapi.dll... -2020-03-04 11:56:43,862 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' -2020-03-04 11:56:47,925 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: Getting latest version of the Chocolatey package for download. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 09:56:22,974 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops.api_key, ret: _|- +2020-03-06 09:56:22,974 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: victorops:api_key, ret: _|- +2020-03-06 09:56:29,286 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 09:56:29,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded acme.cert +2020-03-06 09:56:29,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded alternatives.auto +2020-03-06 09:56:29,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded apache.config +2020-03-06 09:56:29,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded apache.a2enconf +2020-03-06 09:56:29,348 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded apache.a2ensite +2020-03-06 09:56:29,364 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 09:56:29,379 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded at.at +2020-03-06 09:56:29,395 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 09:56:29,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 09:56:29,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 09:56:29,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 09:56:29,395 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded disk.tune +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto3_sns.topic_exists +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_apigateway.describe_apis +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_asg.exists +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cfn.exists +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 09:56:29,411 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudtrail.exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_dynamodb.exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_ec2.get_key +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elasticache.exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elb.exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_iam.get_user +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_iam.role_exists +2020-03-06 09:56:29,427 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_iot.policy_exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_kinesis.exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_kms.describe_key +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_lambda.function_exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_asg.exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_rds.exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_route53.get_record +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_s3.get_object_metadata +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_s3_bucket.exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_secgroup.exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_sns.exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_sqs.exists +2020-03-06 09:56:29,443 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded boto_vpc.exists +2020-03-06 09:56:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded bower.list +2020-03-06 09:56:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded chef.client +2020-03-06 09:56:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cimc.get_system_info +2020-03-06 09:56:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cisconso.set_data_value +2020-03-06 09:56:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded cron.list_tab +2020-03-06 09:56:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded ddns.update +2020-03-06 09:56:29,458 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded chassis.cmd +2020-03-06 09:56:29,490 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:56:29,505 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:56:29,520 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:56:29,536 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:56:29,552 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded eselect.exec_action +2020-03-06 09:56:29,770 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded esxi.cmd +2020-03-06 09:56:29,770 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:29,801 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: git version 2.23.0.windows.1 +2020-03-06 09:56:29,801 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded github.list_users +2020-03-06 09:56:29,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded glanceng.image_get +2020-03-06 09:56:29,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded glusterfs.list_volumes +2020-03-06 09:56:29,817 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded elasticsearch.exists +2020-03-06 09:56:29,817 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: grafana_version, ret: _|- +2020-03-06 09:56:29,832 [salt.loaded.int.module.config:483 ][DEBUG ][5008] key: grafana_version, ret: _|- +2020-03-06 09:56:29,832 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded icinga2.generate_ticket +2020-03-06 09:56:29,832 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded ifttt.trigger_event +2020-03-06 09:56:29,848 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:56:29,880 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:56:29,895 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:56:29,911 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:56:29,927 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:56:29,957 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:56:29,957 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded ipset.version +2020-03-06 09:56:29,957 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded iptables.version +2020-03-06 09:56:29,974 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded kapacitor.version +2020-03-06 09:56:29,989 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 09:56:29,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keyboard.get_sys +2020-03-06 09:56:29,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystone.auth +2020-03-06 09:56:29,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.domain_get +2020-03-06 09:56:29,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.endpoint_get +2020-03-06 09:56:29,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.group_get +2020-03-06 09:56:29,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.project_get +2020-03-06 09:56:29,989 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.role_get +2020-03-06 09:56:30,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.role_grant +2020-03-06 09:56:30,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.service_get +2020-03-06 09:56:30,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystoneng.user_get +2020-03-06 09:56:30,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded keystore.list +2020-03-06 09:56:30,005 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded kmod.available +2020-03-06 09:56:30,021 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 09:56:30,021 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded layman.add +2020-03-06 09:56:30,052 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 09:56:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded logadm.list_conf +2020-03-06 09:56:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded logrotate.show_conf +2020-03-06 09:56:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lvs.get_rules +2020-03-06 09:56:30,052 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lvs.get_rules +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded lxd.version +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded makeconf.get_var +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded memcached.status +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded mongodb.db_exists +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded mongodb.user_exists +2020-03-06 09:56:30,067 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded monit.summary +2020-03-06 09:56:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_networks +2020-03-06 09:56:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_subnets +2020-03-06 09:56:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_subnets +2020-03-06 09:56:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded neutronng.list_subnets +2020-03-06 09:56:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nftables.version +2020-03-06 09:56:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded npm.list +2020-03-06 09:56:30,098 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nxos.cmd +2020-03-06 09:56:30,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded openvswitch.bridge_create +2020-03-06 09:56:30,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded openvswitch.port_add +2020-03-06 09:56:30,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded panos.commit +2020-03-06 09:56:30,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pdbedit.create +2020-03-06 09:56:30,114 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded pecl.list +2020-03-06 09:56:30,146 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 09:56:30,146 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded portage_config.get_missing_flags +2020-03-06 09:56:30,146 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.cluster_exists +2020-03-06 09:56:30,146 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.user_exists +2020-03-06 09:56:30,146 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.create_extension +2020-03-06 09:56:30,146 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.group_create +2020-03-06 09:56:30,146 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.datadir_init +2020-03-06 09:56:30,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.language_create +2020-03-06 09:56:30,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.privileges_grant +2020-03-06 09:56:30,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.schema_exists +2020-03-06 09:56:30,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.tablespace_exists +2020-03-06 09:56:30,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded postgres.user_exists +2020-03-06 09:56:30,161 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded quota.report +2020-03-06 09:56:30,177 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded rabbitmq.list_upstreams +2020-03-06 09:56:30,193 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 09:56:30,223 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 09:56:30,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded selinux.getenforce +2020-03-06 09:56:30,255 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 09:56:30,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded snapper.diff +2020-03-06 09:56:30,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded splunk.list_users +2020-03-06 09:56:30,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded splunk_search.get +2020-03-06 09:56:30,286 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 09:56:30,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded tomcat.status +2020-03-06 09:56:30,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded trafficserver.set_config +2020-03-06 09:56:30,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded vagrant.version +2020-03-06 09:56:30,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded victorops.create_event +2020-03-06 09:56:30,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded virt.node_info +2020-03-06 09:56:30,301 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded win_iis.create_site +2020-03-06 09:56:30,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded win_servermanager.install +2020-03-06 09:56:30,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded win_snmp.get_agent_settings +2020-03-06 09:56:30,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded wordpress.show_plugin +2020-03-06 09:56:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded x509.get_pem_entry +2020-03-06 09:56:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded xmpp.send_msg +2020-03-06 09:56:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded zk_concurrency.lock +2020-03-06 09:56:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded zonecfg.create +2020-03-06 09:56:30,333 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded zookeeper.create +2020-03-06 09:56:30,348 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 09:56:30,348 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 09:56:30,504 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 09:56:30,504 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][5008] retcode: 1 +2020-03-06 09:56:30,504 [salt.state :951 ][DEBUG ][5008] Last command return code: 1 +2020-03-06 09:56:30,504 [salt.utils.http :234 ][DEBUG ][5008] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 09:56:30,504 [salt.utils.http :235 ][DEBUG ][5008] Using backend: tornado +2020-03-06 09:56:30,755 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:37,129 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\header.bmp... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\SplashScreen.bmp... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\watermark.bmp... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\DisplayIcon.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Print.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate1.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate2.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate3.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate4.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate5.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate6.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate7.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Rotate8.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Save.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\Setup.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\stop.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\SysReqMet.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\SysReqNotMet.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Graphics\warn.ico... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1033\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1042\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1041\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1037\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1025\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1035\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1030\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1044\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1043\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1040\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1029\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1031\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1036\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1032\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1038\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\2052\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1028\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\3076\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1055\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1053\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\3082\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\2070\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1046\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1049\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1045\LocalizedData.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Client\Parameterinfo.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Extended\Parameterinfo.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\ParameterInfo.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Strings.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\UiInfo.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Client\UiInfo.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Extended\UiInfo.xml... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\SetupUi.xsd... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\DHtmlHeader.html... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1033\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1025\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1028\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1030\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1031\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1029\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1036\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1035\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1032\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1038\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1037\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1040\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1041\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1042\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1044\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1043\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1046\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1045\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1055\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1053\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\2052\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1049\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\3082\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\2070\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\3076\eula.rtf... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\Setup.exe... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\SetupUtility.exe... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\SetupEngine.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1025\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1033\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1029\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1030\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1035\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1031\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1036\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1032\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1028\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\2052\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\3076\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1042\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1041\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1037\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1044\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1053\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1055\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1040\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1045\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1046\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1049\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1038\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\2070\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\3082\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\1043\SetupResources.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\SetupUi.dll... +Preparing: C:\ef4e9026373ea58ae55a3f2f40a9b0e5\sqmapi.dll... +2020-03-06 09:56:37,129 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 09:56:40,442 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Getting latest version of the Chocolatey package for download. Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. Downloading 7-Zip commandline tool prior to extraction. Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... @@ -28309,17 +27408,17 @@ You may need to shut down and restart powershell and/or consoles first prior to using choco. Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder -2020-03-04 11:56:47,925 [salt.state :320 ][INFO ][5396] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} -2020-03-04 11:56:47,925 [salt.state :1997][INFO ][5396] Completed state [chocolatey.bootstrap] at time 11:56:47.925415 (duration_in_ms=22405.93) -2020-03-04 11:56:47,925 [salt.state :1819][INFO ][5396] Running state [notepadplusplus] at time 11:56:47.925415 -2020-03-04 11:56:47,925 [salt.state :1852][INFO ][5396] Executing state chocolatey.installed for [notepadplusplus] -2020-03-04 11:56:47,925 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:56:48,971 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: chocolatey|0.10.15 -2020-03-04 11:56:48,971 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' -2020-03-04 11:56:49,643 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: 0.10.15 -2020-03-04 11:56:49,643 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5396] output: 0.10.15 -2020-03-04 11:56:49,643 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 11:56:57,909 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: Chocolatey v0.10.15 +2020-03-06 09:56:40,442 [salt.state :320 ][INFO ][5008] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 09:56:40,442 [salt.state :2045][INFO ][5008] Completed state [chocolatey.bootstrap] at time 09:56:40.442726 (duration_in_ms=22937.524) +2020-03-06 09:56:40,442 [salt.state :1867][INFO ][5008] Running state [notepadplusplus] at time 09:56:40.442726 +2020-03-06 09:56:40,442 [salt.state :1900][INFO ][5008] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 09:56:40,442 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:41,286 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: chocolatey|0.10.15 +2020-03-06 09:56:41,286 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:41,942 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: 0.10.15 +2020-03-06 09:56:41,942 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5008] output: 0.10.15 +2020-03-06 09:56:41,942 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:50,053 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28340,7 +27439,7 @@ chocolatey-core.extension package files install completed. Performing other inst The install of chocolatey-core.extension was successful. Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' -notepadplusplus.install v7.8.4 [Approved] +notepadplusplus.install v7.8.5 notepadplusplus.install package files install completed. Performing other installation steps. Installing 64-bit notepadplusplus.install... notepadplusplus.install has been installed. @@ -28350,7 +27449,7 @@ Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program fi The install of notepadplusplus.install was successful. Software installed as 'exe', install location is likely default. -notepadplusplus v7.8.4 [Approved] +notepadplusplus v7.8.5 [Approved] notepadplusplus package files install completed. Performing other installation steps. The install of notepadplusplus was successful. Software install location not explicitly set, could be in package or @@ -28358,25 +27457,25 @@ notepadplusplus package files install completed. Performing other installation s Chocolatey installed 3/3 packages. See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 11:56:57,909 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:56:58,831 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: chocolatey|0.10.15 +2020-03-06 09:56:50,053 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:51,272 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 11:56:58,831 [salt.state :320 ][INFO ][5396] Made the following changes: -'notepadplusplus' changed from 'absent' to '['7.8.4']' -'notepadplusplus.install' changed from 'absent' to '['7.8.4']' - -2020-03-04 11:56:58,831 [salt.state :1997][INFO ][5396] Completed state [notepadplusplus] at time 11:56:58.831647 (duration_in_ms=10906.232) -2020-03-04 11:56:58,831 [salt.state :1819][INFO ][5396] Running state [windirstat] at time 11:56:58.831647 -2020-03-04 11:56:58,831 [salt.state :1852][INFO ][5396] Executing state chocolatey.installed for [windirstat] -2020-03-04 11:56:58,831 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:56:59,878 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: chocolatey|0.10.15 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 09:56:51,272 [salt.state :320 ][INFO ][5008] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 09:56:51,272 [salt.state :2045][INFO ][5008] Completed state [notepadplusplus] at time 09:56:51.272876 (duration_in_ms=10830.15) +2020-03-06 09:56:51,272 [salt.state :1867][INFO ][5008] Running state [windirstat] at time 09:56:51.272876 +2020-03-06 09:56:51,272 [salt.state :1900][INFO ][5008] Executing state chocolatey.installed for [windirstat] +2020-03-06 09:56:51,272 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:52,348 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 11:56:59,878 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 11:57:03,332 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: Chocolatey v0.10.15 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 +2020-03-06 09:56:52,348 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:55,770 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28401,23 +27500,23 @@ WinDirStat has been installed. Chocolatey installed 1/1 packages. See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 11:57:03,332 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:57:04,346 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: chocolatey|0.10.15 +2020-03-06 09:56:55,770 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:56:56,708 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 windirstat|1.1.2.20161210 -2020-03-04 11:57:04,346 [salt.state :320 ][INFO ][5396] Made the following changes: +2020-03-06 09:56:56,708 [salt.state :320 ][INFO ][5008] Made the following changes: 'windirstat' changed from 'absent' to '['1.1.2.20161210']' -2020-03-04 11:57:04,346 [salt.state :1997][INFO ][5396] Completed state [windirstat] at time 11:57:04.346615 (duration_in_ms=5514.968) -2020-03-04 11:57:04,346 [salt.state :1819][INFO ][5396] Running state [TelnetClient] at time 11:57:04.346615 -2020-03-04 11:57:04,346 [salt.state :1852][INFO ][5396] Executing state dism.feature_installed for [TelnetClient] -2020-03-04 11:57:04,362 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. -2020-03-04 11:57:04,362 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:57:06,549 [salt.state :889 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:57:06,549 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 11:57:07,956 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: +2020-03-06 09:56:56,708 [salt.state :2045][INFO ][5008] Completed state [windirstat] at time 09:56:56.708151 (duration_in_ms=5435.275) +2020-03-06 09:56:56,708 [salt.state :1867][INFO ][5008] Running state [TelnetClient] at time 09:56:56.708151 +2020-03-06 09:56:56,723 [salt.state :1900][INFO ][5008] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 09:56:56,723 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 09:56:56,723 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:56:59,051 [salt.state :906 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:56:59,051 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 09:57:00,536 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -28840,7 +27939,7 @@ Feature Name : Containers State : Disabled The operation completed successfully. -2020-03-04 11:57:07,956 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5396] output: +2020-03-06 09:57:00,536 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5008] output: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -29263,9 +28362,9 @@ Feature Name : Containers State : Disabled The operation completed successfully. -2020-03-04 11:57:07,956 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' -2020-03-04 11:57:08,987 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 11:57:10,424 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][5396] stdout: +2020-03-06 09:57:00,536 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 09:57:01,489 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 09:57:02,958 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5008] stdout: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -29688,7 +28787,7 @@ Feature Name : Containers State : Disabled The operation completed successfully. -2020-03-04 11:57:10,424 [salt.loaded.int.module.cmdmod:1202][DEBUG ][5396] output: +2020-03-06 09:57:02,958 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5008] output: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -30111,49 +29210,48 @@ Feature Name : Containers State : Disabled The operation completed successfully. -2020-03-04 11:57:10,424 [salt.state :320 ][INFO ][5396] {'stderr': '', 'retcode': 0, 'feature': {'new': 'TelnetClient'}, 'pid': 4596, 'stdout': ''} -2020-03-04 11:57:10,424 [salt.state :1997][INFO ][5396] Completed state [TelnetClient] at time 11:57:10.424894 (duration_in_ms=6078.279) -2020-03-04 11:57:10,424 [salt.state :1819][INFO ][5396] Running state [windows.module.system.reboot] at time 11:57:10.424894 -2020-03-04 11:57:10,440 [salt.state :1852][INFO ][5396] Executing state module.run for [windows.module.system.reboot] -2020-03-04 11:57:10,440 [salt.utils.lazy :107 ][DEBUG ][5396] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 11:57:10,440 [salt.loaded.int.module.cmdmod:397 ][INFO ][5396] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' -2020-03-04 11:57:10,612 [salt.state :889 ][DEBUG ][5396] Last command return code: 0 -2020-03-04 11:57:10,612 [salt.loaded.int.module.win_system:1413][DEBUG ][5396] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired -2020-03-04 11:57:10,612 [salt.loaded.int.module.win_system:1348][DEBUG ][5396] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 11:57:10,612 [salt.loaded.int.module.win_system:1348][DEBUG ][5396] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 11:57:10,612 [salt.loaded.int.module.win_system:1387][DEBUG ][5396] Unable to access key: SOFTWARE\Microsoft\ServerManager -2020-03-04 11:57:10,612 [salt.loaded.int.module.win_system:1273][DEBUG ][5396] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending -2020-03-04 11:57:10,627 [salt.state :320 ][INFO ][5396] {'system.reboot': True} -2020-03-04 11:57:10,627 [salt.state :1997][INFO ][5396] Completed state [windows.module.system.reboot] at time 11:57:10.627915 (duration_in_ms=203.021) -2020-03-04 11:57:10,643 [salt.state :2801][DEBUG ][5396] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1527555290336 does not exist, no need to cleanup -2020-03-04 11:57:10,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded state.check_result -2020-03-04 11:57:10,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded highstate.output -2020-03-04 11:57:10,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,643 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,659 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,674 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,690 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,706 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,721 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,738 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,738 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,738 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 11:57:10,738 [salt.utils.lazy :104 ][DEBUG ][5396] LazyLoaded nested.output -2020-03-04 14:57:15,800 [salt.loader :747 ][DEBUG ][1284] Grains refresh requested. Refreshing grains. -2020-03-04 14:57:15,800 [salt.config :2190][DEBUG ][1284] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 14:57:15,800 [salt.config :2334][DEBUG ][1284] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 14:57:15,800 [salt.config :2190][DEBUG ][1284] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 09:57:02,973 [salt.state :320 ][INFO ][5008] {'feature': {'new': ['TelnetClient']}, 'retcode': 0, 'stdout': '', 'stderr': '', 'pid': 4076} +2020-03-06 09:57:02,973 [salt.state :2045][INFO ][5008] Completed state [TelnetClient] at time 09:57:02.973708 (duration_in_ms=6265.557) +2020-03-06 09:57:02,973 [salt.state :1867][INFO ][5008] Running state [windows.module.system.reboot] at time 09:57:02.973708 +2020-03-06 09:57:02,973 [salt.state :1900][INFO ][5008] Executing state module.run for [windows.module.system.reboot] +2020-03-06 09:57:02,973 [salt.utils.lazy :107 ][DEBUG ][5008] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 09:57:02,991 [salt.loaded.int.module.cmdmod:397 ][INFO ][5008] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 09:57:03,161 [salt.state :906 ][DEBUG ][5008] Last command return code: 0 +2020-03-06 09:57:03,177 [salt.loaded.int.module.win_system:1413][DEBUG ][5008] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 09:57:03,177 [salt.loaded.int.module.win_system:1348][DEBUG ][5008] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 09:57:03,177 [salt.loaded.int.module.win_system:1348][DEBUG ][5008] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 09:57:03,177 [salt.loaded.int.module.win_system:1387][DEBUG ][5008] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 09:57:03,177 [salt.loaded.int.module.win_system:1273][DEBUG ][5008] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 09:57:03,207 [salt.state :320 ][INFO ][5008] {'system.reboot': True} +2020-03-06 09:57:03,207 [salt.state :2045][INFO ][5008] Completed state [windows.module.system.reboot] at time 09:57:03.207852 (duration_in_ms=234.144) +2020-03-06 09:57:03,207 [salt.state :2921][DEBUG ][5008] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2453240483064 does not exist, no need to cleanup +2020-03-06 09:57:03,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded highstate.output +2020-03-06 09:57:03,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,223 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,239 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,255 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,273 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,273 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,286 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,302 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,317 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,332 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,332 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 09:57:03,349 [salt.utils.lazy :104 ][DEBUG ][5008] LazyLoaded nested.output +2020-03-06 12:57:09,036 [salt.loader :770 ][DEBUG ][4496] Grains refresh requested. Refreshing grains. +2020-03-06 12:57:09,052 [salt.config :2111][DEBUG ][4496] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 12:57:09,052 [salt.config :2255][DEBUG ][4496] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 12:57:09,052 [salt.config :2111][DEBUG ][4496] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-windows-10-1909.kitchen.log b/test/results/py3-windows-10-1909.kitchen.log index 8e7bf75..a774010 100644 --- a/test/results/py3-windows-10-1909.kitchen.log +++ b/test/results/py3-windows-10-1909.kitchen.log @@ -1,1030 +1,1101 @@ -I, [2020-03-04T14:46:00.063962 #688] INFO -- py3-windows-10-1909: -----> Cleaning up any prior instances of -I, [2020-03-04T14:46:00.064154 #688] INFO -- py3-windows-10-1909: -----> Destroying ... -I, [2020-03-04T14:46:00.066128 #688] INFO -- py3-windows-10-1909: Finished destroying (0m0.00s). -I, [2020-03-04T14:46:00.067650 #688] INFO -- py3-windows-10-1909: -----> Testing -I, [2020-03-04T14:46:00.067829 #688] INFO -- py3-windows-10-1909: -----> Creating ... -I, [2020-03-04T14:46:06.822417 #688] INFO -- py3-windows-10-1909: Bringing machine 'default' up with 'virtualbox' provider... -I, [2020-03-04T14:46:07.587674 #688] INFO -- py3-windows-10-1909: ==> default: Cloning VM... -I, [2020-03-04T14:46:08.249583 #688] INFO -- py3-windows-10-1909: ==> default: Matching MAC address for NAT networking... -I, [2020-03-04T14:46:08.578154 #688] INFO -- py3-windows-10-1909: ==> default: Checking if box 'StefanScherer/windows_10' version '2020.02.12' is up to date... -I, [2020-03-04T14:46:10.578091 #688] INFO -- py3-windows-10-1909: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1909-8a7d1fa2-b8a5-4cf4-ab41-fac100dd9dee -I, [2020-03-04T14:46:13.988773 #688] INFO -- py3-windows-10-1909: ==> default: Clearing any previously set network interfaces... -I, [2020-03-04T14:46:14.119132 #688] INFO -- py3-windows-10-1909: ==> default: Preparing network interfaces based on configuration... -I, [2020-03-04T14:46:14.119740 #688] INFO -- py3-windows-10-1909: default: Adapter 1: nat -I, [2020-03-04T14:46:14.266009 #688] INFO -- py3-windows-10-1909: ==> default: Forwarding ports... -I, [2020-03-04T14:46:14.387941 #688] INFO -- py3-windows-10-1909: default: 3389 (guest) => 3389 (host) (adapter 1) -I, [2020-03-04T14:46:14.388808 #688] INFO -- py3-windows-10-1909: default: 5985 (guest) => 55985 (host) (adapter 1) -I, [2020-03-04T14:46:14.389859 #688] INFO -- py3-windows-10-1909: default: 5986 (guest) => 55986 (host) (adapter 1) -I, [2020-03-04T14:46:14.390417 #688] INFO -- py3-windows-10-1909: default: 22 (guest) => 2222 (host) (adapter 1) -I, [2020-03-04T14:46:14.786806 #688] INFO -- py3-windows-10-1909: ==> default: Running 'pre-boot' VM customizations... -I, [2020-03-04T14:46:15.666223 #688] INFO -- py3-windows-10-1909: ==> default: Booting VM... -I, [2020-03-04T14:46:21.628940 #688] INFO -- py3-windows-10-1909: ==> default: Waiting for machine to boot. This may take a few minutes... -I, [2020-03-04T14:46:22.713520 #688] INFO -- py3-windows-10-1909: default: WinRM address: 127.0.0.1:55985 -I, [2020-03-04T14:46:22.713883 #688] INFO -- py3-windows-10-1909: default: WinRM username: vagrant -I, [2020-03-04T14:46:22.714426 #688] INFO -- py3-windows-10-1909: default: WinRM execution_time_limit: PT2H -I, [2020-03-04T14:46:22.714957 #688] INFO -- py3-windows-10-1909: default: WinRM transport: negotiate -I, [2020-03-04T14:46:57.824115 #688] INFO -- py3-windows-10-1909: ==> default: Machine booted and ready! -I, [2020-03-04T14:46:57.856079 #688] INFO -- py3-windows-10-1909: ==> default: Checking for guest additions in VM... -I, [2020-03-04T14:46:58.725206 #688] INFO -- py3-windows-10-1909: ==> default: Mounting shared folders... -I, [2020-03-04T14:46:58.728789 #688] INFO -- py3-windows-10-1909: default: /results => /mnt/c/tmp/results -I, [2020-03-04T14:47:08.773440 #688] INFO -- py3-windows-10-1909: ==> default: Machine not provisioned because `--no-provision` is specified. -I, [2020-03-04T14:47:29.452472 #688] INFO -- py3-windows-10-1909: [WinRM] Established -I, [2020-03-04T14:47:29.452620 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:47:29.472540 #688] INFO -- py3-windows-10-1909: Vagrant instance created. -I, [2020-03-04T14:47:29.475222 #688] INFO -- py3-windows-10-1909: Finished creating (1m29.40s). -I, [2020-03-04T14:47:29.475672 #688] INFO -- py3-windows-10-1909: -----> Converging ... -I, [2020-03-04T14:47:29.491475 #688] INFO -- py3-windows-10-1909: Preparing files for transfer -I, [2020-03-04T14:47:29.491792 #688] INFO -- py3-windows-10-1909: Preparing salt-minion -I, [2020-03-04T14:47:29.569136 #688] INFO -- py3-windows-10-1909: Preparing pillars into /srv/pillar -I, [2020-03-04T14:47:29.569391 #688] INFO -- py3-windows-10-1909: pillars-from-files is deprecated in favor of pillars_from_files -I, [2020-03-04T14:47:29.578990 #688] INFO -- py3-windows-10-1909: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula -I, [2020-03-04T14:47:29.931950 #688] INFO -- py3-windows-10-1909: Preparing state_top -I, [2020-03-04T14:47:29.935107 #688] INFO -- py3-windows-10-1909: Preparing scripts into /etc/salt/scripts -I, [2020-03-04T14:47:31.546792 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:47:31.547388 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:47:31.548034 #688] INFO -- py3-windows-10-1909: Directory: C:\ -I, [2020-03-04T14:47:31.548569 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:47:31.549163 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:47:31.550152 #688] INFO -- py3-windows-10-1909: Mode LastWriteTime Length Name -I, [2020-03-04T14:47:31.550843 #688] INFO -- py3-windows-10-1909: ---- ------------- ------ ---- -I, [2020-03-04T14:47:31.551553 #688] INFO -- py3-windows-10-1909: d----- 3/4/2020 11:47 AM temp -I, [2020-03-04T14:47:33.463461 #688] INFO -- py3-windows-10-1909: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe -I, [2020-03-04T14:47:42.927410 #688] INFO -- py3-windows-10-1909: Installing Salt minion -I, [2020-03-04T14:48:43.506245 #688] INFO -- py3-windows-10-1909: Starting the Salt minion service -I, [2020-03-04T14:48:43.506724 #688] INFO -- py3-windows-10-1909: Salt minion successfully installed -I, [2020-03-04T14:48:50.392749 #688] INFO -- py3-windows-10-1909: You asked for latest and you have 2019.2.3 installed, sweet! -I, [2020-03-04T14:48:50.393271 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:50.393797 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:51.250465 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:51.250874 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:51.251360 #688] INFO -- py3-windows-10-1909: Directory: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T14:48:51.251736 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:51.252111 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:51.252657 #688] INFO -- py3-windows-10-1909: Mode LastWriteTime Length Name -I, [2020-03-04T14:48:51.253179 #688] INFO -- py3-windows-10-1909: ---- ------------- ------ ---- -I, [2020-03-04T14:48:51.253717 #688] INFO -- py3-windows-10-1909: d----- 3/4/2020 11:48 AM kitchen -I, [2020-03-04T14:48:51.254157 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:51.254621 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:48:51.265083 #688] INFO -- py3-windows-10-1909: Transferring files to -I, [2020-03-04T14:49:42.774393 #688] INFO -- py3-windows-10-1909: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T14:49:42.774836 #688] INFO -- py3-windows-10-1909: At line:1 char:131 -I, [2020-03-04T14:49:42.775353 #688] INFO -- py3-windows-10-1909: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... -I, [2020-03-04T14:49:42.775745 #688] INFO -- py3-windows-10-1909: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -I, [2020-03-04T14:49:42.776107 #688] INFO -- py3-windows-10-1909: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException -I, [2020-03-04T14:49:42.776497 #688] INFO -- py3-windows-10-1909: + FullyQualifiedErrorId : NativeCommandError -I, [2020-03-04T14:49:42.776907 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:49:42.777217 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:49:42.777538 #688] INFO -- py3-windows-10-1909: Traceback (most recent call last): -I, [2020-03-04T14:49:42.777902 #688] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T14:49:42.778186 #688] INFO -- py3-windows-10-1909: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T14:49:42.778486 #688] INFO -- py3-windows-10-1909: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T14:49:42.778780 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:49:42.779179 #688] INFO -- py3-windows-10-1909: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T14:49:42.779493 #688] INFO -- py3-windows-10-1909: Traceback (most recent call last): -I, [2020-03-04T14:49:42.779864 #688] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T14:49:42.780128 #688] INFO -- py3-windows-10-1909: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T14:49:42.780447 #688] INFO -- py3-windows-10-1909: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T14:49:42.780748 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:50:58.006437 #688] INFO -- py3-windows-10-1909: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W -I, [2020-03-04T14:50:58.006809 #688] INFO -- py3-windows-10-1909: environ[key] = redata.sub(a, value) -I, [2020-03-04T14:50:58.007165 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:50:58.007589 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:50:58.007986 #688] INFO -- py3-windows-10-1909: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P -I, [2020-03-04T14:50:58.008360 #688] INFO -- py3-windows-10-1909: environ[key] = redata.sub(a, value) -I, [2020-03-04T14:50:58.008729 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:50:58.009057 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:58.991930 #688] INFO -- py3-windows-10-1909: local: -I, [2020-03-04T14:51:58.992476 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:58.993005 #688] INFO -- py3-windows-10-1909: ID: windows.state.system.hostname.saltstack1 -I, [2020-03-04T14:51:58.993561 #688] INFO -- py3-windows-10-1909: Function: system.hostname -I, [2020-03-04T14:51:58.994110 #688] INFO -- py3-windows-10-1909: Name: saltstack1 -I, [2020-03-04T14:51:58.994614 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:58.995163 #688] INFO -- py3-windows-10-1909: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot -I, [2020-03-04T14:51:58.995705 #688] INFO -- py3-windows-10-1909: Started: 11:49:11.843482 -I, [2020-03-04T14:51:58.996221 #688] INFO -- py3-windows-10-1909: Duration: 141.001 ms -I, [2020-03-04T14:51:58.996759 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:58.997292 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:58.997865 #688] INFO -- py3-windows-10-1909: hostname: -I, [2020-03-04T14:51:58.998398 #688] INFO -- py3-windows-10-1909: saltstack1 -I, [2020-03-04T14:51:58.998916 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:58.999456 #688] INFO -- py3-windows-10-1909: ID: windows.state.system.computer_desc.description -I, [2020-03-04T14:51:59.000037 #688] INFO -- py3-windows-10-1909: Function: system.computer_desc -I, [2020-03-04T14:51:59.000596 #688] INFO -- py3-windows-10-1909: Name: Saltstack Computer Description -I, [2020-03-04T14:51:59.001092 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.001651 #688] INFO -- py3-windows-10-1909: Comment: Computer description successfully changed to 'Saltstack Computer Description' -I, [2020-03-04T14:51:59.002184 #688] INFO -- py3-windows-10-1909: Started: 11:49:11.984483 -I, [2020-03-04T14:51:59.002766 #688] INFO -- py3-windows-10-1909: Duration: 3375.087 ms -I, [2020-03-04T14:51:59.003404 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.003993 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.004576 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.005154 #688] INFO -- py3-windows-10-1909: Saltstack Computer Description -I, [2020-03-04T14:51:59.005787 #688] INFO -- py3-windows-10-1909: old: -I, [2020-03-04T14:51:59.006412 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.006966 #688] INFO -- py3-windows-10-1909: ID: windows.state.timezone.system.America/New_York -I, [2020-03-04T14:51:59.007410 #688] INFO -- py3-windows-10-1909: Function: timezone.system -I, [2020-03-04T14:51:59.007921 #688] INFO -- py3-windows-10-1909: Name: America/New_York -I, [2020-03-04T14:51:59.008444 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.009515 #688] INFO -- py3-windows-10-1909: Comment: Set timezone America/New_York -I, [2020-03-04T14:51:59.010147 #688] INFO -- py3-windows-10-1909: Started: 11:49:15.437121 -I, [2020-03-04T14:51:59.010820 #688] INFO -- py3-windows-10-1909: Duration: 31.395 ms -I, [2020-03-04T14:51:59.011657 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.012447 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.013115 #688] INFO -- py3-windows-10-1909: timezone: -I, [2020-03-04T14:51:59.013789 #688] INFO -- py3-windows-10-1909: America/New_York -I, [2020-03-04T14:51:59.014380 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.015036 #688] INFO -- py3-windows-10-1909: ID: windows.module.environ.items -I, [2020-03-04T14:51:59.016059 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.017295 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.017942 #688] INFO -- py3-windows-10-1909: Comment: environ.items: Success -I, [2020-03-04T14:51:59.018621 #688] INFO -- py3-windows-10-1909: Started: 11:49:15.484078 -I, [2020-03-04T14:51:59.019309 #688] INFO -- py3-windows-10-1909: Duration: 16.09 ms -I, [2020-03-04T14:51:59.020027 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.020735 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.021348 #688] INFO -- py3-windows-10-1909: environ.items: -I, [2020-03-04T14:51:59.021958 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.022675 #688] INFO -- py3-windows-10-1909: ALLUSERSPROFILE: -I, [2020-03-04T14:51:59.023379 #688] INFO -- py3-windows-10-1909: C:\ProgramData -I, [2020-03-04T14:51:59.023988 #688] INFO -- py3-windows-10-1909: APPDATA: -I, [2020-03-04T14:51:59.024594 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Roaming -I, [2020-03-04T14:51:59.025107 #688] INFO -- py3-windows-10-1909: COMMONPROGRAMFILES: -I, [2020-03-04T14:51:59.025561 #688] INFO -- py3-windows-10-1909: C:\Program Files\Common Files -I, [2020-03-04T14:51:59.026097 #688] INFO -- py3-windows-10-1909: COMMONPROGRAMFILES(X86): -I, [2020-03-04T14:51:59.026587 #688] INFO -- py3-windows-10-1909: C:\Program Files (x86)\Common Files -I, [2020-03-04T14:51:59.027122 #688] INFO -- py3-windows-10-1909: COMMONPROGRAMW6432: -I, [2020-03-04T14:51:59.027732 #688] INFO -- py3-windows-10-1909: C:\Program Files\Common Files -I, [2020-03-04T14:51:59.028285 #688] INFO -- py3-windows-10-1909: COMPUTERNAME: -I, [2020-03-04T14:51:59.028914 #688] INFO -- py3-windows-10-1909: VAGRANT-10 -I, [2020-03-04T14:51:59.029585 #688] INFO -- py3-windows-10-1909: COMSPEC: -I, [2020-03-04T14:51:59.030261 #688] INFO -- py3-windows-10-1909: C:\Windows\system32\cmd.exe -I, [2020-03-04T14:51:59.030956 #688] INFO -- py3-windows-10-1909: DRIVERDATA: -I, [2020-03-04T14:51:59.031524 #688] INFO -- py3-windows-10-1909: C:\Windows\System32\Drivers\DriverData -I, [2020-03-04T14:51:59.032214 #688] INFO -- py3-windows-10-1909: HOMEDRIVE: -I, [2020-03-04T14:51:59.032887 #688] INFO -- py3-windows-10-1909: C: -I, [2020-03-04T14:51:59.033644 #688] INFO -- py3-windows-10-1909: HOMEPATH: -I, [2020-03-04T14:51:59.034232 #688] INFO -- py3-windows-10-1909: \Users\vagrant -I, [2020-03-04T14:51:59.034752 #688] INFO -- py3-windows-10-1909: LOCALAPPDATA: -I, [2020-03-04T14:51:59.035249 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Local -I, [2020-03-04T14:51:59.035830 #688] INFO -- py3-windows-10-1909: LOGONSERVER: -I, [2020-03-04T14:51:59.036368 #688] INFO -- py3-windows-10-1909: \\VAGRANT-10 -I, [2020-03-04T14:51:59.036933 #688] INFO -- py3-windows-10-1909: NUMBER_OF_PROCESSORS: -I, [2020-03-04T14:51:59.037455 #688] INFO -- py3-windows-10-1909: 2 -I, [2020-03-04T14:51:59.038097 #688] INFO -- py3-windows-10-1909: ONEDRIVE: -I, [2020-03-04T14:51:59.038801 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant\OneDrive -I, [2020-03-04T14:51:59.039601 #688] INFO -- py3-windows-10-1909: ONEDRIVECONSUMER: -I, [2020-03-04T14:51:59.040420 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant\OneDrive -I, [2020-03-04T14:51:59.041072 #688] INFO -- py3-windows-10-1909: OS: -I, [2020-03-04T14:51:59.041741 #688] INFO -- py3-windows-10-1909: Windows_NT -I, [2020-03-04T14:51:59.042377 #688] INFO -- py3-windows-10-1909: PATH: -I, [2020-03-04T14:51:59.043079 #688] INFO -- py3-windows-10-1909: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 -I, [2020-03-04T14:51:59.043756 #688] INFO -- py3-windows-10-1909: PATHEXT: -I, [2020-03-04T14:51:59.044435 #688] INFO -- py3-windows-10-1909: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL -I, [2020-03-04T14:51:59.045116 #688] INFO -- py3-windows-10-1909: PROCESSOR_ARCHITECTURE: -I, [2020-03-04T14:51:59.045827 #688] INFO -- py3-windows-10-1909: AMD64 -I, [2020-03-04T14:51:59.046593 #688] INFO -- py3-windows-10-1909: PROCESSOR_IDENTIFIER: -I, [2020-03-04T14:51:59.047505 #688] INFO -- py3-windows-10-1909: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel -I, [2020-03-04T14:51:59.048270 #688] INFO -- py3-windows-10-1909: PROCESSOR_LEVEL: -I, [2020-03-04T14:51:59.048970 #688] INFO -- py3-windows-10-1909: 6 -I, [2020-03-04T14:51:59.049576 #688] INFO -- py3-windows-10-1909: PROCESSOR_REVISION: -I, [2020-03-04T14:51:59.050197 #688] INFO -- py3-windows-10-1909: 8e0c -I, [2020-03-04T14:51:59.050890 #688] INFO -- py3-windows-10-1909: PROGRAMDATA: -I, [2020-03-04T14:51:59.051729 #688] INFO -- py3-windows-10-1909: C:\ProgramData -I, [2020-03-04T14:51:59.052560 #688] INFO -- py3-windows-10-1909: PROGRAMFILES: -I, [2020-03-04T14:51:59.053376 #688] INFO -- py3-windows-10-1909: C:\Program Files -I, [2020-03-04T14:51:59.054228 #688] INFO -- py3-windows-10-1909: PROGRAMFILES(X86): -I, [2020-03-04T14:51:59.054985 #688] INFO -- py3-windows-10-1909: C:\Program Files (x86) -I, [2020-03-04T14:51:59.055658 #688] INFO -- py3-windows-10-1909: PROGRAMW6432: -I, [2020-03-04T14:51:59.056209 #688] INFO -- py3-windows-10-1909: C:\Program Files -I, [2020-03-04T14:51:59.056887 #688] INFO -- py3-windows-10-1909: PROMPT: -I, [2020-03-04T14:51:59.057539 #688] INFO -- py3-windows-10-1909: $P$G -I, [2020-03-04T14:51:59.058276 #688] INFO -- py3-windows-10-1909: PSMODULEPATH: -I, [2020-03-04T14:51:59.059122 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules -I, [2020-03-04T14:51:59.059868 #688] INFO -- py3-windows-10-1909: PUBLIC: -I, [2020-03-04T14:51:59.060638 #688] INFO -- py3-windows-10-1909: C:\Users\Public -I, [2020-03-04T14:51:59.061426 #688] INFO -- py3-windows-10-1909: PYTHON: -I, [2020-03-04T14:51:59.062210 #688] INFO -- py3-windows-10-1909: C:\salt\bin\python.exe -I, [2020-03-04T14:51:59.062972 #688] INFO -- py3-windows-10-1909: SALTDIR: -I, [2020-03-04T14:51:59.063716 #688] INFO -- py3-windows-10-1909: C:\salt -I, [2020-03-04T14:51:59.064524 #688] INFO -- py3-windows-10-1909: SCRIPT: -I, [2020-03-04T14:51:59.065382 #688] INFO -- py3-windows-10-1909: C:\salt\bin\Scripts\salt-call -I, [2020-03-04T14:51:59.066249 #688] INFO -- py3-windows-10-1909: SYSTEMDRIVE: -I, [2020-03-04T14:51:59.067057 #688] INFO -- py3-windows-10-1909: C: -I, [2020-03-04T14:51:59.067901 #688] INFO -- py3-windows-10-1909: SYSTEMROOT: -I, [2020-03-04T14:51:59.068622 #688] INFO -- py3-windows-10-1909: C:\Windows -I, [2020-03-04T14:51:59.069392 #688] INFO -- py3-windows-10-1909: TEMP: -I, [2020-03-04T14:51:59.069958 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T14:51:59.070544 #688] INFO -- py3-windows-10-1909: TMP: -I, [2020-03-04T14:51:59.071078 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T14:51:59.071610 #688] INFO -- py3-windows-10-1909: USERDOMAIN: -I, [2020-03-04T14:51:59.072196 #688] INFO -- py3-windows-10-1909: VAGRANT-10 -I, [2020-03-04T14:51:59.072826 #688] INFO -- py3-windows-10-1909: USERDOMAIN_ROAMINGPROFILE: -I, [2020-03-04T14:51:59.073423 #688] INFO -- py3-windows-10-1909: VAGRANT-10 -I, [2020-03-04T14:51:59.073932 #688] INFO -- py3-windows-10-1909: USERNAME: -I, [2020-03-04T14:51:59.074499 #688] INFO -- py3-windows-10-1909: vagrant -I, [2020-03-04T14:51:59.075205 #688] INFO -- py3-windows-10-1909: USERPROFILE: -I, [2020-03-04T14:51:59.075790 #688] INFO -- py3-windows-10-1909: C:\Users\vagrant -I, [2020-03-04T14:51:59.076430 #688] INFO -- py3-windows-10-1909: WINDIR: -I, [2020-03-04T14:51:59.076964 #688] INFO -- py3-windows-10-1909: C:\Windows -I, [2020-03-04T14:51:59.077579 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.078172 #688] INFO -- py3-windows-10-1909: ID: windows.module.user.current -I, [2020-03-04T14:51:59.078764 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.079313 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.079807 #688] INFO -- py3-windows-10-1909: Comment: user.current: VAGRANT-10\vagrant -I, [2020-03-04T14:51:59.080344 #688] INFO -- py3-windows-10-1909: Started: 11:49:15.500168 -I, [2020-03-04T14:51:59.080906 #688] INFO -- py3-windows-10-1909: Duration: 62.03 ms -I, [2020-03-04T14:51:59.081480 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.082017 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.082701 #688] INFO -- py3-windows-10-1909: user.current: -I, [2020-03-04T14:51:59.083229 #688] INFO -- py3-windows-10-1909: VAGRANT-10\vagrant -I, [2020-03-04T14:51:59.083779 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.084328 #688] INFO -- py3-windows-10-1909: ID: windows.module.status.uptime -I, [2020-03-04T14:51:59.084948 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.085453 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.086065 #688] INFO -- py3-windows-10-1909: Comment: status.uptime: 0:02:49.640585 -I, [2020-03-04T14:51:59.086587 #688] INFO -- py3-windows-10-1909: Started: 11:49:15.562198 -I, [2020-03-04T14:51:59.087210 #688] INFO -- py3-windows-10-1909: Duration: 78.387 ms -I, [2020-03-04T14:51:59.087695 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.088219 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.088725 #688] INFO -- py3-windows-10-1909: status.uptime: -I, [2020-03-04T14:51:59.089256 #688] INFO -- py3-windows-10-1909: 0:02:49.640585 -I, [2020-03-04T14:51:59.089723 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.090241 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection -I, [2020-03-04T14:51:59.090791 #688] INFO -- py3-windows-10-1909: Function: cmd.run -I, [2020-03-04T14:51:59.091327 #688] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers -I, [2020-03-04T14:51:59.091813 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.092364 #688] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:51:59.092888 #688] INFO -- py3-windows-10-1909: Started: 11:49:15.671538 -I, [2020-03-04T14:51:59.093343 #688] INFO -- py3-windows-10-1909: Duration: 2985.848 ms -I, [2020-03-04T14:51:59.093849 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.094330 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.094830 #688] INFO -- py3-windows-10-1909: pid: -I, [2020-03-04T14:51:59.095408 #688] INFO -- py3-windows-10-1909: 1088 -I, [2020-03-04T14:51:59.095931 #688] INFO -- py3-windows-10-1909: retcode: -I, [2020-03-04T14:51:59.096545 #688] INFO -- py3-windows-10-1909: 0 -I, [2020-03-04T14:51:59.097075 #688] INFO -- py3-windows-10-1909: stderr: -I, [2020-03-04T14:51:59.097605 #688] INFO -- py3-windows-10-1909: stdout: -I, [2020-03-04T14:51:59.098095 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.098689 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet -I, [2020-03-04T14:51:59.099204 #688] INFO -- py3-windows-10-1909: Function: cmd.run -I, [2020-03-04T14:51:59.099744 #688] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers -I, [2020-03-04T14:51:59.100284 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.100886 #688] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:51:59.101471 #688] INFO -- py3-windows-10-1909: Started: 11:49:18.671337 -I, [2020-03-04T14:51:59.102049 #688] INFO -- py3-windows-10-1909: Duration: 2281.907 ms -I, [2020-03-04T14:51:59.102672 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.103359 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.103893 #688] INFO -- py3-windows-10-1909: pid: -I, [2020-03-04T14:51:59.104411 #688] INFO -- py3-windows-10-1909: 3700 -I, [2020-03-04T14:51:59.104968 #688] INFO -- py3-windows-10-1909: retcode: -I, [2020-03-04T14:51:59.105606 #688] INFO -- py3-windows-10-1909: 0 -I, [2020-03-04T14:51:59.106112 #688] INFO -- py3-windows-10-1909: stderr: -I, [2020-03-04T14:51:59.106696 #688] INFO -- py3-windows-10-1909: stdout: -I, [2020-03-04T14:51:59.107198 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.107839 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic -I, [2020-03-04T14:51:59.108384 #688] INFO -- py3-windows-10-1909: Function: cmd.run -I, [2020-03-04T14:51:59.108992 #688] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers -I, [2020-03-04T14:51:59.109550 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.110058 #688] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:51:59.110610 #688] INFO -- py3-windows-10-1909: Started: 11:49:20.953244 -I, [2020-03-04T14:51:59.111206 #688] INFO -- py3-windows-10-1909: Duration: 2296.386 ms -I, [2020-03-04T14:51:59.111797 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.112402 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.112963 #688] INFO -- py3-windows-10-1909: pid: -I, [2020-03-04T14:51:59.113493 #688] INFO -- py3-windows-10-1909: 6124 -I, [2020-03-04T14:51:59.113972 #688] INFO -- py3-windows-10-1909: retcode: -I, [2020-03-04T14:51:59.114548 #688] INFO -- py3-windows-10-1909: 0 -I, [2020-03-04T14:51:59.115193 #688] INFO -- py3-windows-10-1909: stderr: -I, [2020-03-04T14:51:59.115698 #688] INFO -- py3-windows-10-1909: stdout: -I, [2020-03-04T14:51:59.116303 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.116886 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo -I, [2020-03-04T14:51:59.117425 #688] INFO -- py3-windows-10-1909: Function: cmd.run -I, [2020-03-04T14:51:59.117985 #688] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers -I, [2020-03-04T14:51:59.118578 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.119102 #688] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:51:59.119670 #688] INFO -- py3-windows-10-1909: Started: 11:49:23.249630 -I, [2020-03-04T14:51:59.120246 #688] INFO -- py3-windows-10-1909: Duration: 2047.143 ms -I, [2020-03-04T14:51:59.120707 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.121368 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.121949 #688] INFO -- py3-windows-10-1909: pid: -I, [2020-03-04T14:51:59.122641 #688] INFO -- py3-windows-10-1909: 5760 -I, [2020-03-04T14:51:59.123242 #688] INFO -- py3-windows-10-1909: retcode: -I, [2020-03-04T14:51:59.123993 #688] INFO -- py3-windows-10-1909: 0 -I, [2020-03-04T14:51:59.124649 #688] INFO -- py3-windows-10-1909: stderr: -I, [2020-03-04T14:51:59.125227 #688] INFO -- py3-windows-10-1909: stdout: -I, [2020-03-04T14:51:59.125802 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.126609 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal -I, [2020-03-04T14:51:59.127408 #688] INFO -- py3-windows-10-1909: Function: cmd.run -I, [2020-03-04T14:51:59.128201 #688] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers -I, [2020-03-04T14:51:59.128949 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.129616 #688] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run -I, [2020-03-04T14:51:59.130297 #688] INFO -- py3-windows-10-1909: Started: 11:49:25.296773 -I, [2020-03-04T14:51:59.130948 #688] INFO -- py3-windows-10-1909: Duration: 2296.811 ms -I, [2020-03-04T14:51:59.131559 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.138842 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.139592 #688] INFO -- py3-windows-10-1909: pid: -I, [2020-03-04T14:51:59.140361 #688] INFO -- py3-windows-10-1909: 6356 -I, [2020-03-04T14:51:59.141125 #688] INFO -- py3-windows-10-1909: retcode: -I, [2020-03-04T14:51:59.141798 #688] INFO -- py3-windows-10-1909: 0 -I, [2020-03-04T14:51:59.142397 #688] INFO -- py3-windows-10-1909: stderr: -I, [2020-03-04T14:51:59.142971 #688] INFO -- py3-windows-10-1909: stdout: -I, [2020-03-04T14:51:59.143480 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.143990 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 -I, [2020-03-04T14:51:59.144497 #688] INFO -- py3-windows-10-1909: Function: reg.present -I, [2020-03-04T14:51:59.145026 #688] INFO -- py3-windows-10-1909: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:51:59.145523 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.146024 #688] INFO -- py3-windows-10-1909: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:51:59.146537 #688] INFO -- py3-windows-10-1909: Started: 11:49:27.608902 -I, [2020-03-04T14:51:59.146997 #688] INFO -- py3-windows-10-1909: Duration: 14359.459 ms -I, [2020-03-04T14:51:59.147491 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.147960 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.148370 #688] INFO -- py3-windows-10-1909: reg: -I, [2020-03-04T14:51:59.148864 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.149362 #688] INFO -- py3-windows-10-1909: Added: -I, [2020-03-04T14:51:59.149875 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.150345 #688] INFO -- py3-windows-10-1909: Entry: -I, [2020-03-04T14:51:59.150844 #688] INFO -- py3-windows-10-1909: SystemDefaultTlsVersions -I, [2020-03-04T14:51:59.151434 #688] INFO -- py3-windows-10-1909: Inheritance: -I, [2020-03-04T14:51:59.152115 #688] INFO -- py3-windows-10-1909: True -I, [2020-03-04T14:51:59.152794 #688] INFO -- py3-windows-10-1909: Key: -I, [2020-03-04T14:51:59.153461 #688] INFO -- py3-windows-10-1909: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:51:59.154147 #688] INFO -- py3-windows-10-1909: Owner: -I, [2020-03-04T14:51:59.154843 #688] INFO -- py3-windows-10-1909: None -I, [2020-03-04T14:51:59.155534 #688] INFO -- py3-windows-10-1909: Perms: -I, [2020-03-04T14:51:59.156120 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.156624 #688] INFO -- py3-windows-10-1909: Deny: -I, [2020-03-04T14:51:59.157125 #688] INFO -- py3-windows-10-1909: None -I, [2020-03-04T14:51:59.157641 #688] INFO -- py3-windows-10-1909: Grant: -I, [2020-03-04T14:51:59.158109 #688] INFO -- py3-windows-10-1909: None -I, [2020-03-04T14:51:59.158705 #688] INFO -- py3-windows-10-1909: Value: -I, [2020-03-04T14:51:59.159226 #688] INFO -- py3-windows-10-1909: 1 -I, [2020-03-04T14:51:59.160912 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.161596 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -I, [2020-03-04T14:51:59.162110 #688] INFO -- py3-windows-10-1909: Function: reg.present -I, [2020-03-04T14:51:59.162745 #688] INFO -- py3-windows-10-1909: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:51:59.163332 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.163953 #688] INFO -- py3-windows-10-1909: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:51:59.164612 #688] INFO -- py3-windows-10-1909: Started: 11:49:41.968361 -I, [2020-03-04T14:51:59.165243 #688] INFO -- py3-windows-10-1909: Duration: 281.349 ms -I, [2020-03-04T14:51:59.165813 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.166434 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.167027 #688] INFO -- py3-windows-10-1909: reg: -I, [2020-03-04T14:51:59.167644 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.168248 #688] INFO -- py3-windows-10-1909: Added: -I, [2020-03-04T14:51:59.168828 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.169463 #688] INFO -- py3-windows-10-1909: Entry: -I, [2020-03-04T14:51:59.170152 #688] INFO -- py3-windows-10-1909: SystemDefaultTlsVersions -I, [2020-03-04T14:51:59.170850 #688] INFO -- py3-windows-10-1909: Inheritance: -I, [2020-03-04T14:51:59.171668 #688] INFO -- py3-windows-10-1909: True -I, [2020-03-04T14:51:59.172494 #688] INFO -- py3-windows-10-1909: Key: -I, [2020-03-04T14:51:59.173212 #688] INFO -- py3-windows-10-1909: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T14:51:59.174017 #688] INFO -- py3-windows-10-1909: Owner: -I, [2020-03-04T14:51:59.174678 #688] INFO -- py3-windows-10-1909: None -I, [2020-03-04T14:51:59.175371 #688] INFO -- py3-windows-10-1909: Perms: -I, [2020-03-04T14:51:59.176102 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.176894 #688] INFO -- py3-windows-10-1909: Deny: -I, [2020-03-04T14:51:59.177904 #688] INFO -- py3-windows-10-1909: None -I, [2020-03-04T14:51:59.178712 #688] INFO -- py3-windows-10-1909: Grant: -I, [2020-03-04T14:51:59.179469 #688] INFO -- py3-windows-10-1909: None -I, [2020-03-04T14:51:59.180327 #688] INFO -- py3-windows-10-1909: Value: -I, [2020-03-04T14:51:59.181143 #688] INFO -- py3-windows-10-1909: 1 -I, [2020-03-04T14:51:59.181911 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.182646 #688] INFO -- py3-windows-10-1909: ID: manually.update_git_repo-ng -I, [2020-03-04T14:51:59.183424 #688] INFO -- py3-windows-10-1909: Function: archive.extracted -I, [2020-03-04T14:51:59.184033 #688] INFO -- py3-windows-10-1909: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -I, [2020-03-04T14:51:59.184722 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.185571 #688] INFO -- py3-windows-10-1909: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs -I, [2020-03-04T14:51:59.186249 #688] INFO -- py3-windows-10-1909: Started: 11:49:42.249710 -I, [2020-03-04T14:51:59.186876 #688] INFO -- py3-windows-10-1909: Duration: 1062.816 ms -I, [2020-03-04T14:51:59.187529 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.188183 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.188795 #688] INFO -- py3-windows-10-1909: directories_created: -I, [2020-03-04T14:51:59.189445 #688] INFO -- py3-windows-10-1909: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -I, [2020-03-04T14:51:59.189973 #688] INFO -- py3-windows-10-1909: extracted_files: -I, [2020-03-04T14:51:59.190510 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ -I, [2020-03-04T14:51:59.191174 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.gitignore -I, [2020-03-04T14:51:59.191688 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis.yml -I, [2020-03-04T14:51:59.192217 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis/ -I, [2020-03-04T14:51:59.192752 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis/requirements.txt -I, [2020-03-04T14:51:59.193326 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis/tests.py -I, [2020-03-04T14:51:59.193901 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/7zip.sls -I, [2020-03-04T14:51:59.194430 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/LICENSE -I, [2020-03-04T14:51:59.194890 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/README.md -I, [2020-03-04T14:51:59.195329 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/_config.yml -I, [2020-03-04T14:51:59.195892 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/activeperl_x64.sls -I, [2020-03-04T14:51:59.196389 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/activeperl_x86.sls -I, [2020-03-04T14:51:59.196901 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobeair.sls -I, [2020-03-04T14:51:59.197390 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobereader-dc-classic.sls -I, [2020-03-04T14:51:59.197910 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobereader-xi.sls -I, [2020-03-04T14:51:59.198478 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobereader.sls -I, [2020-03-04T14:51:59.199031 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobeshockwaveplayer.sls -I, [2020-03-04T14:51:59.199549 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adv-ip-scanner.sls -I, [2020-03-04T14:51:59.200070 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adv-port-scanner.sls -I, [2020-03-04T14:51:59.200548 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/advancedlogging.sls -I, [2020-03-04T14:51:59.201120 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/anydesk-msi.sls -I, [2020-03-04T14:51:59.201610 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/anydesk.sls -I, [2020-03-04T14:51:59.202102 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/applicationrequestrouting.sls -I, [2020-03-04T14:51:59.202576 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/aspnet-mvc1.sls -I, [2020-03-04T14:51:59.203041 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/atom.sls -I, [2020-03-04T14:51:59.203633 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/audacity.sls -I, [2020-03-04T14:51:59.204180 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/ -I, [2020-03-04T14:51:59.204706 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/init.sls -I, [2020-03-04T14:51:59.205251 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/install.cmd -I, [2020-03-04T14:51:59.205767 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/install.ps1 -I, [2020-03-04T14:51:59.206314 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/remove.cmd -I, [2020-03-04T14:51:59.206810 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/autohotkey.sls -I, [2020-03-04T14:51:59.207289 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/autoit.sls -I, [2020-03-04T14:51:59.207776 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/autopsy.sls -I, [2020-03-04T14:51:59.208263 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/awscli.sls -I, [2020-03-04T14:51:59.208752 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/azuredatastudio.sls -I, [2020-03-04T14:51:59.209245 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bandizip.sls -I, [2020-03-04T14:51:59.209757 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/belarc-advisor.sls -I, [2020-03-04T14:51:59.210252 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bginfo4x.sls -I, [2020-03-04T14:51:59.210742 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bitnami-nginxstack.sls -I, [2020-03-04T14:51:59.211225 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bitvise.sls -I, [2020-03-04T14:51:59.211713 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/blender.sls -I, [2020-03-04T14:51:59.212191 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bootracer.sls -I, [2020-03-04T14:51:59.212687 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bulk_extractor.sls -I, [2020-03-04T14:51:59.213149 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bulkrenameutility.sls -I, [2020-03-04T14:51:59.213644 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ccleaner-slim.sls -I, [2020-03-04T14:51:59.214131 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ccleaner.sls -I, [2020-03-04T14:51:59.214616 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cdburnerxp.sls -I, [2020-03-04T14:51:59.215105 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cdroller.sls -I, [2020-03-04T14:51:59.215641 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/check-mk-agent-msi.sls -I, [2020-03-04T14:51:59.216236 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/check-mk-agent.sls -I, [2020-03-04T14:51:59.216881 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/ -I, [2020-03-04T14:51:59.217684 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/init.sls -I, [2020-03-04T14:51:59.218370 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/install.cmd -I, [2020-03-04T14:51:59.219068 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/uninstall.cmd -I, [2020-03-04T14:51:59.219767 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 -I, [2020-03-04T14:51:59.220437 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chrome-rdp.sls -I, [2020-03-04T14:51:59.221078 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chrome.sls -I, [2020-03-04T14:51:59.221759 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/clamav.sls -I, [2020-03-04T14:51:59.222547 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/clamwin.sls -I, [2020-03-04T14:51:59.223193 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/classicshell.sls -I, [2020-03-04T14:51:59.223850 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/clink.sls -I, [2020-03-04T14:51:59.224526 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/conemu.sls -I, [2020-03-04T14:51:59.225180 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cpu-z.sls -I, [2020-03-04T14:51:59.225762 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/curl.sls -I, [2020-03-04T14:51:59.226357 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cyberduck-cli.sls -I, [2020-03-04T14:51:59.226929 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cyberduck-msi.sls -I, [2020-03-04T14:51:59.227580 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cyberduck.sls -I, [2020-03-04T14:51:59.228172 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/defraggler.sls -I, [2020-03-04T14:51:59.228798 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/docs/ -I, [2020-03-04T14:51:59.229466 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/docs/ReadMe.md -I, [2020-03-04T14:51:59.230108 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/dotnet.sls -I, [2020-03-04T14:51:59.230731 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/dropbox.sls -I, [2020-03-04T14:51:59.231381 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/duplicati.sls -I, [2020-03-04T14:51:59.231915 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/dvdstyler.sls -I, [2020-03-04T14:51:59.232507 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/echo-desktop.sls -I, [2020-03-04T14:51:59.233026 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/eea.sls -I, [2020-03-04T14:51:59.233584 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/emet.sls -I, [2020-03-04T14:51:59.234209 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/emsisoft-anti-malware.sls -I, [2020-03-04T14:51:59.234719 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/eraser.sls -I, [2020-03-04T14:51:59.235226 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/erlang/ -I, [2020-03-04T14:51:59.235782 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/erlang/init.sls -I, [2020-03-04T14:51:59.236312 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/erlang/install.cmd -I, [2020-03-04T14:51:59.236813 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/evernote.sls -I, [2020-03-04T14:51:59.237401 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/fiddler.sls -I, [2020-03-04T14:51:59.237920 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/ -I, [2020-03-04T14:51:59.238414 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/init.sls -I, [2020-03-04T14:51:59.239001 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/install.cmd -I, [2020-03-04T14:51:59.239481 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/install.ps1 -I, [2020-03-04T14:51:59.239981 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/remove.cmd -I, [2020-03-04T14:51:59.240548 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filehippo-app-manager.sls -I, [2020-03-04T14:51:59.241062 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filezilla.sls -I, [2020-03-04T14:51:59.241682 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox-esr_x64.sls -I, [2020-03-04T14:51:59.242293 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox-esr_x86.sls -I, [2020-03-04T14:51:59.242980 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox_x64.sls -I, [2020-03-04T14:51:59.243506 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox_x86.sls -I, [2020-03-04T14:51:59.244051 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/ -I, [2020-03-04T14:51:59.244545 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/init.sls -I, [2020-03-04T14:51:59.245067 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/install.cmd -I, [2020-03-04T14:51:59.245615 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/install.ps1 -I, [2020-03-04T14:51:59.246136 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/remove.cmd -I, [2020-03-04T14:51:59.246734 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gedit.sls -I, [2020-03-04T14:51:59.247255 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gimp.sls -I, [2020-03-04T14:51:59.247854 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/git-extensions.sls -I, [2020-03-04T14:51:59.248499 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/git.sls -I, [2020-03-04T14:51:59.249102 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls -I, [2020-03-04T14:51:59.249668 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gnucash.sls -I, [2020-03-04T14:51:59.250158 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/golang.sls -I, [2020-03-04T14:51:59.250681 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/goodsync.sls -I, [2020-03-04T14:51:59.251152 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gow.sls -I, [2020-03-04T14:51:59.251711 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win-light.sls -I, [2020-03-04T14:51:59.252305 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win-vanilla.sls -I, [2020-03-04T14:51:59.252859 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win/ -I, [2020-03-04T14:51:59.253503 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win/init.sls -I, [2020-03-04T14:51:59.254100 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win/silent.ini -I, [2020-03-04T14:51:59.254684 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/graylog-collector-sidecar.sls -I, [2020-03-04T14:51:59.255174 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/grepwin.sls -I, [2020-03-04T14:51:59.255677 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gvim.sls -I, [2020-03-04T14:51:59.256264 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/handbrake.sls -I, [2020-03-04T14:51:59.256841 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/ -I, [2020-03-04T14:51:59.257408 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp -I, [2020-03-04T14:51:59.257957 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/init.sls -I, [2020-03-04T14:51:59.258576 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/install.cmd -I, [2020-03-04T14:51:59.259216 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/install.ps1 -I, [2020-03-04T14:51:59.259891 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/remove.cmd -I, [2020-03-04T14:51:59.260562 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/hipchat.sls -I, [2020-03-04T14:51:59.261174 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/hostsfileeditor.sls -I, [2020-03-04T14:51:59.261686 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/hwinfo.sls -I, [2020-03-04T14:51:59.262183 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ice.sls -I, [2020-03-04T14:51:59.262687 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/icecast.sls -I, [2020-03-04T14:51:59.263291 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/icloud.sls -I, [2020-03-04T14:51:59.263804 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/iismediaservices.sls -I, [2020-03-04T14:51:59.264396 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/influx-capacitor.sls -I, [2020-03-04T14:51:59.264909 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/inkscape.sls -I, [2020-03-04T14:51:59.265432 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/intellij-community.sls -I, [2020-03-04T14:51:59.266003 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/intellij-ultimate.sls -I, [2020-03-04T14:51:59.266515 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/internet-evidence-finder.sls -I, [2020-03-04T14:51:59.266991 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/irfanview-plugins.sls -I, [2020-03-04T14:51:59.267471 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/irfanview.sls -I, [2020-03-04T14:51:59.267956 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/isapirewrite-lite.sls -I, [2020-03-04T14:51:59.268427 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/itunes.sls -I, [2020-03-04T14:51:59.268887 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jdk8.sls -I, [2020-03-04T14:51:59.269439 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jre.sls -I, [2020-03-04T14:51:59.269926 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jre8.sls -I, [2020-03-04T14:51:59.270432 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jungledisk-server-management.sls -I, [2020-03-04T14:51:59.270930 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jungledisk-server.sls -I, [2020-03-04T14:51:59.271598 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jungledisk-workgroup.sls -I, [2020-03-04T14:51:59.272309 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/kdiff3.sls -I, [2020-03-04T14:51:59.273008 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/keepass-2x.sls -I, [2020-03-04T14:51:59.273713 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/keepass.sls -I, [2020-03-04T14:51:59.274391 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/lastpass.sls -I, [2020-03-04T14:51:59.274928 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/lazarus.sls -I, [2020-03-04T14:51:59.275542 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/libreoffice.sls -I, [2020-03-04T14:51:59.276067 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/logparser.sls -I, [2020-03-04T14:51:59.276558 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/maas360bootanalyzer.sls -I, [2020-03-04T14:51:59.277056 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/malwarebytes.sls -I, [2020-03-04T14:51:59.277540 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mariadb.sls -I, [2020-03-04T14:51:59.278039 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mercurial.sls -I, [2020-03-04T14:51:59.278537 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/messageanalyzer.sls -I, [2020-03-04T14:51:59.279036 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/ -I, [2020-03-04T14:51:59.279552 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp -I, [2020-03-04T14:51:59.280062 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/init.sls -I, [2020-03-04T14:51:59.280561 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/install.cmd -I, [2020-03-04T14:51:59.281070 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/install.ps1 -I, [2020-03-04T14:51:59.281624 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/remove.cmd -I, [2020-03-04T14:51:59.282203 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/microsoft-build-tools.sls -I, [2020-03-04T14:51:59.282765 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mikogo.sls -I, [2020-03-04T14:51:59.283318 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/miktex-basic.sls -I, [2020-03-04T14:51:59.284013 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mongodb.sls -I, [2020-03-04T14:51:59.284701 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-mbsa.sls -I, [2020-03-04T14:51:59.285468 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls -I, [2020-03-04T14:51:59.286241 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls -I, [2020-03-04T14:51:59.286980 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls -I, [2020-03-04T14:51:59.287669 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls -I, [2020-03-04T14:51:59.288410 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls -I, [2020-03-04T14:51:59.289150 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls -I, [2020-03-04T14:51:59.289909 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls -I, [2020-03-04T14:51:59.290621 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls -I, [2020-03-04T14:51:59.291351 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls -I, [2020-03-04T14:51:59.300538 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls -I, [2020-03-04T14:51:59.301344 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls -I, [2020-03-04T14:51:59.301976 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls -I, [2020-03-04T14:51:59.302513 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls -I, [2020-03-04T14:51:59.303061 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls -I, [2020-03-04T14:51:59.303566 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls -I, [2020-03-04T14:51:59.304130 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls -I, [2020-03-04T14:51:59.304709 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls -I, [2020-03-04T14:51:59.305196 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls -I, [2020-03-04T14:51:59.305738 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls -I, [2020-03-04T14:51:59.306214 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls -I, [2020-03-04T14:51:59.306803 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls -I, [2020-03-04T14:51:59.307334 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls -I, [2020-03-04T14:51:59.307856 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls -I, [2020-03-04T14:51:59.308507 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls -I, [2020-03-04T14:51:59.309210 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls -I, [2020-03-04T14:51:59.309846 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mucommander.sls -I, [2020-03-04T14:51:59.310324 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mysql-essential.sls -I, [2020-03-04T14:51:59.310829 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mysql-installer-community.sls -I, [2020-03-04T14:51:59.311291 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mysql-workbench.sls -I, [2020-03-04T14:51:59.311764 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/never10.sls -I, [2020-03-04T14:51:59.312217 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/newrelic-infra.sls -I, [2020-03-04T14:51:59.312690 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nextcloud-client.sls -I, [2020-03-04T14:51:59.313124 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nmap.sls -I, [2020-03-04T14:51:59.313525 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/node.js-lts.sls -I, [2020-03-04T14:51:59.313989 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/node.js.sls -I, [2020-03-04T14:51:59.314463 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nomacs.sls -I, [2020-03-04T14:51:59.314917 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/npp.sls -I, [2020-03-04T14:51:59.315405 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nsclient.sls -I, [2020-03-04T14:51:59.315889 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nsis.sls -I, [2020-03-04T14:51:59.316389 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ntp.sls -I, [2020-03-04T14:51:59.316866 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nunit-console.sls -I, [2020-03-04T14:51:59.317354 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nxlog.sls -I, [2020-03-04T14:51:59.317927 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/octopus-tentacle.sls -I, [2020-03-04T14:51:59.318387 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/openlp.sls -I, [2020-03-04T14:51:59.318860 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/openoffice.sls -I, [2020-03-04T14:51:59.319356 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/openvpn.sls -I, [2020-03-04T14:51:59.319947 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/osquery.sls -I, [2020-03-04T14:51:59.320421 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ossec-agent.sls -I, [2020-03-04T14:51:59.320985 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/owncloud.sls -I, [2020-03-04T14:51:59.321468 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/ -I, [2020-03-04T14:51:59.321979 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/init.sls -I, [2020-03-04T14:51:59.322523 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/install.cmd -I, [2020-03-04T14:51:59.323117 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/install.ps1 -I, [2020-03-04T14:51:59.323549 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/remove.cmd -I, [2020-03-04T14:51:59.324122 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pandoc.sls -I, [2020-03-04T14:51:59.324582 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/parallels-client-15.sls -I, [2020-03-04T14:51:59.325034 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pass4win.sls -I, [2020-03-04T14:51:59.325500 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/passware-kit-agent.sls -I, [2020-03-04T14:51:59.326026 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/passware-kit-forensic.sls -I, [2020-03-04T14:51:59.326472 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/patchmypc-free.sls -I, [2020-03-04T14:51:59.326984 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pdf24creator.sls -I, [2020-03-04T14:51:59.327439 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pdfcreator.sls -I, [2020-03-04T14:51:59.327937 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/peazip.sls -I, [2020-03-04T14:51:59.328354 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pgadmin4.sls -I, [2020-03-04T14:51:59.328832 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pgina.sls -I, [2020-03-04T14:51:59.329254 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pidgin.sls -I, [2020-03-04T14:51:59.329730 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/postgresql.sls -I, [2020-03-04T14:51:59.330157 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/powerbi-desktop.sls -I, [2020-03-04T14:51:59.330613 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/powershell-core.sls -I, [2020-03-04T14:51:59.331022 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls -I, [2020-03-04T14:51:59.331562 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/putty.sls -I, [2020-03-04T14:51:59.332023 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/ -I, [2020-03-04T14:51:59.332499 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/init.sls -I, [2020-03-04T14:51:59.333050 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/silent.config -I, [2020-03-04T14:51:59.333560 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python2_x64.sls -I, [2020-03-04T14:51:59.334035 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python2_x86.sls -I, [2020-03-04T14:51:59.334549 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python3_x64.sls -I, [2020-03-04T14:51:59.335138 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python3_x86.sls -I, [2020-03-04T14:51:59.335776 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/qemu.sls -I, [2020-03-04T14:51:59.336269 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/queueexplorerpro.sls -I, [2020-03-04T14:51:59.336776 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/quicktime.sls -I, [2020-03-04T14:51:59.337185 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rabbitmq.sls -I, [2020-03-04T14:51:59.337788 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls -I, [2020-03-04T14:51:59.338280 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rakudo-star_x64.sls -I, [2020-03-04T14:51:59.338898 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rasclient.sls -I, [2020-03-04T14:51:59.339548 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rdcman.sls -I, [2020-03-04T14:51:59.340192 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rocketchat.sls -I, [2020-03-04T14:51:59.340860 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rubyinstaller_x64.sls -I, [2020-03-04T14:51:59.341536 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rubyinstaller_x86.sls -I, [2020-03-04T14:51:59.342097 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/salt-minion-py2.sls -I, [2020-03-04T14:51:59.342633 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/salt-minion-py3.sls -I, [2020-03-04T14:51:59.343060 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sandboxie.sls -I, [2020-03-04T14:51:59.343551 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/scaleout.sls -I, [2020-03-04T14:51:59.343981 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/secunia.psi.sls -I, [2020-03-04T14:51:59.344477 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sensu.sls -I, [2020-03-04T14:51:59.344895 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sharpdevelop.sls -I, [2020-03-04T14:51:59.345351 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/skitch.sls -I, [2020-03-04T14:51:59.345755 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/skype-msi.sls -I, [2020-03-04T14:51:59.346216 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/skype.sls -I, [2020-03-04T14:51:59.346641 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/slack-machine-msi.sls -I, [2020-03-04T14:51:59.347063 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/slack-user-msi.sls -I, [2020-03-04T14:51:59.347524 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/slack.sls -I, [2020-03-04T14:51:59.348041 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/smartmontools.sls -I, [2020-03-04T14:51:59.348496 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/snmptools.sls -I, [2020-03-04T14:51:59.348946 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/soapui.sls -I, [2020-03-04T14:51:59.349409 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/software-informer.sls -I, [2020-03-04T14:51:59.349853 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sourcetree.sls -I, [2020-03-04T14:51:59.350431 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/spybot-anti-beacon.sls -I, [2020-03-04T14:51:59.350914 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/spybot.sls -I, [2020-03-04T14:51:59.351399 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sscserv-free.sls -I, [2020-03-04T14:51:59.351817 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stayawake/ -I, [2020-03-04T14:51:59.352255 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stayawake/init.sls -I, [2020-03-04T14:51:59.352707 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stayawake/install.cmd -I, [2020-03-04T14:51:59.353124 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/steam.sls -I, [2020-03-04T14:51:59.353530 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stellarium.sls -I, [2020-03-04T14:51:59.353956 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/strawberryperl_x64.sls -I, [2020-03-04T14:51:59.354438 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/strawberryperl_x86.sls -I, [2020-03-04T14:51:59.354837 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stunnel.sls -I, [2020-03-04T14:51:59.355266 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/subinacl.sls -I, [2020-03-04T14:51:59.355810 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sumatrapdf.sls -I, [2020-03-04T14:51:59.356328 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/svn.sls -I, [2020-03-04T14:51:59.356763 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/teamviewer.sls -I, [2020-03-04T14:51:59.357215 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/teamviewer_host.sls -I, [2020-03-04T14:51:59.357662 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/teracopy.sls -I, [2020-03-04T14:51:59.358130 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texmaker.sls -I, [2020-03-04T14:51:59.358591 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texniccenter.sls -I, [2020-03-04T14:51:59.359129 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texstudio.sls -I, [2020-03-04T14:51:59.359603 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texworks.sls -I, [2020-03-04T14:51:59.360070 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/thunderbird.sls -I, [2020-03-04T14:51:59.360534 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tightvnc.sls -I, [2020-03-04T14:51:59.360991 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/todotxt.net.sls -I, [2020-03-04T14:51:59.361411 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/todour.sls -I, [2020-03-04T14:51:59.361961 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-bzr.sls -I, [2020-03-04T14:51:59.362419 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-git.sls -I, [2020-03-04T14:51:59.362890 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-hg.sls -I, [2020-03-04T14:51:59.363313 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-svn.sls -I, [2020-03-04T14:51:59.363781 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/truecrypt.sls -I, [2020-03-04T14:51:59.364222 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ultradefrag.sls -I, [2020-03-04T14:51:59.364663 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/urlrewrite.sls -I, [2020-03-04T14:51:59.365095 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/usbdlm.sls -I, [2020-03-04T14:51:59.365644 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vagrant.sls -I, [2020-03-04T14:51:59.474523 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vcforpython27.sls -I, [2020-03-04T14:51:59.475135 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vcxsrv.sls -I, [2020-03-04T14:51:59.475725 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/verysleepy.sls -I, [2020-03-04T14:51:59.476167 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/veyon.sls -I, [2020-03-04T14:51:59.476761 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/virtualbox.sls -I, [2020-03-04T14:51:59.477297 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/viscosity.sls -I, [2020-03-04T14:51:59.477832 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vivaldi.sls -I, [2020-03-04T14:51:59.478394 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vlc.sls -I, [2020-03-04T14:51:59.479009 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vs-community.sls -I, [2020-03-04T14:51:59.479679 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vs_remotetools_2017.sls -I, [2020-03-04T14:51:59.480278 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vscode.sls -I, [2020-03-04T14:51:59.480900 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vsee.sls -I, [2020-03-04T14:51:59.481513 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wamp-server-3.sls -I, [2020-03-04T14:51:59.482110 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wamp-stack.sls -I, [2020-03-04T14:51:59.482723 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/webdeploy.sls -I, [2020-03-04T14:51:59.483336 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/webplatforminstaller.sls -I, [2020-03-04T14:51:59.483939 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/win-app-manager.sls -I, [2020-03-04T14:51:59.484573 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/windirstat.sls -I, [2020-03-04T14:51:59.485101 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winhttpcertcfg.sls -I, [2020-03-04T14:51:59.485531 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/ -I, [2020-03-04T14:51:59.486021 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/init.sls -I, [2020-03-04T14:51:59.486573 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/install.cmd -I, [2020-03-04T14:51:59.487108 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/install.ps1 -I, [2020-03-04T14:51:59.487551 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/remove.cmd -I, [2020-03-04T14:51:59.488032 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winmerge.sls -I, [2020-03-04T14:51:59.488467 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winmtr.sls -I, [2020-03-04T14:51:59.488940 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winpcap.sls -I, [2020-03-04T14:51:59.489377 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winrar.sls -I, [2020-03-04T14:51:59.489849 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winscp.sls -I, [2020-03-04T14:51:59.490294 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wireshark.sls -I, [2020-03-04T14:51:59.490833 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/ -I, [2020-03-04T14:51:59.491431 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/README.md -I, [2020-03-04T14:51:59.492075 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/answer.txt -I, [2020-03-04T14:51:59.492726 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/init.sls -I, [2020-03-04T14:51:59.493437 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/majsetup.reg -I, [2020-03-04T14:51:59.494192 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wscc.sls -I, [2020-03-04T14:51:59.494882 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wufuc.sls -I, [2020-03-04T14:51:59.495578 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/xampp.sls -I, [2020-03-04T14:51:59.496293 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/xming.sls -I, [2020-03-04T14:51:59.496956 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/yubikey-manager.sls -I, [2020-03-04T14:51:59.497575 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/yubikey-personalization-tool.sls -I, [2020-03-04T14:51:59.498190 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zabbix-agent.sls -I, [2020-03-04T14:51:59.498769 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/ -I, [2020-03-04T14:51:59.499375 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/init.sls -I, [2020-03-04T14:51:59.500035 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic -I, [2020-03-04T14:51:59.500677 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic -I, [2020-03-04T14:51:59.501367 #688] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zoom.sls -I, [2020-03-04T14:51:59.502030 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.502653 #688] INFO -- py3-windows-10-1909: ID: rename-extract -I, [2020-03-04T14:51:59.503287 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.503892 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.504473 #688] INFO -- py3-windows-10-1909: Comment: file.rename: True -I, [2020-03-04T14:51:59.505078 #688] INFO -- py3-windows-10-1909: Started: 11:49:43.312526 -I, [2020-03-04T14:51:59.505657 #688] INFO -- py3-windows-10-1909: Duration: 0.0 ms -I, [2020-03-04T14:51:59.506275 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.506898 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.507530 #688] INFO -- py3-windows-10-1909: file.rename: -I, [2020-03-04T14:51:59.508208 #688] INFO -- py3-windows-10-1909: True -I, [2020-03-04T14:51:59.508874 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.509518 #688] INFO -- py3-windows-10-1909: ID: pkg.refresh_db -I, [2020-03-04T14:51:59.520597 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.521440 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.522150 #688] INFO -- py3-windows-10-1909: Comment: check_cmd determined the state succeeded -I, [2020-03-04T14:51:59.522825 #688] INFO -- py3-windows-10-1909: Started: 11:49:43.312526 -I, [2020-03-04T14:51:59.523489 #688] INFO -- py3-windows-10-1909: Duration: 11062.381 ms -I, [2020-03-04T14:51:59.524101 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.524778 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.525454 #688] INFO -- py3-windows-10-1909: pkg.refresh_db: -I, [2020-03-04T14:51:59.526181 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.526954 #688] INFO -- py3-windows-10-1909: failed: -I, [2020-03-04T14:51:59.527718 #688] INFO -- py3-windows-10-1909: 0 -I, [2020-03-04T14:51:59.528482 #688] INFO -- py3-windows-10-1909: success: -I, [2020-03-04T14:51:59.529193 #688] INFO -- py3-windows-10-1909: 298 -I, [2020-03-04T14:51:59.529930 #688] INFO -- py3-windows-10-1909: total: -I, [2020-03-04T14:51:59.530662 #688] INFO -- py3-windows-10-1909: 298 -I, [2020-03-04T14:51:59.531306 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.531952 #688] INFO -- py3-windows-10-1909: ID: kdiff3 -I, [2020-03-04T14:51:59.532492 #688] INFO -- py3-windows-10-1909: Function: pkg.installed -I, [2020-03-04T14:51:59.533071 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.533643 #688] INFO -- py3-windows-10-1909: Comment: The following packages were installed/updated: kdiff3 -I, [2020-03-04T14:51:59.534233 #688] INFO -- py3-windows-10-1909: Started: 11:49:54.390529 -I, [2020-03-04T14:51:59.534788 #688] INFO -- py3-windows-10-1909: Duration: 21921.56 ms -I, [2020-03-04T14:51:59.535440 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.536118 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.536767 #688] INFO -- py3-windows-10-1909: kdiff3: -I, [2020-03-04T14:51:59.537444 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.538097 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.538769 #688] INFO -- py3-windows-10-1909: Not Found -I, [2020-03-04T14:51:59.539332 #688] INFO -- py3-windows-10-1909: old: -I, [2020-03-04T14:51:59.539980 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.540606 #688] INFO -- py3-windows-10-1909: ID: git -I, [2020-03-04T14:51:59.541308 #688] INFO -- py3-windows-10-1909: Function: pkg.installed -I, [2020-03-04T14:51:59.542017 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.542769 #688] INFO -- py3-windows-10-1909: Comment: The following packages were installed/updated: git -I, [2020-03-04T14:51:59.543524 #688] INFO -- py3-windows-10-1909: Started: 11:50:16.327669 -I, [2020-03-04T14:51:59.544288 #688] INFO -- py3-windows-10-1909: Duration: 29156.227 ms -I, [2020-03-04T14:51:59.545051 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.545799 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.546539 #688] INFO -- py3-windows-10-1909: git: -I, [2020-03-04T14:51:59.547255 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.548008 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.548822 #688] INFO -- py3-windows-10-1909: 2.23.0.windows.1 -I, [2020-03-04T14:51:59.549601 #688] INFO -- py3-windows-10-1909: old: -I, [2020-03-04T14:51:59.550272 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.550842 #688] INFO -- py3-windows-10-1909: ID: 7zip -I, [2020-03-04T14:51:59.551321 #688] INFO -- py3-windows-10-1909: Function: pkg.installed -I, [2020-03-04T14:51:59.551855 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.552374 #688] INFO -- py3-windows-10-1909: Comment: The following packages were installed/updated: 7zip=18.06.00.0 -I, [2020-03-04T14:51:59.552920 #688] INFO -- py3-windows-10-1909: Started: 11:50:45.531147 -I, [2020-03-04T14:51:59.553423 #688] INFO -- py3-windows-10-1909: Duration: 11906.661 ms -I, [2020-03-04T14:51:59.553857 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.554281 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.554867 #688] INFO -- py3-windows-10-1909: 7zip: -I, [2020-03-04T14:51:59.555383 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.555816 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.556273 #688] INFO -- py3-windows-10-1909: 18.06.00.0 -I, [2020-03-04T14:51:59.556687 #688] INFO -- py3-windows-10-1909: old: -I, [2020-03-04T14:51:59.557093 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.557532 #688] INFO -- py3-windows-10-1909: ID: windows_environment.refresh.path -I, [2020-03-04T14:51:59.557985 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.558388 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.558915 #688] INFO -- py3-windows-10-1909: Comment: windows_environment.refresh: Success -I, [2020-03-04T14:51:59.559412 #688] INFO -- py3-windows-10-1909: Started: 11:50:57.452939 -I, [2020-03-04T14:51:59.559827 #688] INFO -- py3-windows-10-1909: Duration: 31.49 ms -I, [2020-03-04T14:51:59.560270 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.560670 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.561189 #688] INFO -- py3-windows-10-1909: windows_environment.refresh: -I, [2020-03-04T14:51:59.561763 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.562345 #688] INFO -- py3-windows-10-1909: PATH: -I, [2020-03-04T14:51:59.564034 #688] INFO -- py3-windows-10-1909: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd -I, [2020-03-04T14:51:59.564579 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.565066 #688] INFO -- py3-windows-10-1909: ID: chocolatey.bootstrap -I, [2020-03-04T14:51:59.565663 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.566255 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.566852 #688] INFO -- py3-windows-10-1909: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T14:51:59.567314 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.567773 #688] INFO -- py3-windows-10-1909: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T14:51:59.568158 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.568609 #688] INFO -- py3-windows-10-1909: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T14:51:59.568973 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.569412 #688] INFO -- py3-windows-10-1909: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T14:51:59.569799 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.570211 #688] INFO -- py3-windows-10-1909: Installing chocolatey on this machine -I, [2020-03-04T14:51:59.570687 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.571143 #688] INFO -- py3-windows-10-1909: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T14:51:59.571593 #688] INFO -- py3-windows-10-1909: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T14:51:59.572021 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.572586 #688] INFO -- py3-windows-10-1909: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T14:51:59.573118 #688] INFO -- py3-windows-10-1909: before you can use choco. -I, [2020-03-04T14:51:59.573600 #688] INFO -- py3-windows-10-1909: Restricting write permissions to Administrators -I, [2020-03-04T14:51:59.574045 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.574543 #688] INFO -- py3-windows-10-1909: We are setting up the Chocolatey package repository. -I, [2020-03-04T14:51:59.575118 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.575769 #688] INFO -- py3-windows-10-1909: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T14:51:59.576364 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.576945 #688] INFO -- py3-windows-10-1909: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T14:51:59.577390 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.577891 #688] INFO -- py3-windows-10-1909: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T14:51:59.578476 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.579106 #688] INFO -- py3-windows-10-1909: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T14:51:59.579660 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.580221 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.580811 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.581648 #688] INFO -- py3-windows-10-1909: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T14:51:59.582320 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.582930 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.583476 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.584129 #688] INFO -- py3-windows-10-1909: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T14:51:59.584652 #688] INFO -- py3-windows-10-1909: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T14:51:59.585224 #688] INFO -- py3-windows-10-1909: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T14:51:59.585890 #688] INFO -- py3-windows-10-1909: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T14:51:59.586516 #688] INFO -- py3-windows-10-1909: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T14:51:59.587201 #688] INFO -- py3-windows-10-1909: Attempting to locate it from bootstrapper. -I, [2020-03-04T14:51:59.587799 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.588456 #688] INFO -- py3-windows-10-1909: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T14:51:59.589008 #688] INFO -- py3-windows-10-1909: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T14:51:59.589479 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.590000 #688] INFO -- py3-windows-10-1909: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T14:51:59.590594 #688] INFO -- py3-windows-10-1909: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T14:51:59.591061 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.591656 #688] INFO -- py3-windows-10-1909: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T14:51:59.592138 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.592708 #688] INFO -- py3-windows-10-1909: Run choco /? for a list of functions. -I, [2020-03-04T14:51:59.593170 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.593690 #688] INFO -- py3-windows-10-1909: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T14:51:59.594154 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.594703 #688] INFO -- py3-windows-10-1909: first prior to using choco. -I, [2020-03-04T14:51:59.595143 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.595625 #688] INFO -- py3-windows-10-1909: Ensuring chocolatey commands are on the path -I, [2020-03-04T14:51:59.596175 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.596704 #688] INFO -- py3-windows-10-1909: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T14:51:59.597234 #688] INFO -- py3-windows-10-1909: Started: 11:50:57.484429 -I, [2020-03-04T14:51:59.597635 #688] INFO -- py3-windows-10-1909: Duration: 25890.413 ms -I, [2020-03-04T14:51:59.598094 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.598524 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.598974 #688] INFO -- py3-windows-10-1909: chocolatey.bootstrap: -I, [2020-03-04T14:51:59.599564 #688] INFO -- py3-windows-10-1909: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T14:51:59.600103 #688] INFO -- py3-windows-10-1909: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T14:51:59.600594 #688] INFO -- py3-windows-10-1909: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T14:51:59.601134 #688] INFO -- py3-windows-10-1909: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T14:51:59.601757 #688] INFO -- py3-windows-10-1909: Installing chocolatey on this machine -I, [2020-03-04T14:51:59.602450 #688] INFO -- py3-windows-10-1909: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T14:51:59.603134 #688] INFO -- py3-windows-10-1909: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T14:51:59.603829 #688] INFO -- py3-windows-10-1909: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T14:51:59.604439 #688] INFO -- py3-windows-10-1909: before you can use choco. -I, [2020-03-04T14:51:59.605155 #688] INFO -- py3-windows-10-1909: Restricting write permissions to Administrators -I, [2020-03-04T14:51:59.605744 #688] INFO -- py3-windows-10-1909: We are setting up the Chocolatey package repository. -I, [2020-03-04T14:51:59.606209 #688] INFO -- py3-windows-10-1909: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T14:51:59.606710 #688] INFO -- py3-windows-10-1909: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T14:51:59.607216 #688] INFO -- py3-windows-10-1909: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T14:51:59.607766 #688] INFO -- py3-windows-10-1909: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T14:51:59.608189 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.608673 #688] INFO -- py3-windows-10-1909: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T14:51:59.609113 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.609596 #688] INFO -- py3-windows-10-1909: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T14:51:59.610231 #688] INFO -- py3-windows-10-1909: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T14:51:59.610922 #688] INFO -- py3-windows-10-1909: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T14:51:59.611591 #688] INFO -- py3-windows-10-1909: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T14:51:59.612256 #688] INFO -- py3-windows-10-1909: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T14:51:59.612908 #688] INFO -- py3-windows-10-1909: Attempting to locate it from bootstrapper. -I, [2020-03-04T14:51:59.613550 #688] INFO -- py3-windows-10-1909: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T14:51:59.614166 #688] INFO -- py3-windows-10-1909: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T14:51:59.614688 #688] INFO -- py3-windows-10-1909: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T14:51:59.615138 #688] INFO -- py3-windows-10-1909: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T14:51:59.615611 #688] INFO -- py3-windows-10-1909: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T14:51:59.616053 #688] INFO -- py3-windows-10-1909: Run choco /? for a list of functions. -I, [2020-03-04T14:51:59.616534 #688] INFO -- py3-windows-10-1909: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T14:51:59.616994 #688] INFO -- py3-windows-10-1909: first prior to using choco. -I, [2020-03-04T14:51:59.617470 #688] INFO -- py3-windows-10-1909: Ensuring chocolatey commands are on the path -I, [2020-03-04T14:51:59.617934 #688] INFO -- py3-windows-10-1909: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T14:51:59.618411 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.618859 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.chocolatey.notepadplusplus -I, [2020-03-04T14:51:59.619336 #688] INFO -- py3-windows-10-1909: Function: chocolatey.installed -I, [2020-03-04T14:51:59.619766 #688] INFO -- py3-windows-10-1909: Name: notepadplusplus -I, [2020-03-04T14:51:59.620224 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.620622 #688] INFO -- py3-windows-10-1909: Comment: -I, [2020-03-04T14:51:59.621044 #688] INFO -- py3-windows-10-1909: Started: 11:51:23.374842 -I, [2020-03-04T14:51:59.621513 #688] INFO -- py3-windows-10-1909: Duration: 14015.269 ms -I, [2020-03-04T14:51:59.621944 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.622405 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.622853 #688] INFO -- py3-windows-10-1909: notepadplusplus: -I, [2020-03-04T14:51:59.623328 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.623907 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.624532 #688] INFO -- py3-windows-10-1909: - 7.8.4 -I, [2020-03-04T14:51:59.625156 #688] INFO -- py3-windows-10-1909: old: -I, [2020-03-04T14:51:59.625835 #688] INFO -- py3-windows-10-1909: notepadplusplus.install: -I, [2020-03-04T14:51:59.626487 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.627091 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.627727 #688] INFO -- py3-windows-10-1909: - 7.8.4 -I, [2020-03-04T14:51:59.628360 #688] INFO -- py3-windows-10-1909: old: -I, [2020-03-04T14:51:59.628974 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.629639 #688] INFO -- py3-windows-10-1909: ID: windows.system.packages.chocolatey.windirstat -I, [2020-03-04T14:51:59.630447 #688] INFO -- py3-windows-10-1909: Function: chocolatey.installed -I, [2020-03-04T14:51:59.631161 #688] INFO -- py3-windows-10-1909: Name: windirstat -I, [2020-03-04T14:51:59.631675 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.632147 #688] INFO -- py3-windows-10-1909: Comment: -I, [2020-03-04T14:51:59.632594 #688] INFO -- py3-windows-10-1909: Started: 11:51:37.390111 -I, [2020-03-04T14:51:59.633064 #688] INFO -- py3-windows-10-1909: Duration: 11719.63 ms -I, [2020-03-04T14:51:59.633612 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.634188 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.634711 #688] INFO -- py3-windows-10-1909: windirstat: -I, [2020-03-04T14:51:59.635181 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.635625 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.636058 #688] INFO -- py3-windows-10-1909: - 1.1.2.20161210 -I, [2020-03-04T14:51:59.636488 #688] INFO -- py3-windows-10-1909: old: -I, [2020-03-04T14:51:59.636951 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.637401 #688] INFO -- py3-windows-10-1909: ID: windows.system.desktop.optional_features.installed.TelnetClient -I, [2020-03-04T14:51:59.637878 #688] INFO -- py3-windows-10-1909: Function: dism.feature_installed -I, [2020-03-04T14:51:59.638306 #688] INFO -- py3-windows-10-1909: Name: TelnetClient -I, [2020-03-04T14:51:59.638853 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.639321 #688] INFO -- py3-windows-10-1909: Comment: Installed TelnetClient -I, [2020-03-04T14:51:59.639791 #688] INFO -- py3-windows-10-1909: Started: 11:51:49.109741 -I, [2020-03-04T14:51:59.640224 #688] INFO -- py3-windows-10-1909: Duration: 9078.133 ms -I, [2020-03-04T14:51:59.640719 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.641318 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.641977 #688] INFO -- py3-windows-10-1909: feature: -I, [2020-03-04T14:51:59.642564 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.643254 #688] INFO -- py3-windows-10-1909: new: -I, [2020-03-04T14:51:59.643963 #688] INFO -- py3-windows-10-1909: TelnetClient -I, [2020-03-04T14:51:59.644519 #688] INFO -- py3-windows-10-1909: pid: -I, [2020-03-04T14:51:59.645080 #688] INFO -- py3-windows-10-1909: 5072 -I, [2020-03-04T14:51:59.645628 #688] INFO -- py3-windows-10-1909: retcode: -I, [2020-03-04T14:51:59.646111 #688] INFO -- py3-windows-10-1909: 0 -I, [2020-03-04T14:51:59.646680 #688] INFO -- py3-windows-10-1909: stderr: -I, [2020-03-04T14:51:59.647286 #688] INFO -- py3-windows-10-1909: stdout: -I, [2020-03-04T14:51:59.647907 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.648545 #688] INFO -- py3-windows-10-1909: ID: windows.module.system.reboot -I, [2020-03-04T14:51:59.649212 #688] INFO -- py3-windows-10-1909: Function: module.run -I, [2020-03-04T14:51:59.649753 #688] INFO -- py3-windows-10-1909: Result: True -I, [2020-03-04T14:51:59.650200 #688] INFO -- py3-windows-10-1909: Comment: system.reboot: True -I, [2020-03-04T14:51:59.650678 #688] INFO -- py3-windows-10-1909: Started: 11:51:58.187874 -I, [2020-03-04T14:51:59.651114 #688] INFO -- py3-windows-10-1909: Duration: 315.878 ms -I, [2020-03-04T14:51:59.651598 #688] INFO -- py3-windows-10-1909: Changes: -I, [2020-03-04T14:51:59.652075 #688] INFO -- py3-windows-10-1909: ---------- -I, [2020-03-04T14:51:59.652696 #688] INFO -- py3-windows-10-1909: system.reboot: -I, [2020-03-04T14:51:59.653222 #688] INFO -- py3-windows-10-1909: True -I, [2020-03-04T14:51:59.653628 #688] INFO -- py3-windows-10-1909: -I, [2020-03-04T14:51:59.654031 #688] INFO -- py3-windows-10-1909: Summary for local -I, [2020-03-04T14:51:59.654572 #688] INFO -- py3-windows-10-1909: ------------- -I, [2020-03-04T14:51:59.655000 #688] INFO -- py3-windows-10-1909: Succeeded: 25 (changed=25) -I, [2020-03-04T14:51:59.655458 #688] INFO -- py3-windows-10-1909: Failed: 0 -I, [2020-03-04T14:51:59.655853 #688] INFO -- py3-windows-10-1909: ------------- -I, [2020-03-04T14:51:59.656294 #688] INFO -- py3-windows-10-1909: Total states run: 25 -I, [2020-03-04T14:51:59.664984 #688] INFO -- py3-windows-10-1909: Total run time: 166.413 s -I, [2020-03-04T14:51:59.688392 #688] INFO -- py3-windows-10-1909: Downloading files from -I, [2020-03-04T14:51:59.873895 #688] INFO -- py3-windows-10-1909: Finished converging (4m30.38s). -I, [2020-03-04T14:51:59.874138 #688] INFO -- py3-windows-10-1909: -----> Setting up ... -I, [2020-03-04T14:51:59.881771 #688] INFO -- py3-windows-10-1909: Finished setting up (0m0.00s). -I, [2020-03-04T14:51:59.881985 #688] INFO -- py3-windows-10-1909: -----> Verifying ... -I, [2020-03-04T14:52:01.350553 #688] INFO -- py3-windows-10-1909: Loaded default -I, [2020-03-04T14:52:09.335277 #688] INFO -- py3-windows-10-1909: [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). -I, [2020-03-04T14:53:09.149109 #688] INFO -- py3-windows-10-1909: Finished verifying (1m9.26s). -I, [2020-03-04T14:53:09.153851 #688] INFO -- py3-windows-10-1909: -----> Destroying ... -I, [2020-03-04T14:53:18.369008 #688] INFO -- py3-windows-10-1909: ==> default: Forcing shutdown of VM... -I, [2020-03-04T14:53:20.147408 #688] INFO -- py3-windows-10-1909: ==> default: Destroying VM and associated drives... -I, [2020-03-04T14:53:21.041027 #688] INFO -- py3-windows-10-1909: Vagrant instance destroyed. -I, [2020-03-04T14:53:21.042194 #688] INFO -- py3-windows-10-1909: Finished destroying (0m11.89s). -I, [2020-03-04T14:53:21.043103 #688] INFO -- py3-windows-10-1909: Finished testing (7m20.98s). +I, [2020-03-06T12:45:12.664063 #14971] INFO -- py3-windows-10-1909: -----> Cleaning up any prior instances of +I, [2020-03-06T12:45:12.664276 #14971] INFO -- py3-windows-10-1909: -----> Destroying ... +I, [2020-03-06T12:45:12.666130 #14971] INFO -- py3-windows-10-1909: Finished destroying (0m0.00s). +I, [2020-03-06T12:45:12.667332 #14971] INFO -- py3-windows-10-1909: -----> Testing +I, [2020-03-06T12:45:12.667513 #14971] INFO -- py3-windows-10-1909: -----> Creating ... +I, [2020-03-06T12:45:20.953780 #14971] INFO -- py3-windows-10-1909: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T12:45:22.289928 #14971] INFO -- py3-windows-10-1909: ==> default: Cloning VM... +I, [2020-03-06T12:45:22.889010 #14971] INFO -- py3-windows-10-1909: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T12:45:23.254269 #14971] INFO -- py3-windows-10-1909: ==> default: Checking if box 'StefanScherer/windows_10' version '2020.02.12' is up to date... +I, [2020-03-06T12:45:25.260696 #14971] INFO -- py3-windows-10-1909: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1909-a375ff2f-b9c2-448e-b6e2-f2b60ee84b52 +I, [2020-03-06T12:45:30.353887 #14971] INFO -- py3-windows-10-1909: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T12:45:30.540742 #14971] INFO -- py3-windows-10-1909: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T12:45:30.541597 #14971] INFO -- py3-windows-10-1909: default: Adapter 1: nat +I, [2020-03-06T12:45:30.777893 #14971] INFO -- py3-windows-10-1909: ==> default: Forwarding ports... +I, [2020-03-06T12:45:31.005466 #14971] INFO -- py3-windows-10-1909: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T12:45:31.006511 #14971] INFO -- py3-windows-10-1909: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T12:45:31.007806 #14971] INFO -- py3-windows-10-1909: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T12:45:31.008784 #14971] INFO -- py3-windows-10-1909: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T12:45:31.689898 #14971] INFO -- py3-windows-10-1909: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T12:45:33.357349 #14971] INFO -- py3-windows-10-1909: ==> default: Booting VM... +I, [2020-03-06T12:45:37.311625 #14971] INFO -- py3-windows-10-1909: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T12:45:39.599546 #14971] INFO -- py3-windows-10-1909: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T12:45:39.599983 #14971] INFO -- py3-windows-10-1909: default: WinRM username: vagrant +I, [2020-03-06T12:45:39.600437 #14971] INFO -- py3-windows-10-1909: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T12:45:39.600935 #14971] INFO -- py3-windows-10-1909: default: WinRM transport: negotiate +I, [2020-03-06T12:46:03.281831 #14971] INFO -- py3-windows-10-1909: ==> default: Machine booted and ready! +I, [2020-03-06T12:46:03.323175 #14971] INFO -- py3-windows-10-1909: ==> default: Checking for guest additions in VM... +I, [2020-03-06T12:46:04.393203 #14971] INFO -- py3-windows-10-1909: ==> default: Mounting shared folders... +I, [2020-03-06T12:46:04.395419 #14971] INFO -- py3-windows-10-1909: default: /results => /mnt/c/tmp/results +I, [2020-03-06T12:46:15.288852 #14971] INFO -- py3-windows-10-1909: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T12:46:30.802055 #14971] INFO -- py3-windows-10-1909: [WinRM] Established +I, [2020-03-06T12:46:30.802181 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:46:30.819494 #14971] INFO -- py3-windows-10-1909: Vagrant instance created. +I, [2020-03-06T12:46:30.821619 #14971] INFO -- py3-windows-10-1909: Finished creating (1m18.15s). +I, [2020-03-06T12:46:30.821946 #14971] INFO -- py3-windows-10-1909: -----> Converging ... +I, [2020-03-06T12:46:30.829637 #14971] INFO -- py3-windows-10-1909: Preparing files for transfer +I, [2020-03-06T12:46:30.829801 #14971] INFO -- py3-windows-10-1909: Preparing salt-minion +I, [2020-03-06T12:46:30.836088 #14971] INFO -- py3-windows-10-1909: Preparing pillars into /srv/pillar +I, [2020-03-06T12:46:30.836237 #14971] INFO -- py3-windows-10-1909: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T12:46:30.840568 #14971] INFO -- py3-windows-10-1909: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T12:46:31.034319 #14971] INFO -- py3-windows-10-1909: Preparing state_top +I, [2020-03-06T12:46:31.036395 #14971] INFO -- py3-windows-10-1909: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T12:46:32.540781 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:46:32.541206 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:46:32.541654 #14971] INFO -- py3-windows-10-1909: Directory: C:\ +I, [2020-03-06T12:46:32.542070 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:46:32.542409 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:46:32.542870 #14971] INFO -- py3-windows-10-1909: Mode LastWriteTime Length Name +I, [2020-03-06T12:46:32.543707 #14971] INFO -- py3-windows-10-1909: ---- ------------- ------ ---- +I, [2020-03-06T12:46:32.544525 #14971] INFO -- py3-windows-10-1909: d----- 3/6/2020 9:46 AM temp +I, [2020-03-06T12:46:33.872493 #14971] INFO -- py3-windows-10-1909: Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe +I, [2020-03-06T12:46:44.373348 #14971] INFO -- py3-windows-10-1909: Installing Salt minion +I, [2020-03-06T12:48:02.787673 #14971] INFO -- py3-windows-10-1909: Starting the Salt minion service +I, [2020-03-06T12:48:02.788453 #14971] INFO -- py3-windows-10-1909: Salt minion successfully installed +I, [2020-03-06T12:48:11.396033 #14971] INFO -- py3-windows-10-1909: You asked for latest and you have 3000 installed, sweet! +I, [2020-03-06T12:48:11.396920 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:11.397479 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:12.472479 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:12.472914 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:12.473648 #14971] INFO -- py3-windows-10-1909: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T12:48:12.474098 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:12.474484 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:12.474899 #14971] INFO -- py3-windows-10-1909: Mode LastWriteTime Length Name +I, [2020-03-06T12:48:12.475333 #14971] INFO -- py3-windows-10-1909: ---- ------------- ------ ---- +I, [2020-03-06T12:48:12.475965 #14971] INFO -- py3-windows-10-1909: d----- 3/6/2020 9:48 AM kitchen +I, [2020-03-06T12:48:12.476547 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:12.477028 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:48:12.496764 #14971] INFO -- py3-windows-10-1909: Transferring files to +I, [2020-03-06T12:49:38.716391 #14971] INFO -- py3-windows-10-1909: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T12:49:38.716769 #14971] INFO -- py3-windows-10-1909: At line:1 char:131 +I, [2020-03-06T12:49:38.717091 #14971] INFO -- py3-windows-10-1909: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T12:49:38.717410 #14971] INFO -- py3-windows-10-1909: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T12:49:38.717795 #14971] INFO -- py3-windows-10-1909: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T12:49:38.718153 #14971] INFO -- py3-windows-10-1909: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T12:49:38.718487 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:49:38.718770 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:49:38.719054 #14971] INFO -- py3-windows-10-1909: Traceback (most recent call last): +I, [2020-03-06T12:49:38.723242 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T12:49:38.723777 #14971] INFO -- py3-windows-10-1909: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T12:49:38.724242 #14971] INFO -- py3-windows-10-1909: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T12:49:38.724549 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:49:38.724918 #14971] INFO -- py3-windows-10-1909: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T12:49:38.725320 #14971] INFO -- py3-windows-10-1909: Traceback (most recent call last): +I, [2020-03-06T12:49:38.725766 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T12:49:38.726119 #14971] INFO -- py3-windows-10-1909: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T12:49:38.726465 #14971] INFO -- py3-windows-10-1909: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T12:49:38.726753 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:50:43.291167 #14971] INFO -- py3-windows-10-1909: [ERROR ] An exception occurred in this state: Traceback (most recent call last): +I, [2020-03-06T12:50:43.291745 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call +I, [2020-03-06T12:50:43.292324 #14971] INFO -- py3-windows-10-1909: **cdata['kwargs']) +I, [2020-03-06T12:50:43.292850 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper +I, [2020-03-06T12:50:43.293280 #14971] INFO -- py3-windows-10-1909: return f(*args, **kwargs) +I, [2020-03-06T12:50:43.293867 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed +I, [2020-03-06T12:50:43.294590 #14971] INFO -- py3-windows-10-1909: **kwargs) +I, [2020-03-06T12:50:43.295207 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install +I, [2020-03-06T12:50:43.295776 #14971] INFO -- py3-windows-10-1909: cached_pkg = __salt__['cp.cache_file'](installer, saltenv) +I, [2020-03-06T12:50:43.296411 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file +I, [2020-03-06T12:50:43.297054 #14971] INFO -- py3-windows-10-1909: result = _client().cache_file(path, saltenv, source_hash=source_hash) +I, [2020-03-06T12:50:43.297664 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file +I, [2020-03-06T12:50:43.298252 #14971] INFO -- py3-windows-10-1909: path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) +I, [2020-03-06T12:50:43.298803 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url +I, [2020-03-06T12:50:43.299457 #14971] INFO -- py3-windows-10-1909: raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +I, [2020-03-06T12:50:43.300152 #14971] INFO -- py3-windows-10-1909: salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe +I, [2020-03-06T12:50:43.300702 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:50:43.301248 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:51:23.947538 #14971] INFO -- py3-windows-10-1909: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T12:51:23.948314 #14971] INFO -- py3-windows-10-1909: environ[key] = redata.sub(a, value) +I, [2020-03-06T12:51:23.948921 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:51:23.949375 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:51:23.949964 #14971] INFO -- py3-windows-10-1909: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T12:51:23.950424 #14971] INFO -- py3-windows-10-1909: environ[key] = redata.sub(a, value) +I, [2020-03-06T12:51:23.950866 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:51:23.951221 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.341212 #14971] INFO -- py3-windows-10-1909: local: +I, [2020-03-06T12:52:48.341643 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.342163 #14971] INFO -- py3-windows-10-1909: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T12:52:48.342648 #14971] INFO -- py3-windows-10-1909: Function: system.hostname +I, [2020-03-06T12:52:48.343073 #14971] INFO -- py3-windows-10-1909: Name: saltstack1 +I, [2020-03-06T12:52:48.343506 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.343927 #14971] INFO -- py3-windows-10-1909: Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T12:52:48.344359 #14971] INFO -- py3-windows-10-1909: Started: 09:48:44.798864 +I, [2020-03-06T12:52:48.344756 #14971] INFO -- py3-windows-10-1909: Duration: 155.248 ms +I, [2020-03-06T12:52:48.345141 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.345553 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.345962 #14971] INFO -- py3-windows-10-1909: hostname: +I, [2020-03-06T12:52:48.346401 #14971] INFO -- py3-windows-10-1909: saltstack1 +I, [2020-03-06T12:52:48.346786 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.347211 #14971] INFO -- py3-windows-10-1909: ID: windows.state.system.computer_desc.description +I, [2020-03-06T12:52:48.347600 #14971] INFO -- py3-windows-10-1909: Function: system.computer_desc +I, [2020-03-06T12:52:48.347999 #14971] INFO -- py3-windows-10-1909: Name: Saltstack Computer Description +I, [2020-03-06T12:52:48.348421 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.348828 #14971] INFO -- py3-windows-10-1909: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T12:52:48.349236 #14971] INFO -- py3-windows-10-1909: Started: 09:48:44.970663 +I, [2020-03-06T12:52:48.349633 #14971] INFO -- py3-windows-10-1909: Duration: 3514.631 ms +I, [2020-03-06T12:52:48.350021 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.350424 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.350820 #14971] INFO -- py3-windows-10-1909: new: +I, [2020-03-06T12:52:48.351213 #14971] INFO -- py3-windows-10-1909: Saltstack Computer Description +I, [2020-03-06T12:52:48.351544 #14971] INFO -- py3-windows-10-1909: old: +I, [2020-03-06T12:52:48.356267 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.356857 #14971] INFO -- py3-windows-10-1909: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T12:52:48.357377 #14971] INFO -- py3-windows-10-1909: Function: timezone.system +I, [2020-03-06T12:52:48.357829 #14971] INFO -- py3-windows-10-1909: Name: America/New_York +I, [2020-03-06T12:52:48.358258 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.358673 #14971] INFO -- py3-windows-10-1909: Comment: Set timezone America/New_York +I, [2020-03-06T12:52:48.359147 #14971] INFO -- py3-windows-10-1909: Started: 09:48:48.595532 +I, [2020-03-06T12:52:48.359611 #14971] INFO -- py3-windows-10-1909: Duration: 77.788 ms +I, [2020-03-06T12:52:48.360105 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.360560 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.361030 #14971] INFO -- py3-windows-10-1909: timezone: +I, [2020-03-06T12:52:48.361492 #14971] INFO -- py3-windows-10-1909: America/New_York +I, [2020-03-06T12:52:48.361937 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.362275 #14971] INFO -- py3-windows-10-1909: ID: windows.module.environ.items +I, [2020-03-06T12:52:48.363048 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:48.363550 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.364001 #14971] INFO -- py3-windows-10-1909: Comment: environ.items: Success +I, [2020-03-06T12:52:48.364400 #14971] INFO -- py3-windows-10-1909: Started: 09:48:48.735586 +I, [2020-03-06T12:52:48.364876 #14971] INFO -- py3-windows-10-1909: Duration: 16.708 ms +I, [2020-03-06T12:52:48.365311 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.365773 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.366231 #14971] INFO -- py3-windows-10-1909: environ.items: +I, [2020-03-06T12:52:48.366699 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.367194 #14971] INFO -- py3-windows-10-1909: ALLUSERSPROFILE: +I, [2020-03-06T12:52:48.367652 #14971] INFO -- py3-windows-10-1909: C:\ProgramData +I, [2020-03-06T12:52:48.368129 #14971] INFO -- py3-windows-10-1909: APPDATA: +I, [2020-03-06T12:52:48.368586 #14971] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T12:52:48.369010 #14971] INFO -- py3-windows-10-1909: COMMONPROGRAMFILES: +I, [2020-03-06T12:52:48.369410 #14971] INFO -- py3-windows-10-1909: C:\Program Files\Common Files +I, [2020-03-06T12:52:48.369831 #14971] INFO -- py3-windows-10-1909: COMMONPROGRAMFILES(X86): +I, [2020-03-06T12:52:48.370212 #14971] INFO -- py3-windows-10-1909: C:\Program Files (x86)\Common Files +I, [2020-03-06T12:52:48.370639 #14971] INFO -- py3-windows-10-1909: COMMONPROGRAMW6432: +I, [2020-03-06T12:52:48.371034 #14971] INFO -- py3-windows-10-1909: C:\Program Files\Common Files +I, [2020-03-06T12:52:48.371471 #14971] INFO -- py3-windows-10-1909: COMPUTERNAME: +I, [2020-03-06T12:52:48.371970 #14971] INFO -- py3-windows-10-1909: VAGRANT-10 +I, [2020-03-06T12:52:48.372385 #14971] INFO -- py3-windows-10-1909: COMSPEC: +I, [2020-03-06T12:52:48.372853 #14971] INFO -- py3-windows-10-1909: C:\Windows\system32\cmd.exe +I, [2020-03-06T12:52:48.373280 #14971] INFO -- py3-windows-10-1909: DRIVERDATA: +I, [2020-03-06T12:52:48.373725 #14971] INFO -- py3-windows-10-1909: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T12:52:48.374144 #14971] INFO -- py3-windows-10-1909: HOMEDRIVE: +I, [2020-03-06T12:52:48.374600 #14971] INFO -- py3-windows-10-1909: C: +I, [2020-03-06T12:52:48.375026 #14971] INFO -- py3-windows-10-1909: HOMEPATH: +I, [2020-03-06T12:52:48.375433 #14971] INFO -- py3-windows-10-1909: \Users\vagrant +I, [2020-03-06T12:52:48.375859 #14971] INFO -- py3-windows-10-1909: LOCALAPPDATA: +I, [2020-03-06T12:52:48.376277 #14971] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Local +I, [2020-03-06T12:52:48.377883 #14971] INFO -- py3-windows-10-1909: LOGONSERVER: +I, [2020-03-06T12:52:48.379179 #14971] INFO -- py3-windows-10-1909: \\VAGRANT-10 +I, [2020-03-06T12:52:48.380643 #14971] INFO -- py3-windows-10-1909: NUMBER_OF_PROCESSORS: +I, [2020-03-06T12:52:48.381961 #14971] INFO -- py3-windows-10-1909: 2 +I, [2020-03-06T12:52:48.382889 #14971] INFO -- py3-windows-10-1909: ONEDRIVE: +I, [2020-03-06T12:52:48.383731 #14971] INFO -- py3-windows-10-1909: C:\Users\vagrant\OneDrive +I, [2020-03-06T12:52:48.384771 #14971] INFO -- py3-windows-10-1909: OS: +I, [2020-03-06T12:52:48.385538 #14971] INFO -- py3-windows-10-1909: Windows_NT +I, [2020-03-06T12:52:48.386309 #14971] INFO -- py3-windows-10-1909: PATH: +I, [2020-03-06T12:52:48.387168 #14971] INFO -- py3-windows-10-1909: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T12:52:48.388435 #14971] INFO -- py3-windows-10-1909: PATHEXT: +I, [2020-03-06T12:52:48.390308 #14971] INFO -- py3-windows-10-1909: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T12:52:48.392091 #14971] INFO -- py3-windows-10-1909: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T12:52:48.393995 #14971] INFO -- py3-windows-10-1909: AMD64 +I, [2020-03-06T12:52:48.395670 #14971] INFO -- py3-windows-10-1909: PROCESSOR_IDENTIFIER: +I, [2020-03-06T12:52:48.397556 #14971] INFO -- py3-windows-10-1909: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T12:52:48.399409 #14971] INFO -- py3-windows-10-1909: PROCESSOR_LEVEL: +I, [2020-03-06T12:52:48.400014 #14971] INFO -- py3-windows-10-1909: 6 +I, [2020-03-06T12:52:48.401434 #14971] INFO -- py3-windows-10-1909: PROCESSOR_REVISION: +I, [2020-03-06T12:52:48.403278 #14971] INFO -- py3-windows-10-1909: 8e0c +I, [2020-03-06T12:52:48.404878 #14971] INFO -- py3-windows-10-1909: PROGRAMDATA: +I, [2020-03-06T12:52:48.406632 #14971] INFO -- py3-windows-10-1909: C:\ProgramData +I, [2020-03-06T12:52:48.408085 #14971] INFO -- py3-windows-10-1909: PROGRAMFILES: +I, [2020-03-06T12:52:48.409257 #14971] INFO -- py3-windows-10-1909: C:\Program Files +I, [2020-03-06T12:52:48.410282 #14971] INFO -- py3-windows-10-1909: PROGRAMFILES(X86): +I, [2020-03-06T12:52:48.411590 #14971] INFO -- py3-windows-10-1909: C:\Program Files (x86) +I, [2020-03-06T12:52:48.414265 #14971] INFO -- py3-windows-10-1909: PROGRAMW6432: +I, [2020-03-06T12:52:48.415124 #14971] INFO -- py3-windows-10-1909: C:\Program Files +I, [2020-03-06T12:52:48.416446 #14971] INFO -- py3-windows-10-1909: PROMPT: +I, [2020-03-06T12:52:48.418279 #14971] INFO -- py3-windows-10-1909: $P$G +I, [2020-03-06T12:52:48.419996 #14971] INFO -- py3-windows-10-1909: PSMODULEPATH: +I, [2020-03-06T12:52:48.421413 #14971] INFO -- py3-windows-10-1909: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T12:52:48.422846 #14971] INFO -- py3-windows-10-1909: PUBLIC: +I, [2020-03-06T12:52:48.424292 #14971] INFO -- py3-windows-10-1909: C:\Users\Public +I, [2020-03-06T12:52:48.425897 #14971] INFO -- py3-windows-10-1909: PYTHON: +I, [2020-03-06T12:52:48.427263 #14971] INFO -- py3-windows-10-1909: C:\salt\bin\python.exe +I, [2020-03-06T12:52:48.427815 #14971] INFO -- py3-windows-10-1909: SALTDIR: +I, [2020-03-06T12:52:48.428828 #14971] INFO -- py3-windows-10-1909: C:\salt +I, [2020-03-06T12:52:48.429617 #14971] INFO -- py3-windows-10-1909: SCRIPT: +I, [2020-03-06T12:52:48.431002 #14971] INFO -- py3-windows-10-1909: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T12:52:48.431549 #14971] INFO -- py3-windows-10-1909: SYSTEMDRIVE: +I, [2020-03-06T12:52:48.432573 #14971] INFO -- py3-windows-10-1909: C: +I, [2020-03-06T12:52:48.433453 #14971] INFO -- py3-windows-10-1909: SYSTEMROOT: +I, [2020-03-06T12:52:48.434629 #14971] INFO -- py3-windows-10-1909: C:\Windows +I, [2020-03-06T12:52:48.435803 #14971] INFO -- py3-windows-10-1909: TEMP: +I, [2020-03-06T12:52:48.442879 #14971] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T12:52:48.443686 #14971] INFO -- py3-windows-10-1909: TMP: +I, [2020-03-06T12:52:48.444301 #14971] INFO -- py3-windows-10-1909: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T12:52:48.444858 #14971] INFO -- py3-windows-10-1909: USERDOMAIN: +I, [2020-03-06T12:52:48.445408 #14971] INFO -- py3-windows-10-1909: VAGRANT-10 +I, [2020-03-06T12:52:48.445931 #14971] INFO -- py3-windows-10-1909: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T12:52:48.446470 #14971] INFO -- py3-windows-10-1909: VAGRANT-10 +I, [2020-03-06T12:52:48.447068 #14971] INFO -- py3-windows-10-1909: USERNAME: +I, [2020-03-06T12:52:48.447699 #14971] INFO -- py3-windows-10-1909: vagrant +I, [2020-03-06T12:52:48.448291 #14971] INFO -- py3-windows-10-1909: USERPROFILE: +I, [2020-03-06T12:52:48.448903 #14971] INFO -- py3-windows-10-1909: C:\Users\vagrant +I, [2020-03-06T12:52:48.449459 #14971] INFO -- py3-windows-10-1909: WINDIR: +I, [2020-03-06T12:52:48.450014 #14971] INFO -- py3-windows-10-1909: C:\Windows +I, [2020-03-06T12:52:48.450515 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.451018 #14971] INFO -- py3-windows-10-1909: ID: windows.module.user.current +I, [2020-03-06T12:52:48.451453 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:48.451888 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.452321 #14971] INFO -- py3-windows-10-1909: Comment: user.current: VAGRANT-10\vagrant +I, [2020-03-06T12:52:48.452766 #14971] INFO -- py3-windows-10-1909: Started: 09:48:48.752294 +I, [2020-03-06T12:52:48.453203 #14971] INFO -- py3-windows-10-1909: Duration: 140.35 ms +I, [2020-03-06T12:52:48.453654 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.454115 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.454601 #14971] INFO -- py3-windows-10-1909: user.current: +I, [2020-03-06T12:52:48.455074 #14971] INFO -- py3-windows-10-1909: VAGRANT-10\vagrant +I, [2020-03-06T12:52:48.455527 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.455983 #14971] INFO -- py3-windows-10-1909: ID: windows.module.status.uptime +I, [2020-03-06T12:52:48.456435 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:48.456894 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.457353 #14971] INFO -- py3-windows-10-1909: Comment: status.uptime: 0:03:07.110317 +I, [2020-03-06T12:52:48.457778 #14971] INFO -- py3-windows-10-1909: Started: 09:48:48.892644 +I, [2020-03-06T12:52:48.458120 #14971] INFO -- py3-windows-10-1909: Duration: 217.673 ms +I, [2020-03-06T12:52:48.458525 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.458925 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.459266 #14971] INFO -- py3-windows-10-1909: status.uptime: +I, [2020-03-06T12:52:48.459695 #14971] INFO -- py3-windows-10-1909: 0:03:07.110317 +I, [2020-03-06T12:52:48.460045 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.460519 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection +I, [2020-03-06T12:52:48.460935 #14971] INFO -- py3-windows-10-1909: Function: cmd.run +I, [2020-03-06T12:52:48.461320 #14971] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers +I, [2020-03-06T12:52:48.461700 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.462072 #14971] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:52:48.462491 #14971] INFO -- py3-windows-10-1909: Started: 09:48:49.173430 +I, [2020-03-06T12:52:48.462824 #14971] INFO -- py3-windows-10-1909: Duration: 4436.946 ms +I, [2020-03-06T12:52:48.463216 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.463558 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.463917 #14971] INFO -- py3-windows-10-1909: pid: +I, [2020-03-06T12:52:48.464322 #14971] INFO -- py3-windows-10-1909: 3488 +I, [2020-03-06T12:52:48.464636 #14971] INFO -- py3-windows-10-1909: retcode: +I, [2020-03-06T12:52:48.464954 #14971] INFO -- py3-windows-10-1909: 0 +I, [2020-03-06T12:52:48.465329 #14971] INFO -- py3-windows-10-1909: stderr: +I, [2020-03-06T12:52:48.465708 #14971] INFO -- py3-windows-10-1909: stdout: +I, [2020-03-06T12:52:48.466022 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.466397 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet +I, [2020-03-06T12:52:48.466800 #14971] INFO -- py3-windows-10-1909: Function: cmd.run +I, [2020-03-06T12:52:48.467181 #14971] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers +I, [2020-03-06T12:52:48.467528 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.467922 #14971] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:52:48.468324 #14971] INFO -- py3-windows-10-1909: Started: 09:48:53.610376 +I, [2020-03-06T12:52:48.468755 #14971] INFO -- py3-windows-10-1909: Duration: 3734.954 ms +I, [2020-03-06T12:52:48.469206 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.469689 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.470132 #14971] INFO -- py3-windows-10-1909: pid: +I, [2020-03-06T12:52:48.470585 #14971] INFO -- py3-windows-10-1909: 6904 +I, [2020-03-06T12:52:48.471017 #14971] INFO -- py3-windows-10-1909: retcode: +I, [2020-03-06T12:52:48.471466 #14971] INFO -- py3-windows-10-1909: 0 +I, [2020-03-06T12:52:48.471897 #14971] INFO -- py3-windows-10-1909: stderr: +I, [2020-03-06T12:52:48.472342 #14971] INFO -- py3-windows-10-1909: stdout: +I, [2020-03-06T12:52:48.472756 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.473227 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic +I, [2020-03-06T12:52:48.473662 #14971] INFO -- py3-windows-10-1909: Function: cmd.run +I, [2020-03-06T12:52:48.474151 #14971] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers +I, [2020-03-06T12:52:48.474606 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.475084 #14971] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:52:48.475560 #14971] INFO -- py3-windows-10-1909: Started: 09:48:57.345330 +I, [2020-03-06T12:52:48.476020 #14971] INFO -- py3-windows-10-1909: Duration: 3546.582 ms +I, [2020-03-06T12:52:48.476497 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.476956 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.477451 #14971] INFO -- py3-windows-10-1909: pid: +I, [2020-03-06T12:52:48.477915 #14971] INFO -- py3-windows-10-1909: 5368 +I, [2020-03-06T12:52:48.478383 #14971] INFO -- py3-windows-10-1909: retcode: +I, [2020-03-06T12:52:48.478813 #14971] INFO -- py3-windows-10-1909: 0 +I, [2020-03-06T12:52:48.479206 #14971] INFO -- py3-windows-10-1909: stderr: +I, [2020-03-06T12:52:48.479512 #14971] INFO -- py3-windows-10-1909: stdout: +I, [2020-03-06T12:52:48.479854 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.480251 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo +I, [2020-03-06T12:52:48.480684 #14971] INFO -- py3-windows-10-1909: Function: cmd.run +I, [2020-03-06T12:52:48.481042 #14971] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers +I, [2020-03-06T12:52:48.481428 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.481863 #14971] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:52:48.482206 #14971] INFO -- py3-windows-10-1909: Started: 09:49:00.891912 +I, [2020-03-06T12:52:48.482582 #14971] INFO -- py3-windows-10-1909: Duration: 2749.656 ms +I, [2020-03-06T12:52:48.482965 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.483285 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.483611 #14971] INFO -- py3-windows-10-1909: pid: +I, [2020-03-06T12:52:48.483944 #14971] INFO -- py3-windows-10-1909: 1396 +I, [2020-03-06T12:52:48.484322 #14971] INFO -- py3-windows-10-1909: retcode: +I, [2020-03-06T12:52:48.484699 #14971] INFO -- py3-windows-10-1909: 0 +I, [2020-03-06T12:52:48.485057 #14971] INFO -- py3-windows-10-1909: stderr: +I, [2020-03-06T12:52:48.485367 #14971] INFO -- py3-windows-10-1909: stdout: +I, [2020-03-06T12:52:48.485782 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.486168 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal +I, [2020-03-06T12:52:48.486495 #14971] INFO -- py3-windows-10-1909: Function: cmd.run +I, [2020-03-06T12:52:48.486825 #14971] INFO -- py3-windows-10-1909: Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers +I, [2020-03-06T12:52:48.487128 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.487559 #14971] INFO -- py3-windows-10-1909: Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run +I, [2020-03-06T12:52:48.488078 #14971] INFO -- py3-windows-10-1909: Started: 09:49:03.641568 +I, [2020-03-06T12:52:48.488545 #14971] INFO -- py3-windows-10-1909: Duration: 3906.203 ms +I, [2020-03-06T12:52:48.489026 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.489482 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.489842 #14971] INFO -- py3-windows-10-1909: pid: +I, [2020-03-06T12:52:48.490146 #14971] INFO -- py3-windows-10-1909: 7000 +I, [2020-03-06T12:52:48.490521 #14971] INFO -- py3-windows-10-1909: retcode: +I, [2020-03-06T12:52:48.490890 #14971] INFO -- py3-windows-10-1909: 0 +I, [2020-03-06T12:52:48.491227 #14971] INFO -- py3-windows-10-1909: stderr: +I, [2020-03-06T12:52:48.491568 #14971] INFO -- py3-windows-10-1909: stdout: +I, [2020-03-06T12:52:48.491948 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.492368 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T12:52:48.492805 #14971] INFO -- py3-windows-10-1909: Function: reg.present +I, [2020-03-06T12:52:48.493155 #14971] INFO -- py3-windows-10-1909: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:52:48.493638 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.494013 #14971] INFO -- py3-windows-10-1909: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:52:48.494440 #14971] INFO -- py3-windows-10-1909: Started: 09:49:07.563313 +I, [2020-03-06T12:52:48.494905 #14971] INFO -- py3-windows-10-1909: Duration: 30312.592 ms +I, [2020-03-06T12:52:48.495287 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.495655 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.500342 #14971] INFO -- py3-windows-10-1909: reg: +I, [2020-03-06T12:52:48.501089 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.501572 #14971] INFO -- py3-windows-10-1909: Added: +I, [2020-03-06T12:52:48.501947 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.502866 #14971] INFO -- py3-windows-10-1909: Entry: +I, [2020-03-06T12:52:48.503424 #14971] INFO -- py3-windows-10-1909: SystemDefaultTlsVersions +I, [2020-03-06T12:52:48.503927 #14971] INFO -- py3-windows-10-1909: Inheritance: +I, [2020-03-06T12:52:48.504441 #14971] INFO -- py3-windows-10-1909: True +I, [2020-03-06T12:52:48.504947 #14971] INFO -- py3-windows-10-1909: Key: +I, [2020-03-06T12:52:48.505383 #14971] INFO -- py3-windows-10-1909: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:52:48.505746 #14971] INFO -- py3-windows-10-1909: Owner: +I, [2020-03-06T12:52:48.506235 #14971] INFO -- py3-windows-10-1909: None +I, [2020-03-06T12:52:48.506671 #14971] INFO -- py3-windows-10-1909: Perms: +I, [2020-03-06T12:52:48.507041 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.507534 #14971] INFO -- py3-windows-10-1909: Deny: +I, [2020-03-06T12:52:48.507939 #14971] INFO -- py3-windows-10-1909: None +I, [2020-03-06T12:52:48.508354 #14971] INFO -- py3-windows-10-1909: Grant: +I, [2020-03-06T12:52:48.508819 #14971] INFO -- py3-windows-10-1909: None +I, [2020-03-06T12:52:48.509221 #14971] INFO -- py3-windows-10-1909: Value: +I, [2020-03-06T12:52:48.509666 #14971] INFO -- py3-windows-10-1909: 1 +I, [2020-03-06T12:52:48.510205 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.510604 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T12:52:48.511081 #14971] INFO -- py3-windows-10-1909: Function: reg.present +I, [2020-03-06T12:52:48.511554 #14971] INFO -- py3-windows-10-1909: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:52:48.511942 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.512427 #14971] INFO -- py3-windows-10-1909: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:52:48.512950 #14971] INFO -- py3-windows-10-1909: Started: 09:49:37.875905 +I, [2020-03-06T12:52:48.513500 #14971] INFO -- py3-windows-10-1909: Duration: 327.998 ms +I, [2020-03-06T12:52:48.514011 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.514515 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.514932 #14971] INFO -- py3-windows-10-1909: reg: +I, [2020-03-06T12:52:48.515313 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.515757 #14971] INFO -- py3-windows-10-1909: Added: +I, [2020-03-06T12:52:48.516297 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.516802 #14971] INFO -- py3-windows-10-1909: Entry: +I, [2020-03-06T12:52:48.517357 #14971] INFO -- py3-windows-10-1909: SystemDefaultTlsVersions +I, [2020-03-06T12:52:48.517735 #14971] INFO -- py3-windows-10-1909: Inheritance: +I, [2020-03-06T12:52:48.518163 #14971] INFO -- py3-windows-10-1909: True +I, [2020-03-06T12:52:48.518681 #14971] INFO -- py3-windows-10-1909: Key: +I, [2020-03-06T12:52:48.519075 #14971] INFO -- py3-windows-10-1909: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T12:52:48.519411 #14971] INFO -- py3-windows-10-1909: Owner: +I, [2020-03-06T12:52:48.519937 #14971] INFO -- py3-windows-10-1909: None +I, [2020-03-06T12:52:48.520398 #14971] INFO -- py3-windows-10-1909: Perms: +I, [2020-03-06T12:52:48.520800 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.521233 #14971] INFO -- py3-windows-10-1909: Deny: +I, [2020-03-06T12:52:48.521836 #14971] INFO -- py3-windows-10-1909: None +I, [2020-03-06T12:52:48.522338 #14971] INFO -- py3-windows-10-1909: Grant: +I, [2020-03-06T12:52:48.522849 #14971] INFO -- py3-windows-10-1909: None +I, [2020-03-06T12:52:48.523335 #14971] INFO -- py3-windows-10-1909: Value: +I, [2020-03-06T12:52:48.523872 #14971] INFO -- py3-windows-10-1909: 1 +I, [2020-03-06T12:52:48.524417 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.524934 #14971] INFO -- py3-windows-10-1909: ID: manually.update_git_repo-ng +I, [2020-03-06T12:52:48.525435 #14971] INFO -- py3-windows-10-1909: Function: archive.extracted +I, [2020-03-06T12:52:48.526021 #14971] INFO -- py3-windows-10-1909: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T12:52:48.526508 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.527130 #14971] INFO -- py3-windows-10-1909: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T12:52:48.527702 #14971] INFO -- py3-windows-10-1909: Started: 09:49:38.203903 +I, [2020-03-06T12:52:48.528160 #14971] INFO -- py3-windows-10-1909: Duration: 1218.729 ms +I, [2020-03-06T12:52:48.528642 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.529224 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.529699 #14971] INFO -- py3-windows-10-1909: directories_created: +I, [2020-03-06T12:52:48.530245 #14971] INFO -- py3-windows-10-1909: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T12:52:48.530742 #14971] INFO -- py3-windows-10-1909: extracted_files: +I, [2020-03-06T12:52:48.531125 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ +I, [2020-03-06T12:52:48.531673 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T12:52:48.532205 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T12:52:48.532744 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T12:52:48.533323 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T12:52:48.533740 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T12:52:48.534162 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T12:52:48.534730 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T12:52:48.535214 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/README.md +I, [2020-03-06T12:52:48.535693 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T12:52:48.536181 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T12:52:48.536683 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T12:52:48.537142 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T12:52:48.537619 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T12:52:48.538066 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T12:52:48.538538 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T12:52:48.538997 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T12:52:48.539452 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T12:52:48.539923 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T12:52:48.540373 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T12:52:48.540837 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T12:52:48.541288 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T12:52:48.541752 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T12:52:48.542197 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T12:52:48.542663 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T12:52:48.543111 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T12:52:48.543611 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T12:52:48.544094 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T12:52:48.544591 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T12:52:48.545072 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T12:52:48.545555 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T12:52:48.546057 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T12:52:48.546586 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T12:52:48.547106 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T12:52:48.547639 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T12:52:48.548145 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T12:52:48.548680 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T12:52:48.549177 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T12:52:48.549687 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T12:52:48.550194 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T12:52:48.550713 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T12:52:48.551209 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T12:52:48.551731 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T12:52:48.552293 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T12:52:48.552847 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T12:52:48.553424 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T12:52:48.553965 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T12:52:48.554497 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T12:52:48.555018 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T12:52:48.555530 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T12:52:48.556030 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T12:52:48.556531 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T12:52:48.557009 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T12:52:48.557477 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T12:52:48.557919 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T12:52:48.558378 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T12:52:48.558808 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T12:52:48.559261 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T12:52:48.559801 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T12:52:48.560266 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T12:52:48.560718 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T12:52:48.565026 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T12:52:48.565664 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T12:52:48.566228 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T12:52:48.566755 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T12:52:48.567327 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T12:52:48.567945 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T12:52:48.568499 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T12:52:48.569058 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T12:52:48.569553 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T12:52:48.569942 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T12:52:48.570287 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T12:52:48.570703 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T12:52:48.571135 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T12:52:48.571506 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T12:52:48.571898 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T12:52:48.572284 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T12:52:48.572672 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T12:52:48.573049 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T12:52:48.573496 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T12:52:48.573916 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T12:52:48.574282 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T12:52:48.574709 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T12:52:48.575171 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T12:52:48.575555 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T12:52:48.575942 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T12:52:48.576396 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T12:52:48.577489 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T12:52:48.577991 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T12:52:48.578493 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T12:52:48.578903 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T12:52:48.579304 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T12:52:48.579810 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T12:52:48.580245 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T12:52:48.580785 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T12:52:48.581228 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T12:52:48.581701 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T12:52:48.582144 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T12:52:48.582554 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T12:52:48.582885 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T12:52:48.583279 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T12:52:48.583711 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T12:52:48.584067 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T12:52:48.584414 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T12:52:48.584872 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T12:52:48.585305 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T12:52:48.585687 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T12:52:48.586082 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T12:52:48.586582 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T12:52:48.586976 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T12:52:48.587339 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T12:52:48.587741 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T12:52:48.588178 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T12:52:48.588582 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T12:52:48.589087 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T12:52:48.589640 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T12:52:48.590078 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T12:52:48.590493 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T12:52:48.590991 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T12:52:48.591569 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T12:52:48.592161 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T12:52:48.592757 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T12:52:48.593353 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T12:52:48.593934 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T12:52:48.594501 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T12:52:48.595031 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T12:52:48.595607 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T12:52:48.596125 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T12:52:48.596675 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T12:52:48.597215 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T12:52:48.597612 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T12:52:48.597978 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T12:52:48.598329 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T12:52:48.598741 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T12:52:48.599111 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T12:52:48.599524 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T12:52:48.600025 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T12:52:48.600478 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T12:52:48.601031 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T12:52:48.601567 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T12:52:48.602085 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T12:52:48.602581 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T12:52:48.603111 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T12:52:48.603632 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T12:52:48.604151 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T12:52:48.604686 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T12:52:48.605222 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T12:52:48.605759 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T12:52:48.606325 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T12:52:48.606897 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T12:52:48.607494 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T12:52:48.608097 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T12:52:48.608662 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T12:52:48.609219 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T12:52:48.609798 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T12:52:48.610372 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T12:52:48.610939 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T12:52:48.611491 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T12:52:48.612037 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T12:52:48.612587 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T12:52:48.613134 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T12:52:48.613662 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T12:52:48.614204 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T12:52:48.614752 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T12:52:48.615269 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T12:52:48.615734 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T12:52:48.616125 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T12:52:48.616584 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T12:52:48.616959 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T12:52:48.617481 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T12:52:48.618070 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T12:52:48.618594 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T12:52:48.619187 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T12:52:48.619763 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T12:52:48.620328 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T12:52:48.620930 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T12:52:48.621551 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T12:52:48.622145 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T12:52:48.622740 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T12:52:48.623308 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T12:52:48.623892 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T12:52:48.624400 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T12:52:48.629731 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T12:52:48.630491 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T12:52:48.631039 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T12:52:48.631543 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T12:52:48.632119 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T12:52:48.632571 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T12:52:48.633053 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T12:52:48.633561 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T12:52:48.634053 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T12:52:48.634702 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T12:52:48.635321 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T12:52:48.635915 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T12:52:48.636406 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T12:52:48.636815 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T12:52:48.637318 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T12:52:48.637838 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T12:52:48.638475 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T12:52:48.639074 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T12:52:48.639677 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T12:52:48.640276 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T12:52:48.640845 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T12:52:48.641412 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T12:52:48.641988 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T12:52:48.642579 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T12:52:48.643168 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T12:52:48.643703 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T12:52:48.644116 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T12:52:48.644489 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T12:52:48.644955 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T12:52:48.645518 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T12:52:48.646196 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T12:52:48.647114 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T12:52:48.647923 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T12:52:48.648569 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T12:52:48.649190 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T12:52:48.649975 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T12:52:48.650569 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T12:52:48.651110 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T12:52:48.651617 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T12:52:48.652091 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T12:52:48.652468 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T12:52:48.652892 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T12:52:48.653419 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T12:52:48.653967 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T12:52:48.654373 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T12:52:48.654787 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T12:52:48.655211 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T12:52:48.655756 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T12:52:48.656239 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T12:52:48.656693 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T12:52:48.657170 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T12:52:48.657659 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T12:52:48.658103 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T12:52:48.658530 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T12:52:48.658967 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T12:52:48.659479 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T12:52:48.659997 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T12:52:48.660465 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T12:52:48.660941 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T12:52:48.661460 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T12:52:48.661918 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T12:52:48.662447 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T12:52:48.662935 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T12:52:48.663423 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T12:52:48.663904 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T12:52:48.664396 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T12:52:48.664845 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T12:52:48.665370 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T12:52:48.665785 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T12:52:48.666294 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T12:52:48.666895 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T12:52:48.667503 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T12:52:48.667997 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T12:52:48.668384 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T12:52:48.668779 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T12:52:48.669276 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T12:52:48.669686 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T12:52:48.670078 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T12:52:48.670527 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T12:52:48.670891 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T12:52:48.671252 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T12:52:48.671608 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T12:52:48.672018 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T12:52:48.672517 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T12:52:48.672893 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T12:52:48.673253 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T12:52:48.673680 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T12:52:48.674158 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T12:52:48.674552 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T12:52:48.674963 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T12:52:48.675378 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T12:52:48.675795 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T12:52:48.676183 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T12:52:48.676521 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T12:52:48.677004 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T12:52:48.677475 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T12:52:48.677857 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T12:52:48.678251 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T12:52:48.678712 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T12:52:48.679143 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T12:52:48.679496 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T12:52:48.679877 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T12:52:48.680253 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T12:52:48.680767 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T12:52:48.681220 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T12:52:48.681571 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T12:52:48.681964 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T12:52:48.682383 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T12:52:48.682785 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T12:52:48.683224 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T12:52:48.683759 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T12:52:48.684206 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T12:52:48.684677 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T12:52:48.685158 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T12:52:48.685525 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T12:52:48.685989 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T12:52:48.686428 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T12:52:48.686939 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T12:52:48.687431 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T12:52:48.687870 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T12:52:48.692220 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T12:52:48.692967 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T12:52:48.693705 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T12:52:48.694459 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T12:52:48.696216 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T12:52:48.696931 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T12:52:48.697500 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T12:52:48.698005 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T12:52:48.698501 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T12:52:48.699011 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T12:52:48.848596 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T12:52:48.854934 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T12:52:48.855497 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T12:52:48.856061 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T12:52:48.856640 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T12:52:48.857106 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T12:52:48.857579 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T12:52:48.858033 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T12:52:48.858507 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T12:52:48.858969 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T12:52:48.859470 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T12:52:48.859975 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T12:52:48.860464 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T12:52:48.861046 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T12:52:48.861462 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T12:52:48.861851 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T12:52:48.862283 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T12:52:48.862707 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T12:52:48.863241 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T12:52:48.863751 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T12:52:48.864254 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T12:52:48.864774 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T12:52:48.865301 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T12:52:48.865705 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T12:52:48.866156 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T12:52:48.866657 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T12:52:48.867026 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T12:52:48.867356 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T12:52:48.867794 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T12:52:48.868153 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T12:52:48.868482 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T12:52:48.868867 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T12:52:48.869307 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T12:52:48.869720 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T12:52:48.870107 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T12:52:48.870531 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T12:52:48.870887 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T12:52:48.871236 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T12:52:48.871749 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T12:52:48.872212 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T12:52:48.872665 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T12:52:48.873137 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T12:52:48.873565 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T12:52:48.874701 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T12:52:48.875325 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T12:52:48.875887 #14971] INFO -- py3-windows-10-1909: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T12:52:48.876361 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.876884 #14971] INFO -- py3-windows-10-1909: ID: rename-extract +I, [2020-03-06T12:52:48.877383 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:48.877871 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.878342 #14971] INFO -- py3-windows-10-1909: Comment: file.rename: True +I, [2020-03-06T12:52:48.878842 #14971] INFO -- py3-windows-10-1909: Started: 09:49:39.422632 +I, [2020-03-06T12:52:48.879255 #14971] INFO -- py3-windows-10-1909: Duration: 15.62 ms +I, [2020-03-06T12:52:48.879659 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.880100 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.880473 #14971] INFO -- py3-windows-10-1909: file.rename: +I, [2020-03-06T12:52:48.880854 #14971] INFO -- py3-windows-10-1909: True +I, [2020-03-06T12:52:48.881248 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.881647 #14971] INFO -- py3-windows-10-1909: ID: pkg.refresh_db +I, [2020-03-06T12:52:48.882090 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:48.882555 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.882977 #14971] INFO -- py3-windows-10-1909: Comment: check_cmd determined the state succeeded +I, [2020-03-06T12:52:48.883434 #14971] INFO -- py3-windows-10-1909: Started: 09:49:39.438252 +I, [2020-03-06T12:52:48.883867 #14971] INFO -- py3-windows-10-1909: Duration: 15468.808 ms +I, [2020-03-06T12:52:48.884260 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.884677 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.885061 #14971] INFO -- py3-windows-10-1909: pkg.refresh_db: +I, [2020-03-06T12:52:48.885492 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.885927 #14971] INFO -- py3-windows-10-1909: failed: +I, [2020-03-06T12:52:48.886354 #14971] INFO -- py3-windows-10-1909: 0 +I, [2020-03-06T12:52:48.886893 #14971] INFO -- py3-windows-10-1909: success: +I, [2020-03-06T12:52:48.887522 #14971] INFO -- py3-windows-10-1909: 298 +I, [2020-03-06T12:52:48.888100 #14971] INFO -- py3-windows-10-1909: total: +I, [2020-03-06T12:52:48.888636 #14971] INFO -- py3-windows-10-1909: 298 +I, [2020-03-06T12:52:48.889114 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.889626 #14971] INFO -- py3-windows-10-1909: ID: 7zip +I, [2020-03-06T12:52:48.890137 #14971] INFO -- py3-windows-10-1909: Function: pkg.installed +I, [2020-03-06T12:52:48.890747 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.891284 #14971] INFO -- py3-windows-10-1909: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T12:52:48.891772 #14971] INFO -- py3-windows-10-1909: Started: 09:49:54.942496 +I, [2020-03-06T12:52:48.892243 #14971] INFO -- py3-windows-10-1909: Duration: 2558.29 ms +I, [2020-03-06T12:52:48.892654 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.893028 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.893506 #14971] INFO -- py3-windows-10-1909: 7zip: +I, [2020-03-06T12:52:48.893984 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.894432 #14971] INFO -- py3-windows-10-1909: new: +I, [2020-03-06T12:52:48.894952 #14971] INFO -- py3-windows-10-1909: 18.06.00.0 +I, [2020-03-06T12:52:48.895457 #14971] INFO -- py3-windows-10-1909: old: +I, [2020-03-06T12:52:48.895895 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.896327 #14971] INFO -- py3-windows-10-1909: ID: kdiff3 +I, [2020-03-06T12:52:48.896777 #14971] INFO -- py3-windows-10-1909: Function: pkg.installed +I, [2020-03-06T12:52:48.897235 #14971] INFO -- py3-windows-10-1909: Result: False +I, [2020-03-06T12:52:48.897611 #14971] INFO -- py3-windows-10-1909: Comment: An exception occurred in this state: Traceback (most recent call last): +I, [2020-03-06T12:52:48.898103 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call +I, [2020-03-06T12:52:48.898565 #14971] INFO -- py3-windows-10-1909: **cdata['kwargs']) +I, [2020-03-06T12:52:48.898999 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper +I, [2020-03-06T12:52:48.899392 #14971] INFO -- py3-windows-10-1909: return f(*args, **kwargs) +I, [2020-03-06T12:52:48.899881 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed +I, [2020-03-06T12:52:48.900254 #14971] INFO -- py3-windows-10-1909: **kwargs) +I, [2020-03-06T12:52:48.900657 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install +I, [2020-03-06T12:52:48.901132 #14971] INFO -- py3-windows-10-1909: cached_pkg = __salt__['cp.cache_file'](installer, saltenv) +I, [2020-03-06T12:52:48.901484 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file +I, [2020-03-06T12:52:48.901873 #14971] INFO -- py3-windows-10-1909: result = _client().cache_file(path, saltenv, source_hash=source_hash) +I, [2020-03-06T12:52:48.906487 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file +I, [2020-03-06T12:52:48.907075 #14971] INFO -- py3-windows-10-1909: path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) +I, [2020-03-06T12:52:48.907535 #14971] INFO -- py3-windows-10-1909: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url +I, [2020-03-06T12:52:48.907953 #14971] INFO -- py3-windows-10-1909: raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +I, [2020-03-06T12:52:48.909139 #14971] INFO -- py3-windows-10-1909: salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe +I, [2020-03-06T12:52:48.909707 #14971] INFO -- py3-windows-10-1909: Started: 09:49:57.610325 +I, [2020-03-06T12:52:48.910121 #14971] INFO -- py3-windows-10-1909: Duration: 45125.264 ms +I, [2020-03-06T12:52:48.910570 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.911067 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.911433 #14971] INFO -- py3-windows-10-1909: ID: git +I, [2020-03-06T12:52:48.911898 #14971] INFO -- py3-windows-10-1909: Function: pkg.installed +I, [2020-03-06T12:52:48.912320 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.912706 #14971] INFO -- py3-windows-10-1909: Comment: The following packages were installed/updated: git +I, [2020-03-06T12:52:48.913062 #14971] INFO -- py3-windows-10-1909: Started: 09:50:42.751420 +I, [2020-03-06T12:52:48.913479 #14971] INFO -- py3-windows-10-1909: Duration: 40593.057 ms +I, [2020-03-06T12:52:48.913921 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.914279 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.914712 #14971] INFO -- py3-windows-10-1909: git: +I, [2020-03-06T12:52:48.915146 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.915616 #14971] INFO -- py3-windows-10-1909: new: +I, [2020-03-06T12:52:48.916014 #14971] INFO -- py3-windows-10-1909: 2.23.0.windows.1 +I, [2020-03-06T12:52:48.916398 #14971] INFO -- py3-windows-10-1909: old: +I, [2020-03-06T12:52:48.916751 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.917168 #14971] INFO -- py3-windows-10-1909: ID: windows_environment.refresh.path +I, [2020-03-06T12:52:48.917638 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:48.917996 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.918345 #14971] INFO -- py3-windows-10-1909: Comment: windows_environment.refresh: Success +I, [2020-03-06T12:52:48.918695 #14971] INFO -- py3-windows-10-1909: Started: 09:51:23.361365 +I, [2020-03-06T12:52:48.919023 #14971] INFO -- py3-windows-10-1909: Duration: 76.851 ms +I, [2020-03-06T12:52:48.919456 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.919824 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.920159 #14971] INFO -- py3-windows-10-1909: windows_environment.refresh: +I, [2020-03-06T12:52:48.920505 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.920867 #14971] INFO -- py3-windows-10-1909: PATH: +I, [2020-03-06T12:52:48.921326 #14971] INFO -- py3-windows-10-1909: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T12:52:48.921700 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.922046 #14971] INFO -- py3-windows-10-1909: ID: chocolatey.bootstrap +I, [2020-03-06T12:52:48.922457 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:48.922805 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.923299 #14971] INFO -- py3-windows-10-1909: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T12:52:48.923639 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.923986 #14971] INFO -- py3-windows-10-1909: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T12:52:48.924410 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.924853 #14971] INFO -- py3-windows-10-1909: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T12:52:48.925177 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.925621 #14971] INFO -- py3-windows-10-1909: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T12:52:48.926072 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.926559 #14971] INFO -- py3-windows-10-1909: Installing chocolatey on this machine +I, [2020-03-06T12:52:48.926962 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.927410 #14971] INFO -- py3-windows-10-1909: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T12:52:48.927849 #14971] INFO -- py3-windows-10-1909: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T12:52:48.928235 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.928656 #14971] INFO -- py3-windows-10-1909: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T12:52:48.929074 #14971] INFO -- py3-windows-10-1909: before you can use choco. +I, [2020-03-06T12:52:48.929509 #14971] INFO -- py3-windows-10-1909: Restricting write permissions to Administrators +I, [2020-03-06T12:52:48.929880 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.930305 #14971] INFO -- py3-windows-10-1909: We are setting up the Chocolatey package repository. +I, [2020-03-06T12:52:48.930669 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.931134 #14971] INFO -- py3-windows-10-1909: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T12:52:48.931568 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.931996 #14971] INFO -- py3-windows-10-1909: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T12:52:48.932395 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.932865 #14971] INFO -- py3-windows-10-1909: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T12:52:48.933310 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.933858 #14971] INFO -- py3-windows-10-1909: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T12:52:48.934350 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.934876 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.935373 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.935907 #14971] INFO -- py3-windows-10-1909: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T12:52:48.936403 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.936909 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.937397 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.937964 #14971] INFO -- py3-windows-10-1909: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T12:52:48.938550 #14971] INFO -- py3-windows-10-1909: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T12:52:48.939088 #14971] INFO -- py3-windows-10-1909: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T12:52:48.939653 #14971] INFO -- py3-windows-10-1909: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T12:52:48.940198 #14971] INFO -- py3-windows-10-1909: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T12:52:48.940677 #14971] INFO -- py3-windows-10-1909: Attempting to locate it from bootstrapper. +I, [2020-03-06T12:52:48.941053 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.941419 #14971] INFO -- py3-windows-10-1909: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T12:52:48.941861 #14971] INFO -- py3-windows-10-1909: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T12:52:48.942293 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.942742 #14971] INFO -- py3-windows-10-1909: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T12:52:48.943303 #14971] INFO -- py3-windows-10-1909: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T12:52:48.943807 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.944391 #14971] INFO -- py3-windows-10-1909: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T12:52:48.944845 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.945369 #14971] INFO -- py3-windows-10-1909: Run choco /? for a list of functions. +I, [2020-03-06T12:52:48.945767 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.946191 #14971] INFO -- py3-windows-10-1909: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T12:52:48.946616 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.947069 #14971] INFO -- py3-windows-10-1909: first prior to using choco. +I, [2020-03-06T12:52:48.947518 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.948065 #14971] INFO -- py3-windows-10-1909: Ensuring chocolatey commands are on the path +I, [2020-03-06T12:52:48.948534 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.949068 #14971] INFO -- py3-windows-10-1909: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T12:52:48.949577 #14971] INFO -- py3-windows-10-1909: Started: 09:51:23.438216 +I, [2020-03-06T12:52:48.950113 #14971] INFO -- py3-windows-10-1909: Duration: 44852.09 ms +I, [2020-03-06T12:52:48.950595 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.951107 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.951583 #14971] INFO -- py3-windows-10-1909: chocolatey.bootstrap: +I, [2020-03-06T12:52:48.952134 #14971] INFO -- py3-windows-10-1909: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T12:52:48.952665 #14971] INFO -- py3-windows-10-1909: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T12:52:48.953221 #14971] INFO -- py3-windows-10-1909: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T12:52:48.953714 #14971] INFO -- py3-windows-10-1909: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T12:52:48.957676 #14971] INFO -- py3-windows-10-1909: Installing chocolatey on this machine +I, [2020-03-06T12:52:48.958255 #14971] INFO -- py3-windows-10-1909: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T12:52:48.958726 #14971] INFO -- py3-windows-10-1909: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T12:52:48.959222 #14971] INFO -- py3-windows-10-1909: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T12:52:48.959790 #14971] INFO -- py3-windows-10-1909: before you can use choco. +I, [2020-03-06T12:52:48.960355 #14971] INFO -- py3-windows-10-1909: Restricting write permissions to Administrators +I, [2020-03-06T12:52:48.960951 #14971] INFO -- py3-windows-10-1909: We are setting up the Chocolatey package repository. +I, [2020-03-06T12:52:48.961506 #14971] INFO -- py3-windows-10-1909: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T12:52:48.962100 #14971] INFO -- py3-windows-10-1909: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T12:52:48.962649 #14971] INFO -- py3-windows-10-1909: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T12:52:48.963235 #14971] INFO -- py3-windows-10-1909: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T12:52:48.963784 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.964320 #14971] INFO -- py3-windows-10-1909: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T12:52:48.964880 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:48.965434 #14971] INFO -- py3-windows-10-1909: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T12:52:48.965996 #14971] INFO -- py3-windows-10-1909: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T12:52:48.966549 #14971] INFO -- py3-windows-10-1909: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T12:52:48.967107 #14971] INFO -- py3-windows-10-1909: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T12:52:48.967666 #14971] INFO -- py3-windows-10-1909: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T12:52:48.968213 #14971] INFO -- py3-windows-10-1909: Attempting to locate it from bootstrapper. +I, [2020-03-06T12:52:48.968777 #14971] INFO -- py3-windows-10-1909: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T12:52:48.969343 #14971] INFO -- py3-windows-10-1909: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T12:52:48.969924 #14971] INFO -- py3-windows-10-1909: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T12:52:48.970462 #14971] INFO -- py3-windows-10-1909: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T12:52:48.971050 #14971] INFO -- py3-windows-10-1909: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T12:52:48.971614 #14971] INFO -- py3-windows-10-1909: Run choco /? for a list of functions. +I, [2020-03-06T12:52:48.972156 #14971] INFO -- py3-windows-10-1909: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T12:52:48.972720 #14971] INFO -- py3-windows-10-1909: first prior to using choco. +I, [2020-03-06T12:52:48.973252 #14971] INFO -- py3-windows-10-1909: Ensuring chocolatey commands are on the path +I, [2020-03-06T12:52:48.973802 #14971] INFO -- py3-windows-10-1909: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T12:52:48.974289 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.974808 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T12:52:48.975313 #14971] INFO -- py3-windows-10-1909: Function: chocolatey.installed +I, [2020-03-06T12:52:48.975805 #14971] INFO -- py3-windows-10-1909: Name: windirstat +I, [2020-03-06T12:52:48.976316 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.976713 #14971] INFO -- py3-windows-10-1909: Comment: +I, [2020-03-06T12:52:48.977122 #14971] INFO -- py3-windows-10-1909: Started: 09:52:08.290306 +I, [2020-03-06T12:52:48.977585 #14971] INFO -- py3-windows-10-1909: Duration: 15991.259 ms +I, [2020-03-06T12:52:48.977981 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.978426 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.978873 #14971] INFO -- py3-windows-10-1909: windirstat: +I, [2020-03-06T12:52:48.979315 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.979745 #14971] INFO -- py3-windows-10-1909: new: +I, [2020-03-06T12:52:48.980235 #14971] INFO -- py3-windows-10-1909: - 1.1.2.20161210 +I, [2020-03-06T12:52:48.980676 #14971] INFO -- py3-windows-10-1909: old: +I, [2020-03-06T12:52:48.981112 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.981602 #14971] INFO -- py3-windows-10-1909: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T12:52:48.982086 #14971] INFO -- py3-windows-10-1909: Function: chocolatey.installed +I, [2020-03-06T12:52:48.982583 #14971] INFO -- py3-windows-10-1909: Name: notepadplusplus +I, [2020-03-06T12:52:48.983056 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.983547 #14971] INFO -- py3-windows-10-1909: Comment: +I, [2020-03-06T12:52:48.984005 #14971] INFO -- py3-windows-10-1909: Started: 09:52:24.282299 +I, [2020-03-06T12:52:48.984495 #14971] INFO -- py3-windows-10-1909: Duration: 14483.027 ms +I, [2020-03-06T12:52:48.984977 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.985460 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.985965 #14971] INFO -- py3-windows-10-1909: notepadplusplus: +I, [2020-03-06T12:52:48.986450 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.986925 #14971] INFO -- py3-windows-10-1909: new: +I, [2020-03-06T12:52:48.987418 #14971] INFO -- py3-windows-10-1909: - 7.8.5 +I, [2020-03-06T12:52:48.987909 #14971] INFO -- py3-windows-10-1909: old: +I, [2020-03-06T12:52:48.988464 #14971] INFO -- py3-windows-10-1909: notepadplusplus.install: +I, [2020-03-06T12:52:48.988999 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.989558 #14971] INFO -- py3-windows-10-1909: new: +I, [2020-03-06T12:52:48.990035 #14971] INFO -- py3-windows-10-1909: - 7.8.5 +I, [2020-03-06T12:52:48.990442 #14971] INFO -- py3-windows-10-1909: old: +I, [2020-03-06T12:52:48.990899 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.991386 #14971] INFO -- py3-windows-10-1909: ID: windows.system.desktop.optional_features.installed.TelnetClient +I, [2020-03-06T12:52:48.991788 #14971] INFO -- py3-windows-10-1909: Function: dism.feature_installed +I, [2020-03-06T12:52:48.992216 #14971] INFO -- py3-windows-10-1909: Name: TelnetClient +I, [2020-03-06T12:52:48.992692 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:48.993113 #14971] INFO -- py3-windows-10-1909: Comment: Installed TelnetClient +I, [2020-03-06T12:52:48.993538 #14971] INFO -- py3-windows-10-1909: Started: 09:52:38.765326 +I, [2020-03-06T12:52:48.994034 #14971] INFO -- py3-windows-10-1909: Duration: 8916.207 ms +I, [2020-03-06T12:52:48.994529 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:48.995057 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.995585 #14971] INFO -- py3-windows-10-1909: feature: +I, [2020-03-06T12:52:48.996034 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:48.996462 #14971] INFO -- py3-windows-10-1909: new: +I, [2020-03-06T12:52:48.996927 #14971] INFO -- py3-windows-10-1909: - TelnetClient +I, [2020-03-06T12:52:48.997330 #14971] INFO -- py3-windows-10-1909: pid: +I, [2020-03-06T12:52:48.997792 #14971] INFO -- py3-windows-10-1909: 1392 +I, [2020-03-06T12:52:48.998209 #14971] INFO -- py3-windows-10-1909: retcode: +I, [2020-03-06T12:52:48.998676 #14971] INFO -- py3-windows-10-1909: 0 +I, [2020-03-06T12:52:48.999216 #14971] INFO -- py3-windows-10-1909: stderr: +I, [2020-03-06T12:52:48.999716 #14971] INFO -- py3-windows-10-1909: stdout: +I, [2020-03-06T12:52:49.000227 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:49.000769 #14971] INFO -- py3-windows-10-1909: ID: windows.module.system.reboot +I, [2020-03-06T12:52:49.001261 #14971] INFO -- py3-windows-10-1909: Function: module.run +I, [2020-03-06T12:52:49.001772 #14971] INFO -- py3-windows-10-1909: Result: True +I, [2020-03-06T12:52:49.002278 #14971] INFO -- py3-windows-10-1909: Comment: system.reboot: True +I, [2020-03-06T12:52:49.002787 #14971] INFO -- py3-windows-10-1909: Started: 09:52:47.681533 +I, [2020-03-06T12:52:49.003275 #14971] INFO -- py3-windows-10-1909: Duration: 251.91 ms +I, [2020-03-06T12:52:49.003797 #14971] INFO -- py3-windows-10-1909: Changes: +I, [2020-03-06T12:52:49.004294 #14971] INFO -- py3-windows-10-1909: ---------- +I, [2020-03-06T12:52:49.004820 #14971] INFO -- py3-windows-10-1909: system.reboot: +I, [2020-03-06T12:52:49.005342 #14971] INFO -- py3-windows-10-1909: True +I, [2020-03-06T12:52:49.005816 #14971] INFO -- py3-windows-10-1909: +I, [2020-03-06T12:52:49.006308 #14971] INFO -- py3-windows-10-1909: Summary for local +I, [2020-03-06T12:52:49.006814 #14971] INFO -- py3-windows-10-1909: ------------- +I, [2020-03-06T12:52:49.007257 #14971] INFO -- py3-windows-10-1909: Succeeded: 24 (changed=24) +I, [2020-03-06T12:52:49.007647 #14971] INFO -- py3-windows-10-1909: Failed: 1 +I, [2020-03-06T12:52:49.012226 #14971] INFO -- py3-windows-10-1909: ------------- +I, [2020-03-06T12:52:49.012898 #14971] INFO -- py3-windows-10-1909: Total states run: 25 +I, [2020-03-06T12:52:49.013543 #14971] INFO -- py3-windows-10-1909: Total run time: 242.688 s +E, [2020-03-06T12:52:49.207899 #14971] ERROR -- py3-windows-10-1909: Converge failed on instance . +E, [2020-03-06T12:52:49.208081 #14971] ERROR -- py3-windows-10-1909: ------Exception------- +E, [2020-03-06T12:52:49.208118 #14971] ERROR -- py3-windows-10-1909: Class: Kitchen::ActionFailed +E, [2020-03-06T12:52:49.208169 #14971] ERROR -- py3-windows-10-1909: Message: WinRM exited (2) for command: [(get-content $env:TEMP\kitchen\etc\salt\minion) -replace '\$env:TEMP', $env:TEMP | set-content $env:TEMP\kitchen\etc\salt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir=$env:TEMP\kitchen\etc\salt state.highstate --log-level=warning --retcode-passthrough 2>&1 ; exit $LASTEXITCODE] +E, [2020-03-06T12:52:49.208212 #14971] ERROR -- py3-windows-10-1909: ---------------------- +E, [2020-03-06T12:52:49.208245 #14971] ERROR -- py3-windows-10-1909: ------Backtrace------- +E, [2020-03-06T12:52:49.208267 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:95:in `rescue in call' +E, [2020-03-06T12:52:49.208288 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:94:in `call' +E, [2020-03-06T12:52:49.208310 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:409:in `block in converge_action' +E, [2020-03-06T12:52:49.208331 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:552:in `synchronize_or_call' +E, [2020-03-06T12:52:49.208357 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:514:in `block in action' +E, [2020-03-06T12:52:49.208380 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T12:52:49.208403 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:513:in `action' +E, [2020-03-06T12:52:49.208425 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:404:in `converge_action' +E, [2020-03-06T12:52:49.208446 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:382:in `block (2 levels) in transition_to' +E, [2020-03-06T12:52:49.208466 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/lifecycle_hooks.rb:45:in `run_with_hooks' +E, [2020-03-06T12:52:49.208487 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:381:in `block in transition_to' +E, [2020-03-06T12:52:49.208508 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `each' +E, [2020-03-06T12:52:49.208529 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `transition_to' +E, [2020-03-06T12:52:49.208549 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:162:in `verify' +E, [2020-03-06T12:52:49.208571 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:191:in `block in test' +E, [2020-03-06T12:52:49.208592 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T12:52:49.208612 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:187:in `test' +E, [2020-03-06T12:52:49.208634 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `public_send' +E, [2020-03-06T12:52:49.208654 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `run_action_in_thread' +E, [2020-03-06T12:52:49.208676 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:169:in `block (2 levels) in run_action' +E, [2020-03-06T12:52:49.208697 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/logging-2.2.2/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context' +E, [2020-03-06T12:52:49.208718 #14971] ERROR -- py3-windows-10-1909: ----End Backtrace----- +E, [2020-03-06T12:52:49.208740 #14971] ERROR -- py3-windows-10-1909: ---Nested Exception--- +E, [2020-03-06T12:52:49.208760 #14971] ERROR -- py3-windows-10-1909: Class: Kitchen::Transport::WinrmFailed +E, [2020-03-06T12:52:49.208781 #14971] ERROR -- py3-windows-10-1909: Message: WinRM exited (2) for command: [(get-content $env:TEMP\kitchen\etc\salt\minion) -replace '\$env:TEMP', $env:TEMP | set-content $env:TEMP\kitchen\etc\salt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir=$env:TEMP\kitchen\etc\salt state.highstate --log-level=warning --retcode-passthrough 2>&1 ; exit $LASTEXITCODE] +E, [2020-03-06T12:52:49.208801 #14971] ERROR -- py3-windows-10-1909: ---------------------- +E, [2020-03-06T12:52:49.208820 #14971] ERROR -- py3-windows-10-1909: ------Backtrace------- +E, [2020-03-06T12:52:49.208841 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:95:in `rescue in call' +E, [2020-03-06T12:52:49.208863 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/provisioner/base.rb:94:in `call' +E, [2020-03-06T12:52:49.208886 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:409:in `block in converge_action' +E, [2020-03-06T12:52:49.208909 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:552:in `synchronize_or_call' +E, [2020-03-06T12:52:49.208936 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:514:in `block in action' +E, [2020-03-06T12:52:49.208968 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T12:52:49.208999 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:513:in `action' +E, [2020-03-06T12:52:49.209021 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:404:in `converge_action' +E, [2020-03-06T12:52:49.209043 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:382:in `block (2 levels) in transition_to' +E, [2020-03-06T12:52:49.209063 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/lifecycle_hooks.rb:45:in `run_with_hooks' +E, [2020-03-06T12:52:49.209084 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:381:in `block in transition_to' +E, [2020-03-06T12:52:49.209109 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `each' +E, [2020-03-06T12:52:49.209150 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:380:in `transition_to' +E, [2020-03-06T12:52:49.209186 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:162:in `verify' +E, [2020-03-06T12:52:49.209217 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:191:in `block in test' +E, [2020-03-06T12:52:49.209238 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/2.6.0/benchmark.rb:293:in `measure' +E, [2020-03-06T12:52:49.209259 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/instance.rb:187:in `test' +E, [2020-03-06T12:52:49.209281 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `public_send' +E, [2020-03-06T12:52:49.209302 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:198:in `run_action_in_thread' +E, [2020-03-06T12:52:49.209324 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/test-kitchen-2.3.4/lib/kitchen/command.rb:169:in `block (2 levels) in run_action' +E, [2020-03-06T12:52:49.209344 #14971] ERROR -- py3-windows-10-1909: /opt/chefdk/embedded/lib/ruby/gems/2.6.0/gems/logging-2.2.2/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context' +E, [2020-03-06T12:52:49.209365 #14971] ERROR -- py3-windows-10-1909: ----End Backtrace----- +I, [2020-03-06T12:52:49.212031 #14971] INFO -- py3-windows-10-1909: -----> Destroying ... +I, [2020-03-06T12:53:00.309465 #14971] INFO -- py3-windows-10-1909: ==> default: Forcing shutdown of VM... +I, [2020-03-06T12:53:02.242098 #14971] INFO -- py3-windows-10-1909: ==> default: Destroying VM and associated drives... +I, [2020-03-06T12:53:02.906703 #14971] INFO -- py3-windows-10-1909: Vagrant instance destroyed. +I, [2020-03-06T12:53:02.907999 #14971] INFO -- py3-windows-10-1909: Finished destroying (0m13.69s). diff --git a/test/results/py3-windows-10-1909.log b/test/results/py3-windows-10-1909.log index 76a2837..847174d 100644 --- a/test/results/py3-windows-10-1909.log +++ b/test/results/py3-windows-10-1909.log @@ -1,15 +1,13 @@ -Wed Mar 4 14:45:39 EST 2020 -commit 83df63b728d6440d0a2e75a16942f0c1d8916fb0 +Fri Mar 6 12:44:45 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Author: Peter Mudd -Date: Mon Mar 2 12:13:52 2020 -0500 +Date: Fri Mar 6 12:43:24 2020 -0500 - feat: convert `template-formula` to `windows-formula` - - BREAKING CHANGE: changed all state names and ids + feat: support saltstack 3000 CURRENT BRANCH COMMIT ID -83df63b728d6440d0a2e75a16942f0c1d8916fb0 +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e CURRENT RELEASE TAG -v1.0.1 +v1.0.0 -----> Starting Test Kitchen (v2.3.4) -----> Cleaning up any prior instances of -----> Destroying ... @@ -20,7 +18,7 @@ v1.0.1 ==> default: Cloning VM... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'StefanScherer/windows_10' version '2020.02.12' is up to date... - ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1909-8a7d1fa2-b8a5-4cf4-ab41-fac100dd9dee + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-10-1909-a375ff2f-b9c2-448e-b6e2-f2b60ee84b52 ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat @@ -44,7 +42,7 @@ v1.0.1 [WinRM] Established Vagrant instance created. - Finished creating (1m29.40s). + Finished creating (1m18.15s). -----> Converging ... Preparing files for transfer Preparing salt-minion @@ -60,12 +58,12 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 11:47 AM temp - Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + d----- 3/6/2020 9:46 AM temp + Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe Installing Salt minion Starting the Salt minion service Salt minion successfully installed - You asked for latest and you have 2019.2.3 installed, sweet! + You asked for latest and you have 3000 installed, sweet! @@ -75,7 +73,7 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 11:48 AM kitchen + d----- 3/6/2020 9:48 AM kitchen Transferring files to @@ -88,16 +86,34 @@ v1.0.1 Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') + [ERROR ] An exception occurred in this state: Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) + salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe + + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) @@ -113,8 +129,8 @@ v1.0.1 Name: saltstack1 Result: True Comment: The current hostname is 'vagrant-10', but will be changed to 'saltstack1' on the next reboot - Started: 11:49:11.843482 - Duration: 141.001 ms + Started: 09:48:44.798864 + Duration: 155.248 ms Changes: ---------- hostname: @@ -125,8 +141,8 @@ v1.0.1 Name: Saltstack Computer Description Result: True Comment: Computer description successfully changed to 'Saltstack Computer Description' - Started: 11:49:11.984483 - Duration: 3375.087 ms + Started: 09:48:44.970663 + Duration: 3514.631 ms Changes: ---------- new: @@ -138,8 +154,8 @@ v1.0.1 Name: America/New_York Result: True Comment: Set timezone America/New_York - Started: 11:49:15.437121 - Duration: 31.395 ms + Started: 09:48:48.595532 + Duration: 77.788 ms Changes: ---------- timezone: @@ -149,8 +165,8 @@ v1.0.1 Function: module.run Result: True Comment: environ.items: Success - Started: 11:49:15.484078 - Duration: 16.09 ms + Started: 09:48:48.735586 + Duration: 16.708 ms Changes: ---------- environ.items: @@ -183,8 +199,6 @@ v1.0.1 2 ONEDRIVE: C:\Users\vagrant\OneDrive - ONEDRIVECONSUMER: - C:\Users\vagrant\OneDrive OS: Windows_NT PATH: @@ -242,8 +256,8 @@ v1.0.1 Function: module.run Result: True Comment: user.current: VAGRANT-10\vagrant - Started: 11:49:15.500168 - Duration: 62.03 ms + Started: 09:48:48.752294 + Duration: 140.35 ms Changes: ---------- user.current: @@ -252,25 +266,25 @@ v1.0.1 ID: windows.module.status.uptime Function: module.run Result: True - Comment: status.uptime: 0:02:49.640585 - Started: 11:49:15.562198 - Duration: 78.387 ms + Comment: status.uptime: 0:03:07.110317 + Started: 09:48:48.892644 + Duration: 217.673 ms Changes: ---------- status.uptime: - 0:02:49.640585 + 0:03:07.110317 ---------- ID: windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection Function: cmd.run Name: Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers" run - Started: 11:49:15.671538 - Duration: 2985.848 ms + Started: 09:48:49.173430 + Duration: 4436.946 ms Changes: ---------- pid: - 1088 + 3488 retcode: 0 stderr: @@ -281,12 +295,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers" run - Started: 11:49:18.671337 - Duration: 2281.907 ms + Started: 09:48:53.610376 + Duration: 3734.954 ms Changes: ---------- pid: - 3700 + 6904 retcode: 0 stderr: @@ -297,12 +311,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers" run - Started: 11:49:20.953244 - Duration: 2296.386 ms + Started: 09:48:57.345330 + Duration: 3546.582 ms Changes: ---------- pid: - 6124 + 5368 retcode: 0 stderr: @@ -313,12 +327,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers" run - Started: 11:49:23.249630 - Duration: 2047.143 ms + Started: 09:49:00.891912 + Duration: 2749.656 ms Changes: ---------- pid: - 5760 + 1396 retcode: 0 stderr: @@ -329,12 +343,12 @@ v1.0.1 Name: Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers Result: True Comment: Command "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers" run - Started: 11:49:25.296773 - Duration: 2296.811 ms + Started: 09:49:03.641568 + Duration: 3906.203 ms Changes: ---------- pid: - 6356 + 7000 retcode: 0 stderr: @@ -345,8 +359,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 11:49:27.608902 - Duration: 14359.459 ms + Started: 09:49:07.563313 + Duration: 30312.592 ms Changes: ---------- reg: @@ -375,8 +389,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 11:49:41.968361 - Duration: 281.349 ms + Started: 09:49:37.875905 + Duration: 327.998 ms Changes: ---------- reg: @@ -405,8 +419,8 @@ v1.0.1 Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng Result: True Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs - Started: 11:49:42.249710 - Duration: 1062.816 ms + Started: 09:49:38.203903 + Duration: 1218.729 ms Changes: ---------- directories_created: @@ -775,8 +789,8 @@ v1.0.1 Function: module.run Result: True Comment: file.rename: True - Started: 11:49:43.312526 - Duration: 0.0 ms + Started: 09:49:39.422632 + Duration: 15.62 ms Changes: ---------- file.rename: @@ -786,8 +800,8 @@ v1.0.1 Function: module.run Result: True Comment: check_cmd determined the state succeeded - Started: 11:49:43.312526 - Duration: 11062.381 ms + Started: 09:49:39.438252 + Duration: 15468.808 ms Changes: ---------- pkg.refresh_db: @@ -799,26 +813,49 @@ v1.0.1 total: 298 ---------- - ID: kdiff3 + ID: 7zip Function: pkg.installed Result: True - Comment: The following packages were installed/updated: kdiff3 - Started: 11:49:54.390529 - Duration: 21921.56 ms + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 09:49:54.942496 + Duration: 2558.29 ms Changes: ---------- - kdiff3: + 7zip: ---------- new: - Not Found + 18.06.00.0 old: + ---------- + ID: kdiff3 + Function: pkg.installed + Result: False + Comment: An exception occurred in this state: Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) + salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe + Started: 09:49:57.610325 + Duration: 45125.264 ms + Changes: ---------- ID: git Function: pkg.installed Result: True Comment: The following packages were installed/updated: git - Started: 11:50:16.327669 - Duration: 29156.227 ms + Started: 09:50:42.751420 + Duration: 40593.057 ms Changes: ---------- git: @@ -826,27 +863,13 @@ v1.0.1 new: 2.23.0.windows.1 old: - ---------- - ID: 7zip - Function: pkg.installed - Result: True - Comment: The following packages were installed/updated: 7zip=18.06.00.0 - Started: 11:50:45.531147 - Duration: 11906.661 ms - Changes: - ---------- - 7zip: - ---------- - new: - 18.06.00.0 - old: ---------- ID: windows_environment.refresh.path Function: module.run Result: True Comment: windows_environment.refresh: Success - Started: 11:50:57.452939 - Duration: 31.49 ms + Started: 09:51:23.361365 + Duration: 76.851 ms Changes: ---------- windows_environment.refresh: @@ -914,8 +937,8 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder - Started: 11:50:57.484429 - Duration: 25890.413 ms + Started: 09:51:23.438216 + Duration: 44852.09 ms Changes: ---------- chocolatey.bootstrap: @@ -954,39 +977,39 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder ---------- - ID: windows.system.packages.chocolatey.notepadplusplus + ID: windows.system.packages.chocolatey.windirstat Function: chocolatey.installed - Name: notepadplusplus + Name: windirstat Result: True Comment: - Started: 11:51:23.374842 - Duration: 14015.269 ms + Started: 09:52:08.290306 + Duration: 15991.259 ms Changes: ---------- - notepadplusplus: - ---------- - new: - - 7.8.4 - old: - notepadplusplus.install: + windirstat: ---------- new: - - 7.8.4 + - 1.1.2.20161210 old: ---------- - ID: windows.system.packages.chocolatey.windirstat + ID: windows.system.packages.chocolatey.notepadplusplus Function: chocolatey.installed - Name: windirstat + Name: notepadplusplus Result: True Comment: - Started: 11:51:37.390111 - Duration: 11719.63 ms + Started: 09:52:24.282299 + Duration: 14483.027 ms Changes: ---------- - windirstat: + notepadplusplus: ---------- new: - - 1.1.2.20161210 + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 old: ---------- ID: windows.system.desktop.optional_features.installed.TelnetClient @@ -994,16 +1017,16 @@ v1.0.1 Name: TelnetClient Result: True Comment: Installed TelnetClient - Started: 11:51:49.109741 - Duration: 9078.133 ms + Started: 09:52:38.765326 + Duration: 8916.207 ms Changes: ---------- feature: ---------- new: - TelnetClient + - TelnetClient pid: - 5072 + 1392 retcode: 0 stderr: @@ -1013,8 +1036,8 @@ v1.0.1 Function: module.run Result: True Comment: system.reboot: True - Started: 11:51:58.187874 - Duration: 315.878 ms + Started: 09:52:47.681533 + Duration: 251.91 ms Changes: ---------- system.reboot: @@ -1022,70 +1045,16 @@ v1.0.1 Summary for local ------------- - Succeeded: 25 (changed=25) - Failed: 0 + Succeeded: 24 (changed=24) + Failed: 1 ------------- Total states run: 25 - Total run time: 166.413 s - Downloading files from - Finished converging (4m30.38s). ------> Setting up ... - Finished setting up (0m0.00s). ------> Verifying ... - Loaded default - [WinRM] 500 returned in cleanup with error: Bad HTTP response returned from server. Body(if present): (500). -`[WSMAN ERROR CODE: 995]: The I/O operation has been aborted because of either a thread exit or an application request. `, target may be rebooting after highstate. Remaining retries: 20 -`execution expired`, target may be rebooting after highstate. Remaining retries: 19 -`execution expired`, target may be rebooting after highstate. Remaining retries: 18 -`execution expired`, target may be rebooting after highstate. Remaining retries: 17 -`execution expired`, target may be rebooting after highstate. Remaining retries: 16 -INFO: Got pillar from the target minion using WinRM. - -Profile: SaltStack Windows Formula (default) -Version: (not specified) -Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 - - ✔ Operating System: - ✔ windows_10_enterprise_evaluation should include "windows" - ✔ Windows AppX Provisioned Package Uninstalled: salt.formula.windows.system.packages.appx.provisioned.uninstalled - ✔ Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed - ✔ Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed - ✔ Chocolatey Package Installed: salt.formula.windows.system.packages.chocolatey - ✔ Chocolatey package notepadplusplus should be installed - ✔ Chocolatey package windirstat should be installed - ✔ Chocolatey package windirstat version should cmp == "1.1.2.20161210" - ↺ Windows Features: salt.formula.windows.system.server.features - ↺ Skipped control due to only_if condition: only supported on servers - ✔ Chocolatey Installed: salt.modules.chocolatey.bootstrap - ✔ Command: `choco` should exist - ✔ Windows Timezone: salt.states.timezone.system - ✔ `Eastern Standard Time` timezone (converted from America/New_York) should be set - ✔ Windows Optional Features: salt.states.win_dism.feature_installed - ✔ Windows Optional Feature: `TelnetClient` should be installed - ✔ Windows Computer Hostname: salt.states.win_system.hostname - ✔ System Information hostname should cmp == "saltstack1" - ✔ Registry Key HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName ComputerName should cmp == "saltstack1" - ✔ Windows Computer Description: salt.states.win_system.computer_desc - ✔ Powershell stdout should match "Saltstack Computer Description" - ✔ Saltstack Package Installed: windows.system.packages.saltstack.installed - ✔ System Package Git should be installed - ✔ System Package 7-Zip should be installed - ✔ System Package 7-Zip version should cmp == "18.06.00.0" - ✔ System Package KDiff3 should be installed - - -Profile Summary: 9 successful controls, 0 control failures, 1 control skipped -Test Summary: 19 successful, 0 failures, 1 skipped - Finished verifying (1m9.26s). + Total run time: 242.688 s -----> Destroying ... ==> default: Forcing shutdown of VM... ==> default: Destroying VM and associated drives... Vagrant instance destroyed. - Finished destroying (0m11.89s). - Finished testing (7m20.98s). ------> Test Kitchen is finished. (7m34.55s) + Finished destroying (0m13.69s). +KITCHEN TEST DID NOT COMPLETE SUCCESSFULLY. KITCHEN TEST EXIT CODE -0 +20 diff --git a/test/results/py3-windows-10-1909.salt.log b/test/results/py3-windows-10-1909.salt.log index 1f617ab..6450407 100755 --- a/test/results/py3-windows-10-1909.salt.log +++ b/test/results/py3-windows-10-1909.salt.log @@ -1,31 +1,31 @@ -2020-03-04 11:49:01,015 [salt.loader :747 ][DEBUG ][6228] Grains refresh requested. Refreshing grains. -2020-03-04 11:49:01,015 [salt.config :2190][DEBUG ][6228] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 11:49:01,015 [salt.config :2334][DEBUG ][6228] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 11:49:01,015 [salt.config :2190][DEBUG ][6228] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 11:49:06,265 [salt.pillar :57 ][DEBUG ][6228] Determining pillar cache -2020-03-04 11:49:06,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:06,344 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:06,358 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 11:49:06,374 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 11:49:06,374 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:06,390 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +2020-03-06 09:48:25,624 [salt.loader :770 ][DEBUG ][6660] Grains refresh requested. Refreshing grains. +2020-03-06 09:48:25,627 [salt.config :2111][DEBUG ][6660] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 09:48:25,627 [salt.config :2255][DEBUG ][6660] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 09:48:25,627 [salt.config :2111][DEBUG ][6660] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 09:48:37,735 [salt.pillar :57 ][DEBUG ][6660] Determining pillar cache +2020-03-06 09:48:37,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:48:37,828 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:48:37,863 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 09:48:37,863 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 09:48:37,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.012188196182250977 +2020-03-06 09:48:37,876 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: --- base: "*": - windows -2020-03-04 11:49:06,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:37,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 11:49:06,390 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:06,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded confirm_top.confirm_top -2020-03-04 11:49:06,407 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded compound_match.match -2020-03-04 11:49:06,407 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6228] compound_match: vagrant-10 ? * -2020-03-04 11:49:06,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded glob_match.match -2020-03-04 11:49:06,421 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6228] compound_match vagrant-10 ? "*" => "True" -2020-03-04 11:49:06,421 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 11:49:06,438 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 11:49:06,438 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:06,438 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +2020-03-06 09:48:37,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:37,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded confirm_top.confirm_top +2020-03-06 09:48:37,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded compound_match.match +2020-03-06 09:48:37,907 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6660] compound_match: vagrant-10 ? * +2020-03-06 09:48:37,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded glob_match.match +2020-03-06 09:48:37,907 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6660] compound_match vagrant-10 ? "*" => "True" +2020-03-06 09:48:37,907 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 09:48:37,923 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 09:48:37,939 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.015619754791259766 +2020-03-06 09:48:37,939 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: # -*- coding: utf-8 -*- # vim: ft=yaml --- @@ -427,283 +427,292 @@ windows: password_never_expires: false disallow_change_password: false -2020-03-04 11:49:06,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:37,954 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 11:49:06,453 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015096187591552734 -2020-03-04 11:49:06,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:06,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:06,655 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded state.highstate -2020-03-04 11:49:06,672 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded direct_call.execute -2020-03-04 11:49:06,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded grains.get -2020-03-04 11:49:07,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded saltutil.is_running -2020-03-04 11:49:07,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded config.get -2020-03-04 11:49:07,140 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: test, ret: _|- -2020-03-04 11:49:07,172 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,112 [git.cmd :722 ][DEBUG ][6228] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) -2020-03-04 11:49:08,180 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,180 [salt.fileserver :502 ][DEBUG ][6228] Updating roots fileserver cache -2020-03-04 11:49:08,249 [salt.state :736 ][DEBUG ][6228] Gathering pillar data for state run -2020-03-04 11:49:08,249 [salt.state :750 ][DEBUG ][6228] Finished gathering pillar data for state run -2020-03-04 11:49:08,249 [salt.state :966 ][INFO ][6228] Loading fresh modules for state activity -2020-03-04 11:49:08,282 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:08,282 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:08,282 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' -2020-03-04 11:49:08,297 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' -2020-03-04 11:49:08,297 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' -2020-03-04 11:49:08,297 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:08,297 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'top.sls' -2020-03-04 11:49:08,312 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls -2020-03-04 11:49:08,312 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:08,343 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,343 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,343 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.030971288681030273 -2020-03-04 11:49:08,359 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +2020-03-06 09:48:37,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015108108520507812 +2020-03-06 09:48:38,048 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:48:38,048 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:48:38,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded state.highstate +2020-03-06 09:48:38,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded direct_call.execute +2020-03-06 09:48:38,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded grains.get +2020-03-06 09:48:38,722 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded saltutil.is_running +2020-03-06 09:48:38,909 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded config.get +2020-03-06 09:48:38,909 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: test, ret: _|- +2020-03-06 09:48:38,956 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:39,657 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:48:39,657 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:48:39,704 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:39,720 [salt.fileserver :502 ][DEBUG ][6660] Updating roots fileserver cache +2020-03-06 09:48:39,814 [salt.state :735 ][DEBUG ][6660] Gathering pillar data for state run +2020-03-06 09:48:39,814 [salt.state :749 ][DEBUG ][6660] Finished gathering pillar data for state run +2020-03-06 09:48:39,814 [salt.state :1014][INFO ][6660] Loading fresh modules for state activity +2020-03-06 09:48:39,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:48:39,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:48:39,875 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 09:48:39,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 09:48:39,891 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 09:48:39,891 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:39,907 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 09:48:39,907 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 09:48:39,907 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:39,953 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:39,986 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:39,986 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.0793004035949707 +2020-03-06 09:48:39,986 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: --- base: "*": - windows -2020-03-04 11:49:08,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:39,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 11:49:08,359 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:08,359 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded confirm_top.confirm_top -2020-03-04 11:49:08,359 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded compound_match.match -2020-03-04 11:49:08,359 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6228] compound_match: vagrant-10 ? * -2020-03-04 11:49:08,359 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded glob_match.match -2020-03-04 11:49:08,359 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6228] compound_match vagrant-10 ? "*" => "True" -2020-03-04 11:49:08,359 [salt.fileclient :1368][DEBUG ][6228] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. -2020-03-04 11:49:08,374 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded saltutil.sync_all -2020-03-04 11:49:08,374 [salt.loaded.int.module.saltutil:968 ][DEBUG ][6228] Syncing all -2020-03-04 11:49:08,374 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' -2020-03-04 11:49:08,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,405 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,405 [salt.utils.extmods:90 ][INFO ][6228] Syncing clouds for environment 'base' -2020-03-04 11:49:08,405 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_clouds, for base) -2020-03-04 11:49:08,405 [salt.fileclient :234 ][INFO ][6228] Caching directory '_clouds/' for environment 'base' -2020-03-04 11:49:08,422 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,422 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' -2020-03-04 11:49:08,436 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' -2020-03-04 11:49:08,459 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,470 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,470 [salt.utils.extmods:90 ][INFO ][6228] Syncing beacons for environment 'base' -2020-03-04 11:49:08,470 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_beacons, for base) -2020-03-04 11:49:08,470 [salt.fileclient :234 ][INFO ][6228] Caching directory '_beacons/' for environment 'base' -2020-03-04 11:49:08,470 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,470 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' -2020-03-04 11:49:08,470 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' -2020-03-04 11:49:08,504 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,504 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,515 [salt.utils.extmods:90 ][INFO ][6228] Syncing modules for environment 'base' -2020-03-04 11:49:08,515 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_modules, for base) -2020-03-04 11:49:08,515 [salt.fileclient :234 ][INFO ][6228] Caching directory '_modules/' for environment 'base' -2020-03-04 11:49:08,515 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 11:49:08,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 11:49:08,515 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' -2020-03-04 11:49:08,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:08,530 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' -2020-03-04 11:49:08,530 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' -2020-03-04 11:49:08,530 [salt.utils.extmods:119 ][INFO ][6228] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' -2020-03-04 11:49:08,546 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' -2020-03-04 11:49:08,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,593 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,593 [salt.utils.extmods:90 ][INFO ][6228] Syncing states for environment 'base' -2020-03-04 11:49:08,593 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_states, for base) -2020-03-04 11:49:08,593 [salt.fileclient :234 ][INFO ][6228] Caching directory '_states/' for environment 'base' -2020-03-04 11:49:08,593 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,593 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' -2020-03-04 11:49:08,609 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' -2020-03-04 11:49:08,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,656 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,656 [salt.utils.extmods:90 ][INFO ][6228] Syncing sdb for environment 'base' -2020-03-04 11:49:08,656 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_sdb, for base) -2020-03-04 11:49:08,656 [salt.fileclient :234 ][INFO ][6228] Caching directory '_sdb/' for environment 'base' -2020-03-04 11:49:08,656 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,656 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' -2020-03-04 11:49:08,656 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' -2020-03-04 11:49:08,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,718 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,718 [salt.utils.extmods:90 ][INFO ][6228] Syncing grains for environment 'base' -2020-03-04 11:49:08,718 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_grains, for base) -2020-03-04 11:49:08,718 [salt.fileclient :234 ][INFO ][6228] Caching directory '_grains/' for environment 'base' -2020-03-04 11:49:08,718 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,718 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' -2020-03-04 11:49:08,718 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' -2020-03-04 11:49:08,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,781 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,781 [salt.utils.extmods:90 ][INFO ][6228] Syncing renderers for environment 'base' -2020-03-04 11:49:08,781 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_renderers, for base) -2020-03-04 11:49:08,781 [salt.fileclient :234 ][INFO ][6228] Caching directory '_renderers/' for environment 'base' -2020-03-04 11:49:08,781 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,781 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' -2020-03-04 11:49:08,781 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' -2020-03-04 11:49:08,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,843 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,843 [salt.utils.extmods:90 ][INFO ][6228] Syncing returners for environment 'base' -2020-03-04 11:49:08,843 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_returners, for base) -2020-03-04 11:49:08,843 [salt.fileclient :234 ][INFO ][6228] Caching directory '_returners/' for environment 'base' -2020-03-04 11:49:08,843 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,843 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' -2020-03-04 11:49:08,859 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' -2020-03-04 11:49:08,874 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,890 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,890 [salt.utils.extmods:90 ][INFO ][6228] Syncing output for environment 'base' -2020-03-04 11:49:08,890 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_output, for base) -2020-03-04 11:49:08,890 [salt.fileclient :234 ][INFO ][6228] Caching directory '_output/' for environment 'base' -2020-03-04 11:49:08,890 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,906 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' -2020-03-04 11:49:08,906 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' -2020-03-04 11:49:08,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:08,984 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:08,984 [salt.utils.extmods:90 ][INFO ][6228] Syncing utils for environment 'base' -2020-03-04 11:49:08,984 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_utils, for base) -2020-03-04 11:49:08,999 [salt.fileclient :234 ][INFO ][6228] Caching directory '_utils/' for environment 'base' -2020-03-04 11:49:08,999 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:08,999 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' -2020-03-04 11:49:08,999 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' -2020-03-04 11:49:09,031 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:09,046 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:09,046 [salt.utils.extmods:90 ][INFO ][6228] Syncing log_handlers for environment 'base' -2020-03-04 11:49:09,062 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_log_handlers, for base) -2020-03-04 11:49:09,062 [salt.fileclient :234 ][INFO ][6228] Caching directory '_log_handlers/' for environment 'base' -2020-03-04 11:49:09,062 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:09,062 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' -2020-03-04 11:49:09,062 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' -2020-03-04 11:49:09,077 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:09,125 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:09,125 [salt.utils.extmods:90 ][INFO ][6228] Syncing proxy for environment 'base' -2020-03-04 11:49:09,125 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_proxy, for base) -2020-03-04 11:49:09,125 [salt.fileclient :234 ][INFO ][6228] Caching directory '_proxy/' for environment 'base' -2020-03-04 11:49:09,125 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:09,125 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' -2020-03-04 11:49:09,140 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' -2020-03-04 11:49:09,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:09,171 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:09,171 [salt.utils.extmods:90 ][INFO ][6228] Syncing engines for environment 'base' -2020-03-04 11:49:09,186 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_engines, for base) -2020-03-04 11:49:09,187 [salt.fileclient :234 ][INFO ][6228] Caching directory '_engines/' for environment 'base' -2020-03-04 11:49:09,187 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:09,187 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' -2020-03-04 11:49:09,187 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' -2020-03-04 11:49:09,204 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:09,218 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:09,218 [salt.utils.extmods:90 ][INFO ][6228] Syncing thorium for environment 'base' -2020-03-04 11:49:09,218 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_thorium, for base) -2020-03-04 11:49:09,218 [salt.fileclient :234 ][INFO ][6228] Caching directory '_thorium/' for environment 'base' -2020-03-04 11:49:09,218 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:09,218 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' -2020-03-04 11:49:09,233 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' -2020-03-04 11:49:09,250 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:09,265 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:09,265 [salt.utils.extmods:90 ][INFO ][6228] Syncing serializers for environment 'base' -2020-03-04 11:49:09,265 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_serializers, for base) -2020-03-04 11:49:09,265 [salt.fileclient :234 ][INFO ][6228] Caching directory '_serializers/' for environment 'base' -2020-03-04 11:49:09,265 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:09,265 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' -2020-03-04 11:49:09,265 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' -2020-03-04 11:49:09,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:09,312 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:09,312 [salt.utils.extmods:90 ][INFO ][6228] Syncing matchers for environment 'base' -2020-03-04 11:49:09,312 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_matchers, for base) -2020-03-04 11:49:09,312 [salt.fileclient :234 ][INFO ][6228] Caching directory '_matchers/' for environment 'base' -2020-03-04 11:49:09,312 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:09,312 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' -2020-03-04 11:49:09,312 [salt.utils.extmods:79 ][INFO ][6228] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' -2020-03-04 11:49:09,345 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:09,358 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:09,358 [salt.utils.extmods:90 ][INFO ][6228] Syncing pillar for environment 'base' -2020-03-04 11:49:09,358 [salt.utils.extmods:94 ][INFO ][6228] Loading cache from salt://_pillar, for base) -2020-03-04 11:49:09,358 [salt.fileclient :234 ][INFO ][6228] Caching directory '_pillar/' for environment 'base' -2020-03-04 11:49:09,358 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:09,358 [salt.utils.extmods:109 ][DEBUG ][6228] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' -2020-03-04 11:49:09,358 [salt.state :1000][DEBUG ][6228] Refreshing modules... -2020-03-04 11:49:09,374 [salt.state :966 ][INFO ][6228] Loading fresh modules for state activity -2020-03-04 11:49:09,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:09,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:09,421 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows.sls' in saltenv 'base' -2020-03-04 11:49:09,437 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 11:49:09,437 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 11:49:09,452 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' -2020-03-04 11:49:09,452 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,452 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' -2020-03-04 11:49:09,452 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls -2020-03-04 11:49:09,452 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:09,469 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:09,469 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:09,469 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' -2020-03-04 11:49:09,469 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,483 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' -2020-03-04 11:49:09,500 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:09,500 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:09,514 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' -2020-03-04 11:49:09,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,515 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' -2020-03-04 11:49:09,530 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:09,530 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:09,530 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:09,530 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,530 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' -2020-03-04 11:49:09,546 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:09,546 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:09,546 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:09,546 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,561 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' -2020-03-04 11:49:09,561 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:09,561 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:09,561 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' -2020-03-04 11:49:09,561 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,577 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' -2020-03-04 11:49:09,577 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:09,577 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:09,593 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:09,593 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,593 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' -2020-03-04 11:49:09,609 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:09,609 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:09,609 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:09,609 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,609 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' -2020-03-04 11:49:09,624 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded config.get -2020-03-04 11:49:09,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded grains.filter_by -2020-03-04 11:49:09,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.18741416931152344 -2020-03-04 11:49:09,640 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +2020-03-06 09:48:39,986 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:40,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded confirm_top.confirm_top +2020-03-06 09:48:40,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded compound_match.match +2020-03-06 09:48:40,016 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][6660] compound_match: vagrant-10 ? * +2020-03-06 09:48:40,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded glob_match.match +2020-03-06 09:48:40,016 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][6660] compound_match vagrant-10 ? "*" => "True" +2020-03-06 09:48:40,016 [salt.fileclient :1376][DEBUG ][6660] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 09:48:40,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded saltutil.sync_all +2020-03-06 09:48:40,032 [salt.loaded.int.module.saltutil:1009][DEBUG ][6660] Syncing all +2020-03-06 09:48:40,032 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 09:48:40,078 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,098 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,098 [salt.utils.extmods:90 ][INFO ][6660] Syncing clouds for environment 'base' +2020-03-06 09:48:40,098 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_clouds, for base) +2020-03-06 09:48:40,098 [salt.fileclient :234 ][INFO ][6660] Caching directory '_clouds/' for environment 'base' +2020-03-06 09:48:40,126 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,126 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 09:48:40,126 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 09:48:40,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,173 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,173 [salt.utils.extmods:90 ][INFO ][6660] Syncing beacons for environment 'base' +2020-03-06 09:48:40,173 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_beacons, for base) +2020-03-06 09:48:40,188 [salt.fileclient :234 ][INFO ][6660] Caching directory '_beacons/' for environment 'base' +2020-03-06 09:48:40,188 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,188 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 09:48:40,188 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 09:48:40,219 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,235 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,235 [salt.utils.extmods:90 ][INFO ][6660] Syncing modules for environment 'base' +2020-03-06 09:48:40,235 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_modules, for base) +2020-03-06 09:48:40,235 [salt.fileclient :234 ][INFO ][6660] Caching directory '_modules/' for environment 'base' +2020-03-06 09:48:40,235 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,250 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 09:48:40,250 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 09:48:40,266 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 09:48:40,266 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:40,266 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 09:48:40,266 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 09:48:40,266 [salt.utils.extmods:119 ][INFO ][6660] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 09:48:40,282 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 09:48:40,314 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,328 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,328 [salt.utils.extmods:90 ][INFO ][6660] Syncing states for environment 'base' +2020-03-06 09:48:40,328 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_states, for base) +2020-03-06 09:48:40,328 [salt.fileclient :234 ][INFO ][6660] Caching directory '_states/' for environment 'base' +2020-03-06 09:48:40,328 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,328 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 09:48:40,328 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 09:48:40,361 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,391 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,391 [salt.utils.extmods:90 ][INFO ][6660] Syncing sdb for environment 'base' +2020-03-06 09:48:40,391 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_sdb, for base) +2020-03-06 09:48:40,391 [salt.fileclient :234 ][INFO ][6660] Caching directory '_sdb/' for environment 'base' +2020-03-06 09:48:40,391 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,407 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 09:48:40,407 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 09:48:40,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,454 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,454 [salt.utils.extmods:90 ][INFO ][6660] Syncing grains for environment 'base' +2020-03-06 09:48:40,454 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_grains, for base) +2020-03-06 09:48:40,454 [salt.fileclient :234 ][INFO ][6660] Caching directory '_grains/' for environment 'base' +2020-03-06 09:48:40,454 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,454 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 09:48:40,469 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 09:48:40,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,501 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,517 [salt.utils.extmods:90 ][INFO ][6660] Syncing renderers for environment 'base' +2020-03-06 09:48:40,517 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_renderers, for base) +2020-03-06 09:48:40,517 [salt.fileclient :234 ][INFO ][6660] Caching directory '_renderers/' for environment 'base' +2020-03-06 09:48:40,517 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,517 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 09:48:40,517 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 09:48:40,550 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,564 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,564 [salt.utils.extmods:90 ][INFO ][6660] Syncing returners for environment 'base' +2020-03-06 09:48:40,564 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_returners, for base) +2020-03-06 09:48:40,564 [salt.fileclient :234 ][INFO ][6660] Caching directory '_returners/' for environment 'base' +2020-03-06 09:48:40,579 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,579 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 09:48:40,579 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 09:48:40,612 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,641 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,641 [salt.utils.extmods:90 ][INFO ][6660] Syncing output for environment 'base' +2020-03-06 09:48:40,641 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_output, for base) +2020-03-06 09:48:40,641 [salt.fileclient :234 ][INFO ][6660] Caching directory '_output/' for environment 'base' +2020-03-06 09:48:40,641 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,658 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 09:48:40,658 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 09:48:40,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,735 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,735 [salt.utils.extmods:90 ][INFO ][6660] Syncing utils for environment 'base' +2020-03-06 09:48:40,735 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_utils, for base) +2020-03-06 09:48:40,735 [salt.fileclient :234 ][INFO ][6660] Caching directory '_utils/' for environment 'base' +2020-03-06 09:48:40,735 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,735 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 09:48:40,735 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 09:48:40,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,813 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,828 [salt.utils.extmods:90 ][INFO ][6660] Syncing log_handlers for environment 'base' +2020-03-06 09:48:40,828 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_log_handlers, for base) +2020-03-06 09:48:40,828 [salt.fileclient :234 ][INFO ][6660] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 09:48:40,828 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,828 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 09:48:40,828 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\executors' +2020-03-06 09:48:40,862 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,876 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,876 [salt.utils.extmods:90 ][INFO ][6660] Syncing executors for environment 'base' +2020-03-06 09:48:40,876 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_executors, for base) +2020-03-06 09:48:40,876 [salt.fileclient :234 ][INFO ][6660] Caching directory '_executors/' for environment 'base' +2020-03-06 09:48:40,891 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,891 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_executors' +2020-03-06 09:48:40,891 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 09:48:40,922 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:40,938 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:40,938 [salt.utils.extmods:90 ][INFO ][6660] Syncing proxy for environment 'base' +2020-03-06 09:48:40,938 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_proxy, for base) +2020-03-06 09:48:40,938 [salt.fileclient :234 ][INFO ][6660] Caching directory '_proxy/' for environment 'base' +2020-03-06 09:48:40,938 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:40,938 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 09:48:40,953 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 09:48:41,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:41,016 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:41,016 [salt.utils.extmods:90 ][INFO ][6660] Syncing engines for environment 'base' +2020-03-06 09:48:41,031 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_engines, for base) +2020-03-06 09:48:41,032 [salt.fileclient :234 ][INFO ][6660] Caching directory '_engines/' for environment 'base' +2020-03-06 09:48:41,032 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:41,032 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 09:48:41,032 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 09:48:41,063 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:41,094 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:41,094 [salt.utils.extmods:90 ][INFO ][6660] Syncing thorium for environment 'base' +2020-03-06 09:48:41,094 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_thorium, for base) +2020-03-06 09:48:41,094 [salt.fileclient :234 ][INFO ][6660] Caching directory '_thorium/' for environment 'base' +2020-03-06 09:48:41,110 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:41,110 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 09:48:41,110 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 09:48:41,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:41,173 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:41,188 [salt.utils.extmods:90 ][INFO ][6660] Syncing serializers for environment 'base' +2020-03-06 09:48:41,188 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_serializers, for base) +2020-03-06 09:48:41,188 [salt.fileclient :234 ][INFO ][6660] Caching directory '_serializers/' for environment 'base' +2020-03-06 09:48:41,188 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:41,188 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 09:48:41,203 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 09:48:41,220 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:41,236 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:41,250 [salt.utils.extmods:90 ][INFO ][6660] Syncing matchers for environment 'base' +2020-03-06 09:48:41,250 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_matchers, for base) +2020-03-06 09:48:41,250 [salt.fileclient :234 ][INFO ][6660] Caching directory '_matchers/' for environment 'base' +2020-03-06 09:48:41,250 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:41,250 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 09:48:41,250 [salt.utils.extmods:79 ][INFO ][6660] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 09:48:41,283 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:41,297 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:41,297 [salt.utils.extmods:90 ][INFO ][6660] Syncing pillar for environment 'base' +2020-03-06 09:48:41,297 [salt.utils.extmods:94 ][INFO ][6660] Loading cache from salt://_pillar, for base) +2020-03-06 09:48:41,297 [salt.fileclient :234 ][INFO ][6660] Caching directory '_pillar/' for environment 'base' +2020-03-06 09:48:41,313 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:41,313 [salt.utils.extmods:109 ][DEBUG ][6660] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 09:48:41,313 [salt.state :1048][DEBUG ][6660] Refreshing modules... +2020-03-06 09:48:41,344 [salt.state :1014][INFO ][6660] Loading fresh modules for state activity +2020-03-06 09:48:41,407 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:48:41,407 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:48:41,407 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 09:48:41,407 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 09:48:41,422 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 09:48:41,422 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 09:48:41,422 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,422 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 09:48:41,422 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 09:48:41,438 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:41,438 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:41,453 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:41,453 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 09:48:41,453 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,453 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 09:48:41,485 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:41,485 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:41,485 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 09:48:41,485 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,500 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 09:48:41,500 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:41,516 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:41,516 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:41,516 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,532 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 09:48:41,532 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:41,532 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:41,532 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:41,532 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,547 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 09:48:41,547 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:41,547 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:41,563 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 09:48:41,563 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,563 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 09:48:41,579 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:41,579 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:41,579 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:41,579 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,594 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 09:48:41,594 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:41,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:41,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:41,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,628 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 09:48:41,628 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded config.get +2020-03-06 09:48:41,645 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded grains.filter_by +2020-03-06 09:48:41,645 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.20675349235534668 +2020-03-06 09:48:41,645 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .states - .modules - .system -2020-03-04 11:49:09,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:41,645 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.states', '.modules', '.system'])]) -2020-03-04 11:49:09,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:09,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 11:49:09,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 11:49:09,640 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' -2020-03-04 11:49:09,655 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,655 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' -2020-03-04 11:49:09,655 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls -2020-03-04 11:49:09,655 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:09,686 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:49:09,686 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:49:09,686 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' -2020-03-04 11:49:09,686 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,701 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' -2020-03-04 11:49:09,781 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:09,781 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:09,797 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:09,797 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:09,812 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:09,812 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:09,828 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:09,828 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:09,843 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:09,843 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:09,843 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:09,843 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:09,859 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:09,859 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:09,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.21958303451538086 -2020-03-04 11:49:09,875 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +2020-03-06 09:48:41,645 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:41,659 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 09:48:41,659 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 09:48:41,659 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 09:48:41,659 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,659 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 09:48:41,659 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 09:48:41,675 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:41,694 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:48:41,705 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:48:41,705 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 09:48:41,705 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:41,705 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 09:48:41,829 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:41,844 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:41,876 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:41,876 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:41,891 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:41,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:41,907 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:41,907 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:41,938 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:41,938 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:41,938 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:41,954 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:41,954 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:41,969 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:41,969 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.29426074028015137 +2020-03-06 09:48:41,985 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -722,34 +731,34 @@ windows.state.timezone.system.America/New_York: -2020-03-04 11:49:09,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:41,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) -2020-03-04 11:49:09,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:09,875 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 11:49:09,875 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 11:49:09,890 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' -2020-03-04 11:49:09,890 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:09,890 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' -2020-03-04 11:49:09,890 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls -2020-03-04 11:49:09,890 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:09,906 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:49:09,906 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 11:49:09,953 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:09,953 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:09,968 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:09,997 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:09,999 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:09,999 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:09,999 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:09,999 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,028 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,031 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,031 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,031 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,031 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,031 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.15657830238342285 -2020-03-04 11:49:10,062 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +2020-03-06 09:48:41,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,000 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 09:48:42,001 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 09:48:42,001 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 09:48:42,001 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,001 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 09:48:42,016 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 09:48:42,016 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,032 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:48:42,032 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 09:48:42,079 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,095 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,110 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,110 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,125 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,125 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,125 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,125 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,141 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,141 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,141 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,141 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,141 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,156 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,157 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.1404263973236084 +2020-03-06 09:48:42,157 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -777,33 +786,33 @@ windows.module.status.uptime: - windows.module.user.current -2020-03-04 11:49:10,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,173 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) -2020-03-04 11:49:10,062 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,062 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system.sls' in saltenv 'base' -2020-03-04 11:49:10,062 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 11:49:10,062 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 11:49:10,080 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' -2020-03-04 11:49:10,080 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,080 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' -2020-03-04 11:49:10,080 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls -2020-03-04 11:49:10,080 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,093 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,093 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,123 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,124 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,124 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,124 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,124 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,140 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,140 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,140 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,140 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,140 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,140 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,155 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,155 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.07579684257507324 -2020-03-04 11:49:10,183 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +2020-03-06 09:48:42,173 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,173 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 09:48:42,173 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 09:48:42,173 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 09:48:42,188 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 09:48:42,188 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,188 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 09:48:42,188 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 09:48:42,204 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,219 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,219 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,252 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,252 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,267 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,267 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,267 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,282 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,282 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,282 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,297 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,298 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,298 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,298 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.10963940620422363 +2020-03-06 09:48:42,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls # sls: windows.system windows system @@ -820,19 +829,19 @@ include: - .desktop -2020-03-04 11:49:10,186 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.packages', '.server', '.desktop'])]) -2020-03-04 11:49:10,186 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,186 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' -2020-03-04 11:49:10,186 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 11:49:10,186 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 11:49:10,186 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' -2020-03-04 11:49:10,202 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,202 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' -2020-03-04 11:49:10,218 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls -2020-03-04 11:49:10,218 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,218 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:10,218 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +2020-03-06 09:48:42,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,329 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 09:48:42,329 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 09:48:42,329 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 09:48:42,329 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 09:48:42,329 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,345 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 09:48:42,345 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 09:48:42,345 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,345 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:42,360 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -841,67 +850,67 @@ include: - .powershell - .saltstack - .chocolatey -2020-03-04 11:49:10,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) -2020-03-04 11:49:10,218 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,218 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' -2020-03-04 11:49:10,218 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 11:49:10,234 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 11:49:10,234 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' -2020-03-04 11:49:10,234 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,234 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' -2020-03-04 11:49:10,234 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls -2020-03-04 11:49:10,249 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,249 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:10,249 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +2020-03-06 09:48:42,360 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,360 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 09:48:42,360 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 09:48:42,360 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 09:48:42,360 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 09:48:42,360 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,376 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 09:48:42,376 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 09:48:42,376 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,376 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:42,391 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .remove-provisioned-apps -2020-03-04 11:49:10,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,391 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.remove-provisioned-apps'])]) -2020-03-04 11:49:10,249 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,249 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:49:10,249 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:49:10,249 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:49:10,249 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,265 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 11:49:10,265 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls -2020-03-04 11:49:10,265 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:10,265 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +2020-03-06 09:48:42,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,391 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:48:42,391 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:48:42,391 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:48:42,391 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,408 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 09:48:42,408 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 09:48:42,408 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,408 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:42,408 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .removed -2020-03-04 11:49:10,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,422 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.removed'])]) -2020-03-04 11:49:10,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,281 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 11:49:10,281 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 11:49:10,281 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 11:49:10,281 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,296 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' -2020-03-04 11:49:10,296 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls -2020-03-04 11:49:10,296 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,296 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,312 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,328 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,328 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,328 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,328 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,343 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,343 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,343 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,343 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,343 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,343 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,343 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,359 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,359 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.06251716613769531 -2020-03-04 11:49:10,359 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +2020-03-06 09:48:42,422 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,422 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 09:48:42,422 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 09:48:42,422 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 09:48:42,422 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,438 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 09:48:42,438 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 09:48:42,438 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,455 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,455 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,487 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,487 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,487 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,487 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,500 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,500 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,500 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,500 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,500 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,516 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,516 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,516 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.09388971328735352 +2020-03-06 09:48:42,532 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -945,87 +954,87 @@ windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Port -2020-03-04 11:49:10,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MicrosoftSolitaireCollection', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.Wallet', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneMusic', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.ZuneVideo', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}')])])])), ('windows.system.packages.appx.provisioned.uninstalled.Microsoft.MixedReality.Portal', OrderedDict([('cmd.run', [OrderedDict([('name', 'Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers')]), OrderedDict([('shell', 'powershell')]), OrderedDict([('onlyif', 'if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}')])])]))]) -2020-03-04 11:49:10,375 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.016069412231445312 -2020-03-04 11:49:10,375 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' -2020-03-04 11:49:10,375 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 11:49:10,375 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 11:49:10,391 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 11:49:10,391 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,391 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' -2020-03-04 11:49:10,391 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls -2020-03-04 11:49:10,391 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,406 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.014851570129394531 -2020-03-04 11:49:10,406 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +2020-03-06 09:48:42,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,532 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 09:48:42,548 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 09:48:42,548 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 09:48:42,548 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 09:48:42,548 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,563 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 09:48:42,563 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 09:48:42,563 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,563 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:42,563 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .modules - .framework -2020-03-04 11:49:10,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,563 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.framework'])]) -2020-03-04 11:49:10,406 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,406 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' -2020-03-04 11:49:10,406 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:49:10,406 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:49:10,421 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:49:10,421 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,421 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' -2020-03-04 11:49:10,421 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls -2020-03-04 11:49:10,421 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,421 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:10,421 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +2020-03-06 09:48:42,563 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,563 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 09:48:42,584 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:48:42,584 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:48:42,584 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:48:42,584 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,594 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 09:48:42,594 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 09:48:42,594 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,594 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:42,594 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .v4_5 -2020-03-04 11:49:10,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.v4_5'])]) -2020-03-04 11:49:10,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.01567816734313965 -2020-03-04 11:49:10,437 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' -2020-03-04 11:49:10,437 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:49:10,437 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:49:10,437 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:49:10,437 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,452 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 11:49:10,452 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls -2020-03-04 11:49:10,452 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,452 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:10,452 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +2020-03-06 09:48:42,610 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.015946626663208008 +2020-03-06 09:48:42,610 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 09:48:42,610 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:48:42,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:48:42,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:48:42,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,626 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 09:48:42,626 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 09:48:42,626 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,626 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:42,641 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .tls1_2 -2020-03-04 11:49:10,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.tls1_2'])]) -2020-03-04 11:49:10,452 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,468 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:49:10,468 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:49:10,468 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:49:10,468 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,468 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 11:49:10,468 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls -2020-03-04 11:49:10,468 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,484 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,484 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,499 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,499 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,499 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,499 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,530 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,530 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.0623626708984375 -2020-03-04 11:49:10,530 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +2020-03-06 09:48:42,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,641 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:48:42,641 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:48:42,641 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:48:42,641 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,657 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 09:48:42,657 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 09:48:42,657 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,672 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,672 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,690 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,690 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,690 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,704 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,704 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,704 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,704 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,704 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,720 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,720 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,720 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,720 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.07763385772705078 +2020-03-06 09:48:42,735 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1053,160 +1062,90 @@ windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversion - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} -2020-03-04 11:49:10,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) -2020-03-04 11:49:10,546 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.016022682189941406 -2020-03-04 11:49:10,546 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' -2020-03-04 11:49:10,546 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 11:49:10,546 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 11:49:10,546 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 11:49:10,546 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,562 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' -2020-03-04 11:49:10,562 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls -2020-03-04 11:49:10,562 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:10,562 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +2020-03-06 09:48:42,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,735 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 09:48:42,750 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 09:48:42,750 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 09:48:42,750 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 09:48:42,750 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,766 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 09:48:42,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 09:48:42,766 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:42,766 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 11:49:10,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:42,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 11:49:10,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:10,577 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 11:49:10,577 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 11:49:10,577 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 11:49:10,577 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,577 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' -2020-03-04 11:49:10,577 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls -2020-03-04 11:49:10,577 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:10,594 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 11:49:10,594 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 11:49:10,594 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 11:49:10,594 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,608 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' -2020-03-04 11:49:10,608 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,608 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:10,627 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:10,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:10,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:10,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:10,655 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:10,655 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:10,690 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:49:10,690 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:49:10,702 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:49:10,702 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:10,702 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' -2020-03-04 11:49:10,921 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pkg.version -2020-03-04 11:49:10,921 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][6228] No winrepo.p cache file for saltenv 'base', creating one now -2020-03-04 11:49:10,921 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][6228] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) -2020-03-04 11:49:10,921 [salt.loaded.int.module.win_pkg:935 ][INFO ][6228] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 11:49:10,921 [salt.loaded.int.module.win_pkg:954 ][INFO ][6228] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 11:49:10,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cp.cache_dir -2020-03-04 11:49:10,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded roots.envs -2020-03-04 11:49:10,968 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 11:49:10,968 [salt.fileclient :234 ][INFO ][6228] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 11:49:10,985 [salt.fileserver :159 ][DEBUG ][6228] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 11:49:11,000 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded reg.list_keys -2020-03-04 11:49:11,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,031 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,031 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,031 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,031 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,031 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.4531674385070801 -2020-03-04 11:49:11,031 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +2020-03-06 09:48:42,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:42,782 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 09:48:42,782 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 09:48:42,782 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 09:48:42,782 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,797 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 09:48:42,797 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 09:48:42,797 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:42,797 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 09:48:42,813 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 09:48:42,813 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 09:48:42,813 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,813 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 09:48:42,829 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,829 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:42,844 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,844 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:42,865 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,865 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:42,876 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,876 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:42,876 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,876 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:42,876 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:42,891 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:42,922 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:48:42,922 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:48:42,922 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:48:42,922 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:42,953 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 09:48:43,533 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded pkg.version +2020-03-06 09:48:43,533 [salt.loaded.int.module.win_pkg:827 ][DEBUG ][6660] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 09:48:43,533 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][6660] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 09:48:43,547 [salt.loaded.int.module.win_pkg:939 ][INFO ][6660] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 09:48:43,547 [salt.loaded.int.module.win_pkg:958 ][INFO ][6660] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 09:48:43,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cp.cache_dir +2020-03-06 09:48:43,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded roots.envs +2020-03-06 09:48:43,625 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 09:48:43,625 [salt.fileclient :234 ][INFO ][6660] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 09:48:43,625 [salt.fileserver :159 ][DEBUG ][6660] Returning file list from cache: age=4 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 09:48:43,642 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded reg.list_keys +2020-03-06 09:48:43,657 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.8595149517059326 +2020-03-06 09:48:43,657 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .windows_software_repository -kdiff3: +7zip: pkg.installed: + - version: 18.06.00.0 + - refresh_minion_env_path: False - require: - pkg.refresh_db -git: +kdiff3: pkg.installed: - - refresh_minion_env_path: True - require: - pkg.refresh_db -7zip: +git: pkg.installed: - - version: 18.06.00.0 - - refresh_minion_env_path: False + - refresh_minion_env_path: True - require: - pkg.refresh_db windows_environment.refresh.path: @@ -1215,89 +1154,19 @@ windows_environment.refresh.path: - onchanges: - pkg: git -2020-03-04 11:49:11,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('include', ['.windows_software_repository']), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) -2020-03-04 11:49:11,031 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,031 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:49:11,046 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:49:11,046 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:49:11,046 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,046 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 11:49:11,046 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls -2020-03-04 11:49:11,062 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,062 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.076567) -2020-03-04 11:49:11,062 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,079 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,093 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:11,093 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.031191110610961914 -2020-03-04 11:49:11,093 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +2020-03-06 09:48:43,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 09:48:43,672 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.015425443649291992 +2020-03-06 09:48:43,672 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:48:43,672 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:48:43,672 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:48:43,672 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:43,688 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 09:48:43,688 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 09:48:43,688 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:43,704 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.079050) +2020-03-06 09:48:43,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.03113389015197754 +2020-03-06 09:48:43,719 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1330,93 +1199,93 @@ pkg.refresh_db: attempts: 10 until: True interval: 5 -2020-03-04 11:49:11,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:43,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) -2020-03-04 11:49:11,093 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,093 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' -2020-03-04 11:49:11,093 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 11:49:11,109 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 11:49:11,109 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 11:49:11,109 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,109 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' -2020-03-04 11:49:11,109 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls -2020-03-04 11:49:11,109 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,125 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.01600480079650879 -2020-03-04 11:49:11,125 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +2020-03-06 09:48:43,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:43,719 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 09:48:43,734 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 09:48:43,734 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 09:48:43,734 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 09:48:43,734 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:43,734 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 09:48:43,751 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 09:48:43,751 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:43,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:43,751 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 11:49:11,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:43,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 11:49:11,125 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,125 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:49:11,125 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:49:11,125 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:49:11,125 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,140 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' -2020-03-04 11:49:11,140 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls -2020-03-04 11:49:11,140 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,156 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,156 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,156 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,176 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,176 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,176 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,187 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,187 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,187 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,187 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,187 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,187 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,210 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,210 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,219 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.07956051826477051 -2020-03-04 11:49:11,219 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +2020-03-06 09:48:43,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:43,766 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:48:43,766 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:48:43,766 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:48:43,766 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:43,766 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 09:48:43,781 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 09:48:43,781 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:43,798 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:43,798 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:43,813 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:43,828 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:43,829 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:43,829 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:43,829 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:43,829 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:43,844 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:43,844 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:43,844 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:43,844 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:43,844 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:43,860 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:43,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.07822656631469727 +2020-03-06 09:48:43,860 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .bootstrap -windows.system.packages.chocolatey.notepadplusplus: +windows.system.packages.chocolatey.windirstat: chocolatey.installed: - require: - chocolatey.bootstrap - - name: notepadplusplus + - name: windirstat + - version: 1.1.2.20161210 -windows.system.packages.chocolatey.windirstat: +windows.system.packages.chocolatey.notepadplusplus: chocolatey.installed: - require: - chocolatey.bootstrap - - name: windirstat - - version: 1.1.2.20161210 + - name: notepadplusplus -2020-03-04 11:49:11,219 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) -2020-03-04 11:49:11,219 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,234 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:49:11,234 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:49:11,234 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:49:11,234 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,249 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 11:49:11,249 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls -2020-03-04 11:49:11,249 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,249 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,249 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,265 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,265 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,280 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,280 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,280 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,280 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,280 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,280 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,296 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,296 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,296 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,296 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,328 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.07802128791809082 -2020-03-04 11:49:11,343 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +2020-03-06 09:48:43,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) +2020-03-06 09:48:43,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:43,876 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:48:43,876 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:48:43,876 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:48:43,876 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:43,891 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 09:48:43,891 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 09:48:43,891 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:43,891 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:43,907 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:43,922 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:43,922 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:43,939 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:43,939 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:43,939 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:43,939 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:43,939 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:43,953 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:43,953 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:43,953 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:43,953 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:43,953 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:43,970 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.07865118980407715 +2020-03-06 09:48:43,970 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: # -*- coding: utf-8 -*- # vim: ft=sls chocolatey.bootstrap: @@ -1426,149 +1295,149 @@ chocolatey.bootstrap: - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -2020-03-04 11:49:11,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:43,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) -2020-03-04 11:49:11,343 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,343 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' -2020-03-04 11:49:11,358 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 11:49:11,358 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 11:49:11,358 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' -2020-03-04 11:49:11,358 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,375 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' -2020-03-04 11:49:11,375 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls -2020-03-04 11:49:11,375 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,375 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:11,375 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +2020-03-06 09:48:43,970 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:43,985 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 09:48:43,985 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 09:48:43,985 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 09:48:43,985 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 09:48:43,985 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,000 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 09:48:44,000 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 09:48:44,000 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:44,000 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:44,000 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .features -2020-03-04 11:49:11,375 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:44,000 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.features'])]) -2020-03-04 11:49:11,375 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,375 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' -2020-03-04 11:49:11,391 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 11:49:11,391 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 11:49:11,391 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' -2020-03-04 11:49:11,391 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,391 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' -2020-03-04 11:49:11,391 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls -2020-03-04 11:49:11,406 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,406 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:11,406 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +2020-03-06 09:48:44,016 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.015759944915771484 +2020-03-06 09:48:44,016 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 09:48:44,016 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 09:48:44,016 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 09:48:44,016 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 09:48:44,016 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,048 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 09:48:44,048 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 09:48:44,048 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:44,064 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.016528844833374023 +2020-03-06 09:48:44,064 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 11:49:11,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:44,064 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 11:49:11,406 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,406 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 11:49:11,406 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 11:49:11,406 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' -2020-03-04 11:49:11,406 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,421 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' -2020-03-04 11:49:11,421 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls -2020-03-04 11:49:11,421 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,437 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 11:49:11,437 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 11:49:11,437 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' -2020-03-04 11:49:11,437 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,437 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' -2020-03-04 11:49:11,453 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,453 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,468 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,468 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,468 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,468 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,484 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,484 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,484 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,484 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,484 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,484 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,484 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,499 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,499 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.07785558700561523 -2020-03-04 11:49:11,515 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +2020-03-06 09:48:44,064 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:44,079 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 09:48:44,079 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 09:48:44,079 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 09:48:44,079 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,095 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 09:48:44,095 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 09:48:44,110 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:44,110 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 09:48:44,127 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 09:48:44,127 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 09:48:44,127 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,142 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 09:48:44,159 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:44,159 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:44,188 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:44,188 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:44,188 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:44,203 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:44,203 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:44,203 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:44,203 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:44,203 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:44,220 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:44,220 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:44,220 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:44,220 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:44,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.1251676082611084 +2020-03-06 09:48:44,235 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls -2020-03-04 11:49:11,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:44,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: {} -2020-03-04 11:49:11,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,515 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' -2020-03-04 11:49:11,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 11:49:11,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 11:49:11,515 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' -2020-03-04 11:49:11,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,532 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' -2020-03-04 11:49:11,532 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls -2020-03-04 11:49:11,532 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,532 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:11,532 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +2020-03-06 09:48:44,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:44,251 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 09:48:44,251 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 09:48:44,251 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 09:48:44,251 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 09:48:44,251 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,267 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 09:48:44,267 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 09:48:44,282 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:44,282 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0009796619415283203 +2020-03-06 09:48:44,282 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .packages - .optional_features -2020-03-04 11:49:11,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:44,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.optional_features'])]) -2020-03-04 11:49:11,532 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,547 [salt.fileclient :1072][DEBUG ][6228] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' -2020-03-04 11:49:11,547 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 11:49:11,547 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 11:49:11,547 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 11:49:11,547 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,562 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' -2020-03-04 11:49:11,562 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls -2020-03-04 11:49:11,562 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:11,562 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +2020-03-06 09:48:44,282 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:44,282 [salt.fileclient :1080][DEBUG ][6660] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 09:48:44,297 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 09:48:44,297 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 09:48:44,297 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 09:48:44,297 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,297 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 09:48:44,313 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 09:48:44,313 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:44,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:48:44,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .feature_installed -2020-03-04 11:49:11,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:44,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('include', ['.feature_installed'])]) -2020-03-04 11:49:11,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,578 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:49:11,578 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:49:11,578 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:49:11,578 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,578 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 11:49:11,578 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls -2020-03-04 11:49:11,593 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:11,593 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:49:11,593 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:49:11,593 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:49:11,593 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,609 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' -2020-03-04 11:49:11,609 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,625 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 11:49:11,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 11:49:11,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 11:49:11,655 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 11:49:11,655 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 11:49:11,655 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 11:49:11,674 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,674 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 11:49:11,690 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:49:11,690 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:49:11,705 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:49:11,705 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:11,705 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' -2020-03-04 11:49:11,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.1252577304840088 -2020-03-04 11:49:11,733 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +2020-03-06 09:48:44,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:44,313 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:48:44,329 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:48:44,329 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:48:44,329 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,329 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 09:48:44,329 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 09:48:44,344 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:48:44,344 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:48:44,344 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:48:44,344 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:48:44,344 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,360 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 09:48:44,376 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:44,376 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 09:48:44,391 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:44,391 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 09:48:44,407 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:44,407 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 09:48:44,407 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:44,407 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 09:48:44,407 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:44,422 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 09:48:44,422 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:44,422 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 09:48:44,422 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:44,422 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 09:48:44,438 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:48:44,438 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\optional_features.jinja' to resolve 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:48:44,438 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:48:44,454 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:48:44,454 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/optional_features.jinja' +2020-03-06 09:48:44,470 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.12542009353637695 +2020-03-06 09:48:44,470 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls# -*- coding: utf-8 -*- # vim: ft=sls @@ -1581,1827 +1450,1844 @@ windows.system.desktop.optional_features.installed.TelnetClient: Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}" -2020-03-04 11:49:11,733 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:48:44,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('windows.system.desktop.optional_features.installed.TelnetClient', OrderedDict([('dism.feature_installed', [OrderedDict([('name', 'TelnetClient')]), OrderedDict([('onlyif', 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq \'TelnetClient\') -and ($_.State -eq \'Enabled\')}) -ne $null) {exit 1}"\n')])])]))]) -2020-03-04 11:49:11,733 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:11,733 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cmd.run -2020-03-04 11:49:11,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded system.get_computer_desc -2020-03-04 11:49:11,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded system.computer_desc -2020-03-04 11:49:11,843 [salt.state :1819][INFO ][6228] Running state [saltstack1] at time 11:49:11.843482 -2020-03-04 11:49:11,843 [salt.state :1852][INFO ][6228] Executing state system.hostname for [saltstack1] -2020-03-04 11:49:11,859 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 11:49:11,859 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: vagrant-10 -2020-03-04 11:49:11,874 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6228] output: vagrant-10 -2020-03-04 11:49:11,874 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 11:49:11,874 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: vagrant-10 -2020-03-04 11:49:11,891 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6228] output: vagrant-10 -2020-03-04 11:49:11,891 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' -2020-03-04 11:49:11,984 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 09:48:44,470 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:48:44,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cmd.run +2020-03-06 09:48:44,791 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded system.get_computer_desc +2020-03-06 09:48:44,791 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded system.computer_desc +2020-03-06 09:48:44,798 [salt.state :1867][INFO ][6660] Running state [saltstack1] at time 09:48:44.798864 +2020-03-06 09:48:44,798 [salt.state :1900][INFO ][6660] Executing state system.hostname for [saltstack1] +2020-03-06 09:48:44,798 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 09:48:44,813 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: vagrant-10 +2020-03-06 09:48:44,813 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6660] output: vagrant-10 +2020-03-06 09:48:44,828 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 09:48:44,845 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: vagrant-10 +2020-03-06 09:48:44,845 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6660] output: vagrant-10 +2020-03-06 09:48:44,845 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'wmic computersystem where name='vagrant-10' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 09:48:44,954 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 11:49:11,984 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6228] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() +2020-03-06 09:48:44,954 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6660] output: Executing (\\VAGRANT-10\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT-10")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 11:49:11,984 [salt.state :320 ][INFO ][6228] {'hostname': 'saltstack1'} -2020-03-04 11:49:11,984 [salt.state :1997][INFO ][6228] Completed state [saltstack1] at time 11:49:11.984483 (duration_in_ms=141.001) -2020-03-04 11:49:11,984 [salt.state :1819][INFO ][6228] Running state [Saltstack Computer Description] at time 11:49:11.984483 -2020-03-04 11:49:11,984 [salt.state :1852][INFO ][6228] Executing state system.computer_desc for [Saltstack Computer Description] -2020-03-04 11:49:15,359 [salt.state :320 ][INFO ][6228] {'new': 'Saltstack Computer Description', 'old': ''} -2020-03-04 11:49:15,359 [salt.state :1997][INFO ][6228] Completed state [Saltstack Computer Description] at time 11:49:15.359570 (duration_in_ms=3375.087) -2020-03-04 11:49:15,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded platform.is_windows -2020-03-04 11:49:15,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded path.which -2020-03-04 11:49:15,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded timezone.get_zone -2020-03-04 11:49:15,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded timezone.system -2020-03-04 11:49:15,437 [salt.state :1819][INFO ][6228] Running state [America/New_York] at time 11:49:15.437121 -2020-03-04 11:49:15,437 [salt.state :1852][INFO ][6228] Executing state timezone.system for [America/New_York] -2020-03-04 11:49:15,437 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' -2020-03-04 11:49:15,468 [salt.state :320 ][INFO ][6228] {'timezone': 'America/New_York'} -2020-03-04 11:49:15,468 [salt.state :1997][INFO ][6228] Completed state [America/New_York] at time 11:49:15.468516 (duration_in_ms=31.395) -2020-03-04 11:49:15,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded module.run -2020-03-04 11:49:15,484 [salt.state :1819][INFO ][6228] Running state [windows.module.environ.items] at time 11:49:15.484078 -2020-03-04 11:49:15,484 [salt.state :1852][INFO ][6228] Executing state module.run for [windows.module.environ.items] -2020-03-04 11:49:15,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded environ.items -2020-03-04 11:49:15,500 [salt.state :320 ][INFO ][6228] {'environ.items': {'PROCESSOR_LEVEL': '6', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'USERPROFILE': 'C:\\Users\\vagrant', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'USERNAME': 'vagrant', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'SYSTEMDRIVE': 'C:', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PUBLIC': 'C:\\Users\\Public', 'LOGONSERVER': '\\\\VAGRANT-10', 'PROGRAMDATA': 'C:\\ProgramData', 'SALTDIR': 'C:\\salt', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'SYSTEMROOT': 'C:\\Windows', 'COMPUTERNAME': 'VAGRANT-10', 'PROGRAMFILES': 'C:\\Program Files', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'OS': 'Windows_NT', 'PROMPT': '$P$G', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'NUMBER_OF_PROCESSORS': '2', 'ONEDRIVECONSUMER': 'C:\\Users\\vagrant\\OneDrive', 'HOMEDRIVE': 'C:', 'WINDIR': 'C:\\Windows', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'USERDOMAIN': 'VAGRANT-10', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PROGRAMW6432': 'C:\\Program Files', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'HOMEPATH': '\\Users\\vagrant', 'PROCESSOR_REVISION': '8e0c', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp'}} -2020-03-04 11:49:15,500 [salt.state :1997][INFO ][6228] Completed state [windows.module.environ.items] at time 11:49:15.500168 (duration_in_ms=16.09) -2020-03-04 11:49:15,500 [salt.state :1819][INFO ][6228] Running state [windows.module.user.current] at time 11:49:15.500168 -2020-03-04 11:49:15,500 [salt.state :1852][INFO ][6228] Executing state module.run for [windows.module.user.current] -2020-03-04 11:49:15,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded user.current -2020-03-04 11:49:15,562 [salt.state :320 ][INFO ][6228] {'user.current': 'VAGRANT-10\\vagrant'} -2020-03-04 11:49:15,562 [salt.state :1997][INFO ][6228] Completed state [windows.module.user.current] at time 11:49:15.562198 (duration_in_ms=62.03) -2020-03-04 11:49:15,562 [salt.state :1819][INFO ][6228] Running state [windows.module.status.uptime] at time 11:49:15.562198 -2020-03-04 11:49:15,562 [salt.state :1852][INFO ][6228] Executing state module.run for [windows.module.status.uptime] -2020-03-04 11:49:15,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded status.uptime -2020-03-04 11:49:15,640 [salt.state :320 ][INFO ][6228] {'status.uptime': '0:02:49.640585'} -2020-03-04 11:49:15,640 [salt.state :1997][INFO ][6228] Completed state [windows.module.status.uptime] at time 11:49:15.640585 (duration_in_ms=78.387) -2020-03-04 11:49:15,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cmd.run -2020-03-04 11:49:15,671 [salt.state :1819][INFO ][6228] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 11:49:15.671538 -2020-03-04 11:49:15,671 [salt.state :1852][INFO ][6228] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] -2020-03-04 11:49:15,671 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:16,796 [salt.loaded.int.states.cmd:343 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:16,796 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:18,657 [salt.state :320 ][INFO ][6228] {'stdout': '', 'retcode': 0, 'stderr': '', 'pid': 1088} -2020-03-04 11:49:18,657 [salt.state :1997][INFO ][6228] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 11:49:18.657386 (duration_in_ms=2985.848) -2020-03-04 11:49:18,671 [salt.state :1819][INFO ][6228] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 11:49:18.671337 -2020-03-04 11:49:18,671 [salt.state :1852][INFO ][6228] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] -2020-03-04 11:49:18,671 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:19,546 [salt.loaded.int.states.cmd:343 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:19,546 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:20,953 [salt.state :320 ][INFO ][6228] {'stdout': '', 'retcode': 0, 'stderr': '', 'pid': 3700} -2020-03-04 11:49:20,953 [salt.state :1997][INFO ][6228] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 11:49:20.953244 (duration_in_ms=2281.907) -2020-03-04 11:49:20,953 [salt.state :1819][INFO ][6228] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 11:49:20.953244 -2020-03-04 11:49:20,953 [salt.state :1852][INFO ][6228] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] -2020-03-04 11:49:20,953 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:21,671 [salt.loaded.int.states.cmd:343 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:21,687 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:23,249 [salt.state :320 ][INFO ][6228] {'stdout': '', 'retcode': 0, 'stderr': '', 'pid': 6124} -2020-03-04 11:49:23,249 [salt.state :1997][INFO ][6228] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 11:49:23.249630 (duration_in_ms=2296.386) -2020-03-04 11:49:23,249 [salt.state :1819][INFO ][6228] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 11:49:23.249630 -2020-03-04 11:49:23,249 [salt.state :1852][INFO ][6228] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] -2020-03-04 11:49:23,249 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:23,953 [salt.loaded.int.states.cmd:343 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:23,953 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:25,296 [salt.state :320 ][INFO ][6228] {'stdout': '', 'retcode': 0, 'stderr': '', 'pid': 5760} -2020-03-04 11:49:25,296 [salt.state :1997][INFO ][6228] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 11:49:25.296773 (duration_in_ms=2047.143) -2020-03-04 11:49:25,296 [salt.state :1819][INFO ][6228] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 11:49:25.296773 -2020-03-04 11:49:25,296 [salt.state :1852][INFO ][6228] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] -2020-03-04 11:49:25,296 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:25,890 [salt.loaded.int.states.cmd:343 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:25,907 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:27,593 [salt.state :320 ][INFO ][6228] {'stdout': '', 'retcode': 0, 'stderr': '', 'pid': 6356} -2020-03-04 11:49:27,593 [salt.state :1997][INFO ][6228] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 11:49:27.593584 (duration_in_ms=2296.811) -2020-03-04 11:49:27,608 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded reg.present -2020-03-04 11:49:27,608 [salt.state :1819][INFO ][6228] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:49:27.608902 -2020-03-04 11:49:27,608 [salt.state :1852][INFO ][6228] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 11:49:29,922 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt.secret_key, ret: _|- -2020-03-04 11:49:29,936 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt:secret_key, ret: _|- -2020-03-04 11:49:31,421 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet.api_key, ret: _|- -2020-03-04 11:49:31,421 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet:api_key, ret: _|- -2020-03-04 11:49:32,265 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops.api_key, ret: _|- -2020-03-04 11:49:32,265 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops:api_key, ret: _|- -2020-03-04 11:49:36,609 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 11:49:36,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded apache.a2enconf -2020-03-04 11:49:36,625 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded apache.a2enmod -2020-03-04 11:49:36,625 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded apache.a2ensite -2020-03-04 11:49:36,671 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 11:49:36,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 11:49:36,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 11:49:36,735 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 11:49:36,780 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 11:49:36,798 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 11:49:36,811 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto3_sns.topic_exists -2020-03-04 11:49:36,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_apigateway.describe_apis -2020-03-04 11:49:36,845 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_asg.exists -2020-03-04 11:49:36,858 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cfn.exists -2020-03-04 11:49:36,858 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 11:49:36,876 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudtrail.exists -2020-03-04 11:49:36,892 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 11:49:36,907 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 11:49:36,907 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 11:49:36,922 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 11:49:36,938 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_dynamodb.exists -2020-03-04 11:49:36,953 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_ec2.get_key -2020-03-04 11:49:36,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elasticache.exists -2020-03-04 11:49:36,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 11:49:36,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elb.exists -2020-03-04 11:49:37,000 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 11:49:37,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_iam.get_user -2020-03-04 11:49:37,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_iam.role_exists -2020-03-04 11:49:37,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_iot.policy_exists -2020-03-04 11:49:37,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_kinesis.exists -2020-03-04 11:49:37,087 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_kms.describe_key -2020-03-04 11:49:37,096 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_lambda.function_exists -2020-03-04 11:49:37,109 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_asg.exists -2020-03-04 11:49:37,127 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_rds.exists -2020-03-04 11:49:37,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_route53.get_record -2020-03-04 11:49:37,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_s3.get_object_metadata -2020-03-04 11:49:37,157 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_s3_bucket.exists -2020-03-04 11:49:37,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_secgroup.exists -2020-03-04 11:49:37,188 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_sns.exists -2020-03-04 11:49:37,188 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_sqs.exists -2020-03-04 11:49:37,222 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_vpc.exists -2020-03-04 11:49:37,233 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded bower.list -2020-03-04 11:49:37,251 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded chef.client -2020-03-04 11:49:37,281 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cimc.get_system_info -2020-03-04 11:49:37,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cisconso.set_data_value -2020-03-04 11:49:37,312 [salt.loader :1577][DEBUG ][6228] Failed to import states cloud: +2020-03-06 09:48:44,954 [salt.state :320 ][INFO ][6660] {'hostname': 'saltstack1'} +2020-03-06 09:48:44,954 [salt.state :2045][INFO ][6660] Completed state [saltstack1] at time 09:48:44.954112 (duration_in_ms=155.248) +2020-03-06 09:48:44,970 [salt.state :1867][INFO ][6660] Running state [Saltstack Computer Description] at time 09:48:44.970663 +2020-03-06 09:48:44,970 [salt.state :1900][INFO ][6660] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 09:48:48,485 [salt.state :320 ][INFO ][6660] {'old': '', 'new': 'Saltstack Computer Description'} +2020-03-06 09:48:48,485 [salt.state :2045][INFO ][6660] Completed state [Saltstack Computer Description] at time 09:48:48.485294 (duration_in_ms=3514.631) +2020-03-06 09:48:48,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded platform.is_windows +2020-03-06 09:48:48,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded path.which +2020-03-06 09:48:48,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded timezone.get_zone +2020-03-06 09:48:48,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded timezone.system +2020-03-06 09:48:48,595 [salt.state :1867][INFO ][6660] Running state [America/New_York] at time 09:48:48.595532 +2020-03-06 09:48:48,595 [salt.state :1900][INFO ][6660] Executing state timezone.system for [America/New_York] +2020-03-06 09:48:48,610 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 09:48:48,673 [salt.state :320 ][INFO ][6660] {'timezone': 'America/New_York'} +2020-03-06 09:48:48,673 [salt.state :2045][INFO ][6660] Completed state [America/New_York] at time 09:48:48.673320 (duration_in_ms=77.788) +2020-03-06 09:48:48,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded module.run +2020-03-06 09:48:48,735 [salt.state :1867][INFO ][6660] Running state [windows.module.environ.items] at time 09:48:48.735586 +2020-03-06 09:48:48,735 [salt.state :1900][INFO ][6660] Executing state module.run for [windows.module.environ.items] +2020-03-06 09:48:48,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded environ.items +2020-03-06 09:48:48,735 [salt.state :320 ][INFO ][6660] {'environ.items': {'SYSTEMROOT': 'C:\\Windows', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'NUMBER_OF_PROCESSORS': '2', 'PROMPT': '$P$G', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'SYSTEMDRIVE': 'C:', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'ONEDRIVE': 'C:\\Users\\vagrant\\OneDrive', 'USERPROFILE': 'C:\\Users\\vagrant', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'WINDIR': 'C:\\Windows', 'LOGONSERVER': '\\\\VAGRANT-10', 'PROGRAMDATA': 'C:\\ProgramData', 'COMPUTERNAME': 'VAGRANT-10', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'PROCESSOR_REVISION': '8e0c', 'HOMEDRIVE': 'C:', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT-10', 'SALTDIR': 'C:\\salt', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'PROGRAMW6432': 'C:\\Program Files', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'USERDOMAIN': 'VAGRANT-10', 'USERNAME': 'vagrant', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'PUBLIC': 'C:\\Users\\Public', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'PROCESSOR_LEVEL': '6', 'HOMEPATH': '\\Users\\vagrant', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'OS': 'Windows_NT', 'PROGRAMFILES': 'C:\\Program Files', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules'}} +2020-03-06 09:48:48,752 [salt.state :2045][INFO ][6660] Completed state [windows.module.environ.items] at time 09:48:48.752294 (duration_in_ms=16.708) +2020-03-06 09:48:48,752 [salt.state :1867][INFO ][6660] Running state [windows.module.user.current] at time 09:48:48.752294 +2020-03-06 09:48:48,752 [salt.state :1900][INFO ][6660] Executing state module.run for [windows.module.user.current] +2020-03-06 09:48:48,892 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded user.current +2020-03-06 09:48:48,892 [salt.state :320 ][INFO ][6660] {'user.current': 'VAGRANT-10\\vagrant'} +2020-03-06 09:48:48,892 [salt.state :2045][INFO ][6660] Completed state [windows.module.user.current] at time 09:48:48.892644 (duration_in_ms=140.35) +2020-03-06 09:48:48,892 [salt.state :1867][INFO ][6660] Running state [windows.module.status.uptime] at time 09:48:48.892644 +2020-03-06 09:48:48,892 [salt.state :1900][INFO ][6660] Executing state module.run for [windows.module.status.uptime] +2020-03-06 09:48:49,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded status.uptime +2020-03-06 09:48:49,110 [salt.state :320 ][INFO ][6660] {'status.uptime': '0:03:07.110317'} +2020-03-06 09:48:49,110 [salt.state :2045][INFO ][6660] Completed state [windows.module.status.uptime] at time 09:48:49.110317 (duration_in_ms=217.673) +2020-03-06 09:48:49,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cmd.run +2020-03-06 09:48:49,173 [salt.state :1867][INFO ][6660] Running state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 09:48:49.173430 +2020-03-06 09:48:49,173 [salt.state :1900][INFO ][6660] Executing state cmd.run for [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] +2020-03-06 09:48:49,173 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MicrosoftSolitaireCollection ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:48:50,940 [salt.loaded.int.states.cmd:344 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:48:50,940 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:48:53,610 [salt.state :320 ][INFO ][6660] {'stderr': '', 'pid': 3488, 'retcode': 0, 'stdout': ''} +2020-03-06 09:48:53,610 [salt.state :2045][INFO ][6660] Completed state [Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage -Allusers] at time 09:48:53.610376 (duration_in_ms=4436.946) +2020-03-06 09:48:53,610 [salt.state :1867][INFO ][6660] Running state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 09:48:53.610376 +2020-03-06 09:48:53,625 [salt.state :1900][INFO ][6660] Executing state cmd.run for [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] +2020-03-06 09:48:53,625 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.Wallet ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:48:54,656 [salt.loaded.int.states.cmd:344 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:48:54,656 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:48:57,345 [salt.state :320 ][INFO ][6660] {'stderr': '', 'pid': 6904, 'retcode': 0, 'stdout': ''} +2020-03-06 09:48:57,345 [salt.state :2045][INFO ][6660] Completed state [Get-AppxPackage Microsoft.Wallet | Remove-AppxPackage -Allusers] at time 09:48:57.345330 (duration_in_ms=3734.954) +2020-03-06 09:48:57,345 [salt.state :1867][INFO ][6660] Running state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 09:48:57.345330 +2020-03-06 09:48:57,345 [salt.state :1900][INFO ][6660] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] +2020-03-06 09:48:57,360 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneMusic ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:48:58,438 [salt.loaded.int.states.cmd:344 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:48:58,438 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:49:00,891 [salt.state :320 ][INFO ][6660] {'stderr': '', 'pid': 5368, 'retcode': 0, 'stdout': ''} +2020-03-06 09:49:00,891 [salt.state :2045][INFO ][6660] Completed state [Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage -Allusers] at time 09:49:00.891912 (duration_in_ms=3546.582) +2020-03-06 09:49:00,891 [salt.state :1867][INFO ][6660] Running state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 09:49:00.891912 +2020-03-06 09:49:00,891 [salt.state :1900][INFO ][6660] Executing state cmd.run for [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] +2020-03-06 09:49:00,906 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.ZuneVideo ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:49:01,704 [salt.loaded.int.states.cmd:344 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:49:01,719 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:49:03,641 [salt.state :320 ][INFO ][6660] {'stderr': '', 'pid': 1396, 'retcode': 0, 'stdout': ''} +2020-03-06 09:49:03,641 [salt.state :2045][INFO ][6660] Completed state [Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage -Allusers] at time 09:49:03.641568 (duration_in_ms=2749.656) +2020-03-06 09:49:03,641 [salt.state :1867][INFO ][6660] Running state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 09:49:03.641568 +2020-03-06 09:49:03,641 [salt.state :1900][INFO ][6660] Executing state cmd.run for [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] +2020-03-06 09:49:03,641 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "if ((Get-AppxPackage Microsoft.MixedReality.Portal ) -eq $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:49:04,860 [salt.loaded.int.states.cmd:344 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:49:04,860 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'Powershell -NonInteractive -NoProfile "Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers"' in directory 'C:\Users\vagrant' +2020-03-06 09:49:07,547 [salt.state :320 ][INFO ][6660] {'stderr': '', 'pid': 7000, 'retcode': 0, 'stdout': ''} +2020-03-06 09:49:07,547 [salt.state :2045][INFO ][6660] Completed state [Get-AppxPackage Microsoft.MixedReality.Portal | Remove-AppxPackage -Allusers] at time 09:49:07.547771 (duration_in_ms=3906.203) +2020-03-06 09:49:07,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded reg.present +2020-03-06 09:49:07,563 [salt.state :1867][INFO ][6660] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:49:07.563313 +2020-03-06 09:49:07,563 [salt.state :1900][INFO ][6660] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 09:49:09,454 [salt.config :2215][DEBUG ][6660] Missing configuration file: /etc/salt/minion +2020-03-06 09:49:09,454 [salt.config :3612][DEBUG ][6660] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 09:49:09,813 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:49:09,845 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:49:11,328 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 09:49:11,328 [salt.loader :1671][DEBUG ][6660] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 11:49:37,343 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded ddns.update -2020-03-04 11:49:37,360 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded chassis.cmd -2020-03-04 11:49:37,390 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:49:37,437 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:49:37,454 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:49:37,469 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:49:37,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded esxi.cmd -2020-03-04 11:49:37,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded git.version -2020-03-04 11:49:37,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded github.list_users -2020-03-04 11:49:37,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded glanceng.image_get -2020-03-04 11:49:37,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded elasticsearch.exists -2020-03-04 11:49:37,922 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: grafana_version, ret: _|- -2020-03-04 11:49:37,922 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: grafana_version, ret: _|- -2020-03-04 11:49:38,017 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded icinga2.generate_ticket -2020-03-04 11:49:38,017 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded ifttt.trigger_event -2020-03-04 11:49:38,047 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:49:38,062 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:49:38,078 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:49:38,108 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:49:38,124 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:49:38,140 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:49:38,249 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 11:49:38,266 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.domain_get -2020-03-04 11:49:38,266 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.endpoint_get -2020-03-04 11:49:38,281 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.group_get -2020-03-04 11:49:38,281 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.project_get -2020-03-04 11:49:38,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.role_get -2020-03-04 11:49:38,313 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.role_grant -2020-03-04 11:49:38,313 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.service_get -2020-03-04 11:49:38,328 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.user_get -2020-03-04 11:49:38,359 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 11:49:38,406 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 11:49:38,439 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 11:49:38,468 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 11:49:38,500 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:49:38,531 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:49:38,531 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:49:38,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:49:38,563 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:49:38,576 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:49:38,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded memcached.status -2020-03-04 11:49:38,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mongodb.db_exists -2020-03-04 11:49:38,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mongodb.user_exists -2020-03-04 11:49:38,657 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:49:38,657 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:49:38,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:49:38,688 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:49:38,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_networks -2020-03-04 11:49:38,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_subnets -2020-03-04 11:49:38,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_subnets -2020-03-04 11:49:38,844 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_subnets -2020-03-04 11:49:38,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded npm.list -2020-03-04 11:49:38,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nxos.cmd -2020-03-04 11:49:38,921 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 11:49:38,940 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 11:49:39,016 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded panos.commit -2020-03-04 11:49:39,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pdbedit.create -2020-03-04 11:49:39,048 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pecl.list -2020-03-04 11:49:39,815 [pip.vcs :60 ][DEBUG ][6228] Registered VCS backend: git -2020-03-04 11:49:40,096 [pip.vcs :60 ][DEBUG ][6228] Registered VCS backend: hg -2020-03-04 11:49:40,156 [pip.pep425tags :79 ][DEBUG ][6228] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 11:49:40,170 [pip.pep425tags :79 ][DEBUG ][6228] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 11:49:40,170 [pip.pep425tags :79 ][DEBUG ][6228] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 11:49:40,171 [pip.pep425tags :79 ][DEBUG ][6228] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 11:49:40,534 [pip.vcs :60 ][DEBUG ][6228] Registered VCS backend: svn -2020-03-04 11:49:40,557 [pip.vcs :60 ][DEBUG ][6228] Registered VCS backend: bzr -2020-03-04 11:49:40,858 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 11:49:40,858 [salt.loader :1577][DEBUG ][6228] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 09:49:14,047 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: ifttt.secret_key, ret: _|- +2020-03-06 09:49:14,047 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: ifttt:secret_key, ret: _|- +2020-03-06 09:49:17,430 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: pushbullet.api_key, ret: _|- +2020-03-06 09:49:17,430 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: pushbullet:api_key, ret: _|- +2020-03-06 09:49:18,641 [salt.loader :1671][DEBUG ][6660] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 11:49:40,876 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.cluster_exists -2020-03-04 11:49:40,889 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.user_exists -2020-03-04 11:49:40,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.create_extension -2020-03-04 11:49:40,905 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.group_create -2020-03-04 11:49:40,905 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.datadir_init -2020-03-04 11:49:40,921 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.language_create -2020-03-04 11:49:40,939 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.privileges_grant -2020-03-04 11:49:40,939 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.schema_exists -2020-03-04 11:49:40,953 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.tablespace_exists -2020-03-04 11:49:40,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.user_exists -2020-03-04 11:49:41,094 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 11:49:41,174 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded selinux.getenforce -2020-03-04 11:49:41,233 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded splunk.list_users -2020-03-04 11:49:41,233 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded splunk_search.get -2020-03-04 11:49:41,296 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 11:49:41,343 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded tomcat.status -2020-03-04 11:49:41,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded vagrant.version -2020-03-04 11:49:41,407 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded victorops.create_event -2020-03-04 11:49:41,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded win_iis.create_site -2020-03-04 11:49:41,547 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded win_servermanager.install -2020-03-04 11:49:41,561 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded win_snmp.get_agent_settings -2020-03-04 11:49:41,594 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded wordpress.show_plugin -2020-03-04 11:49:41,608 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded x509.get_pem_entry -2020-03-04 11:49:41,624 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded xmpp.send_msg -2020-03-04 11:49:41,719 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded zk_concurrency.lock -2020-03-04 11:49:41,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded zonecfg.create -2020-03-04 11:49:41,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded zookeeper.create -2020-03-04 11:49:41,765 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 11:49:41,765 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:49:41,952 [salt.state :889 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:41,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded dacl.check_perms -2020-03-04 11:49:41,968 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6228] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 11:49:41,968 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6228] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 09:49:19,095 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: victorops.api_key, ret: _|- +2020-03-06 09:49:19,095 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: victorops:api_key, ret: _|- +2020-03-06 09:49:29,032 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad acme.cert: 'acme' __virtual__ returned False: The ACME execution module cannot be loaded: letsencrypt-auto not installed. +2020-03-06 09:49:29,066 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded alternatives.auto +2020-03-06 09:49:29,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded apache.config +2020-03-06 09:49:29,156 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded apache.a2enconf +2020-03-06 09:49:29,174 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded apache.a2enmod +2020-03-06 09:49:29,189 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded apache.a2ensite +2020-03-06 09:49:29,219 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 09:49:29,267 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded at.at +2020-03-06 09:49:29,328 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 09:49:29,376 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 09:49:29,391 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 09:49:29,422 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 09:49:29,454 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 09:49:29,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded disk.tune +2020-03-06 09:49:29,554 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 09:49:29,580 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 09:49:29,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 09:49:29,611 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_sns.topic_exists +2020-03-06 09:49:29,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_apigateway.describe_apis +2020-03-06 09:49:29,661 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_asg.exists +2020-03-06 09:49:29,672 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cfn.exists +2020-03-06 09:49:29,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 09:49:29,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudtrail.exists +2020-03-06 09:49:29,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 09:49:29,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 09:49:29,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 09:49:29,751 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 09:49:29,767 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_dynamodb.exists +2020-03-06 09:49:29,802 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_ec2.get_key +2020-03-06 09:49:29,813 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elasticache.exists +2020-03-06 09:49:29,829 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 09:49:29,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elb.exists +2020-03-06 09:49:29,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 09:49:29,922 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_iam.get_user +2020-03-06 09:49:29,938 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_iam.role_exists +2020-03-06 09:49:29,969 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_iot.policy_exists +2020-03-06 09:49:29,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_kinesis.exists +2020-03-06 09:49:30,018 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_kms.describe_key +2020-03-06 09:49:30,065 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_lambda.function_exists +2020-03-06 09:49:30,095 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_asg.exists +2020-03-06 09:49:30,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_rds.exists +2020-03-06 09:49:30,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_route53.get_record +2020-03-06 09:49:30,158 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_s3.get_object_metadata +2020-03-06 09:49:30,185 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_s3_bucket.exists +2020-03-06 09:49:30,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_secgroup.exists +2020-03-06 09:49:30,205 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_sns.exists +2020-03-06 09:49:30,219 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_sqs.exists +2020-03-06 09:49:30,255 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_vpc.exists +2020-03-06 09:49:30,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded bower.list +2020-03-06 09:49:30,314 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded chef.client +2020-03-06 09:49:30,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cimc.get_system_info +2020-03-06 09:49:30,362 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cisconso.set_data_value +2020-03-06 09:49:30,407 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cron.list_tab +2020-03-06 09:49:30,456 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded ddns.update +2020-03-06 09:49:30,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded chassis.cmd +2020-03-06 09:49:30,563 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:49:30,610 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:49:30,657 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:49:30,704 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:49:30,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded eselect.exec_action +2020-03-06 09:49:31,095 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded esxi.cmd +2020-03-06 09:49:31,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded git.version +2020-03-06 09:49:31,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded github.list_users +2020-03-06 09:49:31,393 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded glanceng.image_get +2020-03-06 09:49:31,423 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded glusterfs.list_volumes +2020-03-06 09:49:31,455 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded elasticsearch.exists +2020-03-06 09:49:31,501 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: grafana_version, ret: _|- +2020-03-06 09:49:31,516 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: grafana_version, ret: _|- +2020-03-06 09:49:31,627 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded icinga2.generate_ticket +2020-03-06 09:49:31,640 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded ifttt.trigger_event +2020-03-06 09:49:31,688 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:49:31,735 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:49:31,799 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:49:31,863 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:49:31,906 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:49:31,942 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:49:32,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded ipset.version +2020-03-06 09:49:32,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded iptables.version +2020-03-06 09:49:32,096 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded kapacitor.version +2020-03-06 09:49:32,125 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 09:49:32,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keyboard.get_sys +2020-03-06 09:49:32,158 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystone.auth +2020-03-06 09:49:32,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.domain_get +2020-03-06 09:49:32,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.endpoint_get +2020-03-06 09:49:32,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.group_get +2020-03-06 09:49:32,204 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.project_get +2020-03-06 09:49:32,221 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.role_get +2020-03-06 09:49:32,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.role_grant +2020-03-06 09:49:32,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.service_get +2020-03-06 09:49:32,251 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.user_get +2020-03-06 09:49:32,268 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystore.list +2020-03-06 09:49:32,282 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded kmod.available +2020-03-06 09:49:32,298 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 09:49:32,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded layman.add +2020-03-06 09:49:32,469 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 09:49:32,486 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded logadm.list_conf +2020-03-06 09:49:32,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded logrotate.show_conf +2020-03-06 09:49:32,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lvs.get_rules +2020-03-06 09:49:32,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lvs.get_rules +2020-03-06 09:49:32,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:49:32,612 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:49:32,626 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:49:32,642 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:49:32,705 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded makeconf.get_var +2020-03-06 09:49:32,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded memcached.status +2020-03-06 09:49:32,768 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded mongodb.db_exists +2020-03-06 09:49:32,799 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded mongodb.user_exists +2020-03-06 09:49:32,813 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded monit.summary +2020-03-06 09:49:33,125 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_networks +2020-03-06 09:49:33,125 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_subnets +2020-03-06 09:49:33,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_subnets +2020-03-06 09:49:33,159 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_subnets +2020-03-06 09:49:33,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nftables.version +2020-03-06 09:49:33,203 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded npm.list +2020-03-06 09:49:33,237 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nxos.cmd +2020-03-06 09:49:33,251 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded openvswitch.bridge_create +2020-03-06 09:49:33,267 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded openvswitch.port_add +2020-03-06 09:49:33,361 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded panos.commit +2020-03-06 09:49:33,406 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded pdbedit.create +2020-03-06 09:49:33,424 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded pecl.list +2020-03-06 09:49:34,470 [pip.vcs :60 ][DEBUG ][6660] Registered VCS backend: git +2020-03-06 09:49:34,844 [pip.vcs :60 ][DEBUG ][6660] Registered VCS backend: hg +2020-03-06 09:49:34,942 [pip.pep425tags :79 ][DEBUG ][6660] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 09:49:34,942 [pip.pep425tags :79 ][DEBUG ][6660] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 09:49:34,942 [pip.pep425tags :79 ][DEBUG ][6660] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 09:49:34,950 [pip.pep425tags :79 ][DEBUG ][6660] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 09:49:35,329 [pip.vcs :60 ][DEBUG ][6660] Registered VCS backend: svn +2020-03-06 09:49:35,345 [pip.vcs :60 ][DEBUG ][6660] Registered VCS backend: bzr +2020-03-06 09:49:35,719 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 09:49:35,736 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded portage_config.get_missing_flags +2020-03-06 09:49:35,750 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.cluster_exists +2020-03-06 09:49:35,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.user_exists +2020-03-06 09:49:35,784 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.create_extension +2020-03-06 09:49:35,798 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.group_create +2020-03-06 09:49:35,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.datadir_init +2020-03-06 09:49:35,828 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.language_create +2020-03-06 09:49:35,828 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.privileges_grant +2020-03-06 09:49:35,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.schema_exists +2020-03-06 09:49:35,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.tablespace_exists +2020-03-06 09:49:35,878 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.user_exists +2020-03-06 09:49:35,969 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded quota.report +2020-03-06 09:49:36,080 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded rabbitmq.list_upstreams +2020-03-06 09:49:36,160 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 09:49:36,219 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 09:49:36,378 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded selinux.getenforce +2020-03-06 09:49:36,456 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 09:49:36,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded snapper.diff +2020-03-06 09:49:36,516 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded splunk.list_users +2020-03-06 09:49:36,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded splunk_search.get +2020-03-06 09:49:36,704 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 09:49:36,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded tomcat.status +2020-03-06 09:49:36,815 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded trafficserver.set_config +2020-03-06 09:49:36,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded vagrant.version +2020-03-06 09:49:36,909 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded victorops.create_event +2020-03-06 09:49:36,923 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded virt.node_info +2020-03-06 09:49:37,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded win_iis.create_site +2020-03-06 09:49:37,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded win_servermanager.install +2020-03-06 09:49:37,143 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded win_snmp.get_agent_settings +2020-03-06 09:49:37,203 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded wordpress.show_plugin +2020-03-06 09:49:37,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded x509.get_pem_entry +2020-03-06 09:49:37,282 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded xmpp.send_msg +2020-03-06 09:49:37,457 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded zk_concurrency.lock +2020-03-06 09:49:37,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded zonecfg.create +2020-03-06 09:49:37,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded zookeeper.create +2020-03-06 09:49:37,516 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 09:49:37,531 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:49:37,861 [salt.state :906 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:49:37,861 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][6660] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:49:37,875 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6660] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:49:37,875 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6660] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 11:49:41,968 [salt.state :320 ][INFO ][6228] {'reg': {'Added': {'Owner': None, 'Value': 1, 'Perms': {'Deny': None, 'Grant': None}, 'Entry': 'SystemDefaultTlsVersions', 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True}}} -2020-03-04 11:49:41,968 [salt.state :1997][INFO ][6228] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:49:41.968361 (duration_in_ms=14359.459) -2020-03-04 11:49:41,968 [salt.state :1819][INFO ][6228] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:49:41.968361 -2020-03-04 11:49:41,968 [salt.state :1852][INFO ][6228] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 11:49:41,984 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 11:49:41,984 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' -2020-03-04 11:49:42,249 [salt.state :889 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:42,249 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6228] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 11:49:42,249 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6228] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +2020-03-06 09:49:37,875 [salt.state :320 ][INFO ][6660] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Inheritance': True, 'Value': 1, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 09:49:37,875 [salt.state :2045][INFO ][6660] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:49:37.875905 (duration_in_ms=30312.592) +2020-03-06 09:49:37,875 [salt.state :1867][INFO ][6660] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:49:37.875905 +2020-03-06 09:49:37,875 [salt.state :1900][INFO ][6660] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 09:49:37,907 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 09:49:37,907 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 09:49:38,188 [salt.state :906 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:49:38,188 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][6660] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:49:38,203 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6660] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 09:49:38,203 [salt.loaded.int.utils.win_dacl:1186][ERROR ][6660] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 11:49:42,249 [salt.state :320 ][INFO ][6228] {'reg': {'Added': {'Owner': None, 'Value': 1, 'Perms': {'Deny': None, 'Grant': None}, 'Entry': 'SystemDefaultTlsVersions', 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True}}} -2020-03-04 11:49:42,249 [salt.state :1997][INFO ][6228] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 11:49:42.249710 (duration_in_ms=281.349) -2020-03-04 11:49:42,249 [salt.state :1819][INFO ][6228] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:49:42.249710 -2020-03-04 11:49:42,265 [salt.state :1852][INFO ][6228] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] -2020-03-04 11:49:42,265 [salt.utils.http :234 ][DEBUG ][6228] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method -2020-03-04 11:49:42,265 [salt.utils.http :235 ][DEBUG ][6228] Using backend: tornado -2020-03-04 11:49:42,845 [salt.loaded.int.states.archive:976 ][DEBUG ][6228] file.cached: {'result': True, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}} -2020-03-04 11:49:42,845 [salt.loaded.int.states.archive:91 ][DEBUG ][6228] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 11:49:42,845 [salt.loaded.int.states.archive:996 ][DEBUG ][6228] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected -2020-03-04 11:49:42,910 [salt.loaded.int.module.win_file:1463][DEBUG ][6228] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win -2020-03-04 11:49:42,910 [salt.loaded.int.module.win_file:1463][DEBUG ][6228] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -2020-03-04 11:49:42,910 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6228] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 11:49:42,910 [salt.loaded.int.states.archive:1247][DEBUG ][6228] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 11:49:43,302 [salt.loaded.int.states.archive:1543][DEBUG ][6228] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 11:49:43,311 [salt.state :320 ][INFO ][6228] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} -2020-03-04 11:49:43,312 [salt.state :1997][INFO ][6228] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 11:49:43.312526 (duration_in_ms=1062.816) -2020-03-04 11:49:43,312 [salt.state :1819][INFO ][6228] Running state [rename-extract] at time 11:49:43.312526 -2020-03-04 11:49:43,312 [salt.state :1852][INFO ][6228] Executing state module.run for [rename-extract] -2020-03-04 11:49:43,312 [salt.state :320 ][INFO ][6228] {'file.rename': True} -2020-03-04 11:49:43,312 [salt.state :1997][INFO ][6228] Completed state [rename-extract] at time 11:49:43.312526 (duration_in_ms=0.0) -2020-03-04 11:49:43,312 [salt.state :1819][INFO ][6228] Running state [pkg.refresh_db] at time 11:49:43.312526 -2020-03-04 11:49:43,312 [salt.state :1852][INFO ][6228] Executing state module.run for [pkg.refresh_db] -2020-03-04 11:49:43,312 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][6228] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:32.327064) -2020-03-04 11:49:43,312 [salt.loaded.int.module.win_pkg:935 ][INFO ][6228] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 11:49:43,328 [salt.loaded.int.module.win_pkg:954 ][INFO ][6228] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 11:49:43,328 [salt.fileclient :234 ][INFO ][6228] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 11:49:43,547 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:49:43,547 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:49:43,547 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:49:43,547 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,562 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 11:49:43,578 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:49:43,578 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:49:43,578 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:49:43,578 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,594 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 11:49:43,594 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:49:43,594 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:49:43,609 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:49:43,609 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,609 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 11:49:43,625 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:49:43,625 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:49:43,625 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:49:43,625 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,639 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 11:49:43,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:49:43,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:49:43,640 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:49:43,655 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,655 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 11:49:43,671 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:49:43,671 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:49:43,671 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:49:43,671 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,702 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 11:49:43,702 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:49:43,702 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:49:43,702 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:49:43,718 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,718 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 11:49:43,734 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:49:43,734 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:49:43,734 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:49:43,734 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,734 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 11:49:43,749 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:49:43,749 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:49:43,749 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:49:43,749 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,765 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 11:49:43,765 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:49:43,780 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:49:43,780 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:49:43,780 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,780 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 11:49:43,796 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:49:43,796 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:49:43,796 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:49:43,796 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,796 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 11:49:43,812 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:49:43,812 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:49:43,812 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:49:43,812 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,828 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 11:49:43,828 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:49:43,843 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:49:43,843 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:49:43,843 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,843 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 11:49:43,843 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:49:43,862 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:49:43,862 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:49:43,862 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,862 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 11:49:43,875 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:49:43,875 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:49:43,875 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:49:43,875 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,890 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 11:49:43,890 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:49:43,890 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:49:43,890 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:49:43,890 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,906 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 11:49:43,906 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:49:43,906 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:49:43,921 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:49:43,921 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,921 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 11:49:43,937 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:49:43,937 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:49:43,937 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:49:43,937 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,937 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 11:49:43,953 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:49:43,953 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:49:43,953 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:49:43,953 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,968 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 11:49:43,968 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:49:43,968 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:49:43,968 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:49:43,968 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,984 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 11:49:43,984 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:49:43,984 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:49:43,999 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:49:43,999 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:43,999 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 11:49:44,016 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:49:44,016 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:49:44,016 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:49:44,016 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,016 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 11:49:44,031 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:49:44,031 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:49:44,031 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:49:44,031 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,046 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 11:49:44,046 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:49:44,046 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:49:44,046 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:49:44,046 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,062 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 11:49:44,062 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:49:44,077 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:49:44,077 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:49:44,077 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,077 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 11:49:44,094 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:49:44,094 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:49:44,094 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:49:44,094 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,108 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 11:49:44,109 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:49:44,109 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:49:44,109 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:49:44,109 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,124 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 11:49:44,124 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:49:44,141 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:49:44,141 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:49:44,141 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,141 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 11:49:44,156 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:49:44,156 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:49:44,156 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:49:44,156 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,171 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 11:49:44,171 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:49:44,171 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:49:44,187 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:49:44,187 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,187 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 11:49:44,218 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:49:44,218 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:49:44,218 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:49:44,218 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,218 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 11:49:44,234 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:49:44,234 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:49:44,234 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:49:44,234 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,249 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 11:49:44,249 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:49:44,249 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:49:44,249 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:49:44,266 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,266 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 11:49:44,282 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:49:44,282 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:49:44,282 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:49:44,282 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,295 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 11:49:44,296 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:49:44,296 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:49:44,296 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:49:44,296 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,312 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 11:49:44,312 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:49:44,328 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:49:44,328 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:49:44,328 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,328 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 11:49:44,344 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:49:44,344 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:49:44,344 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:49:44,344 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,344 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 11:49:44,359 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:49:44,359 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:49:44,359 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:49:44,359 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,359 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 11:49:44,375 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:49:44,375 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:49:44,375 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:49:44,375 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,390 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 11:49:44,405 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:49:44,405 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:49:44,405 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:49:44,405 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,428 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 11:49:44,437 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:49:44,437 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:49:44,437 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:49:44,437 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,452 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 11:49:44,452 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:49:44,469 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:49:44,469 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:49:44,469 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,469 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 11:49:44,486 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:49:44,486 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:49:44,486 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:49:44,486 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,499 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 11:49:44,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:49:44,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:49:44,515 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:49:44,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,531 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 11:49:44,531 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:49:44,531 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:49:44,531 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:49:44,531 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,549 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 11:49:44,563 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:49:44,563 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:49:44,563 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:49:44,563 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,563 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 11:49:44,579 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:49:44,579 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:49:44,579 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:49:44,579 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,596 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 11:49:44,610 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:49:44,610 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:49:44,610 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:49:44,610 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,629 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 11:49:44,629 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:49:44,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:49:44,640 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:49:44,640 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,640 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 11:49:44,656 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:49:44,656 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:49:44,656 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:49:44,656 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,656 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 11:49:44,671 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:49:44,671 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:49:44,671 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:49:44,671 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,687 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 11:49:44,687 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:49:44,687 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:49:44,687 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:49:44,687 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,702 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 11:49:44,749 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:49:44,749 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:49:44,749 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:49:44,749 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,749 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 11:49:44,765 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:49:44,765 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:49:44,765 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:49:44,765 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,780 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 11:49:44,797 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:49:44,797 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:49:44,797 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:49:44,797 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,797 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 11:49:44,812 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:49:44,812 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:49:44,812 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:49:44,812 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,827 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 11:49:44,844 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:49:44,844 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:49:44,844 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:49:44,844 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,844 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 11:49:44,859 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:49:44,859 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:49:44,859 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:49:44,859 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,874 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 11:49:44,874 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:49:44,890 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:49:44,890 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:49:44,890 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,890 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 11:49:44,905 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:49:44,905 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:49:44,905 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:49:44,905 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,922 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 11:49:44,922 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:49:44,922 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:49:44,922 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:49:44,937 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,937 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 11:49:44,953 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:49:44,953 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:49:44,953 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:49:44,953 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,968 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 11:49:44,968 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:49:44,968 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:49:44,968 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:49:44,968 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:44,984 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 11:49:44,984 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:49:45,000 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:49:45,000 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:49:45,000 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,000 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 11:49:45,015 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:49:45,015 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:49:45,015 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:49:45,015 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,031 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 11:49:45,031 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:49:45,031 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:49:45,047 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:49:45,047 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,047 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 11:49:45,063 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:49:45,063 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:49:45,063 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:49:45,063 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,063 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 11:49:45,077 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:49:45,077 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:49:45,077 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:49:45,077 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,077 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 11:49:45,093 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:49:45,093 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:49:45,093 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:49:45,093 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,108 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 11:49:45,108 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:49:45,108 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:49:45,108 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:49:45,124 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,124 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 11:49:45,124 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:49:45,141 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:49:45,141 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:49:45,141 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,141 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 11:49:45,156 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:49:45,156 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:49:45,156 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:49:45,156 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,171 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 11:49:45,187 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:49:45,187 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:49:45,187 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:49:45,187 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,187 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 11:49:45,203 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:49:45,203 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:49:45,203 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:49:45,203 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,217 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 11:49:45,218 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:49:45,218 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:49:45,218 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:49:45,218 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,235 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 11:49:45,235 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:49:45,250 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:49:45,250 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:49:45,250 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,250 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 11:49:45,265 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:49:45,265 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:49:45,265 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:49:45,265 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,265 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 11:49:45,281 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:49:45,281 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:49:45,281 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:49:45,281 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,281 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 11:49:45,296 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:49:45,296 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:49:45,296 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:49:45,296 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,312 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 11:49:45,312 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:49:45,312 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:49:45,312 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:49:45,312 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,327 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 11:49:45,327 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:49:45,327 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:49:45,327 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:49:45,327 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,343 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 11:49:45,343 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:49:45,343 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:49:45,343 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:49:45,358 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,359 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 11:49:45,359 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:49:45,359 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:49:45,359 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:49:45,375 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,375 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 11:49:45,375 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:49:45,390 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:49:45,390 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:49:45,390 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,390 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 11:49:45,390 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:49:45,406 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:49:45,406 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:49:45,406 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,406 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 11:49:45,421 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:49:45,421 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:49:45,421 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:49:45,421 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,421 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 11:49:45,437 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:49:45,437 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:49:45,437 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:49:45,437 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,437 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 11:49:45,452 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:49:45,452 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:49:45,452 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:49:45,452 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,452 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 11:49:45,468 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:49:45,468 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:49:45,468 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:49:45,468 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,468 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 11:49:45,483 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:49:45,483 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:49:45,483 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:49:45,483 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,499 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 11:49:45,499 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:49:45,499 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:49:45,499 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:49:45,499 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,515 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 11:49:45,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:49:45,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:49:45,515 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:49:45,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,530 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 11:49:45,530 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:49:45,530 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:49:45,530 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:49:45,530 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,546 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 11:49:45,546 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:49:45,546 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:49:45,546 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:49:45,546 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,563 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 11:49:45,563 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:49:45,563 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:49:45,563 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:49:45,577 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,577 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 11:49:45,577 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:49:45,577 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:49:45,593 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:49:45,593 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,593 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 11:49:45,593 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:49:45,593 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:49:45,609 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:49:45,609 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,609 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 11:49:45,609 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:49:45,624 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:49:45,624 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:49:45,624 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,624 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 11:49:45,641 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:49:45,641 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:49:45,641 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:49:45,641 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,641 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 11:49:45,656 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:49:45,656 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:49:45,656 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:49:45,656 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,656 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 11:49:45,674 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:49:45,674 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:49:45,674 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:49:45,674 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,674 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 11:49:45,688 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:49:45,688 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:49:45,688 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:49:45,688 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,688 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 11:49:45,703 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:49:45,703 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:49:45,703 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:49:45,703 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,703 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 11:49:45,719 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:49:45,719 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:49:45,719 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:49:45,719 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,719 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 11:49:45,734 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:49:45,734 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:49:45,734 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:49:45,734 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,734 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 11:49:45,750 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:49:45,750 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:49:45,750 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:49:45,750 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,765 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 11:49:45,784 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:49:45,784 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:49:45,784 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:49:45,784 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,796 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 11:49:45,796 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:49:45,796 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:49:45,796 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:49:45,796 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,812 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 11:49:45,812 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:49:45,812 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:49:45,812 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:49:45,812 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,829 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 11:49:45,829 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:49:45,829 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:49:45,829 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:49:45,829 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,829 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 11:49:45,845 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:49:45,861 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:49:45,861 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:49:45,861 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,861 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 11:49:45,876 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:49:45,876 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:49:45,876 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:49:45,876 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,876 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 11:49:45,892 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:49:45,892 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:49:45,892 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:49:45,892 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,892 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 11:49:45,908 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:49:45,908 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:49:45,908 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:49:45,908 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,908 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 11:49:45,922 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:49:45,922 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:49:45,922 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:49:45,922 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,922 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 11:49:45,939 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:49:45,939 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:49:45,939 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:49:45,939 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,939 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 11:49:45,954 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:49:45,954 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:49:45,954 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:49:45,954 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,954 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 11:49:45,970 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:49:45,970 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:49:45,970 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:49:45,970 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,983 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 11:49:45,984 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:49:45,984 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:49:45,984 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:49:45,984 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:45,999 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 11:49:46,015 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:49:46,015 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:49:46,015 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:49:46,015 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,015 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 11:49:46,031 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:49:46,031 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:49:46,031 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:49:46,031 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,031 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 11:49:46,047 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:49:46,047 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:49:46,047 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:49:46,047 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,047 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 11:49:46,062 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:49:46,062 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:49:46,062 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:49:46,062 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,062 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 11:49:46,078 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:49:46,078 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:49:46,078 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:49:46,078 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,078 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 11:49:46,093 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:49:46,093 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:49:46,093 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:49:46,093 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,109 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 11:49:46,109 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:49:46,109 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:49:46,109 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:49:46,109 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,125 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 11:49:46,125 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:49:46,125 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:49:46,125 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:49:46,125 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,140 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 11:49:46,140 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:49:46,140 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:49:46,140 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:49:46,140 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,156 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 11:49:46,156 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:49:46,156 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:49:46,156 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:49:46,171 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,171 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 11:49:46,171 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:49:46,171 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:49:46,187 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:49:46,187 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,187 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 11:49:46,187 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:49:46,202 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:49:46,202 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:49:46,202 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,202 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 11:49:46,219 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:49:46,219 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:49:46,219 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:49:46,219 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,219 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 11:49:46,234 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:49:46,234 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:49:46,234 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:49:46,234 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,234 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 11:49:46,249 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,249 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,249 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,249 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,249 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,265 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,265 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,265 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,265 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,281 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,281 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:49:46,301 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:49:46,301 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:49:46,301 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,301 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 11:49:46,312 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:49:46,312 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:49:46,312 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:49:46,312 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,312 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 11:49:46,327 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:49:46,327 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:49:46,327 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:49:46,327 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,343 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 11:49:46,343 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:49:46,343 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:49:46,343 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:49:46,343 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,359 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 11:49:46,359 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:49:46,359 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:49:46,359 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:49:46,359 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,375 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 11:49:46,375 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:49:46,375 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:49:46,375 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:49:46,375 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,390 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 11:49:46,390 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,390 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,390 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,390 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,406 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 11:49:46,406 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,406 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,406 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,421 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,421 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,421 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:49:46,421 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:49:46,421 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:49:46,421 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,438 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 11:49:46,438 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,438 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,452 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,452 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,452 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 11:49:46,452 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:49:46,468 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:49:46,468 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:49:46,468 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,468 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 11:49:46,468 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:49:46,484 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:49:46,484 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:49:46,484 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,484 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 11:49:46,500 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:49:46,500 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:49:46,500 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:49:46,500 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,500 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 11:49:46,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:49:46,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:49:46,515 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:49:46,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,515 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 11:49:46,530 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:49:46,530 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:49:46,530 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:49:46,530 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,530 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 11:49:46,546 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:49:46,546 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:49:46,546 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:49:46,546 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,546 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 11:49:46,561 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:49:46,561 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:49:46,561 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:49:46,561 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,577 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 11:49:46,577 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:49:46,577 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:49:46,577 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:49:46,577 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,593 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 11:49:46,593 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:49:46,593 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:49:46,593 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:49:46,593 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,609 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 11:49:46,609 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:49:46,609 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:49:46,609 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:49:46,624 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,624 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 11:49:46,624 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:49:46,624 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:49:46,640 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:49:46,640 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,640 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 11:49:46,656 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:49:46,656 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:49:46,656 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:49:46,656 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,656 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 11:49:46,671 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:49:46,671 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:49:46,671 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:49:46,671 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,671 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 11:49:46,687 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:49:46,687 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:49:46,687 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:49:46,687 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,687 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 11:49:46,702 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:49:46,702 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:49:46,702 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:49:46,702 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,702 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 11:49:46,718 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:49:46,718 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:49:46,718 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:49:46,718 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,718 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 11:49:46,738 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:49:46,738 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:49:46,738 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:49:46,738 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,748 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 11:49:46,749 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:49:46,749 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:49:46,749 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:49:46,749 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,765 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 11:49:46,765 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:49:46,765 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:49:46,765 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:49:46,765 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,781 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 11:49:46,781 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:49:46,781 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:49:46,781 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:49:46,781 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,796 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 11:49:46,796 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:49:46,832 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:49:46,832 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:49:46,832 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,839 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 11:49:46,843 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:49:46,843 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:49:46,843 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:49:46,843 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,843 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 11:49:46,859 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:49:46,859 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:49:46,859 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:49:46,859 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,859 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 11:49:46,874 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:49:46,874 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:49:46,874 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:49:46,874 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,890 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 11:49:46,890 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:49:46,890 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:49:46,890 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:49:46,890 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,906 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 11:49:46,906 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:49:46,906 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:49:46,906 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:49:46,906 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,921 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 11:49:46,921 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:49:46,921 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:49:46,921 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:49:46,921 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,937 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 11:49:46,937 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:49:46,937 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:49:46,937 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:49:46,937 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,953 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 11:49:46,953 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:49:46,968 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:49:46,968 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:49:46,968 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,968 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 11:49:46,968 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:49:46,984 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:49:46,984 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:49:46,984 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:46,984 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 11:49:46,984 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:49:47,000 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:49:47,000 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:49:47,000 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,000 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 11:49:47,022 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:49:47,022 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:49:47,031 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:49:47,031 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,031 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 11:49:47,046 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:49:47,046 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:49:47,046 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:49:47,046 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,046 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 11:49:47,062 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:49:47,062 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:49:47,062 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:49:47,062 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,077 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 11:49:47,077 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:49:47,077 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:49:47,077 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:49:47,077 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,094 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 11:49:47,094 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:49:47,094 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:49:47,094 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:49:47,094 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,109 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 11:49:47,109 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:49:47,109 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:49:47,109 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:49:47,109 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,124 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 11:49:47,124 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:49:47,124 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:49:47,140 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:49:47,140 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,140 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 11:49:47,140 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:49:47,156 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:49:47,156 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:49:47,156 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,156 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 11:49:47,171 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:49:47,171 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:49:47,171 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:49:47,171 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,187 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 11:49:47,187 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:49:47,187 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:49:47,187 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:49:47,187 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,202 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 11:49:47,202 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:49:47,202 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:49:47,202 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:49:47,202 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,219 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 11:49:47,219 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:49:47,219 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:49:47,219 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:49:47,219 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,235 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 11:49:47,235 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:49:47,235 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:49:47,235 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:49:47,249 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,249 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 11:49:47,249 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:49:47,249 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:49:47,265 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:49:47,265 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,265 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 11:49:47,265 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:49:47,280 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:49:47,280 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:49:47,280 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,280 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 11:49:47,280 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:49:47,296 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:49:47,296 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:49:47,296 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,296 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 11:49:47,312 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:49:47,312 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:49:47,312 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:49:47,312 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,312 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 11:49:47,328 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:49:47,328 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:49:47,328 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:49:47,352 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,352 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 11:49:47,359 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:49:47,359 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:49:47,359 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:49:47,359 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,375 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 11:49:47,375 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:49:47,375 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:49:47,375 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:49:47,375 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,390 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 11:49:47,390 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:49:47,390 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:49:47,390 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:49:47,390 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,406 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 11:49:47,406 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:49:47,406 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:49:47,421 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:49:47,421 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,421 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 11:49:47,421 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:49:47,421 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:49:47,437 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:49:47,437 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,437 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 11:49:47,437 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:49:47,452 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:49:47,452 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:49:47,452 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,452 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 11:49:47,452 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:49:47,469 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:49:47,469 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:49:47,469 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,469 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 11:49:47,484 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:49:47,484 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:49:47,484 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:49:47,484 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,484 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 11:49:47,500 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:49:47,500 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:49:47,500 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:49:47,500 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,500 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 11:49:47,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:49:47,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:49:47,515 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:49:47,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,515 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 11:49:47,531 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:49:47,531 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:49:47,531 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:49:47,531 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,531 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 11:49:47,546 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:49:47,546 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:49:47,546 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:49:47,546 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,546 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 11:49:47,562 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:49:47,562 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:49:47,562 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:49:47,562 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,562 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 11:49:47,578 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:49:47,578 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:49:47,578 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:49:47,578 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,593 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 11:49:47,593 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:49:47,593 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:49:47,593 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:49:47,593 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,609 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 11:49:47,609 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:49:47,609 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:49:47,609 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:49:47,609 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,625 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 11:49:47,625 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:49:47,625 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:49:47,625 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:49:47,625 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,640 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 11:49:47,640 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:49:47,640 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:49:47,640 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:49:47,640 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,655 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 11:49:47,655 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:49:47,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:49:47,671 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:49:47,671 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,671 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 11:49:47,671 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:49:47,687 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:49:47,687 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:49:47,687 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,687 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 11:49:47,687 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:49:47,703 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:49:47,703 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:49:47,703 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,703 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 11:49:47,718 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:49:47,718 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:49:47,718 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:49:47,718 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,718 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 11:49:47,734 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:49:47,734 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:49:47,734 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:49:47,734 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,734 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 11:49:47,749 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:49:47,749 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:49:47,749 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:49:47,749 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,749 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 11:49:47,765 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:49:47,765 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:49:47,765 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:49:47,765 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,765 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 11:49:47,780 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:49:47,780 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:49:47,780 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:49:47,780 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,780 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 11:49:47,796 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:49:47,796 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:49:47,796 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:49:47,796 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,796 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 11:49:47,812 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:49:47,812 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:49:47,812 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:49:47,812 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,812 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 11:49:47,827 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:49:47,827 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:49:47,827 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:49:47,827 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,843 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 11:49:47,843 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:49:47,860 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:49:47,860 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:49:47,860 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,860 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 11:49:47,874 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:49:47,874 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:49:47,874 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:49:47,874 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,874 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 11:49:47,890 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:49:47,890 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:49:47,890 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:49:47,890 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,890 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 11:49:47,905 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:49:47,905 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:49:47,905 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:49:47,905 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,905 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 11:49:47,922 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:49:47,937 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:49:47,937 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:49:47,937 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,937 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 11:49:47,956 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:49:47,956 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:49:47,956 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:49:47,956 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,966 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 11:49:47,968 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:49:47,968 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:49:47,968 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:49:47,968 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:47,984 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 11:49:47,984 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:49:47,984 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:49:47,984 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:49:47,984 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,000 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 11:49:48,000 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:49:48,000 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:49:48,000 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:49:48,014 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,015 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 11:49:48,015 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:49:48,015 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:49:48,032 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:49:48,032 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,032 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 11:49:48,032 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:49:48,046 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:49:48,046 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:49:48,046 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,046 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 11:49:48,063 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:49:48,063 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:49:48,063 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:49:48,063 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,063 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 11:49:48,077 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:49:48,077 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:49:48,077 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:49:48,077 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,077 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 11:49:48,094 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:49:48,094 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:49:48,094 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:49:48,094 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,094 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 11:49:48,108 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:49:48,108 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:49:48,108 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:49:48,108 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,108 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 11:49:48,125 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:49:48,125 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:49:48,125 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:49:48,125 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,125 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 11:49:48,140 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:49:48,140 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:49:48,140 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:49:48,140 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,140 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 11:49:48,155 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:49:48,171 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:49:48,171 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:49:48,171 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,171 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 11:49:48,189 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:49:48,189 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:49:48,189 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:49:48,189 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,189 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 11:49:48,204 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:49:48,204 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:49:48,204 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:49:48,204 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,204 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 11:49:48,220 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:49:48,220 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:49:48,220 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:49:48,220 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,220 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 11:49:48,236 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:49:48,236 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:49:48,236 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:49:48,236 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,236 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 11:49:48,252 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:49:48,252 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:49:48,252 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:49:48,252 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,267 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 11:49:48,267 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:49:48,282 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:49:48,282 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:49:48,282 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,282 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 11:49:48,296 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:49:48,296 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:49:48,296 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:49:48,296 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,296 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 11:49:48,312 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:49:48,312 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:49:48,312 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:49:48,312 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,312 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 11:49:48,328 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:49:48,328 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:49:48,328 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:49:48,328 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,328 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 11:49:48,343 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:49:48,343 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:49:48,343 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:49:48,343 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,343 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 11:49:48,358 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:49:48,358 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:49:48,358 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:49:48,358 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,374 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 11:49:48,374 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:49:48,374 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:49:48,374 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:49:48,374 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,390 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 11:49:48,390 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:49:48,390 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:49:48,390 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:49:48,390 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,406 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 11:49:48,406 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:49:48,406 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:49:48,406 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:49:48,406 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,421 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 11:49:48,421 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:49:48,421 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:49:48,421 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:49:48,421 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,437 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 11:49:48,437 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:49:48,437 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:49:48,437 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:49:48,437 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,452 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 11:49:48,452 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:49:48,452 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:49:48,452 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:49:48,452 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,468 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 11:49:48,468 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:49:48,468 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:49:48,468 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:49:48,484 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,484 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 11:49:48,501 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:49:48,501 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:49:48,501 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:49:48,501 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,501 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 11:49:48,515 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:49:48,515 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:49:48,515 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:49:48,515 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,515 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 11:49:48,531 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:49:48,531 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:49:48,531 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:49:48,531 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,531 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 11:49:48,546 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:49:48,546 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:49:48,546 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:49:48,546 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,546 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 11:49:48,562 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:49:48,562 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:49:48,562 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:49:48,562 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,562 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 11:49:48,578 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:49:48,578 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:49:48,578 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:49:48,578 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,578 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 11:49:48,593 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:49:48,593 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:49:48,593 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:49:48,593 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,609 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 11:49:48,609 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:49:48,609 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:49:48,609 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:49:48,624 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,624 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 11:49:48,624 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:49:48,641 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:49:48,641 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:49:48,641 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,641 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 11:49:48,655 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:49:48,655 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:49:48,655 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:49:48,655 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,671 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 11:49:48,671 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:49:48,671 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:49:48,671 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:49:48,671 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,687 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 11:49:48,687 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:49:48,687 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:49:48,702 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:49:48,702 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,702 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 11:49:48,718 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:49:48,718 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:49:48,718 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:49:48,718 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,718 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 11:49:48,734 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:49:48,734 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:49:48,734 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:49:48,734 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,749 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 11:49:48,749 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:49:48,749 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:49:48,764 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:49:48,765 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,765 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 11:49:48,780 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:49:48,780 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:49:48,780 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:49:48,780 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,780 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 11:49:48,797 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:49:48,797 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:49:48,797 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:49:48,797 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,797 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 11:49:48,811 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:49:48,811 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:49:48,811 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:49:48,811 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,828 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 11:49:48,828 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:49:48,828 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:49:48,828 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:49:48,828 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,843 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 11:49:48,843 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:49:48,843 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:49:48,859 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:49:48,859 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,859 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 11:49:48,875 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:49:48,875 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:49:48,875 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:49:48,875 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,875 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 11:49:48,890 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:49:48,890 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:49:48,890 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:49:48,890 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,921 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 11:49:48,921 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:49:48,921 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:49:48,921 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:49:48,921 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,937 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 11:49:48,937 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:49:48,952 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:49:48,952 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:49:48,952 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,952 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 11:49:48,968 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:49:48,968 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:49:48,968 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:49:48,968 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,968 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 11:49:48,984 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:49:48,984 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:49:48,984 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:49:48,984 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:48,984 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 11:49:48,999 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:49:49,015 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:49:49,015 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:49:49,015 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,015 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 11:49:49,033 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:49:49,033 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:49:49,033 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:49:49,033 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,046 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 11:49:49,046 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:49:49,046 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:49:49,046 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:49:49,046 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,062 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 11:49:49,062 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:49:49,080 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:49:49,080 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:49:49,080 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,080 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 11:49:49,093 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:49:49,093 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:49:49,093 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:49:49,093 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,110 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 11:49:49,110 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:49:49,110 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:49:49,110 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:49:49,110 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,124 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 11:49:49,124 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:49:49,140 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:49:49,140 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:49:49,140 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,140 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 11:49:49,155 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:49:49,155 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:49:49,155 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:49:49,155 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,174 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 11:49:49,174 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:49:49,190 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:49:49,190 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:49:49,190 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,190 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 11:49:49,204 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:49:49,204 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:49:49,204 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:49:49,204 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,204 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 11:49:49,219 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:49:49,219 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:49:49,219 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:49:49,219 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,233 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 11:49:49,233 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:49:49,233 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:49:49,233 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:49:49,233 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,249 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 11:49:49,249 [salt.fileclient :1093][DEBUG ][6228] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:49:49,249 [salt.fileclient :1101][DEBUG ][6228] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:49:49,265 [salt.fileclient :1121][DEBUG ][6228] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:49:49,265 [salt.fileclient :1149][DEBUG ][6228] No dest file found -2020-03-04 11:49:49,265 [salt.fileclient :1230][INFO ][6228] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 11:49:49,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,265 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls -2020-03-04 11:49:49,281 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,281 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,281 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +2020-03-06 09:49:38,203 [salt.state :320 ][INFO ][6660] {'reg': {'Added': {'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Inheritance': True, 'Value': 1, 'Owner': None, 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 09:49:38,203 [salt.state :2045][INFO ][6660] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 09:49:38.203903 (duration_in_ms=327.998) +2020-03-06 09:49:38,203 [salt.state :1867][INFO ][6660] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 09:49:38.203903 +2020-03-06 09:49:38,203 [salt.state :1900][INFO ][6660] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 09:49:38,219 [salt.utils.http :234 ][DEBUG ][6660] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 09:49:38,219 [salt.utils.http :235 ][DEBUG ][6660] Using backend: tornado +2020-03-06 09:49:38,923 [salt.loaded.int.states.archive:1039][DEBUG ][6660] file.cached: {'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'result': True, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'changes': {'hash': {'old': None, 'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36'}}} +2020-03-06 09:49:38,923 [salt.loaded.int.states.archive:91 ][DEBUG ][6660] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 09:49:38,923 [salt.loaded.int.states.archive:1059][DEBUG ][6660] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 09:49:39,018 [salt.loaded.int.module.win_file:1463][DEBUG ][6660] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 09:49:39,032 [salt.loaded.int.module.win_file:1463][DEBUG ][6660] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 09:49:39,032 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][6660] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 09:49:39,032 [salt.loaded.int.states.archive:1344][DEBUG ][6660] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 09:49:39,422 [salt.loaded.int.states.archive:1643][DEBUG ][6660] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 09:49:39,422 [salt.state :320 ][INFO ][6660] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} +2020-03-06 09:49:39,422 [salt.state :2045][INFO ][6660] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 09:49:39.422632 (duration_in_ms=1218.729) +2020-03-06 09:49:39,422 [salt.state :1867][INFO ][6660] Running state [rename-extract] at time 09:49:39.422632 +2020-03-06 09:49:39,422 [salt.state :1900][INFO ][6660] Executing state module.run for [rename-extract] +2020-03-06 09:49:39,438 [salt.state :320 ][INFO ][6660] {'file.rename': True} +2020-03-06 09:49:39,438 [salt.state :2045][INFO ][6660] Completed state [rename-extract] at time 09:49:39.438252 (duration_in_ms=15.62) +2020-03-06 09:49:39,438 [salt.state :1867][INFO ][6660] Running state [pkg.refresh_db] at time 09:49:39.438252 +2020-03-06 09:49:39,438 [salt.state :1900][INFO ][6660] Executing state module.run for [pkg.refresh_db] +2020-03-06 09:49:39,438 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][6660] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:55.812548) +2020-03-06 09:49:39,438 [salt.loaded.int.module.win_pkg:939 ][INFO ][6660] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 09:49:39,438 [salt.loaded.int.module.win_pkg:958 ][INFO ][6660] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 09:49:39,438 [salt.fileclient :234 ][INFO ][6660] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 09:49:39,766 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:49:39,766 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:49:39,766 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:49:39,766 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,797 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 09:49:39,797 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:49:39,797 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:49:39,797 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:49:39,797 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,818 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 09:49:39,831 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:49:39,831 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:49:39,831 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:49:39,831 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,831 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 09:49:39,846 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:49:39,846 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:49:39,846 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:49:39,860 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,860 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 09:49:39,877 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:49:39,877 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:49:39,877 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:49:39,877 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,891 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 09:49:39,891 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:49:39,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:49:39,891 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:49:39,906 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,907 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 09:49:39,907 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:49:39,923 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:49:39,923 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:49:39,923 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,923 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 09:49:39,938 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:49:39,938 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:49:39,938 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:49:39,938 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,954 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 09:49:39,954 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:49:39,954 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:49:39,954 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:49:39,969 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,969 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 09:49:39,969 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:49:39,985 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:49:39,985 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:49:39,985 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:39,985 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 09:49:40,001 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:49:40,001 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:49:40,001 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:49:40,001 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,016 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 09:49:40,016 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:49:40,016 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:49:40,032 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:49:40,032 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,032 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 09:49:40,047 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:49:40,064 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:49:40,064 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:49:40,064 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,064 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 09:49:40,079 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:49:40,096 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:49:40,096 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:49:40,096 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,110 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 09:49:40,126 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:49:40,126 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:49:40,126 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:49:40,126 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,142 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 09:49:40,158 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:49:40,158 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:49:40,158 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:49:40,158 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,174 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 09:49:40,188 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:49:40,188 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:49:40,188 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:49:40,188 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,205 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 09:49:40,221 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:49:40,221 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:49:40,221 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:49:40,221 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,235 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 09:49:40,235 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:49:40,235 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:49:40,250 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:49:40,250 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,250 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 09:49:40,267 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:49:40,267 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:49:40,267 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:49:40,267 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,282 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 09:49:40,282 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:49:40,282 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:49:40,282 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:49:40,282 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,297 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 09:49:40,297 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:49:40,313 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:49:40,313 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:49:40,313 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,313 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 09:49:40,329 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:49:40,329 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:49:40,329 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:49:40,329 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,344 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 09:49:40,344 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:49:40,344 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:49:40,360 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:49:40,360 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,360 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 09:49:40,376 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:49:40,376 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:49:40,376 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:49:40,376 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,376 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 09:49:40,391 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:49:40,391 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:49:40,391 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:49:40,391 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,407 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 09:49:40,423 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:49:40,423 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:49:40,423 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:49:40,423 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,423 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 09:49:40,439 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:49:40,454 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:49:40,454 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:49:40,454 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,454 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 09:49:40,470 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:49:40,470 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:49:40,470 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:49:40,470 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,484 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 09:49:40,485 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:49:40,485 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:49:40,485 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:49:40,485 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,501 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 09:49:40,501 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:49:40,516 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:49:40,516 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:49:40,516 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,516 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 09:49:40,533 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:49:40,533 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:49:40,533 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:49:40,533 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,533 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 09:49:40,547 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:49:40,547 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:49:40,547 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:49:40,547 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,563 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 09:49:40,563 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:49:40,578 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:49:40,578 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:49:40,578 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,578 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 09:49:40,595 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:49:40,595 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:49:40,595 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:49:40,595 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,595 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 09:49:40,610 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:49:40,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:49:40,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:49:40,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,625 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 09:49:40,625 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:49:40,625 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:49:40,641 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:49:40,641 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,641 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 09:49:40,657 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:49:40,657 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:49:40,657 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:49:40,657 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,657 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 09:49:40,673 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:49:40,673 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:49:40,673 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:49:40,673 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,688 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 09:49:40,688 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:49:40,688 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:49:40,688 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:49:40,703 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,703 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 09:49:40,720 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:49:40,720 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:49:40,720 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:49:40,720 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,735 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 09:49:40,735 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:49:40,752 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:49:40,752 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:49:40,752 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,767 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 09:49:40,782 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:49:40,782 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:49:40,782 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:49:40,782 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,797 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 09:49:40,829 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:49:40,829 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:49:40,829 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:49:40,829 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,845 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 09:49:40,861 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:49:40,861 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:49:40,861 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:49:40,861 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,876 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 09:49:40,892 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:49:40,892 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:49:40,892 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:49:40,892 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,909 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 09:49:40,909 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:49:40,909 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:49:40,925 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:49:40,925 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,925 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 09:49:40,940 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:49:40,940 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:49:40,940 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:49:40,940 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,956 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 09:49:40,956 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:49:40,956 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:49:40,956 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:49:40,972 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,972 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 09:49:40,987 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:49:40,987 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:49:40,987 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:49:40,987 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:40,987 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 09:49:41,002 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:49:41,002 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:49:41,002 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:49:41,002 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,021 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 09:49:41,032 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:49:41,032 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:49:41,032 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:49:41,032 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,048 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 09:49:41,048 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:49:41,065 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:49:41,065 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:49:41,065 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,065 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 09:49:41,079 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:49:41,079 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:49:41,079 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:49:41,079 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,094 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 09:49:41,094 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:49:41,094 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:49:41,110 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:49:41,110 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,110 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 09:49:41,126 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:49:41,126 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:49:41,126 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:49:41,126 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,126 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 09:49:41,141 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:49:41,141 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:49:41,141 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:49:41,141 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,157 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 09:49:41,157 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:49:41,173 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:49:41,173 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:49:41,173 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,173 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 09:49:41,189 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:49:41,189 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:49:41,189 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:49:41,189 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,203 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 09:49:41,203 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:49:41,203 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:49:41,203 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:49:41,219 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,219 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 09:49:41,235 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:49:41,235 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:49:41,235 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:49:41,235 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,250 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 09:49:41,266 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:49:41,266 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:49:41,266 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:49:41,266 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,282 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 09:49:41,298 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:49:41,298 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:49:41,298 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:49:41,298 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,313 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 09:49:41,329 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:49:41,329 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:49:41,329 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:49:41,345 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,345 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 09:49:41,376 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:49:41,376 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:49:41,376 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:49:41,391 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,391 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 09:49:41,409 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:49:41,409 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:49:41,409 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:49:41,409 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,422 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 09:49:41,422 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:49:41,439 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:49:41,439 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:49:41,439 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,439 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 09:49:41,454 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:49:41,454 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:49:41,454 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:49:41,454 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,469 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 09:49:41,469 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:49:41,469 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:49:41,485 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:49:41,485 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,485 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 09:49:41,502 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:49:41,502 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:49:41,502 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:49:41,502 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,502 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 09:49:41,516 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:49:41,516 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:49:41,516 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:49:41,516 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,532 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 09:49:41,532 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:49:41,548 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:49:41,548 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:49:41,548 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,548 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 09:49:41,564 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:49:41,564 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:49:41,564 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:49:41,564 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,578 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 09:49:41,578 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:49:41,578 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:49:41,578 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:49:41,578 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,594 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 09:49:41,610 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:49:41,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:49:41,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:49:41,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,610 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 09:49:41,626 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:49:41,626 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:49:41,626 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:49:41,626 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,641 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 09:49:41,641 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:49:41,641 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:49:41,658 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:49:41,658 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,658 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 09:49:41,673 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:49:41,673 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:49:41,673 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:49:41,673 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,673 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 09:49:41,688 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:49:41,688 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:49:41,688 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:49:41,688 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,703 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 09:49:41,703 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:49:41,719 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:49:41,719 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:49:41,719 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,719 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 09:49:41,736 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:49:41,736 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:49:41,736 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:49:41,736 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,750 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 09:49:41,750 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:49:41,750 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:49:41,750 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:49:41,750 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,766 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 09:49:41,766 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:49:41,782 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:49:41,782 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:49:41,782 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,782 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 09:49:41,798 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:49:41,798 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:49:41,798 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:49:41,798 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,813 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 09:49:41,813 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:49:41,813 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:49:41,813 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:49:41,813 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,828 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 09:49:41,844 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:49:41,844 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:49:41,844 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:49:41,860 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,860 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 09:49:41,877 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:49:41,877 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:49:41,877 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:49:41,877 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,907 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 09:49:41,923 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:49:41,923 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:49:41,923 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:49:41,923 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,939 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 09:49:41,954 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:49:41,954 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:49:41,954 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:49:41,971 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:41,971 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 09:49:41,987 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:49:41,987 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:49:41,987 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:49:42,001 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,001 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 09:49:42,016 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:49:42,033 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:49:42,033 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:49:42,033 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,033 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 09:49:42,048 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:49:42,048 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:49:42,048 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:49:42,048 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,094 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 09:49:42,111 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:49:42,111 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:49:42,111 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:49:42,111 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,126 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 09:49:42,142 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:49:42,142 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:49:42,142 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:49:42,142 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,156 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 09:49:42,156 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:49:42,156 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:49:42,156 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:49:42,156 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,172 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 09:49:42,188 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:49:42,188 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:49:42,188 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:49:42,188 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,203 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 09:49:42,203 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:49:42,203 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:49:42,203 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:49:42,219 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,219 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 09:49:42,219 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:49:42,236 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:49:42,236 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:49:42,236 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,236 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 09:49:42,251 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:49:42,251 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:49:42,251 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:49:42,251 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,266 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 09:49:42,266 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:49:42,266 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:49:42,282 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:49:42,282 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,282 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 09:49:42,298 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:49:42,298 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:49:42,298 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:49:42,298 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,298 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 09:49:42,313 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:49:42,313 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:49:42,313 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:49:42,313 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,328 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 09:49:42,328 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:49:42,345 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:49:42,345 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:49:42,345 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,345 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 09:49:42,360 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:49:42,360 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:49:42,360 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:49:42,360 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,376 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 09:49:42,376 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:49:42,391 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:49:42,391 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:49:42,391 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,391 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 09:49:42,408 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:49:42,408 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:49:42,408 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:49:42,408 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,422 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 09:49:42,422 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:49:42,422 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:49:42,422 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:49:42,438 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,438 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 09:49:42,470 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:49:42,470 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:49:42,470 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:49:42,470 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,485 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 09:49:42,501 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:49:42,501 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:49:42,501 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:49:42,501 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,516 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 09:49:42,533 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:49:42,533 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:49:42,533 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:49:42,533 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,549 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 09:49:42,564 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:49:42,564 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:49:42,564 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:49:42,564 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,580 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 09:49:42,595 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:49:42,595 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:49:42,595 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:49:42,595 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,611 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 09:49:42,626 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:49:42,626 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:49:42,626 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:49:42,626 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,641 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 09:49:42,641 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:49:42,656 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:49:42,656 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:49:42,656 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,656 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 09:49:42,673 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:49:42,673 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:49:42,673 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:49:42,673 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,688 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 09:49:42,704 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:49:42,704 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:49:42,704 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:49:42,704 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,704 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 09:49:42,720 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:49:42,720 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:49:42,720 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:49:42,720 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,735 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 09:49:42,735 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:49:42,735 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:49:42,735 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:49:42,751 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,751 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 09:49:42,766 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:49:42,766 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:49:42,782 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:49:42,782 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,782 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 09:49:42,798 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:49:42,798 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:49:42,798 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:49:42,798 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,812 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 09:49:42,813 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:49:42,813 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:49:42,813 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:49:42,813 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,828 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 09:49:42,828 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:49:42,845 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:49:42,845 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:49:42,845 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,845 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 09:49:42,860 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:49:42,860 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:49:42,860 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:49:42,860 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,875 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 09:49:42,875 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:49:42,875 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:49:42,875 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:49:42,891 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,891 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 09:49:42,908 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:49:42,908 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:49:42,908 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:49:42,908 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,921 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 09:49:42,922 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:49:42,922 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:49:42,922 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:49:42,922 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,938 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 09:49:42,938 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:49:42,954 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:49:42,954 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:49:42,954 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,954 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 09:49:42,970 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:49:42,970 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:49:42,970 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:49:42,970 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:42,984 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 09:49:42,984 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:49:42,984 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:49:42,984 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:49:42,984 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,003 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 09:49:43,003 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:49:43,016 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:49:43,016 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:49:43,016 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,016 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 09:49:43,032 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:49:43,032 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:49:43,032 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:49:43,032 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,047 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 09:49:43,047 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:49:43,047 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:49:43,047 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:49:43,063 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,063 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 09:49:43,063 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:49:43,080 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:49:43,080 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:49:43,080 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,080 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 09:49:43,095 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,095 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,095 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,095 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,110 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,110 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,110 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,126 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,126 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,126 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,141 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:49:43,141 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:49:43,141 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:49:43,157 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,157 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 09:49:43,173 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:49:43,188 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:49:43,188 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:49:43,188 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,188 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 09:49:43,203 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:49:43,203 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:49:43,220 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:49:43,220 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,220 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 09:49:43,235 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:49:43,235 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:49:43,235 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:49:43,251 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,251 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 09:49:43,283 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:49:43,283 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:49:43,283 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:49:43,283 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,297 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 09:49:43,297 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:49:43,297 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:49:43,313 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:49:43,313 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,313 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 09:49:43,329 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,329 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,329 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,329 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,344 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 09:49:43,344 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,344 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,344 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,344 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,360 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,377 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:49:43,377 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:49:43,377 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:49:43,377 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,377 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 09:49:43,392 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,392 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,392 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,392 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,407 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 09:49:43,407 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:49:43,407 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:49:43,422 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:49:43,422 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,422 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 09:49:43,438 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:49:43,438 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:49:43,438 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:49:43,438 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,453 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 09:49:43,453 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:49:43,453 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:49:43,453 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:49:43,453 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,469 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 09:49:43,469 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:49:43,486 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:49:43,486 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:49:43,486 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,486 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 09:49:43,501 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:49:43,501 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:49:43,501 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:49:43,501 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,516 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 09:49:43,516 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:49:43,516 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:49:43,516 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:49:43,531 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,532 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 09:49:43,548 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:49:43,548 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:49:43,548 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:49:43,548 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,548 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 09:49:43,563 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:49:43,563 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:49:43,563 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:49:43,563 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,579 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 09:49:43,579 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:49:43,579 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:49:43,594 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:49:43,594 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,594 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 09:49:43,610 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:49:43,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:49:43,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:49:43,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,626 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 09:49:43,626 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:49:43,641 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:49:43,641 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:49:43,641 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,641 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 09:49:43,673 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:49:43,673 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:49:43,673 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:49:43,673 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,688 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 09:49:43,703 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:49:43,703 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:49:43,703 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:49:43,703 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,719 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 09:49:43,736 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:49:43,736 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:49:43,736 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:49:43,736 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,751 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 09:49:43,751 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:49:43,767 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:49:43,767 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:49:43,767 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,767 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 09:49:43,782 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:49:43,799 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:49:43,799 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:49:43,799 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,814 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 09:49:43,814 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:49:43,814 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:49:43,814 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:49:43,830 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,845 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 09:49:43,845 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:49:43,845 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:49:43,845 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:49:43,861 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,861 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 09:49:43,877 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:49:43,877 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:49:43,877 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:49:43,877 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,891 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 09:49:43,891 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:49:43,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:49:43,891 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:49:43,891 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,907 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 09:49:43,922 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:49:43,922 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:49:43,922 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:49:43,922 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,922 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 09:49:43,938 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:49:43,938 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:49:43,938 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:49:43,938 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,953 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 09:49:43,953 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:49:43,953 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:49:43,969 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:49:43,969 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:43,969 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 09:49:43,986 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:49:43,986 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:49:43,986 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:49:43,986 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,000 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 09:49:44,000 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:49:44,000 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:49:44,000 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:49:44,000 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,016 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 09:49:44,016 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:49:44,032 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:49:44,032 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:49:44,032 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,032 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 09:49:44,048 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:49:44,048 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:49:44,048 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:49:44,048 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,063 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 09:49:44,063 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:49:44,080 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:49:44,080 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:49:44,080 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,080 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 09:49:44,095 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:49:44,095 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:49:44,095 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:49:44,095 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,110 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 09:49:44,110 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:49:44,110 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:49:44,110 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:49:44,110 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,125 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 09:49:44,125 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:49:44,142 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:49:44,142 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:49:44,142 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,142 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 09:49:44,156 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:49:44,156 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:49:44,156 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:49:44,156 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,172 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 09:49:44,173 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:49:44,173 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:49:44,173 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:49:44,173 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,188 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 09:49:44,204 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:49:44,204 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:49:44,204 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:49:44,204 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,221 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 09:49:44,221 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:49:44,221 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:49:44,236 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:49:44,236 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,236 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 09:49:44,251 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:49:44,251 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:49:44,251 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:49:44,251 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,266 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 09:49:44,266 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:49:44,266 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:49:44,266 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:49:44,266 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,281 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 09:49:44,297 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:49:44,297 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:49:44,297 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:49:44,297 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,313 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 09:49:44,313 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:49:44,313 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:49:44,328 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:49:44,328 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,328 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 09:49:44,344 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:49:44,360 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:49:44,360 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:49:44,360 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,360 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 09:49:44,376 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:49:44,391 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:49:44,391 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:49:44,391 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,407 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 09:49:44,423 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:49:44,423 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:49:44,423 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:49:44,423 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,439 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 09:49:44,454 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:49:44,454 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:49:44,454 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:49:44,454 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,470 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 09:49:44,486 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:49:44,486 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:49:44,486 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:49:44,486 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,501 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 09:49:44,517 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:49:44,517 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:49:44,517 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:49:44,517 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,531 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 09:49:44,531 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:49:44,531 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:49:44,531 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:49:44,547 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,547 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 09:49:44,564 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:49:44,564 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:49:44,564 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:49:44,564 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,564 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 09:49:44,579 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:49:44,579 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:49:44,579 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:49:44,579 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,594 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 09:49:44,610 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:49:44,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:49:44,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:49:44,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,625 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 09:49:44,625 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:49:44,625 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:49:44,625 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:49:44,625 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,641 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 09:49:44,658 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:49:44,658 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:49:44,658 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:49:44,658 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,658 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 09:49:44,672 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:49:44,672 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:49:44,672 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:49:44,672 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,688 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 09:49:44,688 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:49:44,705 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:49:44,705 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:49:44,705 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,705 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 09:49:44,720 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:49:44,720 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:49:44,720 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:49:44,720 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,735 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 09:49:44,735 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:49:44,735 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:49:44,735 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:49:44,735 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,750 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 09:49:44,750 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:49:44,767 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:49:44,767 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:49:44,767 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,767 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 09:49:44,782 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:49:44,782 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:49:44,782 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:49:44,782 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,799 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 09:49:44,799 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:49:44,813 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:49:44,813 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:49:44,813 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,813 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 09:49:44,829 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:49:44,829 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:49:44,829 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:49:44,829 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,844 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 09:49:44,861 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:49:44,876 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:49:44,876 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:49:44,876 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,876 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 09:49:44,907 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:49:44,907 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:49:44,907 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:49:44,907 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,923 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 09:49:44,939 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:49:44,939 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:49:44,939 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:49:44,939 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,954 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 09:49:44,971 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:49:44,971 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:49:44,971 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:49:44,971 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:44,987 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 09:49:45,003 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:49:45,003 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:49:45,003 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:49:45,003 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,018 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 09:49:45,018 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:49:45,018 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:49:45,018 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:49:45,018 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,034 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 09:49:45,050 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:49:45,050 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:49:45,050 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:49:45,050 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,050 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 09:49:45,065 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:49:45,065 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:49:45,065 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:49:45,065 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,082 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 09:49:45,095 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:49:45,095 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:49:45,095 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:49:45,095 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,110 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 09:49:45,126 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:49:45,126 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:49:45,126 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:49:45,126 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,126 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 09:49:45,141 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:49:45,141 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:49:45,141 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:49:45,141 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,157 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 09:49:45,157 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:49:45,172 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:49:45,172 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:49:45,172 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,172 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 09:49:45,189 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:49:45,189 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:49:45,189 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:49:45,189 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,203 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 09:49:45,203 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:49:45,203 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:49:45,203 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:49:45,219 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,219 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 09:49:45,236 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:49:45,236 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:49:45,236 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:49:45,236 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,236 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 09:49:45,266 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:49:45,266 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:49:45,266 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:49:45,266 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,281 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 09:49:45,281 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:49:45,281 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:49:45,297 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:49:45,297 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,297 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 09:49:45,314 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:49:45,314 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:49:45,314 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:49:45,314 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,314 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 09:49:45,344 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:49:45,344 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:49:45,344 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:49:45,344 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,360 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 09:49:45,375 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:49:45,375 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:49:45,392 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:49:45,392 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,392 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 09:49:45,407 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:49:45,407 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:49:45,407 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:49:45,407 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,423 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 09:49:45,438 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:49:45,438 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:49:45,438 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:49:45,438 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,438 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 09:49:45,454 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:49:45,454 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:49:45,454 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:49:45,454 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,470 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 09:49:45,485 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:49:45,485 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:49:45,485 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:49:45,485 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,485 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 09:49:45,501 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:49:45,501 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:49:45,501 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:49:45,501 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,516 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 09:49:45,532 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:49:45,532 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:49:45,532 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:49:45,532 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,547 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 09:49:45,564 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:49:45,564 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:49:45,564 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:49:45,564 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,578 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 09:49:45,595 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:49:45,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:49:45,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:49:45,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,625 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 09:49:45,641 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:49:45,641 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:49:45,657 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:49:45,657 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,657 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 09:49:45,689 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:49:45,689 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:49:45,689 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:49:45,689 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,704 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 09:49:45,719 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:49:45,719 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:49:45,719 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:49:45,719 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,735 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 09:49:45,752 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:49:45,752 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:49:45,752 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:49:45,752 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,766 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 09:49:45,766 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:49:45,782 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:49:45,782 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:49:45,782 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,782 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 09:49:45,797 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:49:45,797 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:49:45,797 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:49:45,797 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,813 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 09:49:45,830 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:49:45,830 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:49:45,830 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:49:45,830 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,844 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 09:49:45,844 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:49:45,844 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:49:45,860 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:49:45,860 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,860 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 09:49:45,876 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:49:45,876 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:49:45,876 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:49:45,876 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,891 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 09:49:45,891 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:49:45,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:49:45,907 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:49:45,907 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,907 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 09:49:45,922 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:49:45,939 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:49:45,939 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:49:45,939 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,939 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 09:49:45,954 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:49:45,954 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:49:45,954 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:49:45,954 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:45,972 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 09:49:45,972 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:49:45,985 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:49:45,985 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:49:45,985 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,000 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 09:49:46,000 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:49:46,000 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:49:46,016 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:49:46,016 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,016 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 09:49:46,032 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:49:46,032 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:49:46,032 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:49:46,032 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,047 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 09:49:46,063 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:49:46,063 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:49:46,063 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:49:46,063 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,079 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 09:49:46,096 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:49:46,096 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:49:46,110 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:49:46,110 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,110 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 09:49:46,142 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:49:46,142 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:49:46,142 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:49:46,142 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,157 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 09:49:46,172 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:49:46,172 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:49:46,172 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:49:46,172 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,188 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 09:49:46,204 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:49:46,204 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:49:46,204 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:49:46,204 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,220 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 09:49:46,236 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:49:46,236 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:49:46,236 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:49:46,236 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,252 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 09:49:46,268 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:49:46,268 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:49:46,268 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:49:46,268 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,282 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 09:49:46,282 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:49:46,282 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:49:46,297 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:49:46,297 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,297 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 09:49:46,313 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:49:46,313 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:49:46,313 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:49:46,313 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,328 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 09:49:46,328 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:49:46,328 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:49:46,345 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:49:46,345 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,345 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 09:49:46,360 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:49:46,360 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:49:46,360 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:49:46,360 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,376 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 09:49:46,376 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:49:46,392 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:49:46,392 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:49:46,392 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,392 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 09:49:46,407 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:49:46,407 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:49:46,407 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:49:46,407 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,423 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 09:49:46,423 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:49:46,439 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:49:46,439 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:49:46,439 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,439 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 09:49:46,454 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:49:46,454 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:49:46,454 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:49:46,454 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,469 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 09:49:46,469 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:49:46,484 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:49:46,485 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:49:46,485 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,485 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 09:49:46,501 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:49:46,501 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:49:46,501 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:49:46,501 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,516 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 09:49:46,516 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:49:46,516 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:49:46,516 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:49:46,516 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,532 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 09:49:46,548 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:49:46,548 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:49:46,548 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:49:46,548 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,548 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 09:49:46,563 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:49:46,563 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:49:46,563 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:49:46,563 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,578 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 09:49:46,578 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:49:46,578 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:49:46,595 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:49:46,595 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,595 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 09:49:46,610 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:49:46,610 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:49:46,610 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:49:46,610 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,610 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 09:49:46,625 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:49:46,625 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:49:46,625 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:49:46,625 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,641 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 09:49:46,641 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:49:46,656 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:49:46,656 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:49:46,656 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,656 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 09:49:46,673 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:49:46,673 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:49:46,673 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:49:46,673 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,673 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 09:49:46,688 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:49:46,688 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:49:46,688 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:49:46,688 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,703 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 09:49:46,703 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:49:46,719 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:49:46,719 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:49:46,719 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,719 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 09:49:46,735 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:49:46,735 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:49:46,735 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:49:46,735 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,750 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 09:49:46,750 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:49:46,750 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:49:46,750 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:49:46,766 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,766 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 09:49:46,782 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:49:46,782 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:49:46,797 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:49:46,797 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,797 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 09:49:46,830 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:49:46,830 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:49:46,830 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:49:46,830 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,845 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 09:49:46,860 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:49:46,860 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:49:46,860 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:49:46,860 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,876 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 09:49:46,891 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:49:46,891 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:49:46,891 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:49:46,891 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,907 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 09:49:46,907 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:49:46,924 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:49:46,924 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:49:46,924 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,924 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 09:49:46,954 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:49:46,954 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:49:46,954 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:49:46,954 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,954 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 09:49:46,970 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:49:46,970 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:49:46,970 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:49:46,970 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:46,988 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 09:49:47,004 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:49:47,004 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:49:47,004 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:49:47,004 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,004 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 09:49:47,017 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:49:47,017 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:49:47,017 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:49:47,017 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,034 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 09:49:47,034 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:49:47,034 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:49:47,049 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:49:47,049 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,049 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 09:49:47,066 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:49:47,066 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:49:47,066 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:49:47,066 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,066 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 09:49:47,080 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:49:47,080 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:49:47,080 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:49:47,080 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,097 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 09:49:47,113 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:49:47,113 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:49:47,113 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:49:47,113 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,126 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 09:49:47,126 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:49:47,141 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:49:47,141 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:49:47,141 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,141 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 09:49:47,157 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:49:47,157 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:49:47,157 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:49:47,157 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,172 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 09:49:47,172 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:49:47,172 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:49:47,172 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:49:47,172 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,188 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 09:49:47,204 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:49:47,204 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:49:47,204 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:49:47,204 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,204 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 09:49:47,219 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:49:47,219 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:49:47,219 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:49:47,219 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,235 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 09:49:47,235 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:49:47,235 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:49:47,235 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:49:47,250 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,250 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 09:49:47,268 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:49:47,268 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:49:47,268 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:49:47,268 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,282 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 09:49:47,298 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:49:47,298 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:49:47,298 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:49:47,298 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,313 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 09:49:47,330 [salt.fileclient :1101][DEBUG ][6660] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:49:47,330 [salt.fileclient :1109][DEBUG ][6660] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:49:47,330 [salt.fileclient :1129][DEBUG ][6660] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:49:47,330 [salt.fileclient :1157][DEBUG ][6660] No dest file found +2020-03-06 09:49:47,344 [salt.fileclient :1238][INFO ][6660] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 09:49:47,361 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,361 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,361 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 09:49:47,376 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,376 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,393 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -3532,15 +3418,15 @@ pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names a -2020-03-04 11:49:49,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('7zip', OrderedDict([('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,281 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,299 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,299 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,299 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls -2020-03-04 11:49:49,299 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,315 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.015604734420776367 -2020-03-04 11:49:49,315 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +2020-03-06 09:49:47,393 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,393 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,408 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,408 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 09:49:47,422 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,422 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,422 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: activeperl_x64: '5.22.4': @@ -3574,15 +3460,15 @@ activeperl_x64: reboot: False -2020-03-04 11:49:49,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,438 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,315 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,315 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,315 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,315 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls -2020-03-04 11:49:49,328 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,328 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,328 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +2020-03-06 09:49:47,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,453 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,453 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 09:49:47,453 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,470 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.016783475875854492 +2020-03-06 09:49:47,470 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: activeperl_x86: '5.22.4': @@ -3598,15 +3484,15 @@ activeperl_x86: reboot: False -2020-03-04 11:49:49,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,328 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,328 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,344 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,344 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls -2020-03-04 11:49:49,344 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,344 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,344 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +2020-03-06 09:49:47,470 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,470 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,470 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,485 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 09:49:47,485 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,485 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: adobeair: latest: full_name: 'Adobe AIR' @@ -3627,15 +3513,15 @@ adobeair: locale: en_US reboot: False -2020-03-04 11:49:49,344 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,344 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,344 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,344 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,358 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls -2020-03-04 11:49:49,358 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,358 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,358 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +2020-03-06 09:49:47,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,500 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,500 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 09:49:47,500 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,500 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,500 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: # to understand what is meant by "classic" see # http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html @@ -3829,15 +3715,15 @@ adobereader-dc-classic: reboot: False -2020-03-04 11:49:49,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,517 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,358 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,374 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,374 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,374 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls -2020-03-04 11:49:49,374 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,374 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,374 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +2020-03-06 09:49:47,517 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.016782760620117188 +2020-03-06 09:49:47,517 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,531 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,531 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 09:49:47,531 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,531 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,531 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: adobereader-xi: '11.0.10': full_name: 'Adobe Reader XI (11.0.10)' @@ -3858,15 +3744,15 @@ adobereader-xi: locale: en_US reboot: False -2020-03-04 11:49:49,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,531 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,374 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,374 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,390 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls -2020-03-04 11:49:49,390 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,390 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,390 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +2020-03-06 09:49:47,531 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,531 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,547 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,547 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 09:49:47,547 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,547 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,547 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: adobereader: '10.1.4': full_name: 'Adobe Reader X (10.1.4)' @@ -3887,15 +3773,15 @@ adobereader: locale: en_US reboot: False -2020-03-04 11:49:49,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,390 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,406 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,406 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,406 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls -2020-03-04 11:49:49,406 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,406 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,406 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +2020-03-06 09:49:47,547 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,564 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,564 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,564 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 09:49:47,564 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,579 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.014867544174194336 +2020-03-06 09:49:47,579 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: adobeshockwaveplayer: latest: full_name: 'Adobe Shockwave Player 12.2' @@ -3909,15 +3795,15 @@ adobeshockwaveplayer: # # Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version -2020-03-04 11:49:49,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,579 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,406 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,406 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,422 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,437 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls -2020-03-04 11:49:49,437 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,437 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: +2020-03-06 09:49:47,579 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,579 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,579 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,579 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 09:49:47,579 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,595 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.01611781120300293 +2020-03-06 09:49:47,595 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: @@ -3940,15 +3826,15 @@ adv-ip-scanner: # http://www.advanced-ip-scanner.com # a product of: www.radmin.com -2020-03-04 11:49:49,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,437 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls -2020-03-04 11:49:49,454 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,454 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,454 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: +2020-03-06 09:49:47,595 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,609 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 09:49:47,610 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,610 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,610 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: @@ -3971,15 +3857,15 @@ adv-port-scanner: # http://www.advanced-port-scanner.com # a product of: www.radmin.com -2020-03-04 11:49:49,454 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,454 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,454 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,468 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,468 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls -2020-03-04 11:49:49,468 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,468 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,468 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +2020-03-06 09:49:47,610 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,626 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,626 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 09:49:47,626 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,626 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,626 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: advancedlogging: '1.0.0625.10': full_name: 'IIS Advanced Logging 1.0' @@ -3993,15 +3879,15 @@ advancedlogging: locale: en_US reboot: False -2020-03-04 11:49:49,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,626 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,468 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,468 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,468 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,468 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls -2020-03-04 11:49:49,483 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,483 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,483 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +2020-03-06 09:49:47,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0146331787109375 +2020-03-06 09:49:47,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,641 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 09:49:47,641 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,656 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: # just 32-bit x86 msi package available @@ -4017,15 +3903,15 @@ anydesk-msi: locale: en_US reboot: False -2020-03-04 11:49:49,483 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,483 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,483 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,483 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,483 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls -2020-03-04 11:49:49,483 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,500 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.016710281372070312 -2020-03-04 11:49:49,500 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +2020-03-06 09:49:47,657 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,657 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,673 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 09:49:47,673 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,673 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,673 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: # just 32-bit x86 installer available @@ -4045,15 +3931,15 @@ anydesk: locale: en_US reboot: False -2020-03-04 11:49:49,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,500 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,500 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls -2020-03-04 11:49:49,500 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,500 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,515 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +2020-03-06 09:49:47,673 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,688 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 09:49:47,688 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,688 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,688 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: applicationrequestrouting: '3.0.1952': full_name: 'Microsoft Application Request Routing 3.0' @@ -4067,15 +3953,15 @@ applicationrequestrouting: locale: en_US reboot: False -2020-03-04 11:49:49,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,515 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls -2020-03-04 11:49:49,515 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,515 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +2020-03-06 09:49:47,704 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,704 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 09:49:47,719 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,735 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: aspnet-mvc1: '1.0.0.0': full_name: 'Microsoft ASP.NET MVC 1.0' @@ -4087,15 +3973,15 @@ aspnet-mvc1: locale: en_US reboot: False -2020-03-04 11:49:49,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,531 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,531 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,531 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls -2020-03-04 11:49:49,531 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,531 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,546 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: +2020-03-06 09:49:47,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,735 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 09:49:47,752 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,752 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,752 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: atom: @@ -4160,15 +4046,15 @@ atom: reboot: False -2020-03-04 11:49:49,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,546 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,546 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls -2020-03-04 11:49:49,562 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,562 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: +2020-03-06 09:49:47,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.014243841171264648 +2020-03-06 09:49:47,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 09:49:47,797 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,797 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: @@ -4196,15 +4082,15 @@ audacity: reboot: False -2020-03-04 11:49:49,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,797 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,562 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls -2020-03-04 11:49:49,577 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,577 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,577 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: +2020-03-06 09:49:47,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,814 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 09:49:47,829 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,829 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,829 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: @@ -4246,15 +4132,15 @@ autohotkey: locale: en_US reboot: False -2020-03-04 11:49:49,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,577 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,593 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls -2020-03-04 11:49:49,593 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,593 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,593 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: +2020-03-06 09:49:47,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.015288114547729492 +2020-03-06 09:49:47,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,844 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 09:49:47,844 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,860 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: autoit: @@ -4271,15 +4157,15 @@ autoit: reboot: False -2020-03-04 11:49:49,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,860 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,593 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,593 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls -2020-03-04 11:49:49,609 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,609 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +2020-03-06 09:49:47,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,860 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 09:49:47,860 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.015707731246948242 +2020-03-06 09:49:47,876 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: autopsy: '4.3.0': full_name: 'Autopsy' @@ -4293,15 +4179,15 @@ autopsy: locale: en_US reboot: False -2020-03-04 11:49:49,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,609 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls -2020-03-04 11:49:49,625 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,625 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,625 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +2020-03-06 09:49:47,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,876 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,876 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,876 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 09:49:47,891 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,891 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0007646083831787109 +2020-03-06 09:49:47,891 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available awscli: @@ -4317,15 +4203,15 @@ awscli: locale: en_US reboot: False -2020-03-04 11:49:49,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,891 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,625 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,625 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,640 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls -2020-03-04 11:49:49,640 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,640 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +2020-03-06 09:49:47,891 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,891 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 09:49:47,907 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,907 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,907 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: # due to winrepo installer limitations you need to manually download the exe from # https://go.microsoft.com/fwlink/?linkid=2049975 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... @@ -4343,15 +4229,15 @@ azuredatastudio: locale: en_US reboot: False -2020-03-04 11:49:49,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,907 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,640 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls -2020-03-04 11:49:49,656 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,656 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,656 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +2020-03-06 09:49:47,921 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.01371312141418457 +2020-03-06 09:49:47,922 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,922 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,922 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 09:49:47,922 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,922 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,922 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: #the provider only offers the download of the latest version @@ -4367,15 +4253,15 @@ bandizip: locale: en_US reboot: False -2020-03-04 11:49:49,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,656 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,656 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls -2020-03-04 11:49:49,656 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.01561880111694336 -2020-03-04 11:49:49,671 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +2020-03-06 09:49:47,938 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.015684843063354492 +2020-03-06 09:49:47,938 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,938 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,938 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 09:49:47,938 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.01600933074951172 +2020-03-06 09:49:47,954 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: # just 32-bit x86 installer available @@ -4391,15 +4277,15 @@ belarc-advisor: locale: en_US reboot: False -2020-03-04 11:49:49,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,954 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,671 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls -2020-03-04 11:49:49,671 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.015712976455688477 -2020-03-04 11:49:49,687 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +2020-03-06 09:49:47,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,954 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,954 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,969 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 09:49:47,969 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,969 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,969 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: bginfo4x: '3.3.6': full_name: 'BGINFO4X for Windows 3.3.6' @@ -4411,15 +4297,15 @@ bginfo4x: locale: en_US reboot: False -2020-03-04 11:49:49,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,969 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,687 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls -2020-03-04 11:49:49,687 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,687 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +2020-03-06 09:49:47,969 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:47,969 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:47,985 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 09:49:47,985 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:47,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:47,985 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: # source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe bitnami-nginxstack: '1.8.0-0': @@ -4432,15 +4318,15 @@ bitnami-nginxstack: locale: en_US reboot: False -2020-03-04 11:49:49,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:47,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,702 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.015195131301879883 -2020-03-04 11:49:49,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,702 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls -2020-03-04 11:49:49,702 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,702 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,718 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +2020-03-06 09:49:47,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,001 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,001 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,001 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 09:49:48,017 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,017 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,017 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -4460,15 +4346,15 @@ bitvise: -2020-03-04 11:49:49,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,718 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls -2020-03-04 11:49:49,718 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.01577472686767578 -2020-03-04 11:49:49,734 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +2020-03-06 09:49:48,035 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.018160581588745117 +2020-03-06 09:49:48,035 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,035 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,035 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 09:49:48,048 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,048 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,048 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available blender: @@ -4484,15 +4370,15 @@ blender: locale: en_US reboot: False -2020-03-04 11:49:49,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,048 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,734 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls -2020-03-04 11:49:49,734 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,749 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +2020-03-06 09:49:48,063 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.015657424926757812 +2020-03-06 09:49:48,063 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,063 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,063 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 09:49:48,063 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,079 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.015822887420654297 +2020-03-06 09:49:48,079 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: bootracer: '6.50.0.450': full_name: 'BootRacer' @@ -4505,15 +4391,15 @@ bootracer: reboot: False # download zip archive manually and unpack msi to slat master winrepo-ng directory -2020-03-04 11:49:49,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,749 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,749 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls -2020-03-04 11:49:49,749 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,749 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,749 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: +2020-03-06 09:49:48,079 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,079 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 09:49:48,095 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,095 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,095 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: bulkrenameutility: @@ -4531,15 +4417,15 @@ bulkrenameutility: -2020-03-04 11:49:49,764 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,095 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,765 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0006346702575683594 -2020-03-04 11:49:49,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,765 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls -2020-03-04 11:49:49,765 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,781 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.015688657760620117 -2020-03-04 11:49:49,781 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +2020-03-06 09:49:48,095 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,111 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,111 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,111 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 09:49:48,111 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,142 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.030339717864990234 +2020-03-06 09:49:48,142 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: # just 32-bit x86 installer available @@ -4577,15 +4463,15 @@ bulk_extractor: reboot: False -2020-03-04 11:49:49,781 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,142 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,781 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,781 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,781 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,781 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls -2020-03-04 11:49:49,781 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,796 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.015113115310668945 -2020-03-04 11:49:49,796 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: +2020-03-06 09:49:48,142 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,142 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 09:49:48,159 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,159 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,159 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: ccleaner-slim: @@ -4634,15 +4520,15 @@ ccleaner-slim: reboot: False -2020-03-04 11:49:49,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,796 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,796 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,796 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,796 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls -2020-03-04 11:49:49,796 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.015614032745361328 -2020-03-04 11:49:49,812 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: +2020-03-06 09:49:48,159 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,173 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 09:49:48,189 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,189 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,189 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: ccleaner: @@ -4669,15 +4555,15 @@ ccleaner: reboot: False -2020-03-04 11:49:49,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,189 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,812 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls -2020-03-04 11:49:49,812 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,812 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +2020-03-06 09:49:48,189 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,189 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,203 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,203 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 09:49:48,203 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,203 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,203 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -4693,15 +4579,15 @@ cdburnerxp: locale: en_US reboot: False -2020-03-04 11:49:49,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,827 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,827 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,827 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,827 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls -2020-03-04 11:49:49,827 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,827 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,827 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +2020-03-06 09:49:48,203 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,203 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,219 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,219 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 09:49:48,219 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.015616416931152344 +2020-03-06 09:49:48,235 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: # just 32-bit x86 installer available @@ -4717,15 +4603,15 @@ cdroller: locale: en_US reboot: False -2020-03-04 11:49:49,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,827 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,844 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,844 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,844 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls -2020-03-04 11:49:49,859 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,859 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +2020-03-06 09:49:48,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,235 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 09:49:48,250 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,250 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,250 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: check-mk-agent-msi: '1.5.0.3268': @@ -4939,15 +4825,15 @@ check-mk-agent-msi: reboot: False -2020-03-04 11:49:49,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,875 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls -2020-03-04 11:49:49,875 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,890 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +2020-03-06 09:49:48,266 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.01595020294189453 +2020-03-06 09:49:48,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,266 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 09:49:48,282 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,282 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,282 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: check-mk-agent: 'Not Found': full_name: 'Check_MK Agent 1.2.8b4' @@ -4961,15 +4847,15 @@ check-mk-agent: locale: en_US reboot: False -2020-03-04 11:49:49,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,890 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,890 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls -2020-03-04 11:49:49,890 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,890 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,890 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +2020-03-06 09:49:48,282 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,282 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,282 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,297 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 09:49:48,297 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,297 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,297 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: chrome-rdp: latest: full_name: 'Chrome Remote Desktop Host' @@ -4981,15 +4867,15 @@ chrome-rdp: locale: en_US reboot: False -2020-03-04 11:49:49,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,297 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,890 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,906 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls -2020-03-04 11:49:49,906 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,906 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,906 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +2020-03-06 09:49:48,297 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,313 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 09:49:48,313 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: chrome: latest: full_name: 'Google Chrome' @@ -5001,15 +4887,15 @@ chrome: locale: en_US reboot: False -2020-03-04 11:49:49,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,906 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,906 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls -2020-03-04 11:49:49,906 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,922 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.01642441749572754 -2020-03-04 11:49:49,922 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +2020-03-06 09:49:48,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,329 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 09:49:48,329 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,329 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,329 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: clamav: '0.99.1': @@ -5036,15 +4922,15 @@ clamav: uninstaller: 'msiexec.exe' uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' -2020-03-04 11:49:49,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,344 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) -2020-03-04 11:49:49,922 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,922 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,922 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,922 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls -2020-03-04 11:49:49,937 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,937 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,937 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +2020-03-06 09:49:48,344 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.015418291091918945 +2020-03-06 09:49:48,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,344 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 09:49:48,344 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,344 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,360 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: # just 32-bit x86 installer available @@ -5078,15 +4964,15 @@ clamwin: locale: en_US reboot: False -2020-03-04 11:49:49,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,937 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,952 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls -2020-03-04 11:49:49,952 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,952 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:49,952 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +2020-03-06 09:49:48,360 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,360 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 09:49:48,360 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,375 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.015355348587036133 +2020-03-06 09:49:48,375 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: classicshell: '4.2.4': full_name: 'Classic Shell' @@ -5100,15 +4986,15 @@ classicshell: locale: en_US reboot: False -2020-03-04 11:49:49,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,375 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,952 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,952 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls -2020-03-04 11:49:49,952 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,970 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.01742863655090332 -2020-03-04 11:49:49,970 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +2020-03-06 09:49:48,375 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,375 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,375 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,375 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 09:49:48,375 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,392 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.01605081558227539 +2020-03-06 09:49:48,392 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: # just 32-bit x86 installer available @@ -5152,15 +5038,15 @@ clink: reboot: False # https://mridgers.github.io/clink/ -2020-03-04 11:49:49,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,392 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,970 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,970 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,970 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,970 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls -2020-03-04 11:49:49,970 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,985 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.014921188354492188 -2020-03-04 11:49:49,985 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +2020-03-06 09:49:48,392 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,392 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,392 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,406 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 09:49:48,406 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,406 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,406 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: conemu: '11.160.5290': @@ -5174,15 +5060,15 @@ conemu: locale: en_US reboot: False -2020-03-04 11:49:49,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:49,985 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:49,985 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:49,985 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:49,985 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls -2020-03-04 11:49:49,985 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:49,985 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,001 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +2020-03-06 09:49:48,422 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.015996694564819336 +2020-03-06 09:49:48,422 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,422 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,422 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 09:49:48,422 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,422 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,438 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: cpu-z: '1.86': @@ -5428,15 +5314,15 @@ cpu-z: reboot: False -2020-03-04 11:49:50,001 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,438 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,001 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,001 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,001 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,001 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls -2020-03-04 11:49:50,017 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,017 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,017 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +2020-03-06 09:49:48,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,454 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 09:49:48,454 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,454 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,454 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available curl: @@ -5500,15 +5386,15 @@ curl: # Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, # so you might not be calling the right 'curl' -2020-03-04 11:49:50,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,017 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,017 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,032 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,032 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls -2020-03-04 11:49:50,032 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,032 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,032 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +2020-03-06 09:49:48,470 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0007827281951904297 +2020-03-06 09:49:48,470 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,470 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,470 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 09:49:48,485 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,501 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: cyberduck-cli: '1.0.0.0': full_name: 'Cyberduck CLI' @@ -5520,15 +5406,15 @@ cyberduck-cli: locale: en_US reboot: False -2020-03-04 11:49:50,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,501 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,032 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,032 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,032 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,032 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls -2020-03-04 11:49:50,032 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,047 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.01533365249633789 -2020-03-04 11:49:50,047 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +2020-03-06 09:49:48,501 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,517 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 09:49:48,517 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.015129566192626953 +2020-03-06 09:49:48,532 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: # just 32-bit x86 installer available @@ -5537,10 +5423,10 @@ OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name cyberduck-msi: - '6.9.0.29768': + '6.8.2.28974': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5549,10 +5435,10 @@ cyberduck-msi: - '6.8.2.28974': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5573,15 +5459,15 @@ cyberduck-msi: -2020-03-04 11:49:50,047 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,047 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,047 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,047 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,047 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls -2020-03-04 11:49:50,047 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,063 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.01581096649169922 -2020-03-04 11:49:50,063 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +2020-03-06 09:49:48,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:49:48,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,547 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,547 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,547 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 09:49:48,563 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,563 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,563 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: # just 32-bit x86 installer available @@ -5590,10 +5476,10 @@ OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_ cyberduck: - '6.9.0.29768': + '6.8.2.28974': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5602,10 +5488,10 @@ cyberduck: - '6.8.2.28974': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5626,15 +5512,15 @@ cyberduck: -2020-03-04 11:49:50,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('cyberduck', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,063 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,063 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,063 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,063 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls -2020-03-04 11:49:50,063 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,079 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.01576828956604004 -2020-03-04 11:49:50,079 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +2020-03-06 09:49:48,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:49:48,580 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,580 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,580 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,580 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 09:49:48,595 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,595 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,595 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: # just 32-bit x86 installer available @@ -5659,15 +5545,15 @@ defraggler: locale: en_US reboot: False -2020-03-04 11:49:50,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,079 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,079 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,079 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,079 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls -2020-03-04 11:49:50,079 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,095 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.016144990921020508 -2020-03-04 11:49:50,095 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +2020-03-06 09:49:48,595 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,595 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,611 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,611 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 09:49:48,611 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,625 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.013991832733154297 +2020-03-06 09:49:48,625 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: dotnet: '4.6.01590': full_name: 'Microsoft .NET Framework 4.6.2' @@ -5714,15 +5600,15 @@ dotnet: locale: en_US reboot: False -2020-03-04 11:49:50,095 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,095 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,095 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,095 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,095 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls -2020-03-04 11:49:50,111 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,111 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,111 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +2020-03-06 09:49:48,625 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,642 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,642 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,642 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 09:49:48,642 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,642 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,657 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: # just 32-bit x86 installer available @@ -5743,15 +5629,15 @@ dropbox: locale: en_US reboot: False -2020-03-04 11:49:50,111 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,111 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,124 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,124 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,124 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls -2020-03-04 11:49:50,124 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,124 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,124 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +2020-03-06 09:49:48,657 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,657 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,672 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,672 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 09:49:48,672 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,672 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,672 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: duplicati: '1.3.4': @@ -5768,15 +5654,15 @@ duplicati: cache_dir: False use_scheduler: False -2020-03-04 11:49:50,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,672 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) -2020-03-04 11:49:50,124 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,124 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,124 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,124 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls -2020-03-04 11:49:50,140 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,140 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,140 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +2020-03-06 09:49:48,672 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,689 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,689 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,689 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 09:49:48,689 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,689 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,689 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available dvdstyler: @@ -5792,15 +5678,15 @@ dvdstyler: locale: en_US reboot: False -2020-03-04 11:49:50,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,140 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,156 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,156 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls -2020-03-04 11:49:50,156 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,156 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,156 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +2020-03-06 09:49:48,703 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.014591693878173828 +2020-03-06 09:49:48,703 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,703 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,703 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 09:49:48,703 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,720 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.016173839569091797 +2020-03-06 09:49:48,720 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: echo-desktop: '3.0.4': full_name: @@ -5812,15 +5698,15 @@ echo-desktop: uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" -2020-03-04 11:49:50,156 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) -2020-03-04 11:49:50,171 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,171 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls -2020-03-04 11:49:50,171 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,171 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,171 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +2020-03-06 09:49:48,720 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,720 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,720 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,735 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 09:49:48,735 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,735 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: eea: # '5.0.2260.1': # full_name: 'ESET Endpoint Antivirus' @@ -5852,15 +5738,15 @@ eea: # download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ # for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB -2020-03-04 11:49:50,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,750 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) -2020-03-04 11:49:50,171 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,187 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls -2020-03-04 11:49:50,187 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,187 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +2020-03-06 09:49:48,750 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,750 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,750 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,750 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 09:49:48,750 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,750 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,766 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: emet: '5.5': full_name: 'EMET 5.5' @@ -5872,15 +5758,15 @@ emet: locale: en_US reboot: False -2020-03-04 11:49:50,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,202 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.015304803848266602 -2020-03-04 11:49:50,202 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,202 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,202 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls -2020-03-04 11:49:50,202 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,202 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,219 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +2020-03-06 09:49:48,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 09:49:48,766 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.015968799591064453 +2020-03-06 09:49:48,782 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: # just 32-bit x86 installer available @@ -5897,15 +5783,15 @@ emsisoft-anti-malware: locale: en_US reboot: False -2020-03-04 11:49:50,219 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,219 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,219 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,219 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,219 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls -2020-03-04 11:49:50,219 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,219 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,234 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: +2020-03-06 09:49:48,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,782 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,782 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,782 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 09:49:48,782 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.01523733139038086 +2020-03-06 09:49:48,797 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: eraser: @@ -5931,15 +5817,15 @@ eraser: reboot: False -2020-03-04 11:49:50,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,797 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,234 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,234 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls -2020-03-04 11:49:50,234 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,250 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.015970706939697266 -2020-03-04 11:49:50,250 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +2020-03-06 09:49:48,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,813 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,813 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 09:49:48,813 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,813 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,813 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: evernote: '6.9.7.6770': full_name: 'Evernote v. 6.9.7' @@ -5969,15 +5855,15 @@ evernote: locale: en_US reboot: False -2020-03-04 11:49:50,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,813 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,250 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,250 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,250 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,250 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls -2020-03-04 11:49:50,250 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.015433311462402344 -2020-03-04 11:49:50,265 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +2020-03-06 09:49:48,813 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,829 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,829 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,829 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 09:49:48,829 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,829 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,829 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: # just 32-bit x86 installer available @@ -5993,15 +5879,15 @@ fiddler: locale: en_US reboot: False -2020-03-04 11:49:50,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,265 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls -2020-03-04 11:49:50,280 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,281 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0006163120269775391 -2020-03-04 11:49:50,281 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +2020-03-06 09:49:48,829 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,846 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,846 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,846 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 09:49:48,846 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,846 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:48,861 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: # just 32-bit x86 installer available @@ -6019,15 +5905,15 @@ filehippo-app-manager: reboot: False # download manually and place on master salt://win/repo-ng/filehippo-app-manager -2020-03-04 11:49:50,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,861 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,281 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,281 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,281 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,281 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls -2020-03-04 11:49:50,281 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,296 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.01554727554321289 -2020-03-04 11:49:50,296 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: +2020-03-06 09:49:48,861 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:48,861 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,861 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,861 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 09:49:48,861 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,875 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.014853477478027344 +2020-03-06 09:49:48,875 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: filezilla: @@ -6801,15 +6687,15 @@ filezilla: reboot: False -2020-03-04 11:49:50,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,312 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.01567816734313965 -2020-03-04 11:49:50,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,312 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls -2020-03-04 11:49:50,327 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,327 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,327 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +2020-03-06 09:49:48,893 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.017153263092041016 +2020-03-06 09:49:48,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,907 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 09:49:48,907 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,922 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.015677690505981445 +2020-03-06 09:49:48,922 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: firefox-esr_x64: '68.5.0': @@ -7473,15 +7359,15 @@ firefox-esr_x64: reboot: False -2020-03-04 11:49:50,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,938 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,343 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.01609349250793457 -2020-03-04 11:49:50,343 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,343 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,343 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls -2020-03-04 11:49:50,359 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,359 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,374 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +2020-03-06 09:49:48,938 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.01562356948852539 +2020-03-06 09:49:48,938 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,938 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,938 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 09:49:48,938 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:48,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.015573501586914062 +2020-03-06 09:49:48,954 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: firefox-esr_x86: @@ -8258,15 +8144,15 @@ firefox-esr_x86: reboot: False -2020-03-04 11:49:50,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:48,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,374 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,390 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls -2020-03-04 11:49:50,390 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,406 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.015972375869750977 -2020-03-04 11:49:50,406 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +2020-03-06 09:49:48,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.03109145164489746 +2020-03-06 09:49:48,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:48,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:48,985 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 09:49:48,985 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,001 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.01622152328491211 +2020-03-06 09:49:49,001 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: firefox_x64: '73.0': @@ -9250,15 +9136,15 @@ firefox_x64: reboot: False -2020-03-04 11:49:50,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,016 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,421 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.015663623809814453 -2020-03-04 11:49:50,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,421 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls -2020-03-04 11:49:50,421 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.01559901237487793 -2020-03-04 11:49:50,437 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +2020-03-06 09:49:49,032 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.030539274215698242 +2020-03-06 09:49:49,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,032 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 09:49:49,048 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,063 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.015600442886352539 +2020-03-06 09:49:49,078 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: firefox_x86: @@ -10605,15 +10491,15 @@ firefox_x86: reboot: False -2020-03-04 11:49:50,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,095 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,469 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.03174400329589844 -2020-03-04 11:49:50,469 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,469 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,469 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls -2020-03-04 11:49:50,484 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,484 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,484 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +2020-03-06 09:49:49,110 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.031439781188964844 +2020-03-06 09:49:49,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,110 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 09:49:49,125 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,125 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,125 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: # just 32-bit x86 installer available @@ -10630,15 +10516,15 @@ gedit: locale: en_US reboot: False -2020-03-04 11:49:50,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,484 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,499 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls -2020-03-04 11:49:50,499 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,499 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,499 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +2020-03-06 09:49:49,141 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0009174346923828125 +2020-03-06 09:49:49,141 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,141 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,141 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 09:49:49,141 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,158 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.01694655418395996 +2020-03-06 09:49:49,158 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: # just 32-bit x86 installer available # Gimp installs into %ProgramFiles on either cpu arch gimp: @@ -10684,15 +10570,15 @@ gimp: restart: False -2020-03-04 11:49:50,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,158 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) -2020-03-04 11:49:50,514 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,515 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls -2020-03-04 11:49:50,515 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,515 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +2020-03-06 09:49:49,158 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,158 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,158 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,171 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 09:49:49,172 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,172 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,172 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: git-extensions: '2.48.05': full_name: 'Git Extensions 2.48.05' @@ -10713,15 +10599,15 @@ git-extensions: locale: en_US reboot: False -2020-03-04 11:49:50,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,172 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,531 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls -2020-03-04 11:49:50,531 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,546 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.015436887741088867 -2020-03-04 11:49:50,546 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +2020-03-06 09:49:49,172 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,188 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 09:49:49,188 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,220 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.03199434280395508 +2020-03-06 09:49:49,220 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available for git @@ -11560,15 +11446,15 @@ msysgit: locale: en_US reboot: False -2020-03-04 11:49:50,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,251 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015916824340820312 -2020-03-04 11:49:50,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,562 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls -2020-03-04 11:49:50,562 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,562 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +2020-03-06 09:49:49,251 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.016820192337036133 +2020-03-06 09:49:49,251 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,266 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 09:49:49,266 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,283 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.01690053939819336 +2020-03-06 09:49:49,283 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: # just 32-bit x86 installer available @@ -11593,15 +11479,15 @@ glarysoft-absolute-uninstaller: locale: en_US reboot: False -2020-03-04 11:49:50,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,283 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,577 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.015061378479003906 -2020-03-04 11:49:50,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,577 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls -2020-03-04 11:49:50,577 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,577 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,594 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +2020-03-06 09:49:49,283 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,283 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,298 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,298 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 09:49:49,298 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.015012264251708984 +2020-03-06 09:49:49,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: # just 32-bit x86 installer available @@ -11618,15 +11504,15 @@ gnucash: reboot: False -2020-03-04 11:49:50,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,329 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,594 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,594 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,594 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,594 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls -2020-03-04 11:49:50,594 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.01481008529663086 -2020-03-04 11:49:50,609 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +2020-03-06 09:49:49,329 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,329 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 09:49:49,345 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,361 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.01620960235595703 +2020-03-06 09:49:49,361 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: # "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. # See https://golang.org/ @@ -12849,15 +12735,15 @@ golang: reboot: False -2020-03-04 11:49:50,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,392 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,624 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.015619039535522461 -2020-03-04 11:49:50,624 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,640 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls -2020-03-04 11:49:50,640 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,640 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +2020-03-06 09:49:49,392 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.0311737060546875 +2020-03-06 09:49:49,407 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,407 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,407 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 09:49:49,407 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,407 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,407 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: goodsync: '9.9.46.6': full_name: 'GoodSync' @@ -12869,15 +12755,15 @@ goodsync: locale: en_US reboot: False -2020-03-04 11:49:50,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,407 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,656 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls -2020-03-04 11:49:50,656 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,656 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,656 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +2020-03-06 09:49:49,407 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,423 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,423 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,423 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 09:49:49,423 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,440 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.017184019088745117 +2020-03-06 09:49:49,440 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: # just 32-bit x86 installer available @@ -12895,15 +12781,15 @@ gow: # Gow - GNU on Windows - The lightweight alternative to Cygwin # https://github.com/bmatzelle/gow/wiki -2020-03-04 11:49:50,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,656 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,671 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls -2020-03-04 11:49:50,671 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,671 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +2020-03-06 09:49:49,440 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,440 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,440 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,440 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 09:49:49,455 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,455 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,455 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: # just 32-bit x86 installer available @@ -12977,15 +12863,15 @@ gpg4win-light: # https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 # -2020-03-04 11:49:50,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,687 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls -2020-03-04 11:49:50,687 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,687 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +2020-03-06 09:49:49,471 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.015981197357177734 +2020-03-06 09:49:49,471 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,471 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,471 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 09:49:49,471 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,487 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.015120983123779297 +2020-03-06 09:49:49,487 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: # just 32-bit x86 installer available @@ -13053,15 +12939,15 @@ gpg4win-vanilla: reboot: False -2020-03-04 11:49:50,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,702 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls -2020-03-04 11:49:50,702 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,702 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,702 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: +2020-03-06 09:49:49,487 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,487 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,487 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,487 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 09:49:49,501 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,501 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,501 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: graylog-collector-sidecar: @@ -13137,15 +13023,15 @@ graylog-collector-sidecar: reboot: False -2020-03-04 11:49:50,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,501 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.015586614608764648 -2020-03-04 11:49:50,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,718 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls -2020-03-04 11:49:50,734 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,734 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +2020-03-06 09:49:49,519 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.017371416091918945 +2020-03-06 09:49:49,519 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,519 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,519 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 09:49:49,534 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,534 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,534 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: grepwin: '1.6.682': @@ -13192,15 +13078,15 @@ grepwin: locale: en_US reboot: False -2020-03-04 11:49:50,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,750 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,750 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,750 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls -2020-03-04 11:49:50,750 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,750 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,750 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +2020-03-06 09:49:49,534 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,550 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,550 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,550 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 09:49:49,550 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,550 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,565 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: # just 32-bit x86 installer available @@ -13216,15 +13102,15 @@ gvim: locale: en_US reboot: False -2020-03-04 11:49:50,750 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,750 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,750 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,765 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls -2020-03-04 11:49:50,765 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,765 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,765 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +2020-03-06 09:49:49,565 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,565 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,565 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,565 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 09:49:49,582 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,582 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,582 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available # Source: https://handbrake.fr @@ -13241,15 +13127,15 @@ handbrake: locale: en_US reboot: False -2020-03-04 11:49:50,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,582 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,765 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,780 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls -2020-03-04 11:49:50,780 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,780 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,780 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +2020-03-06 09:49:49,582 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,582 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,597 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,597 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 09:49:49,597 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,597 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,597 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: hipchat: @@ -13263,15 +13149,15 @@ hipchat: msiexec: False reboot: False -2020-03-04 11:49:50,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:49:50,780 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,796 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,796 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,796 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls -2020-03-04 11:49:50,796 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,796 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,796 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +2020-03-06 09:49:49,597 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,611 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,611 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,611 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 09:49:49,611 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,627 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.015427589416503906 +2020-03-06 09:49:49,627 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: hostsfileeditor: '1.2.0': @@ -13285,15 +13171,15 @@ hostsfileeditor: locale: en_US reboot: False -2020-03-04 11:49:50,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,812 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls -2020-03-04 11:49:50,812 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,812 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: +2020-03-06 09:49:49,627 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,627 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,640 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,641 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 09:49:49,641 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,641 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: hwinfo: '5.70': @@ -13308,15 +13194,15 @@ hwinfo: locale: en_US reboot: False -2020-03-04 11:49:50,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,828 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls -2020-03-04 11:49:50,828 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,828 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,828 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +2020-03-06 09:49:49,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,659 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,659 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,659 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 09:49:49,659 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,659 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,659 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: # -*- coding: utf-8 -*- # vim: ft=sls ice: @@ -13330,15 +13216,15 @@ ice: locale: en_US reboot: False -2020-03-04 11:49:50,828 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,828 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,828 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,843 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls -2020-03-04 11:49:50,843 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,843 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,843 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +2020-03-06 09:49:49,673 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.013387203216552734 +2020-03-06 09:49:49,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,673 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 09:49:49,673 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,673 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,688 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: # just 32-bit x86 installer available @@ -13354,15 +13240,15 @@ icecast: locale: en_US reboot: False -2020-03-04 11:49:50,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,843 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,843 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls -2020-03-04 11:49:50,843 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.015629291534423828 -2020-03-04 11:49:50,859 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +2020-03-06 09:49:49,688 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,688 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 09:49:49,688 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,688 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,704 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: icloud: '7.3.0.20': full_name: iCloud @@ -13374,15 +13260,15 @@ icloud: locale: en_US reboot: False -2020-03-04 11:49:50,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,859 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls -2020-03-04 11:49:50,859 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,859 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +2020-03-06 09:49:49,704 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,704 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 09:49:49,704 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.015796184539794922 +2020-03-06 09:49:49,719 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: iismediaservices: '4.1.0938.454': full_name: 'IIS Media Services 4.1' @@ -13418,15 +13304,15 @@ iismediaservices: locale: en_US reboot: False -2020-03-04 11:49:50,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,875 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls -2020-03-04 11:49:50,875 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,875 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +2020-03-06 09:49:49,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,719 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 09:49:49,735 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,735 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: influx-capacitor: '1.0.89': full_name: 'Influx Capacitor' @@ -13438,15 +13324,15 @@ influx-capacitor: locale: en_US reboot: False -2020-03-04 11:49:50,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,891 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,891 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,891 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls -2020-03-04 11:49:50,891 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,891 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,891 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +2020-03-06 09:49:49,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,735 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 09:49:49,751 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,751 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: inkscape: '0.91': full_name: 'Inkscape 0.91' @@ -13460,15 +13346,15 @@ inkscape: locale: en_US reboot: False -2020-03-04 11:49:50,891 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,891 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,891 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,891 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,891 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls -2020-03-04 11:49:50,907 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,907 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,907 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +2020-03-06 09:49:49,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,751 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 09:49:49,766 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,766 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: # just 32-bit x86 installer available @@ -13486,15 +13372,15 @@ intellij-community: reboot: False -2020-03-04 11:49:50,907 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,907 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,907 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,907 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,907 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls -2020-03-04 11:49:50,921 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,921 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,921 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +2020-03-06 09:49:49,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.01630258560180664 +2020-03-06 09:49:49,782 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,782 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,782 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 09:49:49,798 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,798 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,798 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: # just 32-bit x86 installer available @@ -13512,15 +13398,15 @@ intellij-ultimate: reboot: False -2020-03-04 11:49:50,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,921 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,921 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,921 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,921 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls -2020-03-04 11:49:50,937 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,937 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,937 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +2020-03-06 09:49:49,814 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.016202688217163086 +2020-03-06 09:49:49,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,814 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 09:49:49,829 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,829 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,829 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: internet-evidence-finder: '6.2.3.0001': full_name: 'Internet Evidence Finder' @@ -13532,15 +13418,15 @@ internet-evidence-finder: locale: en_US reboot: False -2020-03-04 11:49:50,937 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,937 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,937 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls -2020-03-04 11:49:50,937 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,937 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,953 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +2020-03-06 09:49:49,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.014677286148071289 +2020-03-06 09:49:49,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,844 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 09:49:49,844 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0163419246673584 +2020-03-06 09:49:49,860 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: irfanview-plugins: '4.42': @@ -13555,15 +13441,15 @@ irfanview-plugins: locale: en_US reboot: False -2020-03-04 11:49:50,953 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,860 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,953 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,953 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,953 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,953 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls -2020-03-04 11:49:50,953 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,969 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.01607489585876465 -2020-03-04 11:49:50,969 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +2020-03-06 09:49:49,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,860 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 09:49:49,876 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,876 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available irfanview: @@ -13590,15 +13476,15 @@ irfanview: # assocallusers: if used, set associations for all users (Windows XP only) # ini: if used, set custom INI file folder (system environment variables are allowed) -2020-03-04 11:49:50,969 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,969 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,969 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,969 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,969 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls -2020-03-04 11:49:50,983 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:50,983 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:50,983 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +2020-03-06 09:49:49,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,892 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,892 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,892 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 09:49:49,892 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,892 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,892 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: isapirewrite-lite: '3.1.0112': full_name: 'Helicon ISAPI_Rewrite 3 Lite' @@ -13612,15 +13498,15 @@ isapirewrite-lite: locale: en_US reboot: False -2020-03-04 11:49:50,983 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,907 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:50,983 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:50,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:50,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:50,983 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls -2020-03-04 11:49:50,983 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,000 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.016347646713256836 -2020-03-04 11:49:51,000 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +2020-03-06 09:49:49,907 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,907 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 09:49:49,923 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,939 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.015703439712524414 +2020-03-06 09:49:49,939 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available itunes: '12.8.0.150': @@ -13649,15 +13535,15 @@ itunes: locale: en_US reboot: False -2020-03-04 11:49:51,000 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,939 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,000 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,000 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,000 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,000 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls -2020-03-04 11:49:51,015 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,015 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +2020-03-06 09:49:49,939 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,939 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,939 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,953 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 09:49:49,953 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,970 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.016208410263061523 +2020-03-06 09:49:49,970 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way @@ -13680,15 +13566,15 @@ jdk8: locale: en_US reboot: False -2020-03-04 11:49:51,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,015 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls -2020-03-04 11:49:51,032 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,032 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,032 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +2020-03-06 09:49:49,970 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,970 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:49,970 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:49,970 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 09:49:49,985 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:49,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:49,985 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available jre: @@ -13707,15 +13593,15 @@ jre: # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way -2020-03-04 11:49:51,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:49,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,032 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,032 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,046 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls -2020-03-04 11:49:51,046 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,046 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +2020-03-06 09:49:49,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:49,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,001 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,001 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 09:49:50,001 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,001 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,016 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://www.java.com/en/download/manual.jsp # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... @@ -13795,15 +13681,15 @@ jre8: -2020-03-04 11:49:51,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,016 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,063 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,063 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,063 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls -2020-03-04 11:49:51,063 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,063 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,063 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +2020-03-06 09:49:50,016 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,016 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 09:49:50,016 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,032 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.015646934509277344 +2020-03-06 09:49:50,032 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: jungledisk-server-management: '3.23.0.2': full_name: 'Jungle Disk Server Management' @@ -13817,15 +13703,15 @@ jungledisk-server-management: locale: en_US reboot: False -2020-03-04 11:49:51,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,063 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,077 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,077 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,077 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls -2020-03-04 11:49:51,077 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,077 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,077 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +2020-03-06 09:49:50,032 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,032 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 09:49:50,032 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,047 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.015536308288574219 +2020-03-06 09:49:50,047 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: jungledisk-server: '3.23.0.2': full_name: 'Jungle Disk Server' @@ -13839,15 +13725,15 @@ jungledisk-server: locale: en_US reboot: False -2020-03-04 11:49:51,077 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,047 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,094 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0164639949798584 -2020-03-04 11:49:51,094 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,094 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,094 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls -2020-03-04 11:49:51,094 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,094 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,094 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +2020-03-06 09:49:50,047 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,047 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 09:49:50,063 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,063 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,063 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: jungledisk-workgroup: '3.23.0.2': full_name: 'Jungle Disk Workgroup' @@ -13861,15 +13747,15 @@ jungledisk-workgroup: locale: en_US reboot: False -2020-03-04 11:49:51,094 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,094 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,094 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,110 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,110 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls -2020-03-04 11:49:51,110 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,110 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,110 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +2020-03-06 09:49:50,063 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,079 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 09:49:50,079 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,079 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,079 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: kdiff3: 'Not Found': full_name: 'KDiff3 (remove only)' @@ -13883,15 +13769,15 @@ kdiff3: locale: en_US reboot: False -2020-03-04 11:49:51,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,110 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,110 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,110 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,110 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls -2020-03-04 11:49:51,125 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,125 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,125 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +2020-03-06 09:49:50,094 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.014157295227050781 +2020-03-06 09:49:50,094 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,094 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,094 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 09:49:50,094 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,110 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.016213417053222656 +2020-03-06 09:49:50,110 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: # Keepass 2.x installation from https://keepass.info/ # to keep the versioning in the format of "2..minor", two seperate version arrays are created. @@ -14155,15 +14041,15 @@ keepass-2x: locale: en_US reboot: False -2020-03-04 11:49:51,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,140 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.014947652816772461 -2020-03-04 11:49:51,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,140 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls -2020-03-04 11:49:51,140 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,140 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,140 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +2020-03-06 09:49:50,110 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,126 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,126 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,126 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 09:49:50,126 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,126 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,126 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: keepass: '1.35.0': full_name: 'KeePass 1.35' @@ -14229,15 +14115,15 @@ keepass: locale: en_US reboot: False -2020-03-04 11:49:51,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,126 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,155 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.014811038970947266 -2020-03-04 11:49:51,156 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,156 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,156 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls -2020-03-04 11:49:51,156 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,156 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,156 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +2020-03-06 09:49:50,141 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.015195131301879883 +2020-03-06 09:49:50,141 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,141 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,141 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 09:49:50,141 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,141 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,157 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: # just 32-bit x86 installer available @@ -14255,15 +14141,15 @@ lastpass: locale: en_US reboot: False -2020-03-04 11:49:51,156 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,157 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,156 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,171 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls -2020-03-04 11:49:51,171 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,171 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,171 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +2020-03-06 09:49:50,157 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,173 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 09:49:50,173 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,173 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,173 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: # NOTE: If the lazarus installation directory exists the installation will # pop up a dialog box. This will cause the minion to hang because it # is waiting for the user to click continue on a dialog box that will @@ -14297,15 +14183,15 @@ lazarus: uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES -2020-03-04 11:49:51,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,173 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) -2020-03-04 11:49:51,171 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,187 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls -2020-03-04 11:49:51,187 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,187 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +2020-03-06 09:49:50,173 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,190 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,190 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,190 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 09:49:50,190 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,206 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.015569210052490234 +2020-03-06 09:49:50,206 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: libreoffice: '5.3.5.2': @@ -14381,15 +14267,15 @@ libreoffice: reboot: False -2020-03-04 11:49:51,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,203 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.015871286392211914 -2020-03-04 11:49:51,203 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,203 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,203 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls -2020-03-04 11:49:51,203 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,203 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,203 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +2020-03-06 09:49:50,206 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,206 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,206 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,221 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 09:49:50,221 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,221 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,221 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: logparser: '2.2.10': full_name: 'Log Parser 2.2' @@ -14401,15 +14287,15 @@ logparser: locale: en_US reboot: False -2020-03-04 11:49:51,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,221 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,203 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,218 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,218 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,218 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls -2020-03-04 11:49:51,218 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,218 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,234 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +2020-03-06 09:49:50,221 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,221 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,235 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 09:49:50,235 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,235 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: # just 32-bit x86 installer available @@ -14436,15 +14322,15 @@ maas360bootanalyzer: reboot: False # download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory -2020-03-04 11:49:51,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,234 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,234 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls -2020-03-04 11:49:51,234 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,234 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,234 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +2020-03-06 09:49:50,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,251 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,251 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,251 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 09:49:50,251 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,251 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,251 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: # just 32-bit x86 installer available @@ -14461,15 +14347,15 @@ malwarebytes: locale: en_US reboot: Falsea -2020-03-04 11:49:51,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,266 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) -2020-03-04 11:49:51,249 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.015669822692871094 -2020-03-04 11:49:51,249 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,249 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,249 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls -2020-03-04 11:49:51,249 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.015590906143188477 -2020-03-04 11:49:51,265 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +2020-03-06 09:49:50,266 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,266 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 09:49:50,282 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,299 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.01646876335144043 +2020-03-06 09:49:50,299 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: #MariaDB https://downloads.mariadb.org/mariadb/+releases/ #only stable versions are listed @@ -14483,6 +14369,85 @@ OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_na mariadb: + '10.3.13.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.12.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.11.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.10.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.9.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.8.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.3.7.0': + + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + + '10.0.38.0': full_name: 'MariaDB 10.0 (x64)' @@ -14804,187 +14769,330 @@ mariadb: - '10.2.22.0': + '5.5.63.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.21.0': + '5.5.62.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.20.0': + '5.5.61.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.19.0': + '5.5.60.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.18.0': + '5.5.59.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.17.0': + '5.5.58.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.16.0': + '5.5.57.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.15.0': + '5.5.56.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.14.0': + '5.5.55.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.13.0': + '5.5.54.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.12.0': + '5.5.53.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.11.0': + '5.5.52.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.10.0': - - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + '5.5.51.0': - install_flags: '/qn /norestart' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + + install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.9.0': + '5.5.50.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.8.0': + '5.5.49.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.7.0': + '5.5.48.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.6.0': + '5.5.47.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.46.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.45.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.44.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.43.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.42.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.41.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.40.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.39.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.38.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.37.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.36.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.35.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '5.5.34.0': + + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15325,409 +15433,187 @@ mariadb: - '5.5.63.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.62.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.61.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.60.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.59.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.58.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.57.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.56.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.55.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.54.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.53.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.52.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.51.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.50.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.49.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.48.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.47.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.46.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.45.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.44.0': - - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '5.5.43.0': + '10.2.22.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.42.0': + '10.2.21.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.41.0': + '10.2.20.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.40.0': + '10.2.19.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.39.0': + '10.2.18.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.38.0': + '10.2.17.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.37.0': + '10.2.16.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.36.0': + '10.2.15.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.35.0': + '10.2.14.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.34.0': + '10.2.13.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.3.13.0': + '10.2.12.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.12.0': + '10.2.11.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.11.0': + '10.2.10.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.10.0': + '10.2.9.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.9.0': + '10.2.8.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.8.0': + '10.2.7.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.7.0': + '10.2.6.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15736,15 +15622,15 @@ mariadb: -2020-03-04 11:49:51,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:49:51,296 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.015897274017333984 -2020-03-04 11:49:51,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,296 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls -2020-03-04 11:49:51,296 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,296 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,296 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +2020-03-06 09:49:50,329 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 09:49:50,329 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.01635456085205078 +2020-03-06 09:49:50,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,344 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 09:49:50,344 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,344 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,344 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: mercurial: '3.1.1': @@ -15758,15 +15644,15 @@ mercurial: locale: en_US reboot: False -2020-03-04 11:49:51,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,344 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,312 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,312 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls -2020-03-04 11:49:51,312 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,312 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,312 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +2020-03-06 09:49:50,360 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.015822887420654297 +2020-03-06 09:49:50,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,360 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 09:49:50,360 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,377 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.01712799072265625 +2020-03-06 09:49:50,377 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: messageanalyzer: '4.0.7551.0': full_name: 'Microsoft Message Analyzer' @@ -15781,15 +15667,15 @@ messageanalyzer: locale: en_US reboot: False -2020-03-04 11:49:51,312 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,377 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,312 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,329 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,329 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls -2020-03-04 11:49:51,329 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,329 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,329 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +2020-03-06 09:49:50,377 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,377 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,390 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,391 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 09:49:50,391 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,391 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: microsoft-build-tools: '14.0.23107': @@ -15803,15 +15689,15 @@ microsoft-build-tools: locale: en_US reboot: False -2020-03-04 11:49:51,329 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,329 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,345 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,345 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,345 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls -2020-03-04 11:49:51,345 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,345 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,345 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +2020-03-06 09:49:50,406 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,406 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,406 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,406 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 09:49:50,406 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,423 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.016477584838867188 +2020-03-06 09:49:50,423 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: mikogo: '5.3.0': full_name: 'Mikogo' @@ -15823,15 +15709,15 @@ mikogo: locale: en_US reboot: False -2020-03-04 11:49:51,345 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,423 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,345 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,345 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,345 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,360 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls -2020-03-04 11:49:51,360 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,360 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,360 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +2020-03-06 09:49:50,423 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,423 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,423 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,423 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 09:49:50,423 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.014916419982910156 +2020-03-06 09:49:50,438 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: miktex-basic: '2.9': full_name: 'MiKTeX 2.9' @@ -15848,15 +15734,15 @@ miktex-basic: locale: en_US reboot: False -2020-03-04 11:49:51,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,438 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,360 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,360 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,360 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,360 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls -2020-03-04 11:49:51,360 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,376 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.015552997589111328 -2020-03-04 11:49:51,376 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +2020-03-06 09:49:50,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,453 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 09:49:50,453 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,453 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,453 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: mongodb: '3.3.5': full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' @@ -15877,15 +15763,15 @@ mongodb: locale: en_US reboot: False -2020-03-04 11:49:51,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,376 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,376 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,376 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,376 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls -2020-03-04 11:49:51,376 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,376 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,376 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +2020-03-06 09:49:50,469 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.01573777198791504 +2020-03-06 09:49:50,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,469 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 09:49:50,469 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.01602625846862793 +2020-03-06 09:49:50,485 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ms-mbsa: '2.3.2211': @@ -15900,15 +15786,15 @@ ms-mbsa: locale: en_US reboot: False -2020-03-04 11:49:51,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,391 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.01549530029296875 -2020-03-04 11:49:51,391 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,391 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,391 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls -2020-03-04 11:49:51,391 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,391 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,391 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +2020-03-06 09:49:50,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,501 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 09:49:50,501 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,517 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.01607346534729004 +2020-03-06 09:49:50,517 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: ms-vcpp-2005-atl-redist_x64: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15920,15 +15806,15 @@ ms-vcpp-2005-atl-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,391 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,517 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,391 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,391 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,407 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,407 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls -2020-03-04 11:49:51,407 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,407 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,407 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +2020-03-06 09:49:50,517 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,532 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 09:49:50,532 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,547 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: ms-vcpp-2005-atl-redist_x86: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15940,15 +15826,15 @@ ms-vcpp-2005-atl-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,407 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,407 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,407 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,407 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,407 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls -2020-03-04 11:49:51,423 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,423 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,423 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +2020-03-06 09:49:50,547 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,547 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,547 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,547 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 09:49:50,563 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,563 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,563 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: ms-vcpp-2005-redist_x64: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15960,15 +15846,15 @@ ms-vcpp-2005-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,423 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,563 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,423 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,423 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,423 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,423 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls -2020-03-04 11:49:51,423 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,439 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.016119718551635742 -2020-03-04 11:49:51,439 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +2020-03-06 09:49:50,563 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,578 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 09:49:50,578 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,578 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,578 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: ms-vcpp-2005-redist_x86: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15980,15 +15866,15 @@ ms-vcpp-2005-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,439 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,439 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,439 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,439 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,439 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls -2020-03-04 11:49:51,439 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,439 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,439 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +2020-03-06 09:49:50,578 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,594 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 09:49:50,610 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,610 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,610 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: ms-vcpp-2005-sp1-mfc-redist_x64: '8.0.61000': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16000,15 +15886,15 @@ ms-vcpp-2005-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,439 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,453 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0140533447265625 -2020-03-04 11:49:51,453 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,453 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,453 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls -2020-03-04 11:49:51,453 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,453 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,453 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +2020-03-06 09:49:50,626 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.015383481979370117 +2020-03-06 09:49:50,626 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,626 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,626 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 09:49:50,626 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.01525735855102539 +2020-03-06 09:49:50,641 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: ms-vcpp-2005-sp1-mfc-redist_x86: '8.0.61001': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16020,15 +15906,15 @@ ms-vcpp-2005-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,453 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,453 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,453 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,469 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls -2020-03-04 11:49:51,469 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,469 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,469 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +2020-03-06 09:49:50,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,641 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 09:49:50,656 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,656 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,656 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: ms-vcpp-2005-sp1-redist_x64: '8.0.59192': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -16040,15 +15926,15 @@ ms-vcpp-2005-sp1-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,469 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,469 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,469 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,469 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls -2020-03-04 11:49:51,469 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,484 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.014845132827758789 -2020-03-04 11:49:51,484 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +2020-03-06 09:49:50,656 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,656 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,656 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,672 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 09:49:50,672 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,672 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,672 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: ms-vcpp-2005-sp1-redist_x86: '8.0.59193': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16060,15 +15946,15 @@ ms-vcpp-2005-sp1-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,484 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,672 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,484 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,484 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls -2020-03-04 11:49:51,484 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,484 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,484 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +2020-03-06 09:49:50,672 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,672 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,688 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 09:49:50,688 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,688 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,688 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: ms-vcpp-2008-redist_x64: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' @@ -16080,15 +15966,15 @@ ms-vcpp-2008-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,703 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,500 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,500 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls -2020-03-04 11:49:51,500 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,500 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,516 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +2020-03-06 09:49:50,703 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,703 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,703 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,703 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 09:49:50,703 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,703 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,703 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: ms-vcpp-2008-redist_x86: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' @@ -16100,15 +15986,15 @@ ms-vcpp-2008-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,516 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,516 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,516 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,516 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,516 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls -2020-03-04 11:49:51,516 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,516 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,516 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +2020-03-06 09:49:50,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,719 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 09:49:50,719 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,735 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: ms-vcpp-2008-sp1-atl-redist_x64: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' @@ -16120,15 +16006,15 @@ ms-vcpp-2008-sp1-atl-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,530 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,530 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,530 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,530 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls -2020-03-04 11:49:51,530 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,530 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,530 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +2020-03-06 09:49:50,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,735 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 09:49:50,735 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,750 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: ms-vcpp-2008-sp1-atl-redist_x86: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' @@ -16140,15 +16026,15 @@ ms-vcpp-2008-sp1-atl-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,750 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,530 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,530 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,530 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,547 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls -2020-03-04 11:49:51,547 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,547 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,547 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +2020-03-06 09:49:50,750 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,750 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,750 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,750 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 09:49:50,750 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,766 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: ms-vcpp-2008-sp1-mfc-redist_x64: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' @@ -16160,15 +16046,15 @@ ms-vcpp-2008-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,547 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,547 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,562 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls -2020-03-04 11:49:51,562 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,562 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +2020-03-06 09:49:50,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 09:49:50,766 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.015604734420776367 +2020-03-06 09:49:50,782 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: ms-vcpp-2008-sp1-mfc-redist_x86: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' @@ -16180,15 +16066,15 @@ ms-vcpp-2008-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,577 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls -2020-03-04 11:49:51,577 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,577 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,577 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +2020-03-06 09:49:50,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,782 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,782 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,796 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 09:49:50,797 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,797 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: ms-vcpp-2010-sp1-mfc-redist_x64: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' @@ -16200,15 +16086,15 @@ ms-vcpp-2010-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,797 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,577 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,577 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls -2020-03-04 11:49:51,594 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,594 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,594 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +2020-03-06 09:49:50,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,797 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 09:49:50,814 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,814 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,814 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: ms-vcpp-2010-sp1-mfc-redist_x86: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' @@ -16220,15 +16106,15 @@ ms-vcpp-2010-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,814 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,594 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,594 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,608 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,609 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls -2020-03-04 11:49:51,609 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,609 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +2020-03-06 09:49:50,814 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,829 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 09:49:50,829 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,829 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,829 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: ms-vcpp-2012-redist_x64: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' @@ -16240,15 +16126,15 @@ ms-vcpp-2012-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,609 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls -2020-03-04 11:49:51,609 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,609 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +2020-03-06 09:49:50,829 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,829 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,844 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 09:49:50,844 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,844 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: ms-vcpp-2012-redist_x86: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' @@ -16260,15 +16146,15 @@ ms-vcpp-2012-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,625 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,625 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,625 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,625 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls -2020-03-04 11:49:51,625 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,625 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,625 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +2020-03-06 09:49:50,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0007154941558837891 +2020-03-06 09:49:50,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,860 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,860 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 09:49:50,860 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,860 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: ms-vcpp-2013-redist_x64: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' @@ -16280,15 +16166,15 @@ ms-vcpp-2013-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,860 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,625 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,640 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls -2020-03-04 11:49:51,640 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,640 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +2020-03-06 09:49:50,876 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.016159534454345703 +2020-03-06 09:49:50,876 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,876 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,876 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 09:49:50,891 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,891 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,891 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: ms-vcpp-2013-redist_x86: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' @@ -16300,15 +16186,15 @@ ms-vcpp-2013-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,891 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,640 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls -2020-03-04 11:49:51,657 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,657 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,657 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +2020-03-06 09:49:50,891 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,891 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 09:49:50,906 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,906 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,906 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: ms-vcpp-2015-build-tools: '14.0.25420.1': full_name: 'Microsoft Visual C++ Build Tools' @@ -16319,15 +16205,15 @@ ms-vcpp-2015-build-tools: locale: en_US reboot: False -2020-03-04 11:49:51,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,657 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,657 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,671 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls -2020-03-04 11:49:51,671 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,671 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +2020-03-06 09:49:50,906 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,906 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,906 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,906 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 09:49:50,906 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,923 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.016244173049926758 +2020-03-06 09:49:50,923 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: ms-vcpp-2015-redist_x64: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' @@ -16352,15 +16238,15 @@ ms-vcpp-2015-redist_x64: # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} -2020-03-04 11:49:51,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,923 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,687 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls -2020-03-04 11:49:51,687 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,687 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +2020-03-06 09:49:50,923 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,923 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,923 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,923 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 09:49:50,938 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,938 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,938 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: ms-vcpp-2015-redist_x86: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' @@ -16385,15 +16271,15 @@ ms-vcpp-2015-redist_x86: # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} -2020-03-04 11:49:51,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,938 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,703 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,703 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls -2020-03-04 11:49:51,703 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,703 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,703 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +2020-03-06 09:49:50,953 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.015056610107421875 +2020-03-06 09:49:50,954 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,954 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,954 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 09:49:50,954 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,954 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: ms-vcpp-2017-redist_x64: '14.20.27508.1': full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' @@ -16414,15 +16300,15 @@ ms-vcpp-2017-redist_x64: locale: en_US reboot: False -2020-03-04 11:49:51,703 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,703 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,703 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,718 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls -2020-03-04 11:49:51,718 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,718 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +2020-03-06 09:49:50,970 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.01631331443786621 +2020-03-06 09:49:50,970 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:50,970 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:50,970 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 09:49:50,985 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:50,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:50,985 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: ms-vcpp-2017-redist_x86: '14.11.25325.0': full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' @@ -16434,15 +16320,15 @@ ms-vcpp-2017-redist_x86: locale: en_US reboot: False -2020-03-04 11:49:51,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:50,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,718 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls -2020-03-04 11:49:51,718 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.015339136123657227 -2020-03-04 11:49:51,734 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: +2020-03-06 09:49:50,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:50,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,002 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,002 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 09:49:51,002 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,017 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.014300823211669922 +2020-03-06 09:49:51,017 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: @@ -16459,15 +16345,15 @@ mucommander: reboot: False -2020-03-04 11:49:51,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,749 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls -2020-03-04 11:49:51,749 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,749 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,749 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +2020-03-06 09:49:51,017 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,033 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,033 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,033 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 09:49:51,033 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,047 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.014564990997314453 +2020-03-06 09:49:51,047 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: mysql-essential: '5.1.73': full_name: 'MySQL Server 5.1' @@ -16481,15 +16367,15 @@ mysql-essential: locale: en_US reboot: False -2020-03-04 11:49:51,749 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,047 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,749 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,765 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls -2020-03-04 11:49:51,765 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,765 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,765 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +2020-03-06 09:49:51,047 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,063 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,063 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 09:49:51,063 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,080 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.016994953155517578 +2020-03-06 09:49:51,080 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: mysql-installer-community: '1.4.3.0': full_name: 'MySQL Installer - Community' @@ -16505,15 +16391,15 @@ mysql-installer-community: # https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html # https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html -2020-03-04 11:49:51,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,080 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,765 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,765 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,780 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls -2020-03-04 11:49:51,780 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,780 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,780 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +2020-03-06 09:49:51,080 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,080 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,080 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,095 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 09:49:51,095 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,095 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,095 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: mysql-workbench-community: '8.0.15': @@ -16550,15 +16436,15 @@ mysql-workbench-community: # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html -2020-03-04 11:49:51,780 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,095 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,780 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,780 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,780 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,780 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls -2020-03-04 11:49:51,780 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,780 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,797 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +2020-03-06 09:49:51,111 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.01609182357788086 +2020-03-06 09:49:51,111 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,111 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,111 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 09:49:51,127 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,127 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,127 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: never10: '1.3': full_name: 'Never 10 (GRC)' @@ -16571,15 +16457,15 @@ never10: reboot: False # download it from https://www.grc.com/never10.htm -2020-03-04 11:49:51,797 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,797 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,797 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,797 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,812 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls -2020-03-04 11:49:51,812 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,812 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +2020-03-06 09:49:51,127 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,144 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,144 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,144 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 09:49:51,144 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,144 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,159 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: # Please note that per # https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows # the MSI uninstall does not remove files or settings, @@ -16740,15 +16626,15 @@ newrelic-infra: reboot: False -2020-03-04 11:49:51,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,159 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,829 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.017328500747680664 -2020-03-04 11:49:51,829 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,829 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,829 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls -2020-03-04 11:49:51,829 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,843 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.014257669448852539 -2020-03-04 11:49:51,843 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +2020-03-06 09:49:51,159 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,159 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,159 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,159 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 09:49:51,174 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,174 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,174 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: nextcloud-client: '2.2.3.4': @@ -16842,15 +16728,15 @@ nextcloud-client: reboot: False -2020-03-04 11:49:51,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,843 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,843 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls -2020-03-04 11:49:51,859 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,859 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: +2020-03-06 09:49:51,174 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,189 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,189 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,189 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 09:49:51,189 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,189 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,189 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: # just 32-bit x86 installer available @@ -16880,15 +16766,15 @@ nmap: reboot: False -2020-03-04 11:49:51,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,874 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,874 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls -2020-03-04 11:49:51,874 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,874 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,874 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +2020-03-06 09:49:51,203 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,203 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,203 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,203 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 09:49:51,203 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,219 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.016063690185546875 +2020-03-06 09:49:51,219 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: node.js-lts: '12.13.1': @@ -16976,15 +16862,15 @@ node.js-lts: reboot: False -2020-03-04 11:49:51,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,219 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,874 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,874 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,890 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls -2020-03-04 11:49:51,890 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,890 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,890 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +2020-03-06 09:49:51,219 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,219 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,219 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,235 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 09:49:51,235 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,235 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: node.js: '13.1.0': @@ -17108,15 +16994,15 @@ node.js: reboot: False -2020-03-04 11:49:51,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,890 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,905 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,905 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,905 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls -2020-03-04 11:49:51,905 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,905 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,905 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +2020-03-06 09:49:51,250 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.015417814254760742 +2020-03-06 09:49:51,250 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,250 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,250 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 09:49:51,250 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,250 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,268 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: nomacs: '3.8.0': @@ -17130,15 +17016,15 @@ nomacs: reboot: False -2020-03-04 11:49:51,905 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,905 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,905 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,921 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,921 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls -2020-03-04 11:49:51,921 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,921 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:51,921 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +2020-03-06 09:49:51,268 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,268 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,268 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,268 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 09:49:51,268 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,282 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.013903379440307617 +2020-03-06 09:49:51,282 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: # just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. @@ -17335,15 +17221,15 @@ npp: # the 64-bit installer is available from: # https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe -2020-03-04 11:49:51,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,968 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.04640674591064453 -2020-03-04 11:49:51,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,984 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls -2020-03-04 11:49:51,984 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:51,999 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.015166997909545898 -2020-03-04 11:49:51,999 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +2020-03-06 09:49:51,297 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.015154361724853516 +2020-03-06 09:49:51,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,297 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 09:49:51,313 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: nsclient: @@ -17500,15 +17386,15 @@ nsclient: reboot: False -2020-03-04 11:49:51,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:51,999 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:51,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:51,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:51,999 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls -2020-03-04 11:49:51,999 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.015973567962646484 -2020-03-04 11:49:52,015 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +2020-03-06 09:49:51,328 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,328 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,328 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,328 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 09:49:51,328 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,344 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.015989303588867188 +2020-03-06 09:49:51,344 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: # Define versions @@ -17589,9 +17475,9 @@ nsis: - '3.0b2': + '3.03': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17601,9 +17487,9 @@ nsis: locale: en_US reboot: False - '3.0b1': + '3.02.1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17613,11 +17499,9 @@ nsis: locale: en_US reboot: False - - - '3.03': + '3.02': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17627,9 +17511,9 @@ nsis: locale: en_US reboot: False - '3.02.1': + '3.01': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17639,9 +17523,9 @@ nsis: locale: en_US reboot: False - '3.02': + '3.0': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17651,9 +17535,11 @@ nsis: locale: en_US reboot: False - '3.01': + + + '3.0b2': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17663,9 +17549,9 @@ nsis: locale: en_US reboot: False - '3.0': + '3.0b1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17677,15 +17563,15 @@ nsis: -2020-03-04 11:49:52,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('nsis', OrderedDict([('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,031 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,031 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls -2020-03-04 11:49:52,031 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,031 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,031 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +2020-03-06 09:49:51,344 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:49:51,344 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,360 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 09:49:51,360 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,376 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,376 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: # Install Meinberg NTP daemon for Windows # Note: To do a silent installation, this installer needs a setup file named # setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. @@ -17727,29 +17613,29 @@ ntp: reboot: False -2020-03-04 11:49:52,031 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,031 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,046 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls -2020-03-04 11:49:52,046 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,046 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: +2020-03-06 09:49:51,376 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,392 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,392 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,392 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 09:49:51,392 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,407 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.014815330505371094 +2020-03-06 09:49:51,407 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: nunit-console: - '3.8.0': - full_name: 'NUnit Console 3.8.0' + '3.7.0': + full_name: 'NUnit Console 3.7.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False @@ -17770,29 +17656,29 @@ nunit-console: - '3.7.0': - full_name: 'NUnit Console 3.7.0' + '3.8.0': + full_name: 'NUnit Console 3.8.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False -2020-03-04 11:49:52,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:49:52,062 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.01566934585571289 -2020-03-04 11:49:52,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,062 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls -2020-03-04 11:49:52,062 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,062 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,062 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +2020-03-06 09:49:51,407 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 09:49:51,407 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,422 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,422 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,422 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 09:49:51,422 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,422 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,422 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: nxlog: '2.10.2150': full_name: 'NXLog-CE' @@ -17804,15 +17690,15 @@ nxlog: locale: en_US reboot: False -2020-03-04 11:49:52,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,422 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,062 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,078 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,078 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,078 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls -2020-03-04 11:49:52,078 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,078 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,078 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +2020-03-06 09:49:51,422 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,438 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 09:49:51,438 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,438 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -17850,15 +17736,15 @@ octopus-tentacle: reboot: False -2020-03-04 11:49:52,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,454 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,078 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,094 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,094 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,094 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls -2020-03-04 11:49:52,094 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,094 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,094 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +2020-03-06 09:49:51,454 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.015366315841674805 +2020-03-06 09:49:51,454 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,454 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,454 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 09:49:51,454 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,470 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.01607346534729004 +2020-03-06 09:49:51,470 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: # Source: http://openlp.org/ # just 32-bit x86 installer available @@ -17888,15 +17774,15 @@ openlp: reboot: False -2020-03-04 11:49:52,094 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,094 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,110 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,110 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,110 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls -2020-03-04 11:49:52,110 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,110 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,110 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +2020-03-06 09:49:51,470 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,470 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,470 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,470 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 09:49:51,470 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.015451192855834961 +2020-03-06 09:49:51,485 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: openoffice: '4.1.2': full_name: 'OpenOffice 4.1.2' @@ -17929,15 +17815,15 @@ openoffice: # 'fi', 'fr', 'da', 'de', 'bg', 'ast' # -2020-03-04 11:49:52,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,110 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,110 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,125 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,125 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls -2020-03-04 11:49:52,125 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,125 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,125 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +2020-03-06 09:49:51,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,485 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 09:49:51,500 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,501 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.0008950233459472656 +2020-03-06 09:49:51,501 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18109,15 +17995,15 @@ openvpn: # /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's # /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's -2020-03-04 11:49:52,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,516 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win10', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win10 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win10.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,142 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.016995668411254883 -2020-03-04 11:49:52,142 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,142 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,142 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls -2020-03-04 11:49:52,142 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,142 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,142 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +2020-03-06 09:49:51,516 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0007441043853759766 +2020-03-06 09:49:51,516 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,516 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,516 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 09:49:51,516 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0160982608795166 +2020-03-06 09:49:51,532 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: # Performant endpoint visibility https://osquery.io/ @@ -18170,15 +18056,15 @@ osquery: reboot: False -2020-03-04 11:49:52,157 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:49:52,157 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.014580011367797852 -2020-03-04 11:49:52,157 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,157 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,157 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls -2020-03-04 11:49:52,157 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,178 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.02099776268005371 -2020-03-04 11:49:52,178 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +2020-03-06 09:49:51,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,532 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 09:49:51,532 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,547 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.015009164810180664 +2020-03-06 09:49:51,547 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: # just 32-bit x86 installer available @@ -18192,9 +18078,9 @@ OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osqu ossec-agent: - '2.9.4': - full_name: 'OSSEC HIDS 2.9.4' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18204,9 +18090,9 @@ ossec-agent: - '2.9.0': - full_name: 'OSSEC HIDS 2.9.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18216,9 +18102,9 @@ ossec-agent: - '3.2.0': - full_name: 'OSSEC HIDS 3.2.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18228,9 +18114,9 @@ ossec-agent: - '2.9.2': - full_name: 'OSSEC HIDS 2.9.2' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18240,9 +18126,9 @@ ossec-agent: - '3.0.0': - full_name: 'OSSEC HIDS 3.0.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18252,9 +18138,9 @@ ossec-agent: - '2.9.3': - full_name: 'OSSEC HIDS 2.9.3' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18264,9 +18150,9 @@ ossec-agent: - '3.0.1': - full_name: 'OSSEC HIDS 3.0.1' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18276,9 +18162,9 @@ ossec-agent: - '3.1.0': - full_name: 'OSSEC HIDS 3.1.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18288,15 +18174,15 @@ ossec-agent: -2020-03-04 11:49:52,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('ossec-agent', OrderedDict([('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.00043702125549316406 -2020-03-04 11:49:52,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,187 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls -2020-03-04 11:49:52,187 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,187 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +2020-03-06 09:49:51,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:49:51,547 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,563 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 09:49:51,563 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,578 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.015234231948852539 +2020-03-06 09:49:51,578 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: owncloud: @@ -18353,15 +18239,15 @@ owncloud: reboot: False -2020-03-04 11:49:52,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,202 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,202 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,202 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,202 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls -2020-03-04 11:49:52,202 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,202 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,202 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +2020-03-06 09:49:51,578 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,578 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 09:49:51,594 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,594 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,594 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: pandoc: '1.17.0.2': full_name: 'Pandoc 1.17.0.2' @@ -18373,15 +18259,15 @@ pandoc: locale: en_US reboot: False -2020-03-04 11:49:52,202 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,202 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,219 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,219 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,219 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls -2020-03-04 11:49:52,219 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,219 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,219 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +2020-03-06 09:49:51,594 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,610 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 09:49:51,610 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,625 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.015135526657104492 +2020-03-06 09:49:51,625 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: parallels-client-15: '15.0.3869': @@ -18397,15 +18283,15 @@ parallels-client-15: # The latest RAS clients can be downloaded for FREE from: # https://www.parallels.com/uk/products/ras/download/links/ -2020-03-04 11:49:52,219 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,625 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,219 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,219 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,219 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,234 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls -2020-03-04 11:49:52,234 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,234 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,234 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +2020-03-06 09:49:51,625 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,625 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,625 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,625 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 09:49:51,625 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.015748262405395508 +2020-03-06 09:49:51,641 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18436,15 +18322,15 @@ pass4win: locale: en_US reboot: False -2020-03-04 11:49:52,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,234 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,234 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls -2020-03-04 11:49:52,249 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.01518392562866211 -2020-03-04 11:49:52,265 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +2020-03-06 09:49:51,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,657 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,657 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 09:49:51,657 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,657 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,657 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: passware-kit-agent: '13.1.7657': full_name: 'Passware Kit Agent (64-bit)' @@ -18456,15 +18342,15 @@ passware-kit-agent: locale: en_US reboot: False -2020-03-04 11:49:52,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,265 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls -2020-03-04 11:49:52,265 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,265 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +2020-03-06 09:49:51,673 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.015685319900512695 +2020-03-06 09:49:51,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,673 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 09:49:51,689 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,689 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,689 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: passware-kit-forensic: '13.1.7657': full_name: 'Passware Kit Forensic (64-bit)' @@ -18476,15 +18362,15 @@ passware-kit-forensic: locale: en_US reboot: False -2020-03-04 11:49:52,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,282 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,282 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,282 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,282 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls -2020-03-04 11:49:52,282 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,282 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,282 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +2020-03-06 09:49:51,689 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,704 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,704 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 09:49:51,704 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.01558375358581543 +2020-03-06 09:49:51,719 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: # Source: https://patchmypc.net/ patchmypc-free: '3.0.1.1': @@ -18503,15 +18389,15 @@ patchmypc-free: locale: en_US reboot: False -2020-03-04 11:49:52,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,282 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,298 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,298 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,298 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls -2020-03-04 11:49:52,298 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,298 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,298 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +2020-03-06 09:49:51,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,735 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 09:49:51,735 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,735 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: pdf24creator: '8.8.2': @@ -18607,15 +18493,15 @@ pdf24creator: # Source: https://en.pdf24.org/ # Packagin info Source: https://chocolatey.org/packages/pdf24 -2020-03-04 11:49:52,314 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,314 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.01677083969116211 -2020-03-04 11:49:52,314 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,314 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,314 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls -2020-03-04 11:49:52,314 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,330 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.015151023864746094 -2020-03-04 11:49:52,330 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +2020-03-06 09:49:51,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.015915870666503906 +2020-03-06 09:49:51,751 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,751 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,751 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 09:49:51,768 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,768 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,768 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: # just 32-bit x86 installer available @@ -18631,15 +18517,15 @@ pdfcreator: locale: en_US reboot: False -2020-03-04 11:49:52,330 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,330 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,330 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,330 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,330 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls -2020-03-04 11:49:52,330 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,344 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.014337301254272461 -2020-03-04 11:49:52,344 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +2020-03-06 09:49:51,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,798 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,798 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,798 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 09:49:51,798 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,798 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,798 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: peazip: '6.0.0': @@ -18653,15 +18539,15 @@ peazip: locale: en_US reboot: False -2020-03-04 11:49:52,344 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,344 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,344 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,344 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,344 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls -2020-03-04 11:49:52,344 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,360 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.01622796058654785 -2020-03-04 11:49:52,360 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: +2020-03-06 09:49:51,815 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.016687393188476562 +2020-03-06 09:49:51,815 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,815 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,815 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 09:49:51,829 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.01513528823852539 +2020-03-06 09:49:51,844 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: @@ -18705,15 +18591,15 @@ pgadmin4: reboot: False -2020-03-04 11:49:52,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,844 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,360 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,360 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,360 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,360 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls -2020-03-04 11:49:52,360 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,360 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,360 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +2020-03-06 09:49:51,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,844 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 09:49:51,860 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,860 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: pgina: '3.1.8.0': full_name: 'pGina v3.1.8.0' @@ -18723,15 +18609,15 @@ pgina: locale: en_US reboot: False -2020-03-04 11:49:52,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,860 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,376 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.015404224395751953 -2020-03-04 11:49:52,376 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,376 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,376 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls -2020-03-04 11:49:52,376 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,376 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,376 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: +2020-03-06 09:49:51,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,875 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 09:49:51,875 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,875 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,875 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: # just 32-bit x86 installer available @@ -18750,15 +18636,15 @@ pidgin: reboot: False -2020-03-04 11:49:52,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,376 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,391 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,391 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,391 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls -2020-03-04 11:49:52,391 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,391 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,391 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +2020-03-06 09:49:51,875 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,891 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 09:49:51,907 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,907 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,907 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: # Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: # salt mid pkg.install postgresql version='"9.6"' @@ -18803,15 +18689,15 @@ postgresql: reboot: False -2020-03-04 11:49:52,391 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,907 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:49:52,391 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,405 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,405 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,405 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls -2020-03-04 11:49:52,405 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,421 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.016072988510131836 -2020-03-04 11:49:52,421 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +2020-03-06 09:49:51,907 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,922 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,922 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,922 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 09:49:51,922 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,922 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,922 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: ### NOTE: You must accept the PowerBI Desktop EULA by setting the ### Pillar key `powerbi:desktop:accept_eula` to `True` in order to ### install this package. You can find a copy of the EULA at @@ -18833,15 +18719,15 @@ powerbi-desktop: msiexec: True reboot: False -2020-03-04 11:49:52,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,938 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:49:52,421 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,421 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls -2020-03-04 11:49:52,421 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.015109062194824219 -2020-03-04 11:49:52,437 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +2020-03-06 09:49:51,938 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,938 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,938 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,938 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 09:49:51,954 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:51,954 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: #PowerShell Core https://github.com/PowerShell/PowerShell @@ -18904,15 +18790,15 @@ powershell-core: reboot: False -2020-03-04 11:49:52,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,954 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:49:52,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,437 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls -2020-03-04 11:49:52,437 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,453 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.01608562469482422 -2020-03-04 11:49:52,453 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +2020-03-06 09:49:51,969 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.014741182327270508 +2020-03-06 09:49:51,969 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:51,969 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:51,969 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 09:49:51,969 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:51,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.01598525047302246 +2020-03-06 09:49:51,985 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: # Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems # WMI Exporter: https://github.com/martinlindhe/wmi_exporter # Prometheus Monitoring: https://prometheus.io/ @@ -19112,15 +18998,15 @@ prometheus-wmi-exporter: reboot: False -2020-03-04 11:49:52,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:51,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,453 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,453 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,453 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,467 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls -2020-03-04 11:49:52,468 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,468 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,468 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +2020-03-06 09:49:51,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:51,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,000 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 09:49:52,000 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,000 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,016 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: putty: '0.73.0.0': @@ -19246,15 +19132,15 @@ putty: reboot: False -2020-03-04 11:49:52,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,016 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,483 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.015392541885375977 -2020-03-04 11:49:52,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,484 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls -2020-03-04 11:49:52,484 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,499 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.01563405990600586 -2020-03-04 11:49:52,499 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +2020-03-06 09:49:52,016 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,016 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 09:49:52,016 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,032 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.015582561492919922 +2020-03-06 09:49:52,032 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: python2_x64: @@ -19466,15 +19352,15 @@ python2_x64: reboot: False -2020-03-04 11:49:52,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,499 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,499 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,499 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,499 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls -2020-03-04 11:49:52,499 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015566110610961914 -2020-03-04 11:49:52,515 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +2020-03-06 09:49:52,032 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,047 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 09:49:52,047 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,047 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,047 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: python2_x86: @@ -19686,15 +19572,15 @@ python2_x86: reboot: False -2020-03-04 11:49:52,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,064 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,515 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,515 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls -2020-03-04 11:49:52,530 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,530 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,530 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: +2020-03-06 09:49:52,064 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.016113758087158203 +2020-03-06 09:49:52,064 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,064 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,064 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 09:49:52,064 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,079 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.015622377395629883 +2020-03-06 09:49:52,079 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: python3_x64: @@ -19831,15 +19717,15 @@ python3_x64: reboot: False -2020-03-04 11:49:52,530 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,530 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,546 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls -2020-03-04 11:49:52,546 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,546 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,562 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: +2020-03-06 09:49:52,079 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,094 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,094 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,094 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 09:49:52,094 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,110 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.01653003692626953 +2020-03-06 09:49:52,110 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: python3_x86: @@ -19966,15 +19852,15 @@ python3_x86: reboot: False -2020-03-04 11:49:52,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,562 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,562 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls -2020-03-04 11:49:52,578 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,578 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,578 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +2020-03-06 09:49:52,110 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,126 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 09:49:52,126 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,126 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,126 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -19991,15 +19877,15 @@ qemu: locale: en_US reboot: False -2020-03-04 11:49:52,578 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,126 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,578 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,578 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,578 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,578 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls -2020-03-04 11:49:52,593 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,593 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,593 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: +2020-03-06 09:49:52,126 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,142 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 09:49:52,142 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,142 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,142 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: @@ -20015,15 +19901,15 @@ queueexplorerpro: locale: en_US reboot: False -2020-03-04 11:49:52,593 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,156 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,593 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,593 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls -2020-03-04 11:49:52,593 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.015728235244750977 -2020-03-04 11:49:52,609 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +2020-03-06 09:49:52,156 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,156 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,156 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,156 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 09:49:52,173 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,173 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,173 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: quicktime: '7.79.80.95': full_name: 'QuickTime 7' @@ -20048,15 +19934,15 @@ quicktime: # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} -2020-03-04 11:49:52,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,173 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,609 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls -2020-03-04 11:49:52,609 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,609 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,609 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: +2020-03-06 09:49:52,189 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.015935420989990234 +2020-03-06 09:49:52,189 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,189 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,189 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 09:49:52,204 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,204 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.015377283096313477 +2020-03-06 09:49:52,204 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: rabbitmq: @@ -20081,15 +19967,15 @@ rabbitmq: reboot: False -2020-03-04 11:49:52,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,204 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,624 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,624 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,624 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,624 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls -2020-03-04 11:49:52,624 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.015809297561645508 -2020-03-04 11:49:52,640 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +2020-03-06 09:49:52,204 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,220 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,220 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,220 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 09:49:52,220 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.014618396759033203 +2020-03-06 09:49:52,235 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: rakudo-star_x86: '1.0.0': full_name: 'Rakudo Star 2016.01' @@ -20101,15 +19987,15 @@ rakudo-star_x86: locale: en_US reboot: False -2020-03-04 11:49:52,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,640 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls -2020-03-04 11:49:52,640 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,656 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +2020-03-06 09:49:52,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,251 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,251 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 09:49:52,251 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,251 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,251 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: rakudo-star_x64: '1.0.0': full_name: 'Rakudo Star 2016.04' @@ -20121,15 +20007,15 @@ rakudo-star_x64: locale: en_US reboot: False -2020-03-04 11:49:52,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,251 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,656 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,656 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls -2020-03-04 11:49:52,656 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.01561117172241211 -2020-03-04 11:49:52,671 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +2020-03-06 09:49:52,266 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.015331506729125977 +2020-03-06 09:49:52,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,266 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 09:49:52,283 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,297 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.014229059219360352 +2020-03-06 09:49:52,297 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: rasclient: '16': @@ -20146,15 +20032,15 @@ rasclient: reboot: False -2020-03-04 11:49:52,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,297 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,671 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls -2020-03-04 11:49:52,671 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,671 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,671 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +2020-03-06 09:49:52,297 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,313 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,313 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,313 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 09:49:52,313 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: rdcman: '2.7.14060': full_name: 'Remote Desktop Connection Manager' @@ -20166,15 +20052,15 @@ rdcman: locale: en_US reboot: False -2020-03-04 11:49:52,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.015534400939941406 -2020-03-04 11:49:52,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,687 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls -2020-03-04 11:49:52,687 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,703 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: +2020-03-06 09:49:52,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,328 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,328 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,328 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 09:49:52,328 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,345 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.016303062438964844 +2020-03-06 09:49:52,345 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: rocketchat: @@ -20270,15 +20156,15 @@ rocketchat: reboot: False -2020-03-04 11:49:52,703 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,345 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,703 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,703 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,703 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,703 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls -2020-03-04 11:49:52,703 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.015256881713867188 -2020-03-04 11:49:52,718 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +2020-03-06 09:49:52,345 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,345 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,345 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,360 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 09:49:52,360 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,360 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,360 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: rubyinstaller_x64: '2.2.3-p173': @@ -20312,15 +20198,15 @@ rubyinstaller_x64: reboot: False -2020-03-04 11:49:52,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,375 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,718 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls -2020-03-04 11:49:52,718 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,733 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +2020-03-06 09:49:52,375 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,375 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,375 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,375 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 09:49:52,375 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.016345739364624023 +2020-03-06 09:49:52,391 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: rubyinstaller_x86: '2.2.3-p173': @@ -20364,15 +20250,15 @@ rubyinstaller_x86: reboot: False -2020-03-04 11:49:52,733 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,391 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,733 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,733 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,733 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,733 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls -2020-03-04 11:49:52,733 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,751 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0176851749420166 -2020-03-04 11:49:52,751 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +2020-03-06 09:49:52,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,391 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,391 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,391 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 09:49:52,407 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,407 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,407 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -20892,15 +20778,15 @@ salt-minion: -2020-03-04 11:49:52,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,423 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 11:49:52,767 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.015789031982421875 -2020-03-04 11:49:52,767 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,767 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,767 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls -2020-03-04 11:49:52,767 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,781 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.014216423034667969 -2020-03-04 11:49:52,781 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +2020-03-06 09:49:52,423 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0008099079132080078 +2020-03-06 09:49:52,423 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,438 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 09:49:52,438 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,438 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -21234,15 +21120,15 @@ salt-minion-py3: -2020-03-04 11:49:52,781 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 11:49:52,781 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,781 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,781 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,781 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls -2020-03-04 11:49:52,797 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,797 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,797 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +2020-03-06 09:49:52,453 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.015766620635986328 +2020-03-06 09:49:52,453 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,453 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,453 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 09:49:52,453 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,469 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.015748977661132812 +2020-03-06 09:49:52,469 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: sandboxie: '4.20': @@ -21256,15 +21142,15 @@ sandboxie: locale: en_US reboot: False -2020-03-04 11:49:52,797 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,797 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,797 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,797 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,811 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls -2020-03-04 11:49:52,811 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,811 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,811 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +2020-03-06 09:49:52,469 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,469 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 09:49:52,485 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,485 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: scaleout: latest: @@ -21278,15 +21164,15 @@ scaleout: locale: en_US reboot: False -2020-03-04 11:49:52,811 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,811 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,811 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,827 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,827 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls -2020-03-04 11:49:52,827 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,827 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,827 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +2020-03-06 09:49:52,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,485 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 09:49:52,500 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,500 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,500 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: # just 32-bit x86 installer available @@ -21302,15 +21188,15 @@ secunia.psi: locale: en_US reboot: False -2020-03-04 11:49:52,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,827 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,827 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,827 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,827 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls -2020-03-04 11:49:52,844 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,844 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,844 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: +2020-03-06 09:49:52,500 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,500 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,516 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,516 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 09:49:52,516 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.01613306999206543 +2020-03-06 09:49:52,532 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: @@ -21380,15 +21266,15 @@ sensu: reboot: False -2020-03-04 11:49:52,844 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,844 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,859 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls -2020-03-04 11:49:52,859 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,859 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +2020-03-06 09:49:52,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,532 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 09:49:52,532 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,547 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.015195608139038086 +2020-03-06 09:49:52,547 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: sharpdevelop: '5.1.5134': full_name: 'SharpDevelop 5.1 RC' @@ -21427,15 +21313,15 @@ sharpdevelop: locale: en_US reboot: False -2020-03-04 11:49:52,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,547 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,874 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,874 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls -2020-03-04 11:49:52,874 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,874 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,874 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +2020-03-06 09:49:52,547 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,547 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,547 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,547 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 09:49:52,564 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,564 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,564 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: # just 32-bit x86 installer available @@ -21451,15 +21337,15 @@ skitch: locale: en_US reboot: False -2020-03-04 11:49:52,874 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,564 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,874 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,874 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,874 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,874 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls -2020-03-04 11:49:52,874 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,891 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.016428709030151367 -2020-03-04 11:49:52,891 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +2020-03-06 09:49:52,564 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,579 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,579 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,579 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 09:49:52,579 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,579 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,579 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: skype-msi: '7.41.101': full_name: 'Skypeâ„¢ 7.41' @@ -21495,15 +21381,15 @@ skype-msi: # http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 # you can also check microsite http://skype.techygeekshome.info/ -2020-03-04 11:49:52,891 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,579 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,891 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,891 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,891 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,891 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls -2020-03-04 11:49:52,891 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,891 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,906 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +2020-03-06 09:49:52,579 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,594 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 09:49:52,594 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,594 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,594 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: # just 32-bit x86 installer available @@ -21521,15 +21407,15 @@ skype: reboot: False -2020-03-04 11:49:52,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,906 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,906 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls -2020-03-04 11:49:52,906 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,921 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.015052556991577148 -2020-03-04 11:49:52,921 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +2020-03-06 09:49:52,610 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,610 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 09:49:52,610 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,626 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.01568913459777832 +2020-03-06 09:49:52,626 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: #MSI machine-wide deployment package #The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. #It is multi-client-capable, meaning that it can be used by multiple users on one machine, @@ -21575,15 +21461,15 @@ slack-machine-msi: reboot: False -2020-03-04 11:49:52,921 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,626 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,921 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,921 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,921 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,921 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls -2020-03-04 11:49:52,921 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,936 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.015480518341064453 -2020-03-04 11:49:52,936 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +2020-03-06 09:49:52,626 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,626 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,626 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,626 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 09:49:52,641 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,641 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: #MSI for per-user deployment package #The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. #The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. @@ -21602,15 +21488,15 @@ slack-user-msi: locale: en_US reboot: False -2020-03-04 11:49:52,936 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,936 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,936 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,936 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,936 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls -2020-03-04 11:49:52,936 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,952 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.015957355499267578 -2020-03-04 11:49:52,952 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +2020-03-06 09:49:52,641 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,641 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,641 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 09:49:52,657 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,657 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,657 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: slack: 3.4.0: full_name: Slack @@ -21621,15 +21507,15 @@ slack: msiexec: True reboot: False -2020-03-04 11:49:52,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:49:52,952 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,952 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls -2020-03-04 11:49:52,968 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,968 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.015288829803466797 -2020-03-04 11:49:52,968 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +2020-03-06 09:49:52,657 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,657 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,657 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,657 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 09:49:52,673 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,673 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,688 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: # just 32-bit x86 installer available @@ -21645,15 +21531,15 @@ smartmontools: locale: en_US reboot: False -2020-03-04 11:49:52,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,968 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:52,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:52,984 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls -2020-03-04 11:49:52,984 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:52,984 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:52,984 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +2020-03-06 09:49:52,688 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,688 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,688 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 09:49:52,703 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,703 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,703 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: # just 32-bit x86 installer available @@ -21669,15 +21555,15 @@ snmptools: locale: en_US reboot: False -2020-03-04 11:49:52,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:52,984 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:52,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,000 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,000 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls -2020-03-04 11:49:53,000 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,000 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,000 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: +2020-03-06 09:49:52,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0006730556488037109 +2020-03-06 09:49:52,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,719 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 09:49:52,719 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,736 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.016063451766967773 +2020-03-06 09:49:52,736 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: soapui: @@ -21694,15 +21580,15 @@ soapui: reboot: False -2020-03-04 11:49:53,000 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,000 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,015 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls -2020-03-04 11:49:53,015 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,015 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +2020-03-06 09:49:52,736 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,736 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,736 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,736 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 09:49:52,750 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,750 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,750 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: # just 32-bit x86 installer available @@ -21719,15 +21605,15 @@ software-informer: locale: en_US reboot: False -2020-03-04 11:49:53,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,750 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,015 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls -2020-03-04 11:49:53,032 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,032 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,032 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +2020-03-06 09:49:52,750 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 09:49:52,766 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.07807683944702148 +2020-03-06 09:49:52,860 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: sourcetree: '2.3.1.0': @@ -21943,15 +21829,15 @@ sourcetree: reboot: False -2020-03-04 11:49:53,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,860 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,032 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,046 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls -2020-03-04 11:49:53,046 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,046 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +2020-03-06 09:49:52,860 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,876 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,876 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,876 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 09:49:52,892 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,892 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,907 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: # just 32-bit x86 installer available @@ -21967,15 +21853,15 @@ spybot-anti-beacon: locale: en_US reboot: False -2020-03-04 11:49:53,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,907 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,062 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls -2020-03-04 11:49:53,062 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,062 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,062 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +2020-03-06 09:49:52,907 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:52,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,922 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 09:49:52,922 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,922 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,922 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: # just 32-bit x86 installer available @@ -21995,15 +21881,15 @@ spybot: # http://www.spybotupdates.biz/files/spybot-2.4.exe # http://spybot-mirror.com/files/spybot-2.4.exe -2020-03-04 11:49:53,062 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,062 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,077 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,077 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls -2020-03-04 11:49:53,077 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,077 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,077 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +2020-03-06 09:49:52,939 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.01672816276550293 +2020-03-06 09:49:52,939 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,939 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,939 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 09:49:52,953 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:52,953 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:52,953 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -22032,15 +21918,15 @@ sscserv-free: reboot: False -2020-03-04 11:49:53,077 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:52,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,093 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.015625 -2020-03-04 11:49:53,093 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,093 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,093 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls -2020-03-04 11:49:53,093 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,093 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,093 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +2020-03-06 09:49:52,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.016063690185546875 +2020-03-06 09:49:52,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:52,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:52,985 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 09:49:53,002 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,002 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,002 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: steam: latest: full_name: 'Steam' @@ -22051,15 +21937,15 @@ steam: uninstall_flags: '/S' reboot: False -2020-03-04 11:49:53,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,108 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.01556849479675293 -2020-03-04 11:49:53,108 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,108 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,108 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls -2020-03-04 11:49:53,108 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,108 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,108 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +2020-03-06 09:49:53,002 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,016 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 09:49:53,016 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,032 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.01637125015258789 +2020-03-06 09:49:53,032 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available stellarium: @@ -22075,15 +21961,15 @@ stellarium: locale: en_US reboot: False -2020-03-04 11:49:53,108 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,108 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,124 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,124 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,124 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls -2020-03-04 11:49:53,124 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,124 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,124 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +2020-03-06 09:49:53,032 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,032 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 09:49:53,032 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,047 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.014848947525024414 +2020-03-06 09:49:53,047 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: strawberryperl_x64: '5.26.1001': @@ -22107,15 +21993,15 @@ strawberryperl_x64: reboot: False -2020-03-04 11:49:53,124 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,047 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,124 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,124 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,140 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls -2020-03-04 11:49:53,140 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,140 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,140 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +2020-03-06 09:49:53,047 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,047 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 09:49:53,063 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,063 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,063 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: strawberryperl_x86: '5.26.1001': @@ -22139,15 +22025,15 @@ strawberryperl_x86: reboot: False -2020-03-04 11:49:53,140 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,140 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,140 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,155 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls -2020-03-04 11:49:53,155 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,155 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,155 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +2020-03-06 09:49:53,078 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.014288663864135742 +2020-03-06 09:49:53,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,079 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 09:49:53,079 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,079 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,079 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: # just 32-bit x86 installer available @@ -22163,15 +22049,15 @@ stunnel: locale: en_US reboot: False -2020-03-04 11:49:53,155 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,095 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,155 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,171 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls -2020-03-04 11:49:53,171 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,171 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,171 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +2020-03-06 09:49:53,095 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,095 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,095 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,095 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 09:49:53,095 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,095 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,110 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: subinacl: '5.2.3790.1164': full_name: 'Windows Resource Kit Tools - SubInAcl.exe' @@ -22183,15 +22069,15 @@ subinacl: locale: en_US reboot: False -2020-03-04 11:49:53,171 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,171 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,171 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,171 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls -2020-03-04 11:49:53,187 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,187 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: +2020-03-06 09:49:53,110 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,110 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 09:49:53,110 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,125 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.014926910400390625 +2020-03-06 09:49:53,125 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: @@ -22206,15 +22092,15 @@ sumatrapdf: locale: en_US reboot: False -2020-03-04 11:49:53,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,125 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,187 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls -2020-03-04 11:49:53,187 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,203 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.01529383659362793 -2020-03-04 11:49:53,203 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +2020-03-06 09:49:53,125 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,125 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,125 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,125 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 09:49:53,141 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,141 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,141 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: svn: '1.8.13': full_name: 'Subversion' @@ -22235,15 +22121,15 @@ svn: locale: en_US reboot: False -2020-03-04 11:49:53,203 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,141 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,203 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,203 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,203 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,203 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls -2020-03-04 11:49:53,203 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,203 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,203 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +2020-03-06 09:49:53,141 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,157 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 09:49:53,157 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,172 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.015691041946411133 +2020-03-06 09:49:53,172 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: # just 32-bit x86 installer available @@ -22263,15 +22149,15 @@ teamviewer: locale: en_US reboot: False -2020-03-04 11:49:53,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,172 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,218 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,218 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,218 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,218 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls -2020-03-04 11:49:53,218 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,218 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,218 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +2020-03-06 09:49:53,172 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,172 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,172 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,172 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 09:49:53,188 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,188 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,188 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: # just 32-bit x86 installer available @@ -22291,15 +22177,15 @@ teamviewer_host: locale: en_US reboot: False -2020-03-04 11:49:53,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,188 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,218 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,234 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,234 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls -2020-03-04 11:49:53,234 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,250 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.015528678894042969 -2020-03-04 11:49:53,250 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +2020-03-06 09:49:53,188 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,203 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,203 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 09:49:53,203 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,203 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,219 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: # just 32-bit x86 installer available @@ -22318,15 +22204,15 @@ teracopy: locale: en_US reboot: False -2020-03-04 11:49:53,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,219 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,250 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,250 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,250 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,250 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls -2020-03-04 11:49:53,250 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,250 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,264 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +2020-03-06 09:49:53,219 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,219 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,219 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,219 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 09:49:53,219 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.015465021133422852 +2020-03-06 09:49:53,235 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: # just 32-bit x86 installer available @@ -22342,15 +22228,15 @@ texmaker: locale: en_US reboot: False -2020-03-04 11:49:53,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,265 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls -2020-03-04 11:49:53,265 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,265 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: +2020-03-06 09:49:53,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,235 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 09:49:53,250 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,250 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,250 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: texniccenter: '2.02 Stable': @@ -22365,15 +22251,15 @@ texniccenter: locale: en_US reboot: False -2020-03-04 11:49:53,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,281 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,281 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,281 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls -2020-03-04 11:49:53,281 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,281 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,281 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +2020-03-06 09:49:53,250 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,250 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,266 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,266 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 09:49:53,266 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,266 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,266 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: # just 32-bit x86 installer available @@ -22389,15 +22275,15 @@ texstudio: locale: en_US reboot: False -2020-03-04 11:49:53,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,266 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,281 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,296 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls -2020-03-04 11:49:53,296 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,296 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,296 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +2020-03-06 09:49:53,266 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,282 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,282 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,282 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 09:49:53,282 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,298 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.01595139503479004 +2020-03-06 09:49:53,298 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: # just 32-bit x86 installer available @@ -22413,15 +22299,15 @@ texworks: locale: en_US reboot: False -2020-03-04 11:49:53,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,298 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,296 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,312 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls -2020-03-04 11:49:53,312 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,312 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,328 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +2020-03-06 09:49:53,298 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,298 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,298 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,298 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 09:49:53,298 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.015203237533569336 +2020-03-06 09:49:53,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: # just 32-bit x86 installer available @@ -22699,15 +22585,15 @@ thunderbird: reboot: False -2020-03-04 11:49:53,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,328 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,328 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,328 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,328 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls -2020-03-04 11:49:53,343 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,343 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,343 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +2020-03-06 09:49:53,329 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.01603412628173828 +2020-03-06 09:49:53,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,329 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 09:49:53,329 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,360 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.031211137771606445 +2020-03-06 09:49:53,360 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: tightvnc: @@ -22823,15 +22709,15 @@ tightvnc: reboot: False -2020-03-04 11:49:53,343 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,343 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,343 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,359 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,359 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls -2020-03-04 11:49:53,359 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,359 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,359 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +2020-03-06 09:49:53,360 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,376 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,376 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,376 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 09:49:53,376 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.015074968338012695 +2020-03-06 09:49:53,391 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: todotxt.net: 'Not Found': # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22847,15 +22733,15 @@ todotxt.net: locale: en_US reboot: False -2020-03-04 11:49:53,359 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,391 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,359 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,359 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,359 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,374 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls -2020-03-04 11:49:53,374 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,374 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,374 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +2020-03-06 09:49:53,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,391 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,407 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,407 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 09:49:53,423 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,423 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.016696691513061523 +2020-03-06 09:49:53,423 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22871,15 +22757,15 @@ todour: locale: en_US reboot: False -2020-03-04 11:49:53,374 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,423 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,374 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,374 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,374 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,374 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls -2020-03-04 11:49:53,374 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,390 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.015630722045898438 -2020-03-04 11:49:53,390 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +2020-03-06 09:49:53,423 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,438 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 09:49:53,438 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,438 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: # just 32-bit x86 installer available @@ -22896,15 +22782,15 @@ tortoise-bzr: locale: en_US reboot: False -2020-03-04 11:49:53,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,455 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,390 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,390 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls -2020-03-04 11:49:53,390 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,407 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.017126083374023438 -2020-03-04 11:49:53,407 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +2020-03-06 09:49:53,455 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.01615309715270996 +2020-03-06 09:49:53,455 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,455 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,455 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 09:49:53,455 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,486 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.03093743324279785 +2020-03-06 09:49:53,486 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: # Source: https://tortoisegit.org/ tortoise-git: @@ -23065,15 +22951,15 @@ tortoise-git: reboot: False -2020-03-04 11:49:53,407 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,486 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,407 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,407 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,407 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,421 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls -2020-03-04 11:49:53,421 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,421 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,421 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +2020-03-06 09:49:53,486 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,486 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,503 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,503 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 09:49:53,503 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,503 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,503 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: # Source: http://tortoisehg.bitbucket.org/ tortoise-hg: '3.6.2': @@ -23101,15 +22987,15 @@ tortoise-hg: # Need to download from source site above, so it will append proper aws key credentials # place downloaded msi in master's win_repo-ng -2020-03-04 11:49:53,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,421 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,421 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,421 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls -2020-03-04 11:49:53,437 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,437 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +2020-03-06 09:49:53,517 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.014481544494628906 +2020-03-06 09:49:53,517 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,517 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,517 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 09:49:53,517 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,533 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.016307353973388672 +2020-03-06 09:49:53,533 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: # Source: http://tortoisesvn.net/ tortoise-svn: '1.9.27285': @@ -23125,15 +23011,15 @@ tortoise-svn: reboot: False -2020-03-04 11:49:53,437 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,533 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,437 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,437 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls -2020-03-04 11:49:53,437 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,452 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.014976739883422852 -2020-03-04 11:49:53,452 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +2020-03-06 09:49:53,533 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,533 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,533 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,533 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 09:49:53,533 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,549 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.01538705825805664 +2020-03-06 09:49:53,549 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: # just 32-bit x86 installer available @@ -23149,15 +23035,15 @@ truecrypt: locale: en_US reboot: False -2020-03-04 11:49:53,452 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,452 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,452 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,452 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,452 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls -2020-03-04 11:49:53,452 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,452 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,469 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +2020-03-06 09:49:53,549 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,549 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,549 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,549 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 09:49:53,565 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,565 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,565 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ultradefrag: @@ -23173,15 +23059,15 @@ ultradefrag: locale: en_US reboot: False -2020-03-04 11:49:53,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,469 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,469 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,469 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,469 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls -2020-03-04 11:49:53,469 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,469 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,469 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +2020-03-06 09:49:53,581 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.01651144027709961 +2020-03-06 09:49:53,581 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,581 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,581 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 09:49:53,581 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,596 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.014895200729370117 +2020-03-06 09:49:53,596 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available urlrewrite: @@ -23208,15 +23094,15 @@ urlrewrite: locale: en_US reboot: False -2020-03-04 11:49:53,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,596 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,469 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,485 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,485 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,485 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls -2020-03-04 11:49:53,485 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,485 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,485 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +2020-03-06 09:49:53,596 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,596 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,596 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,596 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 09:49:53,596 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,611 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.01450204849243164 +2020-03-06 09:49:53,611 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: usbdlm: '5.2.7.0': @@ -23230,15 +23116,15 @@ usbdlm: locale: en_US reboot: False -2020-03-04 11:49:53,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,611 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,485 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,485 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,500 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls -2020-03-04 11:49:53,500 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,500 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,500 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +2020-03-06 09:49:53,611 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,611 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,611 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,611 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 09:49:53,627 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,627 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,627 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: vagrant: @@ -23744,15 +23630,15 @@ vagrant: reboot: False -2020-03-04 11:49:53,516 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,645 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,516 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,516 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,516 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,516 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls -2020-03-04 11:49:53,533 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,533 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,533 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +2020-03-06 09:49:53,645 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.017253875732421875 +2020-03-06 09:49:53,659 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,659 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,659 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 09:49:53,659 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,659 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,659 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: vcforpython27: '9.0.1.30729': full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' @@ -23764,15 +23650,15 @@ vcforpython27: locale: en_US reboot: False -2020-03-04 11:49:53,533 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,533 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,533 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,533 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,533 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls -2020-03-04 11:49:53,533 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,548 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.014709949493408203 -2020-03-04 11:49:53,548 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: +2020-03-06 09:49:53,659 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,673 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 09:49:53,673 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,673 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,673 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: @@ -23804,15 +23690,15 @@ vcxsrv: reboot: False -2020-03-04 11:49:53,548 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,548 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,548 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,548 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,548 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls -2020-03-04 11:49:53,548 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,564 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.01663804054260254 -2020-03-04 11:49:53,564 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: +2020-03-06 09:49:53,690 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,690 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,690 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,690 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 09:49:53,690 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,705 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.01466989517211914 +2020-03-06 09:49:53,705 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: verysleepy: @@ -23827,15 +23713,15 @@ verysleepy: locale: en_US reboot: False -2020-03-04 11:49:53,564 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,705 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,564 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,564 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,564 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,564 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls -2020-03-04 11:49:53,564 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,579 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.014615535736083984 -2020-03-04 11:49:53,579 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +2020-03-06 09:49:53,705 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,705 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,705 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,705 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 09:49:53,705 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,721 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.015884876251220703 +2020-03-06 09:49:53,721 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -23866,15 +23752,15 @@ veyon: reboot: False -2020-03-04 11:49:53,579 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,579 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,579 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,579 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,595 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls -2020-03-04 11:49:53,595 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,624 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.029841184616088867 -2020-03-04 11:49:53,624 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +2020-03-06 09:49:53,721 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,721 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,735 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,735 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 09:49:53,735 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.015801668167114258 +2020-03-06 09:49:53,751 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: # Version 5.1 and older are no longer supported by Oracle # https://www.virtualbox.org/wiki/Download_Old_Builds @@ -23937,15 +23823,15 @@ virtualbox: reboot: False -2020-03-04 11:49:53,624 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,624 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,624 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,639 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,640 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls -2020-03-04 11:49:53,640 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,640 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: +2020-03-06 09:49:53,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,751 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,765 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 09:49:53,766 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.015420198440551758 +2020-03-06 09:49:53,782 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: @@ -23980,15 +23866,15 @@ viscosity: reboot: False -2020-03-04 11:49:53,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:49:53,640 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,656 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,656 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls -2020-03-04 11:49:53,656 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,656 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,656 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +2020-03-06 09:49:53,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,797 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 09:49:53,797 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,813 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: #Vivaldi is a Chromium-based browser #https://vivaldi.com @@ -24007,15 +23893,15 @@ vivaldi: locale: en_US reboot: False -2020-03-04 11:49:53,656 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,813 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,656 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,672 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,672 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,672 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls -2020-03-04 11:49:53,672 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.015183210372924805 -2020-03-04 11:49:53,687 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +2020-03-06 09:49:53,813 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,813 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,813 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,813 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 09:49:53,828 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,828 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,828 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available vlc: @@ -24165,15 +24051,15 @@ vlc: reboot: False -2020-03-04 11:49:53,687 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,844 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,687 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,687 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls -2020-03-04 11:49:53,702 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,702 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,702 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +2020-03-06 09:49:53,844 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,844 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,844 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 09:49:53,861 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,861 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,874 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: vs-community: 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) full_name: @@ -24192,15 +24078,15 @@ vs-community: --norestart reboot: False -2020-03-04 11:49:53,702 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,702 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,702 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls -2020-03-04 11:49:53,702 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.015866756439208984 -2020-03-04 11:49:53,718 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +2020-03-06 09:49:53,875 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,875 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,875 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 09:49:53,875 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,891 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.016182899475097656 +2020-03-06 09:49:53,891 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: # due to winrepo installer limitations you need to manually download x86 + x64 System installer from # https://code.visualstudio.com/Download # and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... @@ -24276,15 +24162,15 @@ vscode: -2020-03-04 11:49:53,718 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,891 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,718 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,718 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls -2020-03-04 11:49:53,734 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,734 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +2020-03-06 09:49:53,891 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,891 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,906 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 09:49:53,906 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,906 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,906 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: vsee: '15.0.0.707': full_name: 'VSee' @@ -24296,15 +24182,15 @@ vsee: locale: en_US reboot: False -2020-03-04 11:49:53,734 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,734 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,734 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls -2020-03-04 11:49:53,734 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,753 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.01932692527770996 -2020-03-04 11:49:53,753 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +2020-03-06 09:49:53,906 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,906 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,906 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,922 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 09:49:53,922 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,922 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,922 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: vs_remotetools_2017: latest: full_name: 'Remote Tools for Visual Studio 2017' @@ -24319,15 +24205,15 @@ vs_remotetools_2017: locale: en_US reboot: False -2020-03-04 11:49:53,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,753 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,753 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,753 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,753 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls -2020-03-04 11:49:53,753 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,766 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.012763738632202148 -2020-03-04 11:49:53,766 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +2020-03-06 09:49:53,922 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,922 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,939 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,939 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 09:49:53,939 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,939 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,939 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: wamp-server-3: '3.1.3': @@ -24341,15 +24227,15 @@ wamp-server-3: locale: en_US reboot: False -2020-03-04 11:49:53,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,939 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,766 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,766 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,766 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,766 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls -2020-03-04 11:49:53,766 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,766 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,766 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: +2020-03-06 09:49:53,939 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,954 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,954 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,954 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 09:49:53,954 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:53,954 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: wamp-stack: @@ -24375,15 +24261,15 @@ wamp-stack: reboot: False -2020-03-04 11:49:53,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,954 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,782 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0161283016204834 -2020-03-04 11:49:53,782 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,782 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,782 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls -2020-03-04 11:49:53,782 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,782 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,782 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +2020-03-06 09:49:53,954 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,969 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,969 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,969 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 09:49:53,969 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:53,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.01618647575378418 +2020-03-06 09:49:53,985 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: webdeploy: '3.1237.1764': full_name: 'Microsoft Web Deploy 3.5' @@ -24397,15 +24283,15 @@ webdeploy: locale: en_US reboot: False -2020-03-04 11:49:53,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:53,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,782 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,782 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,798 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,798 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls -2020-03-04 11:49:53,798 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,798 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,798 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +2020-03-06 09:49:53,985 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:53,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:53,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:53,985 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 09:49:54,000 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,000 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,000 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: webplatforminstaller: '5.0.50430.0': full_name: 'Microsoft Web Platform Installer 5.0' @@ -24419,15 +24305,15 @@ webplatforminstaller: locale: en_US reboot: False -2020-03-04 11:49:53,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,000 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.014119625091552734 -2020-03-04 11:49:53,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,812 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls -2020-03-04 11:49:53,812 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,812 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +2020-03-06 09:49:54,000 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,032 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 09:49:54,032 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,048 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,048 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: # Source: http://winappmanager.herokuapp.com/ @@ -24443,15 +24329,15 @@ win-app-manager: locale: en_US reboot: False -2020-03-04 11:49:53,812 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,048 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,812 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,827 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,827 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,827 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls -2020-03-04 11:49:53,827 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,827 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,827 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: +2020-03-06 09:49:54,048 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,048 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,048 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,064 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 09:49:54,064 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,064 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,079 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: @@ -24466,15 +24352,15 @@ windirstat: locale: en_US reboot: False -2020-03-04 11:49:53,827 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,843 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.015371561050415039 -2020-03-04 11:49:53,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,843 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls -2020-03-04 11:49:53,843 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,843 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,843 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +2020-03-06 09:49:54,079 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,079 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 09:49:54,094 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,094 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,094 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: winhttpcertcfg: '5.2.3790.1060': full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' @@ -24486,15 +24372,15 @@ winhttpcertcfg: locale: en_US reboot: False -2020-03-04 11:49:53,843 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,094 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,843 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,843 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls -2020-03-04 11:49:53,859 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,859 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: +2020-03-06 09:49:54,094 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,110 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 09:49:54,110 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,126 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.01602768898010254 +2020-03-06 09:49:54,126 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: @@ -24522,15 +24408,15 @@ winmerge: reboot: False -2020-03-04 11:49:53,859 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,126 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,859 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,859 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls -2020-03-04 11:49:53,875 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,875 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +2020-03-06 09:49:54,126 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,126 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,126 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,142 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 09:49:54,142 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,142 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,142 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: winmtr: '0.92': @@ -24548,15 +24434,15 @@ winmtr: # download exe from winmtr.net # create two installers using http://www.ssesetup.com/ -2020-03-04 11:49:53,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,142 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,875 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,875 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,875 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls -2020-03-04 11:49:53,875 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,890 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.015095949172973633 -2020-03-04 11:49:53,890 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +2020-03-06 09:49:54,142 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,158 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,158 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,158 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 09:49:54,173 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,173 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,173 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: winpcap: '4.1.0.2980': full_name: 'WinPcap 4.1.3' @@ -24568,15 +24454,15 @@ winpcap: locale: en_US reboot: False -2020-03-04 11:49:53,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,173 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,890 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,890 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls -2020-03-04 11:49:53,890 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,906 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.016342878341674805 -2020-03-04 11:49:53,906 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +2020-03-06 09:49:54,173 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,189 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 09:49:54,189 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,189 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,204 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: #if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) @@ -24611,15 +24497,15 @@ winrar: -2020-03-04 11:49:53,906 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,204 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,906 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,906 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls -2020-03-04 11:49:53,906 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,922 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.015594244003295898 -2020-03-04 11:49:53,922 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: +2020-03-06 09:49:54,204 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,204 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,204 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,204 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 09:49:54,219 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,219 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,219 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: @@ -24886,15 +24772,15 @@ winscp: reboot: False -2020-03-04 11:49:53,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,922 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,937 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls -2020-03-04 11:49:53,937 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,937 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,937 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +2020-03-06 09:49:54,235 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.015785694122314453 +2020-03-06 09:49:54,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,235 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 09:49:54,235 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,250 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.015611886978149414 +2020-03-06 09:49:54,250 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available wireshark: @@ -25416,15 +25302,15 @@ wireshark: reboot: False -2020-03-04 11:49:53,952 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,267 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,952 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.015738725662231445 -2020-03-04 11:49:53,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,952 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls -2020-03-04 11:49:53,952 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,968 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.016109466552734375 -2020-03-04 11:49:53,968 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +2020-03-06 09:49:54,267 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.016205310821533203 +2020-03-06 09:49:54,267 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,282 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,282 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 09:49:54,282 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,282 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,282 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: # source: http://www.kls-soft.com/wscc/ wscc: '2.5.0.4': @@ -25439,15 +25325,15 @@ wscc: locale: en_US reboot: False -2020-03-04 11:49:53,968 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,968 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,968 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls -2020-03-04 11:49:53,984 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,984 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,984 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +2020-03-06 09:49:54,297 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.015452146530151367 +2020-03-06 09:49:54,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,297 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 09:49:54,297 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.016451120376586914 +2020-03-06 09:49:54,313 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: # Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 # https://github.com/zeffy/wufuc @@ -25469,15 +25355,15 @@ wufuc: reboot: False -2020-03-04 11:49:53,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,999 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.015596628189086914 -2020-03-04 11:49:53,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:53,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:53,999 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls -2020-03-04 11:49:53,999 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:53,999 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:53,999 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +2020-03-06 09:49:54,313 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,313 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,328 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,328 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 09:49:54,328 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,328 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,328 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: xampp: '7.2.6.0': full_name: 'XAMPP 7.2.6' @@ -25489,15 +25375,15 @@ xampp: locale: en_US reboot: False -2020-03-04 11:49:53,999 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,328 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:53,999 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:53,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,015 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls -2020-03-04 11:49:54,015 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,015 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +2020-03-06 09:49:54,328 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,328 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,344 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 09:49:54,344 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,344 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,344 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: # just 32-bit x86 installer available @@ -25514,15 +25400,15 @@ xming: locale: en_US reboot: False -2020-03-04 11:49:54,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,344 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:54,015 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,015 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,030 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls -2020-03-04 11:49:54,030 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,030 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,030 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: +2020-03-06 09:49:54,359 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.015410184860229492 +2020-03-06 09:49:54,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,360 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 09:49:54,360 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,360 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,376 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: yubikey-manager: @@ -25588,15 +25474,15 @@ yubikey-manager: reboot: False -2020-03-04 11:49:54,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 11:49:54,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.016283273696899414 -2020-03-04 11:49:54,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,046 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls -2020-03-04 11:49:54,046 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,046 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,046 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +2020-03-06 09:49:54,376 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,376 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,376 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,376 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 09:49:54,390 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0010101795196533203 +2020-03-06 09:49:54,391 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: yubikey-personalization-tool: '3.1.24': full_name: 'YubiKey Personalization Tool' @@ -25606,15 +25492,15 @@ yubikey-personalization-tool: uninstall_flags: '/S' reboot: False -2020-03-04 11:49:54,046 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,391 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 11:49:54,062 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.015270471572875977 -2020-03-04 11:49:54,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,062 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls -2020-03-04 11:49:54,062 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,078 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.016476154327392578 -2020-03-04 11:49:54,078 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +2020-03-06 09:49:54,391 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,391 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,407 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,407 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 09:49:54,407 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,423 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.01609015464782715 +2020-03-06 09:49:54,423 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -25622,11 +25508,11 @@ OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDic zabbix-agent: - '4.2.3.2400': + '3.0.26.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25634,11 +25520,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.4.2400': + '3.0.27.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25646,11 +25532,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.5.2400': + '3.0.28.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25658,11 +25544,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.6.2400': + '3.0.29.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25670,11 +25556,13 @@ zabbix-agent: locale: en_US reboot: False - '4.2.7.2400': + + + '4.2.3.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25682,11 +25570,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.8.2400': + '4.2.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25694,13 +25582,11 @@ zabbix-agent: locale: en_US reboot: False - - - '4.4.1.2400': + '4.2.5.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25708,11 +25594,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.2.2400': + '4.2.6.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25720,11 +25606,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.3.2400': + '4.2.7.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25732,11 +25618,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.4.2400': + '4.2.8.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25746,11 +25632,11 @@ zabbix-agent: - '3.0.26.2400': + '4.0.9.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25758,11 +25644,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.27.2400': + '4.0.10.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25770,11 +25656,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.28.2400': + '4.0.11.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25782,11 +25668,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.29.2400': + '4.0.12.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25794,13 +25680,11 @@ zabbix-agent: locale: en_US reboot: False - - - '4.0.9.2400': + '4.0.13.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25808,11 +25692,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.10.2400': + '4.0.14.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25820,11 +25704,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.11.2400': + '4.0.15.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25832,11 +25716,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.12.2400': + '4.0.16.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25844,11 +25728,13 @@ zabbix-agent: locale: en_US reboot: False - '4.0.13.2400': + + + '4.4.1.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25856,11 +25742,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.14.2400': + '4.4.2.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25868,11 +25754,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.15.2400': + '4.4.3.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25880,11 +25766,11 @@ zabbix-agent: locale: en_US reboot: False - '4.0.16.2400': + '4.4.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25894,15 +25780,15 @@ zabbix-agent: -2020-03-04 11:49:54,078 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: -OrderedDict([('zabbix-agent', OrderedDict([('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:54,078 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,093 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,093 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,093 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls -2020-03-04 11:49:54,093 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,093 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,093 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: +2020-03-06 09:49:54,423 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 09:49:54,438 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.015281200408935547 +2020-03-06 09:49:54,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,438 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 09:49:54,453 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,453 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,453 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: zoom: latest: @@ -25914,15 +25800,15 @@ zoom: msiexec: True reboot: False -2020-03-04 11:49:54,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 11:49:54,093 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,108 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,109 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,109 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls -2020-03-04 11:49:54,109 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,109 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,109 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +2020-03-06 09:49:54,453 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,453 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,453 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,468 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 09:49:54,469 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,469 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,469 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: # Software Definition File for Elasticsearch Auditbeat # Uses the following associated scripts @@ -25984,15 +25870,15 @@ auditbeat: cache_dir: True -2020-03-04 11:49:54,109 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,109 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,109 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,129 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,129 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls -2020-03-04 11:49:54,129 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,129 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,129 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +2020-03-06 09:49:54,469 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,485 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 09:49:54,485 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,485 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,485 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: chocolatey: latest: full_name: 'Chocolatey' @@ -26006,15 +25892,15 @@ chocolatey: # https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 -2020-03-04 11:49:54,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,138 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.008708000183105469 -2020-03-04 11:49:54,141 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,141 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,141 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls -2020-03-04 11:49:54,141 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,141 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,141 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: +2020-03-06 09:49:54,500 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,500 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,500 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,500 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 09:49:54,516 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,516 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,516 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: @@ -26042,15 +25928,15 @@ erlang: reboot: False -2020-03-04 11:49:54,141 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,532 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 11:49:54,155 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.014714717864990234 -2020-03-04 11:49:54,155 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,155 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,155 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls -2020-03-04 11:49:54,155 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,155 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,155 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +2020-03-06 09:49:54,532 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.00061798095703125 +2020-03-06 09:49:54,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,532 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,532 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 09:49:54,547 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,565 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.017850399017333984 +2020-03-06 09:49:54,565 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: # Software Definition File for Elasticsearch Filebeat # Uses the following associated scripts @@ -26112,15 +25998,15 @@ filebeat: cache_dir: True -2020-03-04 11:49:54,155 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,155 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,172 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,172 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,172 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls -2020-03-04 11:49:54,172 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,172 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,172 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +2020-03-06 09:49:54,565 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,579 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,579 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,579 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 09:49:54,579 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,595 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.015903711318969727 +2020-03-06 09:49:54,595 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: # Software Definition File for Elasticsearch Functionbeat # Uses the following associated scripts @@ -26182,15 +26068,15 @@ functionbeat: cache_dir: True -2020-03-04 11:49:54,172 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,172 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,187 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,187 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls -2020-03-04 11:49:54,187 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,187 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +2020-03-06 09:49:54,595 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,610 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 09:49:54,610 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,610 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,627 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: # just 32-bit x86 installer available @@ -26289,15 +26175,15 @@ gpg4win: reboot: False -2020-03-04 11:49:54,187 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:49:54,187 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,203 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,203 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,203 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls -2020-03-04 11:49:54,203 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,203 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,218 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +2020-03-06 09:49:54,627 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,627 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,642 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,642 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 09:49:54,642 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,658 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.01650714874267578 +2020-03-06 09:49:54,658 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: # Software Definition File for Elasticsearch Heartbeat # Uses the following associated scripts @@ -26359,15 +26245,15 @@ heartbeat: cache_dir: True -2020-03-04 11:49:54,218 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,658 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,218 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,218 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,218 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,218 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls -2020-03-04 11:49:54,233 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,233 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,233 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +2020-03-06 09:49:54,658 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,673 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,673 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 09:49:54,673 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,690 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.01669764518737793 +2020-03-06 09:49:54,690 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: # Software Definition File for Elasticsearch Metricbeat # Uses the following associated scripts @@ -26429,15 +26315,15 @@ metricbeat: cache_dir: True -2020-03-04 11:49:54,233 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,233 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,233 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,233 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,233 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls -2020-03-04 11:49:54,249 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,249 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,249 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +2020-03-06 09:49:54,690 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,690 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,703 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,703 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 09:49:54,703 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.01616525650024414 +2020-03-06 09:49:54,719 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: # Software Definition File for Elasticsearch Packetbeat # Uses the following associated scripts @@ -26499,15 +26385,15 @@ packetbeat: cache_dir: True -2020-03-04 11:49:54,249 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,249 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,249 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,249 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,249 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls -2020-03-04 11:49:54,249 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0161285400390625 -2020-03-04 11:49:54,265 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: +2020-03-06 09:49:54,719 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,719 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 09:49:54,735 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,735 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: @@ -26526,15 +26412,15 @@ pycharm-pro: reboot: False -2020-03-04 11:49:54,265 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 11:49:54,265 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,265 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,265 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls -2020-03-04 11:49:54,265 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,280 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.015076160430908203 -2020-03-04 11:49:54,280 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +2020-03-06 09:49:54,735 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,751 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,751 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,751 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 09:49:54,751 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,751 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,751 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: # just 32-bit x86 installer available @@ -26549,15 +26435,15 @@ stayawake: uninstall_flags: '/S' -2020-03-04 11:49:54,280 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) -2020-03-04 11:49:54,280 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,280 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,280 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,280 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls -2020-03-04 11:49:54,280 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,296 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.01612710952758789 -2020-03-04 11:49:54,296 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +2020-03-06 09:49:54,766 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,766 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,766 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 09:49:54,766 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.01605057716369629 +2020-03-06 09:49:54,782 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: # Software Definition File for Elasticsearch Winlogbeat # Uses the following associated scripts @@ -26619,31 +26505,31 @@ winlogbeat: cache_dir: True -2020-03-04 11:49:54,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,296 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,296 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,296 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls -2020-03-04 11:49:54,311 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,311 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,311 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +2020-03-06 09:49:54,782 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,797 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,797 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 09:49:54,797 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,797 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 09:49:54,797 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: ############################################################# # Windows ############################################################# # -2020-03-04 11:49:54,311 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,814 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: {} -2020-03-04 11:49:54,311 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,311 [salt.loaded.int.module.win_pkg:1213][DEBUG ][6228] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing -2020-03-04 11:49:54,311 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:49:54,327 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:49:54,327 [salt.template :59 ][DEBUG ][6228] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls -2020-03-04 11:49:54,327 [salt.utils.jinja :85 ][DEBUG ][6228] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 11:49:54,327 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 11:49:54,327 [salt.template :120 ][DEBUG ][6228] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +2020-03-06 09:49:54,814 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,814 [salt.loaded.int.module.win_pkg:1217][DEBUG ][6660] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 09:49:54,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:54,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:54,814 [salt.template :59 ][DEBUG ][6660] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 09:49:54,814 [salt.utils.jinja :85 ][DEBUG ][6660] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 09:49:54,830 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.016178131103515625 +2020-03-06 09:49:54,830 [salt.template :120 ][DEBUG ][6660] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: # only 32-bit (x86) installer available @@ -26677,1265 +26563,456 @@ zipinstaller: # as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache # -2020-03-04 11:49:54,327 [salt.loaded.int.render.yaml:80 ][DEBUG ][6228] Results of YAML rendering: +2020-03-06 09:49:54,830 [salt.loaded.int.render.yaml:80 ][DEBUG ][6660] Results of YAML rendering: OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) -2020-03-04 11:49:54,327 [salt.template :26 ][PROFILE ][6228] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 11:49:54,344 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 11:49:54,344 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 11:49:54,374 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: Volume in drive C is Windows 10 +2020-03-06 09:49:54,830 [salt.template :30 ][PROFILE ][6660] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 09:49:54,864 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 09:49:54,864 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 09:49:54,907 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Volume in drive C is Windows 10 Volume Serial Number is A0C4-95E5 Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng -03/04/2020 02:49 PM . -03/04/2020 02:49 PM .. -03/04/2020 02:49 PM 927 7zip.sls -03/04/2020 02:49 PM 723 activeperl_x64.sls -03/04/2020 02:49 PM 973 activeperl_x86.sls -03/04/2020 02:49 PM 798 adobeair.sls -03/04/2020 02:49 PM 956 adobereader-dc-classic.sls -03/04/2020 02:49 PM 851 adobereader-xi.sls -03/04/2020 02:49 PM 830 adobereader.sls -03/04/2020 02:49 PM 589 adobeshockwaveplayer.sls -03/04/2020 02:49 PM 775 adv-ip-scanner.sls -03/04/2020 02:49 PM 787 adv-port-scanner.sls -03/04/2020 02:49 PM 769 advancedlogging.sls -03/04/2020 02:49 PM 373 anydesk-msi.sls -03/04/2020 02:49 PM 597 anydesk.sls -03/04/2020 02:49 PM 803 applicationrequestrouting.sls -03/04/2020 02:49 PM 370 aspnet-mvc1.sls -03/04/2020 02:49 PM 439 atom.sls -03/04/2020 02:49 PM 655 audacity.sls -03/04/2020 02:49 PM auditbeat -03/04/2020 02:49 PM 1,768 autohotkey.sls -03/04/2020 02:49 PM 611 autoit.sls -03/04/2020 02:49 PM 670 autopsy.sls -03/04/2020 02:49 PM 659 awscli.sls -03/04/2020 02:49 PM 799 azuredatastudio.sls -03/04/2020 02:49 PM 422 bandizip.sls -03/04/2020 02:49 PM 563 belarc-advisor.sls -03/04/2020 02:49 PM 367 bginfo4x.sls -03/04/2020 02:49 PM 547 bitnami-nginxstack.sls -03/04/2020 02:49 PM 568 bitvise.sls -03/04/2020 02:49 PM 777 blender.sls -03/04/2020 02:49 PM 395 bootracer.sls -03/04/2020 02:49 PM 664 bulkrenameutility.sls -03/04/2020 02:49 PM 661 bulk_extractor.sls -03/04/2020 02:49 PM 476 ccleaner-slim.sls -03/04/2020 02:49 PM 445 ccleaner.sls -03/04/2020 02:49 PM 606 cdburnerxp.sls -03/04/2020 02:49 PM 594 cdroller.sls -03/04/2020 02:49 PM 658 check-mk-agent-msi.sls -03/04/2020 02:49 PM 451 check-mk-agent.sls -03/04/2020 02:49 PM chocolatey -03/04/2020 02:49 PM 394 chrome-rdp.sls -03/04/2020 02:49 PM 375 chrome.sls -03/04/2020 02:49 PM 1,296 clamav.sls -03/04/2020 02:49 PM 1,200 clamwin.sls -03/04/2020 02:49 PM 500 classicshell.sls -03/04/2020 02:49 PM 1,521 clink.sls -03/04/2020 02:49 PM 617 conemu.sls -03/04/2020 02:49 PM 687 cpu-z.sls -03/04/2020 02:49 PM 2,833 curl.sls -03/04/2020 02:49 PM 374 cyberduck-cli.sls -03/04/2020 02:49 PM 616 cyberduck-msi.sls -03/04/2020 02:49 PM 639 cyberduck.sls -03/04/2020 02:49 PM 751 defraggler.sls -03/04/2020 02:49 PM 2,637 dotnet.sls -03/04/2020 02:49 PM 643 dropbox.sls -03/04/2020 02:49 PM 683 duplicati.sls -03/04/2020 02:49 PM 712 dvdstyler.sls -03/04/2020 02:49 PM 737 echo-desktop.sls -03/04/2020 02:49 PM 1,327 eea.sls -03/04/2020 02:49 PM 423 emet.sls -03/04/2020 02:49 PM 625 emsisoft-anti-malware.sls -03/04/2020 02:49 PM 721 eraser.sls -03/04/2020 02:49 PM erlang -03/04/2020 02:49 PM 982 evernote.sls -03/04/2020 02:49 PM 531 fiddler.sls -03/04/2020 02:49 PM filebeat -03/04/2020 02:49 PM 660 filehippo-app-manager.sls -03/04/2020 02:49 PM 1,271 filezilla.sls -03/04/2020 02:49 PM 1,115 firefox-esr_x64.sls -03/04/2020 02:49 PM 1,396 firefox-esr_x86.sls -03/04/2020 02:49 PM 1,365 firefox_x64.sls -03/04/2020 02:49 PM 1,870 firefox_x86.sls -03/04/2020 02:49 PM functionbeat -03/04/2020 02:49 PM 552 gedit.sls -03/04/2020 02:49 PM 822 gimp.sls -03/04/2020 02:49 PM 953 git-extensions.sls -03/04/2020 02:49 PM 3,855 git.sls -03/04/2020 02:49 PM 848 glarysoft-absolute-uninstaller.sls -03/04/2020 02:49 PM 563 gnucash.sls -03/04/2020 02:49 PM 2,152 golang.sls -03/04/2020 02:49 PM 320 goodsync.sls -03/04/2020 02:49 PM 601 gow.sls -03/04/2020 02:49 PM gpg4win -03/04/2020 02:49 PM 847 gpg4win-light.sls -03/04/2020 02:49 PM 621 gpg4win-vanilla.sls -03/04/2020 02:49 PM 544 graylog-collector-sidecar.sls -03/04/2020 02:49 PM 2,661 grepwin.sls -03/04/2020 02:49 PM 505 gvim.sls -03/04/2020 02:49 PM 622 handbrake.sls -03/04/2020 02:49 PM heartbeat -03/04/2020 02:49 PM 503 hipchat.sls -03/04/2020 02:49 PM 771 hostsfileeditor.sls -03/04/2020 02:49 PM 623 hwinfo.sls -03/04/2020 02:49 PM 339 ice.sls -03/04/2020 02:49 PM 493 icecast.sls -03/04/2020 02:49 PM 377 icloud.sls -03/04/2020 02:49 PM 2,197 iismediaservices.sls -03/04/2020 02:49 PM 358 influx-capacitor.sls -03/04/2020 02:49 PM 644 inkscape.sls -03/04/2020 02:49 PM 646 intellij-community.sls -03/04/2020 02:49 PM 618 intellij-ultimate.sls -03/04/2020 02:49 PM 360 internet-evidence-finder.sls -03/04/2020 02:49 PM 702 irfanview-plugins.sls -03/04/2020 02:49 PM 1,610 irfanview.sls -03/04/2020 02:49 PM 697 isapirewrite-lite.sls -03/04/2020 02:49 PM 2,602 itunes.sls -03/04/2020 02:49 PM 1,279 jdk8.sls -03/04/2020 02:49 PM 1,200 jre.sls -03/04/2020 02:49 PM 1,480 jre8.sls -03/04/2020 02:49 PM 995 jungledisk-server-management.sls -03/04/2020 02:49 PM 891 jungledisk-server.sls -03/04/2020 02:49 PM 921 jungledisk-workgroup.sls -03/04/2020 02:49 PM 518 kdiff3.sls -03/04/2020 02:49 PM 1,091 keepass-2x.sls -03/04/2020 02:49 PM 2,655 keepass.sls -03/04/2020 02:49 PM 673 lastpass.sls -03/04/2020 02:49 PM 1,329 lazarus.sls -03/04/2020 02:49 PM 951 libreoffice.sls -03/04/2020 02:49 PM 419 logparser.sls -03/04/2020 02:49 PM 2,627 maas360bootanalyzer.sls -03/04/2020 02:49 PM 722 malwarebytes.sls -03/04/2020 02:49 PM 1,884 mariadb.sls -03/04/2020 02:49 PM 653 mercurial.sls -03/04/2020 02:49 PM 649 messageanalyzer.sls -03/04/2020 02:49 PM metricbeat -03/04/2020 02:49 PM 603 microsoft-build-tools.sls -03/04/2020 02:49 PM 317 mikogo.sls -03/04/2020 02:49 PM 766 miktex-basic.sls -03/04/2020 02:49 PM 787 mongodb.sls -03/04/2020 02:49 PM 831 ms-mbsa.sls -03/04/2020 02:49 PM 419 ms-vcpp-2005-atl-redist_x64.sls -03/04/2020 02:49 PM 413 ms-vcpp-2005-atl-redist_x86.sls -03/04/2020 02:49 PM 412 ms-vcpp-2005-redist_x64.sls -03/04/2020 02:49 PM 406 ms-vcpp-2005-redist_x86.sls -03/04/2020 02:49 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls -03/04/2020 02:49 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls -03/04/2020 02:49 PM 416 ms-vcpp-2005-sp1-redist_x64.sls -03/04/2020 02:49 PM 410 ms-vcpp-2005-sp1-redist_x86.sls -03/04/2020 02:49 PM 434 ms-vcpp-2008-redist_x64.sls -03/04/2020 02:49 PM 434 ms-vcpp-2008-redist_x86.sls -03/04/2020 02:49 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls -03/04/2020 02:49 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls -03/04/2020 02:49 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls -03/04/2020 02:49 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls -03/04/2020 02:49 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls -03/04/2020 02:49 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls -03/04/2020 02:49 PM 493 ms-vcpp-2012-redist_x64.sls -03/04/2020 02:49 PM 495 ms-vcpp-2012-redist_x86.sls -03/04/2020 02:49 PM 503 ms-vcpp-2013-redist_x64.sls -03/04/2020 02:49 PM 503 ms-vcpp-2013-redist_x86.sls -03/04/2020 02:49 PM 481 ms-vcpp-2015-build-tools.sls -03/04/2020 02:49 PM 1,407 ms-vcpp-2015-redist_x64.sls -03/04/2020 02:49 PM 1,407 ms-vcpp-2015-redist_x86.sls -03/04/2020 02:49 PM 1,166 ms-vcpp-2017-redist_x64.sls -03/04/2020 02:49 PM 539 ms-vcpp-2017-redist_x86.sls -03/04/2020 02:49 PM 585 mucommander.sls -03/04/2020 02:49 PM 638 mysql-essential.sls -03/04/2020 02:49 PM 632 mysql-installer-community.sls -03/04/2020 02:49 PM 639 mysql-workbench.sls -03/04/2020 02:49 PM 298 never10.sls -03/04/2020 02:49 PM 929 newrelic-infra.sls -03/04/2020 02:49 PM 526 nextcloud-client.sls -03/04/2020 02:49 PM 584 nmap.sls -03/04/2020 02:49 PM 709 node.js-lts.sls -03/04/2020 02:49 PM 733 node.js.sls -03/04/2020 02:49 PM 368 nomacs.sls -03/04/2020 02:49 PM 985 npp.sls -03/04/2020 02:49 PM 1,252 nsclient.sls -03/04/2020 02:49 PM 826 nsis.sls -03/04/2020 02:49 PM 902 ntp.sls -03/04/2020 02:49 PM 793 nunit-console.sls -03/04/2020 02:49 PM 363 nxlog.sls -03/04/2020 02:49 PM 1,081 octopus-tentacle.sls -03/04/2020 02:49 PM 678 openlp.sls -03/04/2020 02:49 PM 1,192 openoffice.sls -03/04/2020 02:49 PM 2,130 openvpn.sls -03/04/2020 02:49 PM 587 osquery.sls -03/04/2020 02:49 PM 878 ossec-agent.sls -03/04/2020 02:49 PM 590 owncloud.sls -03/04/2020 02:49 PM packetbeat -03/04/2020 02:49 PM 400 pandoc.sls -03/04/2020 02:49 PM 814 parallels-client-15.sls -03/04/2020 02:49 PM 1,709 pass4win.sls -03/04/2020 02:49 PM 378 passware-kit-agent.sls -03/04/2020 02:49 PM 416 passware-kit-forensic.sls -03/04/2020 02:49 PM 656 patchmypc-free.sls -03/04/2020 02:49 PM 638 pdf24creator.sls -03/04/2020 02:49 PM 567 pdfcreator.sls -03/04/2020 02:49 PM 611 peazip.sls -03/04/2020 02:49 PM 812 pgadmin4.sls -03/04/2020 02:49 PM 235 pgina.sls -03/04/2020 02:49 PM 617 pidgin.sls -03/04/2020 02:49 PM 1,898 postgresql.sls -03/04/2020 02:49 PM 997 powerbi-desktop.sls -03/04/2020 02:49 PM 864 powershell-core.sls -03/04/2020 02:49 PM 1,172 prometheus-wmi-exporter.sls -03/04/2020 02:49 PM 1,488 putty.sls -03/04/2020 02:49 PM pycharm-pro -03/04/2020 02:49 PM 567 python2_x64.sls -03/04/2020 02:49 PM 526 python2_x86.sls -03/04/2020 02:49 PM 1,540 python3_x64.sls -03/04/2020 02:49 PM 1,435 python3_x86.sls -03/04/2020 02:49 PM 449 qemu.sls -03/04/2020 02:49 PM 562 queueexplorerpro.sls -03/04/2020 02:49 PM 1,542 quicktime.sls -03/04/2020 02:49 PM 495 rabbitmq.sls -03/04/2020 02:49 PM 379 rakudo-star-no-jit_x86.sls -03/04/2020 02:49 PM 375 rakudo-star_x64.sls -03/04/2020 02:49 PM 888 rasclient.sls -03/04/2020 02:49 PM 444 rdcman.sls -03/04/2020 02:49 PM 609 rocketchat.sls -03/04/2020 02:49 PM 526 rubyinstaller_x64.sls -03/04/2020 02:49 PM 551 rubyinstaller_x86.sls -03/04/2020 02:49 PM 3,719 salt-minion-py2.sls -03/04/2020 02:49 PM 2,050 salt-minion-py3.sls -03/04/2020 02:49 PM 562 sandboxie.sls -03/04/2020 02:49 PM 581 scaleout.sls -03/04/2020 02:49 PM 476 secunia.psi.sls -03/04/2020 02:49 PM 1,190 sensu.sls -03/04/2020 02:49 PM 1,827 sharpdevelop.sls -03/04/2020 02:49 PM 539 skitch.sls -03/04/2020 02:49 PM 1,533 skype-msi.sls -03/04/2020 02:49 PM 708 skype.sls -03/04/2020 02:49 PM 1,244 slack-machine-msi.sls -03/04/2020 02:49 PM 1,023 slack-user-msi.sls -03/04/2020 02:49 PM 329 slack.sls -03/04/2020 02:49 PM 591 smartmontools.sls -03/04/2020 02:49 PM 556 snmptools.sls -03/04/2020 02:49 PM 653 soapui.sls -03/04/2020 02:49 PM 623 software-informer.sls -03/04/2020 02:49 PM 1,039 sourcetree.sls -03/04/2020 02:49 PM 591 spybot-anti-beacon.sls -03/04/2020 02:49 PM 765 spybot.sls -03/04/2020 02:49 PM 664 sscserv-free.sls -03/04/2020 02:49 PM stayawake -03/04/2020 02:49 PM 443 steam.sls -03/04/2020 02:49 PM 658 stellarium.sls -03/04/2020 02:49 PM 540 strawberryperl_x64.sls -03/04/2020 02:49 PM 531 strawberryperl_x86.sls -03/04/2020 02:49 PM 521 stunnel.sls -03/04/2020 02:49 PM 398 subinacl.sls -03/04/2020 02:49 PM 467 sumatrapdf.sls -03/04/2020 02:49 PM 769 svn.sls -03/04/2020 02:49 PM 534 teamviewer.sls -03/04/2020 02:49 PM 549 teamviewer_host.sls -03/04/2020 02:49 PM 749 teracopy.sls -03/04/2020 02:49 PM 491 texmaker.sls -03/04/2020 02:49 PM 709 texniccenter.sls -03/04/2020 02:49 PM 639 texstudio.sls -03/04/2020 02:49 PM 643 texworks.sls -03/04/2020 02:49 PM 937 thunderbird.sls -03/04/2020 02:49 PM 1,014 tightvnc.sls -03/04/2020 02:49 PM 623 todotxt.net.sls -03/04/2020 02:49 PM 551 todour.sls -03/04/2020 02:49 PM 630 tortoise-bzr.sls -03/04/2020 02:49 PM 983 tortoise-git.sls -03/04/2020 02:49 PM 1,367 tortoise-hg.sls -03/04/2020 02:49 PM 897 tortoise-svn.sls -03/04/2020 02:49 PM 503 truecrypt.sls -03/04/2020 02:49 PM 662 ultradefrag.sls -03/04/2020 02:49 PM 1,598 urlrewrite.sls -03/04/2020 02:49 PM 560 usbdlm.sls -03/04/2020 02:49 PM 1,361 vagrant.sls -03/04/2020 02:49 PM 479 vcforpython27.sls -03/04/2020 02:49 PM 820 vcxsrv.sls -03/04/2020 02:49 PM 434 verysleepy.sls -03/04/2020 02:49 PM 611 veyon.sls -03/04/2020 02:49 PM 2,570 virtualbox.sls -03/04/2020 02:49 PM 794 viscosity.sls -03/04/2020 02:49 PM 657 vivaldi.sls -03/04/2020 02:49 PM 739 vlc.sls -03/04/2020 02:49 PM 713 vs-community.sls -03/04/2020 02:49 PM 1,388 vscode.sls -03/04/2020 02:49 PM 325 vsee.sls -03/04/2020 02:49 PM 640 vs_remotetools_2017.sls -03/04/2020 02:49 PM 835 wamp-server-3.sls -03/04/2020 02:49 PM 585 wamp-stack.sls -03/04/2020 02:49 PM 775 webdeploy.sls -03/04/2020 02:49 PM 842 webplatforminstaller.sls -03/04/2020 02:49 PM 610 win-app-manager.sls -03/04/2020 02:49 PM 467 windirstat.sls -03/04/2020 02:49 PM 468 winhttpcertcfg.sls -03/04/2020 02:49 PM winlogbeat -03/04/2020 02:49 PM 618 winmerge.sls -03/04/2020 02:49 PM 737 winmtr.sls -03/04/2020 02:49 PM 288 winpcap.sls -03/04/2020 02:49 PM 825 winrar.sls -03/04/2020 02:49 PM 828 winscp.sls -03/04/2020 02:49 PM 1,136 wireshark.sls -03/04/2020 02:49 PM wmi_provider -03/04/2020 02:49 PM 539 wscc.sls -03/04/2020 02:49 PM 726 wufuc.sls -03/04/2020 02:49 PM 352 xampp.sls -03/04/2020 02:49 PM 649 xming.sls -03/04/2020 02:49 PM 621 yubikey-manager.sls -03/04/2020 02:49 PM 546 yubikey-personalization-tool.sls -03/04/2020 02:49 PM 1,119 zabbix-agent.sls -03/04/2020 02:49 PM zipinstaller -03/04/2020 02:49 PM 278 zoom.sls +03/06/2020 12:49 PM . +03/06/2020 12:49 PM .. +03/06/2020 12:49 PM 927 7zip.sls +03/06/2020 12:49 PM 723 activeperl_x64.sls +03/06/2020 12:49 PM 973 activeperl_x86.sls +03/06/2020 12:49 PM 798 adobeair.sls +03/06/2020 12:49 PM 956 adobereader-dc-classic.sls +03/06/2020 12:49 PM 851 adobereader-xi.sls +03/06/2020 12:49 PM 830 adobereader.sls +03/06/2020 12:49 PM 589 adobeshockwaveplayer.sls +03/06/2020 12:49 PM 775 adv-ip-scanner.sls +03/06/2020 12:49 PM 787 adv-port-scanner.sls +03/06/2020 12:49 PM 769 advancedlogging.sls +03/06/2020 12:49 PM 373 anydesk-msi.sls +03/06/2020 12:49 PM 597 anydesk.sls +03/06/2020 12:49 PM 803 applicationrequestrouting.sls +03/06/2020 12:49 PM 370 aspnet-mvc1.sls +03/06/2020 12:49 PM 439 atom.sls +03/06/2020 12:49 PM 655 audacity.sls +03/06/2020 12:49 PM auditbeat +03/06/2020 12:49 PM 1,768 autohotkey.sls +03/06/2020 12:49 PM 611 autoit.sls +03/06/2020 12:49 PM 670 autopsy.sls +03/06/2020 12:49 PM 659 awscli.sls +03/06/2020 12:49 PM 799 azuredatastudio.sls +03/06/2020 12:49 PM 422 bandizip.sls +03/06/2020 12:49 PM 563 belarc-advisor.sls +03/06/2020 12:49 PM 367 bginfo4x.sls +03/06/2020 12:49 PM 547 bitnami-nginxstack.sls +03/06/2020 12:49 PM 568 bitvise.sls +03/06/2020 12:49 PM 777 blender.sls +03/06/2020 12:49 PM 395 bootracer.sls +03/06/2020 12:49 PM 664 bulkrenameutility.sls +03/06/2020 12:49 PM 661 bulk_extractor.sls +03/06/2020 12:49 PM 476 ccleaner-slim.sls +03/06/2020 12:49 PM 445 ccleaner.sls +03/06/2020 12:49 PM 606 cdburnerxp.sls +03/06/2020 12:49 PM 594 cdroller.sls +03/06/2020 12:49 PM 658 check-mk-agent-msi.sls +03/06/2020 12:49 PM 451 check-mk-agent.sls +03/06/2020 12:49 PM chocolatey +03/06/2020 12:49 PM 394 chrome-rdp.sls +03/06/2020 12:49 PM 375 chrome.sls +03/06/2020 12:49 PM 1,296 clamav.sls +03/06/2020 12:49 PM 1,200 clamwin.sls +03/06/2020 12:49 PM 500 classicshell.sls +03/06/2020 12:49 PM 1,521 clink.sls +03/06/2020 12:49 PM 617 conemu.sls +03/06/2020 12:49 PM 687 cpu-z.sls +03/06/2020 12:49 PM 2,833 curl.sls +03/06/2020 12:49 PM 374 cyberduck-cli.sls +03/06/2020 12:49 PM 616 cyberduck-msi.sls +03/06/2020 12:49 PM 639 cyberduck.sls +03/06/2020 12:49 PM 751 defraggler.sls +03/06/2020 12:49 PM 2,637 dotnet.sls +03/06/2020 12:49 PM 643 dropbox.sls +03/06/2020 12:49 PM 683 duplicati.sls +03/06/2020 12:49 PM 712 dvdstyler.sls +03/06/2020 12:49 PM 737 echo-desktop.sls +03/06/2020 12:49 PM 1,327 eea.sls +03/06/2020 12:49 PM 423 emet.sls +03/06/2020 12:49 PM 625 emsisoft-anti-malware.sls +03/06/2020 12:49 PM 721 eraser.sls +03/06/2020 12:49 PM erlang +03/06/2020 12:49 PM 982 evernote.sls +03/06/2020 12:49 PM 531 fiddler.sls +03/06/2020 12:49 PM filebeat +03/06/2020 12:49 PM 660 filehippo-app-manager.sls +03/06/2020 12:49 PM 1,271 filezilla.sls +03/06/2020 12:49 PM 1,115 firefox-esr_x64.sls +03/06/2020 12:49 PM 1,396 firefox-esr_x86.sls +03/06/2020 12:49 PM 1,365 firefox_x64.sls +03/06/2020 12:49 PM 1,870 firefox_x86.sls +03/06/2020 12:49 PM functionbeat +03/06/2020 12:49 PM 552 gedit.sls +03/06/2020 12:49 PM 822 gimp.sls +03/06/2020 12:49 PM 953 git-extensions.sls +03/06/2020 12:49 PM 3,855 git.sls +03/06/2020 12:49 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 12:49 PM 563 gnucash.sls +03/06/2020 12:49 PM 2,152 golang.sls +03/06/2020 12:49 PM 320 goodsync.sls +03/06/2020 12:49 PM 601 gow.sls +03/06/2020 12:49 PM gpg4win +03/06/2020 12:49 PM 847 gpg4win-light.sls +03/06/2020 12:49 PM 621 gpg4win-vanilla.sls +03/06/2020 12:49 PM 544 graylog-collector-sidecar.sls +03/06/2020 12:49 PM 2,661 grepwin.sls +03/06/2020 12:49 PM 505 gvim.sls +03/06/2020 12:49 PM 622 handbrake.sls +03/06/2020 12:49 PM heartbeat +03/06/2020 12:49 PM 503 hipchat.sls +03/06/2020 12:49 PM 771 hostsfileeditor.sls +03/06/2020 12:49 PM 623 hwinfo.sls +03/06/2020 12:49 PM 339 ice.sls +03/06/2020 12:49 PM 493 icecast.sls +03/06/2020 12:49 PM 377 icloud.sls +03/06/2020 12:49 PM 2,197 iismediaservices.sls +03/06/2020 12:49 PM 358 influx-capacitor.sls +03/06/2020 12:49 PM 644 inkscape.sls +03/06/2020 12:49 PM 646 intellij-community.sls +03/06/2020 12:49 PM 618 intellij-ultimate.sls +03/06/2020 12:49 PM 360 internet-evidence-finder.sls +03/06/2020 12:49 PM 702 irfanview-plugins.sls +03/06/2020 12:49 PM 1,610 irfanview.sls +03/06/2020 12:49 PM 697 isapirewrite-lite.sls +03/06/2020 12:49 PM 2,602 itunes.sls +03/06/2020 12:49 PM 1,279 jdk8.sls +03/06/2020 12:49 PM 1,200 jre.sls +03/06/2020 12:49 PM 1,480 jre8.sls +03/06/2020 12:49 PM 995 jungledisk-server-management.sls +03/06/2020 12:49 PM 891 jungledisk-server.sls +03/06/2020 12:49 PM 921 jungledisk-workgroup.sls +03/06/2020 12:49 PM 518 kdiff3.sls +03/06/2020 12:49 PM 1,091 keepass-2x.sls +03/06/2020 12:49 PM 2,655 keepass.sls +03/06/2020 12:49 PM 673 lastpass.sls +03/06/2020 12:49 PM 1,329 lazarus.sls +03/06/2020 12:49 PM 951 libreoffice.sls +03/06/2020 12:49 PM 419 logparser.sls +03/06/2020 12:49 PM 2,627 maas360bootanalyzer.sls +03/06/2020 12:49 PM 722 malwarebytes.sls +03/06/2020 12:49 PM 1,884 mariadb.sls +03/06/2020 12:49 PM 653 mercurial.sls +03/06/2020 12:49 PM 649 messageanalyzer.sls +03/06/2020 12:49 PM metricbeat +03/06/2020 12:49 PM 603 microsoft-build-tools.sls +03/06/2020 12:49 PM 317 mikogo.sls +03/06/2020 12:49 PM 766 miktex-basic.sls +03/06/2020 12:49 PM 787 mongodb.sls +03/06/2020 12:49 PM 831 ms-mbsa.sls +03/06/2020 12:49 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 12:49 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 12:49 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 12:49 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 12:49 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 12:49 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 12:49 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 12:49 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 12:49 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 12:49 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 12:49 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 12:49 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 12:49 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 12:49 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 12:49 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 12:49 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 12:49 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 12:49 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 12:49 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 12:49 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 12:49 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 12:49 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 12:49 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 12:49 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 12:49 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 12:49 PM 585 mucommander.sls +03/06/2020 12:49 PM 638 mysql-essential.sls +03/06/2020 12:49 PM 632 mysql-installer-community.sls +03/06/2020 12:49 PM 639 mysql-workbench.sls +03/06/2020 12:49 PM 298 never10.sls +03/06/2020 12:49 PM 929 newrelic-infra.sls +03/06/2020 12:49 PM 526 nextcloud-client.sls +03/06/2020 12:49 PM 584 nmap.sls +03/06/2020 12:49 PM 709 node.js-lts.sls +03/06/2020 12:49 PM 733 node.js.sls +03/06/2020 12:49 PM 368 nomacs.sls +03/06/2020 12:49 PM 985 npp.sls +03/06/2020 12:49 PM 1,252 nsclient.sls +03/06/2020 12:49 PM 826 nsis.sls +03/06/2020 12:49 PM 902 ntp.sls +03/06/2020 12:49 PM 793 nunit-console.sls +03/06/2020 12:49 PM 363 nxlog.sls +03/06/2020 12:49 PM 1,081 octopus-tentacle.sls +03/06/2020 12:49 PM 678 openlp.sls +03/06/2020 12:49 PM 1,192 openoffice.sls +03/06/2020 12:49 PM 2,130 openvpn.sls +03/06/2020 12:49 PM 587 osquery.sls +03/06/2020 12:49 PM 878 ossec-agent.sls +03/06/2020 12:49 PM 590 owncloud.sls +03/06/2020 12:49 PM packetbeat +03/06/2020 12:49 PM 400 pandoc.sls +03/06/2020 12:49 PM 814 parallels-client-15.sls +03/06/2020 12:49 PM 1,709 pass4win.sls +03/06/2020 12:49 PM 378 passware-kit-agent.sls +03/06/2020 12:49 PM 416 passware-kit-forensic.sls +03/06/2020 12:49 PM 656 patchmypc-free.sls +03/06/2020 12:49 PM 638 pdf24creator.sls +03/06/2020 12:49 PM 567 pdfcreator.sls +03/06/2020 12:49 PM 611 peazip.sls +03/06/2020 12:49 PM 812 pgadmin4.sls +03/06/2020 12:49 PM 235 pgina.sls +03/06/2020 12:49 PM 617 pidgin.sls +03/06/2020 12:49 PM 1,898 postgresql.sls +03/06/2020 12:49 PM 997 powerbi-desktop.sls +03/06/2020 12:49 PM 864 powershell-core.sls +03/06/2020 12:49 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 12:49 PM 1,488 putty.sls +03/06/2020 12:49 PM pycharm-pro +03/06/2020 12:49 PM 567 python2_x64.sls +03/06/2020 12:49 PM 526 python2_x86.sls +03/06/2020 12:49 PM 1,540 python3_x64.sls +03/06/2020 12:49 PM 1,435 python3_x86.sls +03/06/2020 12:49 PM 449 qemu.sls +03/06/2020 12:49 PM 562 queueexplorerpro.sls +03/06/2020 12:49 PM 1,542 quicktime.sls +03/06/2020 12:49 PM 495 rabbitmq.sls +03/06/2020 12:49 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 12:49 PM 375 rakudo-star_x64.sls +03/06/2020 12:49 PM 888 rasclient.sls +03/06/2020 12:49 PM 444 rdcman.sls +03/06/2020 12:49 PM 609 rocketchat.sls +03/06/2020 12:49 PM 526 rubyinstaller_x64.sls +03/06/2020 12:49 PM 551 rubyinstaller_x86.sls +03/06/2020 12:49 PM 3,719 salt-minion-py2.sls +03/06/2020 12:49 PM 2,050 salt-minion-py3.sls +03/06/2020 12:49 PM 562 sandboxie.sls +03/06/2020 12:49 PM 581 scaleout.sls +03/06/2020 12:49 PM 476 secunia.psi.sls +03/06/2020 12:49 PM 1,190 sensu.sls +03/06/2020 12:49 PM 1,827 sharpdevelop.sls +03/06/2020 12:49 PM 539 skitch.sls +03/06/2020 12:49 PM 1,533 skype-msi.sls +03/06/2020 12:49 PM 708 skype.sls +03/06/2020 12:49 PM 1,244 slack-machine-msi.sls +03/06/2020 12:49 PM 1,023 slack-user-msi.sls +03/06/2020 12:49 PM 329 slack.sls +03/06/2020 12:49 PM 591 smartmontools.sls +03/06/2020 12:49 PM 556 snmptools.sls +03/06/2020 12:49 PM 653 soapui.sls +03/06/2020 12:49 PM 623 software-informer.sls +03/06/2020 12:49 PM 1,039 sourcetree.sls +03/06/2020 12:49 PM 591 spybot-anti-beacon.sls +03/06/2020 12:49 PM 765 spybot.sls +03/06/2020 12:49 PM 664 sscserv-free.sls +03/06/2020 12:49 PM stayawake +03/06/2020 12:49 PM 443 steam.sls +03/06/2020 12:49 PM 658 stellarium.sls +03/06/2020 12:49 PM 540 strawberryperl_x64.sls +03/06/2020 12:49 PM 531 strawberryperl_x86.sls +03/06/2020 12:49 PM 521 stunnel.sls +03/06/2020 12:49 PM 398 subinacl.sls +03/06/2020 12:49 PM 467 sumatrapdf.sls +03/06/2020 12:49 PM 769 svn.sls +03/06/2020 12:49 PM 534 teamviewer.sls +03/06/2020 12:49 PM 549 teamviewer_host.sls +03/06/2020 12:49 PM 749 teracopy.sls +03/06/2020 12:49 PM 491 texmaker.sls +03/06/2020 12:49 PM 709 texniccenter.sls +03/06/2020 12:49 PM 639 texstudio.sls +03/06/2020 12:49 PM 643 texworks.sls +03/06/2020 12:49 PM 937 thunderbird.sls +03/06/2020 12:49 PM 1,014 tightvnc.sls +03/06/2020 12:49 PM 623 todotxt.net.sls +03/06/2020 12:49 PM 551 todour.sls +03/06/2020 12:49 PM 630 tortoise-bzr.sls +03/06/2020 12:49 PM 983 tortoise-git.sls +03/06/2020 12:49 PM 1,367 tortoise-hg.sls +03/06/2020 12:49 PM 897 tortoise-svn.sls +03/06/2020 12:49 PM 503 truecrypt.sls +03/06/2020 12:49 PM 662 ultradefrag.sls +03/06/2020 12:49 PM 1,598 urlrewrite.sls +03/06/2020 12:49 PM 560 usbdlm.sls +03/06/2020 12:49 PM 1,361 vagrant.sls +03/06/2020 12:49 PM 479 vcforpython27.sls +03/06/2020 12:49 PM 820 vcxsrv.sls +03/06/2020 12:49 PM 434 verysleepy.sls +03/06/2020 12:49 PM 611 veyon.sls +03/06/2020 12:49 PM 2,570 virtualbox.sls +03/06/2020 12:49 PM 794 viscosity.sls +03/06/2020 12:49 PM 657 vivaldi.sls +03/06/2020 12:49 PM 739 vlc.sls +03/06/2020 12:49 PM 713 vs-community.sls +03/06/2020 12:49 PM 1,388 vscode.sls +03/06/2020 12:49 PM 325 vsee.sls +03/06/2020 12:49 PM 640 vs_remotetools_2017.sls +03/06/2020 12:49 PM 835 wamp-server-3.sls +03/06/2020 12:49 PM 585 wamp-stack.sls +03/06/2020 12:49 PM 775 webdeploy.sls +03/06/2020 12:49 PM 842 webplatforminstaller.sls +03/06/2020 12:49 PM 610 win-app-manager.sls +03/06/2020 12:49 PM 467 windirstat.sls +03/06/2020 12:49 PM 468 winhttpcertcfg.sls +03/06/2020 12:49 PM winlogbeat +03/06/2020 12:49 PM 618 winmerge.sls +03/06/2020 12:49 PM 737 winmtr.sls +03/06/2020 12:49 PM 288 winpcap.sls +03/06/2020 12:49 PM 825 winrar.sls +03/06/2020 12:49 PM 828 winscp.sls +03/06/2020 12:49 PM 1,136 wireshark.sls +03/06/2020 12:49 PM wmi_provider +03/06/2020 12:49 PM 539 wscc.sls +03/06/2020 12:49 PM 726 wufuc.sls +03/06/2020 12:49 PM 352 xampp.sls +03/06/2020 12:49 PM 649 xming.sls +03/06/2020 12:49 PM 621 yubikey-manager.sls +03/06/2020 12:49 PM 546 yubikey-personalization-tool.sls +03/06/2020 12:49 PM 1,119 zabbix-agent.sls +03/06/2020 12:49 PM zipinstaller +03/06/2020 12:49 PM 278 zoom.sls 284 File(s) 232,192 bytes - 16 Dir(s) 41,719,934,976 bytes free -2020-03-04 11:49:54,374 [salt.state :938 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:49:54,374 [salt.state :320 ][INFO ][6228] {'pkg.refresh_db': {'success': 298, 'total': 298, 'failed': 0}} -2020-03-04 11:49:54,374 [salt.state :1997][INFO ][6228] Completed state [pkg.refresh_db] at time 11:49:54.374907 (duration_in_ms=11062.381) -2020-03-04 11:49:54,390 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. -2020-03-04 11:49:54,390 [salt.state :1819][INFO ][6228] Running state [kdiff3] at time 11:49:54.390529 -2020-03-04 11:49:54,390 [salt.state :1852][INFO ][6228] Executing state pkg.installed for [kdiff3] -2020-03-04 11:49:54,409 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 11:49:54,409 [salt.loaded.int.module.win_pkg:802 ][INFO ][6228] Refresh skipped, age of winrepo metadata in seconds (0.06539034843444824) is less than winrepo_cache_expire_min (1800) -2020-03-04 11:49:54,409 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.065390) -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,531 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:49:54,550 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 11:49:54,561 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:49:54,561 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.217812) -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,578 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,592 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,593 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:49:54,593 [salt.utils.http :234 ][DEBUG ][6228] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method -2020-03-04 11:49:54,593 [salt.utils.http :235 ][DEBUG ][6228] Using backend: tornado -2020-03-04 11:50:15,117 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' -2020-03-04 11:50:16,187 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.843351) -2020-03-04 11:50:16,187 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,187 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,187 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,187 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,187 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,187 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,202 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,218 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 11:50:16,218 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.874590) -2020-03-04 11:50:16,218 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,218 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,218 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:16,233 [salt.state :320 ][INFO ][6228] Made the following changes: -'kdiff3' changed from 'absent' to 'Not Found' - -2020-03-04 11:50:16,233 [salt.state :1000][DEBUG ][6228] Refreshing modules... -2020-03-04 11:50:16,265 [salt.state :966 ][INFO ][6228] Loading fresh modules for state activity -2020-03-04 11:50:16,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:50:16,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:50:16,312 [salt.state :1997][INFO ][6228] Completed state [kdiff3] at time 11:50:16.312089 (duration_in_ms=21921.56) -2020-03-04 11:50:16,312 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded config.option -2020-03-04 11:50:16,327 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pkg.install -2020-03-04 11:50:16,327 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pkg.installed -2020-03-04 11:50:16,327 [salt.state :1819][INFO ][6228] Running state [git] at time 11:50:16.327669 -2020-03-04 11:50:16,327 [salt.state :1852][INFO ][6228] Executing state pkg.installed for [git] -2020-03-04 11:50:16,749 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt.secret_key, ret: _|- -2020-03-04 11:50:16,749 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt:secret_key, ret: _|- -2020-03-04 11:50:16,937 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet.api_key, ret: _|- -2020-03-04 11:50:16,937 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet:api_key, ret: _|- -2020-03-04 11:50:17,125 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded reg.read_value -2020-03-04 11:50:17,218 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops.api_key, ret: _|- -2020-03-04 11:50:17,218 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops:api_key, ret: _|- -2020-03-04 11:50:22,564 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded platform.is_windows -2020-03-04 11:50:22,574 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded path.which -2020-03-04 11:50:22,610 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 11:50:22,610 [salt.loaded.int.module.win_pkg:802 ][INFO ][6228] Refresh skipped, age of winrepo metadata in seconds (28.266035079956055) is less than winrepo_cache_expire_min (1800) -2020-03-04 11:50:22,610 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.266035) -2020-03-04 11:50:22,624 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,624 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,624 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,624 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,624 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,624 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,624 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,640 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,640 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,640 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,640 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,640 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,640 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,640 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,656 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:50:22,671 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 11:50:22,687 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:50:22,687 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.343186) -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,702 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,718 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,718 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,718 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,718 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,718 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:22,718 [salt.utils.http :234 ][DEBUG ][6228] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method -2020-03-04 11:50:22,718 [salt.utils.http :235 ][DEBUG ][6228] Using backend: tornado -2020-03-04 11:50:26,844 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' -2020-03-04 11:50:45,250 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:50.905926) -2020-03-04 11:50:45,266 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,266 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,266 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,266 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,266 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,266 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,266 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,280 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,296 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 11:50:45,296 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:00:50.952801) -2020-03-04 11:50:45,312 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,312 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,312 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,312 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,312 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,312 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,312 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:45,343 [salt.state :320 ][INFO ][6228] Made the following changes: -'git' changed from 'absent' to '2.23.0.windows.1' + 16 Dir(s) 41,695,162,368 bytes free +2020-03-06 09:49:54,907 [salt.state :986 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:49:54,907 [salt.state :320 ][INFO ][6660] {'pkg.refresh_db': {'total': 298, 'failed': 0, 'success': 298}} +2020-03-06 09:49:54,907 [salt.state :2045][INFO ][6660] Completed state [pkg.refresh_db] at time 09:49:54.907060 (duration_in_ms=15468.808) +2020-03-06 09:49:54,922 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 09:49:54,942 [salt.state :1867][INFO ][6660] Running state [7zip] at time 09:49:54.942496 +2020-03-06 09:49:54,942 [salt.state :1900][INFO ][6660] Executing state pkg.installed for [7zip] +2020-03-06 09:49:54,969 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 09:49:54,969 [salt.loaded.int.module.win_pkg:806 ][INFO ][6660] Refresh skipped, age of winrepo metadata in seconds (0.1395890712738037) is less than winrepo_cache_expire_min (1800) +2020-03-06 09:49:54,969 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.139589) +2020-03-06 09:49:55,126 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:49:55,141 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 09:49:55,172 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:49:55,172 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.342587) +2020-03-06 09:49:55,188 [salt.utils.http :234 ][DEBUG ][6660] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 09:49:55,188 [salt.utils.http :235 ][DEBUG ][6660] Using backend: tornado +2020-03-06 09:49:56,266 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 09:49:57,173 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:02.342993) +2020-03-06 09:49:57,220 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 09:49:57,220 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:02.390319) +2020-03-06 09:49:57,270 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 09:49:57,298 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 09:49:57,298 [salt.state :320 ][INFO ][6660] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' -2020-03-04 11:50:45,343 [salt.state :1000][DEBUG ][6228] Refreshing modules... -2020-03-04 11:50:45,405 [salt.state :966 ][INFO ][6228] Loading fresh modules for state activity -2020-03-04 11:50:45,483 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:50:45,483 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:50:45,483 [salt.state :1997][INFO ][6228] Completed state [git] at time 11:50:45.483896 (duration_in_ms=29156.227) -2020-03-04 11:50:45,500 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded config.option -2020-03-04 11:50:45,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pkg.install -2020-03-04 11:50:45,531 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pkg.installed -2020-03-04 11:50:45,531 [salt.state :1819][INFO ][6228] Running state [7zip] at time 11:50:45.531147 -2020-03-04 11:50:45,531 [salt.state :1852][INFO ][6228] Executing state pkg.installed for [7zip] -2020-03-04 11:50:46,345 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt.secret_key, ret: _|- -2020-03-04 11:50:46,345 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt:secret_key, ret: _|- -2020-03-04 11:50:46,720 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet.api_key, ret: _|- -2020-03-04 11:50:46,734 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet:api_key, ret: _|- -2020-03-04 11:50:47,047 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded reg.read_value -2020-03-04 11:50:47,234 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops.api_key, ret: _|- -2020-03-04 11:50:47,234 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops:api_key, ret: _|- -2020-03-04 11:50:54,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded platform.is_windows -2020-03-04 11:50:54,390 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded path.which -2020-03-04 11:50:54,437 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 11:50:54,437 [salt.loaded.int.module.win_pkg:802 ][INFO ][6228] Refresh skipped, age of winrepo metadata in seconds (60.093191385269165) is less than winrepo_cache_expire_min (1800) -2020-03-04 11:50:54,437 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:01:00.093191) -2020-03-04 11:50:54,437 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,437 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,437 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,452 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,453 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,469 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:50:54,484 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 11:50:54,499 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 11:50:54,499 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:01:00.155713) -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,515 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:54,531 [salt.utils.http :234 ][DEBUG ][6228] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method -2020-03-04 11:50:54,531 [salt.utils.http :235 ][DEBUG ][6228] Using backend: tornado -2020-03-04 11:50:56,704 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' -2020-03-04 11:50:57,251 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:01:02.907314) -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,267 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,282 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,298 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 11:50:57,298 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][6228] Using existing pkg metadata db for saltenv 'base' (age is 0:01:02.954048) -2020-03-04 11:50:57,298 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,298 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products +2020-03-06 09:49:57,298 [salt.state :1048][DEBUG ][6660] Refreshing modules... +2020-03-06 09:49:57,375 [salt.state :1014][INFO ][6660] Loading fresh modules for state activity +2020-03-06 09:49:57,500 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:49:57,500 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:49:57,500 [salt.state :2045][INFO ][6660] Completed state [7zip] at time 09:49:57.500786 (duration_in_ms=2558.29) +2020-03-06 09:49:57,500 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded config.option +2020-03-06 09:49:57,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded pkg.install +2020-03-06 09:49:57,610 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded pkg.installed +2020-03-06 09:49:57,610 [salt.state :1867][INFO ][6660] Running state [kdiff3] at time 09:49:57.610325 +2020-03-06 09:49:57,610 [salt.state :1900][INFO ][6660] Executing state pkg.installed for [kdiff3] +2020-03-06 09:50:00,282 [salt.config :2215][DEBUG ][6660] Missing configuration file: /etc/salt/minion +2020-03-06 09:50:00,282 [salt.config :3612][DEBUG ][6660] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 09:50:00,625 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:50:00,625 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:50:01,377 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 09:50:01,377 [salt.loader :1671][DEBUG ][6660] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 09:50:02,940 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: ifttt.secret_key, ret: _|- +2020-03-06 09:50:02,940 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: ifttt:secret_key, ret: _|- +2020-03-06 09:50:04,797 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: pushbullet.api_key, ret: _|- +2020-03-06 09:50:04,797 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: pushbullet:api_key, ret: _|- +2020-03-06 09:50:05,579 [salt.loader :1671][DEBUG ][6660] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 09:50:06,110 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: victorops.api_key, ret: _|- +2020-03-06 09:50:06,125 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: victorops:api_key, ret: _|- +2020-03-06 09:50:22,096 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 09:50:22,096 [salt.loaded.int.module.win_pkg:806 ][INFO ][6660] Refresh skipped, age of winrepo metadata in seconds (27.26618003845215) is less than winrepo_cache_expire_min (1800) +2020-03-06 09:50:22,096 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.266180) +2020-03-06 09:50:22,141 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:50:22,219 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 09:50:22,314 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:50:22,314 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:27.484077) +2020-03-06 09:50:22,345 [salt.utils.http :234 ][DEBUG ][6660] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 09:50:22,345 [salt.utils.http :235 ][DEBUG ][6660] Using backend: tornado +2020-03-06 09:50:42,735 [salt.state :1987][DEBUG ][6660] An exception occurred in this state: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,315 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-21-3146213294-359523494-1469267059-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,328 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][6228] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 11:50:57,328 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. -2020-03-04 11:50:57,343 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. -2020-03-04 11:50:57,343 [salt.state :320 ][INFO ][6228] Made the following changes: -'7zip' changed from 'absent' to '18.06.00.0' + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe +2020-03-06 09:50:42,735 [salt.state :322 ][ERROR ][6660] An exception occurred in this state: Traceback (most recent call last): + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\state.py", line 1981, in call + **cdata['kwargs']) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1977, in wrapper + return f(*args, **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\states\pkg.py", line 1769, in installed + **kwargs) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\win_pkg.py", line 1563, in install + cached_pkg = __salt__['cp.cache_file'](installer, saltenv) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\cp.py", line 517, in cache_file + result = _client().cache_file(path, saltenv, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 193, in cache_file + path, '', True, saltenv, cachedir=cachedir, source_hash=source_hash) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\fileclient.py", line 700, in get_url + raise MinionError('Error: {0} reading {1}'.format(query['error'], url)) +salt.exceptions.MinionError: Error: HTTP 599: Timeout while connecting reading https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe + +2020-03-06 09:50:42,735 [salt.state :2045][INFO ][6660] Completed state [kdiff3] at time 09:50:42.735589 (duration_in_ms=45125.264) +2020-03-06 09:50:42,751 [salt.state :1867][INFO ][6660] Running state [git] at time 09:50:42.751420 +2020-03-06 09:50:42,751 [salt.state :1900][INFO ][6660] Executing state pkg.installed for [git] +2020-03-06 09:50:42,797 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 09:50:42,797 [salt.loaded.int.module.win_pkg:806 ][INFO ][6660] Refresh skipped, age of winrepo metadata in seconds (47.96728754043579) is less than winrepo_cache_expire_min (1800) +2020-03-06 09:50:42,813 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:47.967288) +2020-03-06 09:50:42,860 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:50:42,891 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 09:50:42,938 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 09:50:42,938 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:00:48.108576) +2020-03-06 09:50:42,969 [salt.utils.http :234 ][DEBUG ][6660] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 09:50:42,970 [salt.utils.http :235 ][DEBUG ][6660] Using backend: tornado +2020-03-06 09:50:48,376 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 09:51:23,016 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:01:28.186354) +2020-03-06 09:51:23,079 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 09:51:23,079 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][6660] Using existing pkg metadata db for saltenv 'base' (age is 0:01:28.249192) +2020-03-06 09:51:23,095 [salt.state :320 ][INFO ][6660] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' -2020-03-04 11:50:57,343 [salt.state :1000][DEBUG ][6228] Refreshing modules... -2020-03-04 11:50:57,384 [salt.state :966 ][INFO ][6228] Loading fresh modules for state activity -2020-03-04 11:50:57,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded jinja.render -2020-03-04 11:50:57,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded yaml.render -2020-03-04 11:50:57,437 [salt.state :1997][INFO ][6228] Completed state [7zip] at time 11:50:57.437808 (duration_in_ms=11906.661) -2020-03-04 11:50:57,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded config.option -2020-03-04 11:50:57,452 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded module.run -2020-03-04 11:50:57,452 [salt.state :1819][INFO ][6228] Running state [windows_environment.refresh.path] at time 11:50:57.452939 -2020-03-04 11:50:57,452 [salt.state :1852][INFO ][6228] Executing state module.run for [windows_environment.refresh.path] -2020-03-04 11:50:57,452 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded windows_environment.refresh -2020-03-04 11:50:57,452 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cmd.run -2020-03-04 11:50:57,452 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' -2020-03-04 11:50:57,468 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: +2020-03-06 09:51:23,095 [salt.state :1048][DEBUG ][6660] Refreshing modules... +2020-03-06 09:51:23,205 [salt.state :1014][INFO ][6660] Loading fresh modules for state activity +2020-03-06 09:51:23,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded jinja.render +2020-03-06 09:51:23,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded yaml.render +2020-03-06 09:51:23,344 [salt.state :2045][INFO ][6660] Completed state [git] at time 09:51:23.344477 (duration_in_ms=40593.057) +2020-03-06 09:51:23,344 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded config.option +2020-03-06 09:51:23,361 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded module.run +2020-03-06 09:51:23,361 [salt.state :1867][INFO ][6660] Running state [windows_environment.refresh.path] at time 09:51:23.361365 +2020-03-06 09:51:23,361 [salt.state :1900][INFO ][6660] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 09:51:23,361 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded windows_environment.refresh +2020-03-06 09:51:23,379 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cmd.run +2020-03-06 09:51:23,379 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 09:51:23,406 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27952,7 +27029,7 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 11:50:57,468 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6228] output: +2020-03-06 09:51:23,406 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6660] output: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27969,313 +27046,326 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 11:50:57,468 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded environ.get -2020-03-04 11:50:57,468 [py.warnings :919 ][WARNING ][6228] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +2020-03-06 09:51:23,422 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded environ.get +2020-03-06 09:51:23,422 [py.warnings :919 ][WARNING ][6660] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) -2020-03-04 11:50:57,484 [py.warnings :919 ][WARNING ][6228] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +2020-03-06 09:51:23,422 [py.warnings :919 ][WARNING ][6660] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) -2020-03-04 11:50:57,484 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded event.fire -2020-03-04 11:50:57,484 [salt.utils.event :322 ][DEBUG ][6228] SaltEvent PUB socket URI: 4510 -2020-03-04 11:50:57,484 [salt.utils.event :323 ][DEBUG ][6228] SaltEvent PULL socket URI: 4511 -2020-03-04 11:50:57,484 [salt.utils.event :737 ][DEBUG ][6228] Sending event: tag = environ_setenv; data = {'_stamp': '2020-03-04T19:50:57.484429', 'permanent': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'false_unsets': False, 'clear_all': False} -2020-03-04 11:50:57,484 [salt.transport.ipc:364 ][DEBUG ][6228] Closing IPCMessageClient instance -2020-03-04 11:50:57,484 [salt.state :320 ][INFO ][6228] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 11:50:57,484 [salt.state :1997][INFO ][6228] Completed state [windows_environment.refresh.path] at time 11:50:57.484429 (duration_in_ms=31.49) -2020-03-04 11:50:57,484 [salt.state :1819][INFO ][6228] Running state [chocolatey.bootstrap] at time 11:50:57.484429 -2020-03-04 11:50:57,484 [salt.state :1852][INFO ][6228] Executing state module.run for [chocolatey.bootstrap] -2020-03-04 11:50:58,030 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt.secret_key, ret: _|- -2020-03-04 11:50:58,030 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: ifttt:secret_key, ret: _|- -2020-03-04 11:50:58,327 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet.api_key, ret: _|- -2020-03-04 11:50:58,327 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: pushbullet:api_key, ret: _|- -2020-03-04 11:50:58,608 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded reg.read_value -2020-03-04 11:50:58,765 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops.api_key, ret: _|- -2020-03-04 11:50:58,765 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: victorops:api_key, ret: _|- -2020-03-04 11:51:04,855 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded platform.is_windows -2020-03-04 11:51:04,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded path.which -2020-03-04 11:51:04,890 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 11:51:04,938 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded apache.config -2020-03-04 11:51:04,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded apache.a2enconf -2020-03-04 11:51:04,952 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded apache.a2ensite -2020-03-04 11:51:04,968 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 11:51:04,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 11:51:04,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 11:51:04,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 11:51:04,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 11:51:04,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 11:51:04,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto3_sns.topic_exists -2020-03-04 11:51:04,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_apigateway.describe_apis -2020-03-04 11:51:04,983 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_asg.exists -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cfn.exists -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudtrail.exists -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 11:51:04,999 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_dynamodb.exists -2020-03-04 11:51:05,016 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_ec2.get_key -2020-03-04 11:51:05,016 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elasticache.exists -2020-03-04 11:51:05,016 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 11:51:05,016 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elb.exists -2020-03-04 11:51:05,016 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 11:51:05,016 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_iam.get_user -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_iam.role_exists -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_iot.policy_exists -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_kinesis.exists -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_kms.describe_key -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_lambda.function_exists -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_asg.exists -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_rds.exists -2020-03-04 11:51:05,030 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_route53.get_record -2020-03-04 11:51:05,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_s3.get_object_metadata -2020-03-04 11:51:05,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_s3_bucket.exists -2020-03-04 11:51:05,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_secgroup.exists -2020-03-04 11:51:05,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_sns.exists -2020-03-04 11:51:05,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_sqs.exists -2020-03-04 11:51:05,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded boto_vpc.exists -2020-03-04 11:51:05,046 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded bower.list -2020-03-04 11:51:05,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded chef.client -2020-03-04 11:51:05,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cimc.get_system_info -2020-03-04 11:51:05,062 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded cisconso.set_data_value -2020-03-04 11:51:05,078 [salt.loader :1577][DEBUG ][6228] Failed to import states cloud: +2020-03-06 09:51:23,422 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded event.fire +2020-03-06 09:51:23,422 [salt.utils.event :310 ][DEBUG ][6660] SaltEvent PUB socket URI: 4510 +2020-03-06 09:51:23,437 [salt.utils.event :311 ][DEBUG ][6660] SaltEvent PULL socket URI: 4511 +2020-03-06 09:51:23,438 [salt.utils.event :736 ][DEBUG ][6660] Sending event: tag = environ_setenv; data = {'permanent': False, 'clear_all': False, '_stamp': '2020-03-06T17:51:23.438216', 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, 'false_unsets': False} +2020-03-06 09:51:23,438 [salt.transport.ipc:363 ][DEBUG ][6660] Closing IPCMessageClient instance +2020-03-06 09:51:23,438 [salt.state :320 ][INFO ][6660] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 09:51:23,438 [salt.state :2045][INFO ][6660] Completed state [windows_environment.refresh.path] at time 09:51:23.438216 (duration_in_ms=76.851) +2020-03-06 09:51:23,438 [salt.state :1867][INFO ][6660] Running state [chocolatey.bootstrap] at time 09:51:23.438216 +2020-03-06 09:51:23,438 [salt.state :1900][INFO ][6660] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 09:51:26,502 [salt.config :2215][DEBUG ][6660] Missing configuration file: /etc/salt/minion +2020-03-06 09:51:26,517 [salt.config :3612][DEBUG ][6660] Using cached minion ID from c:\salt\conf\minion_id: vagrant-10 +2020-03-06 09:51:26,830 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:51:26,954 [git.cmd :722 ][DEBUG ][6660] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 09:51:27,735 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 09:51:27,735 [salt.loader :1671][DEBUG ][6660] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 11:51:05,078 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded ddns.update -2020-03-04 11:51:05,078 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded chassis.cmd -2020-03-04 11:51:05,093 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:51:05,108 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:51:05,124 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:51:05,140 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 11:51:05,359 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded esxi.cmd -2020-03-04 11:51:05,374 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:05,421 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: git version 2.23.0.windows.1 -2020-03-04 11:51:05,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded github.list_users -2020-03-04 11:51:05,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded glanceng.image_get -2020-03-04 11:51:05,437 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded elasticsearch.exists -2020-03-04 11:51:05,452 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: grafana_version, ret: _|- -2020-03-04 11:51:05,452 [salt.loaded.int.module.config:398 ][DEBUG ][6228] key: grafana_version, ret: _|- -2020-03-04 11:51:05,452 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded icinga2.generate_ticket -2020-03-04 11:51:05,452 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded ifttt.trigger_event -2020-03-04 11:51:05,468 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:51:05,484 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 11:51:05,499 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:51:05,531 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:51:05,546 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:51:05,562 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 11:51:05,577 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 11:51:05,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.domain_get -2020-03-04 11:51:05,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.endpoint_get -2020-03-04 11:51:05,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.group_get -2020-03-04 11:51:05,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.project_get -2020-03-04 11:51:05,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.role_get -2020-03-04 11:51:05,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.role_grant -2020-03-04 11:51:05,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.service_get -2020-03-04 11:51:05,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded keystoneng.user_get -2020-03-04 11:51:05,609 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 11:51:05,639 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 11:51:05,640 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 11:51:05,671 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 11:51:05,687 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:51:05,702 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 11:51:05,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:51:05,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:51:05,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:51:05,702 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded lxd.version -2020-03-04 11:51:05,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded memcached.status -2020-03-04 11:51:05,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mongodb.db_exists -2020-03-04 11:51:05,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mongodb.user_exists -2020-03-04 11:51:05,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:51:05,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:51:05,718 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:51:05,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded mssql.version -2020-03-04 11:51:05,734 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_networks -2020-03-04 11:51:05,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_subnets -2020-03-04 11:51:05,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_subnets -2020-03-04 11:51:05,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded neutronng.list_subnets -2020-03-04 11:51:05,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded npm.list -2020-03-04 11:51:05,749 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nxos.cmd -2020-03-04 11:51:05,765 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 11:51:05,796 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 11:51:05,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded panos.commit -2020-03-04 11:51:05,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pdbedit.create -2020-03-04 11:51:05,812 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded pecl.list -2020-03-04 11:51:05,827 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 11:51:05,827 [salt.loader :1577][DEBUG ][6228] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 09:51:29,141 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: ifttt.secret_key, ret: _|- +2020-03-06 09:51:29,141 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: ifttt:secret_key, ret: _|- +2020-03-06 09:51:31,141 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: pushbullet.api_key, ret: _|- +2020-03-06 09:51:31,141 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: pushbullet:api_key, ret: _|- +2020-03-06 09:51:32,000 [salt.loader :1671][DEBUG ][6660] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.cluster_exists -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.user_exists -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.create_extension -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.group_create -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.datadir_init -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.language_create -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.privileges_grant -2020-03-04 11:51:05,843 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.schema_exists -2020-03-04 11:51:05,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.tablespace_exists -2020-03-04 11:51:05,859 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded postgres.user_exists -2020-03-04 11:51:05,890 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 11:51:05,890 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded selinux.getenforce -2020-03-04 11:51:05,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded splunk.list_users -2020-03-04 11:51:05,906 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded splunk_search.get -2020-03-04 11:51:05,921 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 11:51:05,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded tomcat.status -2020-03-04 11:51:05,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded vagrant.version -2020-03-04 11:51:05,937 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded victorops.create_event -2020-03-04 11:51:05,953 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded win_iis.create_site -2020-03-04 11:51:05,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded win_servermanager.install -2020-03-04 11:51:05,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded win_snmp.get_agent_settings -2020-03-04 11:51:05,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded wordpress.show_plugin -2020-03-04 11:51:05,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded x509.get_pem_entry -2020-03-04 11:51:05,968 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded xmpp.send_msg -2020-03-04 11:51:05,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded zk_concurrency.lock -2020-03-04 11:51:05,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded zonecfg.create -2020-03-04 11:51:05,984 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded zookeeper.create -2020-03-04 11:51:06,000 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 11:51:06,000 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' -2020-03-04 11:51:06,205 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: INFO: Could not find files for the given pattern(s). -2020-03-04 11:51:06,205 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][6228] retcode: 1 -2020-03-04 11:51:06,205 [salt.state :915 ][DEBUG ][6228] Last command return code: 1 -2020-03-04 11:51:06,219 [salt.utils.http :234 ][DEBUG ][6228] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method -2020-03-04 11:51:06,219 [salt.utils.http :235 ][DEBUG ][6228] Using backend: tornado -2020-03-04 11:51:06,625 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:14,187 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\header.bmp... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\SplashScreen.bmp... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\watermark.bmp... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\DisplayIcon.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Print.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate1.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate2.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate3.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate4.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate5.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate6.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate7.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Rotate8.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Save.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\Setup.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\stop.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\SysReqMet.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\SysReqNotMet.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Graphics\warn.ico... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1033\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1042\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1041\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1037\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1025\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1035\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1030\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1044\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1043\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1040\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1029\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1031\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1036\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1032\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1038\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\2052\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1028\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\3076\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1055\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1053\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\3082\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\2070\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1046\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1049\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1045\LocalizedData.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Client\Parameterinfo.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Extended\Parameterinfo.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\ParameterInfo.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Strings.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\UiInfo.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Client\UiInfo.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Extended\UiInfo.xml... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\SetupUi.xsd... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\DHtmlHeader.html... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1033\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1025\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1028\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1030\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1031\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1029\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1036\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1035\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1032\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1038\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1037\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1040\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1041\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1042\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1044\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1043\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1046\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1045\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1055\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1053\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\2052\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1049\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\3082\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\2070\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\3076\eula.rtf... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\Setup.exe... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\SetupUtility.exe... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\SetupEngine.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1025\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1033\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1029\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1030\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1035\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1031\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1036\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1032\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1028\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\2052\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\3076\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1042\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1041\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1037\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1044\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1053\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1055\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1040\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1045\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1046\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1049\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1038\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\2070\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\3082\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\1043\SetupResources.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\SetupUi.dll... -Preparing: C:\3792dc1964ce1698f238b9a1b0b9d79e\sqmapi.dll... -2020-03-04 11:51:14,187 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' -2020-03-04 11:51:23,374 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: Getting latest version of the Chocolatey package for download. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 09:51:32,548 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: victorops.api_key, ret: _|- +2020-03-06 09:51:32,548 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: victorops:api_key, ret: _|- +2020-03-06 09:51:47,703 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 09:51:47,703 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded acme.cert +2020-03-06 09:51:47,703 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded alternatives.auto +2020-03-06 09:51:47,867 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded apache.config +2020-03-06 09:51:47,867 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded apache.a2enconf +2020-03-06 09:51:47,878 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded apache.a2ensite +2020-03-06 09:51:47,910 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 09:51:47,910 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded at.at +2020-03-06 09:51:47,945 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 09:51:47,945 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 09:51:47,956 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 09:51:47,956 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 09:51:47,956 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 09:51:47,956 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded disk.tune +2020-03-06 09:51:47,971 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 09:51:47,971 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 09:51:47,971 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 09:51:47,971 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto3_sns.topic_exists +2020-03-06 09:51:47,971 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_apigateway.describe_apis +2020-03-06 09:51:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_asg.exists +2020-03-06 09:51:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cfn.exists +2020-03-06 09:51:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 09:51:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudtrail.exists +2020-03-06 09:51:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 09:51:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 09:51:47,985 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 09:51:48,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 09:51:48,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_dynamodb.exists +2020-03-06 09:51:48,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_ec2.get_key +2020-03-06 09:51:48,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elasticache.exists +2020-03-06 09:51:48,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 09:51:48,000 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elb.exists +2020-03-06 09:51:48,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 09:51:48,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_iam.get_user +2020-03-06 09:51:48,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_iam.role_exists +2020-03-06 09:51:48,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_iot.policy_exists +2020-03-06 09:51:48,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_kinesis.exists +2020-03-06 09:51:48,016 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_kms.describe_key +2020-03-06 09:51:48,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_lambda.function_exists +2020-03-06 09:51:48,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_asg.exists +2020-03-06 09:51:48,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_rds.exists +2020-03-06 09:51:48,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_route53.get_record +2020-03-06 09:51:48,032 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_s3.get_object_metadata +2020-03-06 09:51:48,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_s3_bucket.exists +2020-03-06 09:51:48,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_secgroup.exists +2020-03-06 09:51:48,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_sns.exists +2020-03-06 09:51:48,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_sqs.exists +2020-03-06 09:51:48,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded boto_vpc.exists +2020-03-06 09:51:48,047 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded bower.list +2020-03-06 09:51:48,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded chef.client +2020-03-06 09:51:48,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cimc.get_system_info +2020-03-06 09:51:48,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cisconso.set_data_value +2020-03-06 09:51:48,096 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded cron.list_tab +2020-03-06 09:51:48,096 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded ddns.update +2020-03-06 09:51:48,111 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded chassis.cmd +2020-03-06 09:51:48,158 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:51:48,203 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:51:48,235 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:51:48,266 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 09:51:48,281 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded eselect.exec_action +2020-03-06 09:51:48,719 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded esxi.cmd +2020-03-06 09:51:48,751 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 09:51:48,798 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: git version 2.23.0.windows.1 +2020-03-06 09:51:48,798 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded github.list_users +2020-03-06 09:51:48,813 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded glanceng.image_get +2020-03-06 09:51:48,813 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded glusterfs.list_volumes +2020-03-06 09:51:48,829 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded elasticsearch.exists +2020-03-06 09:51:48,844 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: grafana_version, ret: _|- +2020-03-06 09:51:48,844 [salt.loaded.int.module.config:483 ][DEBUG ][6660] key: grafana_version, ret: _|- +2020-03-06 09:51:48,861 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded icinga2.generate_ticket +2020-03-06 09:51:48,876 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded ifttt.trigger_event +2020-03-06 09:51:48,922 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:51:48,969 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 09:51:49,001 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:51:49,032 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:51:49,063 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:51:49,095 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 09:51:49,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded ipset.version +2020-03-06 09:51:49,110 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded iptables.version +2020-03-06 09:51:49,125 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded kapacitor.version +2020-03-06 09:51:49,156 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 09:51:49,156 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keyboard.get_sys +2020-03-06 09:51:49,156 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystone.auth +2020-03-06 09:51:49,156 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.domain_get +2020-03-06 09:51:49,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.endpoint_get +2020-03-06 09:51:49,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.group_get +2020-03-06 09:51:49,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.project_get +2020-03-06 09:51:49,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.role_get +2020-03-06 09:51:49,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.role_grant +2020-03-06 09:51:49,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.service_get +2020-03-06 09:51:49,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystoneng.user_get +2020-03-06 09:51:49,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded keystore.list +2020-03-06 09:51:49,188 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded kmod.available +2020-03-06 09:51:49,219 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 09:51:49,235 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded layman.add +2020-03-06 09:51:49,282 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 09:51:49,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded logadm.list_conf +2020-03-06 09:51:49,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded logrotate.show_conf +2020-03-06 09:51:49,297 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lvs.get_rules +2020-03-06 09:51:49,313 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lvs.get_rules +2020-03-06 09:51:49,313 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:51:49,313 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:51:49,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:51:49,329 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded lxd.version +2020-03-06 09:51:49,349 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded makeconf.get_var +2020-03-06 09:51:49,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded memcached.status +2020-03-06 09:51:49,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded mongodb.db_exists +2020-03-06 09:51:49,360 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded mongodb.user_exists +2020-03-06 09:51:49,375 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded monit.summary +2020-03-06 09:51:49,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_networks +2020-03-06 09:51:49,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_subnets +2020-03-06 09:51:49,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_subnets +2020-03-06 09:51:49,438 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded neutronng.list_subnets +2020-03-06 09:51:49,453 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nftables.version +2020-03-06 09:51:49,453 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded npm.list +2020-03-06 09:51:49,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nxos.cmd +2020-03-06 09:51:49,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded openvswitch.bridge_create +2020-03-06 09:51:49,469 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded openvswitch.port_add +2020-03-06 09:51:49,485 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded panos.commit +2020-03-06 09:51:49,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded pdbedit.create +2020-03-06 09:51:49,501 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded pecl.list +2020-03-06 09:51:49,548 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 09:51:49,548 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded portage_config.get_missing_flags +2020-03-06 09:51:49,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.cluster_exists +2020-03-06 09:51:49,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.user_exists +2020-03-06 09:51:49,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.create_extension +2020-03-06 09:51:49,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.group_create +2020-03-06 09:51:49,563 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.datadir_init +2020-03-06 09:51:49,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.language_create +2020-03-06 09:51:49,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.privileges_grant +2020-03-06 09:51:49,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.schema_exists +2020-03-06 09:51:49,578 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.tablespace_exists +2020-03-06 09:51:49,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded postgres.user_exists +2020-03-06 09:51:49,594 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded quota.report +2020-03-06 09:51:49,625 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded rabbitmq.list_upstreams +2020-03-06 09:51:49,706 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 09:51:49,766 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 09:51:49,814 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded selinux.getenforce +2020-03-06 09:51:49,907 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 09:51:49,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded snapper.diff +2020-03-06 09:51:49,907 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded splunk.list_users +2020-03-06 09:51:49,924 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded splunk_search.get +2020-03-06 09:51:50,033 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 09:51:50,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded tomcat.status +2020-03-06 09:51:50,079 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded trafficserver.set_config +2020-03-06 09:51:50,095 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded vagrant.version +2020-03-06 09:51:50,095 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded victorops.create_event +2020-03-06 09:51:50,111 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded virt.node_info +2020-03-06 09:51:50,142 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded win_iis.create_site +2020-03-06 09:51:50,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded win_servermanager.install +2020-03-06 09:51:50,157 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded win_snmp.get_agent_settings +2020-03-06 09:51:50,173 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded wordpress.show_plugin +2020-03-06 09:51:50,189 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded x509.get_pem_entry +2020-03-06 09:51:50,204 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded xmpp.send_msg +2020-03-06 09:51:50,220 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded zk_concurrency.lock +2020-03-06 09:51:50,236 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded zonecfg.create +2020-03-06 09:51:50,236 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded zookeeper.create +2020-03-06 09:51:50,267 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 09:51:50,288 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 09:51:50,610 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 09:51:50,610 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][6660] retcode: 1 +2020-03-06 09:51:50,610 [salt.state :951 ][DEBUG ][6660] Last command return code: 1 +2020-03-06 09:51:50,610 [salt.utils.http :234 ][DEBUG ][6660] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 09:51:50,610 [salt.utils.http :235 ][DEBUG ][6660] Using backend: tornado +2020-03-06 09:51:50,861 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 09:51:59,022 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Preparing: C:\50d49dea3146a8e09e\header.bmp... +Preparing: C:\50d49dea3146a8e09e\SplashScreen.bmp... +Preparing: C:\50d49dea3146a8e09e\watermark.bmp... +Preparing: C:\50d49dea3146a8e09e\DisplayIcon.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Print.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate1.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate2.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate3.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate4.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate5.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate6.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate7.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Rotate8.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Save.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\Setup.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\stop.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\SysReqMet.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\SysReqNotMet.ico... +Preparing: C:\50d49dea3146a8e09e\Graphics\warn.ico... +Preparing: C:\50d49dea3146a8e09e\1033\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1042\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1041\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1037\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1025\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1035\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1030\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1044\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1043\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1040\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1029\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1031\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1036\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1032\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1038\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\2052\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1028\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\3076\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1055\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1053\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\3082\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\2070\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1046\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1049\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\1045\LocalizedData.xml... +Preparing: C:\50d49dea3146a8e09e\Client\Parameterinfo.xml... +Preparing: C:\50d49dea3146a8e09e\Extended\Parameterinfo.xml... +Preparing: C:\50d49dea3146a8e09e\ParameterInfo.xml... +Preparing: C:\50d49dea3146a8e09e\Strings.xml... +Preparing: C:\50d49dea3146a8e09e\UiInfo.xml... +Preparing: C:\50d49dea3146a8e09e\Client\UiInfo.xml... +Preparing: C:\50d49dea3146a8e09e\Extended\UiInfo.xml... +Preparing: C:\50d49dea3146a8e09e\SetupUi.xsd... +Preparing: C:\50d49dea3146a8e09e\DHtmlHeader.html... +Preparing: C:\50d49dea3146a8e09e\1033\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1025\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1028\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1030\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1031\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1029\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1036\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1035\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1032\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1038\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1037\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1040\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1041\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1042\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1044\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1043\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1046\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1045\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1055\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1053\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\2052\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\1049\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\3082\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\2070\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\3076\eula.rtf... +Preparing: C:\50d49dea3146a8e09e\Setup.exe... +Preparing: C:\50d49dea3146a8e09e\SetupUtility.exe... +Preparing: C:\50d49dea3146a8e09e\SetupEngine.dll... +Preparing: C:\50d49dea3146a8e09e\1025\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1033\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1029\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1030\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1035\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1031\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1036\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1032\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1028\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\2052\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\3076\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1042\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1041\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1037\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1044\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1053\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1055\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1040\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1045\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1046\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1049\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1038\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\2070\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\3082\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\1043\SetupResources.dll... +Preparing: C:\50d49dea3146a8e09e\SetupUi.dll... +Preparing: C:\50d49dea3146a8e09e\sqmapi.dll... +2020-03-06 09:51:59,022 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 09:52:08,266 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Getting latest version of the Chocolatey package for download. Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. Downloading 7-Zip commandline tool prior to extraction. Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... @@ -28309,17 +27399,55 @@ You may need to shut down and restart powershell and/or consoles first prior to using choco. Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder -2020-03-04 11:51:23,374 [salt.state :320 ][INFO ][6228] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} -2020-03-04 11:51:23,374 [salt.state :1997][INFO ][6228] Completed state [chocolatey.bootstrap] at time 11:51:23.374842 (duration_in_ms=25890.413) -2020-03-04 11:51:23,374 [salt.state :1819][INFO ][6228] Running state [notepadplusplus] at time 11:51:23.374842 -2020-03-04 11:51:23,393 [salt.state :1852][INFO ][6228] Executing state chocolatey.installed for [notepadplusplus] -2020-03-04 11:51:23,393 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:24,656 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: chocolatey|0.10.15 -2020-03-04 11:51:24,656 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:25,327 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: 0.10.15 -2020-03-04 11:51:25,327 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6228] output: 0.10.15 -2020-03-04 11:51:25,327 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:36,452 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: Chocolatey v0.10.15 +2020-03-06 09:52:08,266 [salt.state :320 ][INFO ][6660] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 09:52:08,290 [salt.state :2045][INFO ][6660] Completed state [chocolatey.bootstrap] at time 09:52:08.290306 (duration_in_ms=44852.09) +2020-03-06 09:52:08,290 [salt.state :1867][INFO ][6660] Running state [windirstat] at time 09:52:08.290306 +2020-03-06 09:52:08,290 [salt.state :1900][INFO ][6660] Executing state chocolatey.installed for [windirstat] +2020-03-06 09:52:08,297 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:09,891 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: chocolatey|0.10.15 +2020-03-06 09:52:09,891 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:10,813 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: 0.10.15 +2020-03-06 09:52:10,813 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6660] output: 0.10.15 +2020-03-06 09:52:10,829 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:22,798 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 09:52:22,798 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:24,266 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 09:52:24,266 [salt.state :320 ][INFO ][6660] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 09:52:24,281 [salt.state :2045][INFO ][6660] Completed state [windirstat] at time 09:52:24.281565 (duration_in_ms=15991.259) +2020-03-06 09:52:24,282 [salt.state :1867][INFO ][6660] Running state [notepadplusplus] at time 09:52:24.282299 +2020-03-06 09:52:24,282 [salt.state :1900][INFO ][6660] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 09:52:24,282 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:25,703 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 09:52:25,703 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:37,565 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28340,7 +27468,7 @@ chocolatey-core.extension package files install completed. Performing other inst The install of chocolatey-core.extension was successful. Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' -notepadplusplus.install v7.8.4 [Approved] +notepadplusplus.install v7.8.5 notepadplusplus.install package files install completed. Performing other installation steps. Installing 64-bit notepadplusplus.install... notepadplusplus.install has been installed. @@ -28350,74 +27478,36 @@ Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program fi The install of notepadplusplus.install was successful. Software installed as 'exe', install location is likely default. -notepadplusplus v7.8.4 [Approved] +notepadplusplus v7.8.5 [Approved] notepadplusplus package files install completed. Performing other installation steps. The install of notepadplusplus was successful. Software install location not explicitly set, could be in package or default install location if installer. Chocolatey installed 3/3 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 11:51:36,452 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:37,390 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: chocolatey|0.10.15 -chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 11:51:37,390 [salt.state :320 ][INFO ][6228] Made the following changes: -'notepadplusplus.install' changed from 'absent' to '['7.8.4']' -'notepadplusplus' changed from 'absent' to '['7.8.4']' - -2020-03-04 11:51:37,390 [salt.state :1997][INFO ][6228] Completed state [notepadplusplus] at time 11:51:37.390111 (duration_in_ms=14015.269) -2020-03-04 11:51:37,390 [salt.state :1819][INFO ][6228] Running state [windirstat] at time 11:51:37.390111 -2020-03-04 11:51:37,390 [salt.state :1852][INFO ][6228] Executing state chocolatey.installed for [windirstat] -2020-03-04 11:51:37,390 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:38,405 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: chocolatey|0.10.15 -chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 11:51:38,405 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:47,515 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: Chocolatey v0.10.15 -2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). - -Validation Warnings: - - A pending system reboot request has been detected, however, this is - being ignored due to the current Chocolatey configuration. If you - want to halt when this occurs, then either set the global feature - using: - choco feature enable -name=exitOnRebootDetected - or pass the option --exit-when-reboot-detected. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -Installing the following packages: -windirstat -By installing you accept licenses for the packages. - -windirstat v1.1.2.20161210 [Approved] -windirstat package files install completed. Performing other installation steps. -Installing WinDirStat... -WinDirStat has been installed. - windirstat may be able to be automatically uninstalled. - The install of windirstat was successful. - Software installed to 'C:\Program Files (x86)\WinDirStat' - -Chocolatey installed 1/1 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 11:51:47,515 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:49,109 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: chocolatey|0.10.15 +Enjoy using Chocolatey? Explore more amazing features to take your +experience to the next level at + https://chocolatey.org/compare +2020-03-06 09:52:37,565 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:38,762 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 windirstat|1.1.2.20161210 -2020-03-04 11:51:49,109 [salt.state :320 ][INFO ][6228] Made the following changes: -'windirstat' changed from 'absent' to '['1.1.2.20161210']' - -2020-03-04 11:51:49,109 [salt.state :1997][INFO ][6228] Completed state [windirstat] at time 11:51:49.109741 (duration_in_ms=11719.63) -2020-03-04 11:51:49,109 [salt.state :1819][INFO ][6228] Running state [TelnetClient] at time 11:51:49.109741 -2020-03-04 11:51:49,109 [salt.state :1852][INFO ][6228] Executing state dism.feature_installed for [TelnetClient] -2020-03-04 11:51:49,124 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. -2020-03-04 11:51:49,141 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 11:51:53,140 [salt.state :889 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:51:53,140 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:54,765 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: +2020-03-06 09:52:38,765 [salt.state :320 ][INFO ][6660] Made the following changes: +'notepadplusplus' changed from 'absent' to '['7.8.5']' +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' + +2020-03-06 09:52:38,765 [salt.state :2045][INFO ][6660] Completed state [notepadplusplus] at time 09:52:38.765326 (duration_in_ms=14483.027) +2020-03-06 09:52:38,765 [salt.state :1867][INFO ][6660] Running state [TelnetClient] at time 09:52:38.765326 +2020-03-06 09:52:38,765 [salt.state :1900][INFO ][6660] Executing state dism.feature_installed for [TelnetClient] +2020-03-06 09:52:38,787 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad dism.mod_run_check: 'dism.mod_run_check' is not available. +2020-03-06 09:52:38,795 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'powershell -command "if ((Get-WindowsOptionalFeature -online | Where-Object {($_.FeatureName -eq 'TelnetClient') -and ($_.State -eq 'Enabled')}) -ne $null) {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 09:52:43,088 [salt.state :906 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:52:43,088 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:44,853 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -28840,7 +27930,7 @@ Feature Name : SMB1Protocol-Server State : Disabled The operation completed successfully. -2020-03-04 11:51:54,765 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6228] output: +2020-03-06 09:52:44,869 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6660] output: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -29263,9 +28353,9 @@ Feature Name : SMB1Protocol-Server State : Disabled The operation completed successfully. -2020-03-04 11:51:54,765 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:56,296 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' -2020-03-04 11:51:58,171 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][6228] stdout: +2020-03-06 09:52:44,869 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\Windows\\System32\\dism.exe', '/Quiet', '/Online', '/Enable-Feature', '/FeatureName:TelnetClient', '/NoRestart'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:46,306 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command ['C:\\Windows\\System32\\dism.exe', '/English', '/Online', '/Get-Features'] in directory 'C:\Users\vagrant' +2020-03-06 09:52:47,666 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][6660] stdout: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -29688,7 +28778,7 @@ Feature Name : SMB1Protocol-Server State : Disabled The operation completed successfully. -2020-03-04 11:51:58,187 [salt.loaded.int.module.cmdmod:1202][DEBUG ][6228] output: +2020-03-06 09:52:47,666 [salt.loaded.int.module.cmdmod:1199][DEBUG ][6660] output: Deployment Image Servicing and Management tool Version: 10.0.18362.1 @@ -30111,49 +29201,43 @@ Feature Name : SMB1Protocol-Server State : Disabled The operation completed successfully. -2020-03-04 11:51:58,187 [salt.state :320 ][INFO ][6228] {'feature': {'new': 'TelnetClient'}, 'stdout': '', 'retcode': 0, 'stderr': '', 'pid': 5072} -2020-03-04 11:51:58,187 [salt.state :1997][INFO ][6228] Completed state [TelnetClient] at time 11:51:58.187874 (duration_in_ms=9078.133) -2020-03-04 11:51:58,187 [salt.state :1819][INFO ][6228] Running state [windows.module.system.reboot] at time 11:51:58.187874 -2020-03-04 11:51:58,187 [salt.state :1852][INFO ][6228] Executing state module.run for [windows.module.system.reboot] -2020-03-04 11:51:58,203 [salt.utils.lazy :107 ][DEBUG ][6228] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 11:51:58,203 [salt.loaded.int.module.cmdmod:397 ][INFO ][6228] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' -2020-03-04 11:51:58,437 [salt.state :889 ][DEBUG ][6228] Last command return code: 0 -2020-03-04 11:51:58,437 [salt.loaded.int.module.win_system:1413][DEBUG ][6228] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired -2020-03-04 11:51:58,437 [salt.loaded.int.module.win_system:1348][DEBUG ][6228] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 11:51:58,437 [salt.loaded.int.module.win_system:1348][DEBUG ][6228] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 11:51:58,437 [salt.loaded.int.module.win_system:1387][DEBUG ][6228] Unable to access key: SOFTWARE\Microsoft\ServerManager -2020-03-04 11:51:58,437 [salt.loaded.int.module.win_system:1273][DEBUG ][6228] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending -2020-03-04 11:51:58,503 [salt.state :320 ][INFO ][6228] {'system.reboot': True} -2020-03-04 11:51:58,503 [salt.state :1997][INFO ][6228] Completed state [windows.module.system.reboot] at time 11:51:58.503752 (duration_in_ms=315.878) -2020-03-04 11:51:58,515 [salt.state :2801][DEBUG ][6228] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1649117939976 does not exist, no need to cleanup -2020-03-04 11:51:58,515 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded state.check_result -2020-03-04 11:51:58,531 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded highstate.output -2020-03-04 11:51:58,531 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,546 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,562 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,577 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,593 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,609 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,640 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,655 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,655 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,655 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,671 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 11:51:58,687 [salt.utils.lazy :104 ][DEBUG ][6228] LazyLoaded nested.output -2020-03-04 14:52:05,624 [salt.loader :747 ][DEBUG ][3564] Grains refresh requested. Refreshing grains. -2020-03-04 14:52:05,624 [salt.config :2190][DEBUG ][3564] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 14:52:05,624 [salt.config :2334][DEBUG ][3564] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 14:52:05,624 [salt.config :2190][DEBUG ][3564] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 09:52:47,681 [salt.state :320 ][INFO ][6660] {'stderr': '', 'pid': 1392, 'retcode': 0, 'stdout': '', 'feature': {'new': ['TelnetClient']}} +2020-03-06 09:52:47,681 [salt.state :2045][INFO ][6660] Completed state [TelnetClient] at time 09:52:47.681533 (duration_in_ms=8916.207) +2020-03-06 09:52:47,681 [salt.state :1867][INFO ][6660] Running state [windows.module.system.reboot] at time 09:52:47.681533 +2020-03-06 09:52:47,681 [salt.state :1900][INFO ][6660] Executing state module.run for [windows.module.system.reboot] +2020-03-06 09:52:47,681 [salt.utils.lazy :107 ][DEBUG ][6660] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 09:52:47,697 [salt.loaded.int.module.cmdmod:397 ][INFO ][6660] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 09:52:47,883 [salt.state :906 ][DEBUG ][6660] Last command return code: 0 +2020-03-06 09:52:47,884 [salt.loaded.int.module.win_system:1413][DEBUG ][6660] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 09:52:47,884 [salt.loaded.int.module.win_system:1348][DEBUG ][6660] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 09:52:47,884 [salt.loaded.int.module.win_system:1348][DEBUG ][6660] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 09:52:47,884 [salt.loaded.int.module.win_system:1387][DEBUG ][6660] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 09:52:47,884 [salt.loaded.int.module.win_system:1273][DEBUG ][6660] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 09:52:47,918 [salt.state :320 ][INFO ][6660] {'system.reboot': True} +2020-03-06 09:52:47,933 [salt.state :2045][INFO ][6660] Completed state [windows.module.system.reboot] at time 09:52:47.933443 (duration_in_ms=251.91) +2020-03-06 09:52:47,933 [salt.state :2921][DEBUG ][6660] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1802834810024 does not exist, no need to cleanup +2020-03-06 09:52:47,949 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded highstate.output +2020-03-06 09:52:47,949 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,949 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,966 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,966 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,966 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,980 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,980 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,980 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,980 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:47,993 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,011 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,011 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,025 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,025 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,025 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,040 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,040 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,040 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,056 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,072 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,072 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,072 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,087 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output +2020-03-06 09:52:48,087 [salt.utils.lazy :104 ][DEBUG ][6660] LazyLoaded nested.output diff --git a/test/results/py3-windows-server-2016.inspec.results.json b/test/results/py3-windows-server-2016.inspec.results.json index d9556cd..b9b93b8 100644 --- a/test/results/py3-windows-server-2016.inspec.results.json +++ b/test/results/py3-windows-server-2016.inspec.results.json @@ -1 +1 @@ -{"platform":{"name":"windows_server_2016_standard_evaluation","release":"10.0.14393"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_server_2016_standard_evaluation should include \"windows\"","run_time":0.0001659,"start_time":"2020-03-04T15:28:15-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.2559212,"start_time":"2020-03-04T15:28:15-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0174026,"start_time":"2020-03-04T15:28:16-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0233035,"start_time":"2020-03-04T15:28:16-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0190131,"start_time":"2020-03-04T15:28:16-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0211534,"start_time":"2020-03-04T15:28:16-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001451,"start_time":"2020-03-04T15:28:16-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":0.0001096,"start_time":"2020-03-04T15:28:16-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001111,"start_time":"2020-03-04T15:28:16-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Feature 'telnet-client' should be installed","run_time":1.1652252,"start_time":"2020-03-04T15:28:16-05:00"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0576161,"start_time":"2020-03-04T15:28:17-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4444453,"start_time":"2020-03-04T15:28:17-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"Windows Optional Feature: `TelnetClient`","run_time":8.9e-06,"start_time":"2020-03-04T15:28:17-05:00","resource":"Windows Optional Feature: `TelnetClient`","skip_message":"The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead."}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0178718,"start_time":"2020-03-04T15:28:17-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001729,"start_time":"2020-03-04T15:28:17-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.102397,"start_time":"2020-03-04T15:28:17-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1946679,"start_time":"2020-03-04T15:28:17-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.4278345,"start_time":"2020-03-04T15:28:18-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.127328,"start_time":"2020-03-04T15:28:18-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1589254,"start_time":"2020-03-04T15:28:18-05:00"}]}],"status":"loaded"}],"statistics":{"duration":3.0609079},"version":"4.18.39"} \ No newline at end of file +{"platform":{"name":"windows_server_2016_standard_evaluation","release":"10.0.14393"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_server_2016_standard_evaluation should include \"windows\"","run_time":9.62e-05,"start_time":"2020-03-06T13:31:56-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.2846222,"start_time":"2020-03-06T13:31:56-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0196552,"start_time":"2020-03-06T13:31:56-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0192414,"start_time":"2020-03-06T13:31:56-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.026409,"start_time":"2020-03-06T13:31:56-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0342398,"start_time":"2020-03-06T13:31:56-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001275,"start_time":"2020-03-06T13:31:56-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":7.75e-05,"start_time":"2020-03-06T13:31:56-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001134,"start_time":"2020-03-06T13:31:56-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Feature 'telnet-client' should be installed","run_time":1.1957842,"start_time":"2020-03-06T13:31:56-05:00"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.056073,"start_time":"2020-03-06T13:31:57-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4672493,"start_time":"2020-03-06T13:31:57-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"Windows Optional Feature: `TelnetClient`","run_time":9.3e-06,"start_time":"2020-03-06T13:31:58-05:00","resource":"Windows Optional Feature: `TelnetClient`","skip_message":"The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead."}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0236409,"start_time":"2020-03-06T13:31:58-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001646,"start_time":"2020-03-06T13:31:58-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1056857,"start_time":"2020-03-06T13:31:58-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1466155,"start_time":"2020-03-06T13:31:58-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1213764,"start_time":"2020-03-06T13:31:58-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1324884,"start_time":"2020-03-06T13:31:58-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1520512,"start_time":"2020-03-06T13:31:58-05:00"}]}],"status":"loaded"}],"statistics":{"duration":2.8157903},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-windows-server-2016.inspec.results.txt b/test/results/py3-windows-server-2016.inspec.results.txt index 4310122..4be4099 100644 --- a/test/results/py3-windows-server-2016.inspec.results.txt +++ b/test/results/py3-windows-server-2016.inspec.results.txt @@ -66,6 +66,6 @@ Pending: (Failures listed here are expected and do not affect your suite's statu # Not yet implemented # -Finished in 3.06 seconds (files took 5 minutes 11 seconds to load) +Finished in 2.82 seconds (files took 5 minutes 42 seconds to load) 20 examples, 0 failures, 1 pending diff --git a/test/results/py3-windows-server-2016.inspec.results.xml b/test/results/py3-windows-server-2016.inspec.results.xml index 0833a10..149713d 100644 --- a/test/results/py3-windows-server-2016.inspec.results.xml +++ b/test/results/py3-windows-server-2016.inspec.results.xml @@ -1,27 +1,27 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - + + + + + + + diff --git a/test/results/py3-windows-server-2016.kitchen.log b/test/results/py3-windows-server-2016.kitchen.log index 08c3b81..8a3bda7 100644 --- a/test/results/py3-windows-server-2016.kitchen.log +++ b/test/results/py3-windows-server-2016.kitchen.log @@ -1,952 +1,949 @@ -I, [2020-03-04T15:23:09.595055 #5086] INFO -- py3-windows-server-2016: -----> Cleaning up any prior instances of -I, [2020-03-04T15:23:09.595195 #5086] INFO -- py3-windows-server-2016: -----> Destroying ... -I, [2020-03-04T15:23:09.596524 #5086] INFO -- py3-windows-server-2016: Finished destroying (0m0.00s). -I, [2020-03-04T15:23:09.597802 #5086] INFO -- py3-windows-server-2016: -----> Testing -I, [2020-03-04T15:23:09.597937 #5086] INFO -- py3-windows-server-2016: -----> Creating ... -I, [2020-03-04T15:23:15.566679 #5086] INFO -- py3-windows-server-2016: Bringing machine 'default' up with 'virtualbox' provider... -I, [2020-03-04T15:23:16.198713 #5086] INFO -- py3-windows-server-2016: ==> default: Cloning VM... -I, [2020-03-04T15:23:16.670926 #5086] INFO -- py3-windows-server-2016: ==> default: Matching MAC address for NAT networking... -I, [2020-03-04T15:23:16.894482 #5086] INFO -- py3-windows-server-2016: ==> default: Checking if box 'StefanScherer/windows_2016' version '2019.02.14' is up to date... -I, [2020-03-04T15:23:17.679795 #5086] INFO -- py3-windows-server-2016: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2016-b9e4f1c7-316e-48c8-90d7-967c18622e55 -I, [2020-03-04T15:23:23.407519 #5086] INFO -- py3-windows-server-2016: ==> default: Clearing any previously set network interfaces... -I, [2020-03-04T15:23:23.500404 #5086] INFO -- py3-windows-server-2016: ==> default: Preparing network interfaces based on configuration... -I, [2020-03-04T15:23:23.500920 #5086] INFO -- py3-windows-server-2016: default: Adapter 1: nat -I, [2020-03-04T15:23:23.605277 #5086] INFO -- py3-windows-server-2016: ==> default: Forwarding ports... -I, [2020-03-04T15:23:23.707685 #5086] INFO -- py3-windows-server-2016: default: 3389 (guest) => 3389 (host) (adapter 1) -I, [2020-03-04T15:23:23.708033 #5086] INFO -- py3-windows-server-2016: default: 5985 (guest) => 55985 (host) (adapter 1) -I, [2020-03-04T15:23:23.708591 #5086] INFO -- py3-windows-server-2016: default: 5986 (guest) => 55986 (host) (adapter 1) -I, [2020-03-04T15:23:23.709188 #5086] INFO -- py3-windows-server-2016: default: 22 (guest) => 2222 (host) (adapter 1) -I, [2020-03-04T15:23:24.030608 #5086] INFO -- py3-windows-server-2016: ==> default: Running 'pre-boot' VM customizations... -I, [2020-03-04T15:23:24.783732 #5086] INFO -- py3-windows-server-2016: ==> default: Booting VM... -I, [2020-03-04T15:23:27.420019 #5086] INFO -- py3-windows-server-2016: ==> default: Waiting for machine to boot. This may take a few minutes... -I, [2020-03-04T15:23:28.526424 #5086] INFO -- py3-windows-server-2016: default: WinRM address: 127.0.0.1:55985 -I, [2020-03-04T15:23:28.526680 #5086] INFO -- py3-windows-server-2016: default: WinRM username: vagrant -I, [2020-03-04T15:23:28.527056 #5086] INFO -- py3-windows-server-2016: default: WinRM execution_time_limit: PT2H -I, [2020-03-04T15:23:28.527557 #5086] INFO -- py3-windows-server-2016: default: WinRM transport: negotiate -I, [2020-03-04T15:24:31.568408 #5086] INFO -- py3-windows-server-2016: ==> default: Machine booted and ready! -I, [2020-03-04T15:24:31.594583 #5086] INFO -- py3-windows-server-2016: ==> default: Checking for guest additions in VM... -I, [2020-03-04T15:24:31.753991 #5086] INFO -- py3-windows-server-2016: default: The guest additions on this VM do not match the installed version of -I, [2020-03-04T15:24:31.754109 #5086] INFO -- py3-windows-server-2016: default: VirtualBox! In most cases this is fine, but in rare cases it can -I, [2020-03-04T15:24:31.754145 #5086] INFO -- py3-windows-server-2016: default: prevent things such as shared folders from working properly. If you see -I, [2020-03-04T15:24:31.754187 #5086] INFO -- py3-windows-server-2016: default: shared folder errors, please make sure the guest additions within the -I, [2020-03-04T15:24:31.754220 #5086] INFO -- py3-windows-server-2016: default: virtual machine match the version of VirtualBox you have installed on -I, [2020-03-04T15:24:31.754261 #5086] INFO -- py3-windows-server-2016: default: your host and reload your VM. -I, [2020-03-04T15:24:31.754300 #5086] INFO -- py3-windows-server-2016: default: -I, [2020-03-04T15:24:31.754333 #5086] INFO -- py3-windows-server-2016: default: Guest Additions Version: 5.2.26 -I, [2020-03-04T15:24:31.754363 #5086] INFO -- py3-windows-server-2016: default: VirtualBox Version: 6.1 -I, [2020-03-04T15:24:32.372888 #5086] INFO -- py3-windows-server-2016: ==> default: Mounting shared folders... -I, [2020-03-04T15:24:32.373734 #5086] INFO -- py3-windows-server-2016: default: /results => /mnt/c/tmp/results -I, [2020-03-04T15:24:37.968964 #5086] INFO -- py3-windows-server-2016: ==> default: Machine not provisioned because `--no-provision` is specified. -I, [2020-03-04T15:24:49.855827 #5086] INFO -- py3-windows-server-2016: [WinRM] Established -I, [2020-03-04T15:24:49.855982 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:24:49.874008 #5086] INFO -- py3-windows-server-2016: Vagrant instance created. -I, [2020-03-04T15:24:49.876060 #5086] INFO -- py3-windows-server-2016: Finished creating (1m40.28s). -I, [2020-03-04T15:24:49.876331 #5086] INFO -- py3-windows-server-2016: -----> Converging ... -I, [2020-03-04T15:24:49.878949 #5086] INFO -- py3-windows-server-2016: Preparing files for transfer -I, [2020-03-04T15:24:49.879142 #5086] INFO -- py3-windows-server-2016: Preparing salt-minion -I, [2020-03-04T15:24:49.885458 #5086] INFO -- py3-windows-server-2016: Preparing pillars into /srv/pillar -I, [2020-03-04T15:24:49.885633 #5086] INFO -- py3-windows-server-2016: pillars-from-files is deprecated in favor of pillars_from_files -I, [2020-03-04T15:24:49.890797 #5086] INFO -- py3-windows-server-2016: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula -I, [2020-03-04T15:24:50.058897 #5086] INFO -- py3-windows-server-2016: Preparing state_top -I, [2020-03-04T15:24:50.060495 #5086] INFO -- py3-windows-server-2016: Preparing scripts into /etc/salt/scripts -I, [2020-03-04T15:24:50.973619 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:24:50.973904 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:24:50.974235 #5086] INFO -- py3-windows-server-2016: Directory: C:\ -I, [2020-03-04T15:24:50.974500 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:24:50.974747 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:24:50.975043 #5086] INFO -- py3-windows-server-2016: Mode LastWriteTime Length Name -I, [2020-03-04T15:24:50.975314 #5086] INFO -- py3-windows-server-2016: ---- ------------- ------ ---- -I, [2020-03-04T15:24:50.975610 #5086] INFO -- py3-windows-server-2016: d----- 3/4/2020 12:24 PM temp -I, [2020-03-04T15:24:51.580867 #5086] INFO -- py3-windows-server-2016: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe -I, [2020-03-04T15:24:56.612178 #5086] INFO -- py3-windows-server-2016: Installing Salt minion -I, [2020-03-04T15:25:10.796171 #5086] INFO -- py3-windows-server-2016: Starting the Salt minion service -I, [2020-03-04T15:25:10.796638 #5086] INFO -- py3-windows-server-2016: Salt minion successfully installed -I, [2020-03-04T15:25:14.912105 #5086] INFO -- py3-windows-server-2016: You asked for latest and you have 2019.2.3 installed, sweet! -I, [2020-03-04T15:25:14.912609 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:14.913140 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:15.520904 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:15.521313 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:15.521702 #5086] INFO -- py3-windows-server-2016: Directory: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:25:15.521989 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:15.522245 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:15.522576 #5086] INFO -- py3-windows-server-2016: Mode LastWriteTime Length Name -I, [2020-03-04T15:25:15.522969 #5086] INFO -- py3-windows-server-2016: ---- ------------- ------ ---- -I, [2020-03-04T15:25:15.523304 #5086] INFO -- py3-windows-server-2016: d----- 3/4/2020 12:25 PM kitchen -I, [2020-03-04T15:25:15.523587 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:15.523855 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:15.537904 #5086] INFO -- py3-windows-server-2016: Transferring files to -I, [2020-03-04T15:25:43.806834 #5086] INFO -- py3-windows-server-2016: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:25:43.807259 #5086] INFO -- py3-windows-server-2016: At line:1 char:131 -I, [2020-03-04T15:25:43.807685 #5086] INFO -- py3-windows-server-2016: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... -I, [2020-03-04T15:25:43.808140 #5086] INFO -- py3-windows-server-2016: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -I, [2020-03-04T15:25:43.808573 #5086] INFO -- py3-windows-server-2016: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException -I, [2020-03-04T15:25:43.808983 #5086] INFO -- py3-windows-server-2016: + FullyQualifiedErrorId : NativeCommandError -I, [2020-03-04T15:25:43.809398 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:43.809777 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:43.810281 #5086] INFO -- py3-windows-server-2016: Traceback (most recent call last): -I, [2020-03-04T15:25:43.810713 #5086] INFO -- py3-windows-server-2016: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:25:43.811085 #5086] INFO -- py3-windows-server-2016: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:25:43.811416 #5086] INFO -- py3-windows-server-2016: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:25:43.811732 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:43.812164 #5086] INFO -- py3-windows-server-2016: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:25:43.812560 #5086] INFO -- py3-windows-server-2016: Traceback (most recent call last): -I, [2020-03-04T15:25:43.812906 #5086] INFO -- py3-windows-server-2016: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:25:43.813204 #5086] INFO -- py3-windows-server-2016: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:25:43.813481 #5086] INFO -- py3-windows-server-2016: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:25:43.813735 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:25:44.783944 #5086] INFO -- py3-windows-server-2016: [ERROR ] {'pkg.refresh_db': {'success': 0, 'total': 0, 'failed': 0}} -I, [2020-03-04T15:25:44.784270 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:26:41.268774 #5086] INFO -- py3-windows-server-2016: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P -I, [2020-03-04T15:26:41.269312 #5086] INFO -- py3-windows-server-2016: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:26:41.269747 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:26:41.270107 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:26:41.270506 #5086] INFO -- py3-windows-server-2016: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W -I, [2020-03-04T15:26:41.270885 #5086] INFO -- py3-windows-server-2016: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:26:41.271186 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:26:41.271478 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:40.881417 #5086] INFO -- py3-windows-server-2016: local: -I, [2020-03-04T15:27:40.881910 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.882272 #5086] INFO -- py3-windows-server-2016: ID: windows.state.system.hostname.saltstack1 -I, [2020-03-04T15:27:40.882674 #5086] INFO -- py3-windows-server-2016: Function: system.hostname -I, [2020-03-04T15:27:40.883023 #5086] INFO -- py3-windows-server-2016: Name: saltstack1 -I, [2020-03-04T15:27:40.883383 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.883721 #5086] INFO -- py3-windows-server-2016: Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot -I, [2020-03-04T15:27:40.884041 #5086] INFO -- py3-windows-server-2016: Started: 12:25:32.226122 -I, [2020-03-04T15:27:40.884333 #5086] INFO -- py3-windows-server-2016: Duration: 125.123 ms -I, [2020-03-04T15:27:40.884624 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.884935 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.885246 #5086] INFO -- py3-windows-server-2016: hostname: -I, [2020-03-04T15:27:40.885536 #5086] INFO -- py3-windows-server-2016: saltstack1 -I, [2020-03-04T15:27:40.885904 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.886241 #5086] INFO -- py3-windows-server-2016: ID: windows.state.system.computer_desc.description -I, [2020-03-04T15:27:40.886537 #5086] INFO -- py3-windows-server-2016: Function: system.computer_desc -I, [2020-03-04T15:27:40.886834 #5086] INFO -- py3-windows-server-2016: Name: Saltstack Computer Description -I, [2020-03-04T15:27:40.887133 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.887420 #5086] INFO -- py3-windows-server-2016: Comment: Computer description successfully changed to 'Saltstack Computer Description' -I, [2020-03-04T15:27:40.887727 #5086] INFO -- py3-windows-server-2016: Started: 12:25:32.351245 -I, [2020-03-04T15:27:40.888025 #5086] INFO -- py3-windows-server-2016: Duration: 2705.55 ms -I, [2020-03-04T15:27:40.888316 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.888633 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.888996 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:40.889341 #5086] INFO -- py3-windows-server-2016: Saltstack Computer Description -I, [2020-03-04T15:27:40.889658 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:40.889967 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.890269 #5086] INFO -- py3-windows-server-2016: ID: windows.state.timezone.system.America/New_York -I, [2020-03-04T15:27:40.890577 #5086] INFO -- py3-windows-server-2016: Function: timezone.system -I, [2020-03-04T15:27:40.890899 #5086] INFO -- py3-windows-server-2016: Name: America/New_York -I, [2020-03-04T15:27:40.891206 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.891518 #5086] INFO -- py3-windows-server-2016: Comment: Set timezone America/New_York -I, [2020-03-04T15:27:40.891874 #5086] INFO -- py3-windows-server-2016: Started: 12:25:35.088069 -I, [2020-03-04T15:27:40.892235 #5086] INFO -- py3-windows-server-2016: Duration: 15.639 ms -I, [2020-03-04T15:27:40.892533 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.892859 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.893160 #5086] INFO -- py3-windows-server-2016: timezone: -I, [2020-03-04T15:27:40.893476 #5086] INFO -- py3-windows-server-2016: America/New_York -I, [2020-03-04T15:27:40.893779 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.894083 #5086] INFO -- py3-windows-server-2016: ID: windows.module.environ.items -I, [2020-03-04T15:27:40.894408 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:40.894823 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.895170 #5086] INFO -- py3-windows-server-2016: Comment: environ.items: Success -I, [2020-03-04T15:27:40.895473 #5086] INFO -- py3-windows-server-2016: Started: 12:25:35.103708 -I, [2020-03-04T15:27:40.895758 #5086] INFO -- py3-windows-server-2016: Duration: 15.649 ms -I, [2020-03-04T15:27:40.896067 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.896378 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.896718 #5086] INFO -- py3-windows-server-2016: environ.items: -I, [2020-03-04T15:27:40.897032 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.897361 #5086] INFO -- py3-windows-server-2016: ALLUSERSPROFILE: -I, [2020-03-04T15:27:40.897695 #5086] INFO -- py3-windows-server-2016: C:\ProgramData -I, [2020-03-04T15:27:40.898110 #5086] INFO -- py3-windows-server-2016: APPDATA: -I, [2020-03-04T15:27:40.898465 #5086] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Roaming -I, [2020-03-04T15:27:40.898835 #5086] INFO -- py3-windows-server-2016: COMMONPROGRAMFILES: -I, [2020-03-04T15:27:40.899160 #5086] INFO -- py3-windows-server-2016: C:\Program Files\Common Files -I, [2020-03-04T15:27:40.899503 #5086] INFO -- py3-windows-server-2016: COMMONPROGRAMFILES(X86): -I, [2020-03-04T15:27:40.899844 #5086] INFO -- py3-windows-server-2016: C:\Program Files (x86)\Common Files -I, [2020-03-04T15:27:40.900166 #5086] INFO -- py3-windows-server-2016: COMMONPROGRAMW6432: -I, [2020-03-04T15:27:40.900524 #5086] INFO -- py3-windows-server-2016: C:\Program Files\Common Files -I, [2020-03-04T15:27:40.900867 #5086] INFO -- py3-windows-server-2016: COMPUTERNAME: -I, [2020-03-04T15:27:40.901257 #5086] INFO -- py3-windows-server-2016: VAGRANT -I, [2020-03-04T15:27:40.901620 #5086] INFO -- py3-windows-server-2016: COMSPEC: -I, [2020-03-04T15:27:40.901959 #5086] INFO -- py3-windows-server-2016: C:\Windows\system32\cmd.exe -I, [2020-03-04T15:27:40.902283 #5086] INFO -- py3-windows-server-2016: HOMEDRIVE: -I, [2020-03-04T15:27:40.902616 #5086] INFO -- py3-windows-server-2016: C: -I, [2020-03-04T15:27:40.902929 #5086] INFO -- py3-windows-server-2016: HOMEPATH: -I, [2020-03-04T15:27:40.903306 #5086] INFO -- py3-windows-server-2016: \Users\vagrant -I, [2020-03-04T15:27:40.903694 #5086] INFO -- py3-windows-server-2016: LOCALAPPDATA: -I, [2020-03-04T15:27:40.904025 #5086] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Local -I, [2020-03-04T15:27:40.904417 #5086] INFO -- py3-windows-server-2016: LOGONSERVER: -I, [2020-03-04T15:27:40.904896 #5086] INFO -- py3-windows-server-2016: \\VAGRANT -I, [2020-03-04T15:27:40.905363 #5086] INFO -- py3-windows-server-2016: NUMBER_OF_PROCESSORS: -I, [2020-03-04T15:27:40.905831 #5086] INFO -- py3-windows-server-2016: 2 -I, [2020-03-04T15:27:40.906289 #5086] INFO -- py3-windows-server-2016: OS: -I, [2020-03-04T15:27:40.906755 #5086] INFO -- py3-windows-server-2016: Windows_NT -I, [2020-03-04T15:27:40.907200 #5086] INFO -- py3-windows-server-2016: PATH: -I, [2020-03-04T15:27:40.907742 #5086] INFO -- py3-windows-server-2016: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 -I, [2020-03-04T15:27:40.908204 #5086] INFO -- py3-windows-server-2016: PATHEXT: -I, [2020-03-04T15:27:40.908704 #5086] INFO -- py3-windows-server-2016: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL -I, [2020-03-04T15:27:40.909217 #5086] INFO -- py3-windows-server-2016: PROCESSOR_ARCHITECTURE: -I, [2020-03-04T15:27:40.909708 #5086] INFO -- py3-windows-server-2016: AMD64 -I, [2020-03-04T15:27:40.910153 #5086] INFO -- py3-windows-server-2016: PROCESSOR_IDENTIFIER: -I, [2020-03-04T15:27:40.910632 #5086] INFO -- py3-windows-server-2016: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel -I, [2020-03-04T15:27:40.911070 #5086] INFO -- py3-windows-server-2016: PROCESSOR_LEVEL: -I, [2020-03-04T15:27:40.911515 #5086] INFO -- py3-windows-server-2016: 6 -I, [2020-03-04T15:27:40.911952 #5086] INFO -- py3-windows-server-2016: PROCESSOR_REVISION: -I, [2020-03-04T15:27:40.912415 #5086] INFO -- py3-windows-server-2016: 8e0c -I, [2020-03-04T15:27:40.912852 #5086] INFO -- py3-windows-server-2016: PROGRAMDATA: -I, [2020-03-04T15:27:40.913295 #5086] INFO -- py3-windows-server-2016: C:\ProgramData -I, [2020-03-04T15:27:40.913769 #5086] INFO -- py3-windows-server-2016: PROGRAMFILES: -I, [2020-03-04T15:27:40.914216 #5086] INFO -- py3-windows-server-2016: C:\Program Files -I, [2020-03-04T15:27:40.914679 #5086] INFO -- py3-windows-server-2016: PROGRAMFILES(X86): -I, [2020-03-04T15:27:40.915124 #5086] INFO -- py3-windows-server-2016: C:\Program Files (x86) -I, [2020-03-04T15:27:40.915585 #5086] INFO -- py3-windows-server-2016: PROGRAMW6432: -I, [2020-03-04T15:27:40.916028 #5086] INFO -- py3-windows-server-2016: C:\Program Files -I, [2020-03-04T15:27:40.916484 #5086] INFO -- py3-windows-server-2016: PROMPT: -I, [2020-03-04T15:27:40.916928 #5086] INFO -- py3-windows-server-2016: $P$G -I, [2020-03-04T15:27:40.917385 #5086] INFO -- py3-windows-server-2016: PSMODULEPATH: -I, [2020-03-04T15:27:40.917863 #5086] INFO -- py3-windows-server-2016: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules -I, [2020-03-04T15:27:40.918324 #5086] INFO -- py3-windows-server-2016: PUBLIC: -I, [2020-03-04T15:27:40.918755 #5086] INFO -- py3-windows-server-2016: C:\Users\Public -I, [2020-03-04T15:27:40.919222 #5086] INFO -- py3-windows-server-2016: PYTHON: -I, [2020-03-04T15:27:40.919663 #5086] INFO -- py3-windows-server-2016: C:\salt\bin\python.exe -I, [2020-03-04T15:27:40.920117 #5086] INFO -- py3-windows-server-2016: SALTDIR: -I, [2020-03-04T15:27:40.920593 #5086] INFO -- py3-windows-server-2016: C:\salt -I, [2020-03-04T15:27:40.921040 #5086] INFO -- py3-windows-server-2016: SCRIPT: -I, [2020-03-04T15:27:40.921528 #5086] INFO -- py3-windows-server-2016: C:\salt\bin\Scripts\salt-call -I, [2020-03-04T15:27:40.921978 #5086] INFO -- py3-windows-server-2016: SYSTEMDRIVE: -I, [2020-03-04T15:27:40.922479 #5086] INFO -- py3-windows-server-2016: C: -I, [2020-03-04T15:27:40.922968 #5086] INFO -- py3-windows-server-2016: SYSTEMROOT: -I, [2020-03-04T15:27:40.923451 #5086] INFO -- py3-windows-server-2016: C:\Windows -I, [2020-03-04T15:27:40.923902 #5086] INFO -- py3-windows-server-2016: TEMP: -I, [2020-03-04T15:27:40.924364 #5086] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:27:40.924815 #5086] INFO -- py3-windows-server-2016: TMP: -I, [2020-03-04T15:27:40.925296 #5086] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:27:40.925743 #5086] INFO -- py3-windows-server-2016: USERDOMAIN: -I, [2020-03-04T15:27:40.926199 #5086] INFO -- py3-windows-server-2016: VAGRANT -I, [2020-03-04T15:27:40.926632 #5086] INFO -- py3-windows-server-2016: USERDOMAIN_ROAMINGPROFILE: -I, [2020-03-04T15:27:40.927076 #5086] INFO -- py3-windows-server-2016: VAGRANT -I, [2020-03-04T15:27:40.927493 #5086] INFO -- py3-windows-server-2016: USERNAME: -I, [2020-03-04T15:27:40.927903 #5086] INFO -- py3-windows-server-2016: vagrant -I, [2020-03-04T15:27:40.928353 #5086] INFO -- py3-windows-server-2016: USERPROFILE: -I, [2020-03-04T15:27:40.928781 #5086] INFO -- py3-windows-server-2016: C:\Users\vagrant -I, [2020-03-04T15:27:40.929222 #5086] INFO -- py3-windows-server-2016: WINDIR: -I, [2020-03-04T15:27:40.929647 #5086] INFO -- py3-windows-server-2016: C:\Windows -I, [2020-03-04T15:27:40.930073 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.930494 #5086] INFO -- py3-windows-server-2016: ID: windows.module.user.current -I, [2020-03-04T15:27:40.930933 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:40.931336 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.931764 #5086] INFO -- py3-windows-server-2016: Comment: user.current: VAGRANT\vagrant -I, [2020-03-04T15:27:40.932207 #5086] INFO -- py3-windows-server-2016: Started: 12:25:35.119357 -I, [2020-03-04T15:27:40.932650 #5086] INFO -- py3-windows-server-2016: Duration: 15.636 ms -I, [2020-03-04T15:27:40.933087 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.933562 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.934038 #5086] INFO -- py3-windows-server-2016: user.current: -I, [2020-03-04T15:27:40.934535 #5086] INFO -- py3-windows-server-2016: VAGRANT\vagrant -I, [2020-03-04T15:27:40.934963 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.935431 #5086] INFO -- py3-windows-server-2016: ID: windows.module.status.uptime -I, [2020-03-04T15:27:40.935869 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:40.936314 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.936770 #5086] INFO -- py3-windows-server-2016: Comment: status.uptime: 0:01:15.166268 -I, [2020-03-04T15:27:40.937216 #5086] INFO -- py3-windows-server-2016: Started: 12:25:35.134993 -I, [2020-03-04T15:27:40.937676 #5086] INFO -- py3-windows-server-2016: Duration: 31.275 ms -I, [2020-03-04T15:27:40.938116 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.938581 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.939044 #5086] INFO -- py3-windows-server-2016: status.uptime: -I, [2020-03-04T15:27:40.939538 #5086] INFO -- py3-windows-server-2016: 0:01:15.166268 -I, [2020-03-04T15:27:40.939973 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.940459 #5086] INFO -- py3-windows-server-2016: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 -I, [2020-03-04T15:27:40.940912 #5086] INFO -- py3-windows-server-2016: Function: reg.present -I, [2020-03-04T15:27:40.941397 #5086] INFO -- py3-windows-server-2016: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:27:40.941848 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.942332 #5086] INFO -- py3-windows-server-2016: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:27:40.942778 #5086] INFO -- py3-windows-server-2016: Started: 12:25:35.166268 -I, [2020-03-04T15:27:40.943244 #5086] INFO -- py3-windows-server-2016: Duration: 9795.009 ms -I, [2020-03-04T15:27:40.943669 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.944113 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.944575 #5086] INFO -- py3-windows-server-2016: reg: -I, [2020-03-04T15:27:40.945031 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.945508 #5086] INFO -- py3-windows-server-2016: Added: -I, [2020-03-04T15:27:40.945960 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.946436 #5086] INFO -- py3-windows-server-2016: Entry: -I, [2020-03-04T15:27:40.946919 #5086] INFO -- py3-windows-server-2016: SystemDefaultTlsVersions -I, [2020-03-04T15:27:40.947414 #5086] INFO -- py3-windows-server-2016: Inheritance: -I, [2020-03-04T15:27:40.947862 #5086] INFO -- py3-windows-server-2016: True -I, [2020-03-04T15:27:40.948329 #5086] INFO -- py3-windows-server-2016: Key: -I, [2020-03-04T15:27:40.948811 #5086] INFO -- py3-windows-server-2016: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:27:40.949287 #5086] INFO -- py3-windows-server-2016: Owner: -I, [2020-03-04T15:27:40.949737 #5086] INFO -- py3-windows-server-2016: None -I, [2020-03-04T15:27:40.950202 #5086] INFO -- py3-windows-server-2016: Perms: -I, [2020-03-04T15:27:40.950659 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.951144 #5086] INFO -- py3-windows-server-2016: Deny: -I, [2020-03-04T15:27:40.951603 #5086] INFO -- py3-windows-server-2016: None -I, [2020-03-04T15:27:40.952091 #5086] INFO -- py3-windows-server-2016: Grant: -I, [2020-03-04T15:27:40.952576 #5086] INFO -- py3-windows-server-2016: None -I, [2020-03-04T15:27:40.953080 #5086] INFO -- py3-windows-server-2016: Value: -I, [2020-03-04T15:27:40.953533 #5086] INFO -- py3-windows-server-2016: 1 -I, [2020-03-04T15:27:40.953996 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.954470 #5086] INFO -- py3-windows-server-2016: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -I, [2020-03-04T15:27:40.954989 #5086] INFO -- py3-windows-server-2016: Function: reg.present -I, [2020-03-04T15:27:40.955474 #5086] INFO -- py3-windows-server-2016: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:27:40.956002 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.956476 #5086] INFO -- py3-windows-server-2016: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:27:40.956952 #5086] INFO -- py3-windows-server-2016: Started: 12:25:44.961277 -I, [2020-03-04T15:27:40.957394 #5086] INFO -- py3-windows-server-2016: Duration: 437.686 ms -I, [2020-03-04T15:27:40.957881 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.958324 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.958778 #5086] INFO -- py3-windows-server-2016: reg: -I, [2020-03-04T15:27:40.959249 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.959727 #5086] INFO -- py3-windows-server-2016: Added: -I, [2020-03-04T15:27:40.960225 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.960686 #5086] INFO -- py3-windows-server-2016: Entry: -I, [2020-03-04T15:27:40.961168 #5086] INFO -- py3-windows-server-2016: SystemDefaultTlsVersions -I, [2020-03-04T15:27:40.961632 #5086] INFO -- py3-windows-server-2016: Inheritance: -I, [2020-03-04T15:27:40.962120 #5086] INFO -- py3-windows-server-2016: True -I, [2020-03-04T15:27:40.962589 #5086] INFO -- py3-windows-server-2016: Key: -I, [2020-03-04T15:27:40.963097 #5086] INFO -- py3-windows-server-2016: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:27:40.963574 #5086] INFO -- py3-windows-server-2016: Owner: -I, [2020-03-04T15:27:40.964058 #5086] INFO -- py3-windows-server-2016: None -I, [2020-03-04T15:27:40.971487 #5086] INFO -- py3-windows-server-2016: Perms: -I, [2020-03-04T15:27:40.972102 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.972589 #5086] INFO -- py3-windows-server-2016: Deny: -I, [2020-03-04T15:27:40.972994 #5086] INFO -- py3-windows-server-2016: None -I, [2020-03-04T15:27:40.973391 #5086] INFO -- py3-windows-server-2016: Grant: -I, [2020-03-04T15:27:40.973745 #5086] INFO -- py3-windows-server-2016: None -I, [2020-03-04T15:27:40.974090 #5086] INFO -- py3-windows-server-2016: Value: -I, [2020-03-04T15:27:40.974471 #5086] INFO -- py3-windows-server-2016: 1 -I, [2020-03-04T15:27:40.974890 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.975295 #5086] INFO -- py3-windows-server-2016: ID: manually.update_git_repo-ng -I, [2020-03-04T15:27:40.975673 #5086] INFO -- py3-windows-server-2016: Function: archive.extracted -I, [2020-03-04T15:27:40.976053 #5086] INFO -- py3-windows-server-2016: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -I, [2020-03-04T15:27:40.976472 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:40.978407 #5086] INFO -- py3-windows-server-2016: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs -I, [2020-03-04T15:27:40.979043 #5086] INFO -- py3-windows-server-2016: Started: 12:25:45.398963 -I, [2020-03-04T15:27:40.979581 #5086] INFO -- py3-windows-server-2016: Duration: 906.624 ms -I, [2020-03-04T15:27:40.980060 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:40.980548 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:40.981148 #5086] INFO -- py3-windows-server-2016: directories_created: -I, [2020-03-04T15:27:40.981950 #5086] INFO -- py3-windows-server-2016: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -I, [2020-03-04T15:27:40.982525 #5086] INFO -- py3-windows-server-2016: extracted_files: -I, [2020-03-04T15:27:40.983167 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ -I, [2020-03-04T15:27:40.983677 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.gitignore -I, [2020-03-04T15:27:40.984154 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis.yml -I, [2020-03-04T15:27:40.984864 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis/ -I, [2020-03-04T15:27:40.985587 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis/requirements.txt -I, [2020-03-04T15:27:40.986148 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis/tests.py -I, [2020-03-04T15:27:40.986749 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/7zip.sls -I, [2020-03-04T15:27:40.987321 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/LICENSE -I, [2020-03-04T15:27:40.987886 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/README.md -I, [2020-03-04T15:27:40.988380 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/_config.yml -I, [2020-03-04T15:27:40.988842 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/activeperl_x64.sls -I, [2020-03-04T15:27:40.989295 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/activeperl_x86.sls -I, [2020-03-04T15:27:40.989776 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobeair.sls -I, [2020-03-04T15:27:40.990390 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobereader-dc-classic.sls -I, [2020-03-04T15:27:40.991028 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobereader-xi.sls -I, [2020-03-04T15:27:40.991655 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobereader.sls -I, [2020-03-04T15:27:40.992273 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobeshockwaveplayer.sls -I, [2020-03-04T15:27:40.992845 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adv-ip-scanner.sls -I, [2020-03-04T15:27:40.993443 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adv-port-scanner.sls -I, [2020-03-04T15:27:40.994035 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/advancedlogging.sls -I, [2020-03-04T15:27:40.994657 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/anydesk-msi.sls -I, [2020-03-04T15:27:40.995262 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/anydesk.sls -I, [2020-03-04T15:27:40.995843 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/applicationrequestrouting.sls -I, [2020-03-04T15:27:40.996432 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/aspnet-mvc1.sls -I, [2020-03-04T15:27:40.997062 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/atom.sls -I, [2020-03-04T15:27:40.998158 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/audacity.sls -I, [2020-03-04T15:27:40.999405 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/ -I, [2020-03-04T15:27:41.000351 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/init.sls -I, [2020-03-04T15:27:41.000885 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/install.cmd -I, [2020-03-04T15:27:41.001290 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/install.ps1 -I, [2020-03-04T15:27:41.001689 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/remove.cmd -I, [2020-03-04T15:27:41.002252 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/autohotkey.sls -I, [2020-03-04T15:27:41.002834 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/autoit.sls -I, [2020-03-04T15:27:41.003450 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/autopsy.sls -I, [2020-03-04T15:27:41.004055 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/awscli.sls -I, [2020-03-04T15:27:41.004626 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/azuredatastudio.sls -I, [2020-03-04T15:27:41.005205 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bandizip.sls -I, [2020-03-04T15:27:41.005813 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/belarc-advisor.sls -I, [2020-03-04T15:27:41.006396 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bginfo4x.sls -I, [2020-03-04T15:27:41.007007 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bitnami-nginxstack.sls -I, [2020-03-04T15:27:41.007590 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bitvise.sls -I, [2020-03-04T15:27:41.008195 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/blender.sls -I, [2020-03-04T15:27:41.008808 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bootracer.sls -I, [2020-03-04T15:27:41.009391 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bulk_extractor.sls -I, [2020-03-04T15:27:41.010032 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bulkrenameutility.sls -I, [2020-03-04T15:27:41.010657 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ccleaner-slim.sls -I, [2020-03-04T15:27:41.011304 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ccleaner.sls -I, [2020-03-04T15:27:41.011806 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cdburnerxp.sls -I, [2020-03-04T15:27:41.012268 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cdroller.sls -I, [2020-03-04T15:27:41.012712 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/check-mk-agent-msi.sls -I, [2020-03-04T15:27:41.013249 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/check-mk-agent.sls -I, [2020-03-04T15:27:41.013845 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/ -I, [2020-03-04T15:27:41.014427 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/init.sls -I, [2020-03-04T15:27:41.015015 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/install.cmd -I, [2020-03-04T15:27:41.015487 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/uninstall.cmd -I, [2020-03-04T15:27:41.015888 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 -I, [2020-03-04T15:27:41.016298 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chrome-rdp.sls -I, [2020-03-04T15:27:41.016733 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chrome.sls -I, [2020-03-04T15:27:41.017159 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/clamav.sls -I, [2020-03-04T15:27:41.017699 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/clamwin.sls -I, [2020-03-04T15:27:41.018260 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/classicshell.sls -I, [2020-03-04T15:27:41.018842 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/clink.sls -I, [2020-03-04T15:27:41.019384 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/conemu.sls -I, [2020-03-04T15:27:41.019969 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cpu-z.sls -I, [2020-03-04T15:27:41.020557 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/curl.sls -I, [2020-03-04T15:27:41.021124 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cyberduck-cli.sls -I, [2020-03-04T15:27:41.021702 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cyberduck-msi.sls -I, [2020-03-04T15:27:41.022255 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cyberduck.sls -I, [2020-03-04T15:27:41.022839 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/defraggler.sls -I, [2020-03-04T15:27:41.023442 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/docs/ -I, [2020-03-04T15:27:41.024014 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/docs/ReadMe.md -I, [2020-03-04T15:27:41.024598 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/dotnet.sls -I, [2020-03-04T15:27:41.025139 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/dropbox.sls -I, [2020-03-04T15:27:41.025705 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/duplicati.sls -I, [2020-03-04T15:27:41.026297 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/dvdstyler.sls -I, [2020-03-04T15:27:41.026874 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/echo-desktop.sls -I, [2020-03-04T15:27:41.027459 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/eea.sls -I, [2020-03-04T15:27:41.028003 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/emet.sls -I, [2020-03-04T15:27:41.028569 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/emsisoft-anti-malware.sls -I, [2020-03-04T15:27:41.029055 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/eraser.sls -I, [2020-03-04T15:27:41.029590 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/erlang/ -I, [2020-03-04T15:27:41.030084 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/erlang/init.sls -I, [2020-03-04T15:27:41.030523 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/erlang/install.cmd -I, [2020-03-04T15:27:41.031039 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/evernote.sls -I, [2020-03-04T15:27:41.031600 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/fiddler.sls -I, [2020-03-04T15:27:41.032188 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/ -I, [2020-03-04T15:27:41.032762 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/init.sls -I, [2020-03-04T15:27:41.033338 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/install.cmd -I, [2020-03-04T15:27:41.033890 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/install.ps1 -I, [2020-03-04T15:27:41.034459 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/remove.cmd -I, [2020-03-04T15:27:41.035031 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filehippo-app-manager.sls -I, [2020-03-04T15:27:41.035628 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filezilla.sls -I, [2020-03-04T15:27:41.036254 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox-esr_x64.sls -I, [2020-03-04T15:27:41.036824 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox-esr_x86.sls -I, [2020-03-04T15:27:41.037358 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox_x64.sls -I, [2020-03-04T15:27:41.037928 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox_x86.sls -I, [2020-03-04T15:27:41.038519 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/ -I, [2020-03-04T15:27:41.039120 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/init.sls -I, [2020-03-04T15:27:41.039689 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/install.cmd -I, [2020-03-04T15:27:41.040270 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/install.ps1 -I, [2020-03-04T15:27:41.040816 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/remove.cmd -I, [2020-03-04T15:27:41.041446 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gedit.sls -I, [2020-03-04T15:27:41.042056 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gimp.sls -I, [2020-03-04T15:27:41.042632 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/git-extensions.sls -I, [2020-03-04T15:27:41.043235 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/git.sls -I, [2020-03-04T15:27:41.043807 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls -I, [2020-03-04T15:27:41.044396 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gnucash.sls -I, [2020-03-04T15:27:41.044964 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/golang.sls -I, [2020-03-04T15:27:41.045509 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/goodsync.sls -I, [2020-03-04T15:27:41.046084 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gow.sls -I, [2020-03-04T15:27:41.046645 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win-light.sls -I, [2020-03-04T15:27:41.047247 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win-vanilla.sls -I, [2020-03-04T15:27:41.047863 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win/ -I, [2020-03-04T15:27:41.048435 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win/init.sls -I, [2020-03-04T15:27:41.049035 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win/silent.ini -I, [2020-03-04T15:27:41.049622 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/graylog-collector-sidecar.sls -I, [2020-03-04T15:27:41.050237 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/grepwin.sls -I, [2020-03-04T15:27:41.050878 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gvim.sls -I, [2020-03-04T15:27:41.051488 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/handbrake.sls -I, [2020-03-04T15:27:41.052117 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/ -I, [2020-03-04T15:27:41.052718 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp -I, [2020-03-04T15:27:41.053324 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/init.sls -I, [2020-03-04T15:27:41.053952 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/install.cmd -I, [2020-03-04T15:27:41.054497 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/install.ps1 -I, [2020-03-04T15:27:41.055022 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/remove.cmd -I, [2020-03-04T15:27:41.055475 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/hipchat.sls -I, [2020-03-04T15:27:41.055899 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/hostsfileeditor.sls -I, [2020-03-04T15:27:41.056333 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/hwinfo.sls -I, [2020-03-04T15:27:41.056859 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ice.sls -I, [2020-03-04T15:27:41.057350 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/icecast.sls -I, [2020-03-04T15:27:41.057825 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/icloud.sls -I, [2020-03-04T15:27:41.058359 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/iismediaservices.sls -I, [2020-03-04T15:27:41.058954 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/influx-capacitor.sls -I, [2020-03-04T15:27:41.059557 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/inkscape.sls -I, [2020-03-04T15:27:41.060163 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/intellij-community.sls -I, [2020-03-04T15:27:41.060801 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/intellij-ultimate.sls -I, [2020-03-04T15:27:41.061393 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/internet-evidence-finder.sls -I, [2020-03-04T15:27:41.061999 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/irfanview-plugins.sls -I, [2020-03-04T15:27:41.062486 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/irfanview.sls -I, [2020-03-04T15:27:41.063008 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/isapirewrite-lite.sls -I, [2020-03-04T15:27:41.063515 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/itunes.sls -I, [2020-03-04T15:27:41.063984 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jdk8.sls -I, [2020-03-04T15:27:41.064424 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jre.sls -I, [2020-03-04T15:27:41.064873 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jre8.sls -I, [2020-03-04T15:27:41.065472 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jungledisk-server-management.sls -I, [2020-03-04T15:27:41.065928 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jungledisk-server.sls -I, [2020-03-04T15:27:41.066377 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jungledisk-workgroup.sls -I, [2020-03-04T15:27:41.066810 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/kdiff3.sls -I, [2020-03-04T15:27:41.067237 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/keepass-2x.sls -I, [2020-03-04T15:27:41.067728 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/keepass.sls -I, [2020-03-04T15:27:41.068227 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/lastpass.sls -I, [2020-03-04T15:27:41.068653 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/lazarus.sls -I, [2020-03-04T15:27:41.069256 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/libreoffice.sls -I, [2020-03-04T15:27:41.069747 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/logparser.sls -I, [2020-03-04T15:27:41.070326 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/maas360bootanalyzer.sls -I, [2020-03-04T15:27:41.070835 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/malwarebytes.sls -I, [2020-03-04T15:27:41.071278 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mariadb.sls -I, [2020-03-04T15:27:41.071706 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mercurial.sls -I, [2020-03-04T15:27:41.072137 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/messageanalyzer.sls -I, [2020-03-04T15:27:41.072630 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/ -I, [2020-03-04T15:27:41.073101 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp -I, [2020-03-04T15:27:41.073540 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/init.sls -I, [2020-03-04T15:27:41.073972 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/install.cmd -I, [2020-03-04T15:27:41.074373 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/install.ps1 -I, [2020-03-04T15:27:41.074831 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/remove.cmd -I, [2020-03-04T15:27:41.075377 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/microsoft-build-tools.sls -I, [2020-03-04T15:27:41.075798 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mikogo.sls -I, [2020-03-04T15:27:41.076225 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/miktex-basic.sls -I, [2020-03-04T15:27:41.076632 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mongodb.sls -I, [2020-03-04T15:27:41.077159 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-mbsa.sls -I, [2020-03-04T15:27:41.077636 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls -I, [2020-03-04T15:27:41.078093 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls -I, [2020-03-04T15:27:41.078551 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls -I, [2020-03-04T15:27:41.079015 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls -I, [2020-03-04T15:27:41.079574 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:27:41.080069 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:27:41.080543 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls -I, [2020-03-04T15:27:41.081011 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls -I, [2020-03-04T15:27:41.081490 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls -I, [2020-03-04T15:27:41.081997 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls -I, [2020-03-04T15:27:41.082637 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls -I, [2020-03-04T15:27:41.083230 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls -I, [2020-03-04T15:27:41.083836 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:27:41.084508 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:27:41.085167 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls -I, [2020-03-04T15:27:41.085813 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:27:41.086448 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls -I, [2020-03-04T15:27:41.087072 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls -I, [2020-03-04T15:27:41.087702 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls -I, [2020-03-04T15:27:41.088366 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls -I, [2020-03-04T15:27:41.088968 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls -I, [2020-03-04T15:27:41.089541 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls -I, [2020-03-04T15:27:41.090175 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls -I, [2020-03-04T15:27:41.090799 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls -I, [2020-03-04T15:27:41.091416 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls -I, [2020-03-04T15:27:41.092032 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mucommander.sls -I, [2020-03-04T15:27:41.092613 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mysql-essential.sls -I, [2020-03-04T15:27:41.093218 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mysql-installer-community.sls -I, [2020-03-04T15:27:41.093805 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mysql-workbench.sls -I, [2020-03-04T15:27:41.094381 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/never10.sls -I, [2020-03-04T15:27:41.095005 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/newrelic-infra.sls -I, [2020-03-04T15:27:41.095584 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nextcloud-client.sls -I, [2020-03-04T15:27:41.096092 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nmap.sls -I, [2020-03-04T15:27:41.096611 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/node.js-lts.sls -I, [2020-03-04T15:27:41.097044 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/node.js.sls -I, [2020-03-04T15:27:41.097577 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nomacs.sls -I, [2020-03-04T15:27:41.098181 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/npp.sls -I, [2020-03-04T15:27:41.098805 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nsclient.sls -I, [2020-03-04T15:27:41.099372 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nsis.sls -I, [2020-03-04T15:27:41.099976 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ntp.sls -I, [2020-03-04T15:27:41.100569 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nunit-console.sls -I, [2020-03-04T15:27:41.101137 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nxlog.sls -I, [2020-03-04T15:27:41.101645 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/octopus-tentacle.sls -I, [2020-03-04T15:27:41.102180 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/openlp.sls -I, [2020-03-04T15:27:41.102634 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/openoffice.sls -I, [2020-03-04T15:27:41.103047 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/openvpn.sls -I, [2020-03-04T15:27:41.103493 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/osquery.sls -I, [2020-03-04T15:27:41.104000 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ossec-agent.sls -I, [2020-03-04T15:27:41.104527 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/owncloud.sls -I, [2020-03-04T15:27:41.104985 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/ -I, [2020-03-04T15:27:41.105454 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/init.sls -I, [2020-03-04T15:27:41.105922 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/install.cmd -I, [2020-03-04T15:27:41.106417 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/install.ps1 -I, [2020-03-04T15:27:41.106850 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/remove.cmd -I, [2020-03-04T15:27:41.107274 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pandoc.sls -I, [2020-03-04T15:27:41.107673 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/parallels-client-15.sls -I, [2020-03-04T15:27:41.108102 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pass4win.sls -I, [2020-03-04T15:27:41.108604 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/passware-kit-agent.sls -I, [2020-03-04T15:27:41.115706 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/passware-kit-forensic.sls -I, [2020-03-04T15:27:41.116485 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/patchmypc-free.sls -I, [2020-03-04T15:27:41.117173 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pdf24creator.sls -I, [2020-03-04T15:27:41.117799 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pdfcreator.sls -I, [2020-03-04T15:27:41.118434 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/peazip.sls -I, [2020-03-04T15:27:41.119046 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pgadmin4.sls -I, [2020-03-04T15:27:41.119660 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pgina.sls -I, [2020-03-04T15:27:41.120296 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pidgin.sls -I, [2020-03-04T15:27:41.120902 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/postgresql.sls -I, [2020-03-04T15:27:41.121529 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/powerbi-desktop.sls -I, [2020-03-04T15:27:41.122152 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/powershell-core.sls -I, [2020-03-04T15:27:41.122782 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls -I, [2020-03-04T15:27:41.123427 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/putty.sls -I, [2020-03-04T15:27:41.124046 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/ -I, [2020-03-04T15:27:41.124644 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/init.sls -I, [2020-03-04T15:27:41.125262 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/silent.config -I, [2020-03-04T15:27:41.127462 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python2_x64.sls -I, [2020-03-04T15:27:41.128058 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python2_x86.sls -I, [2020-03-04T15:27:41.128681 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python3_x64.sls -I, [2020-03-04T15:27:41.129167 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python3_x86.sls -I, [2020-03-04T15:27:41.129596 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/qemu.sls -I, [2020-03-04T15:27:41.129985 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/queueexplorerpro.sls -I, [2020-03-04T15:27:41.130419 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/quicktime.sls -I, [2020-03-04T15:27:41.130921 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rabbitmq.sls -I, [2020-03-04T15:27:41.131375 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls -I, [2020-03-04T15:27:41.131807 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rakudo-star_x64.sls -I, [2020-03-04T15:27:41.132195 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rasclient.sls -I, [2020-03-04T15:27:41.132637 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rdcman.sls -I, [2020-03-04T15:27:41.133142 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rocketchat.sls -I, [2020-03-04T15:27:41.133616 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rubyinstaller_x64.sls -I, [2020-03-04T15:27:41.134027 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rubyinstaller_x86.sls -I, [2020-03-04T15:27:41.134589 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/salt-minion-py2.sls -I, [2020-03-04T15:27:41.135155 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/salt-minion-py3.sls -I, [2020-03-04T15:27:41.135601 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sandboxie.sls -I, [2020-03-04T15:27:41.136038 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/scaleout.sls -I, [2020-03-04T15:27:41.136512 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/secunia.psi.sls -I, [2020-03-04T15:27:41.137021 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sensu.sls -I, [2020-03-04T15:27:41.137478 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sharpdevelop.sls -I, [2020-03-04T15:27:41.137908 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/skitch.sls -I, [2020-03-04T15:27:41.138301 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/skype-msi.sls -I, [2020-03-04T15:27:41.138698 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/skype.sls -I, [2020-03-04T15:27:41.139118 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/slack-machine-msi.sls -I, [2020-03-04T15:27:41.139624 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/slack-user-msi.sls -I, [2020-03-04T15:27:41.140078 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/slack.sls -I, [2020-03-04T15:27:41.140476 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/smartmontools.sls -I, [2020-03-04T15:27:41.140849 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/snmptools.sls -I, [2020-03-04T15:27:41.141277 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/soapui.sls -I, [2020-03-04T15:27:41.141848 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/software-informer.sls -I, [2020-03-04T15:27:41.142482 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sourcetree.sls -I, [2020-03-04T15:27:41.143083 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/spybot-anti-beacon.sls -I, [2020-03-04T15:27:41.143696 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/spybot.sls -I, [2020-03-04T15:27:41.144325 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sscserv-free.sls -I, [2020-03-04T15:27:41.144989 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stayawake/ -I, [2020-03-04T15:27:41.145621 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stayawake/init.sls -I, [2020-03-04T15:27:41.146168 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stayawake/install.cmd -I, [2020-03-04T15:27:41.146607 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/steam.sls -I, [2020-03-04T15:27:41.147017 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stellarium.sls -I, [2020-03-04T15:27:41.147458 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/strawberryperl_x64.sls -I, [2020-03-04T15:27:41.148042 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/strawberryperl_x86.sls -I, [2020-03-04T15:27:41.148524 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stunnel.sls -I, [2020-03-04T15:27:41.148985 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/subinacl.sls -I, [2020-03-04T15:27:41.149428 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sumatrapdf.sls -I, [2020-03-04T15:27:41.149934 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/svn.sls -I, [2020-03-04T15:27:41.150507 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/teamviewer.sls -I, [2020-03-04T15:27:41.151110 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/teamviewer_host.sls -I, [2020-03-04T15:27:41.151563 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/teracopy.sls -I, [2020-03-04T15:27:41.151981 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texmaker.sls -I, [2020-03-04T15:27:41.152539 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texniccenter.sls -I, [2020-03-04T15:27:41.153035 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texstudio.sls -I, [2020-03-04T15:27:41.153448 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texworks.sls -I, [2020-03-04T15:27:41.153842 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/thunderbird.sls -I, [2020-03-04T15:27:41.154235 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tightvnc.sls -I, [2020-03-04T15:27:41.154612 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/todotxt.net.sls -I, [2020-03-04T15:27:41.155037 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/todour.sls -I, [2020-03-04T15:27:41.155543 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-bzr.sls -I, [2020-03-04T15:27:41.155974 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-git.sls -I, [2020-03-04T15:27:41.156345 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-hg.sls -I, [2020-03-04T15:27:41.156719 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-svn.sls -I, [2020-03-04T15:27:41.157267 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/truecrypt.sls -I, [2020-03-04T15:27:41.157773 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ultradefrag.sls -I, [2020-03-04T15:27:41.158177 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/urlrewrite.sls -I, [2020-03-04T15:27:41.158556 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/usbdlm.sls -I, [2020-03-04T15:27:41.158982 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vagrant.sls -I, [2020-03-04T15:27:41.159485 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vcforpython27.sls -I, [2020-03-04T15:27:41.159907 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vcxsrv.sls -I, [2020-03-04T15:27:41.160285 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/verysleepy.sls -I, [2020-03-04T15:27:41.160693 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/veyon.sls -I, [2020-03-04T15:27:41.161086 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/virtualbox.sls -I, [2020-03-04T15:27:41.161507 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/viscosity.sls -I, [2020-03-04T15:27:41.162002 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vivaldi.sls -I, [2020-03-04T15:27:41.162457 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vlc.sls -I, [2020-03-04T15:27:41.162854 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vs-community.sls -I, [2020-03-04T15:27:41.163225 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vs_remotetools_2017.sls -I, [2020-03-04T15:27:41.163744 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vscode.sls -I, [2020-03-04T15:27:41.164257 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vsee.sls -I, [2020-03-04T15:27:41.164816 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wamp-server-3.sls -I, [2020-03-04T15:27:41.165233 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wamp-stack.sls -I, [2020-03-04T15:27:41.165627 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/webdeploy.sls -I, [2020-03-04T15:27:41.166074 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/webplatforminstaller.sls -I, [2020-03-04T15:27:41.166682 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/win-app-manager.sls -I, [2020-03-04T15:27:41.167173 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/windirstat.sls -I, [2020-03-04T15:27:41.167751 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winhttpcertcfg.sls -I, [2020-03-04T15:27:41.168425 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/ -I, [2020-03-04T15:27:41.169090 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/init.sls -I, [2020-03-04T15:27:41.169642 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/install.cmd -I, [2020-03-04T15:27:41.170129 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/install.ps1 -I, [2020-03-04T15:27:41.170561 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/remove.cmd -I, [2020-03-04T15:27:41.171128 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winmerge.sls -I, [2020-03-04T15:27:41.171690 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winmtr.sls -I, [2020-03-04T15:27:41.172181 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winpcap.sls -I, [2020-03-04T15:27:41.172690 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winrar.sls -I, [2020-03-04T15:27:41.173348 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winscp.sls -I, [2020-03-04T15:27:41.173980 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wireshark.sls -I, [2020-03-04T15:27:41.174584 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/ -I, [2020-03-04T15:27:41.175152 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/README.md -I, [2020-03-04T15:27:41.175631 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/answer.txt -I, [2020-03-04T15:27:41.176130 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/init.sls -I, [2020-03-04T15:27:41.176698 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/majsetup.reg -I, [2020-03-04T15:27:41.177259 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wscc.sls -I, [2020-03-04T15:27:41.177776 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wufuc.sls -I, [2020-03-04T15:27:41.178211 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/xampp.sls -I, [2020-03-04T15:27:41.178691 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/xming.sls -I, [2020-03-04T15:27:41.179177 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/yubikey-manager.sls -I, [2020-03-04T15:27:41.179631 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/yubikey-personalization-tool.sls -I, [2020-03-04T15:27:41.180063 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zabbix-agent.sls -I, [2020-03-04T15:27:41.180476 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/ -I, [2020-03-04T15:27:41.180978 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/init.sls -I, [2020-03-04T15:27:41.181450 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic -I, [2020-03-04T15:27:41.181926 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic -I, [2020-03-04T15:27:41.182345 #5086] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zoom.sls -I, [2020-03-04T15:27:41.182754 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.183155 #5086] INFO -- py3-windows-server-2016: ID: rename-extract -I, [2020-03-04T15:27:41.183635 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:41.184040 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.184445 #5086] INFO -- py3-windows-server-2016: Comment: file.rename: True -I, [2020-03-04T15:27:41.184837 #5086] INFO -- py3-windows-server-2016: Started: 12:25:46.305587 -I, [2020-03-04T15:27:41.185284 #5086] INFO -- py3-windows-server-2016: Duration: 0.0 ms -I, [2020-03-04T15:27:41.185747 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.186153 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.186569 #5086] INFO -- py3-windows-server-2016: file.rename: -I, [2020-03-04T15:27:41.186968 #5086] INFO -- py3-windows-server-2016: True -I, [2020-03-04T15:27:41.187421 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.187877 #5086] INFO -- py3-windows-server-2016: ID: pkg.refresh_db -I, [2020-03-04T15:27:41.188291 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:41.188672 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.189082 #5086] INFO -- py3-windows-server-2016: Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" -I, [2020-03-04T15:27:41.189581 #5086] INFO -- py3-windows-server-2016: check_cmd determined the state succeeded -I, [2020-03-04T15:27:41.190035 #5086] INFO -- py3-windows-server-2016: Started: 12:25:46.321217 -I, [2020-03-04T15:27:41.190448 #5086] INFO -- py3-windows-server-2016: Duration: 17082.682999999997 ms -I, [2020-03-04T15:27:41.190841 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.191378 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.191884 #5086] INFO -- py3-windows-server-2016: pkg.refresh_db: -I, [2020-03-04T15:27:41.192330 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.192735 #5086] INFO -- py3-windows-server-2016: failed: -I, [2020-03-04T15:27:41.193156 #5086] INFO -- py3-windows-server-2016: 0 -I, [2020-03-04T15:27:41.193614 #5086] INFO -- py3-windows-server-2016: success: -I, [2020-03-04T15:27:41.194054 #5086] INFO -- py3-windows-server-2016: 298 -I, [2020-03-04T15:27:41.194489 #5086] INFO -- py3-windows-server-2016: total: -I, [2020-03-04T15:27:41.194903 #5086] INFO -- py3-windows-server-2016: 298 -I, [2020-03-04T15:27:41.195310 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.195719 #5086] INFO -- py3-windows-server-2016: ID: git -I, [2020-03-04T15:27:41.196175 #5086] INFO -- py3-windows-server-2016: Function: pkg.installed -I, [2020-03-04T15:27:41.196621 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.286055 #5086] INFO -- py3-windows-server-2016: Comment: The following packages were installed/updated: git -I, [2020-03-04T15:27:41.286546 #5086] INFO -- py3-windows-server-2016: Started: 12:26:03.403504 -I, [2020-03-04T15:27:41.286951 #5086] INFO -- py3-windows-server-2016: Duration: 17877.496 ms -I, [2020-03-04T15:27:41.287344 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.287790 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.288149 #5086] INFO -- py3-windows-server-2016: git: -I, [2020-03-04T15:27:41.288550 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.288916 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:41.289255 #5086] INFO -- py3-windows-server-2016: 2.23.0.windows.1 -I, [2020-03-04T15:27:41.289591 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:41.289933 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.290299 #5086] INFO -- py3-windows-server-2016: ID: kdiff3 -I, [2020-03-04T15:27:41.290663 #5086] INFO -- py3-windows-server-2016: Function: pkg.installed -I, [2020-03-04T15:27:41.291019 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.291483 #5086] INFO -- py3-windows-server-2016: Comment: The following packages were installed/updated: kdiff3 -I, [2020-03-04T15:27:41.291875 #5086] INFO -- py3-windows-server-2016: Started: 12:26:21.296622 -I, [2020-03-04T15:27:41.292205 #5086] INFO -- py3-windows-server-2016: Duration: 10928.453 ms -I, [2020-03-04T15:27:41.292534 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.292883 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.293214 #5086] INFO -- py3-windows-server-2016: kdiff3: -I, [2020-03-04T15:27:41.293624 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.293978 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:41.294397 #5086] INFO -- py3-windows-server-2016: Not Found -I, [2020-03-04T15:27:41.294802 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:41.295130 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.295475 #5086] INFO -- py3-windows-server-2016: ID: 7zip -I, [2020-03-04T15:27:41.295844 #5086] INFO -- py3-windows-server-2016: Function: pkg.installed -I, [2020-03-04T15:27:41.296176 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.296560 #5086] INFO -- py3-windows-server-2016: Comment: The following packages were installed/updated: 7zip=18.06.00.0 -I, [2020-03-04T15:27:41.296941 #5086] INFO -- py3-windows-server-2016: Started: 12:26:32.241800 -I, [2020-03-04T15:27:41.297415 #5086] INFO -- py3-windows-server-2016: Duration: 10215.082 ms -I, [2020-03-04T15:27:41.297764 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.298122 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.298478 #5086] INFO -- py3-windows-server-2016: 7zip: -I, [2020-03-04T15:27:41.298821 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.299262 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:41.299655 #5086] INFO -- py3-windows-server-2016: 18.06.00.0 -I, [2020-03-04T15:27:41.299993 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:41.300365 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.300726 #5086] INFO -- py3-windows-server-2016: ID: windows_environment.refresh.path -I, [2020-03-04T15:27:41.301117 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:41.301492 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.301823 #5086] INFO -- py3-windows-server-2016: Comment: windows_environment.refresh: Success -I, [2020-03-04T15:27:41.302153 #5086] INFO -- py3-windows-server-2016: Started: 12:26:42.456882 -I, [2020-03-04T15:27:41.302494 #5086] INFO -- py3-windows-server-2016: Duration: 46.874 ms -I, [2020-03-04T15:27:41.302847 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.303222 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.303638 #5086] INFO -- py3-windows-server-2016: windows_environment.refresh: -I, [2020-03-04T15:27:41.304034 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.304390 #5086] INFO -- py3-windows-server-2016: PATH: -I, [2020-03-04T15:27:41.304747 #5086] INFO -- py3-windows-server-2016: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd -I, [2020-03-04T15:27:41.305081 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.305430 #5086] INFO -- py3-windows-server-2016: ID: chocolatey.bootstrap -I, [2020-03-04T15:27:41.305815 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:41.306188 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.306601 #5086] INFO -- py3-windows-server-2016: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:27:41.306933 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.307300 #5086] INFO -- py3-windows-server-2016: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:27:41.307594 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.307938 #5086] INFO -- py3-windows-server-2016: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:27:41.308255 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.308649 #5086] INFO -- py3-windows-server-2016: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:27:41.309015 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.309435 #5086] INFO -- py3-windows-server-2016: Installing chocolatey on this machine -I, [2020-03-04T15:27:41.309811 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.310192 #5086] INFO -- py3-windows-server-2016: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:27:41.310581 #5086] INFO -- py3-windows-server-2016: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:27:41.310910 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.311276 #5086] INFO -- py3-windows-server-2016: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:27:41.311617 #5086] INFO -- py3-windows-server-2016: before you can use choco. -I, [2020-03-04T15:27:41.319537 #5086] INFO -- py3-windows-server-2016: Restricting write permissions to Administrators -I, [2020-03-04T15:27:41.320195 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.320749 #5086] INFO -- py3-windows-server-2016: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:27:41.321149 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.321538 #5086] INFO -- py3-windows-server-2016: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:27:41.321899 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.322295 #5086] INFO -- py3-windows-server-2016: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:27:41.322629 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.323135 #5086] INFO -- py3-windows-server-2016: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:27:41.323495 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.323893 #5086] INFO -- py3-windows-server-2016: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:27:41.324216 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.324633 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.325060 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.325474 #5086] INFO -- py3-windows-server-2016: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:27:41.325842 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.326190 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.326573 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.327073 #5086] INFO -- py3-windows-server-2016: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:27:41.327484 #5086] INFO -- py3-windows-server-2016: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:27:41.327882 #5086] INFO -- py3-windows-server-2016: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:27:41.328272 #5086] INFO -- py3-windows-server-2016: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:27:41.328669 #5086] INFO -- py3-windows-server-2016: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:27:41.329089 #5086] INFO -- py3-windows-server-2016: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:27:41.329496 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.329915 #5086] INFO -- py3-windows-server-2016: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:27:41.330284 #5086] INFO -- py3-windows-server-2016: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:27:41.330628 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.331072 #5086] INFO -- py3-windows-server-2016: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:27:41.331553 #5086] INFO -- py3-windows-server-2016: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:27:41.331923 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.332322 #5086] INFO -- py3-windows-server-2016: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:27:41.332758 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.333248 #5086] INFO -- py3-windows-server-2016: Run choco /? for a list of functions. -I, [2020-03-04T15:27:41.333640 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.334003 #5086] INFO -- py3-windows-server-2016: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:27:41.334326 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.334726 #5086] INFO -- py3-windows-server-2016: first prior to using choco. -I, [2020-03-04T15:27:41.335128 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.335524 #5086] INFO -- py3-windows-server-2016: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:27:41.335897 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.336256 #5086] INFO -- py3-windows-server-2016: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:27:41.336653 #5086] INFO -- py3-windows-server-2016: Started: 12:26:42.503756 -I, [2020-03-04T15:27:41.337059 #5086] INFO -- py3-windows-server-2016: Duration: 19218.704 ms -I, [2020-03-04T15:27:41.337547 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.338065 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.338511 #5086] INFO -- py3-windows-server-2016: chocolatey.bootstrap: -I, [2020-03-04T15:27:41.339005 #5086] INFO -- py3-windows-server-2016: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:27:41.339461 #5086] INFO -- py3-windows-server-2016: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:27:41.339963 #5086] INFO -- py3-windows-server-2016: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:27:41.340390 #5086] INFO -- py3-windows-server-2016: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:27:41.340772 #5086] INFO -- py3-windows-server-2016: Installing chocolatey on this machine -I, [2020-03-04T15:27:41.341200 #5086] INFO -- py3-windows-server-2016: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:27:41.341791 #5086] INFO -- py3-windows-server-2016: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:27:41.342327 #5086] INFO -- py3-windows-server-2016: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:27:41.342825 #5086] INFO -- py3-windows-server-2016: before you can use choco. -I, [2020-03-04T15:27:41.343211 #5086] INFO -- py3-windows-server-2016: Restricting write permissions to Administrators -I, [2020-03-04T15:27:41.343597 #5086] INFO -- py3-windows-server-2016: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:27:41.343962 #5086] INFO -- py3-windows-server-2016: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:27:41.344446 #5086] INFO -- py3-windows-server-2016: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:27:41.344905 #5086] INFO -- py3-windows-server-2016: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:27:41.345279 #5086] INFO -- py3-windows-server-2016: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:27:41.345646 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.346054 #5086] INFO -- py3-windows-server-2016: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:27:41.346504 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.346929 #5086] INFO -- py3-windows-server-2016: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:27:41.347313 #5086] INFO -- py3-windows-server-2016: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:27:41.347669 #5086] INFO -- py3-windows-server-2016: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:27:41.348080 #5086] INFO -- py3-windows-server-2016: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:27:41.348562 #5086] INFO -- py3-windows-server-2016: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:27:41.348971 #5086] INFO -- py3-windows-server-2016: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:27:41.349358 #5086] INFO -- py3-windows-server-2016: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:27:41.349717 #5086] INFO -- py3-windows-server-2016: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:27:41.350240 #5086] INFO -- py3-windows-server-2016: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:27:41.350679 #5086] INFO -- py3-windows-server-2016: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:27:41.351108 #5086] INFO -- py3-windows-server-2016: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:27:41.351489 #5086] INFO -- py3-windows-server-2016: Run choco /? for a list of functions. -I, [2020-03-04T15:27:41.351923 #5086] INFO -- py3-windows-server-2016: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:27:41.352369 #5086] INFO -- py3-windows-server-2016: first prior to using choco. -I, [2020-03-04T15:27:41.352744 #5086] INFO -- py3-windows-server-2016: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:27:41.353147 #5086] INFO -- py3-windows-server-2016: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:27:41.353479 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.353858 #5086] INFO -- py3-windows-server-2016: ID: windows.system.packages.chocolatey.windirstat -I, [2020-03-04T15:27:41.354330 #5086] INFO -- py3-windows-server-2016: Function: chocolatey.installed -I, [2020-03-04T15:27:41.354882 #5086] INFO -- py3-windows-server-2016: Name: windirstat -I, [2020-03-04T15:27:41.355361 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.355729 #5086] INFO -- py3-windows-server-2016: Comment: -I, [2020-03-04T15:27:41.356085 #5086] INFO -- py3-windows-server-2016: Started: 12:27:01.722460 -I, [2020-03-04T15:27:41.356423 #5086] INFO -- py3-windows-server-2016: Duration: 6102.564 ms -I, [2020-03-04T15:27:41.356867 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.357302 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.357687 #5086] INFO -- py3-windows-server-2016: windirstat: -I, [2020-03-04T15:27:41.358054 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.358426 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:41.358889 #5086] INFO -- py3-windows-server-2016: - 1.1.2.20161210 -I, [2020-03-04T15:27:41.359317 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:41.359663 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.360027 #5086] INFO -- py3-windows-server-2016: ID: windows.system.packages.chocolatey.notepadplusplus -I, [2020-03-04T15:27:41.360407 #5086] INFO -- py3-windows-server-2016: Function: chocolatey.installed -I, [2020-03-04T15:27:41.360878 #5086] INFO -- py3-windows-server-2016: Name: notepadplusplus -I, [2020-03-04T15:27:41.361252 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.361621 #5086] INFO -- py3-windows-server-2016: Comment: -I, [2020-03-04T15:27:41.361974 #5086] INFO -- py3-windows-server-2016: Started: 12:27:07.825024 -I, [2020-03-04T15:27:41.362343 #5086] INFO -- py3-windows-server-2016: Duration: 13032.174 ms -I, [2020-03-04T15:27:41.362758 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.363185 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.363585 #5086] INFO -- py3-windows-server-2016: notepadplusplus: -I, [2020-03-04T15:27:41.364091 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.364502 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:41.364930 #5086] INFO -- py3-windows-server-2016: - 7.8.4 -I, [2020-03-04T15:27:41.365276 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:41.365655 #5086] INFO -- py3-windows-server-2016: notepadplusplus.install: -I, [2020-03-04T15:27:41.366064 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.366446 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:41.366877 #5086] INFO -- py3-windows-server-2016: - 7.8.4 -I, [2020-03-04T15:27:41.367256 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:41.367611 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.367976 #5086] INFO -- py3-windows-server-2016: ID: windows.system.server.features.installed.telnet-client -I, [2020-03-04T15:27:41.368355 #5086] INFO -- py3-windows-server-2016: Function: win_servermanager.installed -I, [2020-03-04T15:27:41.368805 #5086] INFO -- py3-windows-server-2016: Name: telnet-client -I, [2020-03-04T15:27:41.369169 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.369529 #5086] INFO -- py3-windows-server-2016: Comment: Installed the following: -I, [2020-03-04T15:27:41.369886 #5086] INFO -- py3-windows-server-2016: - telnet-client -I, [2020-03-04T15:27:41.370386 #5086] INFO -- py3-windows-server-2016: - Telnet-Client -I, [2020-03-04T15:27:41.370828 #5086] INFO -- py3-windows-server-2016: Started: 12:27:20.857198 -I, [2020-03-04T15:27:41.371181 #5086] INFO -- py3-windows-server-2016: Duration: 20888.338 ms -I, [2020-03-04T15:27:41.371526 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.371881 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.372336 #5086] INFO -- py3-windows-server-2016: Telnet-Client: -I, [2020-03-04T15:27:41.372721 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.373067 #5086] INFO -- py3-windows-server-2016: new: -I, [2020-03-04T15:27:41.373429 #5086] INFO -- py3-windows-server-2016: Telnet Client -I, [2020-03-04T15:27:41.373834 #5086] INFO -- py3-windows-server-2016: old: -I, [2020-03-04T15:27:41.374245 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.374683 #5086] INFO -- py3-windows-server-2016: ID: windows.module.system.reboot -I, [2020-03-04T15:27:41.375044 #5086] INFO -- py3-windows-server-2016: Function: module.run -I, [2020-03-04T15:27:41.375381 #5086] INFO -- py3-windows-server-2016: Result: True -I, [2020-03-04T15:27:41.375735 #5086] INFO -- py3-windows-server-2016: Comment: system.reboot: True -I, [2020-03-04T15:27:41.376098 #5086] INFO -- py3-windows-server-2016: Started: 12:27:41.745536 -I, [2020-03-04T15:27:41.376508 #5086] INFO -- py3-windows-server-2016: Duration: 296.984 ms -I, [2020-03-04T15:27:41.376919 #5086] INFO -- py3-windows-server-2016: Changes: -I, [2020-03-04T15:27:41.377266 #5086] INFO -- py3-windows-server-2016: ---------- -I, [2020-03-04T15:27:41.377625 #5086] INFO -- py3-windows-server-2016: system.reboot: -I, [2020-03-04T15:27:41.377996 #5086] INFO -- py3-windows-server-2016: True -I, [2020-03-04T15:27:41.378384 #5086] INFO -- py3-windows-server-2016: -I, [2020-03-04T15:27:41.378754 #5086] INFO -- py3-windows-server-2016: Summary for local -I, [2020-03-04T15:27:41.379139 #5086] INFO -- py3-windows-server-2016: ------------- -I, [2020-03-04T15:27:41.379515 #5086] INFO -- py3-windows-server-2016: Succeeded: 20 (changed=20) -I, [2020-03-04T15:27:41.379842 #5086] INFO -- py3-windows-server-2016: Failed: 0 -I, [2020-03-04T15:27:41.380212 #5086] INFO -- py3-windows-server-2016: ------------- -I, [2020-03-04T15:27:41.380635 #5086] INFO -- py3-windows-server-2016: Total states run: 20 -I, [2020-03-04T15:27:41.381037 #5086] INFO -- py3-windows-server-2016: Total run time: 129.738 s -I, [2020-03-04T15:27:41.398701 #5086] INFO -- py3-windows-server-2016: Downloading files from -I, [2020-03-04T15:27:41.561669 #5086] INFO -- py3-windows-server-2016: Finished converging (2m51.68s). -I, [2020-03-04T15:27:41.561916 #5086] INFO -- py3-windows-server-2016: -----> Setting up ... -I, [2020-03-04T15:27:41.569068 #5086] INFO -- py3-windows-server-2016: Finished setting up (0m0.00s). -I, [2020-03-04T15:27:41.569252 #5086] INFO -- py3-windows-server-2016: -----> Verifying ... -I, [2020-03-04T15:27:42.552767 #5086] INFO -- py3-windows-server-2016: Loaded default -I, [2020-03-04T15:28:18.832832 #5086] INFO -- py3-windows-server-2016: Finished verifying (0m37.26s). -I, [2020-03-04T15:28:18.834441 #5086] INFO -- py3-windows-server-2016: -----> Destroying ... -I, [2020-03-04T15:28:29.197085 #5086] INFO -- py3-windows-server-2016: ==> default: Forcing shutdown of VM... -I, [2020-03-04T15:28:30.766900 #5086] INFO -- py3-windows-server-2016: ==> default: Destroying VM and associated drives... -I, [2020-03-04T15:28:31.501189 #5086] INFO -- py3-windows-server-2016: Vagrant instance destroyed. -I, [2020-03-04T15:28:31.502620 #5086] INFO -- py3-windows-server-2016: Finished destroying (0m12.67s). -I, [2020-03-04T15:28:31.503699 #5086] INFO -- py3-windows-server-2016: Finished testing (5m21.91s). +I, [2020-03-06T13:26:20.574459 #19339] INFO -- py3-windows-server-2016: -----> Cleaning up any prior instances of +I, [2020-03-06T13:26:20.574687 #19339] INFO -- py3-windows-server-2016: -----> Destroying ... +I, [2020-03-06T13:26:20.576494 #19339] INFO -- py3-windows-server-2016: Finished destroying (0m0.00s). +I, [2020-03-06T13:26:20.578252 #19339] INFO -- py3-windows-server-2016: -----> Testing +I, [2020-03-06T13:26:20.578439 #19339] INFO -- py3-windows-server-2016: -----> Creating ... +I, [2020-03-06T13:26:27.036998 #19339] INFO -- py3-windows-server-2016: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:26:28.128313 #19339] INFO -- py3-windows-server-2016: ==> default: Cloning VM... +I, [2020-03-06T13:26:28.574576 #19339] INFO -- py3-windows-server-2016: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:26:28.812092 #19339] INFO -- py3-windows-server-2016: ==> default: Checking if box 'StefanScherer/windows_2016' version '2019.02.14' is up to date... +I, [2020-03-06T13:26:31.258676 #19339] INFO -- py3-windows-server-2016: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2016-e00bdcb3-61d1-4187-92da-5888b4024653 +I, [2020-03-06T13:26:34.316010 #19339] INFO -- py3-windows-server-2016: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:26:34.453488 #19339] INFO -- py3-windows-server-2016: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:26:34.453920 #19339] INFO -- py3-windows-server-2016: default: Adapter 1: nat +I, [2020-03-06T13:26:34.620455 #19339] INFO -- py3-windows-server-2016: ==> default: Forwarding ports... +I, [2020-03-06T13:26:34.761457 #19339] INFO -- py3-windows-server-2016: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:26:34.762022 #19339] INFO -- py3-windows-server-2016: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:26:34.762797 #19339] INFO -- py3-windows-server-2016: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:26:34.763374 #19339] INFO -- py3-windows-server-2016: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:26:35.223997 #19339] INFO -- py3-windows-server-2016: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:26:36.325846 #19339] INFO -- py3-windows-server-2016: ==> default: Booting VM... +I, [2020-03-06T13:26:39.289908 #19339] INFO -- py3-windows-server-2016: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:26:40.633517 #19339] INFO -- py3-windows-server-2016: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:26:40.633779 #19339] INFO -- py3-windows-server-2016: default: WinRM username: vagrant +I, [2020-03-06T13:26:40.634092 #19339] INFO -- py3-windows-server-2016: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:26:40.634568 #19339] INFO -- py3-windows-server-2016: default: WinRM transport: negotiate +I, [2020-03-06T13:27:47.263979 #19339] INFO -- py3-windows-server-2016: ==> default: Machine booted and ready! +I, [2020-03-06T13:27:47.309004 #19339] INFO -- py3-windows-server-2016: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:27:47.602501 #19339] INFO -- py3-windows-server-2016: default: The guest additions on this VM do not match the installed version of +I, [2020-03-06T13:27:47.602635 #19339] INFO -- py3-windows-server-2016: default: VirtualBox! In most cases this is fine, but in rare cases it can +I, [2020-03-06T13:27:47.602708 #19339] INFO -- py3-windows-server-2016: default: prevent things such as shared folders from working properly. If you see +I, [2020-03-06T13:27:47.602757 #19339] INFO -- py3-windows-server-2016: default: shared folder errors, please make sure the guest additions within the +I, [2020-03-06T13:27:47.602805 #19339] INFO -- py3-windows-server-2016: default: virtual machine match the version of VirtualBox you have installed on +I, [2020-03-06T13:27:47.602858 #19339] INFO -- py3-windows-server-2016: default: your host and reload your VM. +I, [2020-03-06T13:27:47.602918 #19339] INFO -- py3-windows-server-2016: default: +I, [2020-03-06T13:27:47.602969 #19339] INFO -- py3-windows-server-2016: default: Guest Additions Version: 5.2.26 +I, [2020-03-06T13:27:47.603024 #19339] INFO -- py3-windows-server-2016: default: VirtualBox Version: 6.1 +I, [2020-03-06T13:27:48.514579 #19339] INFO -- py3-windows-server-2016: ==> default: Mounting shared folders... +I, [2020-03-06T13:27:48.515571 #19339] INFO -- py3-windows-server-2016: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:27:55.226920 #19339] INFO -- py3-windows-server-2016: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:28:07.709014 #19339] INFO -- py3-windows-server-2016: [WinRM] Established +I, [2020-03-06T13:28:07.709129 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:07.718551 #19339] INFO -- py3-windows-server-2016: Vagrant instance created. +I, [2020-03-06T13:28:07.720079 #19339] INFO -- py3-windows-server-2016: Finished creating (1m47.14s). +I, [2020-03-06T13:28:07.720288 #19339] INFO -- py3-windows-server-2016: -----> Converging ... +I, [2020-03-06T13:28:07.722418 #19339] INFO -- py3-windows-server-2016: Preparing files for transfer +I, [2020-03-06T13:28:07.722563 #19339] INFO -- py3-windows-server-2016: Preparing salt-minion +I, [2020-03-06T13:28:07.727658 #19339] INFO -- py3-windows-server-2016: Preparing pillars into /srv/pillar +I, [2020-03-06T13:28:07.727767 #19339] INFO -- py3-windows-server-2016: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:28:07.731338 #19339] INFO -- py3-windows-server-2016: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:28:07.866462 #19339] INFO -- py3-windows-server-2016: Preparing state_top +I, [2020-03-06T13:28:07.867685 #19339] INFO -- py3-windows-server-2016: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:28:08.776448 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:08.776848 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:08.777462 #19339] INFO -- py3-windows-server-2016: Directory: C:\ +I, [2020-03-06T13:28:08.777917 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:08.778260 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:08.778683 #19339] INFO -- py3-windows-server-2016: Mode LastWriteTime Length Name +I, [2020-03-06T13:28:08.779036 #19339] INFO -- py3-windows-server-2016: ---- ------------- ------ ---- +I, [2020-03-06T13:28:08.779392 #19339] INFO -- py3-windows-server-2016: d----- 3/6/2020 10:28 AM temp +I, [2020-03-06T13:28:09.483992 #19339] INFO -- py3-windows-server-2016: Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe +I, [2020-03-06T13:28:13.530900 #19339] INFO -- py3-windows-server-2016: Installing Salt minion +I, [2020-03-06T13:28:26.344596 #19339] INFO -- py3-windows-server-2016: Starting the Salt minion service +I, [2020-03-06T13:28:26.345032 #19339] INFO -- py3-windows-server-2016: Salt minion successfully installed +I, [2020-03-06T13:28:33.332683 #19339] INFO -- py3-windows-server-2016: You asked for latest and you have 3000 installed, sweet! +I, [2020-03-06T13:28:33.333152 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:33.333624 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:34.043948 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:34.044380 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:34.044812 #19339] INFO -- py3-windows-server-2016: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:28:34.045211 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:34.045569 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:34.046005 #19339] INFO -- py3-windows-server-2016: Mode LastWriteTime Length Name +I, [2020-03-06T13:28:34.046501 #19339] INFO -- py3-windows-server-2016: ---- ------------- ------ ---- +I, [2020-03-06T13:28:34.046945 #19339] INFO -- py3-windows-server-2016: d----- 3/6/2020 10:28 AM kitchen +I, [2020-03-06T13:28:34.047308 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:34.047645 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:28:34.057570 #19339] INFO -- py3-windows-server-2016: Transferring files to +I, [2020-03-06T13:29:11.706770 #19339] INFO -- py3-windows-server-2016: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:29:11.707190 #19339] INFO -- py3-windows-server-2016: At line:1 char:131 +I, [2020-03-06T13:29:11.707676 #19339] INFO -- py3-windows-server-2016: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:29:11.708089 #19339] INFO -- py3-windows-server-2016: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:29:11.708541 #19339] INFO -- py3-windows-server-2016: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:29:11.708893 #19339] INFO -- py3-windows-server-2016: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:29:11.709243 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:29:11.709556 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:29:11.709928 #19339] INFO -- py3-windows-server-2016: Traceback (most recent call last): +I, [2020-03-06T13:29:11.710329 #19339] INFO -- py3-windows-server-2016: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:29:11.710693 #19339] INFO -- py3-windows-server-2016: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:29:11.711081 #19339] INFO -- py3-windows-server-2016: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:29:11.711428 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:29:11.711997 #19339] INFO -- py3-windows-server-2016: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:29:11.712540 #19339] INFO -- py3-windows-server-2016: Traceback (most recent call last): +I, [2020-03-06T13:29:11.717602 #19339] INFO -- py3-windows-server-2016: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:29:11.718168 #19339] INFO -- py3-windows-server-2016: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:29:11.718616 #19339] INFO -- py3-windows-server-2016: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:29:11.718943 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:30:21.875882 #19339] INFO -- py3-windows-server-2016: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:30:21.876302 #19339] INFO -- py3-windows-server-2016: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:30:21.876968 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:30:21.877396 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:30:21.877882 #19339] INFO -- py3-windows-server-2016: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:30:21.878341 #19339] INFO -- py3-windows-server-2016: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:30:21.878713 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:30:21.879108 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.027186 #19339] INFO -- py3-windows-server-2016: local: +I, [2020-03-06T13:31:21.027840 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.028334 #19339] INFO -- py3-windows-server-2016: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:31:21.028762 #19339] INFO -- py3-windows-server-2016: Function: system.hostname +I, [2020-03-06T13:31:21.029199 #19339] INFO -- py3-windows-server-2016: Name: saltstack1 +I, [2020-03-06T13:31:21.029667 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.030188 #19339] INFO -- py3-windows-server-2016: Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:31:21.030754 #19339] INFO -- py3-windows-server-2016: Started: 10:28:51.324181 +I, [2020-03-06T13:31:21.031332 #19339] INFO -- py3-windows-server-2016: Duration: 115.845 ms +I, [2020-03-06T13:31:21.031836 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.032979 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.034075 #19339] INFO -- py3-windows-server-2016: hostname: +I, [2020-03-06T13:31:21.034630 #19339] INFO -- py3-windows-server-2016: saltstack1 +I, [2020-03-06T13:31:21.035189 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.035760 #19339] INFO -- py3-windows-server-2016: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:31:21.036236 #19339] INFO -- py3-windows-server-2016: Function: system.computer_desc +I, [2020-03-06T13:31:21.036836 #19339] INFO -- py3-windows-server-2016: Name: Saltstack Computer Description +I, [2020-03-06T13:31:21.037658 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.038428 #19339] INFO -- py3-windows-server-2016: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:31:21.039162 #19339] INFO -- py3-windows-server-2016: Started: 10:28:51.440026 +I, [2020-03-06T13:31:21.039705 #19339] INFO -- py3-windows-server-2016: Duration: 3125.58 ms +I, [2020-03-06T13:31:21.040173 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.040554 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.040919 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.041275 #19339] INFO -- py3-windows-server-2016: Saltstack Computer Description +I, [2020-03-06T13:31:21.041629 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.042044 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.042414 #19339] INFO -- py3-windows-server-2016: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:31:21.042716 #19339] INFO -- py3-windows-server-2016: Function: timezone.system +I, [2020-03-06T13:31:21.043031 #19339] INFO -- py3-windows-server-2016: Name: America/New_York +I, [2020-03-06T13:31:21.043392 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.043691 #19339] INFO -- py3-windows-server-2016: Comment: Set timezone America/New_York +I, [2020-03-06T13:31:21.044033 #19339] INFO -- py3-windows-server-2016: Started: 10:28:54.723706 +I, [2020-03-06T13:31:21.044440 #19339] INFO -- py3-windows-server-2016: Duration: 47.444 ms +I, [2020-03-06T13:31:21.044853 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.045298 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.045717 #19339] INFO -- py3-windows-server-2016: timezone: +I, [2020-03-06T13:31:21.046206 #19339] INFO -- py3-windows-server-2016: America/New_York +I, [2020-03-06T13:31:21.046687 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.047143 #19339] INFO -- py3-windows-server-2016: ID: windows.module.environ.items +I, [2020-03-06T13:31:21.047595 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.048049 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.048845 #19339] INFO -- py3-windows-server-2016: Comment: environ.items: Success +I, [2020-03-06T13:31:21.050318 #19339] INFO -- py3-windows-server-2016: Started: 10:28:54.786951 +I, [2020-03-06T13:31:21.051322 #19339] INFO -- py3-windows-server-2016: Duration: 15.811 ms +I, [2020-03-06T13:31:21.052088 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.053027 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.053713 #19339] INFO -- py3-windows-server-2016: environ.items: +I, [2020-03-06T13:31:21.054466 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.055099 #19339] INFO -- py3-windows-server-2016: ALLUSERSPROFILE: +I, [2020-03-06T13:31:21.055801 #19339] INFO -- py3-windows-server-2016: C:\ProgramData +I, [2020-03-06T13:31:21.056403 #19339] INFO -- py3-windows-server-2016: APPDATA: +I, [2020-03-06T13:31:21.056897 #19339] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:31:21.057392 #19339] INFO -- py3-windows-server-2016: COMMONPROGRAMFILES: +I, [2020-03-06T13:31:21.057864 #19339] INFO -- py3-windows-server-2016: C:\Program Files\Common Files +I, [2020-03-06T13:31:21.058346 #19339] INFO -- py3-windows-server-2016: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:31:21.058792 #19339] INFO -- py3-windows-server-2016: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:31:21.059264 #19339] INFO -- py3-windows-server-2016: COMMONPROGRAMW6432: +I, [2020-03-06T13:31:21.059767 #19339] INFO -- py3-windows-server-2016: C:\Program Files\Common Files +I, [2020-03-06T13:31:21.060217 #19339] INFO -- py3-windows-server-2016: COMPUTERNAME: +I, [2020-03-06T13:31:21.060568 #19339] INFO -- py3-windows-server-2016: VAGRANT +I, [2020-03-06T13:31:21.061039 #19339] INFO -- py3-windows-server-2016: COMSPEC: +I, [2020-03-06T13:31:21.061509 #19339] INFO -- py3-windows-server-2016: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:31:21.061977 #19339] INFO -- py3-windows-server-2016: HOMEDRIVE: +I, [2020-03-06T13:31:21.062303 #19339] INFO -- py3-windows-server-2016: C: +I, [2020-03-06T13:31:21.062693 #19339] INFO -- py3-windows-server-2016: HOMEPATH: +I, [2020-03-06T13:31:21.063093 #19339] INFO -- py3-windows-server-2016: \Users\vagrant +I, [2020-03-06T13:31:21.063398 #19339] INFO -- py3-windows-server-2016: LOCALAPPDATA: +I, [2020-03-06T13:31:21.063728 #19339] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:31:21.064135 #19339] INFO -- py3-windows-server-2016: LOGONSERVER: +I, [2020-03-06T13:31:21.064565 #19339] INFO -- py3-windows-server-2016: \\VAGRANT +I, [2020-03-06T13:31:21.065004 #19339] INFO -- py3-windows-server-2016: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:31:21.065502 #19339] INFO -- py3-windows-server-2016: 2 +I, [2020-03-06T13:31:21.066611 #19339] INFO -- py3-windows-server-2016: OS: +I, [2020-03-06T13:31:21.067887 #19339] INFO -- py3-windows-server-2016: Windows_NT +I, [2020-03-06T13:31:21.068540 #19339] INFO -- py3-windows-server-2016: PATH: +I, [2020-03-06T13:31:21.069034 #19339] INFO -- py3-windows-server-2016: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:31:21.069470 #19339] INFO -- py3-windows-server-2016: PATHEXT: +I, [2020-03-06T13:31:21.069928 #19339] INFO -- py3-windows-server-2016: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:31:21.070363 #19339] INFO -- py3-windows-server-2016: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:31:21.070917 #19339] INFO -- py3-windows-server-2016: AMD64 +I, [2020-03-06T13:31:21.071494 #19339] INFO -- py3-windows-server-2016: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:31:21.072311 #19339] INFO -- py3-windows-server-2016: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:31:21.072943 #19339] INFO -- py3-windows-server-2016: PROCESSOR_LEVEL: +I, [2020-03-06T13:31:21.073448 #19339] INFO -- py3-windows-server-2016: 6 +I, [2020-03-06T13:31:21.073948 #19339] INFO -- py3-windows-server-2016: PROCESSOR_REVISION: +I, [2020-03-06T13:31:21.074482 #19339] INFO -- py3-windows-server-2016: 8e0c +I, [2020-03-06T13:31:21.074998 #19339] INFO -- py3-windows-server-2016: PROGRAMDATA: +I, [2020-03-06T13:31:21.075442 #19339] INFO -- py3-windows-server-2016: C:\ProgramData +I, [2020-03-06T13:31:21.075917 #19339] INFO -- py3-windows-server-2016: PROGRAMFILES: +I, [2020-03-06T13:31:21.076416 #19339] INFO -- py3-windows-server-2016: C:\Program Files +I, [2020-03-06T13:31:21.076877 #19339] INFO -- py3-windows-server-2016: PROGRAMFILES(X86): +I, [2020-03-06T13:31:21.077344 #19339] INFO -- py3-windows-server-2016: C:\Program Files (x86) +I, [2020-03-06T13:31:21.077842 #19339] INFO -- py3-windows-server-2016: PROGRAMW6432: +I, [2020-03-06T13:31:21.078327 #19339] INFO -- py3-windows-server-2016: C:\Program Files +I, [2020-03-06T13:31:21.078814 #19339] INFO -- py3-windows-server-2016: PROMPT: +I, [2020-03-06T13:31:21.079230 #19339] INFO -- py3-windows-server-2016: $P$G +I, [2020-03-06T13:31:21.079668 #19339] INFO -- py3-windows-server-2016: PSMODULEPATH: +I, [2020-03-06T13:31:21.080125 #19339] INFO -- py3-windows-server-2016: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:31:21.080597 #19339] INFO -- py3-windows-server-2016: PUBLIC: +I, [2020-03-06T13:31:21.081102 #19339] INFO -- py3-windows-server-2016: C:\Users\Public +I, [2020-03-06T13:31:21.090050 #19339] INFO -- py3-windows-server-2016: PYTHON: +I, [2020-03-06T13:31:21.090922 #19339] INFO -- py3-windows-server-2016: C:\salt\bin\python.exe +I, [2020-03-06T13:31:21.091541 #19339] INFO -- py3-windows-server-2016: SALTDIR: +I, [2020-03-06T13:31:21.092035 #19339] INFO -- py3-windows-server-2016: C:\salt +I, [2020-03-06T13:31:21.092465 #19339] INFO -- py3-windows-server-2016: SCRIPT: +I, [2020-03-06T13:31:21.092860 #19339] INFO -- py3-windows-server-2016: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:31:21.093259 #19339] INFO -- py3-windows-server-2016: SYSTEMDRIVE: +I, [2020-03-06T13:31:21.093684 #19339] INFO -- py3-windows-server-2016: C: +I, [2020-03-06T13:31:21.094096 #19339] INFO -- py3-windows-server-2016: SYSTEMROOT: +I, [2020-03-06T13:31:21.094429 #19339] INFO -- py3-windows-server-2016: C:\Windows +I, [2020-03-06T13:31:21.094841 #19339] INFO -- py3-windows-server-2016: TEMP: +I, [2020-03-06T13:31:21.095218 #19339] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:31:21.095603 #19339] INFO -- py3-windows-server-2016: TMP: +I, [2020-03-06T13:31:21.095987 #19339] INFO -- py3-windows-server-2016: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:31:21.096323 #19339] INFO -- py3-windows-server-2016: USERDOMAIN: +I, [2020-03-06T13:31:21.096703 #19339] INFO -- py3-windows-server-2016: VAGRANT +I, [2020-03-06T13:31:21.097180 #19339] INFO -- py3-windows-server-2016: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:31:21.097688 #19339] INFO -- py3-windows-server-2016: VAGRANT +I, [2020-03-06T13:31:21.098276 #19339] INFO -- py3-windows-server-2016: USERNAME: +I, [2020-03-06T13:31:21.098882 #19339] INFO -- py3-windows-server-2016: vagrant +I, [2020-03-06T13:31:21.100092 #19339] INFO -- py3-windows-server-2016: USERPROFILE: +I, [2020-03-06T13:31:21.101294 #19339] INFO -- py3-windows-server-2016: C:\Users\vagrant +I, [2020-03-06T13:31:21.101841 #19339] INFO -- py3-windows-server-2016: WINDIR: +I, [2020-03-06T13:31:21.102444 #19339] INFO -- py3-windows-server-2016: C:\Windows +I, [2020-03-06T13:31:21.102855 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.103201 #19339] INFO -- py3-windows-server-2016: ID: windows.module.user.current +I, [2020-03-06T13:31:21.103590 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.104266 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.104822 #19339] INFO -- py3-windows-server-2016: Comment: user.current: VAGRANT\vagrant +I, [2020-03-06T13:31:21.105527 #19339] INFO -- py3-windows-server-2016: Started: 10:28:54.802762 +I, [2020-03-06T13:31:21.106151 #19339] INFO -- py3-windows-server-2016: Duration: 47.505 ms +I, [2020-03-06T13:31:21.106713 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.107252 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.107714 #19339] INFO -- py3-windows-server-2016: user.current: +I, [2020-03-06T13:31:21.108128 #19339] INFO -- py3-windows-server-2016: VAGRANT\vagrant +I, [2020-03-06T13:31:21.108441 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.108796 #19339] INFO -- py3-windows-server-2016: ID: windows.module.status.uptime +I, [2020-03-06T13:31:21.109110 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.109484 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.109812 #19339] INFO -- py3-windows-server-2016: Comment: status.uptime: 0:01:24.897629 +I, [2020-03-06T13:31:21.110170 #19339] INFO -- py3-windows-server-2016: Started: 10:28:54.850267 +I, [2020-03-06T13:31:21.110575 #19339] INFO -- py3-windows-server-2016: Duration: 47.362 ms +I, [2020-03-06T13:31:21.110899 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.111203 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.111576 #19339] INFO -- py3-windows-server-2016: status.uptime: +I, [2020-03-06T13:31:21.112003 #19339] INFO -- py3-windows-server-2016: 0:01:24.897629 +I, [2020-03-06T13:31:21.112465 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.112935 #19339] INFO -- py3-windows-server-2016: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:31:21.113413 #19339] INFO -- py3-windows-server-2016: Function: reg.present +I, [2020-03-06T13:31:21.114006 #19339] INFO -- py3-windows-server-2016: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:31:21.114440 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.114881 #19339] INFO -- py3-windows-server-2016: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:31:21.115381 #19339] INFO -- py3-windows-server-2016: Started: 10:28:54.913497 +I, [2020-03-06T13:31:21.116673 #19339] INFO -- py3-windows-server-2016: Duration: 16662.317 ms +I, [2020-03-06T13:31:21.117532 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.118181 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.118770 #19339] INFO -- py3-windows-server-2016: reg: +I, [2020-03-06T13:31:21.119399 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.120052 #19339] INFO -- py3-windows-server-2016: Added: +I, [2020-03-06T13:31:21.120769 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.121325 #19339] INFO -- py3-windows-server-2016: Entry: +I, [2020-03-06T13:31:21.122131 #19339] INFO -- py3-windows-server-2016: SystemDefaultTlsVersions +I, [2020-03-06T13:31:21.122782 #19339] INFO -- py3-windows-server-2016: Inheritance: +I, [2020-03-06T13:31:21.123190 #19339] INFO -- py3-windows-server-2016: True +I, [2020-03-06T13:31:21.123531 #19339] INFO -- py3-windows-server-2016: Key: +I, [2020-03-06T13:31:21.123978 #19339] INFO -- py3-windows-server-2016: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:31:21.124500 #19339] INFO -- py3-windows-server-2016: Owner: +I, [2020-03-06T13:31:21.124982 #19339] INFO -- py3-windows-server-2016: None +I, [2020-03-06T13:31:21.125472 #19339] INFO -- py3-windows-server-2016: Perms: +I, [2020-03-06T13:31:21.125958 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.126491 #19339] INFO -- py3-windows-server-2016: Deny: +I, [2020-03-06T13:31:21.127120 #19339] INFO -- py3-windows-server-2016: None +I, [2020-03-06T13:31:21.127659 #19339] INFO -- py3-windows-server-2016: Grant: +I, [2020-03-06T13:31:21.128121 #19339] INFO -- py3-windows-server-2016: None +I, [2020-03-06T13:31:21.128686 #19339] INFO -- py3-windows-server-2016: Value: +I, [2020-03-06T13:31:21.129228 #19339] INFO -- py3-windows-server-2016: 1 +I, [2020-03-06T13:31:21.129677 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.130080 #19339] INFO -- py3-windows-server-2016: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:31:21.130462 #19339] INFO -- py3-windows-server-2016: Function: reg.present +I, [2020-03-06T13:31:21.131008 #19339] INFO -- py3-windows-server-2016: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:31:21.131522 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.132053 #19339] INFO -- py3-windows-server-2016: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:31:21.132837 #19339] INFO -- py3-windows-server-2016: Started: 10:29:11.575814 +I, [2020-03-06T13:31:21.133978 #19339] INFO -- py3-windows-server-2016: Duration: 310.494 ms +I, [2020-03-06T13:31:21.135078 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.135753 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.136293 #19339] INFO -- py3-windows-server-2016: reg: +I, [2020-03-06T13:31:21.136810 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.137418 #19339] INFO -- py3-windows-server-2016: Added: +I, [2020-03-06T13:31:21.138004 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.138414 #19339] INFO -- py3-windows-server-2016: Entry: +I, [2020-03-06T13:31:21.138823 #19339] INFO -- py3-windows-server-2016: SystemDefaultTlsVersions +I, [2020-03-06T13:31:21.139255 #19339] INFO -- py3-windows-server-2016: Inheritance: +I, [2020-03-06T13:31:21.139683 #19339] INFO -- py3-windows-server-2016: True +I, [2020-03-06T13:31:21.140080 #19339] INFO -- py3-windows-server-2016: Key: +I, [2020-03-06T13:31:21.140405 #19339] INFO -- py3-windows-server-2016: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:31:21.140740 #19339] INFO -- py3-windows-server-2016: Owner: +I, [2020-03-06T13:31:21.141063 #19339] INFO -- py3-windows-server-2016: None +I, [2020-03-06T13:31:21.141361 #19339] INFO -- py3-windows-server-2016: Perms: +I, [2020-03-06T13:31:21.141773 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.142108 #19339] INFO -- py3-windows-server-2016: Deny: +I, [2020-03-06T13:31:21.142425 #19339] INFO -- py3-windows-server-2016: None +I, [2020-03-06T13:31:21.142831 #19339] INFO -- py3-windows-server-2016: Grant: +I, [2020-03-06T13:31:21.143147 #19339] INFO -- py3-windows-server-2016: None +I, [2020-03-06T13:31:21.147056 #19339] INFO -- py3-windows-server-2016: Value: +I, [2020-03-06T13:31:21.147596 #19339] INFO -- py3-windows-server-2016: 1 +I, [2020-03-06T13:31:21.148122 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.148593 #19339] INFO -- py3-windows-server-2016: ID: manually.update_git_repo-ng +I, [2020-03-06T13:31:21.149553 #19339] INFO -- py3-windows-server-2016: Function: archive.extracted +I, [2020-03-06T13:31:21.151430 #19339] INFO -- py3-windows-server-2016: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:31:21.152025 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.154685 #19339] INFO -- py3-windows-server-2016: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:31:21.155659 #19339] INFO -- py3-windows-server-2016: Started: 10:29:11.886308 +I, [2020-03-06T13:31:21.156381 #19339] INFO -- py3-windows-server-2016: Duration: 1082.278 ms +I, [2020-03-06T13:31:21.156966 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.157565 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.158155 #19339] INFO -- py3-windows-server-2016: directories_created: +I, [2020-03-06T13:31:21.158733 #19339] INFO -- py3-windows-server-2016: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:31:21.159260 #19339] INFO -- py3-windows-server-2016: extracted_files: +I, [2020-03-06T13:31:21.159795 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ +I, [2020-03-06T13:31:21.160300 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:31:21.160818 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:31:21.161295 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:31:21.161787 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:31:21.162263 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:31:21.162744 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:31:21.163198 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:31:21.163673 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:31:21.164151 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:31:21.164734 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:31:21.165662 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:31:21.167366 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:31:21.168325 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:31:21.169213 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:31:21.169860 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:31:21.170393 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:31:21.170878 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:31:21.171412 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:31:21.172019 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:31:21.172766 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:31:21.173354 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:31:21.173885 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:31:21.174362 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:31:21.174767 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:31:21.175191 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:31:21.175524 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:31:21.175889 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:31:21.176277 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:31:21.176672 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:31:21.177227 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:31:21.177765 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:31:21.178158 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:31:21.178517 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:31:21.178889 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:31:21.179354 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:31:21.179905 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:31:21.180462 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:31:21.181023 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:31:21.181603 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:31:21.182126 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:31:21.183235 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:31:21.184463 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:31:21.185365 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:31:21.186452 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:31:21.187597 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:31:21.188511 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:31:21.189106 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:31:21.189517 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:31:21.189921 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:31:21.190330 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:31:21.190769 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:31:21.191225 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:31:21.191645 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:31:21.191994 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:31:21.192343 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:31:21.192792 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:31:21.193216 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:31:21.193628 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:31:21.194101 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:31:21.194506 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:31:21.194909 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:31:21.195311 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:31:21.195744 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:31:21.196217 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:31:21.196630 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:31:21.197053 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:31:21.197475 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:31:21.197937 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:31:21.198553 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:31:21.199658 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:31:21.200523 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:31:21.201200 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:31:21.201738 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:31:21.202228 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:31:21.202758 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:31:21.203242 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:31:21.203657 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:31:21.204122 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:31:21.204470 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:31:21.204867 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:31:21.205314 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:31:21.205670 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:31:21.206016 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:31:21.206385 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:31:21.206835 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:31:21.210884 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:31:21.211512 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:31:21.211939 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:31:21.212304 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:31:21.212734 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:31:21.213087 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:31:21.214306 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:31:21.215195 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:31:21.216522 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:31:21.217597 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:31:21.218207 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:31:21.218711 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:31:21.219106 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:31:21.219522 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:31:21.220018 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:31:21.220455 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:31:21.220997 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:31:21.221601 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:31:21.222136 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:31:21.222544 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:31:21.222973 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:31:21.223475 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:31:21.223911 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:31:21.224282 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:31:21.224622 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:31:21.225036 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:31:21.225500 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:31:21.225949 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:31:21.226318 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:31:21.226651 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:31:21.227070 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:31:21.227442 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:31:21.227885 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:31:21.228405 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:31:21.228926 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:31:21.229450 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:31:21.229891 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:31:21.230262 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:31:21.230681 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:31:21.231225 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:31:21.231855 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:31:21.233101 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:31:21.234152 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:31:21.234852 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:31:21.235401 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:31:21.235909 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:31:21.236509 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:31:21.237149 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:31:21.237837 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:31:21.238740 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:31:21.239454 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:31:21.240029 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:31:21.240589 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:31:21.241139 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:31:21.241594 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:31:21.242043 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:31:21.242448 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:31:21.242844 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:31:21.243271 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:31:21.243638 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:31:21.244005 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:31:21.244404 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:31:21.244837 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:31:21.245213 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:31:21.245793 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:31:21.246176 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:31:21.246504 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:31:21.246887 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:31:21.247306 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:31:21.247836 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:31:21.248364 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:31:21.249003 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:31:21.249834 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:31:21.250470 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:31:21.251134 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:31:21.251546 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:31:21.252025 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:31:21.252505 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:31:21.252880 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:31:21.253257 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:31:21.253677 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:31:21.254053 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:31:21.254592 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:31:21.255204 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:31:21.255775 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:31:21.256286 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:31:21.256663 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:31:21.257102 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:31:21.257581 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:31:21.258008 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:31:21.258505 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:31:21.259035 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:31:21.259466 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:31:21.259908 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:31:21.260338 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:31:21.260720 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:31:21.261158 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:31:21.261606 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:31:21.262047 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:31:21.262551 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:31:21.262925 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:31:21.271118 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:31:21.272142 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:31:21.272688 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:31:21.273103 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:31:21.273496 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:31:21.273888 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:31:21.274401 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:31:21.274838 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:31:21.275290 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:31:21.275657 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:31:21.276075 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:31:21.276462 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:31:21.276909 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:31:21.277380 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:31:21.277788 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:31:21.278236 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:31:21.278718 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:31:21.279140 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:31:21.279594 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:31:21.280023 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:31:21.280413 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:31:21.280906 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:31:21.281491 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:31:21.282201 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:31:21.283110 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:31:21.283931 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:31:21.284615 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:31:21.285271 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:31:21.285860 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:31:21.286550 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:31:21.287192 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:31:21.287880 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:31:21.288760 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:31:21.289464 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:31:21.290156 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:31:21.290745 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:31:21.291310 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:31:21.291846 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:31:21.292388 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:31:21.292955 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:31:21.293494 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:31:21.294067 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:31:21.294620 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:31:21.295181 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:31:21.295741 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:31:21.296275 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:31:21.296830 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:31:21.297381 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:31:21.297961 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:31:21.298592 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:31:21.299753 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:31:21.300782 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:31:21.301420 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:31:21.302000 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:31:21.302585 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:31:21.303224 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:31:21.303848 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:31:21.304479 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:31:21.305259 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:31:21.305896 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:31:21.306491 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:31:21.307012 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:31:21.307564 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:31:21.308093 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:31:21.308645 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:31:21.309194 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:31:21.309750 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:31:21.310257 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:31:21.310797 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:31:21.311326 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:31:21.311868 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:31:21.312459 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:31:21.312993 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:31:21.313541 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:31:21.314073 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:31:21.314654 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:31:21.315405 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:31:21.316450 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:31:21.317299 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:31:21.317899 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:31:21.318511 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:31:21.319030 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:31:21.319673 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:31:21.320247 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:31:21.320881 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:31:21.321665 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:31:21.322246 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:31:21.322768 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:31:21.323320 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:31:21.323837 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:31:21.324371 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:31:21.324899 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:31:21.325471 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:31:21.326014 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:31:21.326544 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:31:21.327095 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:31:21.327628 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:31:21.328177 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:31:21.328730 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:31:21.336551 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:31:21.337646 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:31:21.338500 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:31:21.338997 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:31:21.339476 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:31:21.339900 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:31:21.340333 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:31:21.340786 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:31:21.341173 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:31:21.341680 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:31:21.342148 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:31:21.342640 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:31:21.343189 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:31:21.343751 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:31:21.344230 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:31:21.344712 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:31:21.345175 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:31:21.345646 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:31:21.346033 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:31:21.346434 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:31:21.346822 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:31:21.347277 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:31:21.347695 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:31:21.348151 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:31:21.348912 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:31:21.350010 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:31:21.351037 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:31:21.351523 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:31:21.351961 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:31:21.352401 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:31:21.352805 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:31:21.353252 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:31:21.353676 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:31:21.354166 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:31:21.354709 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:31:21.355373 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:31:21.355916 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:31:21.356371 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:31:21.356735 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:31:21.357107 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:31:21.357460 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:31:21.357957 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:31:21.358372 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:31:21.358766 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:31:21.359306 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:31:21.359759 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:31:21.360267 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:31:21.360650 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:31:21.361031 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:31:21.361389 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:31:21.361816 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:31:21.362229 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:31:21.362703 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:31:21.363232 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:31:21.363708 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:31:21.364193 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:31:21.364672 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:31:21.365237 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:31:21.366163 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:31:21.367005 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:31:21.367572 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:31:21.368110 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:31:21.368567 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:31:21.368996 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:31:21.369466 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:31:21.370045 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:31:21.370568 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:31:21.371199 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:31:21.371787 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:31:21.372315 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:31:21.372788 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:31:21.373170 #19339] INFO -- py3-windows-server-2016: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:31:21.373648 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.374050 #19339] INFO -- py3-windows-server-2016: ID: rename-extract +I, [2020-03-06T13:31:21.374477 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.374972 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.375466 #19339] INFO -- py3-windows-server-2016: Comment: file.rename: True +I, [2020-03-06T13:31:21.375971 #19339] INFO -- py3-windows-server-2016: Started: 10:29:12.984261 +I, [2020-03-06T13:31:21.376453 #19339] INFO -- py3-windows-server-2016: Duration: 0.0 ms +I, [2020-03-06T13:31:21.376958 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.377461 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.378001 #19339] INFO -- py3-windows-server-2016: file.rename: +I, [2020-03-06T13:31:21.378505 #19339] INFO -- py3-windows-server-2016: True +I, [2020-03-06T13:31:21.379003 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.379489 #19339] INFO -- py3-windows-server-2016: ID: pkg.refresh_db +I, [2020-03-06T13:31:21.380014 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.380507 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.381051 #19339] INFO -- py3-windows-server-2016: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:31:21.381626 #19339] INFO -- py3-windows-server-2016: Started: 10:29:12.984261 +I, [2020-03-06T13:31:21.382367 #19339] INFO -- py3-windows-server-2016: Duration: 16154.702 ms +I, [2020-03-06T13:31:21.383342 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.384208 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.384816 #19339] INFO -- py3-windows-server-2016: pkg.refresh_db: +I, [2020-03-06T13:31:21.385361 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.385836 #19339] INFO -- py3-windows-server-2016: failed: +I, [2020-03-06T13:31:21.386299 #19339] INFO -- py3-windows-server-2016: 0 +I, [2020-03-06T13:31:21.386811 #19339] INFO -- py3-windows-server-2016: success: +I, [2020-03-06T13:31:21.387384 #19339] INFO -- py3-windows-server-2016: 298 +I, [2020-03-06T13:31:21.388078 #19339] INFO -- py3-windows-server-2016: total: +I, [2020-03-06T13:31:21.393320 #19339] INFO -- py3-windows-server-2016: 298 +I, [2020-03-06T13:31:21.393986 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.394629 #19339] INFO -- py3-windows-server-2016: ID: 7zip +I, [2020-03-06T13:31:21.395217 #19339] INFO -- py3-windows-server-2016: Function: pkg.installed +I, [2020-03-06T13:31:21.395836 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.396485 #19339] INFO -- py3-windows-server-2016: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:31:21.397053 #19339] INFO -- py3-windows-server-2016: Started: 10:29:29.170268 +I, [2020-03-06T13:31:21.522098 #19339] INFO -- py3-windows-server-2016: Duration: 4802.251 ms +I, [2020-03-06T13:31:21.523086 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.524194 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.525534 #19339] INFO -- py3-windows-server-2016: 7zip: +I, [2020-03-06T13:31:21.526007 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.527223 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.528385 #19339] INFO -- py3-windows-server-2016: 18.06.00.0 +I, [2020-03-06T13:31:21.529756 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.531195 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.533542 #19339] INFO -- py3-windows-server-2016: ID: kdiff3 +I, [2020-03-06T13:31:21.534518 #19339] INFO -- py3-windows-server-2016: Function: pkg.installed +I, [2020-03-06T13:31:21.535478 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.536383 #19339] INFO -- py3-windows-server-2016: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:31:21.536844 #19339] INFO -- py3-windows-server-2016: Started: 10:29:34.035104 +I, [2020-03-06T13:31:21.542991 #19339] INFO -- py3-windows-server-2016: Duration: 16784.691 ms +I, [2020-03-06T13:31:21.543534 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.544032 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.544474 #19339] INFO -- py3-windows-server-2016: kdiff3: +I, [2020-03-06T13:31:21.544884 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.545354 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.545880 #19339] INFO -- py3-windows-server-2016: Not Found +I, [2020-03-06T13:31:21.546273 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.546695 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.547047 #19339] INFO -- py3-windows-server-2016: ID: git +I, [2020-03-06T13:31:21.547413 #19339] INFO -- py3-windows-server-2016: Function: pkg.installed +I, [2020-03-06T13:31:21.547735 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.548135 #19339] INFO -- py3-windows-server-2016: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:31:21.548526 #19339] INFO -- py3-windows-server-2016: Started: 10:29:50.867673 +I, [2020-03-06T13:31:21.548845 #19339] INFO -- py3-windows-server-2016: Duration: 30901.26 ms +I, [2020-03-06T13:31:21.549154 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.549513 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.549833 #19339] INFO -- py3-windows-server-2016: git: +I, [2020-03-06T13:31:21.550160 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.550530 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.550910 #19339] INFO -- py3-windows-server-2016: 2.23.0.windows.1 +I, [2020-03-06T13:31:21.551246 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.551549 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.551864 #19339] INFO -- py3-windows-server-2016: ID: windows_environment.refresh.path +I, [2020-03-06T13:31:21.552192 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.552505 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.552878 #19339] INFO -- py3-windows-server-2016: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:31:21.553219 #19339] INFO -- py3-windows-server-2016: Started: 10:30:21.768933 +I, [2020-03-06T13:31:21.553527 #19339] INFO -- py3-windows-server-2016: Duration: 42.192 ms +I, [2020-03-06T13:31:21.553835 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.554169 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.554511 #19339] INFO -- py3-windows-server-2016: windows_environment.refresh: +I, [2020-03-06T13:31:21.554833 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.555161 #19339] INFO -- py3-windows-server-2016: PATH: +I, [2020-03-06T13:31:21.555495 #19339] INFO -- py3-windows-server-2016: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:31:21.555907 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.556256 #19339] INFO -- py3-windows-server-2016: ID: chocolatey.bootstrap +I, [2020-03-06T13:31:21.556579 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.556884 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.557218 #19339] INFO -- py3-windows-server-2016: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:31:21.557497 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.557884 #19339] INFO -- py3-windows-server-2016: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:31:21.558233 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.558552 #19339] INFO -- py3-windows-server-2016: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:31:21.558891 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.559258 #19339] INFO -- py3-windows-server-2016: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:31:21.559538 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.559926 #19339] INFO -- py3-windows-server-2016: Installing chocolatey on this machine +I, [2020-03-06T13:31:21.560257 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.560600 #19339] INFO -- py3-windows-server-2016: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:31:21.560945 #19339] INFO -- py3-windows-server-2016: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:31:21.561222 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.561541 #19339] INFO -- py3-windows-server-2016: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:31:21.561876 #19339] INFO -- py3-windows-server-2016: before you can use choco. +I, [2020-03-06T13:31:21.562268 #19339] INFO -- py3-windows-server-2016: Restricting write permissions to Administrators +I, [2020-03-06T13:31:21.562566 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.562959 #19339] INFO -- py3-windows-server-2016: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:31:21.563254 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.563571 #19339] INFO -- py3-windows-server-2016: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:31:21.563880 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.564196 #19339] INFO -- py3-windows-server-2016: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:31:21.564540 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.564878 #19339] INFO -- py3-windows-server-2016: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:31:21.565160 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.565545 #19339] INFO -- py3-windows-server-2016: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:31:21.565845 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.566172 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.566536 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.566907 #19339] INFO -- py3-windows-server-2016: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:31:21.567184 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.567570 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.567907 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.568236 #19339] INFO -- py3-windows-server-2016: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:31:21.568635 #19339] INFO -- py3-windows-server-2016: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:31:21.569029 #19339] INFO -- py3-windows-server-2016: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:31:21.569353 #19339] INFO -- py3-windows-server-2016: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:31:21.569671 #19339] INFO -- py3-windows-server-2016: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:31:21.570006 #19339] INFO -- py3-windows-server-2016: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:31:21.570280 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.570675 #19339] INFO -- py3-windows-server-2016: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:31:21.571036 #19339] INFO -- py3-windows-server-2016: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:31:21.571312 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.571629 #19339] INFO -- py3-windows-server-2016: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:31:21.571958 #19339] INFO -- py3-windows-server-2016: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:31:21.572235 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.572552 #19339] INFO -- py3-windows-server-2016: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:31:21.572847 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.573259 #19339] INFO -- py3-windows-server-2016: Run choco /? for a list of functions. +I, [2020-03-06T13:31:21.573597 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.573944 #19339] INFO -- py3-windows-server-2016: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:31:21.574254 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.574663 #19339] INFO -- py3-windows-server-2016: first prior to using choco. +I, [2020-03-06T13:31:21.575051 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.575403 #19339] INFO -- py3-windows-server-2016: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:31:21.575768 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.576115 #19339] INFO -- py3-windows-server-2016: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:31:21.576427 #19339] INFO -- py3-windows-server-2016: Started: 10:30:21.811125 +I, [2020-03-06T13:31:21.576748 #19339] INFO -- py3-windows-server-2016: Duration: 26649.535 ms +I, [2020-03-06T13:31:21.577168 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.577536 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.577892 #19339] INFO -- py3-windows-server-2016: chocolatey.bootstrap: +I, [2020-03-06T13:31:21.578215 #19339] INFO -- py3-windows-server-2016: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:31:21.578554 #19339] INFO -- py3-windows-server-2016: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:31:21.578896 #19339] INFO -- py3-windows-server-2016: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:31:21.579240 #19339] INFO -- py3-windows-server-2016: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:31:21.579683 #19339] INFO -- py3-windows-server-2016: Installing chocolatey on this machine +I, [2020-03-06T13:31:21.580052 #19339] INFO -- py3-windows-server-2016: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:31:21.580417 #19339] INFO -- py3-windows-server-2016: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:31:21.580769 #19339] INFO -- py3-windows-server-2016: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:31:21.581087 #19339] INFO -- py3-windows-server-2016: before you can use choco. +I, [2020-03-06T13:31:21.581404 #19339] INFO -- py3-windows-server-2016: Restricting write permissions to Administrators +I, [2020-03-06T13:31:21.581811 #19339] INFO -- py3-windows-server-2016: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:31:21.582171 #19339] INFO -- py3-windows-server-2016: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:31:21.587196 #19339] INFO -- py3-windows-server-2016: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:31:21.587644 #19339] INFO -- py3-windows-server-2016: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:31:21.588084 #19339] INFO -- py3-windows-server-2016: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:31:21.588506 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.588847 #19339] INFO -- py3-windows-server-2016: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:31:21.589184 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.589534 #19339] INFO -- py3-windows-server-2016: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:31:21.589935 #19339] INFO -- py3-windows-server-2016: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:31:21.590298 #19339] INFO -- py3-windows-server-2016: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:31:21.590720 #19339] INFO -- py3-windows-server-2016: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:31:21.591105 #19339] INFO -- py3-windows-server-2016: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:31:21.591464 #19339] INFO -- py3-windows-server-2016: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:31:21.591830 #19339] INFO -- py3-windows-server-2016: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:31:21.592238 #19339] INFO -- py3-windows-server-2016: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:31:21.592577 #19339] INFO -- py3-windows-server-2016: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:31:21.592907 #19339] INFO -- py3-windows-server-2016: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:31:21.593262 #19339] INFO -- py3-windows-server-2016: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:31:21.593583 #19339] INFO -- py3-windows-server-2016: Run choco /? for a list of functions. +I, [2020-03-06T13:31:21.593957 #19339] INFO -- py3-windows-server-2016: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:31:21.594337 #19339] INFO -- py3-windows-server-2016: first prior to using choco. +I, [2020-03-06T13:31:21.594687 #19339] INFO -- py3-windows-server-2016: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:31:21.595022 #19339] INFO -- py3-windows-server-2016: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:31:21.595354 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.595676 #19339] INFO -- py3-windows-server-2016: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:31:21.596034 #19339] INFO -- py3-windows-server-2016: Function: chocolatey.installed +I, [2020-03-06T13:31:21.596466 #19339] INFO -- py3-windows-server-2016: Name: windirstat +I, [2020-03-06T13:31:21.596807 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.597203 #19339] INFO -- py3-windows-server-2016: Comment: +I, [2020-03-06T13:31:21.597591 #19339] INFO -- py3-windows-server-2016: Started: 10:30:48.460660 +I, [2020-03-06T13:31:21.597910 #19339] INFO -- py3-windows-server-2016: Duration: 5483.933 ms +I, [2020-03-06T13:31:21.598238 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.598553 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.598905 #19339] INFO -- py3-windows-server-2016: windirstat: +I, [2020-03-06T13:31:21.599343 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.599764 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.600141 #19339] INFO -- py3-windows-server-2016: - 1.1.2.20161210 +I, [2020-03-06T13:31:21.600486 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.600878 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.601235 #19339] INFO -- py3-windows-server-2016: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:31:21.601659 #19339] INFO -- py3-windows-server-2016: Function: chocolatey.installed +I, [2020-03-06T13:31:21.602016 #19339] INFO -- py3-windows-server-2016: Name: notepadplusplus +I, [2020-03-06T13:31:21.602323 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.602623 #19339] INFO -- py3-windows-server-2016: Comment: +I, [2020-03-06T13:31:21.602953 #19339] INFO -- py3-windows-server-2016: Started: 10:30:53.944593 +I, [2020-03-06T13:31:21.603250 #19339] INFO -- py3-windows-server-2016: Duration: 10281.427 ms +I, [2020-03-06T13:31:21.603637 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.603966 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.604309 #19339] INFO -- py3-windows-server-2016: notepadplusplus: +I, [2020-03-06T13:31:21.604617 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.604943 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.605253 #19339] INFO -- py3-windows-server-2016: - 7.8.5 +I, [2020-03-06T13:31:21.605595 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.605972 #19339] INFO -- py3-windows-server-2016: notepadplusplus.install: +I, [2020-03-06T13:31:21.606343 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.606702 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.607046 #19339] INFO -- py3-windows-server-2016: - 7.8.5 +I, [2020-03-06T13:31:21.607373 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.607726 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.608146 #19339] INFO -- py3-windows-server-2016: ID: windows.system.server.features.installed.telnet-client +I, [2020-03-06T13:31:21.608496 #19339] INFO -- py3-windows-server-2016: Function: win_servermanager.installed +I, [2020-03-06T13:31:21.608871 #19339] INFO -- py3-windows-server-2016: Name: telnet-client +I, [2020-03-06T13:31:21.609176 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.609479 #19339] INFO -- py3-windows-server-2016: Comment: Installed the following: +I, [2020-03-06T13:31:21.609803 #19339] INFO -- py3-windows-server-2016: - telnet-client +I, [2020-03-06T13:31:21.610156 #19339] INFO -- py3-windows-server-2016: - Telnet-Client +I, [2020-03-06T13:31:21.610544 #19339] INFO -- py3-windows-server-2016: Started: 10:31:04.226020 +I, [2020-03-06T13:31:21.610873 #19339] INFO -- py3-windows-server-2016: Duration: 16328.113 ms +I, [2020-03-06T13:31:21.611194 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.611517 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.611858 #19339] INFO -- py3-windows-server-2016: Telnet-Client: +I, [2020-03-06T13:31:21.612231 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.612551 #19339] INFO -- py3-windows-server-2016: new: +I, [2020-03-06T13:31:21.612888 #19339] INFO -- py3-windows-server-2016: Telnet Client +I, [2020-03-06T13:31:21.613263 #19339] INFO -- py3-windows-server-2016: old: +I, [2020-03-06T13:31:21.613575 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.613928 #19339] INFO -- py3-windows-server-2016: ID: windows.module.system.reboot +I, [2020-03-06T13:31:21.614355 #19339] INFO -- py3-windows-server-2016: Function: module.run +I, [2020-03-06T13:31:21.614705 #19339] INFO -- py3-windows-server-2016: Result: True +I, [2020-03-06T13:31:21.615018 #19339] INFO -- py3-windows-server-2016: Comment: system.reboot: True +I, [2020-03-06T13:31:21.615325 #19339] INFO -- py3-windows-server-2016: Started: 10:31:20.554133 +I, [2020-03-06T13:31:21.615652 #19339] INFO -- py3-windows-server-2016: Duration: 249.994 ms +I, [2020-03-06T13:31:21.615952 #19339] INFO -- py3-windows-server-2016: Changes: +I, [2020-03-06T13:31:21.616331 #19339] INFO -- py3-windows-server-2016: ---------- +I, [2020-03-06T13:31:21.616700 #19339] INFO -- py3-windows-server-2016: system.reboot: +I, [2020-03-06T13:31:21.617030 #19339] INFO -- py3-windows-server-2016: True +I, [2020-03-06T13:31:21.617321 #19339] INFO -- py3-windows-server-2016: +I, [2020-03-06T13:31:21.617645 #19339] INFO -- py3-windows-server-2016: Summary for local +I, [2020-03-06T13:31:21.617944 #19339] INFO -- py3-windows-server-2016: ------------- +I, [2020-03-06T13:31:21.618253 #19339] INFO -- py3-windows-server-2016: Succeeded: 20 (changed=20) +I, [2020-03-06T13:31:21.618646 #19339] INFO -- py3-windows-server-2016: Failed: 0 +I, [2020-03-06T13:31:21.619076 #19339] INFO -- py3-windows-server-2016: ------------- +I, [2020-03-06T13:31:21.619448 #19339] INFO -- py3-windows-server-2016: Total states run: 20 +I, [2020-03-06T13:31:21.619784 #19339] INFO -- py3-windows-server-2016: Total run time: 149.133 s +I, [2020-03-06T13:31:21.641525 #19339] INFO -- py3-windows-server-2016: Downloading files from +I, [2020-03-06T13:31:21.836024 #19339] INFO -- py3-windows-server-2016: Finished converging (3m14.11s). +I, [2020-03-06T13:31:21.836223 #19339] INFO -- py3-windows-server-2016: -----> Setting up ... +I, [2020-03-06T13:31:21.838641 #19339] INFO -- py3-windows-server-2016: Finished setting up (0m0.00s). +I, [2020-03-06T13:31:21.838816 #19339] INFO -- py3-windows-server-2016: -----> Verifying ... +I, [2020-03-06T13:31:22.853563 #19339] INFO -- py3-windows-server-2016: Loaded default +I, [2020-03-06T13:31:59.050186 #19339] INFO -- py3-windows-server-2016: Finished verifying (0m37.20s). +I, [2020-03-06T13:31:59.050333 #19339] INFO -- py3-windows-server-2016: Finished testing (5m38.48s). +I, [2020-03-06T13:31:59.051840 #19339] INFO -- py3-windows-server-2016: -----> Destroying ... +I, [2020-03-06T13:32:09.042159 #19339] INFO -- py3-windows-server-2016: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:32:10.758484 #19339] INFO -- py3-windows-server-2016: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:32:11.415024 #19339] INFO -- py3-windows-server-2016: Vagrant instance destroyed. +I, [2020-03-06T13:32:11.416226 #19339] INFO -- py3-windows-server-2016: Finished destroying (0m12.36s). diff --git a/test/results/py3-windows-server-2016.log b/test/results/py3-windows-server-2016.log index c3c04f9..fc0475c 100644 --- a/test/results/py3-windows-server-2016.log +++ b/test/results/py3-windows-server-2016.log @@ -1,15 +1,13 @@ -Wed Mar 4 15:22:51 EST 2020 -commit 83df63b728d6440d0a2e75a16942f0c1d8916fb0 +Fri Mar 6 13:26:01 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Author: Peter Mudd -Date: Mon Mar 2 12:13:52 2020 -0500 +Date: Fri Mar 6 12:43:24 2020 -0500 - feat: convert `template-formula` to `windows-formula` - - BREAKING CHANGE: changed all state names and ids + feat: support saltstack 3000 CURRENT BRANCH COMMIT ID -83df63b728d6440d0a2e75a16942f0c1d8916fb0 +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e CURRENT RELEASE TAG -v1.0.1 +v1.0.0 -----> Starting Test Kitchen (v2.3.4) -----> Cleaning up any prior instances of -----> Destroying ... @@ -20,7 +18,7 @@ v1.0.1 ==> default: Cloning VM... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'StefanScherer/windows_2016' version '2019.02.14' is up to date... - ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2016-b9e4f1c7-316e-48c8-90d7-967c18622e55 + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2016-e00bdcb3-61d1-4187-92da-5888b4024653 ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat @@ -53,7 +51,7 @@ v1.0.1 [WinRM] Established Vagrant instance created. - Finished creating (1m40.28s). + Finished creating (1m47.14s). -----> Converging ... Preparing files for transfer Preparing salt-minion @@ -69,12 +67,12 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:24 PM temp - Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + d----- 3/6/2020 10:28 AM temp + Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe Installing Salt minion Starting the Salt minion service Salt minion successfully installed - You asked for latest and you have 2019.2.3 installed, sweet! + You asked for latest and you have 3000 installed, sweet! @@ -84,7 +82,7 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:25 PM kitchen + d----- 3/6/2020 10:28 AM kitchen Transferring files to @@ -97,23 +95,21 @@ v1.0.1 Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') - [ERROR ] {'pkg.refresh_db': {'success': 0, 'total': 0, 'failed': 0}} - - [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) - [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W + [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) @@ -124,8 +120,8 @@ v1.0.1 Name: saltstack1 Result: True Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot - Started: 12:25:32.226122 - Duration: 125.123 ms + Started: 10:28:51.324181 + Duration: 115.845 ms Changes: ---------- hostname: @@ -136,8 +132,8 @@ v1.0.1 Name: Saltstack Computer Description Result: True Comment: Computer description successfully changed to 'Saltstack Computer Description' - Started: 12:25:32.351245 - Duration: 2705.55 ms + Started: 10:28:51.440026 + Duration: 3125.58 ms Changes: ---------- new: @@ -149,8 +145,8 @@ v1.0.1 Name: America/New_York Result: True Comment: Set timezone America/New_York - Started: 12:25:35.088069 - Duration: 15.639 ms + Started: 10:28:54.723706 + Duration: 47.444 ms Changes: ---------- timezone: @@ -160,8 +156,8 @@ v1.0.1 Function: module.run Result: True Comment: environ.items: Success - Started: 12:25:35.103708 - Duration: 15.649 ms + Started: 10:28:54.786951 + Duration: 15.811 ms Changes: ---------- environ.items: @@ -247,8 +243,8 @@ v1.0.1 Function: module.run Result: True Comment: user.current: VAGRANT\vagrant - Started: 12:25:35.119357 - Duration: 15.636 ms + Started: 10:28:54.802762 + Duration: 47.505 ms Changes: ---------- user.current: @@ -257,21 +253,21 @@ v1.0.1 ID: windows.module.status.uptime Function: module.run Result: True - Comment: status.uptime: 0:01:15.166268 - Started: 12:25:35.134993 - Duration: 31.275 ms + Comment: status.uptime: 0:01:24.897629 + Started: 10:28:54.850267 + Duration: 47.362 ms Changes: ---------- status.uptime: - 0:01:15.166268 + 0:01:24.897629 ---------- ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 Function: reg.present Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:25:35.166268 - Duration: 9795.009 ms + Started: 10:28:54.913497 + Duration: 16662.317 ms Changes: ---------- reg: @@ -300,8 +296,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:25:44.961277 - Duration: 437.686 ms + Started: 10:29:11.575814 + Duration: 310.494 ms Changes: ---------- reg: @@ -330,8 +326,8 @@ v1.0.1 Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng Result: True Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs - Started: 12:25:45.398963 - Duration: 906.624 ms + Started: 10:29:11.886308 + Duration: 1082.278 ms Changes: ---------- directories_created: @@ -700,7 +696,7 @@ v1.0.1 Function: module.run Result: True Comment: file.rename: True - Started: 12:25:46.305587 + Started: 10:29:12.984261 Duration: 0.0 ms Changes: ---------- @@ -710,10 +706,9 @@ v1.0.1 ID: pkg.refresh_db Function: module.run Result: True - Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" - check_cmd determined the state succeeded - Started: 12:25:46.321217 - Duration: 17082.682999999997 ms + Comment: check_cmd determined the state succeeded + Started: 10:29:12.984261 + Duration: 16154.702 ms Changes: ---------- pkg.refresh_db: @@ -725,26 +720,26 @@ v1.0.1 total: 298 ---------- - ID: git + ID: 7zip Function: pkg.installed Result: True - Comment: The following packages were installed/updated: git - Started: 12:26:03.403504 - Duration: 17877.496 ms + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:29:29.170268 + Duration: 4802.251 ms Changes: ---------- - git: + 7zip: ---------- new: - 2.23.0.windows.1 + 18.06.00.0 old: ---------- ID: kdiff3 Function: pkg.installed Result: True Comment: The following packages were installed/updated: kdiff3 - Started: 12:26:21.296622 - Duration: 10928.453 ms + Started: 10:29:34.035104 + Duration: 16784.691 ms Changes: ---------- kdiff3: @@ -753,26 +748,26 @@ v1.0.1 Not Found old: ---------- - ID: 7zip + ID: git Function: pkg.installed Result: True - Comment: The following packages were installed/updated: 7zip=18.06.00.0 - Started: 12:26:32.241800 - Duration: 10215.082 ms + Comment: The following packages were installed/updated: git + Started: 10:29:50.867673 + Duration: 30901.26 ms Changes: ---------- - 7zip: + git: ---------- new: - 18.06.00.0 + 2.23.0.windows.1 old: ---------- ID: windows_environment.refresh.path Function: module.run Result: True Comment: windows_environment.refresh: Success - Started: 12:26:42.456882 - Duration: 46.874 ms + Started: 10:30:21.768933 + Duration: 42.192 ms Changes: ---------- windows_environment.refresh: @@ -840,8 +835,8 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder - Started: 12:26:42.503756 - Duration: 19218.704 ms + Started: 10:30:21.811125 + Duration: 26649.535 ms Changes: ---------- chocolatey.bootstrap: @@ -885,8 +880,8 @@ v1.0.1 Name: windirstat Result: True Comment: - Started: 12:27:01.722460 - Duration: 6102.564 ms + Started: 10:30:48.460660 + Duration: 5483.933 ms Changes: ---------- windirstat: @@ -900,19 +895,19 @@ v1.0.1 Name: notepadplusplus Result: True Comment: - Started: 12:27:07.825024 - Duration: 13032.174 ms + Started: 10:30:53.944593 + Duration: 10281.427 ms Changes: ---------- notepadplusplus: ---------- new: - - 7.8.4 + - 7.8.5 old: notepadplusplus.install: ---------- new: - - 7.8.4 + - 7.8.5 old: ---------- ID: windows.system.server.features.installed.telnet-client @@ -922,8 +917,8 @@ v1.0.1 Comment: Installed the following: - telnet-client - Telnet-Client - Started: 12:27:20.857198 - Duration: 20888.338 ms + Started: 10:31:04.226020 + Duration: 16328.113 ms Changes: ---------- Telnet-Client: @@ -936,8 +931,8 @@ v1.0.1 Function: module.run Result: True Comment: system.reboot: True - Started: 12:27:41.745536 - Duration: 296.984 ms + Started: 10:31:20.554133 + Duration: 249.994 ms Changes: ---------- system.reboot: @@ -949,13 +944,15 @@ v1.0.1 Failed: 0 ------------- Total states run: 20 - Total run time: 129.738 s + Total run time: 149.133 s Downloading files from - Finished converging (2m51.68s). + Finished converging (3m14.11s). -----> Setting up ... Finished setting up (0m0.00s). -----> Verifying ... Loaded default +`execution expired`, target may be rebooting after highstate. Remaining retries: 20 +`execution expired`, target may be rebooting after highstate. Remaining retries: 19 INFO: Got pillar from the target minion using WinRM. Profile: SaltStack Windows Formula (default) @@ -996,13 +993,13 @@ Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 Profile Summary: 9 successful controls, 0 control failures, 1 control skipped Test Summary: 19 successful, 0 failures, 1 skipped - Finished verifying (0m37.26s). + Finished verifying (0m37.20s). + Finished testing (5m38.48s). -----> Destroying ... ==> default: Forcing shutdown of VM... ==> default: Destroying VM and associated drives... Vagrant instance destroyed. - Finished destroying (0m12.67s). - Finished testing (5m21.91s). ------> Test Kitchen is finished. (5m33.68s) + Finished destroying (0m12.36s). +-----> Test Kitchen is finished. (6m3.73s) KITCHEN TEST EXIT CODE 0 diff --git a/test/results/py3-windows-server-2016.salt.log b/test/results/py3-windows-server-2016.salt.log index 57f4583..71d232a 100755 --- a/test/results/py3-windows-server-2016.salt.log +++ b/test/results/py3-windows-server-2016.salt.log @@ -1,31 +1,31 @@ -2020-03-04 12:25:21,947 [salt.loader :747 ][DEBUG ][4888] Grains refresh requested. Refreshing grains. -2020-03-04 12:25:21,963 [salt.config :2190][DEBUG ][4888] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 12:25:21,963 [salt.config :2334][DEBUG ][4888] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 12:25:21,963 [salt.config :2190][DEBUG ][4888] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 12:25:28,882 [salt.pillar :57 ][DEBUG ][4888] Determining pillar cache -2020-03-04 12:25:28,914 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:28,928 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:28,928 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 12:25:28,944 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:25:28,944 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:28,961 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +2020-03-06 10:28:41,003 [salt.loader :770 ][DEBUG ][4476] Grains refresh requested. Refreshing grains. +2020-03-06 10:28:41,019 [salt.config :2111][DEBUG ][4476] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:28:41,019 [salt.config :2255][DEBUG ][4476] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:28:41,019 [salt.config :2111][DEBUG ][4476] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:28:47,383 [salt.pillar :57 ][DEBUG ][4476] Determining pillar cache +2020-03-06 10:28:47,431 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:28:47,431 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:28:47,447 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:28:47,447 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:28:47,462 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015892744064331055 +2020-03-06 10:28:47,462 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: --- base: "*": - windows -2020-03-04 12:25:28,961 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:47,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:25:28,961 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:28,961 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded confirm_top.confirm_top -2020-03-04 12:25:28,961 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded compound_match.match -2020-03-04 12:25:28,975 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4888] compound_match: vagrant ? * -2020-03-04 12:25:28,975 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded glob_match.match -2020-03-04 12:25:28,975 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4888] compound_match vagrant ? "*" => "True" -2020-03-04 12:25:28,975 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 12:25:28,975 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:25:28,991 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.015625715255737305 -2020-03-04 12:25:28,991 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +2020-03-06 10:28:47,478 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:47,478 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded confirm_top.confirm_top +2020-03-06 10:28:47,478 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded compound_match.match +2020-03-06 10:28:47,478 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4476] compound_match: vagrant ? * +2020-03-06 10:28:47,495 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded glob_match.match +2020-03-06 10:28:47,495 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4476] compound_match vagrant ? "*" => "True" +2020-03-06 10:28:47,495 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:28:47,495 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:28:47,495 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:47,510 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: # -*- coding: utf-8 -*- # vim: ft=yaml --- @@ -427,283 +427,292 @@ windows: password_never_expires: false disallow_change_password: false -2020-03-04 12:25:28,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:47,510 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 12:25:28,991 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:29,023 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:29,023 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:29,132 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded state.highstate -2020-03-04 12:25:29,148 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded direct_call.execute -2020-03-04 12:25:29,148 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded grains.get -2020-03-04 12:25:29,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded saltutil.is_running -2020-03-04 12:25:29,303 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded config.get -2020-03-04 12:25:29,303 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: test, ret: _|- -2020-03-04 12:25:29,336 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:29,600 [git.cmd :722 ][DEBUG ][4888] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) -2020-03-04 12:25:29,632 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:29,634 [salt.fileserver :502 ][DEBUG ][4888] Updating roots fileserver cache -2020-03-04 12:25:29,677 [salt.state :736 ][DEBUG ][4888] Gathering pillar data for state run -2020-03-04 12:25:29,693 [salt.state :750 ][DEBUG ][4888] Finished gathering pillar data for state run -2020-03-04 12:25:29,693 [salt.state :966 ][INFO ][4888] Loading fresh modules for state activity -2020-03-04 12:25:29,725 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:29,725 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:29,725 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' -2020-03-04 12:25:29,725 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' -2020-03-04 12:25:29,725 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' -2020-03-04 12:25:29,740 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:29,740 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'top.sls' -2020-03-04 12:25:29,740 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls -2020-03-04 12:25:29,740 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:29,755 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:29,771 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:29,771 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.031252384185791016 -2020-03-04 12:25:29,771 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +2020-03-06 10:28:47,510 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:47,558 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:28:47,558 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:28:47,622 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded state.highstate +2020-03-06 10:28:47,622 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded direct_call.execute +2020-03-06 10:28:47,638 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded grains.get +2020-03-06 10:28:47,701 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded saltutil.is_running +2020-03-06 10:28:47,749 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded config.get +2020-03-06 10:28:47,765 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: test, ret: _|- +2020-03-06 10:28:47,797 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,020 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:28:48,036 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:28:48,051 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,067 [salt.fileserver :502 ][DEBUG ][4476] Updating roots fileserver cache +2020-03-06 10:28:48,115 [salt.state :735 ][DEBUG ][4476] Gathering pillar data for state run +2020-03-06 10:28:48,115 [salt.state :749 ][DEBUG ][4476] Finished gathering pillar data for state run +2020-03-06 10:28:48,115 [salt.state :1014][INFO ][4476] Loading fresh modules for state activity +2020-03-06 10:28:48,163 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:28:48,163 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:28:48,180 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:28:48,180 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:28:48,180 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:28:48,180 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:48,180 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:28:48,180 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:28:48,195 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:48,211 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,227 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,227 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.03181815147399902 +2020-03-06 10:28:48,227 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: --- base: "*": - windows -2020-03-04 12:25:29,771 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:48,227 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:25:29,771 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:29,771 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded confirm_top.confirm_top -2020-03-04 12:25:29,787 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded compound_match.match -2020-03-04 12:25:29,787 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4888] compound_match: vagrant ? * -2020-03-04 12:25:29,787 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded glob_match.match -2020-03-04 12:25:29,787 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4888] compound_match vagrant ? "*" => "True" -2020-03-04 12:25:29,787 [salt.fileclient :1368][DEBUG ][4888] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. -2020-03-04 12:25:29,787 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded saltutil.sync_all -2020-03-04 12:25:29,787 [salt.loaded.int.module.saltutil:968 ][DEBUG ][4888] Syncing all -2020-03-04 12:25:29,802 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' -2020-03-04 12:25:29,818 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:29,818 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:29,833 [salt.utils.extmods:90 ][INFO ][4888] Syncing clouds for environment 'base' -2020-03-04 12:25:29,833 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_clouds, for base) -2020-03-04 12:25:29,833 [salt.fileclient :234 ][INFO ][4888] Caching directory '_clouds/' for environment 'base' -2020-03-04 12:25:29,833 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:29,833 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' -2020-03-04 12:25:29,833 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' -2020-03-04 12:25:29,850 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:29,865 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:29,865 [salt.utils.extmods:90 ][INFO ][4888] Syncing beacons for environment 'base' -2020-03-04 12:25:29,865 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_beacons, for base) -2020-03-04 12:25:29,865 [salt.fileclient :234 ][INFO ][4888] Caching directory '_beacons/' for environment 'base' -2020-03-04 12:25:29,865 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:29,865 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' -2020-03-04 12:25:29,865 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' -2020-03-04 12:25:29,880 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:29,896 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:29,896 [salt.utils.extmods:90 ][INFO ][4888] Syncing modules for environment 'base' -2020-03-04 12:25:29,896 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_modules, for base) -2020-03-04 12:25:29,896 [salt.fileclient :234 ][INFO ][4888] Caching directory '_modules/' for environment 'base' -2020-03-04 12:25:29,896 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:29,896 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:25:29,911 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:25:29,911 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:25:29,911 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:29,911 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' -2020-03-04 12:25:29,911 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' -2020-03-04 12:25:29,911 [salt.utils.extmods:119 ][INFO ][4888] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' -2020-03-04 12:25:29,911 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' -2020-03-04 12:25:29,943 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:29,943 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:29,943 [salt.utils.extmods:90 ][INFO ][4888] Syncing states for environment 'base' -2020-03-04 12:25:29,943 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_states, for base) -2020-03-04 12:25:29,943 [salt.fileclient :234 ][INFO ][4888] Caching directory '_states/' for environment 'base' -2020-03-04 12:25:29,943 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:29,958 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' -2020-03-04 12:25:29,958 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' -2020-03-04 12:25:29,974 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:29,974 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:29,990 [salt.utils.extmods:90 ][INFO ][4888] Syncing sdb for environment 'base' -2020-03-04 12:25:29,990 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_sdb, for base) -2020-03-04 12:25:29,990 [salt.fileclient :234 ][INFO ][4888] Caching directory '_sdb/' for environment 'base' -2020-03-04 12:25:29,990 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:29,990 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' -2020-03-04 12:25:29,990 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' -2020-03-04 12:25:30,006 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,021 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,021 [salt.utils.extmods:90 ][INFO ][4888] Syncing grains for environment 'base' -2020-03-04 12:25:30,021 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_grains, for base) -2020-03-04 12:25:30,021 [salt.fileclient :234 ][INFO ][4888] Caching directory '_grains/' for environment 'base' -2020-03-04 12:25:30,021 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,021 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' -2020-03-04 12:25:30,021 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' -2020-03-04 12:25:30,052 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,052 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,052 [salt.utils.extmods:90 ][INFO ][4888] Syncing renderers for environment 'base' -2020-03-04 12:25:30,052 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_renderers, for base) -2020-03-04 12:25:30,052 [salt.fileclient :234 ][INFO ][4888] Caching directory '_renderers/' for environment 'base' -2020-03-04 12:25:30,068 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,068 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' -2020-03-04 12:25:30,068 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' -2020-03-04 12:25:30,084 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,099 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,099 [salt.utils.extmods:90 ][INFO ][4888] Syncing returners for environment 'base' -2020-03-04 12:25:30,099 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_returners, for base) -2020-03-04 12:25:30,099 [salt.fileclient :234 ][INFO ][4888] Caching directory '_returners/' for environment 'base' -2020-03-04 12:25:30,099 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,099 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' -2020-03-04 12:25:30,115 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' -2020-03-04 12:25:30,130 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,130 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,130 [salt.utils.extmods:90 ][INFO ][4888] Syncing output for environment 'base' -2020-03-04 12:25:30,146 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_output, for base) -2020-03-04 12:25:30,146 [salt.fileclient :234 ][INFO ][4888] Caching directory '_output/' for environment 'base' -2020-03-04 12:25:30,146 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,146 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' -2020-03-04 12:25:30,146 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' -2020-03-04 12:25:30,177 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,193 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,193 [salt.utils.extmods:90 ][INFO ][4888] Syncing utils for environment 'base' -2020-03-04 12:25:30,193 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_utils, for base) -2020-03-04 12:25:30,193 [salt.fileclient :234 ][INFO ][4888] Caching directory '_utils/' for environment 'base' -2020-03-04 12:25:30,193 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,193 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' -2020-03-04 12:25:30,193 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' -2020-03-04 12:25:30,224 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,224 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,224 [salt.utils.extmods:90 ][INFO ][4888] Syncing log_handlers for environment 'base' -2020-03-04 12:25:30,224 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_log_handlers, for base) -2020-03-04 12:25:30,224 [salt.fileclient :234 ][INFO ][4888] Caching directory '_log_handlers/' for environment 'base' -2020-03-04 12:25:30,224 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,240 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' -2020-03-04 12:25:30,240 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' -2020-03-04 12:25:30,256 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,256 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,271 [salt.utils.extmods:90 ][INFO ][4888] Syncing proxy for environment 'base' -2020-03-04 12:25:30,271 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_proxy, for base) -2020-03-04 12:25:30,271 [salt.fileclient :234 ][INFO ][4888] Caching directory '_proxy/' for environment 'base' -2020-03-04 12:25:30,271 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,271 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' -2020-03-04 12:25:30,271 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' -2020-03-04 12:25:30,286 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,302 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,302 [salt.utils.extmods:90 ][INFO ][4888] Syncing engines for environment 'base' -2020-03-04 12:25:30,302 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_engines, for base) -2020-03-04 12:25:30,302 [salt.fileclient :234 ][INFO ][4888] Caching directory '_engines/' for environment 'base' -2020-03-04 12:25:30,302 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,302 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' -2020-03-04 12:25:30,302 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' -2020-03-04 12:25:30,333 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,333 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,333 [salt.utils.extmods:90 ][INFO ][4888] Syncing thorium for environment 'base' -2020-03-04 12:25:30,333 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_thorium, for base) -2020-03-04 12:25:30,349 [salt.fileclient :234 ][INFO ][4888] Caching directory '_thorium/' for environment 'base' -2020-03-04 12:25:30,349 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,349 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' -2020-03-04 12:25:30,349 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' -2020-03-04 12:25:30,365 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,381 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,381 [salt.utils.extmods:90 ][INFO ][4888] Syncing serializers for environment 'base' -2020-03-04 12:25:30,381 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_serializers, for base) -2020-03-04 12:25:30,381 [salt.fileclient :234 ][INFO ][4888] Caching directory '_serializers/' for environment 'base' -2020-03-04 12:25:30,381 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,381 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' -2020-03-04 12:25:30,381 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' -2020-03-04 12:25:30,411 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,411 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,411 [salt.utils.extmods:90 ][INFO ][4888] Syncing matchers for environment 'base' -2020-03-04 12:25:30,411 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_matchers, for base) -2020-03-04 12:25:30,411 [salt.fileclient :234 ][INFO ][4888] Caching directory '_matchers/' for environment 'base' -2020-03-04 12:25:30,411 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,411 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' -2020-03-04 12:25:30,427 [salt.utils.extmods:79 ][INFO ][4888] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' -2020-03-04 12:25:30,444 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:30,444 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:30,444 [salt.utils.extmods:90 ][INFO ][4888] Syncing pillar for environment 'base' -2020-03-04 12:25:30,458 [salt.utils.extmods:94 ][INFO ][4888] Loading cache from salt://_pillar, for base) -2020-03-04 12:25:30,458 [salt.fileclient :234 ][INFO ][4888] Caching directory '_pillar/' for environment 'base' -2020-03-04 12:25:30,458 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:30,458 [salt.utils.extmods:109 ][DEBUG ][4888] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' -2020-03-04 12:25:30,458 [salt.state :1000][DEBUG ][4888] Refreshing modules... -2020-03-04 12:25:30,474 [salt.state :966 ][INFO ][4888] Loading fresh modules for state activity -2020-03-04 12:25:30,505 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:30,505 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:30,505 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows.sls' in saltenv 'base' -2020-03-04 12:25:30,521 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:25:30,521 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:25:30,521 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' -2020-03-04 12:25:30,521 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,521 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' -2020-03-04 12:25:30,521 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls -2020-03-04 12:25:30,521 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:30,536 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,536 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,536 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' -2020-03-04 12:25:30,536 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,536 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' -2020-03-04 12:25:30,553 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,568 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,568 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,568 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,568 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' -2020-03-04 12:25:30,568 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,568 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,568 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,583 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,583 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' -2020-03-04 12:25:30,583 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,583 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,583 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,583 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,599 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' -2020-03-04 12:25:30,599 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,599 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,599 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,599 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,599 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' -2020-03-04 12:25:30,615 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,615 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,615 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,615 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,615 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' -2020-03-04 12:25:30,630 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:30,630 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:30,630 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:30,630 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,630 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' -2020-03-04 12:25:30,647 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded config.get -2020-03-04 12:25:30,647 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded grains.filter_by -2020-03-04 12:25:30,647 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.12586593627929688 -2020-03-04 12:25:30,647 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +2020-03-06 10:28:48,227 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:48,227 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded confirm_top.confirm_top +2020-03-06 10:28:48,242 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded compound_match.match +2020-03-06 10:28:48,242 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4476] compound_match: vagrant ? * +2020-03-06 10:28:48,242 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded glob_match.match +2020-03-06 10:28:48,242 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4476] compound_match vagrant ? "*" => "True" +2020-03-06 10:28:48,242 [salt.fileclient :1376][DEBUG ][4476] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:28:48,242 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded saltutil.sync_all +2020-03-06 10:28:48,242 [salt.loaded.int.module.saltutil:1009][DEBUG ][4476] Syncing all +2020-03-06 10:28:48,258 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:28:48,275 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,290 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,290 [salt.utils.extmods:90 ][INFO ][4476] Syncing clouds for environment 'base' +2020-03-06 10:28:48,290 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_clouds, for base) +2020-03-06 10:28:48,290 [salt.fileclient :234 ][INFO ][4476] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:28:48,290 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,290 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:28:48,290 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:28:48,322 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,322 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,322 [salt.utils.extmods:90 ][INFO ][4476] Syncing beacons for environment 'base' +2020-03-06 10:28:48,322 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_beacons, for base) +2020-03-06 10:28:48,338 [salt.fileclient :234 ][INFO ][4476] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:28:48,338 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,338 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:28:48,338 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:28:48,354 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,370 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,386 [salt.utils.extmods:90 ][INFO ][4476] Syncing modules for environment 'base' +2020-03-06 10:28:48,386 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_modules, for base) +2020-03-06 10:28:48,386 [salt.fileclient :234 ][INFO ][4476] Caching directory '_modules/' for environment 'base' +2020-03-06 10:28:48,386 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,386 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:28:48,386 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:28:48,386 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:28:48,386 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:48,401 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:28:48,401 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:28:48,401 [salt.utils.extmods:119 ][INFO ][4476] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:28:48,401 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:28:48,434 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,449 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,449 [salt.utils.extmods:90 ][INFO ][4476] Syncing states for environment 'base' +2020-03-06 10:28:48,449 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_states, for base) +2020-03-06 10:28:48,449 [salt.fileclient :234 ][INFO ][4476] Caching directory '_states/' for environment 'base' +2020-03-06 10:28:48,449 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,449 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:28:48,466 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:28:48,481 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,497 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,497 [salt.utils.extmods:90 ][INFO ][4476] Syncing sdb for environment 'base' +2020-03-06 10:28:48,497 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_sdb, for base) +2020-03-06 10:28:48,497 [salt.fileclient :234 ][INFO ][4476] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:28:48,497 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,497 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:28:48,497 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:28:48,529 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,545 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,545 [salt.utils.extmods:90 ][INFO ][4476] Syncing grains for environment 'base' +2020-03-06 10:28:48,545 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_grains, for base) +2020-03-06 10:28:48,545 [salt.fileclient :234 ][INFO ][4476] Caching directory '_grains/' for environment 'base' +2020-03-06 10:28:48,545 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,545 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:28:48,545 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:28:48,576 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,576 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,576 [salt.utils.extmods:90 ][INFO ][4476] Syncing renderers for environment 'base' +2020-03-06 10:28:48,592 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_renderers, for base) +2020-03-06 10:28:48,592 [salt.fileclient :234 ][INFO ][4476] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:28:48,592 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,592 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:28:48,592 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:28:48,624 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,624 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,624 [salt.utils.extmods:90 ][INFO ][4476] Syncing returners for environment 'base' +2020-03-06 10:28:48,640 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_returners, for base) +2020-03-06 10:28:48,640 [salt.fileclient :234 ][INFO ][4476] Caching directory '_returners/' for environment 'base' +2020-03-06 10:28:48,640 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,640 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:28:48,640 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:28:48,656 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,673 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,673 [salt.utils.extmods:90 ][INFO ][4476] Syncing output for environment 'base' +2020-03-06 10:28:48,673 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_output, for base) +2020-03-06 10:28:48,673 [salt.fileclient :234 ][INFO ][4476] Caching directory '_output/' for environment 'base' +2020-03-06 10:28:48,688 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,688 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:28:48,688 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:28:48,704 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,719 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,719 [salt.utils.extmods:90 ][INFO ][4476] Syncing utils for environment 'base' +2020-03-06 10:28:48,719 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_utils, for base) +2020-03-06 10:28:48,719 [salt.fileclient :234 ][INFO ][4476] Caching directory '_utils/' for environment 'base' +2020-03-06 10:28:48,719 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,735 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:28:48,735 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:28:48,751 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,767 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,767 [salt.utils.extmods:90 ][INFO ][4476] Syncing log_handlers for environment 'base' +2020-03-06 10:28:48,767 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:28:48,767 [salt.fileclient :234 ][INFO ][4476] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:28:48,767 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,767 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:28:48,767 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\executors' +2020-03-06 10:28:48,799 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,799 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,799 [salt.utils.extmods:90 ][INFO ][4476] Syncing executors for environment 'base' +2020-03-06 10:28:48,815 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_executors, for base) +2020-03-06 10:28:48,815 [salt.fileclient :234 ][INFO ][4476] Caching directory '_executors/' for environment 'base' +2020-03-06 10:28:48,815 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,815 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_executors' +2020-03-06 10:28:48,815 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:28:48,831 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,847 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,847 [salt.utils.extmods:90 ][INFO ][4476] Syncing proxy for environment 'base' +2020-03-06 10:28:48,847 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_proxy, for base) +2020-03-06 10:28:48,847 [salt.fileclient :234 ][INFO ][4476] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:28:48,847 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,863 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:28:48,863 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:28:48,878 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,894 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,894 [salt.utils.extmods:90 ][INFO ][4476] Syncing engines for environment 'base' +2020-03-06 10:28:48,894 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_engines, for base) +2020-03-06 10:28:48,894 [salt.fileclient :234 ][INFO ][4476] Caching directory '_engines/' for environment 'base' +2020-03-06 10:28:48,894 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,894 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:28:48,894 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:28:48,926 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,926 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,926 [salt.utils.extmods:90 ][INFO ][4476] Syncing thorium for environment 'base' +2020-03-06 10:28:48,942 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_thorium, for base) +2020-03-06 10:28:48,942 [salt.fileclient :234 ][INFO ][4476] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:28:48,942 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,942 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:28:48,942 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:28:48,959 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:48,974 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:48,974 [salt.utils.extmods:90 ][INFO ][4476] Syncing serializers for environment 'base' +2020-03-06 10:28:48,974 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_serializers, for base) +2020-03-06 10:28:48,974 [salt.fileclient :234 ][INFO ][4476] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:28:48,974 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:48,990 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:28:48,990 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:28:49,006 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:49,023 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:49,023 [salt.utils.extmods:90 ][INFO ][4476] Syncing matchers for environment 'base' +2020-03-06 10:28:49,023 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_matchers, for base) +2020-03-06 10:28:49,023 [salt.fileclient :234 ][INFO ][4476] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:28:49,023 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:49,023 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:28:49,023 [salt.utils.extmods:79 ][INFO ][4476] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:28:49,053 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:49,053 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:49,069 [salt.utils.extmods:90 ][INFO ][4476] Syncing pillar for environment 'base' +2020-03-06 10:28:49,069 [salt.utils.extmods:94 ][INFO ][4476] Loading cache from salt://_pillar, for base) +2020-03-06 10:28:49,069 [salt.fileclient :234 ][INFO ][4476] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:28:49,069 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:49,069 [salt.utils.extmods:109 ][DEBUG ][4476] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:28:49,069 [salt.state :1048][DEBUG ][4476] Refreshing modules... +2020-03-06 10:28:49,101 [salt.state :1014][INFO ][4476] Loading fresh modules for state activity +2020-03-06 10:28:49,133 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:28:49,149 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:28:49,149 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:28:49,149 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:28:49,149 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:28:49,149 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:28:49,149 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,165 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:28:49,165 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:28:49,165 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,165 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,165 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,212 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:28:49,212 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,228 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:28:49,244 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,244 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,260 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,260 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,260 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:28:49,260 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,260 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,260 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,276 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,276 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:28:49,276 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,276 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,292 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,292 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,292 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:28:49,292 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,292 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,292 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,308 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,308 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:28:49,308 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,308 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,308 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,324 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,324 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:28:49,324 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,324 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,324 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,324 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,339 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:28:49,339 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded config.get +2020-03-06 10:28:49,355 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded grains.filter_by +2020-03-06 10:28:49,355 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.19068408012390137 +2020-03-06 10:28:49,355 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .states - .modules - .system -2020-03-04 12:25:30,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,355 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.states', '.modules', '.system'])]) -2020-03-04 12:25:30,647 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:30,661 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:25:30,661 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:25:30,661 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' -2020-03-04 12:25:30,661 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,661 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' -2020-03-04 12:25:30,661 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls -2020-03-04 12:25:30,661 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:30,677 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:25:30,677 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:25:30,677 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' -2020-03-04 12:25:30,677 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,677 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' -2020-03-04 12:25:30,724 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,724 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,740 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,740 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,740 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,755 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,755 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,755 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,755 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,755 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,755 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,755 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,771 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:30,771 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:30,771 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.10949301719665527 -2020-03-04 12:25:30,771 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +2020-03-06 10:28:49,355 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:49,355 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:28:49,371 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:28:49,371 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:28:49,371 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,371 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:28:49,371 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:28:49,371 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,387 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:28:49,387 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:28:49,387 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:28:49,387 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,403 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:28:49,452 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,452 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,467 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,467 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,467 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,467 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,482 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,482 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,482 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,482 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,482 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,482 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,498 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,498 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,498 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.12705492973327637 +2020-03-06 10:28:49,514 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -722,34 +731,34 @@ windows.state.timezone.system.America/New_York: -2020-03-04 12:25:30,787 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,514 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) -2020-03-04 12:25:30,787 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:30,787 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:25:30,787 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:25:30,787 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' -2020-03-04 12:25:30,787 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,787 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' -2020-03-04 12:25:30,787 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls -2020-03-04 12:25:30,787 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:30,802 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:25:30,802 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:25:30,849 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,849 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,865 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,865 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,865 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,880 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,880 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,880 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,897 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,897 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,897 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,897 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,897 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:30,897 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:30,912 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.12513422966003418 -2020-03-04 12:25:30,912 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +2020-03-06 10:28:49,514 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:49,514 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:28:49,514 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:28:49,514 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:28:49,514 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,530 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:28:49,530 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:28:49,530 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,530 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:28:49,530 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:28:49,578 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,578 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,594 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,594 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,609 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,609 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,626 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,626 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,626 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,626 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,626 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,626 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,641 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,641 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,641 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.11117005348205566 +2020-03-06 10:28:49,657 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -777,33 +786,33 @@ windows.module.status.uptime: - windows.module.user.current -2020-03-04 12:25:30,912 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) -2020-03-04 12:25:30,912 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:30,927 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system.sls' in saltenv 'base' -2020-03-04 12:25:30,927 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:25:30,927 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:25:30,927 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' -2020-03-04 12:25:30,927 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:30,927 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' -2020-03-04 12:25:30,943 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls -2020-03-04 12:25:30,943 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:30,943 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,943 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:30,959 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,974 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:30,974 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,974 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:30,974 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,974 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:30,990 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,990 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:30,990 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,990 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:30,990 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,006 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,021 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.07820820808410645 -2020-03-04 12:25:31,021 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +2020-03-06 10:28:49,657 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:49,657 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:28:49,657 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:28:49,657 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:28:49,657 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:28:49,657 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,673 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:28:49,673 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:28:49,673 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,689 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,705 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,722 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,722 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,722 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,722 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,737 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,737 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,737 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,737 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,737 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,752 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,752 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,752 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,752 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.07940959930419922 +2020-03-06 10:28:49,768 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls # sls: windows.system windows system @@ -820,19 +829,19 @@ include: - .desktop -2020-03-04 12:25:31,021 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.packages', '.server', '.desktop'])]) -2020-03-04 12:25:31,021 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,021 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' -2020-03-04 12:25:31,037 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:25:31,037 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:25:31,037 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' -2020-03-04 12:25:31,037 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,037 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' -2020-03-04 12:25:31,037 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls -2020-03-04 12:25:31,053 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,053 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,053 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +2020-03-06 10:28:49,768 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:49,768 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:28:49,768 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:28:49,768 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:28:49,784 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:28:49,784 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,784 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:28:49,784 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:28:49,784 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,784 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:49,800 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -841,67 +850,67 @@ include: - .powershell - .saltstack - .chocolatey -2020-03-04 12:25:31,053 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,800 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) -2020-03-04 12:25:31,053 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,053 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' -2020-03-04 12:25:31,053 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:25:31,068 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:25:31,068 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:25:31,068 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,068 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' -2020-03-04 12:25:31,068 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls -2020-03-04 12:25:31,068 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,084 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.015641212463378906 -2020-03-04 12:25:31,084 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +2020-03-06 10:28:49,800 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:49,800 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:28:49,800 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:28:49,800 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:28:49,800 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:28:49,800 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,816 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:28:49,816 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:28:49,816 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,816 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:49,816 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .remove-provisioned-apps -2020-03-04 12:25:31,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,816 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.remove-provisioned-apps'])]) -2020-03-04 12:25:31,084 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,099 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:25:31,099 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:25:31,099 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:25:31,099 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,116 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:25:31,116 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls -2020-03-04 12:25:31,116 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,116 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,116 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +2020-03-06 10:28:49,832 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.015878677368164062 +2020-03-06 10:28:49,832 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:28:49,832 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:28:49,832 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:28:49,832 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,832 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:28:49,848 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:28:49,848 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,848 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:49,848 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .removed -2020-03-04 12:25:31,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.removed'])]) -2020-03-04 12:25:31,116 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,131 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:25:31,131 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:25:31,131 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:25:31,131 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,131 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' -2020-03-04 12:25:31,131 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls -2020-03-04 12:25:31,131 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,146 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,146 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,162 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,162 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,179 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,179 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,179 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,179 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,179 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,179 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,193 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,193 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,193 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,193 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,209 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.07820868492126465 -2020-03-04 12:25:31,209 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +2020-03-06 10:28:49,848 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:49,848 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:28:49,864 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:28:49,864 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:28:49,864 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,864 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:28:49,864 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:28:49,879 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,879 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,879 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:49,896 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,911 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:49,911 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,911 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:49,911 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,927 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:49,927 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,927 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:49,927 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,927 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:49,927 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,927 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:49,943 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.06353354454040527 +2020-03-06 10:28:49,943 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -909,87 +918,87 @@ OrderedDict([('include', ['.removed'])]) -2020-03-04 12:25:31,209 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,943 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: {} -2020-03-04 12:25:31,209 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,209 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' -2020-03-04 12:25:31,209 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:25:31,209 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:25:31,209 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:25:31,225 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,225 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' -2020-03-04 12:25:31,225 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls -2020-03-04 12:25:31,225 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,225 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,225 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +2020-03-06 10:28:49,959 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.015881776809692383 +2020-03-06 10:28:49,975 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:28:49,975 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:28:49,975 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:28:49,975 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:28:49,975 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:49,975 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:28:49,991 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:28:49,991 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:49,991 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:49,991 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .modules - .framework -2020-03-04 12:25:31,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:49,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.framework'])]) -2020-03-04 12:25:31,225 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,240 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' -2020-03-04 12:25:31,240 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:25:31,240 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:25:31,240 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:25:31,240 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,256 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:25:31,256 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls -2020-03-04 12:25:31,256 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,256 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,256 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +2020-03-06 10:28:49,991 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:49,991 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:28:50,007 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:28:50,007 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:28:50,007 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:28:50,007 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,007 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:28:50,007 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:28:50,007 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,022 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.015883922576904297 +2020-03-06 10:28:50,022 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .v4_5 -2020-03-04 12:25:31,256 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.v4_5'])]) -2020-03-04 12:25:31,256 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,256 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' -2020-03-04 12:25:31,256 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:25:31,256 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:25:31,272 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:25:31,272 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,272 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:25:31,272 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls -2020-03-04 12:25:31,272 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,272 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,272 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +2020-03-06 10:28:50,022 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,022 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:28:50,022 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:28:50,022 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:28:50,022 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:28:50,022 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,038 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:28:50,038 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:28:50,038 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,038 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:50,038 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .tls1_2 -2020-03-04 12:25:31,272 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.tls1_2'])]) -2020-03-04 12:25:31,272 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,287 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:25:31,287 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:25:31,287 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:25:31,287 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,303 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:25:31,303 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls -2020-03-04 12:25:31,303 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,303 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,303 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,318 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,318 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,335 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,335 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,335 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,335 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,335 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,335 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,335 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,350 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,350 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,350 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,350 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.046924591064453125 -2020-03-04 12:25:31,365 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +2020-03-06 10:28:50,038 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,055 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:28:50,055 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:28:50,055 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:28:50,055 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,055 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:28:50,055 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:28:50,055 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,070 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,070 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,087 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,087 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,087 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,087 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,102 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,102 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,102 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,102 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,102 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,102 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,102 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,118 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,118 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.06276392936706543 +2020-03-06 10:28:50,118 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1017,160 +1026,90 @@ windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversion - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} -2020-03-04 12:25:31,365 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) -2020-03-04 12:25:31,365 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,365 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' -2020-03-04 12:25:31,365 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:25:31,365 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:25:31,365 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:25:31,381 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,381 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' -2020-03-04 12:25:31,381 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls -2020-03-04 12:25:31,381 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,381 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,381 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +2020-03-06 10:28:50,134 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.01588296890258789 +2020-03-06 10:28:50,134 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:28:50,134 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:28:50,134 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:28:50,149 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:28:50,165 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,165 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:28:50,165 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:28:50,165 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,165 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:50,181 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:25:31,381 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:25:31,381 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,397 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:25:31,397 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:25:31,397 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:25:31,397 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,397 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' -2020-03-04 12:25:31,397 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls -2020-03-04 12:25:31,397 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,412 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:25:31,412 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:25:31,412 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:25:31,412 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,412 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' -2020-03-04 12:25:31,428 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,428 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,444 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,444 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,444 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,444 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,444 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,444 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,459 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,459 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,459 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,459 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,459 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,475 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,475 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:25:31,475 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:25:31,490 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:25:31,490 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,490 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:25:31,585 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pkg.version -2020-03-04 12:25:31,585 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][4888] No winrepo.p cache file for saltenv 'base', creating one now -2020-03-04 12:25:31,585 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4888] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) -2020-03-04 12:25:31,585 [salt.loaded.int.module.win_pkg:935 ][INFO ][4888] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:25:31,585 [salt.loaded.int.module.win_pkg:954 ][INFO ][4888] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:25:31,600 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded cp.cache_dir -2020-03-04 12:25:31,617 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded roots.envs -2020-03-04 12:25:31,617 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:25:31,631 [salt.fileclient :234 ][INFO ][4888] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:25:31,631 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:31,631 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded reg.list_keys -2020-03-04 12:25:31,631 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,647 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,663 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,663 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,663 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,663 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.266040563583374 -2020-03-04 12:25:31,663 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +2020-03-06 10:28:50,181 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,181 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:28:50,181 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:28:50,181 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:28:50,181 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,213 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:28:50,213 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:28:50,213 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,213 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:28:50,213 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:28:50,229 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:28:50,229 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,229 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:28:50,229 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,245 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,245 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,261 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,261 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,261 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,261 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,261 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,278 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,278 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,278 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,278 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,278 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,278 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,292 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:28:50,292 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:28:50,292 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:28:50,292 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,308 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:28:50,531 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pkg.version +2020-03-06 10:28:50,531 [salt.loaded.int.module.win_pkg:827 ][DEBUG ][4476] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:28:50,531 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][4476] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:28:50,546 [salt.loaded.int.module.win_pkg:939 ][INFO ][4476] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:28:50,546 [salt.loaded.int.module.win_pkg:958 ][INFO ][4476] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:28:50,546 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cp.cache_dir +2020-03-06 10:28:50,578 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded roots.envs +2020-03-06 10:28:50,578 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:28:50,578 [salt.fileclient :234 ][INFO ][4476] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:28:50,594 [salt.fileserver :159 ][DEBUG ][4476] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:28:50,594 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded reg.list_keys +2020-03-06 10:28:50,594 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.38085007667541504 +2020-03-06 10:28:50,610 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .windows_software_repository -git: +7zip: pkg.installed: - - refresh_minion_env_path: True + - refresh_minion_env_path: False + - version: 18.06.00.0 - require: - pkg.refresh_db kdiff3: pkg.installed: - require: - pkg.refresh_db -7zip: +git: pkg.installed: - - refresh_minion_env_path: False - - version: 18.06.00.0 + - refresh_minion_env_path: True - require: - pkg.refresh_db windows_environment.refresh.path: @@ -1179,89 +1118,19 @@ windows_environment.refresh.path: - onchanges: - pkg: git -2020-03-04 12:25:31,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('include', ['.windows_software_repository']), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) -2020-03-04 12:25:31,663 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,663 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:25:31,663 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:25:31,663 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:25:31,678 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,678 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:25:31,678 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls -2020-03-04 12:25:31,678 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,694 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.062571) -2020-03-04 12:25:31,694 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,694 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,694 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,694 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,694 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,694 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:25:31,709 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.03128194808959961 -2020-03-04 12:25:31,709 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +2020-03-06 10:28:50,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:28:50,610 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,610 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:28:50,610 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:28:50,610 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:28:50,610 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,626 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:28:50,626 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:28:50,626 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,642 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.047785) +2020-03-06 10:28:50,642 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.01604771614074707 +2020-03-06 10:28:50,642 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1294,50 +1163,50 @@ pkg.refresh_db: attempts: 10 until: True interval: 5 -2020-03-04 12:25:31,709 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) -2020-03-04 12:25:31,725 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.015639066696166992 -2020-03-04 12:25:31,725 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' -2020-03-04 12:25:31,725 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:25:31,725 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:25:31,725 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:25:31,725 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,725 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' -2020-03-04 12:25:31,741 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls -2020-03-04 12:25:31,741 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,741 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,741 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +2020-03-06 10:28:50,657 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,657 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:28:50,657 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:28:50,657 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:28:50,657 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:28:50,657 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,673 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:28:50,673 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:28:50,673 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,673 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:50,673 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:25:31,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:25:31,741 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,741 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:25:31,741 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:25:31,741 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:25:31,741 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,757 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:25:31,757 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls -2020-03-04 12:25:31,757 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,772 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,772 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,788 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,788 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,788 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,788 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,788 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,803 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,803 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,803 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,803 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,803 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,803 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,803 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,819 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06176328659057617 -2020-03-04 12:25:31,819 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +2020-03-06 10:28:50,673 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,689 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:28:50,689 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:28:50,689 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:28:50,689 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,689 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:28:50,689 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:28:50,689 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,705 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,705 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,722 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,722 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,722 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,737 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,737 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,737 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,737 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,737 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,753 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,753 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,753 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,753 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,768 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.0793449878692627 +2020-03-06 10:28:50,768 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -1355,32 +1224,32 @@ windows.system.packages.chocolatey.notepadplusplus: - chocolatey.bootstrap - name: notepadplusplus -2020-03-04 12:25:31,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) -2020-03-04 12:25:31,819 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,835 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:25:31,835 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:25:31,835 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:25:31,835 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,835 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:25:31,835 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls -2020-03-04 12:25:31,835 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,835 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,850 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,866 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,866 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,866 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,866 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,866 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,866 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:31,882 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,882 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:31,882 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,882 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:31,882 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,882 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:31,898 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.06378412246704102 -2020-03-04 12:25:31,898 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +2020-03-06 10:28:50,768 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,768 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:28:50,768 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:28:50,768 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:28:50,768 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,785 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:28:50,785 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:28:50,785 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,785 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,785 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,800 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,800 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,816 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,816 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,816 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,816 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,816 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,816 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,832 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,832 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,832 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,832 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,848 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.06235814094543457 +2020-03-06 10:28:50,848 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: # -*- coding: utf-8 -*- # vim: ft=sls chocolatey.bootstrap: @@ -1390,78 +1259,78 @@ chocolatey.bootstrap: - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -2020-03-04 12:25:31,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,848 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) -2020-03-04 12:25:31,898 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,898 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' -2020-03-04 12:25:31,898 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:25:31,898 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:25:31,913 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' -2020-03-04 12:25:31,913 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,913 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' -2020-03-04 12:25:31,913 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls -2020-03-04 12:25:31,913 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,913 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:31,913 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +2020-03-06 10:28:50,848 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,848 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:28:50,848 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:28:50,848 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:28:50,848 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:28:50,864 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,864 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:28:50,864 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:28:50,864 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,864 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:50,864 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .features -2020-03-04 12:25:31,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.features'])]) -2020-03-04 12:25:31,913 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,928 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' -2020-03-04 12:25:31,928 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:25:31,928 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:25:31,928 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' -2020-03-04 12:25:31,928 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,928 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' -2020-03-04 12:25:31,928 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls -2020-03-04 12:25:31,928 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,944 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.015642166137695312 -2020-03-04 12:25:31,944 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +2020-03-06 10:28:50,864 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,879 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:28:50,879 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:28:50,879 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:28:50,879 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:28:50,879 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,895 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:28:50,895 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:28:50,895 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,895 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:50,895 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:25:31,944 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:50,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:25:31,944 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:31,944 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:25:31,944 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:25:31,944 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:25:31,944 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,960 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' -2020-03-04 12:25:31,960 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls -2020-03-04 12:25:31,960 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:31,960 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:25:31,960 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:25:31,960 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:25:31,960 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:31,960 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' -2020-03-04 12:25:31,975 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,975 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:31,991 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,991 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:31,991 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:31,991 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:32,007 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:32,007 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:32,007 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:32,007 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:32,007 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:32,007 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:32,022 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:32,022 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:32,022 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/server/features/features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' -2020-03-04 12:25:32,022 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' -2020-03-04 12:25:32,022 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/features.jinja' -2020-03-04 12:25:32,038 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:32,038 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/features.jinja' -2020-03-04 12:25:32,038 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.07824945449829102 -2020-03-04 12:25:32,038 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +2020-03-06 10:28:50,895 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:50,895 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:28:50,911 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:28:50,911 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:28:50,911 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,911 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:28:50,911 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:28:50,911 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:50,928 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:28:50,928 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:28:50,928 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:28:50,928 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:50,928 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:28:50,943 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,943 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:50,959 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,959 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:50,959 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,959 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:50,975 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,975 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:50,975 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,975 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:50,975 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,975 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:50,975 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,991 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:50,991 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/server/features/features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 10:28:50,991 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 10:28:51,006 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/features.jinja' +2020-03-06 10:28:51,006 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:51,006 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/features.jinja' +2020-03-06 10:28:51,022 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.11107802391052246 +2020-03-06 10:28:51,022 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1470,1881 +1339,1878 @@ windows.system.server.features.installed.telnet-client: - name: telnet-client - recurse: true -2020-03-04 12:25:32,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:51,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('windows.system.server.features.installed.telnet-client', OrderedDict([('win_servermanager.installed', [OrderedDict([('name', 'telnet-client')]), OrderedDict([('recurse', True)])])]))]) -2020-03-04 12:25:32,038 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:32,054 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' -2020-03-04 12:25:32,054 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:25:32,054 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:25:32,054 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' -2020-03-04 12:25:32,054 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:32,054 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' -2020-03-04 12:25:32,054 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls -2020-03-04 12:25:32,069 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:32,069 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:32,069 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +2020-03-06 10:28:51,022 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:51,022 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:28:51,022 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:28:51,022 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:28:51,022 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:28:51,022 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:51,038 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:28:51,038 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:28:51,038 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:51,038 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:28:51,038 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .packages - .optional_features -2020-03-04 12:25:32,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:51,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.optional_features'])]) -2020-03-04 12:25:32,069 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:32,069 [salt.fileclient :1072][DEBUG ][4888] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' -2020-03-04 12:25:32,069 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:25:32,069 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:25:32,069 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:25:32,069 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:32,085 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' -2020-03-04 12:25:32,085 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls -2020-03-04 12:25:32,085 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:32,085 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:32,085 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +2020-03-06 10:28:51,038 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:51,054 [salt.fileclient :1080][DEBUG ][4476] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:28:51,054 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:28:51,054 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:28:51,054 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:28:51,054 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:51,054 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:28:51,054 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:28:51,054 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:51,070 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.015859127044677734 +2020-03-06 10:28:51,070 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .feature_installed -2020-03-04 12:25:32,085 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:51,070 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('include', ['.feature_installed'])]) -2020-03-04 12:25:32,085 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:32,085 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:25:32,100 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:25:32,100 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:25:32,100 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:32,100 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:25:32,100 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls -2020-03-04 12:25:32,100 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:32,116 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:25:32,116 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:25:32,116 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:25:32,116 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:32,116 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:25:32,132 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:32,132 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:25:32,149 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:32,149 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:25:32,149 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:32,149 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:25:32,163 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:32,163 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:25:32,163 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:32,163 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:25:32,163 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:32,163 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:25:32,179 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:32,179 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:25:32,179 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.07820415496826172 -2020-03-04 12:25:32,179 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +2020-03-06 10:28:51,070 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:51,070 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:28:51,070 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:28:51,070 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:28:51,070 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:51,086 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:28:51,086 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:28:51,086 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:28:51,086 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:28:51,086 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:28:51,086 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:28:51,086 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:28:51,102 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:28:51,102 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:51,102 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:28:51,117 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:51,117 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:28:51,133 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:51,133 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:28:51,133 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:51,133 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:28:51,133 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:51,149 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:28:51,149 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:51,149 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:28:51,149 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:51,149 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:28:51,166 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.0807957649230957 +2020-03-06 10:28:51,166 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls -2020-03-04 12:25:32,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:28:51,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: {} -2020-03-04 12:25:32,194 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.015638113021850586 -2020-03-04 12:25:32,194 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded cmd.run -2020-03-04 12:25:32,226 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded system.get_computer_desc -2020-03-04 12:25:32,226 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded system.computer_desc -2020-03-04 12:25:32,226 [salt.state :1819][INFO ][4888] Running state [saltstack1] at time 12:25:32.226122 -2020-03-04 12:25:32,226 [salt.state :1852][INFO ][4888] Executing state system.hostname for [saltstack1] -2020-03-04 12:25:32,226 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:25:32,241 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: vagrant -2020-03-04 12:25:32,241 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4888] output: vagrant -2020-03-04 12:25:32,241 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:25:32,258 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: vagrant -2020-03-04 12:25:32,258 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4888] output: vagrant -2020-03-04 12:25:32,258 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'wmic computersystem where name='vagrant' call rename name='saltstack1'' in directory 'C:\Users\vagrant' -2020-03-04 12:25:32,335 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +2020-03-06 10:28:51,166 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:28:51,166 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cmd.run +2020-03-06 10:28:51,324 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded system.get_computer_desc +2020-03-06 10:28:51,324 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded system.computer_desc +2020-03-06 10:28:51,324 [salt.state :1867][INFO ][4476] Running state [saltstack1] at time 10:28:51.324181 +2020-03-06 10:28:51,324 [salt.state :1900][INFO ][4476] Executing state system.hostname for [saltstack1] +2020-03-06 10:28:51,324 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:28:51,341 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: vagrant +2020-03-06 10:28:51,341 [salt.loaded.int.module.cmdmod:1199][DEBUG ][4476] output: vagrant +2020-03-06 10:28:51,341 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:28:51,354 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: vagrant +2020-03-06 10:28:51,354 [salt.loaded.int.module.cmdmod:1199][DEBUG ][4476] output: vagrant +2020-03-06 10:28:51,354 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'wmic computersystem where name='vagrant' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:28:51,440 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:25:32,335 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4888] output: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +2020-03-06 10:28:51,440 [salt.loaded.int.module.cmdmod:1199][DEBUG ][4476] output: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:25:32,351 [salt.state :320 ][INFO ][4888] {'hostname': 'saltstack1'} -2020-03-04 12:25:32,351 [salt.state :1997][INFO ][4888] Completed state [saltstack1] at time 12:25:32.351245 (duration_in_ms=125.123) -2020-03-04 12:25:32,351 [salt.state :1819][INFO ][4888] Running state [Saltstack Computer Description] at time 12:25:32.351245 -2020-03-04 12:25:32,351 [salt.state :1852][INFO ][4888] Executing state system.computer_desc for [Saltstack Computer Description] -2020-03-04 12:25:35,056 [salt.state :320 ][INFO ][4888] {'old': '', 'new': 'Saltstack Computer Description'} -2020-03-04 12:25:35,056 [salt.state :1997][INFO ][4888] Completed state [Saltstack Computer Description] at time 12:25:35.056795 (duration_in_ms=2705.55) -2020-03-04 12:25:35,072 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded platform.is_windows -2020-03-04 12:25:35,072 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded path.which -2020-03-04 12:25:35,072 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded timezone.get_zone -2020-03-04 12:25:35,072 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded timezone.system -2020-03-04 12:25:35,088 [salt.state :1819][INFO ][4888] Running state [America/New_York] at time 12:25:35.088069 -2020-03-04 12:25:35,088 [salt.state :1852][INFO ][4888] Executing state timezone.system for [America/New_York] -2020-03-04 12:25:35,088 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' -2020-03-04 12:25:35,103 [salt.state :320 ][INFO ][4888] {'timezone': 'America/New_York'} -2020-03-04 12:25:35,103 [salt.state :1997][INFO ][4888] Completed state [America/New_York] at time 12:25:35.103708 (duration_in_ms=15.639) -2020-03-04 12:25:35,103 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded module.run -2020-03-04 12:25:35,103 [salt.state :1819][INFO ][4888] Running state [windows.module.environ.items] at time 12:25:35.103708 -2020-03-04 12:25:35,119 [salt.state :1852][INFO ][4888] Executing state module.run for [windows.module.environ.items] -2020-03-04 12:25:35,119 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded environ.items -2020-03-04 12:25:35,119 [salt.state :320 ][INFO ][4888] {'environ.items': {'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'HOMEPATH': '\\Users\\vagrant', 'HOMEDRIVE': 'C:', 'PROGRAMDATA': 'C:\\ProgramData', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PROMPT': '$P$G', 'NUMBER_OF_PROCESSORS': '2', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'PUBLIC': 'C:\\Users\\Public', 'PROGRAMW6432': 'C:\\Program Files', 'WINDIR': 'C:\\Windows', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'PROGRAMFILES': 'C:\\Program Files', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'OS': 'Windows_NT', 'USERNAME': 'vagrant', 'COMPUTERNAME': 'VAGRANT', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'PROCESSOR_LEVEL': '6', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'SYSTEMROOT': 'C:\\Windows', 'USERPROFILE': 'C:\\Users\\vagrant', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'LOGONSERVER': '\\\\VAGRANT', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'USERDOMAIN': 'VAGRANT', 'SYSTEMDRIVE': 'C:', 'SALTDIR': 'C:\\salt', 'PROCESSOR_REVISION': '8e0c'}} -2020-03-04 12:25:35,119 [salt.state :1997][INFO ][4888] Completed state [windows.module.environ.items] at time 12:25:35.119357 (duration_in_ms=15.649) -2020-03-04 12:25:35,119 [salt.state :1819][INFO ][4888] Running state [windows.module.user.current] at time 12:25:35.119357 -2020-03-04 12:25:35,119 [salt.state :1852][INFO ][4888] Executing state module.run for [windows.module.user.current] -2020-03-04 12:25:35,134 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded user.current -2020-03-04 12:25:35,134 [salt.state :320 ][INFO ][4888] {'user.current': 'VAGRANT\\vagrant'} -2020-03-04 12:25:35,134 [salt.state :1997][INFO ][4888] Completed state [windows.module.user.current] at time 12:25:35.134993 (duration_in_ms=15.636) -2020-03-04 12:25:35,134 [salt.state :1819][INFO ][4888] Running state [windows.module.status.uptime] at time 12:25:35.134993 -2020-03-04 12:25:35,134 [salt.state :1852][INFO ][4888] Executing state module.run for [windows.module.status.uptime] -2020-03-04 12:25:35,166 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded status.uptime -2020-03-04 12:25:35,166 [salt.state :320 ][INFO ][4888] {'status.uptime': '0:01:15.166268'} -2020-03-04 12:25:35,166 [salt.state :1997][INFO ][4888] Completed state [windows.module.status.uptime] at time 12:25:35.166268 (duration_in_ms=31.275) -2020-03-04 12:25:35,166 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded reg.present -2020-03-04 12:25:35,166 [salt.state :1819][INFO ][4888] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:25:35.166268 -2020-03-04 12:25:35,166 [salt.state :1852][INFO ][4888] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:25:36,370 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt.secret_key, ret: _|- -2020-03-04 12:25:36,370 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt:secret_key, ret: _|- -2020-03-04 12:25:36,917 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet.api_key, ret: _|- -2020-03-04 12:25:36,933 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet:api_key, ret: _|- -2020-03-04 12:25:37,386 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops.api_key, ret: _|- -2020-03-04 12:25:37,386 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops:api_key, ret: _|- -2020-03-04 12:25:41,772 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:25:41,787 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded apache.a2enconf -2020-03-04 12:25:41,787 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded apache.a2enmod -2020-03-04 12:25:41,787 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded apache.a2ensite -2020-03-04 12:25:41,820 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:25:41,834 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:25:41,834 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:25:41,851 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:25:41,866 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:25:41,866 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:25:41,881 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:25:41,897 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:25:41,897 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_asg.exists -2020-03-04 12:25:41,912 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cfn.exists -2020-03-04 12:25:41,912 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:25:41,929 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:25:41,929 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:25:41,944 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:25:41,944 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:25:41,944 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:25:41,959 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_dynamodb.exists -2020-03-04 12:25:41,959 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_ec2.get_key -2020-03-04 12:25:41,975 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elasticache.exists -2020-03-04 12:25:41,975 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:25:41,992 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elb.exists -2020-03-04 12:25:41,992 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:25:42,006 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_iam.get_user -2020-03-04 12:25:42,022 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_iam.role_exists -2020-03-04 12:25:42,022 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_iot.policy_exists -2020-03-04 12:25:42,037 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_kinesis.exists -2020-03-04 12:25:42,037 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_kms.describe_key -2020-03-04 12:25:42,054 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_lambda.function_exists -2020-03-04 12:25:42,054 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_asg.exists -2020-03-04 12:25:42,069 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_rds.exists -2020-03-04 12:25:42,069 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_route53.get_record -2020-03-04 12:25:42,069 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:25:42,084 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:25:42,084 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_secgroup.exists -2020-03-04 12:25:42,100 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_sns.exists -2020-03-04 12:25:42,100 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_sqs.exists -2020-03-04 12:25:42,116 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_vpc.exists -2020-03-04 12:25:42,131 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded bower.list -2020-03-04 12:25:42,131 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded chef.client -2020-03-04 12:25:42,148 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded cimc.get_system_info -2020-03-04 12:25:42,148 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded cisconso.set_data_value -2020-03-04 12:25:42,163 [salt.loader :1577][DEBUG ][4888] Failed to import states cloud: +2020-03-06 10:28:51,440 [salt.state :320 ][INFO ][4476] {'hostname': 'saltstack1'} +2020-03-06 10:28:51,440 [salt.state :2045][INFO ][4476] Completed state [saltstack1] at time 10:28:51.440026 (duration_in_ms=115.845) +2020-03-06 10:28:51,440 [salt.state :1867][INFO ][4476] Running state [Saltstack Computer Description] at time 10:28:51.440026 +2020-03-06 10:28:51,440 [salt.state :1900][INFO ][4476] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:28:54,454 [salt.state :320 ][INFO ][4476] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 10:28:54,565 [salt.state :2045][INFO ][4476] Completed state [Saltstack Computer Description] at time 10:28:54.565606 (duration_in_ms=3125.58) +2020-03-06 10:28:54,597 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded platform.is_windows +2020-03-06 10:28:54,707 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded path.which +2020-03-06 10:28:54,707 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded timezone.get_zone +2020-03-06 10:28:54,707 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded timezone.system +2020-03-06 10:28:54,723 [salt.state :1867][INFO ][4476] Running state [America/New_York] at time 10:28:54.723706 +2020-03-06 10:28:54,723 [salt.state :1900][INFO ][4476] Executing state timezone.system for [America/New_York] +2020-03-06 10:28:54,723 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:28:54,771 [salt.state :320 ][INFO ][4476] {'timezone': 'America/New_York'} +2020-03-06 10:28:54,771 [salt.state :2045][INFO ][4476] Completed state [America/New_York] at time 10:28:54.771150 (duration_in_ms=47.444) +2020-03-06 10:28:54,786 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded module.run +2020-03-06 10:28:54,786 [salt.state :1867][INFO ][4476] Running state [windows.module.environ.items] at time 10:28:54.786951 +2020-03-06 10:28:54,786 [salt.state :1900][INFO ][4476] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:28:54,786 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded environ.items +2020-03-06 10:28:54,786 [salt.state :320 ][INFO ][4476] {'environ.items': {'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'PUBLIC': 'C:\\Users\\Public', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'PROMPT': '$P$G', 'HOMEDRIVE': 'C:', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT', 'WINDIR': 'C:\\Windows', 'USERPROFILE': 'C:\\Users\\vagrant', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'PROGRAMFILES': 'C:\\Program Files', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'USERNAME': 'vagrant', 'NUMBER_OF_PROCESSORS': '2', 'SYSTEMDRIVE': 'C:', 'PROCESSOR_LEVEL': '6', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'LOGONSERVER': '\\\\VAGRANT', 'SYSTEMROOT': 'C:\\Windows', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'HOMEPATH': '\\Users\\vagrant', 'USERDOMAIN': 'VAGRANT', 'PROCESSOR_REVISION': '8e0c', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMPUTERNAME': 'VAGRANT', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'PROGRAMDATA': 'C:\\ProgramData', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'SALTDIR': 'C:\\salt', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'PROGRAMW6432': 'C:\\Program Files', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'OS': 'Windows_NT', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files'}} +2020-03-06 10:28:54,802 [salt.state :2045][INFO ][4476] Completed state [windows.module.environ.items] at time 10:28:54.802762 (duration_in_ms=15.811) +2020-03-06 10:28:54,802 [salt.state :1867][INFO ][4476] Running state [windows.module.user.current] at time 10:28:54.802762 +2020-03-06 10:28:54,802 [salt.state :1900][INFO ][4476] Executing state module.run for [windows.module.user.current] +2020-03-06 10:28:54,834 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded user.current +2020-03-06 10:28:54,834 [salt.state :320 ][INFO ][4476] {'user.current': 'VAGRANT\\vagrant'} +2020-03-06 10:28:54,850 [salt.state :2045][INFO ][4476] Completed state [windows.module.user.current] at time 10:28:54.850267 (duration_in_ms=47.505) +2020-03-06 10:28:54,850 [salt.state :1867][INFO ][4476] Running state [windows.module.status.uptime] at time 10:28:54.850267 +2020-03-06 10:28:54,850 [salt.state :1900][INFO ][4476] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:28:54,897 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded status.uptime +2020-03-06 10:28:54,897 [salt.state :320 ][INFO ][4476] {'status.uptime': '0:01:24.897629'} +2020-03-06 10:28:54,897 [salt.state :2045][INFO ][4476] Completed state [windows.module.status.uptime] at time 10:28:54.897629 (duration_in_ms=47.362) +2020-03-06 10:28:54,913 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded reg.present +2020-03-06 10:28:54,913 [salt.state :1867][INFO ][4476] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:28:54.913497 +2020-03-06 10:28:54,913 [salt.state :1900][INFO ][4476] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:28:55,751 [salt.config :2215][DEBUG ][4476] Missing configuration file: /etc/salt/minion +2020-03-06 10:28:55,751 [salt.config :3612][DEBUG ][4476] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:28:55,894 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:28:55,909 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:28:56,509 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:28:56,509 [salt.loader :1671][DEBUG ][4476] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:25:42,178 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded ddns.update -2020-03-04 12:25:42,178 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded chassis.cmd -2020-03-04 12:25:42,194 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:25:42,225 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:25:42,242 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:25:42,256 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:25:42,491 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded esxi.cmd -2020-03-04 12:25:42,538 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded git.version -2020-03-04 12:25:42,553 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded github.list_users -2020-03-04 12:25:42,553 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded glanceng.image_get -2020-03-04 12:25:42,570 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded elasticsearch.exists -2020-03-04 12:25:42,585 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: grafana_version, ret: _|- -2020-03-04 12:25:42,585 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: grafana_version, ret: _|- -2020-03-04 12:25:42,600 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded icinga2.generate_ticket -2020-03-04 12:25:42,616 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded ifttt.trigger_event -2020-03-04 12:25:42,632 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:25:42,648 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:25:42,663 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:25:42,678 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:25:42,695 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:25:42,710 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:25:42,741 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:25:42,741 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.domain_get -2020-03-04 12:25:42,741 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:25:42,757 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.group_get -2020-03-04 12:25:42,757 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.project_get -2020-03-04 12:25:42,757 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.role_get -2020-03-04 12:25:42,757 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.role_grant -2020-03-04 12:25:42,772 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.service_get -2020-03-04 12:25:42,772 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.user_get -2020-03-04 12:25:42,790 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:25:42,819 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:25:42,836 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:25:42,850 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:25:42,882 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:25:42,897 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:25:42,897 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:25:42,897 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:25:42,913 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:25:42,913 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:25:42,929 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded memcached.status -2020-03-04 12:25:42,944 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mongodb.db_exists -2020-03-04 12:25:42,944 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mongodb.user_exists -2020-03-04 12:25:42,944 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:25:42,944 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:25:42,960 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:25:42,960 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:25:42,992 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_networks -2020-03-04 12:25:42,992 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_subnets -2020-03-04 12:25:43,007 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_subnets -2020-03-04 12:25:43,007 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_subnets -2020-03-04 12:25:43,022 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded npm.list -2020-03-04 12:25:43,022 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nxos.cmd -2020-03-04 12:25:43,038 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:25:43,069 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:25:43,085 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded panos.commit -2020-03-04 12:25:43,101 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pdbedit.create -2020-03-04 12:25:43,101 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pecl.list -2020-03-04 12:25:43,570 [pip.vcs :60 ][DEBUG ][4888] Registered VCS backend: git -2020-03-04 12:25:43,663 [pip.vcs :60 ][DEBUG ][4888] Registered VCS backend: hg -2020-03-04 12:25:43,695 [pip.pep425tags :79 ][DEBUG ][4888] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:25:43,695 [pip.pep425tags :79 ][DEBUG ][4888] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:25:43,695 [pip.pep425tags :79 ][DEBUG ][4888] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:25:43,695 [pip.pep425tags :79 ][DEBUG ][4888] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:25:43,976 [pip.vcs :60 ][DEBUG ][4888] Registered VCS backend: svn -2020-03-04 12:25:44,148 [pip.vcs :60 ][DEBUG ][4888] Registered VCS backend: bzr -2020-03-04 12:25:44,273 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:25:44,273 [salt.loader :1577][DEBUG ][4888] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:28:57,804 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:28:57,882 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:28:59,475 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:28:59,506 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:29:00,058 [salt.loader :1671][DEBUG ][4476] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:25:44,273 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.cluster_exists -2020-03-04 12:25:44,273 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.user_exists -2020-03-04 12:25:44,289 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.create_extension -2020-03-04 12:25:44,289 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.group_create -2020-03-04 12:25:44,289 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.datadir_init -2020-03-04 12:25:44,289 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.language_create -2020-03-04 12:25:44,289 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.privileges_grant -2020-03-04 12:25:44,304 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.schema_exists -2020-03-04 12:25:44,304 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.tablespace_exists -2020-03-04 12:25:44,304 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.user_exists -2020-03-04 12:25:44,351 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:25:44,383 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded selinux.getenforce -2020-03-04 12:25:44,398 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded splunk.list_users -2020-03-04 12:25:44,398 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded splunk_search.get -2020-03-04 12:25:44,430 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:25:44,430 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded tomcat.status -2020-03-04 12:25:44,445 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded vagrant.version -2020-03-04 12:25:44,445 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded victorops.create_event -2020-03-04 12:25:44,476 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded win_iis.create_site -2020-03-04 12:25:44,524 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:25:44,539 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded wordpress.show_plugin -2020-03-04 12:25:44,539 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded x509.get_pem_entry -2020-03-04 12:25:44,539 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded xmpp.send_msg -2020-03-04 12:25:44,570 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded zk_concurrency.lock -2020-03-04 12:25:44,586 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded zonecfg.create -2020-03-04 12:25:44,586 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded zookeeper.create -2020-03-04 12:25:44,601 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:25:44,601 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:25:44,898 [salt.state :889 ][DEBUG ][4888] Last command return code: 0 -2020-03-04 12:25:44,945 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded dacl.check_perms -2020-03-04 12:25:44,945 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4888] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:25:44,945 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4888] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:29:00,279 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops.api_key, ret: _|- +2020-03-06 10:29:00,342 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops:api_key, ret: _|- +2020-03-06 10:29:07,459 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad acme.cert: 'acme' __virtual__ returned False: The ACME execution module cannot be loaded: letsencrypt-auto not installed. +2020-03-06 10:29:07,507 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded alternatives.auto +2020-03-06 10:29:07,601 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded apache.config +2020-03-06 10:29:07,616 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded apache.a2enconf +2020-03-06 10:29:07,616 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded apache.a2enmod +2020-03-06 10:29:07,616 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded apache.a2ensite +2020-03-06 10:29:07,648 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:29:07,664 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded at.at +2020-03-06 10:29:07,695 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:29:07,711 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:29:07,711 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:29:07,726 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:29:07,726 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:29:07,758 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded disk.tune +2020-03-06 10:29:07,758 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:29:07,758 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:29:07,774 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:29:07,774 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:29:07,790 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:29:07,805 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_asg.exists +2020-03-06 10:29:07,805 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cfn.exists +2020-03-06 10:29:07,821 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:29:07,821 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:29:07,821 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:29:07,836 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:29:07,836 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:29:07,836 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:29:07,853 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_dynamodb.exists +2020-03-06 10:29:07,853 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_ec2.get_key +2020-03-06 10:29:07,868 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elasticache.exists +2020-03-06 10:29:07,868 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:29:07,883 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elb.exists +2020-03-06 10:29:07,883 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:29:07,900 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_iam.get_user +2020-03-06 10:29:07,915 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_iam.role_exists +2020-03-06 10:29:07,915 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_iot.policy_exists +2020-03-06 10:29:07,915 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_kinesis.exists +2020-03-06 10:29:07,931 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_kms.describe_key +2020-03-06 10:29:07,931 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_lambda.function_exists +2020-03-06 10:29:07,947 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_asg.exists +2020-03-06 10:29:07,947 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_rds.exists +2020-03-06 10:29:07,962 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_route53.get_record +2020-03-06 10:29:07,962 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:29:07,962 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:29:07,978 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_secgroup.exists +2020-03-06 10:29:07,978 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_sns.exists +2020-03-06 10:29:07,978 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_sqs.exists +2020-03-06 10:29:07,993 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_vpc.exists +2020-03-06 10:29:07,993 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded bower.list +2020-03-06 10:29:08,009 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded chef.client +2020-03-06 10:29:08,026 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cimc.get_system_info +2020-03-06 10:29:08,026 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cisconso.set_data_value +2020-03-06 10:29:08,040 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cron.list_tab +2020-03-06 10:29:08,056 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded ddns.update +2020-03-06 10:29:08,073 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded chassis.cmd +2020-03-06 10:29:08,103 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:29:08,119 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:29:08,150 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:29:08,166 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:29:08,198 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded eselect.exec_action +2020-03-06 10:29:08,449 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded esxi.cmd +2020-03-06 10:29:08,575 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded git.version +2020-03-06 10:29:08,622 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded github.list_users +2020-03-06 10:29:08,637 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded glanceng.image_get +2020-03-06 10:29:08,653 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded glusterfs.list_volumes +2020-03-06 10:29:08,653 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded elasticsearch.exists +2020-03-06 10:29:08,669 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: grafana_version, ret: _|- +2020-03-06 10:29:08,669 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: grafana_version, ret: _|- +2020-03-06 10:29:08,700 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded icinga2.generate_ticket +2020-03-06 10:29:08,700 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded ifttt.trigger_event +2020-03-06 10:29:08,731 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:29:08,747 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:29:08,779 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:29:08,810 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:29:08,841 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:29:08,858 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:29:08,904 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded ipset.version +2020-03-06 10:29:08,920 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded iptables.version +2020-03-06 10:29:08,936 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded kapacitor.version +2020-03-06 10:29:08,967 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:29:08,983 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keyboard.get_sys +2020-03-06 10:29:08,998 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystone.auth +2020-03-06 10:29:08,998 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.domain_get +2020-03-06 10:29:08,998 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:29:08,998 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.group_get +2020-03-06 10:29:09,015 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.project_get +2020-03-06 10:29:09,015 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.role_get +2020-03-06 10:29:09,015 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.role_grant +2020-03-06 10:29:09,015 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.service_get +2020-03-06 10:29:09,030 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.user_get +2020-03-06 10:29:09,030 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystore.list +2020-03-06 10:29:09,030 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded kmod.available +2020-03-06 10:29:09,061 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:29:09,077 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded layman.add +2020-03-06 10:29:09,155 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:29:09,155 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded logadm.list_conf +2020-03-06 10:29:09,155 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded logrotate.show_conf +2020-03-06 10:29:09,171 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lvs.get_rules +2020-03-06 10:29:09,187 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lvs.get_rules +2020-03-06 10:29:09,202 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:29:09,218 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:29:09,218 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:29:09,218 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:29:09,234 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded makeconf.get_var +2020-03-06 10:29:09,250 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded memcached.status +2020-03-06 10:29:09,266 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded mongodb.db_exists +2020-03-06 10:29:09,266 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded mongodb.user_exists +2020-03-06 10:29:09,266 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded monit.summary +2020-03-06 10:29:09,344 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_networks +2020-03-06 10:29:09,344 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_subnets +2020-03-06 10:29:09,344 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_subnets +2020-03-06 10:29:09,359 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_subnets +2020-03-06 10:29:09,376 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nftables.version +2020-03-06 10:29:09,376 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded npm.list +2020-03-06 10:29:09,391 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nxos.cmd +2020-03-06 10:29:09,391 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded openvswitch.bridge_create +2020-03-06 10:29:09,407 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded openvswitch.port_add +2020-03-06 10:29:09,422 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded panos.commit +2020-03-06 10:29:09,454 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pdbedit.create +2020-03-06 10:29:09,469 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pecl.list +2020-03-06 10:29:10,081 [pip.vcs :60 ][DEBUG ][4476] Registered VCS backend: git +2020-03-06 10:29:10,208 [pip.vcs :60 ][DEBUG ][4476] Registered VCS backend: hg +2020-03-06 10:29:10,238 [pip.pep425tags :79 ][DEBUG ][4476] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:29:10,238 [pip.pep425tags :79 ][DEBUG ][4476] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:29:10,238 [pip.pep425tags :79 ][DEBUG ][4476] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:29:10,238 [pip.pep425tags :79 ][DEBUG ][4476] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:29:10,474 [pip.vcs :60 ][DEBUG ][4476] Registered VCS backend: svn +2020-03-06 10:29:10,474 [pip.vcs :60 ][DEBUG ][4476] Registered VCS backend: bzr +2020-03-06 10:29:10,662 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:29:10,662 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:29:10,678 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.cluster_exists +2020-03-06 10:29:10,678 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.user_exists +2020-03-06 10:29:10,693 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.create_extension +2020-03-06 10:29:10,693 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.group_create +2020-03-06 10:29:10,693 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.datadir_init +2020-03-06 10:29:10,709 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.language_create +2020-03-06 10:29:10,709 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.privileges_grant +2020-03-06 10:29:10,709 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.schema_exists +2020-03-06 10:29:10,725 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.tablespace_exists +2020-03-06 10:29:10,725 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.user_exists +2020-03-06 10:29:10,741 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded quota.report +2020-03-06 10:29:10,772 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:29:10,819 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:29:10,851 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:29:10,945 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded selinux.getenforce +2020-03-06 10:29:10,993 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:29:10,993 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded snapper.diff +2020-03-06 10:29:11,007 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded splunk.list_users +2020-03-06 10:29:11,007 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded splunk_search.get +2020-03-06 10:29:11,055 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:29:11,086 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded tomcat.status +2020-03-06 10:29:11,086 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded trafficserver.set_config +2020-03-06 10:29:11,102 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded vagrant.version +2020-03-06 10:29:11,102 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded victorops.create_event +2020-03-06 10:29:11,117 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded virt.node_info +2020-03-06 10:29:11,149 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded win_iis.create_site +2020-03-06 10:29:11,164 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:29:11,181 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded wordpress.show_plugin +2020-03-06 10:29:11,181 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded x509.get_pem_entry +2020-03-06 10:29:11,196 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded xmpp.send_msg +2020-03-06 10:29:11,243 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded zk_concurrency.lock +2020-03-06 10:29:11,243 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded zonecfg.create +2020-03-06 10:29:11,258 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded zookeeper.create +2020-03-06 10:29:11,274 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:29:11,274 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:29:11,519 [salt.state :906 ][DEBUG ][4476] Last command return code: 0 +2020-03-06 10:29:11,519 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][4476] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:29:11,575 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4476] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:29:11,575 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4476] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:25:44,961 [salt.state :320 ][INFO ][4888] {'reg': {'Added': {'Perms': {'Grant': None, 'Deny': None}, 'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Owner': None, 'Inheritance': True}}} -2020-03-04 12:25:44,961 [salt.state :1997][INFO ][4888] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:25:44.961277 (duration_in_ms=9795.009) -2020-03-04 12:25:44,961 [salt.state :1819][INFO ][4888] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:25:44.961277 -2020-03-04 12:25:44,961 [salt.state :1852][INFO ][4888] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:25:44,976 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:25:44,976 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' -2020-03-04 12:25:45,383 [salt.state :889 ][DEBUG ][4888] Last command return code: 0 -2020-03-04 12:25:45,383 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4888] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:25:45,383 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4888] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +2020-03-06 10:29:11,575 [salt.state :320 ][INFO ][4476] {'reg': {'Added': {'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Inheritance': True, 'Entry': 'SystemDefaultTlsVersions', 'Owner': None}}} +2020-03-06 10:29:11,575 [salt.state :2045][INFO ][4476] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:29:11.575814 (duration_in_ms=16662.317) +2020-03-06 10:29:11,575 [salt.state :1867][INFO ][4476] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:29:11.575814 +2020-03-06 10:29:11,575 [salt.state :1900][INFO ][4476] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:29:11,604 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:29:11,604 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:29:11,854 [salt.state :906 ][DEBUG ][4476] Last command return code: 0 +2020-03-06 10:29:11,854 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][4476] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:29:11,870 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4476] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:29:11,870 [salt.loaded.int.utils.win_dacl:1186][ERROR ][4476] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:25:45,383 [salt.state :320 ][INFO ][4888] {'reg': {'Added': {'Perms': {'Grant': None, 'Deny': None}, 'Value': 1, 'Entry': 'SystemDefaultTlsVersions', 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Owner': None, 'Inheritance': True}}} -2020-03-04 12:25:45,398 [salt.state :1997][INFO ][4888] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:25:45.398963 (duration_in_ms=437.686) -2020-03-04 12:25:45,398 [salt.state :1819][INFO ][4888] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:25:45.398963 -2020-03-04 12:25:45,398 [salt.state :1852][INFO ][4888] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] -2020-03-04 12:25:45,398 [salt.utils.http :234 ][DEBUG ][4888] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method -2020-03-04 12:25:45,398 [salt.utils.http :235 ][DEBUG ][4888] Using backend: tornado -2020-03-04 12:25:45,916 [salt.loaded.int.states.archive:976 ][DEBUG ][4888] file.cached: {'result': True, 'changes': {'hash': {'old': None, 'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36'}}, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip'} -2020-03-04 12:25:45,916 [salt.loaded.int.states.archive:91 ][DEBUG ][4888] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:25:45,946 [salt.loaded.int.states.archive:996 ][DEBUG ][4888] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected -2020-03-04 12:25:45,992 [salt.loaded.int.module.win_file:1463][DEBUG ][4888] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win -2020-03-04 12:25:46,008 [salt.loaded.int.module.win_file:1463][DEBUG ][4888] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -2020-03-04 12:25:46,008 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4888] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:25:46,008 [salt.loaded.int.states.archive:1247][DEBUG ][4888] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:25:46,305 [salt.loaded.int.states.archive:1543][DEBUG ][4888] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:25:46,305 [salt.state :320 ][INFO ][4888] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} -2020-03-04 12:25:46,305 [salt.state :1997][INFO ][4888] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:25:46.305587 (duration_in_ms=906.624) -2020-03-04 12:25:46,305 [salt.state :1819][INFO ][4888] Running state [rename-extract] at time 12:25:46.305587 -2020-03-04 12:25:46,305 [salt.state :1852][INFO ][4888] Executing state module.run for [rename-extract] -2020-03-04 12:25:46,305 [salt.state :320 ][INFO ][4888] {'file.rename': True} -2020-03-04 12:25:46,305 [salt.state :1997][INFO ][4888] Completed state [rename-extract] at time 12:25:46.305587 (duration_in_ms=0.0) -2020-03-04 12:25:46,321 [salt.state :1819][INFO ][4888] Running state [pkg.refresh_db] at time 12:25:46.321217 -2020-03-04 12:25:46,321 [salt.state :1852][INFO ][4888] Executing state module.run for [pkg.refresh_db] -2020-03-04 12:25:46,321 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4888] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:14.689438) -2020-03-04 12:25:46,321 [salt.loaded.int.module.win_pkg:935 ][INFO ][4888] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:25:46,321 [salt.loaded.int.module.win_pkg:954 ][INFO ][4888] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:25:46,321 [salt.fileclient :234 ][INFO ][4888] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:25:46,321 [salt.fileserver :159 ][DEBUG ][4888] Returning file list from cache: age=17 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:25:46,336 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 12:25:46,352 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 12:25:46,368 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: Volume in drive C is Windows 2016 - Volume Serial Number is 3CE2-368C - - Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng - -File Not Found -2020-03-04 12:25:46,368 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4888] retcode: 1 -2020-03-04 12:25:46,368 [salt.state :938 ][DEBUG ][4888] Last command return code: 1 -2020-03-04 12:25:46,368 [salt.state :322 ][ERROR ][4888] {'pkg.refresh_db': {'success': 0, 'total': 0, 'failed': 0}} -2020-03-04 12:25:46,368 [salt.state :1997][INFO ][4888] Completed state [pkg.refresh_db] at time 12:25:46.368109 (duration_in_ms=46.892) -2020-03-04 12:25:46,368 [salt.state :2009][INFO ][4888] State result does not match retry until value, state will be re-run in 5 seconds -2020-03-04 12:25:51,352 [salt.state :1819][INFO ][4888] Running state [pkg.refresh_db] at time 12:25:51.352073 -2020-03-04 12:25:51,352 [salt.state :1852][INFO ][4888] Executing state module.run for [pkg.refresh_db] -2020-03-04 12:25:51,352 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][4888] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:05.015232) -2020-03-04 12:25:51,352 [salt.loaded.int.module.win_pkg:935 ][INFO ][4888] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:25:51,352 [salt.loaded.int.module.win_pkg:954 ][INFO ][4888] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:25:51,366 [salt.fileclient :234 ][INFO ][4888] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:25:51,569 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:25:51,569 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:25:51,569 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:25:51,569 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,585 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:25:51,585 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:25:51,585 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:25:51,585 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:25:51,585 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,601 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:25:51,601 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:25:51,601 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:25:51,601 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:25:51,601 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,616 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:25:51,616 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:25:51,616 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:25:51,616 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:25:51,616 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,632 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:25:51,632 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:25:51,632 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:25:51,632 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:25:51,632 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,648 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:25:51,648 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:25:51,648 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:25:51,648 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:25:51,648 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,663 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:25:51,663 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:25:51,663 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:25:51,663 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:25:51,663 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,679 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:25:51,679 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:25:51,679 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:25:51,679 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:25:51,679 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,694 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:25:51,694 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:25:51,694 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:25:51,694 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:25:51,694 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,710 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:25:51,710 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:25:51,710 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:25:51,710 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:25:51,710 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,726 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:25:51,726 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:25:51,726 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:25:51,726 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:25:51,726 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,726 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:25:51,741 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:25:51,741 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:25:51,741 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:25:51,741 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,757 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:25:51,757 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:25:51,757 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:25:51,757 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:25:51,757 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,773 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:25:51,773 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:25:51,773 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:25:51,773 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:25:51,773 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,773 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:25:51,788 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:25:51,788 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:25:51,788 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:25:51,788 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,788 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:25:51,788 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:25:51,788 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:25:51,804 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:25:51,804 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,804 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:25:51,804 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:25:51,804 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:25:51,819 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:25:51,819 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,819 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:25:51,819 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:25:51,819 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:25:51,819 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:25:51,819 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,835 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:25:51,835 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:25:51,835 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:25:51,851 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:25:51,851 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,851 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:25:51,866 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:25:51,866 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:25:51,866 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:25:51,866 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,866 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:25:51,882 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:25:51,882 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:25:51,882 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:25:51,882 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,882 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:25:51,898 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:25:51,898 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:25:51,898 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:25:51,898 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,913 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:25:51,913 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:25:51,913 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:25:51,913 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:25:51,934 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,934 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:25:51,944 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:25:51,944 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:25:51,944 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:25:51,944 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,944 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:25:51,944 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:25:51,960 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:25:51,960 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:25:51,960 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,960 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:25:51,976 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:25:51,976 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:25:51,976 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:25:51,976 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,976 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:25:51,991 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:25:51,991 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:25:51,991 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:25:51,991 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:51,991 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:25:52,007 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:25:52,007 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:25:52,007 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:25:52,007 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,007 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:25:52,007 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:25:52,023 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:25:52,023 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:25:52,023 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,023 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:25:52,023 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:25:52,023 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:25:52,038 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:25:52,038 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,038 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:25:52,054 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:25:52,054 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:25:52,054 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:25:52,054 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,054 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:25:52,070 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:25:52,070 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:25:52,070 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:25:52,070 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,070 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:25:52,085 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:25:52,085 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:25:52,085 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:25:52,085 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,085 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:25:52,101 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:25:52,101 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:25:52,101 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:25:52,101 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,116 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:25:52,116 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:25:52,116 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:25:52,116 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:25:52,116 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,116 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:25:52,132 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:25:52,132 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:25:52,132 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:25:52,132 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,132 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:25:52,132 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:25:52,148 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:25:52,148 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:25:52,148 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,148 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:25:52,148 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:25:52,148 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:25:52,163 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:25:52,163 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,163 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:25:52,179 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:25:52,179 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:25:52,179 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:25:52,179 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,195 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:25:52,195 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:25:52,195 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:25:52,195 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:25:52,195 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,210 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:25:52,210 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:25:52,210 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:25:52,210 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:25:52,210 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,226 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:25:52,226 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:25:52,226 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:25:52,226 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:25:52,226 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,241 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:25:52,241 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:25:52,241 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:25:52,241 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:25:52,257 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,257 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:25:52,257 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:25:52,257 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:25:52,257 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:25:52,257 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,273 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:25:52,273 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:25:52,273 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:25:52,273 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:25:52,273 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,288 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:25:52,288 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:25:52,288 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:25:52,288 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:25:52,288 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,288 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:25:52,304 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:25:52,304 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:25:52,304 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:25:52,304 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,320 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:25:52,320 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:25:52,320 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:25:52,320 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:25:52,320 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,335 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:25:52,335 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:25:52,335 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:25:52,335 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:25:52,335 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,351 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:25:52,351 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:25:52,351 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:25:52,351 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:25:52,351 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,366 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:25:52,366 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:25:52,366 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:25:52,366 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:25:52,382 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,382 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:25:52,382 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:25:52,382 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:25:52,398 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:25:52,398 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,398 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:25:52,398 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:25:52,398 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:25:52,398 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:25:52,413 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,413 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:25:52,413 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:25:52,413 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:25:52,429 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:25:52,429 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,429 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:25:52,429 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:25:52,445 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:25:52,445 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:25:52,445 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,445 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:25:52,460 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:25:52,460 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:25:52,460 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:25:52,460 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,476 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:25:52,476 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:25:52,476 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:25:52,476 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:25:52,476 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,492 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:25:52,492 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:25:52,492 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:25:52,492 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:25:52,492 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,507 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:25:52,507 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:25:52,507 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:25:52,507 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:25:52,507 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,523 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:25:52,523 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:25:52,523 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:25:52,523 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:25:52,523 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,538 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:25:52,538 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:25:52,538 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:25:52,554 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:25:52,554 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,554 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:25:52,554 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:25:52,570 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:25:52,570 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:25:52,570 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,570 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:25:52,585 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:25:52,585 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:25:52,585 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:25:52,585 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,585 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:25:52,601 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:25:52,601 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:25:52,601 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:25:52,601 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,601 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:25:52,617 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:25:52,617 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:25:52,617 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:25:52,617 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,617 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:25:52,632 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:25:52,632 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:25:52,632 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:25:52,632 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,632 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:25:52,632 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:25:52,632 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:25:52,648 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:25:52,648 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,648 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:25:52,663 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:25:52,663 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:25:52,663 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:25:52,663 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,679 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:25:52,679 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:25:52,679 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:25:52,679 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:25:52,679 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,679 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:25:52,695 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:25:52,695 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:25:52,695 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:25:52,695 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,710 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:25:52,710 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:25:52,726 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:25:52,726 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:25:52,726 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,726 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:25:52,742 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:25:52,742 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:25:52,742 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:25:52,742 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,757 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:25:52,757 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:25:52,757 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:25:52,757 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:25:52,757 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,773 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:25:52,773 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:25:52,773 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:25:52,773 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:25:52,773 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,788 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:25:52,788 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:25:52,788 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:25:52,788 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:25:52,788 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,804 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:25:52,804 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:25:52,804 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:25:52,804 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:25:52,804 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,820 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:25:52,820 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:25:52,820 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:25:52,820 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:25:52,820 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,835 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:25:52,835 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:25:52,835 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:25:52,835 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:25:52,835 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,851 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:25:52,851 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:25:52,851 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:25:52,851 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:25:52,867 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,867 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:25:52,867 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:25:52,882 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:25:52,882 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:25:52,882 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,898 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:25:52,898 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:25:52,898 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:25:52,898 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:25:52,898 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,914 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:25:52,914 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:25:52,914 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:25:52,914 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:25:52,914 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,929 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:25:52,929 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:25:52,929 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:25:52,929 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:25:52,929 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,945 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:25:52,945 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:25:52,945 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:25:52,945 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:25:52,960 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,960 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:25:52,960 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:25:52,960 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:25:52,976 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:25:52,976 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,976 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:25:52,976 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:25:52,992 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:25:52,992 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:25:52,992 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:52,992 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:25:53,007 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:25:53,007 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:25:53,007 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:25:53,007 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,023 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:25:53,023 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:25:53,023 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:25:53,023 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:25:53,023 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,039 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:25:53,039 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:25:53,039 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:25:53,039 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:25:53,039 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,054 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:25:53,054 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:25:53,054 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:25:53,054 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:25:53,070 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,070 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:25:53,085 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:25:53,085 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:25:53,085 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:25:53,085 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,085 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:25:53,101 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:25:53,101 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:25:53,101 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:25:53,101 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,117 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:25:53,117 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:25:53,117 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:25:53,132 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:25:53,132 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,132 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:25:53,132 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:25:53,148 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:25:53,148 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:25:53,148 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,164 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:25:53,164 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:25:53,164 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:25:53,164 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:25:53,164 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,179 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:25:53,179 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:25:53,179 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:25:53,179 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:25:53,179 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,195 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:25:53,195 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:25:53,195 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:25:53,195 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:25:53,195 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,210 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:25:53,226 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:25:53,226 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:25:53,226 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:25:53,226 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,248 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:25:53,257 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:25:53,257 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:25:53,257 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:25:53,257 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,257 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:25:53,273 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:25:53,273 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:25:53,273 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:25:53,273 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,289 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:25:53,289 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:25:53,289 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:25:53,304 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:25:53,304 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,304 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:25:53,320 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:25:53,320 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:25:53,320 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:25:53,320 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,320 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:25:53,335 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:25:53,335 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:25:53,335 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:25:53,335 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,335 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:25:53,351 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:25:53,351 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:25:53,351 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:25:53,351 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,367 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:25:53,367 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:25:53,367 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:25:53,367 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:25:53,367 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,382 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:25:53,382 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:25:53,382 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:25:53,398 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:25:53,398 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,398 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:25:53,414 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:25:53,414 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:25:53,414 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:25:53,414 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,429 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:25:53,429 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:25:53,429 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:25:53,429 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:25:53,429 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,445 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:25:53,445 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:25:53,445 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:25:53,445 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:25:53,445 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,461 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:25:53,476 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:25:53,476 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:25:53,476 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:25:53,476 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,476 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:25:53,492 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:25:53,492 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:25:53,492 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:25:53,492 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,507 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:25:53,507 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:25:53,507 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:25:53,507 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:25:53,507 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,523 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:25:53,523 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:25:53,523 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:25:53,523 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:25:53,523 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,539 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:25:53,539 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:25:53,539 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:25:53,539 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:25:53,539 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,554 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:25:53,554 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:25:53,554 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:25:53,554 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:25:53,570 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,570 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:25:53,570 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:25:53,570 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:25:53,586 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:25:53,586 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,586 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:25:53,586 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:25:53,601 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:25:53,601 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:25:53,601 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,601 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:25:53,601 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:25:53,617 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:25:53,617 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:25:53,617 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,617 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:25:53,617 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:25:53,617 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:25:53,632 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:25:53,632 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,632 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:25:53,648 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:25:53,648 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:25:53,648 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:25:53,648 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,648 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:25:53,648 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:25:53,664 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:25:53,664 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:25:53,664 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,664 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:25:53,664 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:25:53,664 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:25:53,679 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:25:53,679 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,696 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:25:53,696 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:25:53,696 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:25:53,696 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:25:53,696 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,711 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:25:53,711 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:25:53,711 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:25:53,711 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:25:53,711 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,726 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:25:53,726 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:25:53,726 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:25:53,726 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:25:53,726 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,742 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:25:53,742 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:25:53,742 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:25:53,742 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:25:53,742 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,757 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:25:53,757 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:25:53,757 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:25:53,757 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:25:53,773 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,773 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:25:53,773 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:25:53,789 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:25:53,789 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:25:53,789 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,789 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:25:53,804 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:25:53,804 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:25:53,804 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:25:53,804 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,820 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:25:53,820 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:25:53,820 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:25:53,820 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:25:53,820 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,836 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:25:53,836 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:25:53,836 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:25:53,836 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:25:53,851 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,851 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:25:53,851 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:25:53,851 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:25:53,867 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:25:53,867 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,867 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:25:53,887 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:25:53,887 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:25:53,887 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:25:53,887 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,914 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:25:53,914 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:53,914 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:53,929 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:53,929 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,929 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:53,929 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:53,945 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:53,945 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:53,945 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,945 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:53,945 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:25:53,945 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:25:53,961 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:25:53,961 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,961 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:25:53,976 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:25:53,976 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:25:53,976 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:25:53,976 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,976 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:25:53,992 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:25:53,992 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:25:53,992 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:25:53,992 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:53,992 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:25:54,008 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:25:54,008 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:25:54,008 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:25:54,023 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,023 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:25:54,023 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:25:54,023 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:25:54,039 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:25:54,039 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,039 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:25:54,054 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:25:54,054 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:25:54,054 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:25:54,054 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,070 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:25:54,070 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:54,070 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:54,086 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:54,086 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,086 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:25:54,102 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,102 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,102 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,102 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,117 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,117 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:25:54,117 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:25:54,117 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:25:54,117 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,133 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:25:54,133 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,133 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,133 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,133 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,148 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:25:54,148 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:25:54,148 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:25:54,148 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:25:54,148 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,164 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:25:54,164 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:25:54,164 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:25:54,164 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:25:54,164 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,179 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:25:54,179 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:25:54,179 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:25:54,179 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:25:54,179 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,195 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:25:54,195 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:25:54,195 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:25:54,195 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:25:54,195 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,211 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:25:54,211 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:25:54,211 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:25:54,211 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:25:54,211 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,226 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:25:54,226 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:25:54,226 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:25:54,226 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:25:54,226 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,242 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:25:54,242 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:25:54,242 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:25:54,258 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:25:54,258 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,258 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:25:54,273 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:25:54,273 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:25:54,273 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:25:54,273 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,289 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:25:54,289 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:25:54,289 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:25:54,289 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:25:54,289 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,304 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:25:54,304 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:25:54,304 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:25:54,304 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:25:54,320 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,320 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:25:54,320 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:25:54,320 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:25:54,336 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:25:54,336 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,336 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:25:54,336 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:25:54,336 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:25:54,351 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:25:54,351 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,351 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:25:54,351 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:25:54,367 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:25:54,367 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:25:54,367 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,367 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:25:54,383 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:25:54,383 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:25:54,383 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:25:54,383 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,383 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:25:54,383 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:25:54,398 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:25:54,398 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:25:54,398 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,398 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:25:54,414 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:25:54,414 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:25:54,414 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:25:54,414 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,429 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:25:54,429 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:25:54,429 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:25:54,429 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:25:54,429 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,445 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:25:54,445 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:25:54,445 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:25:54,461 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:25:54,461 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,461 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:25:54,461 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:25:54,476 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:25:54,476 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:25:54,476 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,492 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:25:54,492 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:25:54,492 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:25:54,492 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:25:54,508 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,508 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:25:54,508 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:25:54,523 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:25:54,523 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:25:54,523 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,539 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:25:54,539 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:25:54,539 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:25:54,539 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:25:54,539 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,555 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:25:54,555 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:25:54,555 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:25:54,555 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:25:54,570 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,570 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:25:54,570 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:25:54,586 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:25:54,586 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:25:54,586 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,601 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:25:54,601 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:25:54,601 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:25:54,601 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:25:54,601 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,617 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:25:54,617 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:25:54,633 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:25:54,633 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:25:54,633 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,648 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:25:54,648 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:25:54,648 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:25:54,648 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:25:54,648 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,664 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:25:54,664 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:25:54,664 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:25:54,680 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:25:54,680 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,695 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:25:54,695 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:25:54,695 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:25:54,695 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:25:54,695 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,712 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:25:54,712 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:25:54,712 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:25:54,712 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:25:54,712 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,726 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:25:54,726 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:25:54,726 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:25:54,726 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:25:54,742 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,758 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:25:54,758 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:25:54,758 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:25:54,758 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:25:54,758 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,773 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:25:54,773 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:25:54,773 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:25:54,789 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:25:54,789 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,789 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:25:54,805 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:25:54,805 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:25:54,805 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:25:54,805 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,820 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:25:54,820 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:25:54,820 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:25:54,836 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:25:54,836 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,836 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:25:54,851 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:25:54,851 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:25:54,851 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:25:54,851 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,851 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:25:54,851 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:25:54,867 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:25:54,867 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:25:54,867 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,867 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:25:54,867 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:25:54,883 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:25:54,883 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:25:54,883 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,883 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:25:54,898 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:25:54,898 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:25:54,898 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:25:54,898 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,898 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:25:54,898 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:25:54,914 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:25:54,914 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:25:54,914 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,930 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:25:54,930 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:25:54,930 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:25:54,930 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:25:54,930 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,945 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:25:54,945 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:25:54,945 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:25:54,945 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:25:54,945 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,961 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:25:54,961 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:25:54,961 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:25:54,961 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:25:54,961 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,977 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:25:54,977 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:25:54,977 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:25:54,977 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:25:54,977 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:54,992 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:25:54,992 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:25:54,992 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:25:54,992 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:25:54,992 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,008 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:25:55,008 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:25:55,008 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:25:55,008 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:25:55,008 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,023 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:25:55,023 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:25:55,023 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:25:55,023 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:25:55,023 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,039 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:25:55,039 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:25:55,039 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:25:55,055 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:25:55,055 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,070 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:25:55,070 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:25:55,070 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:25:55,086 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:25:55,086 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,086 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:25:55,102 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:25:55,102 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:25:55,102 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:25:55,102 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,102 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:25:55,102 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:25:55,102 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:25:55,117 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:25:55,117 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,117 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:25:55,117 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:25:55,117 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:25:55,117 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:25:55,117 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,133 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:25:55,133 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:25:55,133 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:25:55,148 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:25:55,148 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,148 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:25:55,148 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:25:55,164 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:25:55,164 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:25:55,164 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,164 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:25:55,180 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:25:55,180 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:25:55,180 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:25:55,180 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,180 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:25:55,195 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:25:55,195 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:25:55,195 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:25:55,195 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,195 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:25:55,211 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:25:55,211 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:25:55,211 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:25:55,211 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,211 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:25:55,211 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:25:55,227 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:25:55,227 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:25:55,227 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,242 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:25:55,242 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:25:55,242 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:25:55,242 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:25:55,242 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,258 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:25:55,258 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:25:55,258 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:25:55,258 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:25:55,258 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,273 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:25:55,273 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:25:55,273 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:25:55,273 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:25:55,273 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,289 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:25:55,289 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:25:55,289 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:25:55,289 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:25:55,289 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,305 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:25:55,305 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:25:55,305 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:25:55,305 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:25:55,305 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,320 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:25:55,320 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:25:55,320 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:25:55,320 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:25:55,320 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,336 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:25:55,336 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:25:55,352 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:25:55,352 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:25:55,352 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,352 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:25:55,352 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:25:55,352 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:25:55,367 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:25:55,367 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,367 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:25:55,367 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:25:55,367 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:25:55,383 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:25:55,383 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,383 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:25:55,383 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:25:55,398 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:25:55,398 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:25:55,398 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,398 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:25:55,398 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:25:55,414 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:25:55,414 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:25:55,414 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,414 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:25:55,430 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:25:55,430 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:25:55,430 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:25:55,430 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,430 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:25:55,445 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:25:55,445 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:25:55,445 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:25:55,445 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,445 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:25:55,461 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:25:55,461 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:25:55,461 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:25:55,461 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,461 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:25:55,477 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:25:55,477 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:25:55,477 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:25:55,477 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,477 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:25:55,492 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:25:55,492 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:25:55,492 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:25:55,492 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,492 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:25:55,492 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:25:55,508 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:25:55,508 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:25:55,508 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,508 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:25:55,508 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:25:55,524 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:25:55,524 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:25:55,524 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,524 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:25:55,524 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:25:55,539 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:25:55,539 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:25:55,539 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,539 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:25:55,555 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:25:55,555 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:25:55,555 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:25:55,555 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,555 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:25:55,570 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:25:55,570 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:25:55,570 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:25:55,570 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,586 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:25:55,586 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:25:55,586 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:25:55,586 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:25:55,586 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,602 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:25:55,602 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:25:55,602 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:25:55,602 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:25:55,602 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,602 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:25:55,617 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:25:55,617 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:25:55,617 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:25:55,617 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,617 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:25:55,633 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:25:55,633 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:25:55,633 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:25:55,633 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,633 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:25:55,649 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:25:55,649 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:25:55,649 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:25:55,649 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,649 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:25:55,664 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:25:55,664 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:25:55,664 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:25:55,664 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,664 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:25:55,680 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:25:55,680 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:25:55,680 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:25:55,680 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,680 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:25:55,695 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:25:55,695 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:25:55,695 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:25:55,695 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,695 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:25:55,711 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:25:55,711 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:25:55,711 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:25:55,711 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,711 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:25:55,711 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:25:55,727 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:25:55,727 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:25:55,727 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,727 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:25:55,727 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:25:55,727 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:25:55,742 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:25:55,742 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,742 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:25:55,742 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:25:55,742 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:25:55,758 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:25:55,758 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,758 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:25:55,758 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:25:55,774 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:25:55,774 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:25:55,774 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,774 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:25:55,774 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:25:55,789 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:25:55,789 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:25:55,789 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,789 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:25:55,805 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:25:55,805 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:25:55,805 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:25:55,805 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,805 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:25:55,820 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:25:55,820 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:25:55,820 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:25:55,820 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,836 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:25:55,836 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:25:55,836 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:25:55,836 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:25:55,836 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,852 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:25:55,852 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:25:55,852 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:25:55,852 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:25:55,852 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,852 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:25:55,867 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:25:55,867 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:25:55,867 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:25:55,867 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,867 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:25:55,883 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:25:55,883 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:25:55,883 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:25:55,883 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,899 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:25:55,899 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:25:55,899 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:25:55,899 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:25:55,899 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,914 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:25:55,914 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:25:55,914 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:25:55,914 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:25:55,914 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,930 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:25:55,930 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:25:55,930 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:25:55,930 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:25:55,930 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,945 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:25:55,945 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:25:55,945 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:25:55,945 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:25:55,945 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,977 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:25:55,977 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:25:55,977 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:25:55,977 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:25:55,977 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:55,992 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:25:55,992 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:25:55,992 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:25:55,992 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:25:55,992 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,008 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:25:56,008 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:25:56,008 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:25:56,008 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:25:56,008 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,024 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:25:56,024 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:25:56,024 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:25:56,024 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:25:56,024 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,039 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:25:56,039 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:25:56,039 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:25:56,039 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:25:56,039 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,060 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:25:56,070 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:25:56,070 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:25:56,070 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:25:56,070 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,070 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:25:56,086 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:25:56,086 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:25:56,086 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:25:56,102 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,102 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:25:56,102 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:25:56,117 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:25:56,117 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:25:56,117 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,117 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:25:56,117 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:25:56,133 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:25:56,133 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:25:56,133 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,133 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:25:56,149 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:25:56,149 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:25:56,149 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:25:56,149 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,149 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:25:56,164 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:25:56,164 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:25:56,164 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:25:56,164 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,180 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:25:56,180 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:25:56,180 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:25:56,180 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:25:56,180 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,196 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:25:56,196 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:25:56,196 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:25:56,196 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:25:56,196 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,211 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:25:56,211 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:25:56,211 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:25:56,211 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:25:56,211 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,227 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:25:56,227 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:25:56,227 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:25:56,227 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:25:56,242 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,242 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:25:56,258 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:25:56,258 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:25:56,258 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:25:56,258 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,274 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:25:56,274 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:25:56,289 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:25:56,289 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:25:56,289 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,289 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:25:56,305 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:25:56,305 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:25:56,305 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:25:56,305 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,305 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:25:56,321 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:25:56,321 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:25:56,321 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:25:56,321 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,321 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:25:56,336 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:25:56,336 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:25:56,336 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:25:56,336 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,336 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:25:56,336 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:25:56,352 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:25:56,352 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:25:56,352 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,352 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:25:56,367 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:25:56,367 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:25:56,367 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:25:56,367 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,367 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:25:56,383 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:25:56,383 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:25:56,383 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:25:56,383 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,399 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:25:56,399 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:25:56,399 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:25:56,399 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:25:56,399 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,414 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:25:56,414 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:25:56,414 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:25:56,414 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:25:56,414 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,430 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:25:56,430 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:25:56,430 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:25:56,430 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:25:56,430 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,446 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:25:56,446 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:25:56,446 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:25:56,461 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:25:56,461 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,461 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:25:56,477 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:25:56,477 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:25:56,477 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:25:56,477 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,492 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:25:56,492 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:25:56,492 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:25:56,492 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:25:56,492 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,508 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:25:56,508 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:25:56,508 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:25:56,508 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:25:56,524 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,524 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:25:56,539 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:25:56,539 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:25:56,539 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:25:56,539 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,539 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:25:56,555 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:25:56,555 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:25:56,555 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:25:56,555 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,576 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:25:56,586 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:25:56,586 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:25:56,586 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:25:56,586 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,586 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:25:56,602 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:25:56,602 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:25:56,602 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:25:56,602 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,602 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:25:56,617 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:25:56,617 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:25:56,617 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:25:56,617 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,633 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:25:56,633 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:25:56,633 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:25:56,633 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:25:56,633 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,649 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:25:56,664 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:25:56,664 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:25:56,664 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:25:56,664 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,680 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:25:56,680 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:25:56,680 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:25:56,680 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:25:56,696 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,696 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:25:56,696 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:25:56,711 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:25:56,711 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:25:56,711 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,711 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:25:56,711 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:25:56,727 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:25:56,727 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:25:56,727 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,727 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:25:56,743 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:25:56,743 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:25:56,743 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:25:56,743 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,743 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:25:56,758 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:25:56,758 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:25:56,758 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:25:56,758 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,774 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:25:56,774 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:25:56,774 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:25:56,774 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:25:56,789 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,789 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:25:56,789 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:25:56,789 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:25:56,806 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:25:56,806 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,806 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,821 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:25:56,821 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,836 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:25:56,836 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:25:56,836 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:25:56,836 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:25:56,852 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,852 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:25:56,852 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:25:56,852 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:25:56,868 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:25:56,868 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,868 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:25:56,868 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:25:56,868 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:25:56,883 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:25:56,883 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,883 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:25:56,883 [salt.fileclient :1093][DEBUG ][4888] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:25:56,883 [salt.fileclient :1101][DEBUG ][4888] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:25:56,899 [salt.fileclient :1121][DEBUG ][4888] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:25:56,899 [salt.fileclient :1149][DEBUG ][4888] No dest file found -2020-03-04 12:25:56,899 [salt.fileclient :1230][INFO ][4888] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:25:56,915 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:56,915 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:56,915 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls -2020-03-04 12:25:56,915 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:56,930 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.015547990798950195 -2020-03-04 12:25:56,946 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +2020-03-06 10:29:11,870 [salt.state :320 ][INFO ][4476] {'reg': {'Added': {'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Inheritance': True, 'Entry': 'SystemDefaultTlsVersions', 'Owner': None}}} +2020-03-06 10:29:11,886 [salt.state :2045][INFO ][4476] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:29:11.886308 (duration_in_ms=310.494) +2020-03-06 10:29:11,886 [salt.state :1867][INFO ][4476] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:29:11.886308 +2020-03-06 10:29:11,886 [salt.state :1900][INFO ][4476] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:29:11,886 [salt.utils.http :234 ][DEBUG ][4476] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:29:11,886 [salt.utils.http :235 ][DEBUG ][4476] Using backend: tornado +2020-03-06 10:29:12,466 [salt.loaded.int.states.archive:1039][DEBUG ][4476] file.cached: {'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True} +2020-03-06 10:29:12,466 [salt.loaded.int.states.archive:91 ][DEBUG ][4476] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:29:12,482 [salt.loaded.int.states.archive:1059][DEBUG ][4476] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:29:12,545 [salt.loaded.int.module.win_file:1463][DEBUG ][4476] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:29:12,560 [salt.loaded.int.module.win_file:1463][DEBUG ][4476] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:29:12,560 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][4476] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:29:12,576 [salt.loaded.int.states.archive:1344][DEBUG ][4476] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:29:12,968 [salt.loaded.int.states.archive:1643][DEBUG ][4476] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:29:12,968 [salt.state :320 ][INFO ][4476] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} +2020-03-06 10:29:12,968 [salt.state :2045][INFO ][4476] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:29:12.968586 (duration_in_ms=1082.278) +2020-03-06 10:29:12,984 [salt.state :1867][INFO ][4476] Running state [rename-extract] at time 10:29:12.984261 +2020-03-06 10:29:12,984 [salt.state :1900][INFO ][4476] Executing state module.run for [rename-extract] +2020-03-06 10:29:12,984 [salt.state :320 ][INFO ][4476] {'file.rename': True} +2020-03-06 10:29:12,984 [salt.state :2045][INFO ][4476] Completed state [rename-extract] at time 10:29:12.984261 (duration_in_ms=0.0) +2020-03-06 10:29:12,984 [salt.state :1867][INFO ][4476] Running state [pkg.refresh_db] at time 10:29:12.984261 +2020-03-06 10:29:12,999 [salt.state :1900][INFO ][4476] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:29:12,999 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][4476] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:22.405597) +2020-03-06 10:29:12,999 [salt.loaded.int.module.win_pkg:939 ][INFO ][4476] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:29:12,999 [salt.loaded.int.module.win_pkg:958 ][INFO ][4476] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:29:12,999 [salt.fileclient :234 ][INFO ][4476] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:29:13,250 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:29:13,250 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:29:13,266 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:29:13,266 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,266 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:29:13,282 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:29:13,282 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:29:13,282 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:29:13,282 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,344 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:29:13,344 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:29:13,344 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:29:13,344 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:29:13,344 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,360 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:29:13,376 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:29:13,376 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:29:13,376 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:29:13,376 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,376 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:29:13,376 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:29:13,391 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:29:13,391 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:29:13,391 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,391 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:29:13,407 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:29:13,407 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:29:13,407 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:29:13,407 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,423 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:29:13,423 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:29:13,423 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:29:13,423 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:29:13,423 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,439 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:29:13,439 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:29:13,439 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:29:13,439 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:29:13,454 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,454 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:29:13,454 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:29:13,454 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:29:13,470 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:29:13,470 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,470 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:29:13,470 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:29:13,486 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:29:13,486 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:29:13,486 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,486 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:29:13,501 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:29:13,501 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:29:13,501 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:29:13,501 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,501 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:29:13,517 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:29:13,517 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:29:13,517 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:29:13,517 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,533 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:29:13,533 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:29:13,533 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:29:13,533 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:29:13,533 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,548 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:29:13,548 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:29:13,548 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:29:13,548 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:29:13,548 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,564 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:29:13,564 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:29:13,564 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:29:13,564 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:29:13,580 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,595 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:29:13,595 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:29:13,611 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:29:13,611 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:29:13,611 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,627 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:29:13,627 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:29:13,627 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:29:13,627 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:29:13,642 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,642 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:29:13,658 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:29:13,658 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:29:13,658 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:29:13,658 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,674 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:29:13,674 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:29:13,674 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:29:13,674 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:29:13,689 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,689 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:29:13,706 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:29:13,706 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:29:13,706 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:29:13,706 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,721 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:29:13,721 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:29:13,721 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:29:13,721 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:29:13,736 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,736 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:29:13,736 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:29:13,752 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:29:13,752 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:29:13,752 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,768 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:29:13,768 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:29:13,768 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:29:13,784 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:29:13,784 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,784 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:29:13,799 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:29:13,799 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:29:13,799 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:29:13,799 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,815 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:29:13,815 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:29:13,815 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:29:13,815 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:29:13,831 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,831 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:29:13,846 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:29:13,846 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:29:13,846 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:29:13,846 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,862 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:29:13,862 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:29:13,862 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:29:13,862 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:29:13,862 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,878 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:29:13,878 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:29:13,878 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:29:13,893 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:29:13,893 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,893 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:29:13,909 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:29:13,909 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:29:13,909 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:29:13,909 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,925 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:29:13,925 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:29:13,925 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:29:13,925 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:29:13,925 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,940 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:29:13,940 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:29:13,940 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:29:13,940 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:29:13,940 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,957 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:29:13,957 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:29:13,957 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:29:13,957 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:29:13,972 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,972 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:29:13,972 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:29:13,972 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:29:13,972 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:29:13,972 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:13,987 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:29:13,987 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:29:13,987 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:29:13,987 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:29:13,987 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,003 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:29:14,003 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:29:14,003 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:29:14,003 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:29:14,019 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,019 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:29:14,019 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:29:14,019 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:29:14,034 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:29:14,034 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,034 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:29:14,034 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:29:14,050 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:29:14,050 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:29:14,050 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,050 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:29:14,066 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:29:14,066 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:29:14,066 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:29:14,066 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,081 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:29:14,081 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:29:14,081 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:29:14,081 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:29:14,081 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,097 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:29:14,097 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:29:14,097 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:29:14,097 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:29:14,097 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,113 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:29:14,113 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:29:14,128 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:29:14,128 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:29:14,128 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,128 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:29:14,128 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:29:14,144 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:29:14,144 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:29:14,144 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,144 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:29:14,160 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:29:14,160 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:29:14,160 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:29:14,160 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,160 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:29:14,175 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:29:14,175 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:29:14,175 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:29:14,175 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,191 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:29:14,191 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:29:14,191 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:29:14,191 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:29:14,191 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,207 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:29:14,207 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:29:14,207 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:29:14,207 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:29:14,207 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,223 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:29:14,223 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:29:14,223 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:29:14,223 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:29:14,223 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,238 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:29:14,238 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:29:14,238 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:29:14,238 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:29:14,238 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,254 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:29:14,254 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:29:14,270 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:29:14,270 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:29:14,270 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,285 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:29:14,285 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:29:14,285 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:29:14,285 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:29:14,285 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,301 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:29:14,301 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:29:14,301 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:29:14,301 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:29:14,301 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,317 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:29:14,317 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:29:14,317 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:29:14,317 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:29:14,332 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,332 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:29:14,332 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:29:14,348 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:29:14,348 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:29:14,348 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,348 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:29:14,364 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:29:14,364 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:29:14,364 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:29:14,364 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,364 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:29:14,379 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:29:14,379 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:29:14,379 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:29:14,379 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,395 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:29:14,395 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:29:14,395 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:29:14,395 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:29:14,395 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,411 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:29:14,411 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:29:14,411 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:29:14,411 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:29:14,411 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,426 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:29:14,426 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:29:14,426 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:29:14,442 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:29:14,442 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,442 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:29:14,442 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:29:14,458 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:29:14,458 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:29:14,458 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,473 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:29:14,473 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:29:14,473 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:29:14,473 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:29:14,473 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,489 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:29:14,489 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:29:14,489 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:29:14,489 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:29:14,505 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,505 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:29:14,505 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:29:14,505 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:29:14,520 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:29:14,520 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,520 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:29:14,536 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:29:14,536 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:29:14,536 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:29:14,536 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,552 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:29:14,567 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:29:14,567 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:29:14,583 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:29:14,583 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,599 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:29:14,599 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:29:14,614 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:29:14,614 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:29:14,630 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,646 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:29:14,646 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:29:14,646 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:29:14,662 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:29:14,662 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,677 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:29:14,677 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:29:14,693 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:29:14,693 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:29:14,693 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,709 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:29:14,709 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:29:14,724 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:29:14,724 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:29:14,724 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,740 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:29:14,740 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:29:14,740 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:29:14,756 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:29:14,756 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,771 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:29:14,771 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:29:14,787 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:29:14,787 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:29:14,787 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,803 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:29:14,803 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:29:14,803 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:29:14,818 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:29:14,818 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,834 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:29:14,834 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:29:14,834 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:29:14,850 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:29:14,865 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,865 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:29:14,865 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:29:14,881 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:29:14,881 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:29:14,881 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,881 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:29:14,897 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:29:14,897 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:29:14,897 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:29:14,897 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,912 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:29:14,912 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:29:14,912 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:29:14,912 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:29:14,912 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,928 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:29:14,928 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:29:14,928 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:29:14,944 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:29:14,944 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,959 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:29:14,959 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:29:14,959 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:29:14,959 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:29:14,975 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,975 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:29:14,975 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:29:14,975 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:29:14,991 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:29:14,991 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:14,991 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:29:15,006 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:29:15,006 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:29:15,006 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:29:15,006 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,022 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:29:15,022 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:29:15,022 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:29:15,022 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:29:15,022 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,038 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:29:15,038 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:29:15,038 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:29:15,038 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:29:15,038 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,053 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:29:15,053 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:29:15,053 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:29:15,053 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:29:15,069 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,069 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:29:15,085 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:29:15,085 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:29:15,085 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:29:15,085 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,085 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:29:15,100 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:29:15,100 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:29:15,100 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:29:15,100 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,100 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:29:15,116 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:29:15,116 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:29:15,116 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:29:15,116 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,116 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:29:15,132 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:29:15,132 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:29:15,132 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:29:15,132 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,147 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:29:15,147 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:29:15,147 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:29:15,147 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:29:15,147 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,163 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:29:15,163 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:29:15,163 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:29:15,163 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:29:15,179 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,179 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:29:15,179 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:29:15,194 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:29:15,194 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:29:15,194 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,194 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:29:15,210 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:29:15,210 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:29:15,210 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:29:15,210 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,226 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:29:15,226 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:29:15,226 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:29:15,226 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:29:15,226 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,242 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:29:15,242 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:29:15,242 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:29:15,242 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:29:15,242 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,242 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:29:15,257 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:29:15,257 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:29:15,257 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:29:15,257 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,273 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:29:15,273 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:29:15,273 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:29:15,273 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:29:15,273 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,289 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:29:15,289 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:29:15,289 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:29:15,289 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:29:15,289 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,304 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:29:15,304 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:29:15,304 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:29:15,304 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:29:15,304 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,320 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:29:15,336 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:29:15,336 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:29:15,336 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:29:15,336 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,351 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:29:15,351 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:29:15,367 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:29:15,367 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:29:15,367 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,383 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:29:15,383 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:29:15,383 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:29:15,383 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:29:15,383 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,398 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:29:15,398 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:29:15,398 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:29:15,398 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:29:15,414 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,430 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:29:15,430 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:29:15,430 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:29:15,430 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:29:15,445 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,445 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:29:15,461 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:29:15,461 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:29:15,461 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:29:15,461 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,477 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:29:15,492 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:29:15,492 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:29:15,492 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:29:15,492 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,508 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:29:15,508 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:29:15,508 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:29:15,524 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:29:15,524 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,524 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:29:15,524 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:29:15,539 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:29:15,539 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:29:15,539 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,555 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:29:15,555 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:29:15,555 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:29:15,555 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:29:15,555 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,571 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:29:15,571 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:29:15,571 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:29:15,571 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:29:15,571 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,586 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:29:15,586 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:29:15,586 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:29:15,602 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:29:15,602 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,602 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:29:15,618 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:29:15,618 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:29:15,618 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:29:15,618 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,618 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:29:15,633 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:29:15,633 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:29:15,633 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:29:15,633 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,633 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:29:15,649 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:29:15,649 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:29:15,649 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:29:15,649 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,665 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:29:15,665 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:29:15,665 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:29:15,665 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:29:15,665 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,681 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:29:15,681 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:29:15,681 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:29:15,681 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:29:15,681 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,696 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:29:15,696 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:29:15,696 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:29:15,696 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:29:15,696 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,712 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:29:15,712 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:29:15,712 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:29:15,712 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:29:15,712 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,727 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:29:15,727 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:29:15,727 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:29:15,727 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:29:15,743 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,743 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:29:15,743 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:29:15,759 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:29:15,759 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:29:15,759 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,759 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:29:15,774 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:29:15,774 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:29:15,774 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:29:15,774 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,774 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:29:15,790 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:29:15,790 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:29:15,790 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:29:15,790 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,806 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:29:15,806 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:29:15,806 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:29:15,806 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:29:15,806 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,821 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:29:15,821 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:29:15,821 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:29:15,821 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:29:15,821 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,821 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:29:15,837 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:29:15,837 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:29:15,837 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:29:15,837 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,853 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:29:15,853 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:29:15,868 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:29:15,868 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:29:15,868 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,868 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:29:15,868 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:29:15,884 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:29:15,884 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:29:15,884 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,884 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:29:15,900 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:29:15,900 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:29:15,900 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:29:15,900 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,915 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:29:15,915 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:29:15,915 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:29:15,915 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:29:15,915 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,931 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:29:15,931 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:29:15,931 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:29:15,947 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:29:15,947 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,947 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:29:15,947 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:29:15,963 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:29:15,963 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:29:15,963 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,963 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:29:15,978 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:29:15,978 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:29:15,978 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:29:15,978 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:15,994 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:29:15,994 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:29:15,994 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:29:15,994 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:29:15,994 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,010 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:29:16,010 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:29:16,010 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:29:16,010 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:29:16,010 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,025 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:29:16,025 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:29:16,025 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:29:16,041 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:29:16,041 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,041 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:29:16,041 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:29:16,041 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:29:16,057 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:29:16,057 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,057 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:29:16,057 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,072 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,072 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,072 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,088 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,088 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,088 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,088 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,088 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,104 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,104 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:29:16,104 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:29:16,104 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:29:16,104 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,119 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:29:16,119 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:29:16,119 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:29:16,119 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:29:16,135 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,135 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:29:16,135 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:29:16,151 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:29:16,151 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:29:16,151 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,166 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:29:16,166 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:29:16,166 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:29:16,166 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:29:16,182 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,182 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:29:16,198 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:29:16,198 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:29:16,198 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:29:16,198 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,198 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:29:16,213 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:29:16,213 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:29:16,213 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:29:16,213 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,229 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:29:16,229 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,229 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,229 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,229 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,245 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:29:16,245 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,245 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,245 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,245 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,260 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,260 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:29:16,276 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:29:16,276 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:29:16,276 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,276 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:29:16,276 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,292 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,292 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,292 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,292 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:29:16,307 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:29:16,307 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:29:16,307 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:29:16,307 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,307 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:29:16,323 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:29:16,323 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:29:16,323 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:29:16,323 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,354 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:29:16,354 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:29:16,354 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:29:16,354 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:29:16,370 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,386 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:29:16,386 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:29:16,386 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:29:16,401 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:29:16,401 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,401 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:29:16,401 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:29:16,417 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:29:16,417 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:29:16,417 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,417 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:29:16,433 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:29:16,433 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:29:16,433 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:29:16,433 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,448 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:29:16,448 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:29:16,448 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:29:16,448 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:29:16,464 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,464 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:29:16,464 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:29:16,480 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:29:16,480 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:29:16,480 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,495 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:29:16,495 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:29:16,495 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:29:16,495 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:29:16,495 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,511 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:29:16,511 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:29:16,527 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:29:16,527 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:29:16,527 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,542 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:29:16,542 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:29:16,542 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:29:16,542 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:29:16,542 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,558 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:29:16,558 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:29:16,558 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:29:16,558 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:29:16,574 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,574 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:29:16,574 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:29:16,589 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:29:16,589 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:29:16,589 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,589 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:29:16,605 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:29:16,605 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:29:16,605 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:29:16,605 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,605 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:29:16,621 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:29:16,621 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:29:16,621 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:29:16,621 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,636 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:29:16,636 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:29:16,636 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:29:16,636 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:29:16,636 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,652 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:29:16,652 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:29:16,652 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:29:16,652 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:29:16,652 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,668 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:29:16,668 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:29:16,683 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:29:16,683 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:29:16,683 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,683 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:29:16,699 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:29:16,699 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:29:16,699 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:29:16,699 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,699 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:29:16,716 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:29:16,716 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:29:16,716 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:29:16,716 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,730 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:29:16,730 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:29:16,730 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:29:16,730 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:29:16,730 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,730 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:29:16,746 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:29:16,746 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:29:16,746 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:29:16,746 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,746 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:29:16,762 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:29:16,762 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:29:16,762 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:29:16,762 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,777 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:29:16,777 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:29:16,777 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:29:16,777 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:29:16,777 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,793 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:29:16,793 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:29:16,793 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:29:16,793 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:29:16,793 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,809 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:29:16,809 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:29:16,809 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:29:16,809 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:29:16,809 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,824 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:29:16,824 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:29:16,824 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:29:16,824 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:29:16,824 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,840 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:29:16,840 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:29:16,840 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:29:16,840 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:29:16,840 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,856 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:29:16,856 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:29:16,856 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:29:16,856 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:29:16,856 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,871 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:29:16,871 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:29:16,871 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:29:16,871 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:29:16,871 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,887 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:29:16,887 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:29:16,903 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:29:16,903 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:29:16,903 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,903 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:29:16,918 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:29:16,918 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:29:16,918 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:29:16,918 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,934 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:29:16,934 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:29:16,934 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:29:16,934 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:29:16,934 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,950 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:29:16,966 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:29:16,966 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:29:16,966 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:29:16,966 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,981 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:29:16,981 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:29:16,981 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:29:16,981 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:29:16,981 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:16,997 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:29:16,997 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:29:16,997 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:29:16,997 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:29:17,012 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,012 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:29:17,028 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:29:17,028 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:29:17,028 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:29:17,028 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,044 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:29:17,044 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:29:17,060 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:29:17,060 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:29:17,060 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,060 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:29:17,075 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:29:17,075 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:29:17,075 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:29:17,075 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,091 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:29:17,091 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:29:17,091 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:29:17,091 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:29:17,106 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,106 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:29:17,106 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:29:17,122 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:29:17,122 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:29:17,122 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,138 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:29:17,138 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:29:17,138 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:29:17,138 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:29:17,138 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,153 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:29:17,169 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:29:17,169 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:29:17,169 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:29:17,169 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,185 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:29:17,185 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:29:17,185 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:29:17,185 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:29:17,201 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,201 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:29:17,201 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:29:17,216 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:29:17,216 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:29:17,216 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,232 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:29:17,232 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:29:17,232 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:29:17,232 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:29:17,248 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,248 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:29:17,263 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:29:17,263 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:29:17,263 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:29:17,263 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,279 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:29:17,279 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:29:17,295 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:29:17,295 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:29:17,295 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,310 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:29:17,310 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:29:17,326 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:29:17,326 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:29:17,326 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,326 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:29:17,342 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:29:17,342 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:29:17,357 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:29:17,357 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,373 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:29:17,373 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:29:17,389 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:29:17,404 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:29:17,404 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,420 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:29:17,420 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:29:17,420 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:29:17,420 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:29:17,436 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,451 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:29:17,467 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:29:17,467 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:29:17,467 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:29:17,467 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,483 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:29:17,483 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:29:17,498 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:29:17,498 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:29:17,498 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,514 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:29:17,530 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:29:17,530 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:29:17,530 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:29:17,530 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,545 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:29:17,545 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:29:17,561 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:29:17,561 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:29:17,561 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,577 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:29:17,577 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:29:17,592 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:29:17,592 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:29:17,592 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,608 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:29:17,608 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:29:17,608 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:29:17,608 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:29:17,624 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,624 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:29:17,639 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:29:17,639 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:29:17,639 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:29:17,639 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,655 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:29:17,655 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:29:17,671 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:29:17,671 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:29:17,671 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,686 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:29:17,702 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:29:17,702 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:29:17,702 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:29:17,702 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,718 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:29:17,718 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:29:17,718 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:29:17,733 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:29:17,733 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,749 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:29:17,749 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:29:17,749 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:29:17,749 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:29:17,765 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,780 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:29:17,780 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:29:17,780 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:29:17,796 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:29:17,796 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,796 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:29:17,812 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:29:17,812 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:29:17,812 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:29:17,812 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,812 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:29:17,827 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:29:17,827 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:29:17,827 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:29:17,827 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,843 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:29:17,843 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:29:17,843 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:29:17,843 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:29:17,843 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,859 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:29:17,859 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:29:17,874 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:29:17,874 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:29:17,874 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,890 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:29:17,906 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:29:17,906 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:29:17,906 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:29:17,906 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,921 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:29:17,921 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:29:17,921 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:29:17,921 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:29:17,921 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,937 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:29:17,937 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:29:17,937 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:29:17,953 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:29:17,953 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,953 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:29:17,968 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:29:17,968 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:29:17,968 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:29:17,968 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:17,984 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:29:17,984 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:29:17,984 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:29:17,984 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:29:18,000 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,000 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:29:18,015 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:29:18,015 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:29:18,015 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:29:18,015 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,031 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:29:18,031 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:29:18,031 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:29:18,031 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:29:18,047 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,047 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:29:18,062 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:29:18,062 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:29:18,062 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:29:18,062 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,062 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:29:18,078 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:29:18,078 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:29:18,078 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:29:18,078 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,078 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:29:18,078 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:29:18,094 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:29:18,094 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:29:18,094 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,094 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:29:18,094 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:29:18,109 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:29:18,109 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:29:18,109 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,109 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:29:18,109 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:29:18,125 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:29:18,125 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:29:18,125 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,141 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:29:18,156 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:29:18,156 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:29:18,156 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:29:18,156 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,172 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:29:18,172 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:29:18,172 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:29:18,172 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:29:18,172 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,188 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:29:18,188 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:29:18,188 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:29:18,188 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:29:18,188 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,203 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:29:18,203 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:29:18,203 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:29:18,203 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:29:18,203 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,219 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:29:18,219 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:29:18,219 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:29:18,219 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:29:18,219 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,235 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:29:18,235 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:29:18,235 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:29:18,235 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:29:18,235 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,250 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:29:18,250 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:29:18,250 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:29:18,250 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:29:18,250 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,266 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:29:18,266 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:29:18,266 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:29:18,266 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:29:18,282 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,282 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:29:18,282 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:29:18,282 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:29:18,297 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:29:18,297 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,297 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:29:18,297 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:29:18,313 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:29:18,313 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:29:18,313 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,313 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:29:18,313 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:29:18,329 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:29:18,329 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:29:18,329 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,344 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:29:18,344 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:29:18,344 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:29:18,344 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:29:18,344 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,360 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:29:18,360 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:29:18,360 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:29:18,360 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:29:18,360 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,376 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:29:18,376 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:29:18,376 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:29:18,376 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:29:18,391 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,391 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:29:18,391 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:29:18,391 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:29:18,407 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:29:18,407 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,407 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:29:18,407 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:29:18,423 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:29:18,423 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:29:18,423 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,423 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:29:18,438 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:29:18,438 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:29:18,438 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:29:18,438 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,454 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:29:18,454 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:29:18,454 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:29:18,454 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:29:18,454 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,470 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:29:18,470 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:29:18,470 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:29:18,470 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:29:18,470 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,485 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:29:18,485 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:29:18,485 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:29:18,485 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:29:18,485 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,501 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:29:18,501 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:29:18,501 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:29:18,501 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:29:18,501 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,517 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:29:18,517 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:29:18,517 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:29:18,532 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:29:18,532 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,532 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:29:18,532 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:29:18,532 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:29:18,548 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:29:18,548 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,548 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:29:18,548 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:29:18,564 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:29:18,564 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:29:18,564 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,564 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:29:18,564 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:29:18,579 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:29:18,579 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:29:18,579 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,579 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:29:18,579 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:29:18,595 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:29:18,595 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:29:18,595 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,595 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:29:18,611 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:29:18,611 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:29:18,611 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:29:18,611 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,626 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:29:18,626 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:29:18,626 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:29:18,626 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:29:18,626 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,643 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:29:18,643 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:29:18,643 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:29:18,643 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:29:18,658 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,658 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:29:18,658 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:29:18,658 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:29:18,658 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:29:18,673 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,673 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:29:18,673 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:29:18,673 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:29:18,689 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:29:18,689 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,689 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:29:18,689 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:29:18,689 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:29:18,705 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:29:18,705 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,705 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:29:18,705 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:29:18,720 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:29:18,720 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:29:18,720 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,720 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:29:18,736 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:29:18,736 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:29:18,736 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:29:18,736 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,752 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:29:18,752 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:29:18,752 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:29:18,752 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:29:18,752 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,767 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:29:18,767 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:29:18,767 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:29:18,767 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:29:18,767 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,783 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:29:18,783 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:29:18,783 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:29:18,783 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:29:18,799 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,815 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:29:18,815 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:29:18,815 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:29:18,830 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:29:18,830 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,830 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:29:18,830 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:29:18,846 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:29:18,846 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:29:18,846 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,846 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:29:18,861 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:29:18,861 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:29:18,861 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:29:18,861 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,877 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:29:18,877 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:29:18,877 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:29:18,877 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:29:18,877 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,893 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:29:18,893 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:29:18,908 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:29:18,908 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:29:18,908 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,908 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:29:18,924 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:29:18,924 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:29:18,924 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:29:18,924 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,940 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:29:18,940 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:29:18,940 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:29:18,940 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:29:18,940 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,955 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:29:18,955 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:29:18,955 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:29:18,955 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:29:18,971 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,971 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:29:18,971 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:29:18,987 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:29:18,987 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:29:18,987 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:18,987 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:29:19,002 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:29:19,002 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:29:19,002 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:29:19,002 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,018 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:29:19,018 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:29:19,018 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:29:19,018 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:29:19,033 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,033 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:29:19,033 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:29:19,049 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:29:19,049 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:29:19,049 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,065 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:29:19,065 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:29:19,065 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:29:19,065 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:29:19,080 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,080 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:29:19,080 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:29:19,080 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:29:19,096 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:29:19,096 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,112 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:29:19,112 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:29:19,112 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:29:19,112 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:29:19,112 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,127 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:29:19,127 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:29:19,127 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:29:19,143 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:29:19,143 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,143 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:29:19,159 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:29:19,159 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:29:19,159 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:29:19,159 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,159 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:29:19,174 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:29:19,174 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:29:19,174 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:29:19,174 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,190 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:29:19,190 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:29:19,190 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:29:19,190 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:29:19,190 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,206 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:29:19,206 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:29:19,206 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:29:19,221 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:29:19,221 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,221 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:29:19,237 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:29:19,237 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:29:19,237 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:29:19,237 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,253 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:29:19,253 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:29:19,253 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:29:19,253 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:29:19,253 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,268 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:29:19,284 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:29:19,284 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:29:19,284 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:29:19,284 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,300 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:29:19,300 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:29:19,300 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:29:19,300 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:29:19,315 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,315 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:29:19,315 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:29:19,315 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:29:19,332 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:29:19,332 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,332 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:29:19,347 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:29:19,347 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:29:19,347 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:29:19,347 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,362 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:29:19,362 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:29:19,362 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:29:19,362 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:29:19,378 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,378 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:29:19,378 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:29:19,394 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:29:19,394 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:29:19,394 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,409 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:29:19,441 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:29:19,441 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:29:19,441 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:29:19,441 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,456 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:29:19,456 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:29:19,456 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:29:19,472 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:29:19,472 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,472 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:29:19,488 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:29:19,503 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:29:19,503 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:29:19,503 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,503 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:29:19,519 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:29:19,519 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:29:19,519 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:29:19,519 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,535 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:29:19,535 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:29:19,535 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:29:19,550 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:29:19,550 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,566 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:29:19,566 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:29:19,582 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:29:19,582 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:29:19,582 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,597 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:29:19,597 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:29:19,613 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:29:19,613 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:29:19,613 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,629 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:29:19,629 [salt.fileclient :1101][DEBUG ][4476] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:29:19,629 [salt.fileclient :1109][DEBUG ][4476] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:29:19,629 [salt.fileclient :1129][DEBUG ][4476] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:29:19,644 [salt.fileclient :1157][DEBUG ][4476] No dest file found +2020-03-06 10:29:19,644 [salt.fileclient :1238][INFO ][4476] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:29:19,660 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,660 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,660 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:29:19,676 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,691 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.015528202056884766 +2020-03-06 10:29:19,691 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -3352,11 +3218,11 @@ File Not Found 7zip: - '16.04.00.0': + '19.00.00.0': - full_name: '7-Zip 16.04 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1604-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3365,11 +3231,13 @@ File Not Found locale: en_US reboot: False - '16.03.00.0': + + + '18.06.00.0': - full_name: '7-Zip 16.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1603-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3378,11 +3246,11 @@ File Not Found locale: en_US reboot: False - '16.02.00.0': + '18.05.00.0': - full_name: '7-Zip 16.02 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1602-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3391,11 +3259,11 @@ File Not Found locale: en_US reboot: False - '16.00.00.0': + '18.03.00.0': - full_name: '7-Zip 16.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1600-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3404,13 +3272,11 @@ File Not Found locale: en_US reboot: False - - - '18.06.00.0': + '18.01.00.0': - full_name: '7-Zip 18.06 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1806-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3419,11 +3285,13 @@ File Not Found locale: en_US reboot: False - '18.05.00.0': + + + '16.04.00.0': - full_name: '7-Zip 18.05 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1805-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3432,11 +3300,11 @@ File Not Found locale: en_US reboot: False - '18.03.00.0': + '16.03.00.0': - full_name: '7-Zip 18.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1803-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3445,11 +3313,11 @@ File Not Found locale: en_US reboot: False - '18.01.00.0': + '16.02.00.0': - full_name: '7-Zip 18.01 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1801-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3458,13 +3326,11 @@ File Not Found locale: en_US reboot: False - - - '19.00.00.0': + '16.00.00.0': - full_name: '7-Zip 19.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1900-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3475,15 +3341,15 @@ File Not Found -2020-03-04 12:25:56,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('7zip', OrderedDict([('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:56,946 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:56,946 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:56,946 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:56,946 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls -2020-03-04 12:25:56,961 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:56,961 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:56,961 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +2020-03-06 10:29:19,691 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:29:19,707 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.015677213668823242 +2020-03-06 10:29:19,707 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,707 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,707 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:29:19,723 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,723 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:19,738 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: activeperl_x64: '5.22.4': @@ -3517,15 +3383,15 @@ activeperl_x64: reboot: False -2020-03-04 12:25:56,961 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:56,961 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:56,961 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:56,977 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:56,977 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls -2020-03-04 12:25:56,977 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:56,977 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:56,993 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +2020-03-06 10:29:19,738 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:19,738 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,754 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,754 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:29:19,754 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,770 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.015676021575927734 +2020-03-06 10:29:19,770 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: activeperl_x86: '5.22.4': @@ -3541,15 +3407,15 @@ activeperl_x86: reboot: False -2020-03-04 12:25:56,993 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,770 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:56,993 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:56,993 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:56,993 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:56,993 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls -2020-03-04 12:25:57,008 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,008 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,008 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +2020-03-06 10:29:19,770 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:19,785 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,785 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,785 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:29:19,785 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,801 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.015650272369384766 +2020-03-06 10:29:19,801 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: adobeair: latest: full_name: 'Adobe AIR' @@ -3570,15 +3436,15 @@ adobeair: locale: en_US reboot: False -2020-03-04 12:25:57,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,801 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,008 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,008 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,024 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,024 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls -2020-03-04 12:25:57,024 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,024 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,024 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +2020-03-06 10:29:19,817 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.01565384864807129 +2020-03-06 10:29:19,817 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,832 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,832 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:29:19,832 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,848 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.015651702880859375 +2020-03-06 10:29:19,848 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: # to understand what is meant by "classic" see # http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html @@ -3772,15 +3638,15 @@ adobereader-dc-classic: reboot: False -2020-03-04 12:25:57,039 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,039 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,039 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,039 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,039 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls -2020-03-04 12:25:57,055 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,055 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,055 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +2020-03-06 10:29:19,864 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.015669584274291992 +2020-03-06 10:29:19,864 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,864 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,879 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:29:19,879 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,879 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:19,879 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: adobereader-xi: '11.0.10': full_name: 'Adobe Reader XI (11.0.10)' @@ -3801,15 +3667,15 @@ adobereader-xi: locale: en_US reboot: False -2020-03-04 12:25:57,055 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,055 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,071 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,071 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,071 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls -2020-03-04 12:25:57,071 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,071 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,071 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +2020-03-06 10:29:19,895 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.015652179718017578 +2020-03-06 10:29:19,895 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,911 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,911 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:29:19,911 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,911 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:19,911 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: adobereader: '10.1.4': full_name: 'Adobe Reader X (10.1.4)' @@ -3830,15 +3696,15 @@ adobereader: locale: en_US reboot: False -2020-03-04 12:25:57,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,071 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,086 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,086 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,086 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls -2020-03-04 12:25:57,086 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,086 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,086 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +2020-03-06 10:29:19,926 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:19,926 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,942 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,942 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:29:19,942 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,942 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:19,942 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: adobeshockwaveplayer: latest: full_name: 'Adobe Shockwave Player 12.2' @@ -3852,15 +3718,15 @@ adobeshockwaveplayer: # # Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version -2020-03-04 12:25:57,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,086 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,102 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,102 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,102 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls -2020-03-04 12:25:57,102 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,118 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.01563549041748047 -2020-03-04 12:25:57,118 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: +2020-03-06 10:29:19,958 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:19,974 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:19,974 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:19,974 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:29:19,974 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:19,989 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.014905929565429688 +2020-03-06 10:29:19,989 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: @@ -3883,15 +3749,15 @@ adv-ip-scanner: # http://www.advanced-ip-scanner.com # a product of: www.radmin.com -2020-03-04 12:25:57,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:19,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,118 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,118 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,118 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,133 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls -2020-03-04 12:25:57,133 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,133 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,133 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: +2020-03-06 10:29:19,989 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,005 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,005 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,005 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:29:20,005 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,020 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.015657424926757812 +2020-03-06 10:29:20,020 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: @@ -3914,15 +3780,15 @@ adv-port-scanner: # http://www.advanced-port-scanner.com # a product of: www.radmin.com -2020-03-04 12:25:57,133 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,020 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,149 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.015634536743164062 -2020-03-04 12:25:57,149 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,149 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,149 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls -2020-03-04 12:25:57,149 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,164 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.01562190055847168 -2020-03-04 12:25:57,164 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +2020-03-06 10:29:20,020 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,020 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,020 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,036 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:29:20,036 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,067 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.031320810317993164 +2020-03-06 10:29:20,067 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: advancedlogging: '1.0.0625.10': full_name: 'IIS Advanced Logging 1.0' @@ -3936,15 +3802,15 @@ advancedlogging: locale: en_US reboot: False -2020-03-04 12:25:57,164 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,164 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,164 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,164 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,180 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls -2020-03-04 12:25:57,180 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,180 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,180 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +2020-03-06 10:29:20,067 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,083 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,099 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,099 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:29:20,099 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,114 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.015659093856811523 +2020-03-06 10:29:20,114 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: # just 32-bit x86 msi package available @@ -3960,15 +3826,15 @@ anydesk-msi: locale: en_US reboot: False -2020-03-04 12:25:57,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,196 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,196 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,196 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,196 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls -2020-03-04 12:25:57,196 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,212 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.016435861587524414 -2020-03-04 12:25:57,212 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +2020-03-06 10:29:20,114 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,130 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,130 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,146 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:29:20,146 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,161 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.015652894973754883 +2020-03-06 10:29:20,161 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: # just 32-bit x86 installer available @@ -3988,15 +3854,15 @@ anydesk: locale: en_US reboot: False -2020-03-04 12:25:57,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,161 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,212 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,212 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,212 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,227 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls -2020-03-04 12:25:57,227 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,227 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,227 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +2020-03-06 10:29:20,177 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.015659570693969727 +2020-03-06 10:29:20,177 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,177 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,177 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:29:20,193 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,193 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,193 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: applicationrequestrouting: '3.0.1952': full_name: 'Microsoft Application Request Routing 3.0' @@ -4010,15 +3876,15 @@ applicationrequestrouting: locale: en_US reboot: False -2020-03-04 12:25:57,248 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,193 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,248 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,248 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,258 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,258 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls -2020-03-04 12:25:57,258 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,258 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,258 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +2020-03-06 10:29:20,208 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.01566314697265625 +2020-03-06 10:29:20,208 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,208 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,208 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:29:20,224 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,224 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,224 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: aspnet-mvc1: '1.0.0.0': full_name: 'Microsoft ASP.NET MVC 1.0' @@ -4030,15 +3896,15 @@ aspnet-mvc1: locale: en_US reboot: False -2020-03-04 12:25:57,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,258 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,258 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,274 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,274 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls -2020-03-04 12:25:57,274 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,274 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,289 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: +2020-03-06 10:29:20,224 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,240 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,240 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,240 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:29:20,240 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,255 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.01566457748413086 +2020-03-06 10:29:20,255 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: atom: @@ -4103,15 +3969,15 @@ atom: reboot: False -2020-03-04 12:25:57,289 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,255 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,289 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,289 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,305 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,305 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls -2020-03-04 12:25:57,305 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,305 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,321 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: +2020-03-06 10:29:20,271 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.015659093856811523 +2020-03-06 10:29:20,271 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,271 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,271 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:29:20,271 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,287 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.015665769577026367 +2020-03-06 10:29:20,287 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: @@ -4139,15 +4005,15 @@ audacity: reboot: False -2020-03-04 12:25:57,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,287 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,321 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,336 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,336 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,336 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls -2020-03-04 12:25:57,336 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,352 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.015726566314697266 -2020-03-04 12:25:57,352 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: +2020-03-06 10:29:20,287 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,287 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,302 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,302 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:29:20,302 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,302 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,318 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: @@ -4189,15 +4055,15 @@ autohotkey: locale: en_US reboot: False -2020-03-04 12:25:57,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,318 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,352 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,352 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,368 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,368 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls -2020-03-04 12:25:57,368 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,368 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,383 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: +2020-03-06 10:29:20,318 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,318 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,334 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,334 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:29:20,334 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,349 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.01565694808959961 +2020-03-06 10:29:20,349 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: autoit: @@ -4214,15 +4080,15 @@ autoit: reboot: False -2020-03-04 12:25:57,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,383 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,383 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,383 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,383 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls -2020-03-04 12:25:57,399 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,399 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,399 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +2020-03-06 10:29:20,349 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,349 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,365 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,365 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:29:20,365 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,380 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.01565098762512207 +2020-03-06 10:29:20,380 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: autopsy: '4.3.0': full_name: 'Autopsy' @@ -4236,15 +4102,15 @@ autopsy: locale: en_US reboot: False -2020-03-04 12:25:57,399 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,380 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,399 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,415 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,415 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,415 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls -2020-03-04 12:25:57,415 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,430 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.015627622604370117 -2020-03-04 12:25:57,430 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +2020-03-06 10:29:20,380 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,396 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,396 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,396 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:29:20,396 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,412 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.015655994415283203 +2020-03-06 10:29:20,412 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available awscli: @@ -4260,15 +4126,15 @@ awscli: locale: en_US reboot: False -2020-03-04 12:25:57,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,412 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,430 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,430 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,430 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,430 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls -2020-03-04 12:25:57,446 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,446 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,446 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +2020-03-06 10:29:20,412 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,427 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,427 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,443 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:29:20,443 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,443 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,443 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: # due to winrepo installer limitations you need to manually download the exe from # https://go.microsoft.com/fwlink/?linkid=2049975 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... @@ -4286,15 +4152,15 @@ azuredatastudio: locale: en_US reboot: False -2020-03-04 12:25:57,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,459 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,446 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,461 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,461 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,461 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls -2020-03-04 12:25:57,461 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,461 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,461 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +2020-03-06 10:29:20,459 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,459 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,474 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,474 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:29:20,474 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,490 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.015668392181396484 +2020-03-06 10:29:20,490 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: #the provider only offers the download of the latest version @@ -4310,15 +4176,15 @@ bandizip: locale: en_US reboot: False -2020-03-04 12:25:57,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,477 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.015630245208740234 -2020-03-04 12:25:57,477 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,477 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,493 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls -2020-03-04 12:25:57,493 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,493 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,493 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +2020-03-06 10:29:20,506 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,506 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,506 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,521 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:29:20,521 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,537 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.01567983627319336 +2020-03-06 10:29:20,537 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: # just 32-bit x86 installer available @@ -4334,15 +4200,15 @@ belarc-advisor: locale: en_US reboot: False -2020-03-04 12:25:57,493 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,537 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,508 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.015618324279785156 -2020-03-04 12:25:57,508 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,508 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,508 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls -2020-03-04 12:25:57,508 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,524 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.015628814697265625 -2020-03-04 12:25:57,524 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +2020-03-06 10:29:20,537 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,553 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,553 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,568 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:29:20,584 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,584 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,584 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: bginfo4x: '3.3.6': full_name: 'BGINFO4X for Windows 3.3.6' @@ -4354,15 +4220,15 @@ bginfo4x: locale: en_US reboot: False -2020-03-04 12:25:57,524 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,584 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,524 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,540 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,540 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,540 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls -2020-03-04 12:25:57,540 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,540 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,540 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +2020-03-06 10:29:20,600 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.015647172927856445 +2020-03-06 10:29:20,600 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,600 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,600 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:29:20,615 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,615 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,615 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: # source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe bitnami-nginxstack: '1.8.0-0': @@ -4375,15 +4241,15 @@ bitnami-nginxstack: locale: en_US reboot: False -2020-03-04 12:25:57,555 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,615 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,555 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,555 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,571 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,571 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls -2020-03-04 12:25:57,571 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,571 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,571 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +2020-03-06 10:29:20,615 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,631 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,631 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,631 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:29:20,647 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,647 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,647 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -4403,15 +4269,15 @@ bitvise: -2020-03-04 12:25:57,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,662 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,586 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.01563119888305664 -2020-03-04 12:25:57,586 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,586 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,586 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls -2020-03-04 12:25:57,586 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,586 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,602 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +2020-03-06 10:29:20,662 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,662 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,662 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,678 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:29:20,678 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,678 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,694 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available blender: @@ -4427,15 +4293,15 @@ blender: locale: en_US reboot: False -2020-03-04 12:25:57,602 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,602 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,602 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,602 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,602 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls -2020-03-04 12:25:57,618 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,618 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,618 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +2020-03-06 10:29:20,694 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,709 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,709 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,709 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:29:20,725 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,725 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,725 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: bootracer: '6.50.0.450': full_name: 'BootRacer' @@ -4448,15 +4314,15 @@ bootracer: reboot: False # download zip archive manually and unpack msi to slat master winrepo-ng directory -2020-03-04 12:25:57,618 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,725 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,618 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,633 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,633 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,633 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls -2020-03-04 12:25:57,633 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,633 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,649 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: +2020-03-06 10:29:20,741 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.01564335823059082 +2020-03-06 10:29:20,741 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,741 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,741 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:29:20,756 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,756 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,756 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: bulkrenameutility: @@ -4474,15 +4340,15 @@ bulkrenameutility: -2020-03-04 12:25:57,649 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,649 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,649 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,665 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,665 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls -2020-03-04 12:25:57,665 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,665 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,680 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +2020-03-06 10:29:20,773 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.016434669494628906 +2020-03-06 10:29:20,773 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,773 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,773 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:29:20,788 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,788 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,788 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: # just 32-bit x86 installer available @@ -4520,15 +4386,15 @@ bulk_extractor: reboot: False -2020-03-04 12:25:57,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,680 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,680 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,680 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,696 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls -2020-03-04 12:25:57,696 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,696 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,696 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: +2020-03-06 10:29:20,788 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,803 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,803 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,803 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:29:20,803 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,819 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.015648603439331055 +2020-03-06 10:29:20,819 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: ccleaner-slim: @@ -4577,15 +4443,15 @@ ccleaner-slim: reboot: False -2020-03-04 12:25:57,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,696 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,711 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,711 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,711 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls -2020-03-04 12:25:57,711 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,711 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,711 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: +2020-03-06 10:29:20,835 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.01566600799560547 +2020-03-06 10:29:20,835 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,835 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,850 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:29:20,850 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,850 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,850 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: ccleaner: @@ -4612,15 +4478,15 @@ ccleaner: reboot: False -2020-03-04 12:25:57,727 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,727 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,727 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,727 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,727 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls -2020-03-04 12:25:57,727 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,743 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.015636920928955078 -2020-03-04 12:25:57,743 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +2020-03-06 10:29:20,866 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.015643835067749023 +2020-03-06 10:29:20,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,866 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:29:20,882 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,882 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,882 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -4636,15 +4502,15 @@ cdburnerxp: locale: en_US reboot: False -2020-03-04 12:25:57,743 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,882 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,743 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,743 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,758 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,758 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls -2020-03-04 12:25:57,758 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,758 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,758 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +2020-03-06 10:29:20,882 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,897 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,897 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,897 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:29:20,897 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,913 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.01565837860107422 +2020-03-06 10:29:20,913 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: # just 32-bit x86 installer available @@ -4660,15 +4526,15 @@ cdroller: locale: en_US reboot: False -2020-03-04 12:25:57,758 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,758 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,774 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,774 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,774 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls -2020-03-04 12:25:57,774 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,774 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,790 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +2020-03-06 10:29:20,913 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:20,913 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,929 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,929 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:29:20,929 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,944 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.01565718650817871 +2020-03-06 10:29:20,960 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: check-mk-agent-msi: '1.5.0.3268': @@ -4882,15 +4748,15 @@ check-mk-agent-msi: reboot: False -2020-03-04 12:25:57,790 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,790 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,805 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,805 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,805 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls -2020-03-04 12:25:57,805 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,805 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,821 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +2020-03-06 10:29:20,976 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.015663623809814453 +2020-03-06 10:29:20,976 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:20,976 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:20,991 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:29:20,991 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:20,991 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:20,991 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: check-mk-agent: 'Not Found': full_name: 'Check_MK Agent 1.2.8b4' @@ -4904,15 +4770,15 @@ check-mk-agent: locale: en_US reboot: False -2020-03-04 12:25:57,821 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:20,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,821 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,821 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,821 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,821 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls -2020-03-04 12:25:57,821 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,821 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,838 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +2020-03-06 10:29:21,007 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.01566600799560547 +2020-03-06 10:29:21,007 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,007 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,007 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:29:21,007 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,007 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,023 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: chrome-rdp: latest: full_name: 'Chrome Remote Desktop Host' @@ -4924,15 +4790,15 @@ chrome-rdp: locale: en_US reboot: False -2020-03-04 12:25:57,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,838 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,838 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,838 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,838 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls -2020-03-04 12:25:57,838 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,852 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.014162063598632812 -2020-03-04 12:25:57,852 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +2020-03-06 10:29:21,023 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,023 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,038 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,038 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:29:21,038 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,038 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,054 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: chrome: latest: full_name: 'Google Chrome' @@ -4944,15 +4810,15 @@ chrome: locale: en_US reboot: False -2020-03-04 12:25:57,852 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,054 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,852 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,852 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,852 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,852 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls -2020-03-04 12:25:57,868 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,868 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,868 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +2020-03-06 10:29:21,054 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,070 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,070 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,070 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:29:21,070 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,085 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.01564764976501465 +2020-03-06 10:29:21,085 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: clamav: '0.99.1': @@ -4979,15 +4845,15 @@ clamav: uninstaller: 'msiexec.exe' uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' -2020-03-04 12:25:57,868 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,085 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) -2020-03-04 12:25:57,868 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,883 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,883 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,883 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls -2020-03-04 12:25:57,883 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,883 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,899 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +2020-03-06 10:29:21,085 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,101 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,101 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,101 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:29:21,101 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,116 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.015651226043701172 +2020-03-06 10:29:21,116 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: # just 32-bit x86 installer available @@ -5021,15 +4887,15 @@ clamwin: locale: en_US reboot: False -2020-03-04 12:25:57,899 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,899 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,915 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,915 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,915 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls -2020-03-04 12:25:57,915 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,915 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,915 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +2020-03-06 10:29:21,132 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,132 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,132 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,148 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:29:21,148 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,148 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,164 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: classicshell: '4.2.4': full_name: 'Classic Shell' @@ -5043,15 +4909,15 @@ classicshell: locale: en_US reboot: False -2020-03-04 12:25:57,915 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,164 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,915 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,930 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,930 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,930 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls -2020-03-04 12:25:57,930 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,946 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.015638351440429688 -2020-03-04 12:25:57,946 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +2020-03-06 10:29:21,164 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,179 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,179 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,179 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:29:21,179 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,195 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.01563572883605957 +2020-03-06 10:29:21,195 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: # just 32-bit x86 installer available @@ -5095,15 +4961,15 @@ clink: reboot: False # https://mridgers.github.io/clink/ -2020-03-04 12:25:57,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,195 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,946 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,946 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,946 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,961 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls -2020-03-04 12:25:57,961 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,961 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,961 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +2020-03-06 10:29:21,195 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,210 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,210 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,210 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:29:21,226 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,226 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,226 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: conemu: '11.160.5290': @@ -5117,15 +4983,15 @@ conemu: locale: en_US reboot: False -2020-03-04 12:25:57,961 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,242 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,961 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,961 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:57,977 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:57,977 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls -2020-03-04 12:25:57,977 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:57,977 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:57,977 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +2020-03-06 10:29:21,242 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.01564812660217285 +2020-03-06 10:29:21,242 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,257 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,257 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:29:21,273 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,273 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,289 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: cpu-z: '1.86': @@ -5371,15 +5237,15 @@ cpu-z: reboot: False -2020-03-04 12:25:57,993 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,289 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:57,993 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:57,993 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,008 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,008 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls -2020-03-04 12:25:58,008 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,024 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.01562976837158203 -2020-03-04 12:25:58,024 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +2020-03-06 10:29:21,304 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.015690326690673828 +2020-03-06 10:29:21,320 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,336 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,336 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:29:21,336 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,367 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.031311988830566406 +2020-03-06 10:29:21,367 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available curl: @@ -5443,15 +5309,15 @@ curl: # Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, # so you might not be calling the right 'curl' -2020-03-04 12:25:58,024 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,367 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,024 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,040 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,040 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,040 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls -2020-03-04 12:25:58,040 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,040 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,040 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +2020-03-06 10:29:21,383 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.015677928924560547 +2020-03-06 10:29:21,383 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,398 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,398 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:29:21,398 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,414 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.015665531158447266 +2020-03-06 10:29:21,414 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: cyberduck-cli: '1.0.0.0': full_name: 'Cyberduck CLI' @@ -5463,15 +5329,15 @@ cyberduck-cli: locale: en_US reboot: False -2020-03-04 12:25:58,040 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,414 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,040 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,055 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,055 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,055 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls -2020-03-04 12:25:58,055 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,071 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.0156404972076416 -2020-03-04 12:25:58,071 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +2020-03-06 10:29:21,414 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,430 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,430 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,430 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:29:21,445 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,461 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.015677213668823242 +2020-03-06 10:29:21,461 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: # just 32-bit x86 installer available @@ -5480,10 +5346,10 @@ OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name cyberduck-msi: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5492,10 +5358,10 @@ cyberduck-msi: - '6.9.0.29768': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5516,15 +5382,15 @@ cyberduck-msi: -2020-03-04 12:25:58,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,071 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,087 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,087 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,087 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls -2020-03-04 12:25:58,087 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,087 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,102 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +2020-03-06 10:29:21,481 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:29:21,481 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,481 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,492 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,492 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:29:21,505 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,505 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,519 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: # just 32-bit x86 installer available @@ -5533,10 +5399,10 @@ OrderedDict([('cyberduck-msi', OrderedDict([('6.8.3.29107', OrderedDict([('full_ cyberduck: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5545,10 +5411,10 @@ cyberduck: - '6.9.0.29768': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5569,15 +5435,15 @@ cyberduck: -2020-03-04 12:25:58,102 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('cyberduck', OrderedDict([('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,102 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,118 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,118 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,118 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls -2020-03-04 12:25:58,118 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,118 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,118 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +2020-03-06 10:29:21,519 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:29:21,519 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,534 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,534 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,548 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:29:21,548 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,562 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.014095306396484375 +2020-03-06 10:29:21,562 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: # just 32-bit x86 installer available @@ -5602,15 +5468,15 @@ defraggler: locale: en_US reboot: False -2020-03-04 12:25:58,133 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,133 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,133 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,133 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,133 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls -2020-03-04 12:25:58,149 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,149 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,149 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +2020-03-06 10:29:21,576 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.014099359512329102 +2020-03-06 10:29:21,576 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,576 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,590 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:29:21,590 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,604 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.014087915420532227 +2020-03-06 10:29:21,604 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: dotnet: '4.6.01590': full_name: 'Microsoft .NET Framework 4.6.2' @@ -5657,15 +5523,15 @@ dotnet: locale: en_US reboot: False -2020-03-04 12:25:58,165 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,618 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,165 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.016461610794067383 -2020-03-04 12:25:58,165 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,165 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,165 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls -2020-03-04 12:25:58,165 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,180 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.014803409576416016 -2020-03-04 12:25:58,180 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +2020-03-06 10:29:21,618 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,632 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,632 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,632 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:29:21,632 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,646 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.014084339141845703 +2020-03-06 10:29:21,646 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: # just 32-bit x86 installer available @@ -5686,15 +5552,15 @@ dropbox: locale: en_US reboot: False -2020-03-04 12:25:58,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,660 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,180 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,196 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,196 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,196 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls -2020-03-04 12:25:58,196 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,212 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.01563739776611328 -2020-03-04 12:25:58,212 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +2020-03-06 10:29:21,660 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,660 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,660 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,660 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:29:21,674 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,674 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,674 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: duplicati: '1.3.4': @@ -5711,15 +5577,15 @@ duplicati: cache_dir: False use_scheduler: False -2020-03-04 12:25:58,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) -2020-03-04 12:25:58,212 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,212 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,212 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,212 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls -2020-03-04 12:25:58,212 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,227 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.015617847442626953 -2020-03-04 12:25:58,227 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +2020-03-06 10:29:21,689 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,689 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,704 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,704 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:29:21,704 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,704 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:21,720 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available dvdstyler: @@ -5735,15 +5601,15 @@ dvdstyler: locale: en_US reboot: False -2020-03-04 12:25:58,227 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,227 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,243 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,243 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,243 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls -2020-03-04 12:25:58,243 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,258 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.01561427116394043 -2020-03-04 12:25:58,258 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +2020-03-06 10:29:21,720 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,720 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,735 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,735 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:29:21,735 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,751 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.015663862228393555 +2020-03-06 10:29:21,767 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: echo-desktop: '3.0.4': full_name: @@ -5755,15 +5621,15 @@ echo-desktop: uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" -2020-03-04 12:25:58,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) -2020-03-04 12:25:58,258 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,274 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,274 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,274 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls -2020-03-04 12:25:58,274 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,290 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0156404972076416 -2020-03-04 12:25:58,290 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +2020-03-06 10:29:21,767 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,767 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,783 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,783 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:29:21,783 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,798 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.014879226684570312 +2020-03-06 10:29:21,798 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: eea: # '5.0.2260.1': # full_name: 'ESET Endpoint Antivirus' @@ -5795,15 +5661,15 @@ eea: # download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ # for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB -2020-03-04 12:25:58,290 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) -2020-03-04 12:25:58,290 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,290 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,305 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,305 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls -2020-03-04 12:25:58,305 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,305 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,305 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +2020-03-06 10:29:21,798 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,798 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,814 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,814 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:29:21,814 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,829 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.01564788818359375 +2020-03-06 10:29:21,829 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: emet: '5.5': full_name: 'EMET 5.5' @@ -5815,15 +5681,15 @@ emet: locale: en_US reboot: False -2020-03-04 12:25:58,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,321 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,321 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,321 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,321 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls -2020-03-04 12:25:58,337 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,337 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,337 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +2020-03-06 10:29:21,829 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,845 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,845 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,845 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:29:21,861 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,861 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.01567244529724121 +2020-03-06 10:29:21,861 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: # just 32-bit x86 installer available @@ -5840,15 +5706,15 @@ emsisoft-anti-malware: locale: en_US reboot: False -2020-03-04 12:25:58,337 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,352 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.01562809944152832 -2020-03-04 12:25:58,352 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,352 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,352 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls -2020-03-04 12:25:58,352 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,368 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.01563572883605957 -2020-03-04 12:25:58,368 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: +2020-03-06 10:29:21,876 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:21,892 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,892 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,892 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:29:21,892 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,908 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.01565718650817871 +2020-03-06 10:29:21,908 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: eraser: @@ -5874,15 +5740,15 @@ eraser: reboot: False -2020-03-04 12:25:58,368 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,923 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,383 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.015618562698364258 -2020-03-04 12:25:58,383 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,383 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,383 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls -2020-03-04 12:25:58,383 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,399 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.015629053115844727 -2020-03-04 12:25:58,399 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +2020-03-06 10:29:21,923 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.01565384864807129 +2020-03-06 10:29:21,923 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,939 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,939 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:29:21,939 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:21,955 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.015650033950805664 +2020-03-06 10:29:21,955 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: evernote: '6.9.7.6770': full_name: 'Evernote v. 6.9.7' @@ -5912,15 +5778,15 @@ evernote: locale: en_US reboot: False -2020-03-04 12:25:58,399 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:21,955 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,399 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,399 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,415 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,415 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls -2020-03-04 12:25:58,415 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,430 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.015625953674316406 -2020-03-04 12:25:58,430 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +2020-03-06 10:29:21,970 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.01566171646118164 +2020-03-06 10:29:21,986 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:21,986 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:21,986 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:29:21,986 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,002 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.015673160552978516 +2020-03-06 10:29:22,002 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: # just 32-bit x86 installer available @@ -5936,15 +5802,15 @@ fiddler: locale: en_US reboot: False -2020-03-04 12:25:58,430 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,002 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,430 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,430 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,430 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,430 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls -2020-03-04 12:25:58,446 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,446 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,446 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +2020-03-06 10:29:22,002 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:22,017 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,017 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,017 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:29:22,033 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,033 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:22,033 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: # just 32-bit x86 installer available @@ -5962,15 +5828,15 @@ filehippo-app-manager: reboot: False # download manually and place on master salt://win/repo-ng/filehippo-app-manager -2020-03-04 12:25:58,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,033 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,446 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,446 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,462 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,462 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls -2020-03-04 12:25:58,462 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,477 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.015621423721313477 -2020-03-04 12:25:58,477 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: +2020-03-06 10:29:22,049 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.015659809112548828 +2020-03-06 10:29:22,049 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,064 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,064 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:29:22,064 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,080 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.0156705379486084 +2020-03-06 10:29:22,080 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: filezilla: @@ -6744,15 +6610,15 @@ filezilla: reboot: False -2020-03-04 12:25:58,493 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,111 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,493 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.015635251998901367 -2020-03-04 12:25:58,508 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,508 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,508 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls -2020-03-04 12:25:58,508 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,524 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.01562809944152832 -2020-03-04 12:25:58,524 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +2020-03-06 10:29:22,127 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.03131365776062012 +2020-03-06 10:29:22,127 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,127 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,143 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:29:22,143 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,158 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.015679359436035156 +2020-03-06 10:29:22,158 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: firefox-esr_x64: '68.5.0': @@ -7416,15 +7282,15 @@ firefox-esr_x64: reboot: False -2020-03-04 12:25:58,555 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,555 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.015635251998901367 -2020-03-04 12:25:58,555 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,555 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,555 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls -2020-03-04 12:25:58,571 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,571 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,588 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +2020-03-06 10:29:22,190 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.03130388259887695 +2020-03-06 10:29:22,190 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,190 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,205 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:29:22,221 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,237 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.015604257583618164 +2020-03-06 10:29:22,252 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: firefox-esr_x86: @@ -8201,15 +8067,15 @@ firefox-esr_x86: reboot: False -2020-03-04 12:25:58,602 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,283 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,602 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.014744758605957031 -2020-03-04 12:25:58,602 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,602 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,602 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls -2020-03-04 12:25:58,618 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,633 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.01561737060546875 -2020-03-04 12:25:58,633 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +2020-03-06 10:29:22,283 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015650033950805664 +2020-03-06 10:29:22,299 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,299 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,299 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:29:22,315 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,315 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:22,331 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: firefox_x64: '73.0': @@ -9193,15 +9059,15 @@ firefox_x64: reboot: False -2020-03-04 12:25:58,665 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,665 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.03126645088195801 -2020-03-04 12:25:58,665 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,680 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,680 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls -2020-03-04 12:25:58,680 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,696 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.015627622604370117 -2020-03-04 12:25:58,696 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +2020-03-06 10:29:22,393 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.04697084426879883 +2020-03-06 10:29:22,424 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,424 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,424 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:29:22,440 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,456 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.01565408706665039 +2020-03-06 10:29:22,471 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: firefox_x86: @@ -10548,15 +10414,15 @@ firefox_x86: reboot: False -2020-03-04 12:25:58,727 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,743 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.031243085861206055 -2020-03-04 12:25:58,743 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,759 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,759 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls -2020-03-04 12:25:58,759 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,759 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,774 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +2020-03-06 10:29:22,518 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.04696941375732422 +2020-03-06 10:29:22,534 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,534 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,534 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:29:22,534 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,534 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:22,550 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: # just 32-bit x86 installer available @@ -10573,15 +10439,15 @@ gedit: locale: en_US reboot: False -2020-03-04 12:25:58,774 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,550 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,774 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,774 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,774 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,790 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls -2020-03-04 12:25:58,790 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,790 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,790 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +2020-03-06 10:29:22,550 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:22,550 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,550 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,550 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:29:22,565 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,565 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:22,565 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: # just 32-bit x86 installer available # Gimp installs into %ProgramFiles on either cpu arch gimp: @@ -10627,15 +10493,15 @@ gimp: restart: False -2020-03-04 12:25:58,805 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) -2020-03-04 12:25:58,805 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.015619993209838867 -2020-03-04 12:25:58,805 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,805 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,805 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls -2020-03-04 12:25:58,821 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,821 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,821 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +2020-03-06 10:29:22,581 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0156402587890625 +2020-03-06 10:29:22,581 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,581 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,581 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:29:22,581 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,597 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:22,597 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: git-extensions: '2.48.05': full_name: 'Git Extensions 2.48.05' @@ -10656,15 +10522,15 @@ git-extensions: locale: en_US reboot: False -2020-03-04 12:25:58,821 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,597 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,821 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,821 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,821 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,837 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls -2020-03-04 12:25:58,837 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,852 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.015534639358520508 -2020-03-04 12:25:58,852 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +2020-03-06 10:29:22,597 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:22,597 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,597 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,612 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:29:22,612 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,628 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.015655994415283203 +2020-03-06 10:29:22,738 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available for git @@ -11503,15 +11369,15 @@ msysgit: locale: en_US reboot: False -2020-03-04 12:25:58,868 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,753 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,868 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015621423721313477 -2020-03-04 12:25:58,868 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,884 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,884 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls -2020-03-04 12:25:58,884 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,884 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,884 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +2020-03-06 10:29:22,753 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.01564645767211914 +2020-03-06 10:29:22,753 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,769 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,769 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:29:22,769 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,769 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:22,784 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: # just 32-bit x86 installer available @@ -11536,15 +11402,15 @@ glarysoft-absolute-uninstaller: locale: en_US reboot: False -2020-03-04 12:25:58,899 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,899 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,899 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,899 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,899 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls -2020-03-04 12:25:58,915 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,915 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:58,915 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +2020-03-06 10:29:22,784 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:22,800 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,800 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,800 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:29:22,800 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,816 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.015652179718017578 +2020-03-06 10:29:22,879 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: # just 32-bit x86 installer available @@ -11561,15 +11427,15 @@ gnucash: reboot: False -2020-03-04 12:25:58,915 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,895 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:58,915 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:58,931 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:58,931 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:58,931 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls -2020-03-04 12:25:58,931 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:58,946 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015532970428466797 -2020-03-04 12:25:58,962 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +2020-03-06 10:29:22,895 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:22,895 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,895 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,895 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:29:22,910 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,925 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015654563903808594 +2020-03-06 10:29:22,941 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: # "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. # See https://golang.org/ @@ -12792,15 +12658,15 @@ golang: reboot: False -2020-03-04 12:25:58,977 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,957 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,009 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.046884775161743164 -2020-03-04 12:25:59,009 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,009 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,024 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls -2020-03-04 12:25:59,024 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,024 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,024 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +2020-03-06 10:29:22,972 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.03130650520324707 +2020-03-06 10:29:22,972 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:22,972 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:22,988 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:29:22,988 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:22,988 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:22,988 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: goodsync: '9.9.46.6': full_name: 'GoodSync' @@ -12812,15 +12678,15 @@ goodsync: locale: en_US reboot: False -2020-03-04 12:25:59,024 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:22,988 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,040 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.015626907348632812 -2020-03-04 12:25:59,040 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,040 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,040 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls -2020-03-04 12:25:59,055 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,055 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,055 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +2020-03-06 10:29:23,004 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.015657663345336914 +2020-03-06 10:29:23,004 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,004 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,004 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:29:23,004 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,019 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.01565408706665039 +2020-03-06 10:29:23,019 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: # just 32-bit x86 installer available @@ -12838,15 +12704,15 @@ gow: # Gow - GNU on Windows - The lightweight alternative to Cygwin # https://github.com/bmatzelle/gow/wiki -2020-03-04 12:25:59,055 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,019 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,071 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.015621662139892578 -2020-03-04 12:25:59,071 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,071 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,071 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls -2020-03-04 12:25:59,087 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,087 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,087 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +2020-03-06 10:29:23,019 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,035 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,035 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,035 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:29:23,035 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,035 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,051 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: # just 32-bit x86 installer available @@ -12920,15 +12786,15 @@ gpg4win-light: # https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 # -2020-03-04 12:25:59,087 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,102 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.015635251998901367 -2020-03-04 12:25:59,102 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,102 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,102 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls -2020-03-04 12:25:59,102 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,118 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.015620231628417969 -2020-03-04 12:25:59,118 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +2020-03-06 10:29:23,051 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,051 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,066 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,066 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:29:23,066 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,066 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,082 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: # just 32-bit x86 installer available @@ -12996,15 +12862,15 @@ gpg4win-vanilla: reboot: False -2020-03-04 12:25:59,118 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,082 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,118 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,118 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,118 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,134 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls -2020-03-04 12:25:59,134 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,134 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,134 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: +2020-03-06 10:29:23,082 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,082 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,082 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,098 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:29:23,098 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,098 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,098 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: graylog-collector-sidecar: @@ -13080,15 +12946,15 @@ graylog-collector-sidecar: reboot: False -2020-03-04 12:25:59,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,098 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,134 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,149 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,149 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,149 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls -2020-03-04 12:25:59,149 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,165 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.015637636184692383 -2020-03-04 12:25:59,165 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +2020-03-06 10:29:23,113 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.015651464462280273 +2020-03-06 10:29:23,113 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,113 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,113 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:29:23,113 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,129 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.01566600799560547 +2020-03-06 10:29:23,129 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: grepwin: '1.6.682': @@ -13135,15 +13001,15 @@ grepwin: locale: en_US reboot: False -2020-03-04 12:25:59,165 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,165 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,165 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,165 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,165 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls -2020-03-04 12:25:59,181 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,181 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,181 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +2020-03-06 10:29:23,129 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,145 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,145 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,145 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:29:23,145 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,145 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,160 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: # just 32-bit x86 installer available @@ -13159,15 +13025,15 @@ gvim: locale: en_US reboot: False -2020-03-04 12:25:59,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,160 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,181 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,181 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,181 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,181 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls -2020-03-04 12:25:59,196 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,196 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,196 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +2020-03-06 10:29:23,160 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,160 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,160 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,160 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:29:23,176 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,176 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,176 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available # Source: https://handbrake.fr @@ -13184,15 +13050,15 @@ handbrake: locale: en_US reboot: False -2020-03-04 12:25:59,196 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,196 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,196 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,196 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,196 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls -2020-03-04 12:25:59,212 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,212 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,212 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +2020-03-06 10:29:23,176 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,192 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,192 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,192 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:29:23,192 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,208 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.01656365394592285 +2020-03-06 10:29:23,208 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: hipchat: @@ -13206,15 +13072,15 @@ hipchat: msiexec: False reboot: False -2020-03-04 12:25:59,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:25:59,227 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.015658855438232422 -2020-03-04 12:25:59,227 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,248 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,248 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls -2020-03-04 12:25:59,248 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,248 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,259 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +2020-03-06 10:29:23,208 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,208 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,223 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,223 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:29:23,223 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,223 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,223 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: hostsfileeditor: '1.2.0': @@ -13228,15 +13094,15 @@ hostsfileeditor: locale: en_US reboot: False -2020-03-04 12:25:59,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,223 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,259 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,259 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,259 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,259 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls -2020-03-04 12:25:59,259 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,274 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.015622377395629883 -2020-03-04 12:25:59,274 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: +2020-03-06 10:29:23,238 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.01566028594970703 +2020-03-06 10:29:23,238 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,238 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,238 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:29:23,238 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,254 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.01566290855407715 +2020-03-06 10:29:23,254 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: hwinfo: '5.70': @@ -13251,15 +13117,15 @@ hwinfo: locale: en_US reboot: False -2020-03-04 12:25:59,274 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,254 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,274 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,274 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,274 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,274 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls -2020-03-04 12:25:59,290 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,290 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,290 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +2020-03-06 10:29:23,254 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,254 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,270 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,270 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:29:23,270 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,270 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,270 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: # -*- coding: utf-8 -*- # vim: ft=sls ice: @@ -13273,15 +13139,15 @@ ice: locale: en_US reboot: False -2020-03-04 12:25:59,290 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,270 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,290 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,305 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,305 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,305 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls -2020-03-04 12:25:59,305 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,305 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,305 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +2020-03-06 10:29:23,285 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.015650510787963867 +2020-03-06 10:29:23,285 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,285 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,285 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:29:23,285 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,302 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.01649785041809082 +2020-03-06 10:29:23,302 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: # just 32-bit x86 installer available @@ -13297,15 +13163,15 @@ icecast: locale: en_US reboot: False -2020-03-04 12:25:59,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,321 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,321 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,321 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,321 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls -2020-03-04 12:25:59,337 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,337 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,337 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +2020-03-06 10:29:23,302 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,302 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,317 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,317 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:29:23,317 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,317 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,317 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: icloud: '7.3.0.20': full_name: iCloud @@ -13317,15 +13183,15 @@ icloud: locale: en_US reboot: False -2020-03-04 12:25:59,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,317 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,352 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,352 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,352 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,352 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls -2020-03-04 12:25:59,352 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,368 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.01562643051147461 -2020-03-04 12:25:59,368 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +2020-03-06 10:29:23,317 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,332 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,332 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,332 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:29:23,332 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,349 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.016449451446533203 +2020-03-06 10:29:23,349 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: iismediaservices: '4.1.0938.454': full_name: 'IIS Media Services 4.1' @@ -13361,15 +13227,15 @@ iismediaservices: locale: en_US reboot: False -2020-03-04 12:25:59,368 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,368 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,368 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,368 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,384 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls -2020-03-04 12:25:59,384 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,384 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,384 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +2020-03-06 10:29:23,349 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,349 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,364 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,364 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:29:23,364 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,364 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,364 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: influx-capacitor: '1.0.89': full_name: 'Influx Capacitor' @@ -13381,15 +13247,15 @@ influx-capacitor: locale: en_US reboot: False -2020-03-04 12:25:59,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,379 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,384 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,384 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,399 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,399 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls -2020-03-04 12:25:59,399 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,399 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,399 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +2020-03-06 10:29:23,379 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,379 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,379 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,379 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:29:23,395 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,395 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,395 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: inkscape: '0.91': full_name: 'Inkscape 0.91' @@ -13403,15 +13269,15 @@ inkscape: locale: en_US reboot: False -2020-03-04 12:25:59,415 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,395 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,415 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,415 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,431 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,431 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls -2020-03-04 12:25:59,431 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,446 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.01562643051147461 -2020-03-04 12:25:59,446 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +2020-03-06 10:29:23,395 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,411 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,411 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,411 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:29:23,411 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,426 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.015654563903808594 +2020-03-06 10:29:23,426 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: # just 32-bit x86 installer available @@ -13429,15 +13295,15 @@ intellij-community: reboot: False -2020-03-04 12:25:59,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,426 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,446 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,446 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,462 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,462 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls -2020-03-04 12:25:59,462 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,462 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,462 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +2020-03-06 10:29:23,426 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,426 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,442 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,442 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:29:23,442 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,442 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,458 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: # just 32-bit x86 installer available @@ -13455,15 +13321,15 @@ intellij-ultimate: reboot: False -2020-03-04 12:25:59,462 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,477 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.015630483627319336 -2020-03-04 12:25:59,477 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,477 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,477 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls -2020-03-04 12:25:59,477 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,477 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,493 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +2020-03-06 10:29:23,458 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,458 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,458 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,458 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:29:23,458 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,473 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.01566028594970703 +2020-03-06 10:29:23,473 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: internet-evidence-finder: '6.2.3.0001': full_name: 'Internet Evidence Finder' @@ -13475,15 +13341,15 @@ internet-evidence-finder: locale: en_US reboot: False -2020-03-04 12:25:59,493 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,473 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,493 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,493 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,493 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,509 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls -2020-03-04 12:25:59,509 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,509 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,509 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +2020-03-06 10:29:23,473 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,489 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,489 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,489 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:29:23,489 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,505 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.015658140182495117 +2020-03-06 10:29:23,505 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: irfanview-plugins: '4.42': @@ -13498,15 +13364,15 @@ irfanview-plugins: locale: en_US reboot: False -2020-03-04 12:25:59,524 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,505 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,524 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,524 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,524 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,524 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls -2020-03-04 12:25:59,524 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,540 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.015625953674316406 -2020-03-04 12:25:59,540 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +2020-03-06 10:29:23,505 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,505 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,505 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,520 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:29:23,520 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,520 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,520 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available irfanview: @@ -13533,15 +13399,15 @@ irfanview: # assocallusers: if used, set associations for all users (Windows XP only) # ini: if used, set custom INI file folder (system environment variables are allowed) -2020-03-04 12:25:59,540 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,520 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,540 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,540 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,556 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,556 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls -2020-03-04 12:25:59,556 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,556 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,556 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +2020-03-06 10:29:23,536 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.015661001205444336 +2020-03-06 10:29:23,536 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,536 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,536 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:29:23,536 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,536 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,552 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: isapirewrite-lite: '3.1.0112': full_name: 'Helicon ISAPI_Rewrite 3 Lite' @@ -13555,15 +13421,15 @@ isapirewrite-lite: locale: en_US reboot: False -2020-03-04 12:25:59,556 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,556 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,571 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,571 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,571 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls -2020-03-04 12:25:59,571 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,571 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,571 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +2020-03-06 10:29:23,552 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,552 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,552 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,567 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:29:23,567 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,567 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,567 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available itunes: '12.8.0.150': @@ -13592,15 +13458,15 @@ itunes: locale: en_US reboot: False -2020-03-04 12:25:59,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,567 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,587 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.015618085861206055 -2020-03-04 12:25:59,587 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,587 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,587 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls -2020-03-04 12:25:59,587 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,587 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,587 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +2020-03-06 10:29:23,583 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.015674352645874023 +2020-03-06 10:29:23,583 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,583 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,583 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:29:23,583 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,599 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.015635967254638672 +2020-03-06 10:29:23,599 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way @@ -13623,15 +13489,15 @@ jdk8: locale: en_US reboot: False -2020-03-04 12:25:59,587 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,599 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,602 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.01563882827758789 -2020-03-04 12:25:59,602 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,602 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,602 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls -2020-03-04 12:25:59,602 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,602 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,602 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +2020-03-06 10:29:23,599 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,614 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,614 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,614 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:29:23,614 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,630 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.015660524368286133 +2020-03-06 10:29:23,630 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available jre: @@ -13650,15 +13516,15 @@ jre: # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way -2020-03-04 12:25:59,618 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,630 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,618 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,618 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,618 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,618 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls -2020-03-04 12:25:59,618 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,635 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.016626834869384766 -2020-03-04 12:25:59,635 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +2020-03-06 10:29:23,630 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,630 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,646 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,646 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:29:23,646 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,662 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.016596078872680664 +2020-03-06 10:29:23,662 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://www.java.com/en/download/manual.jsp # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... @@ -13738,15 +13604,15 @@ jre8: -2020-03-04 12:25:59,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,662 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,635 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,635 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,635 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,649 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls -2020-03-04 12:25:59,649 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,649 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,649 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +2020-03-06 10:29:23,662 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,677 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,677 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,677 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:29:23,692 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,692 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,692 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: jungledisk-server-management: '3.23.0.2': full_name: 'Jungle Disk Server Management' @@ -13760,15 +13626,15 @@ jungledisk-server-management: locale: en_US reboot: False -2020-03-04 12:25:59,649 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,692 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,649 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,649 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,649 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,649 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls -2020-03-04 12:25:59,665 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,665 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,665 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +2020-03-06 10:29:23,692 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,708 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,708 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,708 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:29:23,708 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,724 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.01555490493774414 +2020-03-06 10:29:23,724 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: jungledisk-server: '3.23.0.2': full_name: 'Jungle Disk Server' @@ -13782,15 +13648,15 @@ jungledisk-server: locale: en_US reboot: False -2020-03-04 12:25:59,665 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,665 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,665 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,665 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,665 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls -2020-03-04 12:25:59,665 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,679 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.013967037200927734 -2020-03-04 12:25:59,679 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +2020-03-06 10:29:23,724 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,739 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,739 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,739 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:29:23,739 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,755 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.01567244529724121 +2020-03-06 10:29:23,755 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: jungledisk-workgroup: '3.23.0.2': full_name: 'Jungle Disk Workgroup' @@ -13804,15 +13670,15 @@ jungledisk-workgroup: locale: en_US reboot: False -2020-03-04 12:25:59,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,679 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,679 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,679 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,679 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls -2020-03-04 12:25:59,679 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,693 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.014064311981201172 -2020-03-04 12:25:59,693 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +2020-03-06 10:29:23,755 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,755 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,755 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,772 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:29:23,772 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,772 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,772 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: kdiff3: 'Not Found': full_name: 'KDiff3 (remove only)' @@ -13826,15 +13692,15 @@ kdiff3: locale: en_US reboot: False -2020-03-04 12:25:59,693 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,786 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,693 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,693 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls -2020-03-04 12:25:59,693 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,708 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.014938831329345703 -2020-03-04 12:25:59,708 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +2020-03-06 10:29:23,786 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.01483607292175293 +2020-03-06 10:29:23,786 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,786 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,786 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:29:23,802 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,802 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,802 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: # Keepass 2.x installation from https://keepass.info/ # to keep the versioning in the format of "2..minor", two seperate version arrays are created. @@ -14098,15 +13964,15 @@ keepass-2x: locale: en_US reboot: False -2020-03-04 12:25:59,708 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,708 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,721 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,721 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,721 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls -2020-03-04 12:25:59,721 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,721 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,721 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +2020-03-06 10:29:23,818 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,818 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,833 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,833 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:29:23,833 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,833 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,833 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: keepass: '1.35.0': full_name: 'KeePass 1.35' @@ -14172,15 +14038,15 @@ keepass: locale: en_US reboot: False -2020-03-04 12:25:59,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,849 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,721 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,735 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,735 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,735 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls -2020-03-04 12:25:59,735 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,735 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,735 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +2020-03-06 10:29:23,849 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.01564812660217285 +2020-03-06 10:29:23,849 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,849 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,849 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:29:23,865 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,865 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,865 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: # just 32-bit x86 installer available @@ -14198,15 +14064,15 @@ lastpass: locale: en_US reboot: False -2020-03-04 12:25:59,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,865 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,735 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,749 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,749 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,749 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls -2020-03-04 12:25:59,749 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,749 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,749 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +2020-03-06 10:29:23,865 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,880 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,880 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,880 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:29:23,880 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,896 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.015665054321289062 +2020-03-06 10:29:23,896 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: # NOTE: If the lazarus installation directory exists the installation will # pop up a dialog box. This will cause the minion to hang because it # is waiting for the user to click continue on a dialog box that will @@ -14240,15 +14106,15 @@ lazarus: uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES -2020-03-04 12:25:59,763 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,896 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) -2020-03-04 12:25:59,763 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,763 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,763 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,763 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls -2020-03-04 12:25:59,763 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,763 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,777 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +2020-03-06 10:29:23,912 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.015639781951904297 +2020-03-06 10:29:23,912 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,912 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,912 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:29:23,912 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,927 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.015653371810913086 +2020-03-06 10:29:23,927 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: libreoffice: '5.3.5.2': @@ -14324,15 +14190,15 @@ libreoffice: reboot: False -2020-03-04 12:25:59,777 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,777 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,777 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,777 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,777 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls -2020-03-04 12:25:59,777 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,777 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,792 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +2020-03-06 10:29:23,943 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.01565837860107422 +2020-03-06 10:29:23,943 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,943 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,943 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:29:23,959 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,959 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:23,959 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: logparser: '2.2.10': full_name: 'Log Parser 2.2' @@ -14344,15 +14210,15 @@ logparser: locale: en_US reboot: False -2020-03-04 12:25:59,792 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:23,959 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,792 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,792 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,792 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,792 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls -2020-03-04 12:25:59,792 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,792 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,806 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +2020-03-06 10:29:23,959 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:23,975 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:23,990 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:23,990 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:29:23,990 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:23,990 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,006 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: # just 32-bit x86 installer available @@ -14379,15 +14245,15 @@ maas360bootanalyzer: reboot: False # download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory -2020-03-04 12:25:59,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,006 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,806 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,806 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,806 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,806 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls -2020-03-04 12:25:59,806 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,806 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,820 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +2020-03-06 10:29:24,006 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,006 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,006 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,021 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:29:24,021 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,021 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,021 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: # just 32-bit x86 installer available @@ -14404,15 +14270,15 @@ malwarebytes: locale: en_US reboot: Falsea -2020-03-04 12:25:59,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,037 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) -2020-03-04 12:25:59,820 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,820 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,820 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,820 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls -2020-03-04 12:25:59,820 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,849 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.02891397476196289 -2020-03-04 12:25:59,849 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +2020-03-06 10:29:24,037 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,037 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,037 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,037 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:29:24,037 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,068 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.03134870529174805 +2020-03-06 10:29:24,068 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: #MariaDB https://downloads.mariadb.org/mariadb/+releases/ #only stable versions are listed @@ -14426,398 +14292,330 @@ OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_na mariadb: - '10.0.38.0': + '10.1.38.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.37.0': + '10.1.37.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.36.0': + '10.1.36.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.35.0': + '10.1.35.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.34.0': + '10.1.34.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.33.0': + '10.1.33.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.32.0': + '10.1.32.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.31.0': + '10.1.31.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.30.0': + '10.1.30.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.29.0': + '10.1.29.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.28.0': + '10.1.28.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.27.0': + '10.1.27.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.26.0': + '10.1.26.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.25.0': + '10.1.25.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.24.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.23.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.22.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.21.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.20.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.19.0': - - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - - install_flags: '/qn /norestart' - uninstall_flags: '/qn /norestart' - msiexec: True - reboot: False - - '10.0.18.0': + '10.1.24.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.17.0': + '10.1.23.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.16.0': + '10.1.22.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.15.0': + '10.1.21.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.14.0': + '10.1.20.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.13.0': + '10.1.19.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.12.0': + '10.1.18.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.11.0': + '10.1.17.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.10.0': + '10.1.16.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.3.13.0': + '10.1.14.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.12.0': + '10.1.13.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.11.0': + '10.1.12.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.10.0': + '10.1.11.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.9.0': + '10.1.10.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.8.0': + '10.1.9.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.7.0': + '10.1.8.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15158,519 +14956,587 @@ mariadb: - '10.1.38.0': + '10.2.22.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.37.0': + '10.2.21.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.36.0': + '10.2.20.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.35.0': + '10.2.19.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.34.0': + '10.2.18.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.33.0': + '10.2.17.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.32.0': + '10.2.16.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.31.0': + '10.2.15.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.30.0': + '10.2.14.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.29.0': + '10.2.13.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.28.0': + '10.2.12.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.27.0': + '10.2.11.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.26.0': + '10.2.10.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.25.0': + '10.2.9.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.24.0': + '10.2.8.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.23.0': + '10.2.7.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.22.0': + '10.2.6.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.21.0': + + + '10.3.13.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.20.0': + '10.3.12.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.19.0': + '10.3.11.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.18.0': + '10.3.10.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.17.0': + '10.3.9.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.16.0': + '10.3.8.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.14.0': + '10.3.7.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.13.0': + + + '10.0.38.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.12.0': + '10.0.37.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.11.0': + '10.0.36.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.10.0': + '10.0.35.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.9.0': + '10.0.34.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.8.0': + '10.0.33.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.2.22.0': + '10.0.32.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.21.0': + '10.0.31.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.20.0': + '10.0.30.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.19.0': + '10.0.29.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.18.0': + '10.0.28.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.17.0': + '10.0.27.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.16.0': + '10.0.26.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.15.0': + '10.0.25.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.14.0': - - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + '10.0.24.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.13.0': + '10.0.23.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.12.0': + '10.0.22.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.11.0': + '10.0.21.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.10.0': + '10.0.20.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.9.0': + '10.0.19.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.8.0': + '10.0.18.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.7.0': + '10.0.17.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.6.0': + '10.0.16.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.15.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.14.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.13.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.12.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.11.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + + install_flags: '/qn /norestart' + uninstall_flags: '/qn /norestart' + msiexec: True + reboot: False + + '10.0.10.0': + + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15679,15 +15545,15 @@ mariadb: -2020-03-04 12:25:59,862 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:25:59,862 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.01328134536743164 -2020-03-04 12:25:59,862 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,862 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,862 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls -2020-03-04 12:25:59,876 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,876 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,876 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +2020-03-06 10:29:24,099 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:29:24,099 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.015647172927856445 +2020-03-06 10:29:24,115 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,115 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,115 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:29:24,115 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,131 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.01565837860107422 +2020-03-06 10:29:24,131 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: mercurial: '3.1.1': @@ -15701,15 +15567,15 @@ mercurial: locale: en_US reboot: False -2020-03-04 12:25:59,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,131 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,876 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,876 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,876 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,876 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls -2020-03-04 12:25:59,890 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,890 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,890 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +2020-03-06 10:29:24,131 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,146 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,146 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,146 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:29:24,162 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,162 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,162 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: messageanalyzer: '4.0.7551.0': full_name: 'Microsoft Message Analyzer' @@ -15724,15 +15590,15 @@ messageanalyzer: locale: en_US reboot: False -2020-03-04 12:25:59,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,162 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,890 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,890 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,890 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,890 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls -2020-03-04 12:25:59,904 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,904 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,904 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +2020-03-06 10:29:24,162 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,178 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,178 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,178 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:29:24,178 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,178 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,193 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: microsoft-build-tools: '14.0.23107': @@ -15746,15 +15612,15 @@ microsoft-build-tools: locale: en_US reboot: False -2020-03-04 12:25:59,904 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,193 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,904 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,904 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,904 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,904 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls -2020-03-04 12:25:59,904 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,918 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.014141559600830078 -2020-03-04 12:25:59,918 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +2020-03-06 10:29:24,193 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,193 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,193 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,193 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:29:24,209 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,209 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,209 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: mikogo: '5.3.0': full_name: 'Mikogo' @@ -15766,15 +15632,15 @@ mikogo: locale: en_US reboot: False -2020-03-04 12:25:59,918 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,209 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,918 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,918 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,918 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,918 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls -2020-03-04 12:25:59,918 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,918 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,934 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +2020-03-06 10:29:24,209 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,209 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,225 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,225 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:29:24,225 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,225 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,225 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: miktex-basic: '2.9': full_name: 'MiKTeX 2.9' @@ -15791,15 +15657,15 @@ miktex-basic: locale: en_US reboot: False -2020-03-04 12:25:59,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,934 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,934 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,934 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,934 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls -2020-03-04 12:25:59,934 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,934 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,934 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +2020-03-06 10:29:24,240 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,240 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,240 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,240 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:29:24,240 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,256 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.015651702880859375 +2020-03-06 10:29:24,256 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: mongodb: '3.3.5': full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' @@ -15820,15 +15686,15 @@ mongodb: locale: en_US reboot: False -2020-03-04 12:25:59,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,256 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,949 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.01563429832458496 -2020-03-04 12:25:59,949 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,949 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,949 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls -2020-03-04 12:25:59,949 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,949 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,949 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +2020-03-06 10:29:24,256 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,256 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,272 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,272 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:29:24,272 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,272 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,272 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ms-mbsa: '2.3.2211': @@ -15843,15 +15709,15 @@ ms-mbsa: locale: en_US reboot: False -2020-03-04 12:25:59,949 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,287 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.015619993209838867 -2020-03-04 12:25:59,965 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,965 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,965 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls -2020-03-04 12:25:59,965 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,965 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +2020-03-06 10:29:24,287 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,287 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,287 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,287 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:29:24,287 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,303 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.01565718650817871 +2020-03-06 10:29:24,303 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: ms-vcpp-2005-atl-redist_x64: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15863,15 +15729,15 @@ ms-vcpp-2005-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:25:59,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,303 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,981 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls -2020-03-04 12:25:59,981 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,981 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,981 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +2020-03-06 10:29:24,303 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,303 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,303 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,319 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:29:24,319 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,319 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,319 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: ms-vcpp-2005-atl-redist_x86: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15883,15 +15749,15 @@ ms-vcpp-2005-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:25:59,981 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,319 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,981 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,996 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,996 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls -2020-03-04 12:25:59,996 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:25:59,996 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:25:59,996 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +2020-03-06 10:29:24,319 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,334 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,334 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,334 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:29:24,334 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,334 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,334 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: ms-vcpp-2005-redist_x64: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15903,15 +15769,15 @@ ms-vcpp-2005-redist_x64: locale: en_US reboot: False -2020-03-04 12:25:59,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,350 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:25:59,996 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:25:59,996 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:25:59,996 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:25:59,996 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls -2020-03-04 12:25:59,996 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,012 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.01562786102294922 -2020-03-04 12:26:00,012 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +2020-03-06 10:29:24,350 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,350 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,350 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,350 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:29:24,366 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,366 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,366 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: ms-vcpp-2005-redist_x86: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15923,15 +15789,15 @@ ms-vcpp-2005-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,366 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,012 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,012 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,012 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,012 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls -2020-03-04 12:26:00,012 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,027 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.01562047004699707 -2020-03-04 12:26:00,027 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +2020-03-06 10:29:24,366 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,381 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,381 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,381 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:29:24,381 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,381 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,397 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: ms-vcpp-2005-sp1-mfc-redist_x64: '8.0.61000': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15943,15 +15809,15 @@ ms-vcpp-2005-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,027 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,397 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,027 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,027 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,027 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,027 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls -2020-03-04 12:26:00,027 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,043 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.01563239097595215 -2020-03-04 12:26:00,043 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +2020-03-06 10:29:24,397 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,397 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,413 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,413 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:29:24,413 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,413 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,413 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: ms-vcpp-2005-sp1-mfc-redist_x86: '8.0.61001': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15963,15 +15829,15 @@ ms-vcpp-2005-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,043 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,043 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,043 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,043 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,043 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls -2020-03-04 12:26:00,059 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,059 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,059 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +2020-03-06 10:29:24,428 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.015639305114746094 +2020-03-06 10:29:24,428 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,428 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,428 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:29:24,444 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,444 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,444 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: ms-vcpp-2005-sp1-redist_x64: '8.0.59192': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15983,15 +15849,15 @@ ms-vcpp-2005-sp1-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,059 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,059 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,059 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,059 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,059 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls -2020-03-04 12:26:00,059 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,074 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.015626192092895508 -2020-03-04 12:26:00,074 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +2020-03-06 10:29:24,444 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,459 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,459 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,459 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:29:24,459 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,459 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,475 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: ms-vcpp-2005-sp1-redist_x86: '8.0.59193': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16003,15 +15869,15 @@ ms-vcpp-2005-sp1-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,074 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,074 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,074 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,074 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,074 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls -2020-03-04 12:26:00,074 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,074 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,090 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +2020-03-06 10:29:24,475 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,491 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,491 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,491 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:29:24,491 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,491 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,506 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: ms-vcpp-2008-redist_x64: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' @@ -16023,15 +15889,15 @@ ms-vcpp-2008-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,090 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,090 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,090 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,090 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,090 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls -2020-03-04 12:26:00,090 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,090 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,106 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +2020-03-06 10:29:24,506 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,506 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,522 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,522 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:29:24,522 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,522 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,522 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: ms-vcpp-2008-redist_x86: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' @@ -16043,15 +15909,15 @@ ms-vcpp-2008-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,106 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,106 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,106 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,106 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls -2020-03-04 12:26:00,106 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,106 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,106 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +2020-03-06 10:29:24,538 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,538 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,538 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,538 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:29:24,553 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,553 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,553 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: ms-vcpp-2008-sp1-atl-redist_x64: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' @@ -16063,15 +15929,15 @@ ms-vcpp-2008-sp1-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,553 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,121 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.015607833862304688 -2020-03-04 12:26:00,121 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,121 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,121 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls -2020-03-04 12:26:00,121 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,121 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,121 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +2020-03-06 10:29:24,553 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,569 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,569 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,569 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:29:24,569 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,585 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.015665292739868164 +2020-03-06 10:29:24,585 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: ms-vcpp-2008-sp1-atl-redist_x86: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' @@ -16083,15 +15949,15 @@ ms-vcpp-2008-sp1-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,121 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,121 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,137 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls -2020-03-04 12:26:00,137 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,137 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,137 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +2020-03-06 10:29:24,585 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,585 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,600 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,600 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:29:24,616 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,616 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,616 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: ms-vcpp-2008-sp1-mfc-redist_x64: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' @@ -16103,15 +15969,15 @@ ms-vcpp-2008-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,137 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,153 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls -2020-03-04 12:26:00,153 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,153 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +2020-03-06 10:29:24,616 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,632 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,632 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,632 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:29:24,632 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,647 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.015665054321289062 +2020-03-06 10:29:24,647 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: ms-vcpp-2008-sp1-mfc-redist_x86: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' @@ -16123,15 +15989,15 @@ ms-vcpp-2008-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,153 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,168 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,168 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls -2020-03-04 12:26:00,168 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,168 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,168 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +2020-03-06 10:29:24,647 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,664 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,664 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,664 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:29:24,664 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,664 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,679 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: ms-vcpp-2010-sp1-mfc-redist_x64: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' @@ -16143,15 +16009,15 @@ ms-vcpp-2010-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,168 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,679 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,168 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,168 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,168 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,184 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls -2020-03-04 12:26:00,184 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,184 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,184 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +2020-03-06 10:29:24,679 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,679 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,694 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,694 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:29:24,694 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,694 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,694 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: ms-vcpp-2010-sp1-mfc-redist_x86: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' @@ -16163,15 +16029,15 @@ ms-vcpp-2010-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,184 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,184 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,184 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,184 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,184 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls -2020-03-04 12:26:00,199 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,199 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,199 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +2020-03-06 10:29:24,694 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,710 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,710 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,710 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:29:24,710 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,710 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,726 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: ms-vcpp-2012-redist_x64: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' @@ -16183,15 +16049,15 @@ ms-vcpp-2012-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,199 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,726 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,199 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,199 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,199 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,199 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls -2020-03-04 12:26:00,215 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,215 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,215 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +2020-03-06 10:29:24,726 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,726 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,726 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,741 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:29:24,741 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,741 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,741 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: ms-vcpp-2012-redist_x86: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' @@ -16203,15 +16069,15 @@ ms-vcpp-2012-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,215 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,215 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,215 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,215 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,215 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls -2020-03-04 12:26:00,231 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,231 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,231 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +2020-03-06 10:29:24,741 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,757 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,757 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,757 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:29:24,757 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,757 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,773 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: ms-vcpp-2013-redist_x64: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' @@ -16223,15 +16089,15 @@ ms-vcpp-2013-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,231 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,773 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,231 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,231 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,231 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,231 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls -2020-03-04 12:26:00,246 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,246 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,246 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +2020-03-06 10:29:24,773 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,773 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,773 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,788 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:29:24,788 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,788 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,788 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: ms-vcpp-2013-redist_x86: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' @@ -16243,15 +16109,15 @@ ms-vcpp-2013-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,246 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,788 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,246 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,262 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls -2020-03-04 12:26:00,262 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,262 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,262 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +2020-03-06 10:29:24,788 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,804 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,804 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,804 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:29:24,804 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,804 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,819 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: ms-vcpp-2015-build-tools: '14.0.25420.1': full_name: 'Microsoft Visual C++ Build Tools' @@ -16262,15 +16128,15 @@ ms-vcpp-2015-build-tools: locale: en_US reboot: False -2020-03-04 12:26:00,262 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,819 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,262 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,278 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls -2020-03-04 12:26:00,278 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,278 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,278 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +2020-03-06 10:29:24,819 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,819 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,819 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,819 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:29:24,835 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,835 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,835 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: ms-vcpp-2015-redist_x64: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' @@ -16295,15 +16161,15 @@ ms-vcpp-2015-redist_x64: # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} -2020-03-04 12:26:00,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,278 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,278 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,278 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,278 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls -2020-03-04 12:26:00,293 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,293 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,293 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +2020-03-06 10:29:24,835 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,851 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,851 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,851 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:29:24,851 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,851 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,851 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: ms-vcpp-2015-redist_x86: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' @@ -16328,15 +16194,15 @@ ms-vcpp-2015-redist_x86: # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} -2020-03-04 12:26:00,293 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,293 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,293 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,309 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,309 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls -2020-03-04 12:26:00,309 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,309 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,309 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +2020-03-06 10:29:24,866 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,883 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:29:24,883 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,883 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,883 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: ms-vcpp-2017-redist_x64: '14.20.27508.1': full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' @@ -16357,15 +16223,15 @@ ms-vcpp-2017-redist_x64: locale: en_US reboot: False -2020-03-04 12:26:00,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,883 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,309 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,324 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,324 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,324 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls -2020-03-04 12:26:00,324 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,324 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,340 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +2020-03-06 10:29:24,883 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,898 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,898 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,898 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:29:24,898 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,898 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,898 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: ms-vcpp-2017-redist_x86: '14.11.25325.0': full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' @@ -16377,15 +16243,15 @@ ms-vcpp-2017-redist_x86: locale: en_US reboot: False -2020-03-04 12:26:00,340 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,340 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,340 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,340 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,340 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls -2020-03-04 12:26:00,340 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,356 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.015649795532226562 -2020-03-04 12:26:00,356 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: +2020-03-06 10:29:24,913 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.015655040740966797 +2020-03-06 10:29:24,913 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,913 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,913 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:29:24,913 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,929 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.015665769577026367 +2020-03-06 10:29:24,929 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: @@ -16402,15 +16268,15 @@ mucommander: reboot: False -2020-03-04 12:26:00,356 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,356 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,356 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,356 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,371 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls -2020-03-04 12:26:00,371 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,371 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,371 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +2020-03-06 10:29:24,929 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,945 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,945 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,945 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:29:24,945 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,960 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.015672683715820312 +2020-03-06 10:29:24,960 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: mysql-essential: '5.1.73': full_name: 'MySQL Server 5.1' @@ -16424,15 +16290,15 @@ mysql-essential: locale: en_US reboot: False -2020-03-04 12:26:00,371 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,371 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,388 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,388 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,388 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls -2020-03-04 12:26:00,388 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,388 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,388 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +2020-03-06 10:29:24,960 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:24,960 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:24,976 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:24,992 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:29:24,992 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:24,992 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:24,992 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: mysql-installer-community: '1.4.3.0': full_name: 'MySQL Installer - Community' @@ -16448,15 +16314,15 @@ mysql-installer-community: # https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html # https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html -2020-03-04 12:26:00,388 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:24,992 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,403 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.014607667922973633 -2020-03-04 12:26:00,403 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,403 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,403 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls -2020-03-04 12:26:00,403 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,403 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,403 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +2020-03-06 10:29:25,007 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.015356063842773438 +2020-03-06 10:29:25,007 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,007 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,007 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:29:25,007 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,023 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.015655040740966797 +2020-03-06 10:29:25,023 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: mysql-workbench-community: '8.0.15': @@ -16493,15 +16359,15 @@ mysql-workbench-community: # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html -2020-03-04 12:26:00,418 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,023 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,418 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,418 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,434 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,434 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls -2020-03-04 12:26:00,434 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,434 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,434 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +2020-03-06 10:29:25,023 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,023 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,039 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,039 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:29:25,039 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,039 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,055 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: never10: '1.3': full_name: 'Never 10 (GRC)' @@ -16514,15 +16380,15 @@ never10: reboot: False # download it from https://www.grc.com/never10.htm -2020-03-04 12:26:00,434 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,434 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,434 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,449 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,449 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls -2020-03-04 12:26:00,449 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,449 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,449 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +2020-03-06 10:29:25,086 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,086 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,086 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,086 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:29:25,101 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,101 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,101 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: # Please note that per # https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows # the MSI uninstall does not remove files or settings, @@ -16683,15 +16549,15 @@ newrelic-infra: reboot: False -2020-03-04 12:26:00,465 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,101 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,465 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.01562047004699707 -2020-03-04 12:26:00,465 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,465 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,465 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls -2020-03-04 12:26:00,465 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,482 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.016605138778686523 -2020-03-04 12:26:00,482 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +2020-03-06 10:29:25,117 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.015650510787963867 +2020-03-06 10:29:25,117 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,117 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,117 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:29:25,117 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,133 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.016470670700073242 +2020-03-06 10:29:25,133 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: nextcloud-client: '2.2.3.4': @@ -16785,15 +16651,15 @@ nextcloud-client: reboot: False -2020-03-04 12:26:00,482 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,133 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,482 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,482 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,496 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,496 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls -2020-03-04 12:26:00,496 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,496 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,496 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: +2020-03-06 10:29:25,133 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,133 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,148 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,148 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:29:25,226 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,226 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,226 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: # just 32-bit x86 installer available @@ -16823,15 +16689,15 @@ nmap: reboot: False -2020-03-04 12:26:00,496 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,226 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,496 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,512 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,512 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,512 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls -2020-03-04 12:26:00,512 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,512 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,528 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +2020-03-06 10:29:25,242 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.01564788818359375 +2020-03-06 10:29:25,242 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,242 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,242 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:29:25,242 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,258 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.015648841857910156 +2020-03-06 10:29:25,258 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: node.js-lts: '12.13.1': @@ -16919,15 +16785,15 @@ node.js-lts: reboot: False -2020-03-04 12:26:00,574 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,574 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.046900272369384766 -2020-03-04 12:26:00,590 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,590 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,590 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls -2020-03-04 12:26:00,590 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,590 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,606 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +2020-03-06 10:29:25,273 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.01565408706665039 +2020-03-06 10:29:25,273 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,273 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,273 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:29:25,289 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,289 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,289 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: node.js: '13.1.0': @@ -17051,15 +16917,15 @@ node.js: reboot: False -2020-03-04 12:26:00,606 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,606 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,606 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,606 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,621 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls -2020-03-04 12:26:00,621 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,621 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,621 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +2020-03-06 10:29:25,305 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.015664339065551758 +2020-03-06 10:29:25,305 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,321 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,321 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:29:25,321 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,321 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,321 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: nomacs: '3.8.0': @@ -17073,15 +16939,15 @@ nomacs: reboot: False -2020-03-04 12:26:00,621 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,621 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,621 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,621 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,637 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls -2020-03-04 12:26:00,637 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,637 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,637 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +2020-03-06 10:29:25,336 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.014596939086914062 +2020-03-06 10:29:25,336 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,336 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,336 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:29:25,336 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,352 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.015655040740966797 +2020-03-06 10:29:25,352 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: # just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. @@ -17278,15 +17144,15 @@ npp: # the 64-bit installer is available from: # https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe -2020-03-04 12:26:00,654 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,654 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.016588211059570312 -2020-03-04 12:26:00,654 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,654 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,654 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls -2020-03-04 12:26:00,654 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,668 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.014667272567749023 -2020-03-04 12:26:00,668 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +2020-03-06 10:29:25,352 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,367 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,367 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,367 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:29:25,367 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,383 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.01565408706665039 +2020-03-06 10:29:25,383 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: nsclient: @@ -17443,24 +17309,24 @@ nsclient: reboot: False -2020-03-04 12:26:00,668 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,668 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,668 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,684 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,684 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls -2020-03-04 12:26:00,684 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,684 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,700 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +2020-03-06 10:29:25,383 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,400 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,400 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,400 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:29:25,400 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,414 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.01453399658203125 +2020-03-06 10:29:25,414 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: # Define versions nsis: - '2.51': + '3.03': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17470,9 +17336,9 @@ nsis: locale: en_US reboot: False - '2.50': + '3.02.1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17482,9 +17348,9 @@ nsis: locale: en_US reboot: False - '2.49': + '3.02': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17494,9 +17360,9 @@ nsis: locale: en_US reboot: False - '2.48': + '3.01': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17506,9 +17372,9 @@ nsis: locale: en_US reboot: False - '2.47': + '3.0': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17518,9 +17384,11 @@ nsis: locale: en_US reboot: False - '2.46': + + + '3.0b2': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17530,11 +17398,9 @@ nsis: locale: en_US reboot: False - - - '3.0b2': + '3.0b1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17544,9 +17410,11 @@ nsis: locale: en_US reboot: False - '3.0b1': + + + '2.51': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17556,11 +17424,9 @@ nsis: locale: en_US reboot: False - - - '3.03': + '2.50': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17570,9 +17436,9 @@ nsis: locale: en_US reboot: False - '3.02.1': + '2.49': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17582,9 +17448,9 @@ nsis: locale: en_US reboot: False - '3.02': + '2.48': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17594,9 +17460,9 @@ nsis: locale: en_US reboot: False - '3.01': + '2.47': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17606,9 +17472,9 @@ nsis: locale: en_US reboot: False - '3.0': + '2.46': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17620,15 +17486,15 @@ nsis: -2020-03-04 12:26:00,700 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('nsis', OrderedDict([('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,700 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,700 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,700 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,700 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls -2020-03-04 12:26:00,715 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,715 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,715 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +2020-03-06 10:29:25,414 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:29:25,414 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,414 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,430 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,430 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:29:25,430 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,430 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,430 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: # Install Meinberg NTP daemon for Windows # Note: To do a silent installation, this installer needs a setup file named # setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. @@ -17670,72 +17536,72 @@ ntp: reboot: False -2020-03-04 12:26:00,715 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,715 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,715 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,731 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,731 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls -2020-03-04 12:26:00,731 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,731 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,731 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: +2020-03-06 10:29:25,446 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.015619993209838867 +2020-03-06 10:29:25,446 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,446 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,446 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:29:25,446 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,461 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.01566028594970703 +2020-03-06 10:29:25,461 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: nunit-console: - '3.8.0': - full_name: 'NUnit Console 3.8.0' + '3.9.0': + full_name: 'NUnit Console 3.9.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '3.7.0': - full_name: 'NUnit Console 3.7.0' + '3.8.0': + full_name: 'NUnit Console 3.8.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '3.9.0': - full_name: 'NUnit Console 3.9.0' + '3.7.0': + full_name: 'NUnit Console 3.7.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False -2020-03-04 12:26:00,731 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:26:00,746 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.015628814697265625 -2020-03-04 12:26:00,746 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,746 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,746 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls -2020-03-04 12:26:00,746 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,746 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,746 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +2020-03-06 10:29:25,461 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:29:25,461 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,477 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,477 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,477 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:29:25,477 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,477 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,477 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: nxlog: '2.10.2150': full_name: 'NXLog-CE' @@ -17747,15 +17613,15 @@ nxlog: locale: en_US reboot: False -2020-03-04 12:26:00,746 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,477 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,746 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,762 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,762 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,762 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls -2020-03-04 12:26:00,762 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,762 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,762 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +2020-03-06 10:29:25,477 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,492 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,492 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,492 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:29:25,492 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,508 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.015656709671020508 +2020-03-06 10:29:25,524 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -17793,15 +17659,15 @@ octopus-tentacle: reboot: False -2020-03-04 12:26:00,778 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,524 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,778 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,778 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,778 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,778 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls -2020-03-04 12:26:00,778 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,794 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.016503334045410156 -2020-03-04 12:26:00,794 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +2020-03-06 10:29:25,524 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,524 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,524 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,524 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:29:25,539 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,539 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,539 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: # Source: http://openlp.org/ # just 32-bit x86 installer available @@ -17831,15 +17697,15 @@ openlp: reboot: False -2020-03-04 12:26:00,794 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,539 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,794 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,794 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,794 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,794 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls -2020-03-04 12:26:00,794 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,809 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.014751195907592773 -2020-03-04 12:26:00,809 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +2020-03-06 10:29:25,539 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,555 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,555 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,555 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:29:25,555 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,555 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,571 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: openoffice: '4.1.2': full_name: 'OpenOffice 4.1.2' @@ -17872,15 +17738,15 @@ openoffice: # 'fi', 'fr', 'da', 'de', 'bg', 'ast' # -2020-03-04 12:26:00,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,571 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,809 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,809 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,809 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,809 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls -2020-03-04 12:26:00,809 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,825 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.015639543533325195 -2020-03-04 12:26:00,825 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +2020-03-06 10:29:25,571 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,602 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,602 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,618 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:29:25,618 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,633 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.015645265579223633 +2020-03-06 10:29:25,633 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18052,15 +17918,15 @@ openvpn: # /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's # /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's -2020-03-04 12:26:00,825 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,633 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('openvpn', OrderedDict([('2.4.7-I603', OrderedDict([('full_name', 'OpenVPN 2.4.7-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I603.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,840 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.015618324279785156 -2020-03-04 12:26:00,840 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,840 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,840 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls -2020-03-04 12:26:00,840 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,840 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,840 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +2020-03-06 10:29:25,633 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,651 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,651 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,651 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:29:25,651 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,651 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,665 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: # Performant endpoint visibility https://osquery.io/ @@ -18113,15 +17979,15 @@ osquery: reboot: False -2020-03-04 12:26:00,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,665 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:26:00,857 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.016468048095703125 -2020-03-04 12:26:00,857 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,857 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,857 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls -2020-03-04 12:26:00,857 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,871 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.014791727066040039 -2020-03-04 12:26:00,871 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +2020-03-06 10:29:25,665 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,665 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,665 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,665 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:29:25,665 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,680 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.015639066696166992 +2020-03-06 10:29:25,680 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: # just 32-bit x86 installer available @@ -18147,9 +18013,9 @@ ossec-agent: - '3.2.0': - full_name: 'OSSEC HIDS 3.2.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18159,9 +18025,9 @@ ossec-agent: - '3.0.0': - full_name: 'OSSEC HIDS 3.0.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18171,9 +18037,9 @@ ossec-agent: - '2.9.0': - full_name: 'OSSEC HIDS 2.9.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + '3.2.0': + full_name: 'OSSEC HIDS 3.2.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18195,9 +18061,9 @@ ossec-agent: - '2.9.2': - full_name: 'OSSEC HIDS 2.9.2' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18207,9 +18073,9 @@ ossec-agent: - '3.0.1': - full_name: 'OSSEC HIDS 3.0.1' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18219,9 +18085,9 @@ ossec-agent: - '2.9.3': - full_name: 'OSSEC HIDS 2.9.3' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18231,15 +18097,15 @@ ossec-agent: -2020-03-04 12:26:00,871 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('ossec-agent', OrderedDict([('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,871 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,871 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,871 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,871 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls -2020-03-04 12:26:00,887 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,887 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,887 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +2020-03-06 10:29:25,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:29:25,696 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,696 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,696 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,696 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:29:25,696 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,712 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.01565718650817871 +2020-03-06 10:29:25,712 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: owncloud: @@ -18296,15 +18162,15 @@ owncloud: reboot: False -2020-03-04 12:26:00,887 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,712 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,887 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,887 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,903 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,903 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls -2020-03-04 12:26:00,903 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,903 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,903 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +2020-03-06 10:29:25,712 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,712 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,712 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,727 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:29:25,727 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,727 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,727 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: pandoc: '1.17.0.2': full_name: 'Pandoc 1.17.0.2' @@ -18316,15 +18182,15 @@ pandoc: locale: en_US reboot: False -2020-03-04 12:26:00,903 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,727 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,903 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,903 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,903 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,918 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls -2020-03-04 12:26:00,918 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,918 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,918 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +2020-03-06 10:29:25,727 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,743 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,743 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,743 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:29:25,743 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,743 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,759 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: parallels-client-15: '15.0.3869': @@ -18340,15 +18206,15 @@ parallels-client-15: # The latest RAS clients can be downloaded for FREE from: # https://www.parallels.com/uk/products/ras/download/links/ -2020-03-04 12:26:00,918 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,759 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,918 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,918 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,934 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,934 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls -2020-03-04 12:26:00,934 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,934 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,934 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +2020-03-06 10:29:25,759 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,759 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,759 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,759 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:29:25,759 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,775 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.016524076461791992 +2020-03-06 10:29:25,775 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18379,15 +18245,15 @@ pass4win: locale: en_US reboot: False -2020-03-04 12:26:00,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,775 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,934 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,950 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,950 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,950 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls -2020-03-04 12:26:00,950 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,950 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,950 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +2020-03-06 10:29:25,775 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,775 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,790 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,790 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:29:25,790 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,790 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,806 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: passware-kit-agent: '13.1.7657': full_name: 'Passware Kit Agent (64-bit)' @@ -18399,15 +18265,15 @@ passware-kit-agent: locale: en_US reboot: False -2020-03-04 12:26:00,950 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,950 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,950 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,965 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,965 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls -2020-03-04 12:26:00,965 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,965 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +2020-03-06 10:29:25,806 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,806 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,806 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,806 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:29:25,806 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,821 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.015654563903808594 +2020-03-06 10:29:25,821 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: passware-kit-forensic: '13.1.7657': full_name: 'Passware Kit Forensic (64-bit)' @@ -18419,15 +18285,15 @@ passware-kit-forensic: locale: en_US reboot: False -2020-03-04 12:26:00,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,821 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,965 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,965 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,981 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls -2020-03-04 12:26:00,981 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,981 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,981 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +2020-03-06 10:29:25,821 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,821 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,821 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,821 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:29:25,821 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,821 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,837 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: # Source: https://patchmypc.net/ patchmypc-free: '3.0.1.1': @@ -18446,15 +18312,15 @@ patchmypc-free: locale: en_US reboot: False -2020-03-04 12:26:00,981 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,837 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,981 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:00,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:00,981 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls -2020-03-04 12:26:00,996 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:00,996 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:00,996 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +2020-03-06 10:29:25,837 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,837 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,837 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,837 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:29:25,837 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,852 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.015647411346435547 +2020-03-06 10:29:25,852 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: pdf24creator: '8.8.2': @@ -18550,15 +18416,15 @@ pdf24creator: # Source: https://en.pdf24.org/ # Packagin info Source: https://chocolatey.org/packages/pdf24 -2020-03-04 12:26:00,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,852 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:00,996 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:00,996 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,012 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,012 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls -2020-03-04 12:26:01,012 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,012 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,012 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +2020-03-06 10:29:25,852 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,852 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,852 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,868 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:29:25,868 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,868 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,868 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: # just 32-bit x86 installer available @@ -18574,15 +18440,15 @@ pdfcreator: locale: en_US reboot: False -2020-03-04 12:26:01,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,868 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,012 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,012 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,028 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,028 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls -2020-03-04 12:26:01,028 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,028 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,028 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +2020-03-06 10:29:25,868 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,884 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,884 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,884 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:29:25,884 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,884 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,884 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: peazip: '6.0.0': @@ -18596,15 +18462,15 @@ peazip: locale: en_US reboot: False -2020-03-04 12:26:01,028 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,884 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,028 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,028 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,028 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,043 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls -2020-03-04 12:26:01,043 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,043 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,063 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: +2020-03-06 10:29:25,899 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.015645742416381836 +2020-03-06 10:29:25,899 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,899 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,899 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:29:25,899 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,915 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.015662193298339844 +2020-03-06 10:29:25,915 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: @@ -18648,15 +18514,15 @@ pgadmin4: reboot: False -2020-03-04 12:26:01,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,915 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,063 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,063 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,063 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,075 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls -2020-03-04 12:26:01,075 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,075 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,075 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +2020-03-06 10:29:25,915 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,915 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,915 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,915 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:29:25,946 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,946 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,946 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: pgina: '3.1.8.0': full_name: 'pGina v3.1.8.0' @@ -18666,15 +18532,15 @@ pgina: locale: en_US reboot: False -2020-03-04 12:26:01,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,946 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,075 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,075 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,075 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,075 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls -2020-03-04 12:26:01,090 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,090 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,090 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: +2020-03-06 10:29:25,946 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,963 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,963 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,963 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:29:25,963 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,963 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:25,963 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: # just 32-bit x86 installer available @@ -18693,15 +18559,15 @@ pidgin: reboot: False -2020-03-04 12:26:01,090 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,978 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,090 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,090 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,090 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,090 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls -2020-03-04 12:26:01,106 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,106 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,106 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +2020-03-06 10:29:25,978 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,978 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,978 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:25,978 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:29:25,978 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:25,993 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.015657663345336914 +2020-03-06 10:29:25,993 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: # Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: # salt mid pkg.install postgresql version='"9.6"' @@ -18746,15 +18612,15 @@ postgresql: reboot: False -2020-03-04 12:26:01,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:25,993 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:26:01,106 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,106 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,121 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,121 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls -2020-03-04 12:26:01,121 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,121 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,121 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +2020-03-06 10:29:25,993 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:25,993 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:25,993 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,009 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:29:26,009 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,009 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,009 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: ### NOTE: You must accept the PowerBI Desktop EULA by setting the ### Pillar key `powerbi:desktop:accept_eula` to `True` in order to ### install this package. You can find a copy of the EULA at @@ -18776,15 +18642,15 @@ powerbi-desktop: msiexec: True reboot: False -2020-03-04 12:26:01,121 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,009 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:26:01,121 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,137 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls -2020-03-04 12:26:01,137 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,137 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,137 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +2020-03-06 10:29:26,009 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,025 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,025 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,025 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:29:26,025 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,025 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,040 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: #PowerShell Core https://github.com/PowerShell/PowerShell @@ -18847,15 +18713,15 @@ powershell-core: reboot: False -2020-03-04 12:26:01,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,040 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:26:01,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.01562809944152832 -2020-03-04 12:26:01,153 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,153 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,153 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls -2020-03-04 12:26:01,153 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,168 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +2020-03-06 10:29:26,040 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,040 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,040 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,040 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:29:26,040 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,056 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.015655040740966797 +2020-03-06 10:29:26,056 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: # Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems # WMI Exporter: https://github.com/martinlindhe/wmi_exporter # Prometheus Monitoring: https://prometheus.io/ @@ -19055,15 +18921,15 @@ prometheus-wmi-exporter: reboot: False -2020-03-04 12:26:01,168 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,056 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,168 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,168 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,168 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,168 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls -2020-03-04 12:26:01,168 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,184 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.015618324279785156 -2020-03-04 12:26:01,184 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +2020-03-06 10:29:26,056 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,072 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,072 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,072 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:29:26,072 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,088 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.016442298889160156 +2020-03-06 10:29:26,088 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: putty: '0.73.0.0': @@ -19189,15 +19055,15 @@ putty: reboot: False -2020-03-04 12:26:01,184 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,088 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,184 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,200 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,200 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,200 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls -2020-03-04 12:26:01,200 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,215 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.015665054321289062 -2020-03-04 12:26:01,215 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +2020-03-06 10:29:26,088 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,088 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,088 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,103 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:29:26,103 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,103 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,103 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: python2_x64: @@ -19409,15 +19275,15 @@ python2_x64: reboot: False -2020-03-04 12:26:01,215 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,103 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,215 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,215 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,231 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,231 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls -2020-03-04 12:26:01,231 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,231 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,231 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +2020-03-06 10:29:26,118 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.015639543533325195 +2020-03-06 10:29:26,118 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,118 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,118 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:29:26,118 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,118 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,134 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: python2_x86: @@ -19629,15 +19495,15 @@ python2_x86: reboot: False -2020-03-04 12:26:01,231 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,246 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.015636920928955078 -2020-03-04 12:26:01,246 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,246 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,246 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls -2020-03-04 12:26:01,246 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,262 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.015619754791259766 -2020-03-04 12:26:01,262 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: +2020-03-06 10:29:26,134 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,134 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,134 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,134 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:29:26,150 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,150 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,150 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: python3_x64: @@ -19774,15 +19640,15 @@ python3_x64: reboot: False -2020-03-04 12:26:01,262 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,165 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,262 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,278 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls -2020-03-04 12:26:01,278 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,278 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,278 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: +2020-03-06 10:29:26,165 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.015648603439331055 +2020-03-06 10:29:26,165 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,165 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,165 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:29:26,165 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,181 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.015650033950805664 +2020-03-06 10:29:26,181 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: python3_x86: @@ -19909,15 +19775,15 @@ python3_x86: reboot: False -2020-03-04 12:26:01,293 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,181 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,293 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.015624284744262695 -2020-03-04 12:26:01,293 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,293 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,293 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls -2020-03-04 12:26:01,293 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,309 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.01563286781311035 -2020-03-04 12:26:01,309 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +2020-03-06 10:29:26,181 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,197 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,197 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,197 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:29:26,197 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,197 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,197 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -19934,15 +19800,15 @@ qemu: locale: en_US reboot: False -2020-03-04 12:26:01,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,309 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,309 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,309 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,309 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls -2020-03-04 12:26:01,325 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,325 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,325 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: +2020-03-06 10:29:26,212 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.015647411346435547 +2020-03-06 10:29:26,212 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,212 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,212 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:29:26,212 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,212 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,212 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: @@ -19958,15 +19824,15 @@ queueexplorerpro: locale: en_US reboot: False -2020-03-04 12:26:01,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,325 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,325 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,325 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,325 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls -2020-03-04 12:26:01,340 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,340 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,340 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +2020-03-06 10:29:26,228 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.015653371810913086 +2020-03-06 10:29:26,228 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,228 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,228 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:29:26,228 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,228 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,228 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: quicktime: '7.79.80.95': full_name: 'QuickTime 7' @@ -19991,15 +19857,15 @@ quicktime: # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} -2020-03-04 12:26:01,340 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,244 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,340 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,340 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,340 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,340 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls -2020-03-04 12:26:01,356 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,356 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,356 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: +2020-03-06 10:29:26,244 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,244 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,244 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,244 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:29:26,244 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,244 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,244 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: rabbitmq: @@ -20024,15 +19890,15 @@ rabbitmq: reboot: False -2020-03-04 12:26:01,356 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,356 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,356 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,356 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,356 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls -2020-03-04 12:26:01,371 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,371 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,371 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +2020-03-06 10:29:26,259 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,259 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,259 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,259 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:29:26,259 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,259 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,259 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: rakudo-star_x86: '1.0.0': full_name: 'Rakudo Star 2016.01' @@ -20044,15 +19910,15 @@ rakudo-star_x86: locale: en_US reboot: False -2020-03-04 12:26:01,371 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,259 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,371 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,371 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,371 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,371 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls -2020-03-04 12:26:01,371 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,387 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.015617609024047852 -2020-03-04 12:26:01,387 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +2020-03-06 10:29:26,275 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.01566028594970703 +2020-03-06 10:29:26,275 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,275 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,275 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:29:26,275 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,275 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,275 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: rakudo-star_x64: '1.0.0': full_name: 'Rakudo Star 2016.04' @@ -20064,15 +19930,15 @@ rakudo-star_x64: locale: en_US reboot: False -2020-03-04 12:26:01,387 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,275 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,387 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,387 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,387 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,387 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls -2020-03-04 12:26:01,387 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,403 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.015630722045898438 -2020-03-04 12:26:01,403 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +2020-03-06 10:29:26,275 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,291 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,291 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,291 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:29:26,291 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,306 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.015653610229492188 +2020-03-06 10:29:26,306 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: rasclient: '16': @@ -20089,15 +19955,15 @@ rasclient: reboot: False -2020-03-04 12:26:01,403 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,306 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,403 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,418 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,418 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,418 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls -2020-03-04 12:26:01,418 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,418 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,418 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +2020-03-06 10:29:26,306 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,306 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,306 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,306 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:29:26,306 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,322 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.015644550323486328 +2020-03-06 10:29:26,322 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: rdcman: '2.7.14060': full_name: 'Remote Desktop Connection Manager' @@ -20109,15 +19975,15 @@ rdcman: locale: en_US reboot: False -2020-03-04 12:26:01,418 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,418 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,418 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,434 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,434 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls -2020-03-04 12:26:01,434 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,434 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,434 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: +2020-03-06 10:29:26,322 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,322 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,322 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,322 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:29:26,322 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,338 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.01565098762512207 +2020-03-06 10:29:26,338 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: rocketchat: @@ -20213,15 +20079,15 @@ rocketchat: reboot: False -2020-03-04 12:26:01,434 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,450 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.015617847442626953 -2020-03-04 12:26:01,450 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,450 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,450 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls -2020-03-04 12:26:01,450 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,465 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.015654802322387695 -2020-03-04 12:26:01,465 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +2020-03-06 10:29:26,338 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,338 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,338 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,338 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:29:26,353 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,353 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,353 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: rubyinstaller_x64: '2.2.3-p173': @@ -20255,15 +20121,15 @@ rubyinstaller_x64: reboot: False -2020-03-04 12:26:01,465 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,465 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,465 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,481 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,481 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls -2020-03-04 12:26:01,481 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,481 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,481 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +2020-03-06 10:29:26,353 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,353 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,369 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,369 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:29:26,369 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,369 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,369 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: rubyinstaller_x86: '2.2.3-p173': @@ -20307,15 +20173,15 @@ rubyinstaller_x86: reboot: False -2020-03-04 12:26:01,481 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,369 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,496 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.01562809944152832 -2020-03-04 12:26:01,496 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,496 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,496 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls -2020-03-04 12:26:01,496 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,512 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.015620231628417969 -2020-03-04 12:26:01,512 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +2020-03-06 10:29:26,369 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,385 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,385 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,385 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:29:26,385 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,400 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.01564478874206543 +2020-03-06 10:29:26,400 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -20835,15 +20701,15 @@ salt-minion: -2020-03-04 12:26:01,512 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,400 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:26:01,528 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.015622377395629883 -2020-03-04 12:26:01,528 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,528 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,528 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls -2020-03-04 12:26:01,528 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,543 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.01563119888305664 -2020-03-04 12:26:01,543 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +2020-03-06 10:29:26,400 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,417 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,417 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,417 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:29:26,417 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,417 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,417 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -21177,15 +21043,15 @@ salt-minion-py3: -2020-03-04 12:26:01,543 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,431 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:26:01,543 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,543 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,559 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,559 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls -2020-03-04 12:26:01,559 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,559 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,559 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +2020-03-06 10:29:26,431 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,431 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,431 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,431 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:29:26,447 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,447 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,447 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: sandboxie: '4.20': @@ -21199,15 +21065,15 @@ sandboxie: locale: en_US reboot: False -2020-03-04 12:26:01,559 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,447 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,559 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,559 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,575 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,575 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls -2020-03-04 12:26:01,575 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,575 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,575 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +2020-03-06 10:29:26,447 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,447 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,463 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,463 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:29:26,463 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,463 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,463 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: scaleout: latest: @@ -21221,15 +21087,15 @@ scaleout: locale: en_US reboot: False -2020-03-04 12:26:01,575 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,575 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,575 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,575 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,590 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls -2020-03-04 12:26:01,590 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,590 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,590 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +2020-03-06 10:29:26,463 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,478 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,478 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,478 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:29:26,478 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,494 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.01564931869506836 +2020-03-06 10:29:26,494 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: # just 32-bit x86 installer available @@ -21245,15 +21111,15 @@ secunia.psi: locale: en_US reboot: False -2020-03-04 12:26:01,590 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,590 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,590 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,606 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,606 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls -2020-03-04 12:26:01,606 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,606 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,621 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: +2020-03-06 10:29:26,494 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,494 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,494 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,494 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:29:26,494 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,510 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.015651941299438477 +2020-03-06 10:29:26,525 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: @@ -21323,15 +21189,15 @@ sensu: reboot: False -2020-03-04 12:26:01,621 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2016/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,621 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,621 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,621 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,621 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls -2020-03-04 12:26:01,621 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,637 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.015625 -2020-03-04 12:26:01,637 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +2020-03-06 10:29:26,525 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,525 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,525 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,525 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:29:26,525 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,542 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.016416072845458984 +2020-03-06 10:29:26,542 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: sharpdevelop: '5.1.5134': full_name: 'SharpDevelop 5.1 RC' @@ -21370,15 +21236,15 @@ sharpdevelop: locale: en_US reboot: False -2020-03-04 12:26:01,637 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,542 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,637 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,637 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,637 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,637 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls -2020-03-04 12:26:01,637 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,653 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.015635013580322266 -2020-03-04 12:26:01,653 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +2020-03-06 10:29:26,542 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,542 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,542 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,542 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:29:26,557 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,557 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,557 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: # just 32-bit x86 installer available @@ -21394,15 +21260,15 @@ skitch: locale: en_US reboot: False -2020-03-04 12:26:01,653 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,557 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,653 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,653 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,653 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,653 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls -2020-03-04 12:26:01,668 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,668 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,668 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +2020-03-06 10:29:26,557 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,557 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,557 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,572 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:29:26,572 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,572 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,572 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: skype-msi: '7.41.101': full_name: 'Skypeâ„¢ 7.41' @@ -21438,15 +21304,15 @@ skype-msi: # http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 # you can also check microsite http://skype.techygeekshome.info/ -2020-03-04 12:26:01,668 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,668 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,668 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,668 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,668 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls -2020-03-04 12:26:01,684 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,684 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,684 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +2020-03-06 10:29:26,572 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,572 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,588 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,588 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:29:26,588 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,588 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,588 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: # just 32-bit x86 installer available @@ -21464,15 +21330,15 @@ skype: reboot: False -2020-03-04 12:26:01,684 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,604 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,684 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,684 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,700 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,700 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls -2020-03-04 12:26:01,700 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,700 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,700 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +2020-03-06 10:29:26,604 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,604 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,619 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,619 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:29:26,619 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,619 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,636 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: #MSI machine-wide deployment package #The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. #It is multi-client-capable, meaning that it can be used by multiple users on one machine, @@ -21518,15 +21384,15 @@ slack-machine-msi: reboot: False -2020-03-04 12:26:01,700 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,636 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,700 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,715 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,715 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,715 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls -2020-03-04 12:26:01,715 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,715 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,715 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +2020-03-06 10:29:26,651 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.014758586883544922 +2020-03-06 10:29:26,651 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,651 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,651 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:29:26,651 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,666 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.015587568283081055 +2020-03-06 10:29:26,666 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: #MSI for per-user deployment package #The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. #The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. @@ -21545,15 +21411,15 @@ slack-user-msi: locale: en_US reboot: False -2020-03-04 12:26:01,715 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,666 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,731 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.015633106231689453 -2020-03-04 12:26:01,731 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,731 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,731 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls -2020-03-04 12:26:01,731 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,731 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,731 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +2020-03-06 10:29:26,666 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,666 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,666 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,682 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:29:26,682 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,682 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,682 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: slack: 3.4.0: full_name: Slack @@ -21564,15 +21430,15 @@ slack: msiexec: True reboot: False -2020-03-04 12:26:01,731 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,682 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:26:01,731 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,747 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,747 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,747 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls -2020-03-04 12:26:01,747 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,747 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,747 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +2020-03-06 10:29:26,682 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,682 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,682 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,698 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:29:26,698 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,698 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,698 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: # just 32-bit x86 installer available @@ -21588,15 +21454,15 @@ smartmontools: locale: en_US reboot: False -2020-03-04 12:26:01,747 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,698 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,762 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.015617609024047852 -2020-03-04 12:26:01,762 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,762 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,762 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls -2020-03-04 12:26:01,762 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,762 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,762 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +2020-03-06 10:29:26,698 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,713 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,713 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,713 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:29:26,713 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,713 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,729 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: # just 32-bit x86 installer available @@ -21612,15 +21478,15 @@ snmptools: locale: en_US reboot: False -2020-03-04 12:26:01,778 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,729 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,778 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.015635967254638672 -2020-03-04 12:26:01,778 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,778 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,778 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls -2020-03-04 12:26:01,793 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,793 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,793 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: +2020-03-06 10:29:26,729 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,729 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,729 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,729 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:29:26,729 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,745 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.01578688621520996 +2020-03-06 10:29:26,745 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: soapui: @@ -21637,15 +21503,15 @@ soapui: reboot: False -2020-03-04 12:26:01,793 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,745 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,793 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,793 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,809 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,809 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls -2020-03-04 12:26:01,809 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,809 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,809 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +2020-03-06 10:29:26,745 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,745 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,760 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,760 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:29:26,760 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,760 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,760 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: # just 32-bit x86 installer available @@ -21662,15 +21528,15 @@ software-informer: locale: en_US reboot: False -2020-03-04 12:26:01,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,760 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,809 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,825 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,825 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,825 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls -2020-03-04 12:26:01,825 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,825 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,825 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +2020-03-06 10:29:26,776 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.015650272369384766 +2020-03-06 10:29:26,776 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,776 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,776 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:29:26,776 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,838 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.06260180473327637 +2020-03-06 10:29:26,838 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: sourcetree: '2.3.1.0': @@ -21886,15 +21752,15 @@ sourcetree: reboot: False -2020-03-04 12:26:01,840 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,854 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,840 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.015625953674316406 -2020-03-04 12:26:01,840 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,840 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,840 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls -2020-03-04 12:26:01,840 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,856 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.015635251998901367 -2020-03-04 12:26:01,856 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +2020-03-06 10:29:26,854 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.015813589096069336 +2020-03-06 10:29:26,854 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,854 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,854 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:29:26,854 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,870 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.01549839973449707 +2020-03-06 10:29:26,870 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: # just 32-bit x86 installer available @@ -21910,15 +21776,15 @@ spybot-anti-beacon: locale: en_US reboot: False -2020-03-04 12:26:01,856 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,870 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,856 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,856 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,856 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,856 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls -2020-03-04 12:26:01,872 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,872 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,872 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +2020-03-06 10:29:26,870 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,870 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,885 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,885 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:29:26,901 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,901 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,901 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: # just 32-bit x86 installer available @@ -21938,15 +21804,15 @@ spybot: # http://www.spybotupdates.biz/files/spybot-2.4.exe # http://spybot-mirror.com/files/spybot-2.4.exe -2020-03-04 12:26:01,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,901 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,872 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,872 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,872 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,887 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls -2020-03-04 12:26:01,887 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,887 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,887 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +2020-03-06 10:29:26,901 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,901 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,932 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,932 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:29:26,948 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,948 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,948 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -21975,15 +21841,15 @@ sscserv-free: reboot: False -2020-03-04 12:26:01,887 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,964 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,887 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,887 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,903 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,903 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls -2020-03-04 12:26:01,903 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,903 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,918 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +2020-03-06 10:29:26,964 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,964 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,964 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,964 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:29:26,964 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,979 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.015650272369384766 +2020-03-06 10:29:26,979 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: steam: latest: full_name: 'Steam' @@ -21994,15 +21860,15 @@ steam: uninstall_flags: '/S' reboot: False -2020-03-04 12:26:01,918 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,979 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,918 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,918 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,918 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,918 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls -2020-03-04 12:26:01,918 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,934 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.015742778778076172 -2020-03-04 12:26:01,934 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +2020-03-06 10:29:26,979 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:26,979 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:26,979 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:26,995 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:29:26,995 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:26,995 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:26,995 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available stellarium: @@ -22018,15 +21884,15 @@ stellarium: locale: en_US reboot: False -2020-03-04 12:26:01,934 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:26,995 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,934 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,934 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,934 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,934 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls -2020-03-04 12:26:01,934 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,950 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.015518903732299805 -2020-03-04 12:26:01,950 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +2020-03-06 10:29:26,995 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,012 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,012 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,012 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:29:27,012 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,026 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.014516353607177734 +2020-03-06 10:29:27,026 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: strawberryperl_x64: '5.26.1001': @@ -22050,15 +21916,15 @@ strawberryperl_x64: reboot: False -2020-03-04 12:26:01,950 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,026 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,950 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,950 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,950 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,950 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls -2020-03-04 12:26:01,965 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,965 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +2020-03-06 10:29:27,026 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,026 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,026 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,042 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:29:27,042 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,042 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,042 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: strawberryperl_x86: '5.26.1001': @@ -22082,15 +21948,15 @@ strawberryperl_x86: reboot: False -2020-03-04 12:26:01,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,042 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:01,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,981 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls -2020-03-04 12:26:01,981 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:01,981 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:01,981 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +2020-03-06 10:29:27,057 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.015657901763916016 +2020-03-06 10:29:27,057 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,057 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,074 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:29:27,074 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,074 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,074 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: # just 32-bit x86 installer available @@ -22106,15 +21972,15 @@ stunnel: locale: en_US reboot: False -2020-03-04 12:26:01,981 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,089 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:01,997 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.015627384185791016 -2020-03-04 12:26:01,997 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:01,997 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:01,997 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls -2020-03-04 12:26:01,997 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,012 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.01562952995300293 -2020-03-04 12:26:02,012 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +2020-03-06 10:29:27,089 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,089 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,089 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,089 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:29:27,089 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,104 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.015655994415283203 +2020-03-06 10:29:27,104 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: subinacl: '5.2.3790.1164': full_name: 'Windows Resource Kit Tools - SubInAcl.exe' @@ -22126,15 +21992,15 @@ subinacl: locale: en_US reboot: False -2020-03-04 12:26:02,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,104 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,012 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,029 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,029 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,029 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls -2020-03-04 12:26:02,029 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,029 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,043 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: +2020-03-06 10:29:27,104 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,104 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,104 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,120 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:29:27,120 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,120 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,120 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: @@ -22149,15 +22015,15 @@ sumatrapdf: locale: en_US reboot: False -2020-03-04 12:26:02,043 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,120 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,043 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,043 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,043 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,043 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls -2020-03-04 12:26:02,043 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,059 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.015623807907104492 -2020-03-04 12:26:02,059 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +2020-03-06 10:29:27,120 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,136 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,136 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,136 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:29:27,136 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,136 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,136 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: svn: '1.8.13': full_name: 'Subversion' @@ -22178,15 +22044,15 @@ svn: locale: en_US reboot: False -2020-03-04 12:26:02,059 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,152 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,059 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,059 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,059 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,059 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls -2020-03-04 12:26:02,059 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,075 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.016412019729614258 -2020-03-04 12:26:02,075 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +2020-03-06 10:29:27,152 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.01642608642578125 +2020-03-06 10:29:27,152 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,152 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,152 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:29:27,152 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,167 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.014866828918457031 +2020-03-06 10:29:27,167 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: # just 32-bit x86 installer available @@ -22206,15 +22072,15 @@ teamviewer: locale: en_US reboot: False -2020-03-04 12:26:02,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,167 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,075 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,075 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,075 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,075 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls -2020-03-04 12:26:02,090 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,090 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,090 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +2020-03-06 10:29:27,167 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,167 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,167 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,167 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:29:27,183 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,183 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,183 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: # just 32-bit x86 installer available @@ -22234,15 +22100,15 @@ teamviewer_host: locale: en_US reboot: False -2020-03-04 12:26:02,090 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,183 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,090 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,090 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,106 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,106 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls -2020-03-04 12:26:02,106 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,106 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,106 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +2020-03-06 10:29:27,183 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,183 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,198 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,198 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:29:27,198 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,198 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,198 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: # just 32-bit x86 installer available @@ -22261,15 +22127,15 @@ teracopy: locale: en_US reboot: False -2020-03-04 12:26:02,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,198 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,106 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,122 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,122 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,122 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls -2020-03-04 12:26:02,122 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,122 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,122 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +2020-03-06 10:29:27,198 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,214 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,214 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,214 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:29:27,214 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,214 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,214 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: # just 32-bit x86 installer available @@ -22285,15 +22151,15 @@ texmaker: locale: en_US reboot: False -2020-03-04 12:26:02,122 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,230 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,122 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,137 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls -2020-03-04 12:26:02,137 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,137 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,137 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: +2020-03-06 10:29:27,230 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,230 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,230 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,230 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:29:27,230 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,245 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.01565861701965332 +2020-03-06 10:29:27,245 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: texniccenter: '2.02 Stable': @@ -22308,15 +22174,15 @@ texniccenter: locale: en_US reboot: False -2020-03-04 12:26:02,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,245 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.015627384185791016 -2020-03-04 12:26:02,153 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,153 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,153 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls -2020-03-04 12:26:02,153 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,153 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +2020-03-06 10:29:27,245 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,245 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,245 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,245 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:29:27,245 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,261 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.01564311981201172 +2020-03-06 10:29:27,261 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: # just 32-bit x86 installer available @@ -22332,15 +22198,15 @@ texstudio: locale: en_US reboot: False -2020-03-04 12:26:02,168 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,261 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,168 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,168 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,168 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,168 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls -2020-03-04 12:26:02,168 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,168 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,184 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +2020-03-06 10:29:27,261 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,261 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,261 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,261 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:29:27,277 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,277 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,277 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: # just 32-bit x86 installer available @@ -22356,15 +22222,15 @@ texworks: locale: en_US reboot: False -2020-03-04 12:26:02,184 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,277 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,184 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,184 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,184 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,184 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls -2020-03-04 12:26:02,184 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,200 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.015627622604370117 -2020-03-04 12:26:02,200 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +2020-03-06 10:29:27,277 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,277 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,292 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,292 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:29:27,292 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,292 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,292 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: # just 32-bit x86 installer available @@ -22642,15 +22508,15 @@ thunderbird: reboot: False -2020-03-04 12:26:02,200 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,308 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,215 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.015631437301635742 -2020-03-04 12:26:02,215 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,215 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,215 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls -2020-03-04 12:26:02,215 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,231 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.015619277954101562 -2020-03-04 12:26:02,231 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +2020-03-06 10:29:27,308 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.015645742416381836 +2020-03-06 10:29:27,308 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,308 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,323 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:29:27,323 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,340 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.016884565353393555 +2020-03-06 10:29:27,340 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: tightvnc: @@ -22766,15 +22632,15 @@ tightvnc: reboot: False -2020-03-04 12:26:02,231 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,340 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,231 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,231 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,247 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,247 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls -2020-03-04 12:26:02,247 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,247 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,247 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +2020-03-06 10:29:27,340 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,355 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,355 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,355 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:29:27,355 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,355 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,370 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: todotxt.net: 'Not Found': # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22790,15 +22656,15 @@ todotxt.net: locale: en_US reboot: False -2020-03-04 12:26:02,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,370 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,247 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,262 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls -2020-03-04 12:26:02,262 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,262 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,278 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +2020-03-06 10:29:27,370 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,370 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,386 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,386 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:29:27,386 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,386 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,386 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22814,15 +22680,15 @@ todour: locale: en_US reboot: False -2020-03-04 12:26:02,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,402 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,278 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,293 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,293 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,293 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls -2020-03-04 12:26:02,293 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,293 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,293 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +2020-03-06 10:29:27,402 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,402 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,402 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,402 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:29:27,402 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,417 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.015652894973754883 +2020-03-06 10:29:27,417 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: # just 32-bit x86 installer available @@ -22839,15 +22705,15 @@ tortoise-bzr: locale: en_US reboot: False -2020-03-04 12:26:02,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,417 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,309 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.015624284744262695 -2020-03-04 12:26:02,309 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,309 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,309 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls -2020-03-04 12:26:02,309 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,325 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.015645503997802734 -2020-03-04 12:26:02,325 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +2020-03-06 10:29:27,417 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,417 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,417 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,433 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:29:27,433 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,450 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.01683330535888672 +2020-03-06 10:29:27,450 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: # Source: https://tortoisegit.org/ tortoise-git: @@ -23008,15 +22874,15 @@ tortoise-git: reboot: False -2020-03-04 12:26:02,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,450 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,325 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,325 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,325 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,340 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls -2020-03-04 12:26:02,340 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,340 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,340 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +2020-03-06 10:29:27,450 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,464 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,464 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,464 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:29:27,464 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,480 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.015626192092895508 +2020-03-06 10:29:27,480 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: # Source: http://tortoisehg.bitbucket.org/ tortoise-hg: '3.6.2': @@ -23044,15 +22910,15 @@ tortoise-hg: # Need to download from source site above, so it will append proper aws key credentials # place downloaded msi in master's win_repo-ng -2020-03-04 12:26:02,340 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,480 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,340 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,356 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,356 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,356 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls -2020-03-04 12:26:02,356 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,356 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,356 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +2020-03-06 10:29:27,480 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,496 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,496 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,496 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:29:27,496 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,511 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.015648365020751953 +2020-03-06 10:29:27,511 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: # Source: http://tortoisesvn.net/ tortoise-svn: '1.9.27285': @@ -23068,15 +22934,15 @@ tortoise-svn: reboot: False -2020-03-04 12:26:02,356 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,511 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,356 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,356 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,372 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,372 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls -2020-03-04 12:26:02,372 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,372 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,372 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +2020-03-06 10:29:27,511 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,511 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,527 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,527 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:29:27,527 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,527 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,527 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: # just 32-bit x86 installer available @@ -23092,15 +22958,15 @@ truecrypt: locale: en_US reboot: False -2020-03-04 12:26:02,372 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,543 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,372 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,372 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,372 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,387 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls -2020-03-04 12:26:02,387 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,387 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,387 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +2020-03-06 10:29:27,543 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,543 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,543 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,543 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:29:27,543 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,559 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.01679515838623047 +2020-03-06 10:29:27,559 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ultradefrag: @@ -23116,15 +22982,15 @@ ultradefrag: locale: en_US reboot: False -2020-03-04 12:26:02,387 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,559 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,387 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,387 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,403 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,403 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls -2020-03-04 12:26:02,403 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,403 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,403 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +2020-03-06 10:29:27,559 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,559 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,574 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,574 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:29:27,574 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,590 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.015677213668823242 +2020-03-06 10:29:27,590 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available urlrewrite: @@ -23151,15 +23017,15 @@ urlrewrite: locale: en_US reboot: False -2020-03-04 12:26:02,403 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,590 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,418 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.015625476837158203 -2020-03-04 12:26:02,418 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,418 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,418 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls -2020-03-04 12:26:02,418 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,418 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,418 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +2020-03-06 10:29:27,590 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,605 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,605 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,605 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:29:27,621 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,621 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,621 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: usbdlm: '5.2.7.0': @@ -23173,15 +23039,15 @@ usbdlm: locale: en_US reboot: False -2020-03-04 12:26:02,418 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,621 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,434 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.015625476837158203 -2020-03-04 12:26:02,434 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,434 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,434 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls -2020-03-04 12:26:02,434 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,450 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.015630483627319336 -2020-03-04 12:26:02,450 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +2020-03-06 10:29:27,636 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.015647172927856445 +2020-03-06 10:29:27,636 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,636 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,636 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:29:27,652 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,668 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.015662431716918945 +2020-03-06 10:29:27,668 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: vagrant: @@ -23687,15 +23553,15 @@ vagrant: reboot: False -2020-03-04 12:26:02,465 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,699 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,465 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.015628337860107422 -2020-03-04 12:26:02,465 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,465 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,465 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls -2020-03-04 12:26:02,465 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,465 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,481 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +2020-03-06 10:29:27,699 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.015671968460083008 +2020-03-06 10:29:27,715 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,715 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,715 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:29:27,730 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,730 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,730 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: vcforpython27: '9.0.1.30729': full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' @@ -23707,15 +23573,15 @@ vcforpython27: locale: en_US reboot: False -2020-03-04 12:26:02,481 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,730 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,481 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,481 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,481 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,481 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls -2020-03-04 12:26:02,481 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,497 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.015625953674316406 -2020-03-04 12:26:02,497 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: +2020-03-06 10:29:27,746 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.01582789421081543 +2020-03-06 10:29:27,746 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,746 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,762 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:29:27,762 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,777 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.015689611434936523 +2020-03-06 10:29:27,777 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: @@ -23747,15 +23613,15 @@ vcxsrv: reboot: False -2020-03-04 12:26:02,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,777 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,497 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,497 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,497 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,497 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls -2020-03-04 12:26:02,497 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,513 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.016701459884643555 -2020-03-04 12:26:02,513 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: +2020-03-06 10:29:27,777 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,794 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,794 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,794 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:29:27,794 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,809 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.01474142074584961 +2020-03-06 10:29:27,809 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: verysleepy: @@ -23770,15 +23636,15 @@ verysleepy: locale: en_US reboot: False -2020-03-04 12:26:02,513 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,513 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,513 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,513 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,513 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls -2020-03-04 12:26:02,513 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,528 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.014551877975463867 -2020-03-04 12:26:02,528 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +2020-03-06 10:29:27,809 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,809 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,824 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,824 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:29:27,824 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,824 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:27,840 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -23809,15 +23675,15 @@ veyon: reboot: False -2020-03-04 12:26:02,528 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,840 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,528 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,528 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,528 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,528 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls -2020-03-04 12:26:02,528 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,544 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.01562952995300293 -2020-03-04 12:26:02,544 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +2020-03-06 10:29:27,840 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,840 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,840 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,840 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:29:27,855 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,871 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.015665292739868164 +2020-03-06 10:29:27,871 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: # Version 5.1 and older are no longer supported by Oracle # https://www.virtualbox.org/wiki/Download_Old_Builds @@ -23880,15 +23746,15 @@ virtualbox: reboot: False -2020-03-04 12:26:02,544 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,871 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,559 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.015610456466674805 -2020-03-04 12:26:02,559 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,559 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,559 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls -2020-03-04 12:26:02,559 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,559 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,559 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: +2020-03-06 10:29:27,871 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,887 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,887 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,887 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:29:27,887 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,904 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.016768932342529297 +2020-03-06 10:29:27,904 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: @@ -23923,15 +23789,15 @@ viscosity: reboot: False -2020-03-04 12:26:02,575 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,904 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:26:02,575 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.015642166137695312 -2020-03-04 12:26:02,575 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,575 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,575 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls -2020-03-04 12:26:02,575 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,575 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,575 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +2020-03-06 10:29:27,904 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,919 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,919 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,919 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:29:27,919 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,934 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.015176773071289062 +2020-03-06 10:29:27,934 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: #Vivaldi is a Chromium-based browser #https://vivaldi.com @@ -23950,15 +23816,15 @@ vivaldi: locale: en_US reboot: False -2020-03-04 12:26:02,590 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,949 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,590 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,590 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,590 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,590 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls -2020-03-04 12:26:02,590 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,590 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,606 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +2020-03-06 10:29:27,949 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,949 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:27,965 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:27,965 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:29:27,965 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:27,981 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.016475200653076172 +2020-03-06 10:29:27,981 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available vlc: @@ -24108,15 +23974,15 @@ vlc: reboot: False -2020-03-04 12:26:02,606 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:27,996 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,606 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,606 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,606 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,606 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls -2020-03-04 12:26:02,606 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,622 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.015628576278686523 -2020-03-04 12:26:02,622 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +2020-03-06 10:29:27,996 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:27,996 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,012 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,012 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:29:28,028 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,028 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,028 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: vs-community: 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) full_name: @@ -24135,15 +24001,15 @@ vs-community: --norestart reboot: False -2020-03-04 12:26:02,622 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,028 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,622 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,622 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,622 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,622 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls -2020-03-04 12:26:02,637 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,637 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,637 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +2020-03-06 10:29:28,043 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.01560354232788086 +2020-03-06 10:29:28,043 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,043 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,043 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:29:28,043 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,059 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.015650510787963867 +2020-03-06 10:29:28,059 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: # due to winrepo installer limitations you need to manually download x86 + x64 System installer from # https://code.visualstudio.com/Download # and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... @@ -24219,15 +24085,15 @@ vscode: -2020-03-04 12:26:02,637 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,637 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,637 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,653 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,653 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls -2020-03-04 12:26:02,653 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,653 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,653 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +2020-03-06 10:29:28,075 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,075 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,075 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,075 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:29:28,091 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,091 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,106 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: vsee: '15.0.0.707': full_name: 'VSee' @@ -24239,15 +24105,15 @@ vsee: locale: en_US reboot: False -2020-03-04 12:26:02,653 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,653 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,653 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,669 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,669 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls -2020-03-04 12:26:02,669 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,669 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,669 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +2020-03-06 10:29:28,106 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,121 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,121 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,121 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:29:28,121 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,121 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,137 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: vs_remotetools_2017: latest: full_name: 'Remote Tools for Visual Studio 2017' @@ -24262,15 +24128,15 @@ vs_remotetools_2017: locale: en_US reboot: False -2020-03-04 12:26:02,669 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,669 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,669 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,684 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,684 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls -2020-03-04 12:26:02,684 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,684 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,684 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +2020-03-06 10:29:28,137 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,137 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,137 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,137 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:29:28,153 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,153 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,153 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: wamp-server-3: '3.1.3': @@ -24284,15 +24150,15 @@ wamp-server-3: locale: en_US reboot: False -2020-03-04 12:26:02,684 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,684 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,684 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,684 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,684 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls -2020-03-04 12:26:02,700 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,700 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,700 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: +2020-03-06 10:29:28,153 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,170 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,170 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,170 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:29:28,170 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,184 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.014274835586547852 +2020-03-06 10:29:28,184 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: wamp-stack: @@ -24318,15 +24184,15 @@ wamp-stack: reboot: False -2020-03-04 12:26:02,700 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,184 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,700 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,700 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,700 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,700 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls -2020-03-04 12:26:02,715 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,715 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,715 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +2020-03-06 10:29:28,184 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,184 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,184 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,200 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:29:28,200 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,200 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,200 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: webdeploy: '3.1237.1764': full_name: 'Microsoft Web Deploy 3.5' @@ -24340,15 +24206,15 @@ webdeploy: locale: en_US reboot: False -2020-03-04 12:26:02,715 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,200 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,715 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,715 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,715 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,715 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls -2020-03-04 12:26:02,715 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,732 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.01665663719177246 -2020-03-04 12:26:02,732 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +2020-03-06 10:29:28,215 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.014852046966552734 +2020-03-06 10:29:28,215 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,215 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,215 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:29:28,215 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,231 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.015663862228393555 +2020-03-06 10:29:28,231 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: webplatforminstaller: '5.0.50430.0': full_name: 'Microsoft Web Platform Installer 5.0' @@ -24362,15 +24228,15 @@ webplatforminstaller: locale: en_US reboot: False -2020-03-04 12:26:02,732 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,231 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,732 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,732 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,732 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,732 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls -2020-03-04 12:26:02,732 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,747 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.014592170715332031 -2020-03-04 12:26:02,747 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +2020-03-06 10:29:28,231 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,231 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,231 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,247 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:29:28,247 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,247 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,247 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: # Source: http://winappmanager.herokuapp.com/ @@ -24386,15 +24252,15 @@ win-app-manager: locale: en_US reboot: False -2020-03-04 12:26:02,747 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,747 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,747 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,747 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,747 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls -2020-03-04 12:26:02,747 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,747 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,762 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: +2020-03-06 10:29:28,262 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.015637636184692383 +2020-03-06 10:29:28,262 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,262 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,262 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:29:28,262 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,278 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.015665531158447266 +2020-03-06 10:29:28,278 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: @@ -24409,15 +24275,15 @@ windirstat: locale: en_US reboot: False -2020-03-04 12:26:02,762 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,762 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,762 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,762 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,762 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls -2020-03-04 12:26:02,762 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,762 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,778 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +2020-03-06 10:29:28,278 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,278 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,294 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,294 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:29:28,294 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,294 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,294 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: winhttpcertcfg: '5.2.3790.1060': full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' @@ -24429,15 +24295,15 @@ winhttpcertcfg: locale: en_US reboot: False -2020-03-04 12:26:02,778 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,778 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,778 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,778 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,778 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls -2020-03-04 12:26:02,778 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,795 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.01663661003112793 -2020-03-04 12:26:02,795 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: +2020-03-06 10:29:28,309 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.015639781951904297 +2020-03-06 10:29:28,309 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,309 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,309 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:29:28,309 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,325 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.015623807907104492 +2020-03-06 10:29:28,325 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: @@ -24465,15 +24331,15 @@ winmerge: reboot: False -2020-03-04 12:26:02,795 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,795 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,795 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,795 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,795 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls -2020-03-04 12:26:02,795 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,809 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.014623403549194336 -2020-03-04 12:26:02,809 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +2020-03-06 10:29:28,325 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,341 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,341 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,341 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:29:28,341 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,356 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.014738798141479492 +2020-03-06 10:29:28,356 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: winmtr: '0.92': @@ -24491,15 +24357,15 @@ winmtr: # download exe from winmtr.net # create two installers using http://www.ssesetup.com/ -2020-03-04 12:26:02,809 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,356 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,809 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,809 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,809 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,809 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls -2020-03-04 12:26:02,825 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,825 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,825 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +2020-03-06 10:29:28,356 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,356 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,372 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,372 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:29:28,372 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,372 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,372 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: winpcap: '4.1.0.2980': full_name: 'WinPcap 4.1.3' @@ -24511,15 +24377,15 @@ winpcap: locale: en_US reboot: False -2020-03-04 12:26:02,825 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,372 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,825 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,825 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,825 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,825 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls -2020-03-04 12:26:02,840 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,840 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,840 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +2020-03-06 10:29:28,387 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.015650510787963867 +2020-03-06 10:29:28,387 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,387 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,387 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:29:28,387 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,403 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.015635967254638672 +2020-03-06 10:29:28,403 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: #if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) @@ -24554,15 +24420,15 @@ winrar: -2020-03-04 12:26:02,840 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,403 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,840 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,840 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,856 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,856 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls -2020-03-04 12:26:02,856 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,856 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,856 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: +2020-03-06 10:29:28,419 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.01565408706665039 +2020-03-06 10:29:28,419 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,419 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,419 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:29:28,434 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,434 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,434 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: @@ -24829,15 +24695,15 @@ winscp: reboot: False -2020-03-04 12:26:02,872 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,450 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,872 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.015623807907104492 -2020-03-04 12:26:02,872 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,872 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,872 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls -2020-03-04 12:26:02,872 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,887 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.015627384185791016 -2020-03-04 12:26:02,887 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +2020-03-06 10:29:28,450 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,467 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,467 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,467 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:29:28,467 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,481 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.014687538146972656 +2020-03-06 10:29:28,481 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available wireshark: @@ -25359,15 +25225,15 @@ wireshark: reboot: False -2020-03-04 12:26:02,887 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,497 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,903 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.01563405990600586 -2020-03-04 12:26:02,903 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,903 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,903 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls -2020-03-04 12:26:02,903 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,903 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,903 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +2020-03-06 10:29:28,497 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.01563286781311035 +2020-03-06 10:29:28,497 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,513 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,513 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:29:28,513 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,513 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,513 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: # source: http://www.kls-soft.com/wscc/ wscc: '2.5.0.4': @@ -25382,15 +25248,15 @@ wscc: locale: en_US reboot: False -2020-03-04 12:26:02,903 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,528 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,919 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.015614748001098633 -2020-03-04 12:26:02,919 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,919 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,919 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls -2020-03-04 12:26:02,919 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,939 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.020610332489013672 -2020-03-04 12:26:02,939 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +2020-03-06 10:29:28,528 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,528 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,528 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,545 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:29:28,545 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,560 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.01491856575012207 +2020-03-06 10:29:28,560 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: # Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 # https://github.com/zeffy/wufuc @@ -25412,15 +25278,15 @@ wufuc: reboot: False -2020-03-04 12:26:02,939 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,560 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,939 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,950 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,950 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,950 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls -2020-03-04 12:26:02,950 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,950 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,950 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +2020-03-06 10:29:28,560 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,575 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,575 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,575 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:29:28,575 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,575 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,591 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: xampp: '7.2.6.0': full_name: 'XAMPP 7.2.6' @@ -25432,15 +25298,15 @@ xampp: locale: en_US reboot: False -2020-03-04 12:26:02,950 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,591 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,950 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,965 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,965 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,965 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls -2020-03-04 12:26:02,965 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,965 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +2020-03-06 10:29:28,591 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,591 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,591 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,591 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:29:28,607 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,607 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,607 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: # just 32-bit x86 installer available @@ -25457,15 +25323,15 @@ xming: locale: en_US reboot: False -2020-03-04 12:26:02,965 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,607 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,965 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:02,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,981 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,981 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls -2020-03-04 12:26:02,981 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,981 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:02,981 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: +2020-03-06 10:29:28,607 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,622 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,622 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,622 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:29:28,622 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,638 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.015662431716918945 +2020-03-06 10:29:28,638 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: yubikey-manager: @@ -25531,15 +25397,15 @@ yubikey-manager: reboot: False -2020-03-04 12:26:02,997 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,638 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:26:02,997 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.015627622604370117 -2020-03-04 12:26:02,997 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:02,997 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:02,997 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls -2020-03-04 12:26:02,997 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:02,997 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,012 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +2020-03-06 10:29:28,638 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,654 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,654 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,654 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:29:28,654 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,669 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.014678955078125 +2020-03-06 10:29:28,669 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: yubikey-personalization-tool: '3.1.24': full_name: 'YubiKey Personalization Tool' @@ -25549,15 +25415,15 @@ yubikey-personalization-tool: uninstall_flags: '/S' reboot: False -2020-03-04 12:26:03,012 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,669 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:26:03,012 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,012 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,012 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,012 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls -2020-03-04 12:26:03,012 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,028 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.015628337860107422 -2020-03-04 12:26:03,028 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +2020-03-06 10:29:28,669 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,685 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,685 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,685 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:29:28,685 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,700 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.015655040740966797 +2020-03-06 10:29:28,700 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -25615,11 +25481,11 @@ zabbix-agent: - '4.2.3.2400': + '4.4.1.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25627,11 +25493,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.4.2400': + '4.4.2.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25639,11 +25505,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.5.2400': + '4.4.3.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25651,11 +25517,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.6.2400': + '4.4.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25663,11 +25529,13 @@ zabbix-agent: locale: en_US reboot: False - '4.2.7.2400': + + + '4.2.3.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25675,11 +25543,11 @@ zabbix-agent: locale: en_US reboot: False - '4.2.8.2400': + '4.2.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25687,13 +25555,11 @@ zabbix-agent: locale: en_US reboot: False - - - '4.4.1.2400': + '4.2.5.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25701,11 +25567,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.2.2400': + '4.2.6.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25713,11 +25579,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.3.2400': + '4.2.7.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25725,11 +25591,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.4.2400': + '4.2.8.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25837,15 +25703,15 @@ zabbix-agent: -2020-03-04 12:26:03,044 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: -OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:03,044 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0156252384185791 -2020-03-04 12:26:03,044 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,059 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,059 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls -2020-03-04 12:26:03,059 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,059 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,059 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: +2020-03-06 10:29:28,717 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:29:28,717 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.01641559600830078 +2020-03-06 10:29:28,717 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,717 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,717 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:29:28,732 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,732 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,732 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: zoom: latest: @@ -25857,15 +25723,15 @@ zoom: msiexec: True reboot: False -2020-03-04 12:26:03,059 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,732 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:26:03,059 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,059 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,075 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,075 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls -2020-03-04 12:26:03,075 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,075 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,075 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +2020-03-06 10:29:28,732 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,747 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,747 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,747 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:29:28,747 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,747 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,764 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: # Software Definition File for Elasticsearch Auditbeat # Uses the following associated scripts @@ -25927,15 +25793,15 @@ auditbeat: cache_dir: True -2020-03-04 12:26:03,075 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,764 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,075 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,075 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,091 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,091 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls -2020-03-04 12:26:03,091 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,091 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,091 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +2020-03-06 10:29:28,764 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,764 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,779 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,779 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:29:28,779 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,779 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,779 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: chocolatey: latest: full_name: 'Chocolatey' @@ -25949,15 +25815,15 @@ chocolatey: # https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 -2020-03-04 12:26:03,091 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,779 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,091 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,091 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,106 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,106 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls -2020-03-04 12:26:03,106 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,106 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,106 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: +2020-03-06 10:29:28,779 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,794 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,794 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,794 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:29:28,794 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,810 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.01566028594970703 +2020-03-06 10:29:28,810 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: @@ -25985,15 +25851,15 @@ erlang: reboot: False -2020-03-04 12:26:03,106 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:26:03,122 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.015607833862304688 -2020-03-04 12:26:03,122 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,122 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,122 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls -2020-03-04 12:26:03,122 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,122 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,122 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +2020-03-06 10:29:28,810 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,826 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,826 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,826 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:29:28,826 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,826 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,842 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: # Software Definition File for Elasticsearch Filebeat # Uses the following associated scripts @@ -26055,15 +25921,15 @@ filebeat: cache_dir: True -2020-03-04 12:26:03,137 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,842 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,137 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.01564621925354004 -2020-03-04 12:26:03,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,137 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,137 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls -2020-03-04 12:26:03,137 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,137 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,137 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +2020-03-06 10:29:28,842 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,842 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,842 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,857 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:29:28,857 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,857 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,857 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: # Software Definition File for Elasticsearch Functionbeat # Uses the following associated scripts @@ -26125,15 +25991,15 @@ functionbeat: cache_dir: True -2020-03-04 12:26:03,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,857 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,153 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,153 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,153 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls -2020-03-04 12:26:03,153 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,153 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,170 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +2020-03-06 10:29:28,857 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,872 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,872 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,872 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:29:28,872 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,888 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.015665769577026367 +2020-03-06 10:29:28,888 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: # just 32-bit x86 installer available @@ -26232,15 +26098,15 @@ gpg4win: reboot: False -2020-03-04 12:26:03,170 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,888 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:26:03,170 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,170 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,170 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,170 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls -2020-03-04 12:26:03,170 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,184 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.014532089233398438 -2020-03-04 12:26:03,184 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +2020-03-06 10:29:28,888 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,888 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,904 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,904 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:29:28,904 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,904 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,904 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: # Software Definition File for Elasticsearch Heartbeat # Uses the following associated scripts @@ -26302,15 +26168,15 @@ heartbeat: cache_dir: True -2020-03-04 12:26:03,184 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,904 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,184 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,184 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,184 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,184 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls -2020-03-04 12:26:03,200 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,200 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,200 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +2020-03-06 10:29:28,919 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.015657424926757812 +2020-03-06 10:29:28,919 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,919 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,919 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:29:28,919 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,936 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.016649723052978516 +2020-03-06 10:29:28,936 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: # Software Definition File for Elasticsearch Metricbeat # Uses the following associated scripts @@ -26372,15 +26238,15 @@ metricbeat: cache_dir: True -2020-03-04 12:26:03,200 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,936 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,200 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,221 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,221 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,221 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls -2020-03-04 12:26:03,221 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,231 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.01022648811340332 -2020-03-04 12:26:03,231 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +2020-03-06 10:29:28,936 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,936 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,951 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,951 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:29:28,951 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,951 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,967 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: # Software Definition File for Elasticsearch Packetbeat # Uses the following associated scripts @@ -26442,15 +26308,15 @@ packetbeat: cache_dir: True -2020-03-04 12:26:03,231 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,967 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,231 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,231 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,231 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,231 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls -2020-03-04 12:26:03,231 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,247 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.01562643051147461 -2020-03-04 12:26:03,247 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: +2020-03-06 10:29:28,967 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:28,967 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,967 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,982 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:29:28,982 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:28,982 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:28,982 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: @@ -26469,15 +26335,15 @@ pycharm-pro: reboot: False -2020-03-04 12:26:03,247 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:28,982 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:26:03,247 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,247 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,247 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,247 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls -2020-03-04 12:26:03,247 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,262 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.015627384185791016 -2020-03-04 12:26:03,262 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +2020-03-06 10:29:28,999 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.016489028930664062 +2020-03-06 10:29:28,999 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:28,999 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:28,999 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:29:28,999 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:29,013 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.014796257019042969 +2020-03-06 10:29:29,013 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: # just 32-bit x86 installer available @@ -26492,15 +26358,15 @@ stayawake: uninstall_flags: '/S' -2020-03-04 12:26:03,262 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:29,013 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) -2020-03-04 12:26:03,262 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,262 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,278 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,278 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls -2020-03-04 12:26:03,278 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,278 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,278 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +2020-03-06 10:29:29,013 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:29,013 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:29,029 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:29,029 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:29:29,029 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:29,029 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:29,029 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: # Software Definition File for Elasticsearch Winlogbeat # Uses the following associated scripts @@ -26562,31 +26428,31 @@ winlogbeat: cache_dir: True -2020-03-04 12:26:03,278 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:29,029 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,278 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,294 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,294 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,294 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls -2020-03-04 12:26:03,294 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,294 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,294 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +2020-03-06 10:29:29,045 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.015608787536621094 +2020-03-06 10:29:29,045 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:29,045 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:29,045 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:29:29,045 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:29,045 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:29,061 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: ############################################################# # Windows ############################################################# # -2020-03-04 12:26:03,294 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:29,061 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: {} -2020-03-04 12:26:03,294 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,309 [salt.loaded.int.module.win_pkg:1213][DEBUG ][4888] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing -2020-03-04 12:26:03,309 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:03,309 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:03,309 [salt.template :59 ][DEBUG ][4888] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls -2020-03-04 12:26:03,309 [salt.utils.jinja :85 ][DEBUG ][4888] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:26:03,309 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:26:03,325 [salt.template :120 ][DEBUG ][4888] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +2020-03-06 10:29:29,061 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:29,061 [salt.loaded.int.module.win_pkg:1217][DEBUG ][4476] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:29:29,061 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:29,061 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:29,061 [salt.template :59 ][DEBUG ][4476] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:29:29,076 [salt.utils.jinja :85 ][DEBUG ][4476] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:29:29,076 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:29:29,076 [salt.template :120 ][DEBUG ][4476] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: # only 32-bit (x86) installer available @@ -26620,1265 +26486,465 @@ zipinstaller: # as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache # -2020-03-04 12:26:03,325 [salt.loaded.int.render.yaml:80 ][DEBUG ][4888] Results of YAML rendering: +2020-03-06 10:29:29,076 [salt.loaded.int.render.yaml:80 ][DEBUG ][4476] Results of YAML rendering: OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) -2020-03-04 12:26:03,325 [salt.template :26 ][PROFILE ][4888] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:26:03,341 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 12:26:03,341 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 12:26:03,372 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: Volume in drive C is Windows 2016 +2020-03-06 10:29:29,076 [salt.template :30 ][PROFILE ][4476] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:29:29,107 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:29:29,107 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:29:29,138 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: Volume in drive C is Windows 2016 Volume Serial Number is 3CE2-368C Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng -03/04/2020 03:25 PM . -03/04/2020 03:25 PM .. -03/04/2020 03:25 PM 927 7zip.sls -03/04/2020 03:25 PM 723 activeperl_x64.sls -03/04/2020 03:25 PM 973 activeperl_x86.sls -03/04/2020 03:25 PM 798 adobeair.sls -03/04/2020 03:25 PM 956 adobereader-dc-classic.sls -03/04/2020 03:25 PM 851 adobereader-xi.sls -03/04/2020 03:25 PM 830 adobereader.sls -03/04/2020 03:25 PM 589 adobeshockwaveplayer.sls -03/04/2020 03:25 PM 775 adv-ip-scanner.sls -03/04/2020 03:25 PM 787 adv-port-scanner.sls -03/04/2020 03:25 PM 769 advancedlogging.sls -03/04/2020 03:25 PM 373 anydesk-msi.sls -03/04/2020 03:25 PM 597 anydesk.sls -03/04/2020 03:25 PM 803 applicationrequestrouting.sls -03/04/2020 03:25 PM 370 aspnet-mvc1.sls -03/04/2020 03:25 PM 439 atom.sls -03/04/2020 03:25 PM 655 audacity.sls -03/04/2020 03:25 PM auditbeat -03/04/2020 03:25 PM 1,768 autohotkey.sls -03/04/2020 03:25 PM 611 autoit.sls -03/04/2020 03:25 PM 670 autopsy.sls -03/04/2020 03:25 PM 659 awscli.sls -03/04/2020 03:25 PM 799 azuredatastudio.sls -03/04/2020 03:25 PM 422 bandizip.sls -03/04/2020 03:25 PM 563 belarc-advisor.sls -03/04/2020 03:25 PM 367 bginfo4x.sls -03/04/2020 03:25 PM 547 bitnami-nginxstack.sls -03/04/2020 03:25 PM 568 bitvise.sls -03/04/2020 03:25 PM 777 blender.sls -03/04/2020 03:25 PM 395 bootracer.sls -03/04/2020 03:25 PM 664 bulkrenameutility.sls -03/04/2020 03:25 PM 661 bulk_extractor.sls -03/04/2020 03:25 PM 476 ccleaner-slim.sls -03/04/2020 03:25 PM 445 ccleaner.sls -03/04/2020 03:25 PM 606 cdburnerxp.sls -03/04/2020 03:25 PM 594 cdroller.sls -03/04/2020 03:25 PM 658 check-mk-agent-msi.sls -03/04/2020 03:25 PM 451 check-mk-agent.sls -03/04/2020 03:25 PM chocolatey -03/04/2020 03:25 PM 394 chrome-rdp.sls -03/04/2020 03:25 PM 375 chrome.sls -03/04/2020 03:25 PM 1,296 clamav.sls -03/04/2020 03:25 PM 1,200 clamwin.sls -03/04/2020 03:25 PM 500 classicshell.sls -03/04/2020 03:25 PM 1,521 clink.sls -03/04/2020 03:25 PM 617 conemu.sls -03/04/2020 03:25 PM 687 cpu-z.sls -03/04/2020 03:25 PM 2,833 curl.sls -03/04/2020 03:25 PM 374 cyberduck-cli.sls -03/04/2020 03:25 PM 616 cyberduck-msi.sls -03/04/2020 03:25 PM 639 cyberduck.sls -03/04/2020 03:25 PM 751 defraggler.sls -03/04/2020 03:25 PM 2,637 dotnet.sls -03/04/2020 03:25 PM 643 dropbox.sls -03/04/2020 03:25 PM 683 duplicati.sls -03/04/2020 03:25 PM 712 dvdstyler.sls -03/04/2020 03:25 PM 737 echo-desktop.sls -03/04/2020 03:25 PM 1,327 eea.sls -03/04/2020 03:25 PM 423 emet.sls -03/04/2020 03:25 PM 625 emsisoft-anti-malware.sls -03/04/2020 03:25 PM 721 eraser.sls -03/04/2020 03:25 PM erlang -03/04/2020 03:25 PM 982 evernote.sls -03/04/2020 03:25 PM 531 fiddler.sls -03/04/2020 03:25 PM filebeat -03/04/2020 03:25 PM 660 filehippo-app-manager.sls -03/04/2020 03:25 PM 1,271 filezilla.sls -03/04/2020 03:25 PM 1,115 firefox-esr_x64.sls -03/04/2020 03:25 PM 1,396 firefox-esr_x86.sls -03/04/2020 03:25 PM 1,365 firefox_x64.sls -03/04/2020 03:25 PM 1,870 firefox_x86.sls -03/04/2020 03:25 PM functionbeat -03/04/2020 03:25 PM 552 gedit.sls -03/04/2020 03:25 PM 822 gimp.sls -03/04/2020 03:25 PM 953 git-extensions.sls -03/04/2020 03:25 PM 3,855 git.sls -03/04/2020 03:25 PM 848 glarysoft-absolute-uninstaller.sls -03/04/2020 03:25 PM 563 gnucash.sls -03/04/2020 03:25 PM 2,152 golang.sls -03/04/2020 03:25 PM 320 goodsync.sls -03/04/2020 03:25 PM 601 gow.sls -03/04/2020 03:25 PM gpg4win -03/04/2020 03:25 PM 847 gpg4win-light.sls -03/04/2020 03:25 PM 621 gpg4win-vanilla.sls -03/04/2020 03:25 PM 544 graylog-collector-sidecar.sls -03/04/2020 03:25 PM 2,661 grepwin.sls -03/04/2020 03:25 PM 505 gvim.sls -03/04/2020 03:25 PM 622 handbrake.sls -03/04/2020 03:25 PM heartbeat -03/04/2020 03:25 PM 503 hipchat.sls -03/04/2020 03:25 PM 771 hostsfileeditor.sls -03/04/2020 03:25 PM 623 hwinfo.sls -03/04/2020 03:25 PM 339 ice.sls -03/04/2020 03:25 PM 493 icecast.sls -03/04/2020 03:25 PM 377 icloud.sls -03/04/2020 03:25 PM 2,197 iismediaservices.sls -03/04/2020 03:25 PM 358 influx-capacitor.sls -03/04/2020 03:25 PM 644 inkscape.sls -03/04/2020 03:25 PM 646 intellij-community.sls -03/04/2020 03:25 PM 618 intellij-ultimate.sls -03/04/2020 03:25 PM 360 internet-evidence-finder.sls -03/04/2020 03:25 PM 702 irfanview-plugins.sls -03/04/2020 03:25 PM 1,610 irfanview.sls -03/04/2020 03:25 PM 697 isapirewrite-lite.sls -03/04/2020 03:25 PM 2,602 itunes.sls -03/04/2020 03:25 PM 1,279 jdk8.sls -03/04/2020 03:25 PM 1,200 jre.sls -03/04/2020 03:25 PM 1,480 jre8.sls -03/04/2020 03:25 PM 995 jungledisk-server-management.sls -03/04/2020 03:25 PM 891 jungledisk-server.sls -03/04/2020 03:25 PM 921 jungledisk-workgroup.sls -03/04/2020 03:25 PM 518 kdiff3.sls -03/04/2020 03:25 PM 1,091 keepass-2x.sls -03/04/2020 03:25 PM 2,655 keepass.sls -03/04/2020 03:25 PM 673 lastpass.sls -03/04/2020 03:25 PM 1,329 lazarus.sls -03/04/2020 03:25 PM 951 libreoffice.sls -03/04/2020 03:25 PM 419 logparser.sls -03/04/2020 03:25 PM 2,627 maas360bootanalyzer.sls -03/04/2020 03:25 PM 722 malwarebytes.sls -03/04/2020 03:25 PM 1,884 mariadb.sls -03/04/2020 03:25 PM 653 mercurial.sls -03/04/2020 03:25 PM 649 messageanalyzer.sls -03/04/2020 03:25 PM metricbeat -03/04/2020 03:25 PM 603 microsoft-build-tools.sls -03/04/2020 03:25 PM 317 mikogo.sls -03/04/2020 03:25 PM 766 miktex-basic.sls -03/04/2020 03:25 PM 787 mongodb.sls -03/04/2020 03:25 PM 831 ms-mbsa.sls -03/04/2020 03:25 PM 419 ms-vcpp-2005-atl-redist_x64.sls -03/04/2020 03:25 PM 413 ms-vcpp-2005-atl-redist_x86.sls -03/04/2020 03:25 PM 412 ms-vcpp-2005-redist_x64.sls -03/04/2020 03:25 PM 406 ms-vcpp-2005-redist_x86.sls -03/04/2020 03:25 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls -03/04/2020 03:25 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls -03/04/2020 03:25 PM 416 ms-vcpp-2005-sp1-redist_x64.sls -03/04/2020 03:25 PM 410 ms-vcpp-2005-sp1-redist_x86.sls -03/04/2020 03:25 PM 434 ms-vcpp-2008-redist_x64.sls -03/04/2020 03:25 PM 434 ms-vcpp-2008-redist_x86.sls -03/04/2020 03:25 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls -03/04/2020 03:25 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls -03/04/2020 03:25 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls -03/04/2020 03:25 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls -03/04/2020 03:25 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls -03/04/2020 03:25 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls -03/04/2020 03:25 PM 493 ms-vcpp-2012-redist_x64.sls -03/04/2020 03:25 PM 495 ms-vcpp-2012-redist_x86.sls -03/04/2020 03:25 PM 503 ms-vcpp-2013-redist_x64.sls -03/04/2020 03:25 PM 503 ms-vcpp-2013-redist_x86.sls -03/04/2020 03:25 PM 481 ms-vcpp-2015-build-tools.sls -03/04/2020 03:25 PM 1,407 ms-vcpp-2015-redist_x64.sls -03/04/2020 03:25 PM 1,407 ms-vcpp-2015-redist_x86.sls -03/04/2020 03:25 PM 1,166 ms-vcpp-2017-redist_x64.sls -03/04/2020 03:25 PM 539 ms-vcpp-2017-redist_x86.sls -03/04/2020 03:25 PM 585 mucommander.sls -03/04/2020 03:25 PM 638 mysql-essential.sls -03/04/2020 03:25 PM 632 mysql-installer-community.sls -03/04/2020 03:25 PM 639 mysql-workbench.sls -03/04/2020 03:25 PM 298 never10.sls -03/04/2020 03:25 PM 929 newrelic-infra.sls -03/04/2020 03:25 PM 526 nextcloud-client.sls -03/04/2020 03:25 PM 584 nmap.sls -03/04/2020 03:25 PM 709 node.js-lts.sls -03/04/2020 03:25 PM 733 node.js.sls -03/04/2020 03:25 PM 368 nomacs.sls -03/04/2020 03:25 PM 985 npp.sls -03/04/2020 03:25 PM 1,252 nsclient.sls -03/04/2020 03:25 PM 826 nsis.sls -03/04/2020 03:25 PM 902 ntp.sls -03/04/2020 03:25 PM 793 nunit-console.sls -03/04/2020 03:25 PM 363 nxlog.sls -03/04/2020 03:25 PM 1,081 octopus-tentacle.sls -03/04/2020 03:25 PM 678 openlp.sls -03/04/2020 03:25 PM 1,192 openoffice.sls -03/04/2020 03:25 PM 2,130 openvpn.sls -03/04/2020 03:25 PM 587 osquery.sls -03/04/2020 03:25 PM 878 ossec-agent.sls -03/04/2020 03:25 PM 590 owncloud.sls -03/04/2020 03:25 PM packetbeat -03/04/2020 03:25 PM 400 pandoc.sls -03/04/2020 03:25 PM 814 parallels-client-15.sls -03/04/2020 03:25 PM 1,709 pass4win.sls -03/04/2020 03:25 PM 378 passware-kit-agent.sls -03/04/2020 03:25 PM 416 passware-kit-forensic.sls -03/04/2020 03:25 PM 656 patchmypc-free.sls -03/04/2020 03:25 PM 638 pdf24creator.sls -03/04/2020 03:25 PM 567 pdfcreator.sls -03/04/2020 03:25 PM 611 peazip.sls -03/04/2020 03:25 PM 812 pgadmin4.sls -03/04/2020 03:25 PM 235 pgina.sls -03/04/2020 03:25 PM 617 pidgin.sls -03/04/2020 03:25 PM 1,898 postgresql.sls -03/04/2020 03:25 PM 997 powerbi-desktop.sls -03/04/2020 03:25 PM 864 powershell-core.sls -03/04/2020 03:25 PM 1,172 prometheus-wmi-exporter.sls -03/04/2020 03:25 PM 1,488 putty.sls -03/04/2020 03:25 PM pycharm-pro -03/04/2020 03:25 PM 567 python2_x64.sls -03/04/2020 03:25 PM 526 python2_x86.sls -03/04/2020 03:25 PM 1,540 python3_x64.sls -03/04/2020 03:25 PM 1,435 python3_x86.sls -03/04/2020 03:25 PM 449 qemu.sls -03/04/2020 03:25 PM 562 queueexplorerpro.sls -03/04/2020 03:25 PM 1,542 quicktime.sls -03/04/2020 03:25 PM 495 rabbitmq.sls -03/04/2020 03:25 PM 379 rakudo-star-no-jit_x86.sls -03/04/2020 03:25 PM 375 rakudo-star_x64.sls -03/04/2020 03:25 PM 888 rasclient.sls -03/04/2020 03:25 PM 444 rdcman.sls -03/04/2020 03:25 PM 609 rocketchat.sls -03/04/2020 03:25 PM 526 rubyinstaller_x64.sls -03/04/2020 03:25 PM 551 rubyinstaller_x86.sls -03/04/2020 03:25 PM 3,719 salt-minion-py2.sls -03/04/2020 03:25 PM 2,050 salt-minion-py3.sls -03/04/2020 03:25 PM 562 sandboxie.sls -03/04/2020 03:25 PM 581 scaleout.sls -03/04/2020 03:25 PM 476 secunia.psi.sls -03/04/2020 03:25 PM 1,190 sensu.sls -03/04/2020 03:25 PM 1,827 sharpdevelop.sls -03/04/2020 03:25 PM 539 skitch.sls -03/04/2020 03:25 PM 1,533 skype-msi.sls -03/04/2020 03:25 PM 708 skype.sls -03/04/2020 03:25 PM 1,244 slack-machine-msi.sls -03/04/2020 03:25 PM 1,023 slack-user-msi.sls -03/04/2020 03:25 PM 329 slack.sls -03/04/2020 03:25 PM 591 smartmontools.sls -03/04/2020 03:25 PM 556 snmptools.sls -03/04/2020 03:25 PM 653 soapui.sls -03/04/2020 03:25 PM 623 software-informer.sls -03/04/2020 03:25 PM 1,039 sourcetree.sls -03/04/2020 03:25 PM 591 spybot-anti-beacon.sls -03/04/2020 03:25 PM 765 spybot.sls -03/04/2020 03:25 PM 664 sscserv-free.sls -03/04/2020 03:25 PM stayawake -03/04/2020 03:25 PM 443 steam.sls -03/04/2020 03:25 PM 658 stellarium.sls -03/04/2020 03:25 PM 540 strawberryperl_x64.sls -03/04/2020 03:25 PM 531 strawberryperl_x86.sls -03/04/2020 03:25 PM 521 stunnel.sls -03/04/2020 03:25 PM 398 subinacl.sls -03/04/2020 03:25 PM 467 sumatrapdf.sls -03/04/2020 03:25 PM 769 svn.sls -03/04/2020 03:25 PM 534 teamviewer.sls -03/04/2020 03:25 PM 549 teamviewer_host.sls -03/04/2020 03:25 PM 749 teracopy.sls -03/04/2020 03:25 PM 491 texmaker.sls -03/04/2020 03:25 PM 709 texniccenter.sls -03/04/2020 03:25 PM 639 texstudio.sls -03/04/2020 03:25 PM 643 texworks.sls -03/04/2020 03:25 PM 937 thunderbird.sls -03/04/2020 03:25 PM 1,014 tightvnc.sls -03/04/2020 03:25 PM 623 todotxt.net.sls -03/04/2020 03:25 PM 551 todour.sls -03/04/2020 03:25 PM 630 tortoise-bzr.sls -03/04/2020 03:25 PM 983 tortoise-git.sls -03/04/2020 03:25 PM 1,367 tortoise-hg.sls -03/04/2020 03:25 PM 897 tortoise-svn.sls -03/04/2020 03:25 PM 503 truecrypt.sls -03/04/2020 03:25 PM 662 ultradefrag.sls -03/04/2020 03:25 PM 1,598 urlrewrite.sls -03/04/2020 03:25 PM 560 usbdlm.sls -03/04/2020 03:25 PM 1,361 vagrant.sls -03/04/2020 03:25 PM 479 vcforpython27.sls -03/04/2020 03:25 PM 820 vcxsrv.sls -03/04/2020 03:25 PM 434 verysleepy.sls -03/04/2020 03:25 PM 611 veyon.sls -03/04/2020 03:25 PM 2,570 virtualbox.sls -03/04/2020 03:25 PM 794 viscosity.sls -03/04/2020 03:25 PM 657 vivaldi.sls -03/04/2020 03:25 PM 739 vlc.sls -03/04/2020 03:25 PM 713 vs-community.sls -03/04/2020 03:25 PM 1,388 vscode.sls -03/04/2020 03:25 PM 325 vsee.sls -03/04/2020 03:25 PM 640 vs_remotetools_2017.sls -03/04/2020 03:25 PM 835 wamp-server-3.sls -03/04/2020 03:25 PM 585 wamp-stack.sls -03/04/2020 03:25 PM 775 webdeploy.sls -03/04/2020 03:25 PM 842 webplatforminstaller.sls -03/04/2020 03:25 PM 610 win-app-manager.sls -03/04/2020 03:25 PM 467 windirstat.sls -03/04/2020 03:25 PM 468 winhttpcertcfg.sls -03/04/2020 03:25 PM winlogbeat -03/04/2020 03:25 PM 618 winmerge.sls -03/04/2020 03:25 PM 737 winmtr.sls -03/04/2020 03:25 PM 288 winpcap.sls -03/04/2020 03:25 PM 825 winrar.sls -03/04/2020 03:25 PM 828 winscp.sls -03/04/2020 03:25 PM 1,136 wireshark.sls -03/04/2020 03:25 PM wmi_provider -03/04/2020 03:25 PM 539 wscc.sls -03/04/2020 03:25 PM 726 wufuc.sls -03/04/2020 03:25 PM 352 xampp.sls -03/04/2020 03:25 PM 649 xming.sls -03/04/2020 03:25 PM 621 yubikey-manager.sls -03/04/2020 03:25 PM 546 yubikey-personalization-tool.sls -03/04/2020 03:25 PM 1,119 zabbix-agent.sls -03/04/2020 03:25 PM zipinstaller -03/04/2020 03:25 PM 278 zoom.sls +03/06/2020 01:29 PM . +03/06/2020 01:29 PM .. +03/06/2020 01:29 PM 927 7zip.sls +03/06/2020 01:29 PM 723 activeperl_x64.sls +03/06/2020 01:29 PM 973 activeperl_x86.sls +03/06/2020 01:29 PM 798 adobeair.sls +03/06/2020 01:29 PM 956 adobereader-dc-classic.sls +03/06/2020 01:29 PM 851 adobereader-xi.sls +03/06/2020 01:29 PM 830 adobereader.sls +03/06/2020 01:29 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:29 PM 775 adv-ip-scanner.sls +03/06/2020 01:29 PM 787 adv-port-scanner.sls +03/06/2020 01:29 PM 769 advancedlogging.sls +03/06/2020 01:29 PM 373 anydesk-msi.sls +03/06/2020 01:29 PM 597 anydesk.sls +03/06/2020 01:29 PM 803 applicationrequestrouting.sls +03/06/2020 01:29 PM 370 aspnet-mvc1.sls +03/06/2020 01:29 PM 439 atom.sls +03/06/2020 01:29 PM 655 audacity.sls +03/06/2020 01:29 PM auditbeat +03/06/2020 01:29 PM 1,768 autohotkey.sls +03/06/2020 01:29 PM 611 autoit.sls +03/06/2020 01:29 PM 670 autopsy.sls +03/06/2020 01:29 PM 659 awscli.sls +03/06/2020 01:29 PM 799 azuredatastudio.sls +03/06/2020 01:29 PM 422 bandizip.sls +03/06/2020 01:29 PM 563 belarc-advisor.sls +03/06/2020 01:29 PM 367 bginfo4x.sls +03/06/2020 01:29 PM 547 bitnami-nginxstack.sls +03/06/2020 01:29 PM 568 bitvise.sls +03/06/2020 01:29 PM 777 blender.sls +03/06/2020 01:29 PM 395 bootracer.sls +03/06/2020 01:29 PM 664 bulkrenameutility.sls +03/06/2020 01:29 PM 661 bulk_extractor.sls +03/06/2020 01:29 PM 476 ccleaner-slim.sls +03/06/2020 01:29 PM 445 ccleaner.sls +03/06/2020 01:29 PM 606 cdburnerxp.sls +03/06/2020 01:29 PM 594 cdroller.sls +03/06/2020 01:29 PM 658 check-mk-agent-msi.sls +03/06/2020 01:29 PM 451 check-mk-agent.sls +03/06/2020 01:29 PM chocolatey +03/06/2020 01:29 PM 394 chrome-rdp.sls +03/06/2020 01:29 PM 375 chrome.sls +03/06/2020 01:29 PM 1,296 clamav.sls +03/06/2020 01:29 PM 1,200 clamwin.sls +03/06/2020 01:29 PM 500 classicshell.sls +03/06/2020 01:29 PM 1,521 clink.sls +03/06/2020 01:29 PM 617 conemu.sls +03/06/2020 01:29 PM 687 cpu-z.sls +03/06/2020 01:29 PM 2,833 curl.sls +03/06/2020 01:29 PM 374 cyberduck-cli.sls +03/06/2020 01:29 PM 616 cyberduck-msi.sls +03/06/2020 01:29 PM 639 cyberduck.sls +03/06/2020 01:29 PM 751 defraggler.sls +03/06/2020 01:29 PM 2,637 dotnet.sls +03/06/2020 01:29 PM 643 dropbox.sls +03/06/2020 01:29 PM 683 duplicati.sls +03/06/2020 01:29 PM 712 dvdstyler.sls +03/06/2020 01:29 PM 737 echo-desktop.sls +03/06/2020 01:29 PM 1,327 eea.sls +03/06/2020 01:29 PM 423 emet.sls +03/06/2020 01:29 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:29 PM 721 eraser.sls +03/06/2020 01:29 PM erlang +03/06/2020 01:29 PM 982 evernote.sls +03/06/2020 01:29 PM 531 fiddler.sls +03/06/2020 01:29 PM filebeat +03/06/2020 01:29 PM 660 filehippo-app-manager.sls +03/06/2020 01:29 PM 1,271 filezilla.sls +03/06/2020 01:29 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:29 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:29 PM 1,365 firefox_x64.sls +03/06/2020 01:29 PM 1,870 firefox_x86.sls +03/06/2020 01:29 PM functionbeat +03/06/2020 01:29 PM 552 gedit.sls +03/06/2020 01:29 PM 822 gimp.sls +03/06/2020 01:29 PM 953 git-extensions.sls +03/06/2020 01:29 PM 3,855 git.sls +03/06/2020 01:29 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:29 PM 563 gnucash.sls +03/06/2020 01:29 PM 2,152 golang.sls +03/06/2020 01:29 PM 320 goodsync.sls +03/06/2020 01:29 PM 601 gow.sls +03/06/2020 01:29 PM gpg4win +03/06/2020 01:29 PM 847 gpg4win-light.sls +03/06/2020 01:29 PM 621 gpg4win-vanilla.sls +03/06/2020 01:29 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:29 PM 2,661 grepwin.sls +03/06/2020 01:29 PM 505 gvim.sls +03/06/2020 01:29 PM 622 handbrake.sls +03/06/2020 01:29 PM heartbeat +03/06/2020 01:29 PM 503 hipchat.sls +03/06/2020 01:29 PM 771 hostsfileeditor.sls +03/06/2020 01:29 PM 623 hwinfo.sls +03/06/2020 01:29 PM 339 ice.sls +03/06/2020 01:29 PM 493 icecast.sls +03/06/2020 01:29 PM 377 icloud.sls +03/06/2020 01:29 PM 2,197 iismediaservices.sls +03/06/2020 01:29 PM 358 influx-capacitor.sls +03/06/2020 01:29 PM 644 inkscape.sls +03/06/2020 01:29 PM 646 intellij-community.sls +03/06/2020 01:29 PM 618 intellij-ultimate.sls +03/06/2020 01:29 PM 360 internet-evidence-finder.sls +03/06/2020 01:29 PM 702 irfanview-plugins.sls +03/06/2020 01:29 PM 1,610 irfanview.sls +03/06/2020 01:29 PM 697 isapirewrite-lite.sls +03/06/2020 01:29 PM 2,602 itunes.sls +03/06/2020 01:29 PM 1,279 jdk8.sls +03/06/2020 01:29 PM 1,200 jre.sls +03/06/2020 01:29 PM 1,480 jre8.sls +03/06/2020 01:29 PM 995 jungledisk-server-management.sls +03/06/2020 01:29 PM 891 jungledisk-server.sls +03/06/2020 01:29 PM 921 jungledisk-workgroup.sls +03/06/2020 01:29 PM 518 kdiff3.sls +03/06/2020 01:29 PM 1,091 keepass-2x.sls +03/06/2020 01:29 PM 2,655 keepass.sls +03/06/2020 01:29 PM 673 lastpass.sls +03/06/2020 01:29 PM 1,329 lazarus.sls +03/06/2020 01:29 PM 951 libreoffice.sls +03/06/2020 01:29 PM 419 logparser.sls +03/06/2020 01:29 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:29 PM 722 malwarebytes.sls +03/06/2020 01:29 PM 1,884 mariadb.sls +03/06/2020 01:29 PM 653 mercurial.sls +03/06/2020 01:29 PM 649 messageanalyzer.sls +03/06/2020 01:29 PM metricbeat +03/06/2020 01:29 PM 603 microsoft-build-tools.sls +03/06/2020 01:29 PM 317 mikogo.sls +03/06/2020 01:29 PM 766 miktex-basic.sls +03/06/2020 01:29 PM 787 mongodb.sls +03/06/2020 01:29 PM 831 ms-mbsa.sls +03/06/2020 01:29 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:29 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:29 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:29 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:29 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:29 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:29 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:29 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:29 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:29 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:29 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:29 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:29 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:29 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:29 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:29 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:29 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:29 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:29 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:29 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:29 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:29 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:29 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:29 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:29 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:29 PM 585 mucommander.sls +03/06/2020 01:29 PM 638 mysql-essential.sls +03/06/2020 01:29 PM 632 mysql-installer-community.sls +03/06/2020 01:29 PM 639 mysql-workbench.sls +03/06/2020 01:29 PM 298 never10.sls +03/06/2020 01:29 PM 929 newrelic-infra.sls +03/06/2020 01:29 PM 526 nextcloud-client.sls +03/06/2020 01:29 PM 584 nmap.sls +03/06/2020 01:29 PM 709 node.js-lts.sls +03/06/2020 01:29 PM 733 node.js.sls +03/06/2020 01:29 PM 368 nomacs.sls +03/06/2020 01:29 PM 985 npp.sls +03/06/2020 01:29 PM 1,252 nsclient.sls +03/06/2020 01:29 PM 826 nsis.sls +03/06/2020 01:29 PM 902 ntp.sls +03/06/2020 01:29 PM 793 nunit-console.sls +03/06/2020 01:29 PM 363 nxlog.sls +03/06/2020 01:29 PM 1,081 octopus-tentacle.sls +03/06/2020 01:29 PM 678 openlp.sls +03/06/2020 01:29 PM 1,192 openoffice.sls +03/06/2020 01:29 PM 2,130 openvpn.sls +03/06/2020 01:29 PM 587 osquery.sls +03/06/2020 01:29 PM 878 ossec-agent.sls +03/06/2020 01:29 PM 590 owncloud.sls +03/06/2020 01:29 PM packetbeat +03/06/2020 01:29 PM 400 pandoc.sls +03/06/2020 01:29 PM 814 parallels-client-15.sls +03/06/2020 01:29 PM 1,709 pass4win.sls +03/06/2020 01:29 PM 378 passware-kit-agent.sls +03/06/2020 01:29 PM 416 passware-kit-forensic.sls +03/06/2020 01:29 PM 656 patchmypc-free.sls +03/06/2020 01:29 PM 638 pdf24creator.sls +03/06/2020 01:29 PM 567 pdfcreator.sls +03/06/2020 01:29 PM 611 peazip.sls +03/06/2020 01:29 PM 812 pgadmin4.sls +03/06/2020 01:29 PM 235 pgina.sls +03/06/2020 01:29 PM 617 pidgin.sls +03/06/2020 01:29 PM 1,898 postgresql.sls +03/06/2020 01:29 PM 997 powerbi-desktop.sls +03/06/2020 01:29 PM 864 powershell-core.sls +03/06/2020 01:29 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:29 PM 1,488 putty.sls +03/06/2020 01:29 PM pycharm-pro +03/06/2020 01:29 PM 567 python2_x64.sls +03/06/2020 01:29 PM 526 python2_x86.sls +03/06/2020 01:29 PM 1,540 python3_x64.sls +03/06/2020 01:29 PM 1,435 python3_x86.sls +03/06/2020 01:29 PM 449 qemu.sls +03/06/2020 01:29 PM 562 queueexplorerpro.sls +03/06/2020 01:29 PM 1,542 quicktime.sls +03/06/2020 01:29 PM 495 rabbitmq.sls +03/06/2020 01:29 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:29 PM 375 rakudo-star_x64.sls +03/06/2020 01:29 PM 888 rasclient.sls +03/06/2020 01:29 PM 444 rdcman.sls +03/06/2020 01:29 PM 609 rocketchat.sls +03/06/2020 01:29 PM 526 rubyinstaller_x64.sls +03/06/2020 01:29 PM 551 rubyinstaller_x86.sls +03/06/2020 01:29 PM 3,719 salt-minion-py2.sls +03/06/2020 01:29 PM 2,050 salt-minion-py3.sls +03/06/2020 01:29 PM 562 sandboxie.sls +03/06/2020 01:29 PM 581 scaleout.sls +03/06/2020 01:29 PM 476 secunia.psi.sls +03/06/2020 01:29 PM 1,190 sensu.sls +03/06/2020 01:29 PM 1,827 sharpdevelop.sls +03/06/2020 01:29 PM 539 skitch.sls +03/06/2020 01:29 PM 1,533 skype-msi.sls +03/06/2020 01:29 PM 708 skype.sls +03/06/2020 01:29 PM 1,244 slack-machine-msi.sls +03/06/2020 01:29 PM 1,023 slack-user-msi.sls +03/06/2020 01:29 PM 329 slack.sls +03/06/2020 01:29 PM 591 smartmontools.sls +03/06/2020 01:29 PM 556 snmptools.sls +03/06/2020 01:29 PM 653 soapui.sls +03/06/2020 01:29 PM 623 software-informer.sls +03/06/2020 01:29 PM 1,039 sourcetree.sls +03/06/2020 01:29 PM 591 spybot-anti-beacon.sls +03/06/2020 01:29 PM 765 spybot.sls +03/06/2020 01:29 PM 664 sscserv-free.sls +03/06/2020 01:29 PM stayawake +03/06/2020 01:29 PM 443 steam.sls +03/06/2020 01:29 PM 658 stellarium.sls +03/06/2020 01:29 PM 540 strawberryperl_x64.sls +03/06/2020 01:29 PM 531 strawberryperl_x86.sls +03/06/2020 01:29 PM 521 stunnel.sls +03/06/2020 01:29 PM 398 subinacl.sls +03/06/2020 01:29 PM 467 sumatrapdf.sls +03/06/2020 01:29 PM 769 svn.sls +03/06/2020 01:29 PM 534 teamviewer.sls +03/06/2020 01:29 PM 549 teamviewer_host.sls +03/06/2020 01:29 PM 749 teracopy.sls +03/06/2020 01:29 PM 491 texmaker.sls +03/06/2020 01:29 PM 709 texniccenter.sls +03/06/2020 01:29 PM 639 texstudio.sls +03/06/2020 01:29 PM 643 texworks.sls +03/06/2020 01:29 PM 937 thunderbird.sls +03/06/2020 01:29 PM 1,014 tightvnc.sls +03/06/2020 01:29 PM 623 todotxt.net.sls +03/06/2020 01:29 PM 551 todour.sls +03/06/2020 01:29 PM 630 tortoise-bzr.sls +03/06/2020 01:29 PM 983 tortoise-git.sls +03/06/2020 01:29 PM 1,367 tortoise-hg.sls +03/06/2020 01:29 PM 897 tortoise-svn.sls +03/06/2020 01:29 PM 503 truecrypt.sls +03/06/2020 01:29 PM 662 ultradefrag.sls +03/06/2020 01:29 PM 1,598 urlrewrite.sls +03/06/2020 01:29 PM 560 usbdlm.sls +03/06/2020 01:29 PM 1,361 vagrant.sls +03/06/2020 01:29 PM 479 vcforpython27.sls +03/06/2020 01:29 PM 820 vcxsrv.sls +03/06/2020 01:29 PM 434 verysleepy.sls +03/06/2020 01:29 PM 611 veyon.sls +03/06/2020 01:29 PM 2,570 virtualbox.sls +03/06/2020 01:29 PM 794 viscosity.sls +03/06/2020 01:29 PM 657 vivaldi.sls +03/06/2020 01:29 PM 739 vlc.sls +03/06/2020 01:29 PM 713 vs-community.sls +03/06/2020 01:29 PM 1,388 vscode.sls +03/06/2020 01:29 PM 325 vsee.sls +03/06/2020 01:29 PM 640 vs_remotetools_2017.sls +03/06/2020 01:29 PM 835 wamp-server-3.sls +03/06/2020 01:29 PM 585 wamp-stack.sls +03/06/2020 01:29 PM 775 webdeploy.sls +03/06/2020 01:29 PM 842 webplatforminstaller.sls +03/06/2020 01:29 PM 610 win-app-manager.sls +03/06/2020 01:29 PM 467 windirstat.sls +03/06/2020 01:29 PM 468 winhttpcertcfg.sls +03/06/2020 01:29 PM winlogbeat +03/06/2020 01:29 PM 618 winmerge.sls +03/06/2020 01:29 PM 737 winmtr.sls +03/06/2020 01:29 PM 288 winpcap.sls +03/06/2020 01:29 PM 825 winrar.sls +03/06/2020 01:29 PM 828 winscp.sls +03/06/2020 01:29 PM 1,136 wireshark.sls +03/06/2020 01:29 PM wmi_provider +03/06/2020 01:29 PM 539 wscc.sls +03/06/2020 01:29 PM 726 wufuc.sls +03/06/2020 01:29 PM 352 xampp.sls +03/06/2020 01:29 PM 649 xming.sls +03/06/2020 01:29 PM 621 yubikey-manager.sls +03/06/2020 01:29 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:29 PM 1,119 zabbix-agent.sls +03/06/2020 01:29 PM zipinstaller +03/06/2020 01:29 PM 278 zoom.sls 284 File(s) 232,192 bytes - 16 Dir(s) 45,181,186,048 bytes free -2020-03-04 12:26:03,372 [salt.state :938 ][DEBUG ][4888] Last command return code: 0 -2020-03-04 12:26:03,372 [salt.state :320 ][INFO ][4888] {'pkg.refresh_db': {'success': 298, 'total': 298, 'failed': 0}} -2020-03-04 12:26:03,387 [salt.state :1997][INFO ][4888] Completed state [pkg.refresh_db] at time 12:26:03.387864 (duration_in_ms=12035.791) -2020-03-04 12:26:03,403 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. -2020-03-04 12:26:03,403 [salt.state :1819][INFO ][4888] Running state [git] at time 12:26:03.403504 -2020-03-04 12:26:03,403 [salt.state :1852][INFO ][4888] Executing state pkg.installed for [git] -2020-03-04 12:26:03,419 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:26:03,419 [salt.loaded.int.module.win_pkg:802 ][INFO ][4888] Refresh skipped, age of winrepo metadata in seconds (0.09375834465026855) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:26:03,419 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.093758) -2020-03-04 12:26:03,512 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,512 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,529 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,544 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,544 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,544 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,544 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,544 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,559 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:26:03,575 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:26:03,591 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:26:03,591 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.265659) -2020-03-04 12:26:03,606 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,606 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,606 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,606 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,606 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,606 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,623 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:03,637 [salt.utils.http :234 ][DEBUG ][4888] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method -2020-03-04 12:26:03,637 [salt.utils.http :235 ][DEBUG ][4888] Using backend: tornado -2020-03-04 12:26:07,342 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' -2020-03-04 12:26:21,093 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.768124) -2020-03-04 12:26:21,109 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,109 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,109 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,109 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,109 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,109 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,109 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,124 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,124 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,124 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,124 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,124 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,124 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,124 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,140 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:26:21,160 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.835348) -2020-03-04 12:26:21,160 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,160 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,160 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,171 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,187 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:21,187 [salt.state :320 ][INFO ][4888] Made the following changes: -'git' changed from 'absent' to '2.23.0.windows.1' + 16 Dir(s) 45,155,094,528 bytes free +2020-03-06 10:29:29,138 [salt.state :986 ][DEBUG ][4476] Last command return code: 0 +2020-03-06 10:29:29,138 [salt.state :320 ][INFO ][4476] {'pkg.refresh_db': {'total': 298, 'success': 298, 'failed': 0}} +2020-03-06 10:29:29,138 [salt.state :2045][INFO ][4476] Completed state [pkg.refresh_db] at time 10:29:29.138963 (duration_in_ms=16154.702) +2020-03-06 10:29:29,170 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:29:29,170 [salt.state :1867][INFO ][4476] Running state [7zip] at time 10:29:29.170268 +2020-03-06 10:29:29,170 [salt.state :1900][INFO ][4476] Executing state pkg.installed for [7zip] +2020-03-06 10:29:29,201 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:29:29,201 [salt.loaded.int.module.win_pkg:806 ][INFO ][4476] Refresh skipped, age of winrepo metadata in seconds (0.10952067375183105) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:29:29,201 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.109521) +2020-03-06 10:29:29,326 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:29:29,358 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:29:29,373 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:29:29,373 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.281617) +2020-03-06 10:29:29,389 [salt.utils.http :234 ][DEBUG ][4476] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:29:29,389 [salt.utils.http :235 ][DEBUG ][4476] Using backend: tornado +2020-03-06 10:29:32,987 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:29:33,722 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.614600) +2020-03-06 10:29:33,738 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:29:33,753 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:04.661514) +2020-03-06 10:29:33,785 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:29:33,800 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:29:33,800 [salt.state :320 ][INFO ][4476] Made the following changes: +'7zip' changed from 'absent' to '18.06.00.0' -2020-03-04 12:26:21,187 [salt.state :1000][DEBUG ][4888] Refreshing modules... -2020-03-04 12:26:21,218 [salt.state :966 ][INFO ][4888] Loading fresh modules for state activity -2020-03-04 12:26:21,281 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:21,281 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:21,281 [salt.state :1997][INFO ][4888] Completed state [git] at time 12:26:21.281000 (duration_in_ms=17877.496) -2020-03-04 12:26:21,296 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded config.option -2020-03-04 12:26:21,296 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pkg.install -2020-03-04 12:26:21,296 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pkg.installed -2020-03-04 12:26:21,296 [salt.state :1819][INFO ][4888] Running state [kdiff3] at time 12:26:21.296622 -2020-03-04 12:26:21,312 [salt.state :1852][INFO ][4888] Executing state pkg.installed for [kdiff3] -2020-03-04 12:26:21,874 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt.secret_key, ret: _|- -2020-03-04 12:26:21,874 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt:secret_key, ret: _|- -2020-03-04 12:26:22,124 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet.api_key, ret: _|- -2020-03-04 12:26:22,124 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet:api_key, ret: _|- -2020-03-04 12:26:22,328 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded reg.read_value -2020-03-04 12:26:22,421 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops.api_key, ret: _|- -2020-03-04 12:26:22,421 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops:api_key, ret: _|- -2020-03-04 12:26:28,828 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded platform.is_windows -2020-03-04 12:26:28,843 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded path.which -2020-03-04 12:26:28,906 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:26:28,906 [salt.loaded.int.module.win_pkg:802 ][INFO ][4888] Refresh skipped, age of winrepo metadata in seconds (25.5808846950531) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:26:28,921 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:25.580885) -2020-03-04 12:26:28,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,921 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products +2020-03-06 10:29:33,816 [salt.state :1048][DEBUG ][4476] Refreshing modules... +2020-03-06 10:29:33,863 [salt.state :1014][INFO ][4476] Loading fresh modules for state activity +2020-03-06 10:29:33,972 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:33,972 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:33,972 [salt.state :2045][INFO ][4476] Completed state [7zip] at time 10:29:33.972519 (duration_in_ms=4802.251) +2020-03-06 10:29:33,972 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded config.option +2020-03-06 10:29:34,035 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pkg.install +2020-03-06 10:29:34,035 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pkg.installed +2020-03-06 10:29:34,035 [salt.state :1867][INFO ][4476] Running state [kdiff3] at time 10:29:34.035104 +2020-03-06 10:29:34,035 [salt.state :1900][INFO ][4476] Executing state pkg.installed for [kdiff3] +2020-03-06 10:29:35,537 [salt.config :2215][DEBUG ][4476] Missing configuration file: /etc/salt/minion +2020-03-06 10:29:35,552 [salt.config :3612][DEBUG ][4476] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:29:35,677 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:29:35,693 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:29:36,115 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:29:36,115 [salt.loader :1671][DEBUG ][4476] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:29:37,006 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:29:37,022 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:29:38,335 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:29:38,352 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:29:38,742 [salt.loader :1671][DEBUG ][4476] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,937 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:28,968 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:26:28,984 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:26:29,000 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:26:29,000 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:25.674647) -2020-03-04 12:26:29,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,000 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,015 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,032 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,032 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,032 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,032 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:29,032 [salt.utils.http :234 ][DEBUG ][4888] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method -2020-03-04 12:26:29,032 [salt.utils.http :235 ][DEBUG ][4888] Using backend: tornado -2020-03-04 12:26:31,318 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' -2020-03-04 12:26:32,068 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.727826) -2020-03-04 12:26:32,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,101 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:26:32,101 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.775790) -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,115 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,131 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,131 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,131 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,131 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:32,131 [salt.state :320 ][INFO ][4888] Made the following changes: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:29:39,023 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops.api_key, ret: _|- +2020-03-06 10:29:39,023 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops:api_key, ret: _|- +2020-03-06 10:29:46,568 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:29:46,568 [salt.loaded.int.module.win_pkg:806 ][INFO ][4476] Refresh skipped, age of winrepo metadata in seconds (17.47620987892151) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:29:46,568 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.476210) +2020-03-06 10:29:46,615 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:29:46,630 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:29:46,662 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:29:46,677 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:17.585613) +2020-03-06 10:29:46,694 [salt.utils.http :234 ][DEBUG ][4476] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:29:46,694 [salt.utils.http :235 ][DEBUG ][4476] Using backend: tornado +2020-03-06 10:29:50,007 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:29:50,647 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.555836) +2020-03-06 10:29:50,680 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:29:50,680 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:21.588215) +2020-03-06 10:29:50,680 [salt.state :320 ][INFO ][4476] Made the following changes: 'kdiff3' changed from 'absent' to 'Not Found' -2020-03-04 12:26:32,131 [salt.state :1000][DEBUG ][4888] Refreshing modules... -2020-03-04 12:26:32,162 [salt.state :966 ][INFO ][4888] Loading fresh modules for state activity -2020-03-04 12:26:32,225 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:32,225 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:32,225 [salt.state :1997][INFO ][4888] Completed state [kdiff3] at time 12:26:32.225075 (duration_in_ms=10928.453) -2020-03-04 12:26:32,241 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded config.option -2020-03-04 12:26:32,241 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pkg.install -2020-03-04 12:26:32,241 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pkg.installed -2020-03-04 12:26:32,241 [salt.state :1819][INFO ][4888] Running state [7zip] at time 12:26:32.241800 -2020-03-04 12:26:32,241 [salt.state :1852][INFO ][4888] Executing state pkg.installed for [7zip] -2020-03-04 12:26:32,741 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt.secret_key, ret: _|- -2020-03-04 12:26:32,741 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt:secret_key, ret: _|- -2020-03-04 12:26:32,959 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet.api_key, ret: _|- -2020-03-04 12:26:32,959 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet:api_key, ret: _|- -2020-03-04 12:26:33,209 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded reg.read_value -2020-03-04 12:26:33,303 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops.api_key, ret: _|- -2020-03-04 12:26:33,303 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops:api_key, ret: _|- -2020-03-04 12:26:38,943 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded platform.is_windows -2020-03-04 12:26:38,943 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded path.which -2020-03-04 12:26:38,975 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:26:38,975 [salt.loaded.int.module.win_pkg:802 ][INFO ][4888] Refresh skipped, age of winrepo metadata in seconds (35.64982986450195) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:26:38,990 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:35.649830) -2020-03-04 12:26:38,990 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:38,990 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:38,990 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:38,990 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:38,990 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:38,990 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:38,990 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,006 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,006 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,006 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,006 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,006 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,006 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,006 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,022 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:26:39,038 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:26:39,053 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:26:39,053 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:35.727945) -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +2020-03-06 10:29:50,680 [salt.state :1048][DEBUG ][4476] Refreshing modules... +2020-03-06 10:29:50,726 [salt.state :1014][INFO ][4476] Loading fresh modules for state activity +2020-03-06 10:29:50,804 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:29:50,804 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:29:50,819 [salt.state :2045][INFO ][4476] Completed state [kdiff3] at time 10:29:50.819795 (duration_in_ms=16784.691) +2020-03-06 10:29:50,819 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded config.option +2020-03-06 10:29:50,867 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pkg.install +2020-03-06 10:29:50,867 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pkg.installed +2020-03-06 10:29:50,867 [salt.state :1867][INFO ][4476] Running state [git] at time 10:29:50.867673 +2020-03-06 10:29:50,867 [salt.state :1900][INFO ][4476] Executing state pkg.installed for [git] +2020-03-06 10:29:52,420 [salt.config :2215][DEBUG ][4476] Missing configuration file: /etc/salt/minion +2020-03-06 10:29:52,451 [salt.config :3612][DEBUG ][4476] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:29:52,576 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:29:52,576 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:29:52,936 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:29:52,936 [salt.loader :1671][DEBUG ][4476] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:29:53,545 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:29:53,545 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:29:54,420 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:29:54,420 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:29:54,796 [salt.loader :1671][DEBUG ][4476] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,068 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,084 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:39,084 [salt.utils.http :234 ][DEBUG ][4888] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method -2020-03-04 12:26:39,084 [salt.utils.http :235 ][DEBUG ][4888] Using backend: tornado -2020-03-04 12:26:41,394 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' -2020-03-04 12:26:42,269 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:38.944003) -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,285 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,300 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,300 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,300 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,300 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,316 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:26:42,316 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][4888] Using existing pkg metadata db for saltenv 'base' (age is 0:00:38.990882) -2020-03-04 12:26:42,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,316 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-21-2470589793-2064010362-575335784-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,331 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][4888] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:26:42,348 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. -2020-03-04 12:26:42,363 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. -2020-03-04 12:26:42,363 [salt.state :320 ][INFO ][4888] Made the following changes: -'7zip' changed from 'absent' to '18.06.00.0' + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:29:55,062 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops.api_key, ret: _|- +2020-03-06 10:29:55,062 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops:api_key, ret: _|- +2020-03-06 10:30:03,514 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:30:03,514 [salt.loaded.int.module.win_pkg:806 ][INFO ][4476] Refresh skipped, age of winrepo metadata in seconds (34.422685384750366) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:30:03,514 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.422685) +2020-03-06 10:30:03,561 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:30:03,577 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:30:03,608 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:30:03,608 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.516447) +2020-03-06 10:30:03,624 [salt.utils.http :234 ][DEBUG ][4476] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:30:03,624 [salt.utils.http :235 ][DEBUG ][4476] Using backend: tornado +2020-03-06 10:30:08,015 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:30:21,600 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:52.508136) +2020-03-06 10:30:21,628 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:30:21,628 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][4476] Using existing pkg metadata db for saltenv 'base' (age is 0:00:52.536271) +2020-03-06 10:30:21,643 [salt.state :320 ][INFO ][4476] Made the following changes: +'git' changed from 'absent' to '2.23.0.windows.1' -2020-03-04 12:26:42,363 [salt.state :1000][DEBUG ][4888] Refreshing modules... -2020-03-04 12:26:42,394 [salt.state :966 ][INFO ][4888] Loading fresh modules for state activity -2020-03-04 12:26:42,456 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded jinja.render -2020-03-04 12:26:42,456 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded yaml.render -2020-03-04 12:26:42,456 [salt.state :1997][INFO ][4888] Completed state [7zip] at time 12:26:42.456882 (duration_in_ms=10215.082) -2020-03-04 12:26:42,456 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded config.option -2020-03-04 12:26:42,456 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded module.run -2020-03-04 12:26:42,456 [salt.state :1819][INFO ][4888] Running state [windows_environment.refresh.path] at time 12:26:42.456882 -2020-03-04 12:26:42,456 [salt.state :1852][INFO ][4888] Executing state module.run for [windows_environment.refresh.path] -2020-03-04 12:26:42,456 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded windows_environment.refresh -2020-03-04 12:26:42,472 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded cmd.run -2020-03-04 12:26:42,472 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' -2020-03-04 12:26:42,472 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: +2020-03-06 10:30:21,643 [salt.state :1048][DEBUG ][4476] Refreshing modules... +2020-03-06 10:30:21,684 [salt.state :1014][INFO ][4476] Loading fresh modules for state activity +2020-03-06 10:30:21,754 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded jinja.render +2020-03-06 10:30:21,754 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded yaml.render +2020-03-06 10:30:21,768 [salt.state :2045][INFO ][4476] Completed state [git] at time 10:30:21.768933 (duration_in_ms=30901.26) +2020-03-06 10:30:21,768 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded config.option +2020-03-06 10:30:21,768 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded module.run +2020-03-06 10:30:21,768 [salt.state :1867][INFO ][4476] Running state [windows_environment.refresh.path] at time 10:30:21.768933 +2020-03-06 10:30:21,768 [salt.state :1900][INFO ][4476] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:30:21,768 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded windows_environment.refresh +2020-03-06 10:30:21,768 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cmd.run +2020-03-06 10:30:21,782 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:30:21,782 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe OS REG_SZ Windows_NT @@ -27894,7 +26960,7 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:26:42,488 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4888] output: +2020-03-06 10:30:21,782 [salt.loaded.int.module.cmdmod:1199][DEBUG ][4476] output: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe OS REG_SZ Windows_NT @@ -27910,312 +26976,325 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:26:42,488 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded environ.get -2020-03-04 12:26:42,488 [py.warnings :919 ][WARNING ][4888] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +2020-03-06 10:30:21,797 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded environ.get +2020-03-06 10:30:21,797 [py.warnings :919 ][WARNING ][4476] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) -2020-03-04 12:26:42,488 [py.warnings :919 ][WARNING ][4888] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +2020-03-06 10:30:21,797 [py.warnings :919 ][WARNING ][4476] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) -2020-03-04 12:26:42,488 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded event.fire -2020-03-04 12:26:42,488 [salt.utils.event :322 ][DEBUG ][4888] SaltEvent PUB socket URI: 4510 -2020-03-04 12:26:42,488 [salt.utils.event :323 ][DEBUG ][4888] SaltEvent PULL socket URI: 4511 -2020-03-04 12:26:42,488 [salt.utils.event :737 ][DEBUG ][4888] Sending event: tag = environ_setenv; data = {'clear_all': False, 'false_unsets': False, 'permanent': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, '_stamp': '2020-03-04T20:26:42.488131'} -2020-03-04 12:26:42,488 [salt.transport.ipc:364 ][DEBUG ][4888] Closing IPCMessageClient instance -2020-03-04 12:26:42,488 [salt.state :320 ][INFO ][4888] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 12:26:42,503 [salt.state :1997][INFO ][4888] Completed state [windows_environment.refresh.path] at time 12:26:42.503756 (duration_in_ms=46.874) -2020-03-04 12:26:42,503 [salt.state :1819][INFO ][4888] Running state [chocolatey.bootstrap] at time 12:26:42.503756 -2020-03-04 12:26:42,503 [salt.state :1852][INFO ][4888] Executing state module.run for [chocolatey.bootstrap] -2020-03-04 12:26:43,097 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt.secret_key, ret: _|- -2020-03-04 12:26:43,097 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: ifttt:secret_key, ret: _|- -2020-03-04 12:26:43,395 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet.api_key, ret: _|- -2020-03-04 12:26:43,395 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: pushbullet:api_key, ret: _|- -2020-03-04 12:26:43,707 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded reg.read_value -2020-03-04 12:26:43,800 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops.api_key, ret: _|- -2020-03-04 12:26:43,800 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: victorops:api_key, ret: _|- -2020-03-04 12:26:48,894 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded platform.is_windows -2020-03-04 12:26:48,894 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded path.which -2020-03-04 12:26:48,925 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:26:48,988 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded apache.config -2020-03-04 12:26:48,988 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded apache.a2enconf -2020-03-04 12:26:48,988 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded apache.a2ensite -2020-03-04 12:26:49,003 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:26:49,003 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:26:49,003 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:26:49,019 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:26:49,019 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:26:49,019 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:26:49,019 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:26:49,035 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:26:49,035 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_asg.exists -2020-03-04 12:26:49,035 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cfn.exists -2020-03-04 12:26:49,035 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:26:49,035 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:26:49,035 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:26:49,035 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_dynamodb.exists -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_ec2.get_key -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elasticache.exists -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elb.exists -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:26:49,050 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_iam.get_user -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_iam.role_exists -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_iot.policy_exists -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_kinesis.exists -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_kms.describe_key -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_lambda.function_exists -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_asg.exists -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_rds.exists -2020-03-04 12:26:49,066 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_route53.get_record -2020-03-04 12:26:49,081 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:26:49,081 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:26:49,081 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_secgroup.exists -2020-03-04 12:26:49,081 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_sns.exists -2020-03-04 12:26:49,081 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_sqs.exists -2020-03-04 12:26:49,081 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded boto_vpc.exists -2020-03-04 12:26:49,081 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded bower.list -2020-03-04 12:26:49,098 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded chef.client -2020-03-04 12:26:49,098 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded cimc.get_system_info -2020-03-04 12:26:49,098 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded cisconso.set_data_value -2020-03-04 12:26:49,098 [salt.loader :1577][DEBUG ][4888] Failed to import states cloud: +2020-03-06 10:30:21,797 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded event.fire +2020-03-06 10:30:21,797 [salt.utils.event :310 ][DEBUG ][4476] SaltEvent PUB socket URI: 4510 +2020-03-06 10:30:21,797 [salt.utils.event :311 ][DEBUG ][4476] SaltEvent PULL socket URI: 4511 +2020-03-06 10:30:21,797 [salt.utils.event :736 ][DEBUG ][4476] Sending event: tag = environ_setenv; data = {'clear_all': False, 'false_unsets': False, '_stamp': '2020-03-06T18:30:21.797063', 'permanent': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:30:21,797 [salt.transport.ipc:363 ][DEBUG ][4476] Closing IPCMessageClient instance +2020-03-06 10:30:21,811 [salt.state :320 ][INFO ][4476] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:30:21,811 [salt.state :2045][INFO ][4476] Completed state [windows_environment.refresh.path] at time 10:30:21.811125 (duration_in_ms=42.192) +2020-03-06 10:30:21,811 [salt.state :1867][INFO ][4476] Running state [chocolatey.bootstrap] at time 10:30:21.811125 +2020-03-06 10:30:21,811 [salt.state :1900][INFO ][4476] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:30:22,985 [salt.config :2215][DEBUG ][4476] Missing configuration file: /etc/salt/minion +2020-03-06 10:30:22,985 [salt.config :3612][DEBUG ][4476] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:30:23,093 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:30:23,406 [git.cmd :722 ][DEBUG ][4476] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:30:23,781 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:30:23,781 [salt.loader :1671][DEBUG ][4476] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:26:49,113 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded ddns.update -2020-03-04 12:26:49,113 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded chassis.cmd -2020-03-04 12:26:49,128 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:26:49,144 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:26:49,160 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:26:49,175 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:26:49,364 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded esxi.cmd -2020-03-04 12:26:49,378 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' -2020-03-04 12:26:49,425 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: git version 2.23.0.windows.1 -2020-03-04 12:26:49,425 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded github.list_users -2020-03-04 12:26:49,441 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded glanceng.image_get -2020-03-04 12:26:49,441 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded elasticsearch.exists -2020-03-04 12:26:49,441 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: grafana_version, ret: _|- -2020-03-04 12:26:49,441 [salt.loaded.int.module.config:398 ][DEBUG ][4888] key: grafana_version, ret: _|- -2020-03-04 12:26:49,457 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded icinga2.generate_ticket -2020-03-04 12:26:49,457 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded ifttt.trigger_event -2020-03-04 12:26:49,472 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:26:49,489 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:26:49,503 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:26:49,520 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:26:49,535 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:26:49,552 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:26:49,567 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:26:49,567 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.domain_get -2020-03-04 12:26:49,567 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:26:49,582 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.group_get -2020-03-04 12:26:49,582 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.project_get -2020-03-04 12:26:49,582 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.role_get -2020-03-04 12:26:49,582 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.role_grant -2020-03-04 12:26:49,582 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.service_get -2020-03-04 12:26:49,582 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded keystoneng.user_get -2020-03-04 12:26:49,599 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:26:49,614 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:26:49,631 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:26:49,645 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:26:49,661 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:26:49,677 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:26:49,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:26:49,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:26:49,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:26:49,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded lxd.version -2020-03-04 12:26:49,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded memcached.status -2020-03-04 12:26:49,693 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mongodb.db_exists -2020-03-04 12:26:49,709 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mongodb.user_exists -2020-03-04 12:26:49,709 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:26:49,709 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:26:49,709 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:26:49,709 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded mssql.version -2020-03-04 12:26:49,724 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_networks -2020-03-04 12:26:49,724 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_subnets -2020-03-04 12:26:49,724 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_subnets -2020-03-04 12:26:49,724 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded neutronng.list_subnets -2020-03-04 12:26:49,724 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded npm.list -2020-03-04 12:26:49,724 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nxos.cmd -2020-03-04 12:26:49,740 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:26:49,756 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:26:49,770 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded panos.commit -2020-03-04 12:26:49,770 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pdbedit.create -2020-03-04 12:26:49,770 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded pecl.list -2020-03-04 12:26:49,799 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:26:49,799 [salt.loader :1577][DEBUG ][4888] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:30:24,422 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt.secret_key, ret: _|- +2020-03-06 10:30:24,422 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: ifttt:secret_key, ret: _|- +2020-03-06 10:30:25,579 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet.api_key, ret: _|- +2020-03-06 10:30:25,579 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: pushbullet:api_key, ret: _|- +2020-03-06 10:30:25,922 [salt.loader :1671][DEBUG ][4476] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:26:49,799 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.cluster_exists -2020-03-04 12:26:49,799 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.user_exists -2020-03-04 12:26:49,799 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.create_extension -2020-03-04 12:26:49,799 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.group_create -2020-03-04 12:26:49,799 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.datadir_init -2020-03-04 12:26:49,799 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.language_create -2020-03-04 12:26:49,813 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.privileges_grant -2020-03-04 12:26:49,813 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.schema_exists -2020-03-04 12:26:49,813 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.tablespace_exists -2020-03-04 12:26:49,813 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded postgres.user_exists -2020-03-04 12:26:49,841 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:26:49,841 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded selinux.getenforce -2020-03-04 12:26:49,855 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded splunk.list_users -2020-03-04 12:26:49,855 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded splunk_search.get -2020-03-04 12:26:49,870 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:26:49,870 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded tomcat.status -2020-03-04 12:26:49,884 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded vagrant.version -2020-03-04 12:26:49,884 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded victorops.create_event -2020-03-04 12:26:49,884 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded win_iis.create_site -2020-03-04 12:26:49,898 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:26:49,898 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded wordpress.show_plugin -2020-03-04 12:26:49,898 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded x509.get_pem_entry -2020-03-04 12:26:49,898 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded xmpp.send_msg -2020-03-04 12:26:49,912 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded zk_concurrency.lock -2020-03-04 12:26:49,912 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded zonecfg.create -2020-03-04 12:26:49,912 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded zookeeper.create -2020-03-04 12:26:49,926 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:26:49,926 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' -2020-03-04 12:26:50,643 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: INFO: Could not find files for the given pattern(s). -2020-03-04 12:26:50,643 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][4888] retcode: 1 -2020-03-04 12:26:50,643 [salt.state :915 ][DEBUG ][4888] Last command return code: 1 -2020-03-04 12:26:50,643 [salt.utils.http :234 ][DEBUG ][4888] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method -2020-03-04 12:26:50,643 [salt.utils.http :235 ][DEBUG ][4888] Using backend: tornado -2020-03-04 12:26:50,911 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:26:56,911 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: Preparing: C:\bb189e2dd952d976afef4d5d\header.bmp... -Preparing: C:\bb189e2dd952d976afef4d5d\SplashScreen.bmp... -Preparing: C:\bb189e2dd952d976afef4d5d\watermark.bmp... -Preparing: C:\bb189e2dd952d976afef4d5d\DisplayIcon.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Print.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate1.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate2.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate3.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate4.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate5.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate6.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate7.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Rotate8.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Save.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\Setup.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\stop.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\SysReqMet.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\SysReqNotMet.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\Graphics\warn.ico... -Preparing: C:\bb189e2dd952d976afef4d5d\1033\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1042\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1041\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1037\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1025\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1035\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1030\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1044\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1043\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1040\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1029\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1031\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1036\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1032\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1038\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\2052\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1028\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\3076\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1055\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1053\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\3082\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\2070\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1046\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1049\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\1045\LocalizedData.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\Client\Parameterinfo.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\Extended\Parameterinfo.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\ParameterInfo.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\Strings.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\UiInfo.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\Client\UiInfo.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\Extended\UiInfo.xml... -Preparing: C:\bb189e2dd952d976afef4d5d\SetupUi.xsd... -Preparing: C:\bb189e2dd952d976afef4d5d\DHtmlHeader.html... -Preparing: C:\bb189e2dd952d976afef4d5d\1033\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1025\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1028\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1030\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1031\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1029\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1036\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1035\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1032\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1038\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1037\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1040\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1041\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1042\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1044\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1043\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1046\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1045\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1055\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1053\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\2052\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\1049\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\3082\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\2070\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\3076\eula.rtf... -Preparing: C:\bb189e2dd952d976afef4d5d\Setup.exe... -Preparing: C:\bb189e2dd952d976afef4d5d\SetupUtility.exe... -Preparing: C:\bb189e2dd952d976afef4d5d\SetupEngine.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1025\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1033\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1029\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1030\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1035\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1031\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1036\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1032\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1028\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\2052\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\3076\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1042\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1041\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1037\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1044\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1053\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1055\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1040\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1045\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1046\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1049\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1038\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\2070\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\3082\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\1043\SetupResources.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\SetupUi.dll... -Preparing: C:\bb189e2dd952d976afef4d5d\sqmapi.dll... -2020-03-04 12:26:56,926 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' -2020-03-04 12:27:01,706 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: Getting latest version of the Chocolatey package for download. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:30:26,219 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops.api_key, ret: _|- +2020-03-06 10:30:26,219 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: victorops:api_key, ret: _|- +2020-03-06 10:30:35,312 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:30:35,327 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded acme.cert +2020-03-06 10:30:35,327 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded alternatives.auto +2020-03-06 10:30:35,436 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded apache.config +2020-03-06 10:30:35,436 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded apache.a2enconf +2020-03-06 10:30:35,436 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded apache.a2ensite +2020-03-06 10:30:35,498 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:30:35,498 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded at.at +2020-03-06 10:30:35,531 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:30:35,545 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:30:35,545 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:30:35,545 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:30:35,545 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:30:35,561 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded disk.tune +2020-03-06 10:30:35,561 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:30:35,561 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:30:35,561 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:30:35,561 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:30:35,577 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:30:35,577 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_asg.exists +2020-03-06 10:30:35,577 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cfn.exists +2020-03-06 10:30:35,577 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:30:35,577 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:30:35,592 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:30:35,592 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:30:35,592 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:30:35,592 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:30:35,592 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_dynamodb.exists +2020-03-06 10:30:35,608 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_ec2.get_key +2020-03-06 10:30:35,608 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elasticache.exists +2020-03-06 10:30:35,608 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:30:35,608 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elb.exists +2020-03-06 10:30:35,608 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:30:35,624 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_iam.get_user +2020-03-06 10:30:35,624 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_iam.role_exists +2020-03-06 10:30:35,624 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_iot.policy_exists +2020-03-06 10:30:35,624 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_kinesis.exists +2020-03-06 10:30:35,639 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_kms.describe_key +2020-03-06 10:30:35,639 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_lambda.function_exists +2020-03-06 10:30:35,639 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_asg.exists +2020-03-06 10:30:35,639 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_rds.exists +2020-03-06 10:30:35,639 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_route53.get_record +2020-03-06 10:30:35,655 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:30:35,655 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:30:35,655 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_secgroup.exists +2020-03-06 10:30:35,655 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_sns.exists +2020-03-06 10:30:35,670 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_sqs.exists +2020-03-06 10:30:35,670 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded boto_vpc.exists +2020-03-06 10:30:35,670 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded bower.list +2020-03-06 10:30:35,795 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded chef.client +2020-03-06 10:30:35,795 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cimc.get_system_info +2020-03-06 10:30:35,795 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cisconso.set_data_value +2020-03-06 10:30:35,811 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded cron.list_tab +2020-03-06 10:30:35,811 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded ddns.update +2020-03-06 10:30:35,811 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded chassis.cmd +2020-03-06 10:30:35,842 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:30:35,874 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:30:35,905 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:30:35,952 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:30:35,999 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded eselect.exec_action +2020-03-06 10:30:36,374 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded esxi.cmd +2020-03-06 10:30:36,405 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:30:36,514 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: git version 2.23.0.windows.1 +2020-03-06 10:30:36,530 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded github.list_users +2020-03-06 10:30:36,545 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded glanceng.image_get +2020-03-06 10:30:36,561 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded glusterfs.list_volumes +2020-03-06 10:30:36,561 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded elasticsearch.exists +2020-03-06 10:30:36,561 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: grafana_version, ret: _|- +2020-03-06 10:30:36,577 [salt.loaded.int.module.config:483 ][DEBUG ][4476] key: grafana_version, ret: _|- +2020-03-06 10:30:36,592 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded icinga2.generate_ticket +2020-03-06 10:30:36,592 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded ifttt.trigger_event +2020-03-06 10:30:36,608 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:30:36,640 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:30:36,718 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:30:36,905 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:30:36,937 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:30:36,967 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:30:36,984 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded ipset.version +2020-03-06 10:30:36,984 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded iptables.version +2020-03-06 10:30:36,984 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded kapacitor.version +2020-03-06 10:30:37,015 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:30:37,015 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keyboard.get_sys +2020-03-06 10:30:37,030 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystone.auth +2020-03-06 10:30:37,030 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.domain_get +2020-03-06 10:30:37,030 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:30:37,030 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.group_get +2020-03-06 10:30:37,045 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.project_get +2020-03-06 10:30:37,045 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.role_get +2020-03-06 10:30:37,045 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.role_grant +2020-03-06 10:30:37,061 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.service_get +2020-03-06 10:30:37,061 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystoneng.user_get +2020-03-06 10:30:37,061 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded keystore.list +2020-03-06 10:30:37,061 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded kmod.available +2020-03-06 10:30:37,092 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:30:37,092 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded layman.add +2020-03-06 10:30:37,124 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:30:37,124 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded logadm.list_conf +2020-03-06 10:30:37,124 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded logrotate.show_conf +2020-03-06 10:30:37,155 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lvs.get_rules +2020-03-06 10:30:37,170 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lvs.get_rules +2020-03-06 10:30:37,170 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:30:37,170 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:30:37,186 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:30:37,186 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded lxd.version +2020-03-06 10:30:37,186 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded makeconf.get_var +2020-03-06 10:30:37,186 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded memcached.status +2020-03-06 10:30:37,186 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded mongodb.db_exists +2020-03-06 10:30:37,186 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded mongodb.user_exists +2020-03-06 10:30:37,202 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded monit.summary +2020-03-06 10:30:37,217 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_networks +2020-03-06 10:30:37,217 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_subnets +2020-03-06 10:30:37,217 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_subnets +2020-03-06 10:30:37,217 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded neutronng.list_subnets +2020-03-06 10:30:37,234 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nftables.version +2020-03-06 10:30:37,234 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded npm.list +2020-03-06 10:30:37,234 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nxos.cmd +2020-03-06 10:30:37,234 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded openvswitch.bridge_create +2020-03-06 10:30:37,234 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded openvswitch.port_add +2020-03-06 10:30:37,249 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded panos.commit +2020-03-06 10:30:37,249 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pdbedit.create +2020-03-06 10:30:37,249 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded pecl.list +2020-03-06 10:30:37,280 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:30:37,280 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:30:37,280 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.cluster_exists +2020-03-06 10:30:37,280 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.user_exists +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.create_extension +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.group_create +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.datadir_init +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.language_create +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.privileges_grant +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.schema_exists +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.tablespace_exists +2020-03-06 10:30:37,295 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded postgres.user_exists +2020-03-06 10:30:37,312 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded quota.report +2020-03-06 10:30:37,327 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:30:37,342 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:30:37,374 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:30:37,389 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded selinux.getenforce +2020-03-06 10:30:37,405 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:30:37,405 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded snapper.diff +2020-03-06 10:30:37,420 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded splunk.list_users +2020-03-06 10:30:37,420 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded splunk_search.get +2020-03-06 10:30:37,452 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:30:37,452 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded tomcat.status +2020-03-06 10:30:37,452 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded trafficserver.set_config +2020-03-06 10:30:37,467 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded vagrant.version +2020-03-06 10:30:37,467 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded victorops.create_event +2020-03-06 10:30:37,467 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded virt.node_info +2020-03-06 10:30:37,484 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded win_iis.create_site +2020-03-06 10:30:37,484 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:30:37,484 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded wordpress.show_plugin +2020-03-06 10:30:37,499 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded x509.get_pem_entry +2020-03-06 10:30:37,499 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded xmpp.send_msg +2020-03-06 10:30:37,499 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded zk_concurrency.lock +2020-03-06 10:30:37,514 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded zonecfg.create +2020-03-06 10:30:37,514 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded zookeeper.create +2020-03-06 10:30:37,530 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:30:37,530 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:30:37,702 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:30:37,702 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][4476] retcode: 1 +2020-03-06 10:30:37,702 [salt.state :951 ][DEBUG ][4476] Last command return code: 1 +2020-03-06 10:30:37,702 [salt.utils.http :234 ][DEBUG ][4476] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:30:37,702 [salt.utils.http :235 ][DEBUG ][4476] Using backend: tornado +2020-03-06 10:30:37,889 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:30:43,741 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: Preparing: C:\5eff0eda7f78e95972aef994955e89\header.bmp... +Preparing: C:\5eff0eda7f78e95972aef994955e89\SplashScreen.bmp... +Preparing: C:\5eff0eda7f78e95972aef994955e89\watermark.bmp... +Preparing: C:\5eff0eda7f78e95972aef994955e89\DisplayIcon.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Print.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate1.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate2.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate3.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate4.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate5.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate6.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate7.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Rotate8.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Save.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\Setup.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\stop.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\SysReqMet.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\SysReqNotMet.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Graphics\warn.ico... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1033\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1042\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1041\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1037\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1025\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1035\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1030\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1044\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1043\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1040\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1029\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1031\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1036\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1032\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1038\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\2052\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1028\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\3076\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1055\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1053\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\3082\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\2070\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1046\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1049\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1045\LocalizedData.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Client\Parameterinfo.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Extended\Parameterinfo.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\ParameterInfo.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Strings.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\UiInfo.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Client\UiInfo.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Extended\UiInfo.xml... +Preparing: C:\5eff0eda7f78e95972aef994955e89\SetupUi.xsd... +Preparing: C:\5eff0eda7f78e95972aef994955e89\DHtmlHeader.html... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1033\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1025\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1028\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1030\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1031\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1029\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1036\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1035\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1032\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1038\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1037\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1040\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1041\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1042\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1044\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1043\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1046\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1045\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1055\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1053\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\2052\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1049\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\3082\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\2070\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\3076\eula.rtf... +Preparing: C:\5eff0eda7f78e95972aef994955e89\Setup.exe... +Preparing: C:\5eff0eda7f78e95972aef994955e89\SetupUtility.exe... +Preparing: C:\5eff0eda7f78e95972aef994955e89\SetupEngine.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1025\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1033\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1029\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1030\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1035\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1031\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1036\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1032\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1028\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\2052\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\3076\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1042\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1041\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1037\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1044\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1053\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1055\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1040\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1045\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1046\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1049\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1038\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\2070\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\3082\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\1043\SetupResources.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\SetupUi.dll... +Preparing: C:\5eff0eda7f78e95972aef994955e89\sqmapi.dll... +2020-03-06 10:30:43,741 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:30:48,460 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: Getting latest version of the Chocolatey package for download. Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. Downloading 7-Zip commandline tool prior to extraction. Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... @@ -28249,17 +27328,17 @@ You may need to shut down and restart powershell and/or consoles first prior to using choco. Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder -2020-03-04 12:27:01,722 [salt.state :320 ][INFO ][4888] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} -2020-03-04 12:27:01,722 [salt.state :1997][INFO ][4888] Completed state [chocolatey.bootstrap] at time 12:27:01.722460 (duration_in_ms=19218.704) -2020-03-04 12:27:01,722 [salt.state :1819][INFO ][4888] Running state [windirstat] at time 12:27:01.722460 -2020-03-04 12:27:01,722 [salt.state :1852][INFO ][4888] Executing state chocolatey.installed for [windirstat] -2020-03-04 12:27:01,722 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:27:02,679 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: chocolatey|0.10.15 -2020-03-04 12:27:02,679 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' -2020-03-04 12:27:03,135 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: 0.10.15 -2020-03-04 12:27:03,150 [salt.loaded.int.module.cmdmod:1202][DEBUG ][4888] output: 0.10.15 -2020-03-04 12:27:03,150 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:27:06,899 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: Chocolatey v0.10.15 +2020-03-06 10:30:48,460 [salt.state :320 ][INFO ][4476] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:30:48,460 [salt.state :2045][INFO ][4476] Completed state [chocolatey.bootstrap] at time 10:30:48.460660 (duration_in_ms=26649.535) +2020-03-06 10:30:48,460 [salt.state :1867][INFO ][4476] Running state [windirstat] at time 10:30:48.460660 +2020-03-06 10:30:48,460 [salt.state :1900][INFO ][4476] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:30:48,460 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:30:49,585 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: chocolatey|0.10.15 +2020-03-06 10:30:49,585 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:30:50,100 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: 0.10.15 +2020-03-06 10:30:50,100 [salt.loaded.int.module.cmdmod:1199][DEBUG ][4476] output: 0.10.15 +2020-03-06 10:30:50,116 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:30:53,241 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28283,21 +27362,25 @@ WinDirStat has been installed. Software installed to 'C:\Program Files (x86)\WinDirStat' Chocolatey installed 1/1 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:27:06,914 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:27:07,808 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: chocolatey|0.10.15 + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). + +Enjoy using Chocolatey? Explore more amazing features to take your +experience to the next level at + https://chocolatey.org/compare +2020-03-06 10:30:53,241 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:30:53,944 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: chocolatey|0.10.15 windirstat|1.1.2.20161210 -2020-03-04 12:27:07,825 [salt.state :320 ][INFO ][4888] Made the following changes: +2020-03-06 10:30:53,944 [salt.state :320 ][INFO ][4476] Made the following changes: 'windirstat' changed from 'absent' to '['1.1.2.20161210']' -2020-03-04 12:27:07,825 [salt.state :1997][INFO ][4888] Completed state [windirstat] at time 12:27:07.825024 (duration_in_ms=6102.564) -2020-03-04 12:27:07,825 [salt.state :1819][INFO ][4888] Running state [notepadplusplus] at time 12:27:07.825024 -2020-03-04 12:27:07,825 [salt.state :1852][INFO ][4888] Executing state chocolatey.installed for [notepadplusplus] -2020-03-04 12:27:07,825 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:27:08,670 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: chocolatey|0.10.15 +2020-03-06 10:30:53,944 [salt.state :2045][INFO ][4476] Completed state [windirstat] at time 10:30:53.944593 (duration_in_ms=5483.933) +2020-03-06 10:30:53,944 [salt.state :1867][INFO ][4476] Running state [notepadplusplus] at time 10:30:53.944593 +2020-03-06 10:30:53,960 [salt.state :1900][INFO ][4476] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:30:53,960 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:30:54,725 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: chocolatey|0.10.15 windirstat|1.1.2.20161210 -2020-03-04 12:27:08,670 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:27:20,156 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: Chocolatey v0.10.15 +2020-03-06 10:30:54,725 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:31:03,116 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28318,7 +27401,7 @@ chocolatey-core.extension package files install completed. Performing other inst The install of chocolatey-core.extension was successful. Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' -notepadplusplus.install v7.8.4 [Approved] +notepadplusplus.install v7.8.5 notepadplusplus.install package files install completed. Performing other installation steps. Installing 64-bit notepadplusplus.install... notepadplusplus.install has been installed. @@ -28328,34 +27411,30 @@ Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program fi The install of notepadplusplus.install was successful. Software installed as 'exe', install location is likely default. -notepadplusplus v7.8.4 [Approved] +notepadplusplus v7.8.5 [Approved] notepadplusplus package files install completed. Performing other installation steps. The install of notepadplusplus was successful. Software install location not explicitly set, could be in package or default install location if installer. Chocolatey installed 3/3 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). - -Enjoy using Chocolatey? Explore more amazing features to take your -experience to the next level at - https://chocolatey.org/compare -2020-03-04 12:27:20,156 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:27:20,857 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: chocolatey|0.10.15 + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:31:03,116 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:31:04,210 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 windirstat|1.1.2.20161210 -2020-03-04 12:27:20,857 [salt.state :320 ][INFO ][4888] Made the following changes: -'notepadplusplus.install' changed from 'absent' to '['7.8.4']' -'notepadplusplus' changed from 'absent' to '['7.8.4']' +2020-03-06 10:31:04,210 [salt.state :320 ][INFO ][4476] Made the following changes: +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' +'notepadplusplus' changed from 'absent' to '['7.8.5']' -2020-03-04 12:27:20,857 [salt.state :1997][INFO ][4888] Completed state [notepadplusplus] at time 12:27:20.857198 (duration_in_ms=13032.174) -2020-03-04 12:27:20,857 [salt.state :1819][INFO ][4888] Running state [telnet-client] at time 12:27:20.857198 -2020-03-04 12:27:20,857 [salt.state :1852][INFO ][4888] Executing state win_servermanager.installed for [telnet-client] -2020-03-04 12:27:20,857 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4888] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json -2020-03-04 12:27:20,872 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' -2020-03-04 12:27:22,312 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: [ +2020-03-06 10:31:04,226 [salt.state :2045][INFO ][4476] Completed state [notepadplusplus] at time 10:31:04.226020 (duration_in_ms=10281.427) +2020-03-06 10:31:04,226 [salt.state :1867][INFO ][4476] Running state [telnet-client] at time 10:31:04.226020 +2020-03-06 10:31:04,226 [salt.state :1900][INFO ][4476] Executing state win_servermanager.installed for [telnet-client] +2020-03-06 10:31:04,226 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4476] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 10:31:04,226 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 10:31:05,741 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: [ { "DisplayName": "Active Directory Certificate Services", "Name": "AD-Certificate", @@ -29647,9 +28726,9 @@ windirstat|1.1.2.20161210 "Installed": false } ] -2020-03-04 12:27:22,327 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4888] PowerShell: Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json -2020-03-04 12:27:22,327 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json"' in directory 'C:\Users\vagrant' -2020-03-04 12:27:40,963 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: { +2020-03-06 10:31:05,741 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4476] PowerShell: Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json +2020-03-06 10:31:05,741 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 10:31:19,851 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: { "Success": true, "RestartNeeded": 1, "FeatureResult": [ @@ -29665,9 +28744,9 @@ windirstat|1.1.2.20161210 ], "ExitCode": 0 } -2020-03-04 12:27:40,963 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4888] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json -2020-03-04 12:27:40,963 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' -2020-03-04 12:27:41,745 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][4888] stdout: [ +2020-03-06 10:31:19,851 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][4476] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 10:31:19,851 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 10:31:20,554 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][4476] stdout: [ { "DisplayName": "Active Directory Certificate Services", "Name": "AD-Certificate", @@ -30959,907 +30038,45 @@ windirstat|1.1.2.20161210 "Installed": false } ] -2020-03-04 12:27:41,745 [salt.state :320 ][INFO ][4888] Made the following changes: +2020-03-06 10:31:20,554 [salt.state :320 ][INFO ][4476] Made the following changes: 'Telnet-Client' changed from 'absent' to 'Telnet Client' -2020-03-04 12:27:41,745 [salt.state :1997][INFO ][4888] Completed state [telnet-client] at time 12:27:41.745536 (duration_in_ms=20888.338) -2020-03-04 12:27:41,745 [salt.state :1819][INFO ][4888] Running state [windows.module.system.reboot] at time 12:27:41.745536 -2020-03-04 12:27:41,745 [salt.state :1852][INFO ][4888] Executing state module.run for [windows.module.system.reboot] -2020-03-04 12:27:41,761 [salt.utils.lazy :107 ][DEBUG ][4888] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:27:41,761 [salt.loaded.int.module.cmdmod:397 ][INFO ][4888] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' -2020-03-04 12:27:42,012 [salt.state :889 ][DEBUG ][4888] Last command return code: 0 -2020-03-04 12:27:42,012 [salt.loaded.int.module.win_system:1413][DEBUG ][4888] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired -2020-03-04 12:27:42,012 [salt.loaded.int.module.win_system:1348][DEBUG ][4888] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:27:42,026 [salt.loaded.int.module.win_system:1348][DEBUG ][4888] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:27:42,026 [salt.loaded.int.module.win_system:1387][DEBUG ][4888] Unable to access key: SOFTWARE\Microsoft\ServerManager -2020-03-04 12:27:42,026 [salt.loaded.int.module.win_system:1273][DEBUG ][4888] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending -2020-03-04 12:27:42,042 [salt.state :320 ][INFO ][4888] {'system.reboot': True} -2020-03-04 12:27:42,042 [salt.state :1997][INFO ][4888] Completed state [windows.module.system.reboot] at time 12:27:42.042520 (duration_in_ms=296.984) -2020-03-04 12:27:42,058 [salt.state :2801][DEBUG ][4888] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\1214090986664 does not exist, no need to cleanup -2020-03-04 12:27:42,058 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded state.check_result -2020-03-04 12:27:42,073 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded highstate.output -2020-03-04 12:27:42,073 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,089 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,089 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,089 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,105 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,105 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,120 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,120 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,120 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,120 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,136 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,136 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,136 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,136 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,151 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,151 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,151 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,151 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,167 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 12:27:42,167 [salt.utils.lazy :104 ][DEBUG ][4888] LazyLoaded nested.output -2020-03-04 15:27:46,481 [salt.loader :747 ][DEBUG ][4300] Grains refresh requested. Refreshing grains. -2020-03-04 15:27:46,497 [salt.config :2190][DEBUG ][4300] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 15:27:46,497 [salt.config :2334][DEBUG ][4300] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 15:27:46,497 [salt.config :2190][DEBUG ][4300] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 15:27:51,410 [salt.pillar :57 ][DEBUG ][4300] Determining pillar cache -2020-03-04 15:27:51,457 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded jinja.render -2020-03-04 15:27:51,457 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded yaml.render -2020-03-04 15:27:51,472 [salt.template :59 ][DEBUG ][4300] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 15:27:51,472 [salt.utils.jinja :85 ][DEBUG ][4300] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:27:51,487 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.015622615814208984 -2020-03-04 15:27:51,487 [salt.template :120 ][DEBUG ][4300] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: ---- -base: - "*": - - windows - -2020-03-04 15:27:51,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][4300] Results of YAML rendering: -OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 15:27:51,487 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 15:27:51,504 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded confirm_top.confirm_top -2020-03-04 15:27:51,504 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded compound_match.match -2020-03-04 15:27:51,504 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4300] compound_match: vagrant ? * -2020-03-04 15:27:51,504 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded glob_match.match -2020-03-04 15:27:51,504 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4300] compound_match vagrant ? "*" => "True" -2020-03-04 15:27:51,504 [salt.template :59 ][DEBUG ][4300] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 15:27:51,504 [salt.utils.jinja :85 ][DEBUG ][4300] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:27:51,519 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.01471090316772461 -2020-03-04 15:27:51,519 [salt.template :120 ][DEBUG ][4300] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: -# -*- coding: utf-8 -*- -# vim: ft=yaml ---- -windows: - states: - enabled: true - system: - computer_desc: - id: description - enabled: true - name: "Saltstack Computer Description" - require: - - windows.state.system.hostname.saltstack1 - hostname: - name: "saltstack1" - timezone: - system: - name: America/New_York - utc: false - wua: - # settings: - # enabled: true - # level: 4 - # recommended: true - # featured: false - # elevated: true - # msupdate: true - # day: Everyday - # time: "01:00" - uptodate: - enabled: false - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - modules: - enabled: true - environ: - items: - enabled: true - system: - reboot: - enabled: true - timeout: 5 - in_seconds: true - only_on_pending_reboot: true - wait_for_reboot: false - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" - order: last - user: - enabled: true - current: - enabled: true - sam: true - status: - uptime: - enabled: true - human_readable: true - require: - - windows.module.user.current - system: - enabled: true - reboot: - enabled: false - timeout_in_seconds: 10 - only_on_pending_reboot: true - dsc: - enabled: false - client: - root: c:\\DSC\\ - manifest: - source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ - configuration: Win10DSC - user: - enabled: false - disable: - Administrator: - disable: false - Guest: - disable: true - packages: - enabled: true - always_install_latest_version: false - always_upgrade_to_latest_version: false - providers: - enabled: false - installed: - NuGet: - powershell: - modules: - enabled: true - installed: - PSDscResources: - cChoco: - chocolatey: - enabled: true - installed: - notepadplusplus: - windirstat: - version: '1.1.2.20161210' - saltstack: - enabled: true - installed: - git: - refresh_minion_env_path: true - 7zip: - version: '18.06.00.0' - refresh_minion_env_path: false - kdiff3: - appx: - enabled: true - provisioned: - uninstalled: - # Microsoft.3DBuilder: - # Microsoft.BingWeather: - # Microsoft.DesktopAppInstaller: - # Microsoft.Getstarted: - # Microsoft.Messaging: - # Microsoft.Microsoft3DViewer: - # Microsoft.MicrosoftOfficeHub: - Microsoft.MicrosoftSolitaireCollection: - # Microsoft.MicrosoftStickyNotes: - # Microsoft.MSPaint: - # Microsoft.Office.OneNote: - # Microsoft.OneConnect: - # Microsoft.People: - # Microsoft.SkypeApp: - # Microsoft.StorePurchaseApp: - Microsoft.Wallet: - # Microsoft.Windows.Photos: - # Microsoft.WindowsAlarms: - # Microsoft.WindowsCalculator: - # Microsoft.WindowsCamera: - # microsoft.windowscommunicationsapps: - # Microsoft.WindowsFeedbackHub: - # Microsoft.WindowsMaps: - # Microsoft.WindowsSoundRecorder: - # Microsoft.WindowsStore: - # Microsoft.XboxApp: - # Microsoft.XboxGameOverlay: - # Microsoft.XboxIdentityProvider: - # Microsoft.XboxSpeechToTextOverlay: - Microsoft.ZuneMusic: - Microsoft.ZuneVideo: - # Microsoft.GetHelp: - # Microsoft.Print3D: - # Microsoft.Xbox.TCUI: - # Microsoft.WebMediaExtensions: - # Microsoft.XboxGamingOverlay: - # Microsoft.HEIFImageExtension: - Microsoft.MixedReality.Portal: - # Microsoft.ScreenSketch: - # Microsoft.VP9VideoExtensions: - # Microsoft.WebpImageExtension: - # Microsoft.YourPhone: - server: - enabled: true - features: - enabled: true - installed: - telnet-client: - desktop: - enabled: true - optional_features: - enabled: true - installed: - # Client-DeviceLockdown: - # Client-EmbeddedBootExp: - # Client-EmbeddedLogon: - # Client-EmbeddedShellLauncher: - # ClientForNFS-Infrastructure: - # Client-KeyboardFilter: - # Client-ProjFS: - # Client-UnifiedWriteFilter: - # Containers: - # Containers-DisposableClientVM: - # DataCenterBridging: - # DirectoryServices-ADAM-Client: - # DirectPlay: - # FaxServicesClientPackage: - # HostGuardian: - # HypervisorPlatform: - # IIS-ApplicationDevelopment: - # IIS-ApplicationInit: - # IIS-ASP: - # IIS-ASPNET: - # IIS-ASPNET45: - # IIS-BasicAuthentication: - # IIS-CertProvider: - # IIS-CGI: - # IIS-ClientCertificateMappingAuthentication: - # IIS-CommonHttpFeatures: - # IIS-CustomLogging: - # IIS-DefaultDocument: - # IIS-DigestAuthentication: - # IIS-DirectoryBrowsing: - # IIS-FTPExtensibility: - # IIS-FTPServer: - # IIS-FTPSvc: - # IIS-HealthAndDiagnostics: - # IIS-HostableWebCore: - # IIS-HttpCompressionDynamic: - # IIS-HttpCompressionStatic: - # IIS-HttpErrors: - # IIS-HttpLogging: - # IIS-HttpRedirect: - # IIS-HttpTracing: - # IIS-IIS6ManagementCompatibility: - # IIS-IISCertificateMappingAuthentication: - # IIS-IPSecurity: - # IIS-ISAPIExtensions: - # IIS-ISAPIFilter: - # IIS-LegacyScripts: - # IIS-LegacySnapIn: - # IIS-LoggingLibraries: - # IIS-ManagementConsole: - # IIS-ManagementScriptingTools: - # IIS-ManagementService: - # IIS-Metabase: - # IIS-NetFxExtensibility: - # IIS-NetFxExtensibility45: - # IIS-ODBCLogging: - # IIS-Performance: - # IIS-RequestFiltering: - # IIS-RequestMonitor: - # IIS-Security: - # IIS-ServerSideIncludes: - # IIS-StaticContent: - # IIS-URLAuthorization: - # IIS-WebDAV: - # IIS-WebServer: - # IIS-WebServerManagementTools: - # IIS-WebServerRole: - # IIS-WebSockets: - # IIS-WindowsAuthentication: - # IIS-WMICompatibility: - # Internet-Explorer-Optional-amd64: - # LegacyComponents: - # MediaPlayback: - # Microsoft-Hyper-V: - # Microsoft-Hyper-V-All: - # Microsoft-Hyper-V-Hypervisor: - # Microsoft-Hyper-V-Management-Clients: - # Microsoft-Hyper-V-Management-PowerShell: - # Microsoft-Hyper-V-Services: - # Microsoft-Hyper-V-Tools-All: - # Microsoft-Windows-Client-EmbeddedExp-Package: - # Microsoft-Windows-NetFx3-OC-Package: - # Microsoft-Windows-NetFx3-WCF-OC-Package: - # Microsoft-Windows-NetFx4-US-OC-Package: - # Microsoft-Windows-NetFx4-WCF-US-OC-Package: - # MicrosoftWindowsPowerShellV2: - # MicrosoftWindowsPowerShellV2Root: - # Microsoft-Windows-Subsystem-Linux: - # MSMQ-ADIntegration: - # MSMQ-Container: - # MSMQ-DCOMProxy: - # MSMQ-HTTP: - # MSMQ-Multicast: - # MSMQ-Server: - # MSMQ-Triggers: - # MSRDC-Infrastructure: - # MultiPoint-Connector: - # MultiPoint-Connector-Services: - # MultiPoint-Tools: - # NetFx3: - # NetFx4-AdvSrvs: - # NetFx4Extended-ASPNET45: - # NFS-Administration: - # Printing-Foundation-Features: - # Printing-Foundation-InternetPrinting-Client: - # Printing-Foundation-LPDPrintService: - # Printing-Foundation-LPRPortMonitor: - # Printing-PrintToPDFServices-Features: - # Printing-XPSServices-Features: - # SearchEngine-Client-Package: - # ServicesForNFS-ClientOnly: - # SimpleTCP: - # SMB1Protocol: - # SMB1Protocol-Client: - # SMB1Protocol-Deprecation: - # SMB1Protocol-Server: - # SmbDirect: - TelnetClient: - # TFTP: - # TIFFIFilter: - # VirtualMachinePlatform: - # WAS-ConfigurationAPI: - # WAS-NetFxEnvironment: - # WAS-ProcessModel: - # WAS-WindowsActivationService: - # WCF-HTTP-Activation: - # WCF-HTTP-Activation45: - # WCF-MSMQ-Activation45: - # WCF-NonHTTP-Activation: - # WCF-Pipe-Activation45: - # WCF-Services45: - # WCF-TCP-Activation45: - # WCF-TCP-PortSharing45: - # Windows-Defender-ApplicationGuard: - # Windows-Defender-Default-Definitions: - # Windows-Identity-Foundation: - # WindowsMediaPlayer: - # WorkFolders-Client: - packages: - enabled: true - system_old: - enabled: true - timezone: America/New_York - computer: - enabled: true - hostname: "saltstack1" - description: "Saltstack Computer Description" - wua: - enabled: true - settings: - enabled: true - level: 4 - recommended: true - featured: false - elevated: true - msupdate: true - day: Everyday - time: "01:00" - uptodate: - enabled: true - only_initial_build: true - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - user: - enabled: false - create: - saltuser1: - enabled: true - password: P@55w0rd! - fullname: User1 SaltStack - description: SaltStack User1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Power Users - - saltstack_users - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - saltadmin1: - enabled: false - password: P@55w0rd! - fullname: Admin1 SaltStack - description: SaltStack Admin1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Administrators - - saltstack_administrators - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - -2020-03-04 15:27:51,519 [salt.loaded.int.render.yaml:80 ][DEBUG ][4300] Results of YAML rendering: -OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 15:27:51,534 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015618085861206055 -2020-03-04 15:27:51,597 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded jinja.render -2020-03-04 15:27:51,597 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded yaml.render -2020-03-04 15:27:51,597 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded pillar.items -2020-03-04 15:27:51,612 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded direct_call.execute -2020-03-04 15:27:51,612 [salt.pillar :57 ][DEBUG ][4300] Determining pillar cache -2020-03-04 15:27:51,659 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded jinja.render -2020-03-04 15:27:51,659 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded yaml.render -2020-03-04 15:27:51,676 [salt.template :59 ][DEBUG ][4300] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 15:27:51,691 [salt.utils.jinja :85 ][DEBUG ][4300] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:27:51,691 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.0 -2020-03-04 15:27:51,691 [salt.template :120 ][DEBUG ][4300] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: ---- -base: - "*": - - windows - -2020-03-04 15:27:51,691 [salt.loaded.int.render.yaml:80 ][DEBUG ][4300] Results of YAML rendering: -OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 15:27:51,691 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 15:27:51,691 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded confirm_top.confirm_top -2020-03-04 15:27:51,691 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded compound_match.match -2020-03-04 15:27:51,706 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][4300] compound_match: vagrant ? * -2020-03-04 15:27:51,706 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded glob_match.match -2020-03-04 15:27:51,706 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][4300] compound_match vagrant ? "*" => "True" -2020-03-04 15:27:51,706 [salt.template :59 ][DEBUG ][4300] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 15:27:51,706 [salt.utils.jinja :85 ][DEBUG ][4300] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 15:27:51,722 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.015641212463378906 -2020-03-04 15:27:51,722 [salt.template :120 ][DEBUG ][4300] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: -# -*- coding: utf-8 -*- -# vim: ft=yaml ---- -windows: - states: - enabled: true - system: - computer_desc: - id: description - enabled: true - name: "Saltstack Computer Description" - require: - - windows.state.system.hostname.saltstack1 - hostname: - name: "saltstack1" - timezone: - system: - name: America/New_York - utc: false - wua: - # settings: - # enabled: true - # level: 4 - # recommended: true - # featured: false - # elevated: true - # msupdate: true - # day: Everyday - # time: "01:00" - uptodate: - enabled: false - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - modules: - enabled: true - environ: - items: - enabled: true - system: - reboot: - enabled: true - timeout: 5 - in_seconds: true - only_on_pending_reboot: true - wait_for_reboot: false - onlyif: powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}" - order: last - user: - enabled: true - current: - enabled: true - sam: true - status: - uptime: - enabled: true - human_readable: true - require: - - windows.module.user.current - system: - enabled: true - reboot: - enabled: false - timeout_in_seconds: 10 - only_on_pending_reboot: true - dsc: - enabled: false - client: - root: c:\\DSC\\ - manifest: - source: c:\\srv\\salt\\os_windows\\files\\dsc\\manifests\\ - configuration: Win10DSC - user: - enabled: false - disable: - Administrator: - disable: false - Guest: - disable: true - packages: - enabled: true - always_install_latest_version: false - always_upgrade_to_latest_version: false - providers: - enabled: false - installed: - NuGet: - powershell: - modules: - enabled: true - installed: - PSDscResources: - cChoco: - chocolatey: - enabled: true - installed: - notepadplusplus: - windirstat: - version: '1.1.2.20161210' - saltstack: - enabled: true - installed: - git: - refresh_minion_env_path: true - 7zip: - version: '18.06.00.0' - refresh_minion_env_path: false - kdiff3: - appx: - enabled: true - provisioned: - uninstalled: - # Microsoft.3DBuilder: - # Microsoft.BingWeather: - # Microsoft.DesktopAppInstaller: - # Microsoft.Getstarted: - # Microsoft.Messaging: - # Microsoft.Microsoft3DViewer: - # Microsoft.MicrosoftOfficeHub: - Microsoft.MicrosoftSolitaireCollection: - # Microsoft.MicrosoftStickyNotes: - # Microsoft.MSPaint: - # Microsoft.Office.OneNote: - # Microsoft.OneConnect: - # Microsoft.People: - # Microsoft.SkypeApp: - # Microsoft.StorePurchaseApp: - Microsoft.Wallet: - # Microsoft.Windows.Photos: - # Microsoft.WindowsAlarms: - # Microsoft.WindowsCalculator: - # Microsoft.WindowsCamera: - # microsoft.windowscommunicationsapps: - # Microsoft.WindowsFeedbackHub: - # Microsoft.WindowsMaps: - # Microsoft.WindowsSoundRecorder: - # Microsoft.WindowsStore: - # Microsoft.XboxApp: - # Microsoft.XboxGameOverlay: - # Microsoft.XboxIdentityProvider: - # Microsoft.XboxSpeechToTextOverlay: - Microsoft.ZuneMusic: - Microsoft.ZuneVideo: - # Microsoft.GetHelp: - # Microsoft.Print3D: - # Microsoft.Xbox.TCUI: - # Microsoft.WebMediaExtensions: - # Microsoft.XboxGamingOverlay: - # Microsoft.HEIFImageExtension: - Microsoft.MixedReality.Portal: - # Microsoft.ScreenSketch: - # Microsoft.VP9VideoExtensions: - # Microsoft.WebpImageExtension: - # Microsoft.YourPhone: - server: - enabled: true - features: - enabled: true - installed: - telnet-client: - desktop: - enabled: true - optional_features: - enabled: true - installed: - # Client-DeviceLockdown: - # Client-EmbeddedBootExp: - # Client-EmbeddedLogon: - # Client-EmbeddedShellLauncher: - # ClientForNFS-Infrastructure: - # Client-KeyboardFilter: - # Client-ProjFS: - # Client-UnifiedWriteFilter: - # Containers: - # Containers-DisposableClientVM: - # DataCenterBridging: - # DirectoryServices-ADAM-Client: - # DirectPlay: - # FaxServicesClientPackage: - # HostGuardian: - # HypervisorPlatform: - # IIS-ApplicationDevelopment: - # IIS-ApplicationInit: - # IIS-ASP: - # IIS-ASPNET: - # IIS-ASPNET45: - # IIS-BasicAuthentication: - # IIS-CertProvider: - # IIS-CGI: - # IIS-ClientCertificateMappingAuthentication: - # IIS-CommonHttpFeatures: - # IIS-CustomLogging: - # IIS-DefaultDocument: - # IIS-DigestAuthentication: - # IIS-DirectoryBrowsing: - # IIS-FTPExtensibility: - # IIS-FTPServer: - # IIS-FTPSvc: - # IIS-HealthAndDiagnostics: - # IIS-HostableWebCore: - # IIS-HttpCompressionDynamic: - # IIS-HttpCompressionStatic: - # IIS-HttpErrors: - # IIS-HttpLogging: - # IIS-HttpRedirect: - # IIS-HttpTracing: - # IIS-IIS6ManagementCompatibility: - # IIS-IISCertificateMappingAuthentication: - # IIS-IPSecurity: - # IIS-ISAPIExtensions: - # IIS-ISAPIFilter: - # IIS-LegacyScripts: - # IIS-LegacySnapIn: - # IIS-LoggingLibraries: - # IIS-ManagementConsole: - # IIS-ManagementScriptingTools: - # IIS-ManagementService: - # IIS-Metabase: - # IIS-NetFxExtensibility: - # IIS-NetFxExtensibility45: - # IIS-ODBCLogging: - # IIS-Performance: - # IIS-RequestFiltering: - # IIS-RequestMonitor: - # IIS-Security: - # IIS-ServerSideIncludes: - # IIS-StaticContent: - # IIS-URLAuthorization: - # IIS-WebDAV: - # IIS-WebServer: - # IIS-WebServerManagementTools: - # IIS-WebServerRole: - # IIS-WebSockets: - # IIS-WindowsAuthentication: - # IIS-WMICompatibility: - # Internet-Explorer-Optional-amd64: - # LegacyComponents: - # MediaPlayback: - # Microsoft-Hyper-V: - # Microsoft-Hyper-V-All: - # Microsoft-Hyper-V-Hypervisor: - # Microsoft-Hyper-V-Management-Clients: - # Microsoft-Hyper-V-Management-PowerShell: - # Microsoft-Hyper-V-Services: - # Microsoft-Hyper-V-Tools-All: - # Microsoft-Windows-Client-EmbeddedExp-Package: - # Microsoft-Windows-NetFx3-OC-Package: - # Microsoft-Windows-NetFx3-WCF-OC-Package: - # Microsoft-Windows-NetFx4-US-OC-Package: - # Microsoft-Windows-NetFx4-WCF-US-OC-Package: - # MicrosoftWindowsPowerShellV2: - # MicrosoftWindowsPowerShellV2Root: - # Microsoft-Windows-Subsystem-Linux: - # MSMQ-ADIntegration: - # MSMQ-Container: - # MSMQ-DCOMProxy: - # MSMQ-HTTP: - # MSMQ-Multicast: - # MSMQ-Server: - # MSMQ-Triggers: - # MSRDC-Infrastructure: - # MultiPoint-Connector: - # MultiPoint-Connector-Services: - # MultiPoint-Tools: - # NetFx3: - # NetFx4-AdvSrvs: - # NetFx4Extended-ASPNET45: - # NFS-Administration: - # Printing-Foundation-Features: - # Printing-Foundation-InternetPrinting-Client: - # Printing-Foundation-LPDPrintService: - # Printing-Foundation-LPRPortMonitor: - # Printing-PrintToPDFServices-Features: - # Printing-XPSServices-Features: - # SearchEngine-Client-Package: - # ServicesForNFS-ClientOnly: - # SimpleTCP: - # SMB1Protocol: - # SMB1Protocol-Client: - # SMB1Protocol-Deprecation: - # SMB1Protocol-Server: - # SmbDirect: - TelnetClient: - # TFTP: - # TIFFIFilter: - # VirtualMachinePlatform: - # WAS-ConfigurationAPI: - # WAS-NetFxEnvironment: - # WAS-ProcessModel: - # WAS-WindowsActivationService: - # WCF-HTTP-Activation: - # WCF-HTTP-Activation45: - # WCF-MSMQ-Activation45: - # WCF-NonHTTP-Activation: - # WCF-Pipe-Activation45: - # WCF-Services45: - # WCF-TCP-Activation45: - # WCF-TCP-PortSharing45: - # Windows-Defender-ApplicationGuard: - # Windows-Defender-Default-Definitions: - # Windows-Identity-Foundation: - # WindowsMediaPlayer: - # WorkFolders-Client: - packages: - enabled: true - system_old: - enabled: true - timezone: America/New_York - computer: - enabled: true - hostname: "saltstack1" - description: "Saltstack Computer Description" - wua: - enabled: true - settings: - enabled: true - level: 4 - recommended: true - featured: false - elevated: true - msupdate: true - day: Everyday - time: "01:00" - uptodate: - enabled: true - only_initial_build: true - software: true - drivers: true - skip_hidden: false - skip_mandatory: false - skip_reboot: false - categories: - - Critical Updates - - Definition Updates - - Drivers - - Feature Packs - - Security Updates - - Update Rollups - - Updates - - Update Rollups - - Windows Defender - severities: - - Critical - - Important - user: - enabled: false - create: - saltuser1: - enabled: true - password: P@55w0rd! - fullname: User1 SaltStack - description: SaltStack User1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Power Users - - saltstack_users - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - saltadmin1: - enabled: false - password: P@55w0rd! - fullname: Admin1 SaltStack - description: SaltStack Admin1 - home: \\fileserver\home\foo - homedrive: "c:" - profile: \\fileserver\profiles\foo - logonscript: logonscript.ps1 - groups: - - Administrators - - saltstack_administrators - # update - expiration_date: None - expired: None - account_disabled: false - unlock_account: true - password_never_expires: false - disallow_change_password: false - -2020-03-04 15:27:51,722 [salt.loaded.int.render.yaml:80 ][DEBUG ][4300] Results of YAML rendering: -OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 15:27:51,722 [salt.template :26 ][PROFILE ][4300] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.0 -2020-03-04 15:27:51,722 [salt.utils.lazy :104 ][DEBUG ][4300] LazyLoaded nested.output +2020-03-06 10:31:20,554 [salt.state :2045][INFO ][4476] Completed state [telnet-client] at time 10:31:20.554133 (duration_in_ms=16328.113) +2020-03-06 10:31:20,554 [salt.state :1867][INFO ][4476] Running state [windows.module.system.reboot] at time 10:31:20.554133 +2020-03-06 10:31:20,554 [salt.state :1900][INFO ][4476] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:31:20,569 [salt.utils.lazy :107 ][DEBUG ][4476] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:31:20,569 [salt.loaded.int.module.cmdmod:397 ][INFO ][4476] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:31:20,757 [salt.state :906 ][DEBUG ][4476] Last command return code: 0 +2020-03-06 10:31:20,757 [salt.loaded.int.module.win_system:1413][DEBUG ][4476] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:31:20,757 [salt.loaded.int.module.win_system:1348][DEBUG ][4476] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:31:20,772 [salt.loaded.int.module.win_system:1348][DEBUG ][4476] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:31:20,772 [salt.loaded.int.module.win_system:1387][DEBUG ][4476] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:31:20,772 [salt.loaded.int.module.win_system:1273][DEBUG ][4476] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:31:20,789 [salt.state :320 ][INFO ][4476] {'system.reboot': True} +2020-03-06 10:31:20,804 [salt.state :2045][INFO ][4476] Completed state [windows.module.system.reboot] at time 10:31:20.804127 (duration_in_ms=249.994) +2020-03-06 10:31:20,804 [salt.state :2921][DEBUG ][4476] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2692419401208 does not exist, no need to cleanup +2020-03-06 10:31:20,804 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded highstate.output +2020-03-06 10:31:20,804 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,819 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,819 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,819 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,835 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,835 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,835 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,835 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,851 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,851 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,866 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,882 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,882 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,882 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,882 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,897 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 10:31:20,897 [salt.utils.lazy :104 ][DEBUG ][4476] LazyLoaded nested.output +2020-03-06 13:31:26,819 [salt.loader :770 ][DEBUG ][3392] Grains refresh requested. Refreshing grains. +2020-03-06 13:31:26,819 [salt.config :2111][DEBUG ][3392] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:31:26,819 [salt.config :2255][DEBUG ][3392] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:31:26,819 [salt.config :2111][DEBUG ][3392] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf diff --git a/test/results/py3-windows-server-2019-1809.inspec.results.json b/test/results/py3-windows-server-2019-1809.inspec.results.json index 19971c6..fdccb80 100644 --- a/test/results/py3-windows-server-2019-1809.inspec.results.json +++ b/test/results/py3-windows-server-2019-1809.inspec.results.json @@ -1 +1 @@ -{"platform":{"name":"windows_server_2019_datacenter_evaluation","release":"10.0.17763"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_server_2019_datacenter_evaluation should include \"windows\"","run_time":9.06e-05,"start_time":"2020-03-04T15:22:35-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.4300965,"start_time":"2020-03-04T15:22:35-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0219324,"start_time":"2020-03-04T15:22:35-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.025489,"start_time":"2020-03-04T15:22:35-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0255958,"start_time":"2020-03-04T15:22:35-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0221131,"start_time":"2020-03-04T15:22:35-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001146,"start_time":"2020-03-04T15:22:35-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":7.02e-05,"start_time":"2020-03-04T15:22:35-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001086,"start_time":"2020-03-04T15:22:35-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Feature 'telnet-client' should be installed","run_time":2.6796573,"start_time":"2020-03-04T15:22:35-05:00"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0664151,"start_time":"2020-03-04T15:22:38-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.5860972,"start_time":"2020-03-04T15:22:38-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"Windows Optional Feature: `TelnetClient`","run_time":1.18e-05,"start_time":"2020-03-04T15:22:39-05:00","resource":"Windows Optional Feature: `TelnetClient`","skip_message":"The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead."}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0305872,"start_time":"2020-03-04T15:22:39-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0002003,"start_time":"2020-03-04T15:22:39-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1629538,"start_time":"2020-03-04T15:22:39-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.2592416,"start_time":"2020-03-04T15:22:39-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.1960131,"start_time":"2020-03-04T15:22:39-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.2060777,"start_time":"2020-03-04T15:22:39-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.1741839,"start_time":"2020-03-04T15:22:39-05:00"}]}],"status":"loaded"}],"statistics":{"duration":4.9157995},"version":"4.18.39"} \ No newline at end of file +{"platform":{"name":"windows_server_2019_datacenter_evaluation","release":"10.0.17763"},"profiles":[{"name":"default","sha256":"0db8c67f4c6eeb201bffdbba450f41bfd3b6586e3677fe0d9c6e0a103c7fac16","title":"SaltStack Windows Formula","maintainer":"SaltStack Formulas","summary":"Verify that the windows formula is setup and configured correctly","license":"Apache-2.0","supports":[{"platform-family":"windows"}],"attributes":[],"groups":[{"id":"controls/os.rb","controls":["Operating System"]},{"id":"controls/salt.formula.windows.system.packages.appx.rb","controls":["Windows AppX Provisioned Package Uninstalled"]},{"id":"controls/salt.formula.windows.system.packages.chocolatey.rb","controls":["Chocolatey Package Installed"]},{"id":"controls/salt.formula.windows.system.server.features.rb","controls":["Windows Features"]},{"id":"controls/salt.modules.chocolatey.rb","controls":["Chocolatey Installed"]},{"id":"controls/salt.states.timezone.rb","controls":["Windows Timezone"]},{"id":"controls/salt.states.win_dism.rb","controls":["Windows Optional Features"]},{"id":"controls/salt.states.win_system.rb","controls":["Windows Computer Hostname","Windows Computer Description"]},{"id":"controls/windows.system.packages.saltstack.rb","controls":["Saltstack Package Installed"]}],"controls":[{"id":"Operating System","title":"","desc":null,"descriptions":[],"impact":0.5,"refs":[],"tags":{},"code":"control 'Operating System' do\n title ''\n # only_if {\n # !registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Enterprise\"\n # }\n # describe os.family do\n # it { should eq 'windows' }\n # end\n describe.one do\n describe os.name do\n it { should include 'windows' }\n end\n end\n\n # describe os.windows? do\n # it { should eq true }\n # end\n\n # describe.one do\n # describe os.release do\n # it { should include '10.0' }\n # end\n # end\n\n # describe.one do\n # describe os.arch do\n # it { should eq 'x86_64' }\n # end\n # end\n\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion') do\n # its('ProductName') { should_not match 'Server' }\n # end\n\n # # it { should have_property_value 'value' }\n # describe registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'] do\n # it { should match 'Enterprise' }\n # end\nend\n","source_location":{"line":15,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/os.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"windows_server_2019_datacenter_evaluation should include \"windows\"","run_time":8.49e-05,"start_time":"2020-03-06T13:25:45-05:00"}]},{"id":"Windows AppX Provisioned Package Uninstalled","title":"salt.formula.windows.system.packages.appx.provisioned.uninstalled","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"","ref":""}],"tags":{"timezone":null,"saltstack":null,"salt.formula.windows.system.packages.appx":null,"salt.formula.windows.system.packages.appx.provisioned.uninstalled":null,"configuration management":null},"code":"control 'Windows AppX Provisioned Package Uninstalled' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.appx.provisioned.uninstalled'\n tag 'timezone', 'saltstack', 'salt.formula.windows.system.packages.appx',\n 'salt.formula.windows.system.packages.appx.provisioned.uninstalled',\n 'configuration management'\n ref '', url: ''\n pillar_packages_appx = pillar.dig('windows', 'system', 'packages', 'appx')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'appx provisioned is enabled in pillar' do\n !pillar_packages_appx.nil? && pillar_packages_appx['enabled']\n end\n only_if '`uninstalled` key is iterable' do\n pillar_packages_appx.dig('provisioned', 'uninstalled').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_appx.dig('provisioned', 'uninstalled').each do |package|\n describe windows_appx(package[0]) do\n it { should_not be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.appx.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MicrosoftSolitaireCollection` should not be installed","run_time":0.5817654,"start_time":"2020-03-06T13:25:45-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.Wallet` should not be installed","run_time":0.0218238,"start_time":"2020-03-06T13:25:46-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneMusic` should not be installed","run_time":0.0233384,"start_time":"2020-03-06T13:25:46-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.ZuneVideo` should not be installed","run_time":0.0225576,"start_time":"2020-03-06T13:25:46-05:00"},{"status":"passed","code_desc":"Windows AppX Provisioned Package `Microsoft.MixedReality.Portal` should not be installed","run_time":0.0227377,"start_time":"2020-03-06T13:25:46-05:00"}]},{"id":"Chocolatey Package Installed","title":"salt.formula.windows.system.packages.chocolatey","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed","ref":"salt.states.chocolatey.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.chocolatey":null,"salt.states.chocolatey.installed":null,"salt.formula.windows.system.packages.chocolatey":null,"configuration management":null},"code":"control 'Chocolatey Package Installed' do\n impact 'critical'\n title 'salt.formula.windows.system.packages.chocolatey'\n tag 'timezone', 'saltstack', 'salt.states.chocolatey', 'salt.states.chocolatey.installed',\n 'salt.formula.windows.system.packages.chocolatey', 'configuration management'\n ref 'salt.states.chocolatey.installed',\n url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.chocolatey.html#salt.states.chocolatey.installed'\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if 'chocolatey is enabled in pillar' do\n !pillar_chocolatey.nil? && pillar_chocolatey['enabled']\n end\n only_if '`installed` key is iterable' do\n pillar_chocolatey.dig('installed').respond_to? :each\n end\n only_if 'chocolatey is installed' do\n command('choco').exist?\n end\n # require 'pry'; binding.pry;\n # require 'pp'; puts \"CHOCOLATEY: \"; pp pillar_chocolatey;\n pillar_chocolatey.dig('installed').each do |package|\n # pillar_chocolatey['installed'].each do |package|\n # print \": \"; pp\n # print \"package: \"; pp package # [\"notepadplusplus\", nil], [\"windirstat\", {\"version\"=>\"1.1.2.20161210\"}]\n # print \"package[0]: \"; pp package[0] # \"notepadplusplus\", \"windirstat\"\n # print \"package[1]: \"; pp package[1] # nil/\"None\":String, {\"version\"=>\"1.1.2.20161210\"}\n # print \"package[1].nil?: \"; pp package[1].nil?\n # print \"package[1].is_a? String: \"; pp (package[1].is_a? String)\n # print \"package[1].respond_to?(:key?): \"; pp (package[1].respond_to?(:key?))\n # print \"package[1] == \\\"None\\\": \"; pp (package[1] == \"None\")\n # unless package[1].nil? or package[1].kind_of?(String)\n describe chocolatey_package(package[0]) do\n it { should be_installed }\n if (package[1].respond_to? :key?) && package[1].key?('version')\n its ('version') { should cmp package[1]['version'] }\n end\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.packages.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Chocolatey package notepadplusplus should be installed","run_time":0.0001114,"start_time":"2020-03-06T13:25:46-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat should be installed","run_time":7.59e-05,"start_time":"2020-03-06T13:25:46-05:00"},{"status":"passed","code_desc":"Chocolatey package windirstat version should cmp == \"1.1.2.20161210\"","run_time":0.0001037,"start_time":"2020-03-06T13:25:46-05:00"}]},{"id":"Windows Features","title":"salt.formula.windows.system.server.features","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed","ref":"salt.states.win_servermanager.installed"}],"tags":{"timezone":null,"saltstack":null,"salt.states.win_servermanager":null,"salt.states.win_servermanager.installed":null,"salt.formula.windows.system.server.features.enabled":null,"configuration management":null},"code":"control 'Windows Features' do\n impact 'critical'\n title 'salt.formula.windows.system.server.features'\n tag 'timezone','saltstack','salt.states.win_servermanager','salt.states.win_servermanager.installed','salt.formula.windows.system.server.features.enabled','configuration management'\n ref 'salt.states.win_servermanager.installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_servermanager.html#salt.states.win_servermanager.installed'\n pillar_server_features = pillar.dig('windows', 'system', 'server', 'features')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"server features is enabled in pillar\") do\n !pillar_server_features.nil? and pillar_server_features['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_server_features.dig('installed').respond_to? :each\n end\n only_if (\"only supported on servers\") do\n server?\n # registry_key('HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')['ProductName'].match? \"Server\"\n end\n pillar_server_features.dig('installed').each do |feature|\n describe windows_feature(feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.formula.windows.system.server.features.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Windows Feature 'telnet-client' should be installed","run_time":2.3730528,"start_time":"2020-03-06T13:25:46-05:00"}]},{"id":"Chocolatey Installed","title":"salt.modules.chocolatey.bootstrap","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap","ref":"salt.modules.chocolatey.bootstrap"}],"tags":{"chocolatey":null,"saltstack":null,"alt.modules.chocolatey":null,"salt.modules.chocolatey.bootstrap":null,"windows.system.packages.chocolatey":null,"configuration management":null,"application":null,"program":null},"code":"control 'Chocolatey Installed' do\n impact 'critical'\n title 'salt.modules.chocolatey.bootstrap'\n tag 'chocolatey','saltstack','alt.modules.chocolatey','salt.modules.chocolatey.bootstrap','windows.system.packages.chocolatey','configuration management','application','program'\n ref 'salt.modules.chocolatey.bootstrap', url: 'https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html#salt.modules.chocolatey.bootstrap'\n #require 'pry'; binding.pry;\n # C:\\ProgramData\\chocolatey\\bin\\choco.exe\n pillar_chocolatey = pillar.dig('windows', 'system', 'packages', 'chocolatey')\n only_if (\"chocolatey is enabled in pillar\") do\n !pillar_chocolatey.nil? and pillar_chocolatey['enabled']\n # !highstate_module_chocolatey_bootstrap.nil?\n end\n describe command('choco') do\n it { should exist }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.modules.chocolatey.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Command: `choco` should exist","run_time":0.0502439,"start_time":"2020-03-06T13:25:48-05:00"}]},{"id":"Windows Timezone","title":"salt.states.timezone.system","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system","ref":"salt.states.timezone.system"}],"tags":{"timezone":null,"saltstack":null,"salt.states.timezone":null,"salt.states.timezone.system":null,"configuration management":null},"code":"control 'Windows Timezone' do\n impact 'critical'\n title 'salt.states.timezone.system'\n tag 'timezone','saltstack','salt.states.timezone','salt.states.timezone.system','configuration management'\n ref 'salt.states.timezone.system', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.timezone.html#salt.states.timezone.system'\n timezone = pillar.dig('windows', 'states', 'timezone', 'system', 'name')\n only_if (\"timezone is defined in pillar\") do\n !timezone.nil?\n end\n #require 'pry'; binding.pry;\n describe windows_timezone(timezone) do\n it { should be_set }\n end\nend","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.timezone.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"`Eastern Standard Time` timezone (converted from America/New_York) should be set","run_time":0.4419279,"start_time":"2020-03-06T13:25:48-05:00"}]},{"id":"Windows Optional Features","title":"salt.states.win_dism.feature_installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed","ref":"salt.states.win_dism.feature_installed"}],"tags":{"optional feature":null,"saltstack":null,"salt.states.win_dism":null,"salt.states.win_dism.feature_installed":null,"configuration management":null},"code":"control 'Windows Optional Features' do\n impact 'critical'\n title 'salt.states.win_dism.feature_installed'\n tag 'optional feature','saltstack','salt.states.win_dism','salt.states.win_dism.feature_installed','configuration management'\n ref 'salt.states.win_dism.feature_installed', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_dism.html#salt.states.win_dism.feature_installed'\n pillar_optional_features = pillar.dig('windows', 'system', 'desktop', 'optional_features')\n\n only_if (\"optional features is enabled in pillar\") do\n !pillar_optional_features.nil? and pillar_optional_features['enabled']\n end\n #require 'pry'; binding.pry;\n pillar_optional_features['installed'].each do |optional_feature|\n describe windows_optional_feature(optional_feature[0]) do\n it{ should be_installed }\n end\n end\nend\n","source_location":{"line":23,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_dism.rb"},"waiver_data":{},"results":[{"status":"skipped","code_desc":"Windows Optional Feature: `TelnetClient`","run_time":1.54e-05,"start_time":"2020-03-06T13:25:48-05:00","resource":"Windows Optional Feature: `TelnetClient`","skip_message":"The `windows_optional_feature` resource is not supported on server OSs, use `windows_feature` instead."}]},{"id":"Windows Computer Hostname","title":"salt.states.win_system.hostname","desc":"If not set correctly check if there is a pending rename to the correct hostname after reboot.","descriptions":[{"label":"default","data":"If not set correctly check if there is a pending rename to the correct hostname after reboot."}],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname","ref":"salt.states.win_system.hostname"}],"tags":{"hostname":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.hostname":null,"configuration management":null},"code":"control 'Windows Computer Hostname' do\n impact 'critical'\n title 'salt.states.win_system.hostname'\n tag 'hostname','saltstack','salt.states.win_system','salt.states.win_system.hostname','configuration management'\n ref 'salt.states.win_system.hostname', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.hostname'\n desc 'Check if hostname is set correctly.'\n desc 'If not set correctly check if there is a pending rename to the correct hostname after reboot.'\n pillar_hostname = pillar.dig('windows', 'states', 'system', 'hostname', 'name')\n only_if (\"hostname is defined in pillar\") do\n !pillar_hostname.nil?\n # and reboot is enabled\n #and pillar.dig('windows', 'modules', 'system', 'reboot', 'enabled')\n end\n # only_if (\"Running in CI environment, not able to reboot, skipping test.\") do\n # ENV[\"CI\"] != 'True'\n # end\n #require 'pry'; binding.pry;\\\n computername_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName')['ComputerName']\n ActiveComputerName_value = registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName')['ComputerName']\n # puts \"ComputerName: #{computername_value}\"\n # puts \"ActiveComputerName: #{ActiveComputerName_value}\"\n describe.one do\n # if (computername_value == pillar_hostname)\n describe sys_info do\n its('hostname') { should cmp pillar_hostname }\n end\n # elsif (ActiveComputerName_value == pillar_hostname)\n describe registry_key('HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName') do\n its('ComputerName') { should cmp pillar_hostname }\n end \n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Information hostname should cmp == \"saltstack1\"","run_time":0.0182967,"start_time":"2020-03-06T13:25:48-05:00"},{"status":"passed","code_desc":"Registry Key HKLM\\SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName ComputerName should cmp == \"saltstack1\"","run_time":0.0001454,"start_time":"2020-03-06T13:25:48-05:00"}]},{"id":"Windows Computer Description","title":"salt.states.win_system.computer_desc","desc":null,"descriptions":[],"impact":0.6,"refs":[{"url":"https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc","ref":"salt.states.win_system.computer_desc"}],"tags":{"computer description":null,"saltstack":null,"salt.states.win_system":null,"salt.states.win_system.computer_desc":null,"configuration management":null},"code":"control 'Windows Computer Description' do\n impact 0.6\n title 'salt.states.win_system.computer_desc'\n tag 'computer description','saltstack','salt.states.win_system','salt.states.win_system.computer_desc','configuration management'\n ref 'salt.states.win_system.computer_desc', url: 'https://docs.saltstack.com/en/master/ref/states/all/salt.states.win_system.html#salt.states.win_system.computer_desc'\n pillar_computer_description = pillar.dig('windows', 'states', 'system', 'computer_desc', 'name')\n only_if ('computer description is defined in pillar') do\n !pillar_computer_description.nil?\n end\n ps_cmd = \"Get-WmiObject -Class Win32_OperatingSystem | Select Description -ExpandProperty description\"\n #require 'pry'; binding.pry;\n describe powershell(ps_cmd) do\n its('stdout') { should match pillar_computer_description }\n end\nend","source_location":{"line":57,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/salt.states.win_system.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"Powershell stdout should match \"Saltstack Computer Description\"","run_time":0.1326831,"start_time":"2020-03-06T13:25:48-05:00"}]},{"id":"Saltstack Package Installed","title":"windows.system.packages.saltstack.installed","desc":null,"descriptions":[],"impact":0.9,"refs":[{"url":"https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed","ref":"salt.states.pkg.installed"}],"tags":{"package":null,"saltstack":null,"windows.system.packages.saltstack":null,"windows.system.packages.saltstack.installed":null,"configuration management":null},"code":"control 'Saltstack Package Installed' do\n impact 'critical'\n title 'windows.system.packages.saltstack.installed'\n tag 'package','saltstack','windows.system.packages.saltstack','windows.system.packages.saltstack.installed','configuration management'\n ref 'salt.states.pkg.installed', url: 'https://docs.saltstack.com/en/latest/ref/states/all/salt.states.pkg.html#salt.states.pkg.installed'\n pillar_packages_saltstack = pillar.dig('windows', 'system', 'packages', 'saltstack')\n # There is a bug with multiple only_if statements, if any fail it will always report that\n # it `Skipped control due to only_if condition:` for the last only_if statement.\n only_if (\"saltstack packages are enabled in pillar\") do\n !pillar_packages_saltstack.nil? and pillar_packages_saltstack['enabled']\n end\n only_if (\"`installed` key is iterable\") do\n pillar_packages_saltstack.dig('installed').respond_to? :each\n end\n # require 'pp'; pp\n pillar_packages_saltstack.dig('installed').each do |package|\n describe package(get_saltstack_package_full_name(package[0])) do\n it { should be_installed }\n if package[1].respond_to? :key?\n if package[1].key?('version')\n its('version') { should cmp package[1]['version'] }\n end\n end\n end\n end\nend\n","source_location":{"line":24,"ref":"/home/pmudd/projects/github/clearasmudd/windows-formula/test/integration/default/controls/windows.system.packages.saltstack.rb"},"waiver_data":{},"results":[{"status":"passed","code_desc":"System Package Git should be installed","run_time":0.1788576,"start_time":"2020-03-06T13:25:49-05:00"},{"status":"passed","code_desc":"System Package 7-Zip should be installed","run_time":0.155659,"start_time":"2020-03-06T13:25:49-05:00"},{"status":"passed","code_desc":"System Package 7-Zip version should cmp == \"18.06.00.0\"","run_time":0.1622058,"start_time":"2020-03-06T13:25:49-05:00"},{"status":"passed","code_desc":"System Package KDiff3 should be installed","run_time":0.158842,"start_time":"2020-03-06T13:25:49-05:00"}]}],"status":"loaded"}],"statistics":{"duration":4.3723774},"version":"4.18.39"} \ No newline at end of file diff --git a/test/results/py3-windows-server-2019-1809.inspec.results.txt b/test/results/py3-windows-server-2019-1809.inspec.results.txt index 6e69564..c51ef1f 100644 --- a/test/results/py3-windows-server-2019-1809.inspec.results.txt +++ b/test/results/py3-windows-server-2019-1809.inspec.results.txt @@ -66,6 +66,6 @@ Pending: (Failures listed here are expected and do not affect your suite's statu # Not yet implemented # -Finished in 4.92 seconds (files took 6 minutes 18 seconds to load) +Finished in 4.37 seconds (files took 7 minutes 50 seconds to load) 20 examples, 0 failures, 1 pending diff --git a/test/results/py3-windows-server-2019-1809.inspec.results.xml b/test/results/py3-windows-server-2019-1809.inspec.results.xml index 45152a0..1f2c7a1 100644 --- a/test/results/py3-windows-server-2019-1809.inspec.results.xml +++ b/test/results/py3-windows-server-2019-1809.inspec.results.xml @@ -1,27 +1,27 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - + + + + + + + diff --git a/test/results/py3-windows-server-2019-1809.kitchen.log b/test/results/py3-windows-server-2019-1809.kitchen.log index f0823ef..274d21c 100644 --- a/test/results/py3-windows-server-2019-1809.kitchen.log +++ b/test/results/py3-windows-server-2019-1809.kitchen.log @@ -1,945 +1,942 @@ -I, [2020-03-04T15:16:23.041041 #4335] INFO -- py3-windows-server-2019-1809: -----> Cleaning up any prior instances of -I, [2020-03-04T15:16:23.041208 #4335] INFO -- py3-windows-server-2019-1809: -----> Destroying ... -I, [2020-03-04T15:16:23.042811 #4335] INFO -- py3-windows-server-2019-1809: Finished destroying (0m0.00s). -I, [2020-03-04T15:16:23.043772 #4335] INFO -- py3-windows-server-2019-1809: -----> Testing -I, [2020-03-04T15:16:23.043925 #4335] INFO -- py3-windows-server-2019-1809: -----> Creating ... -I, [2020-03-04T15:16:29.341411 #4335] INFO -- py3-windows-server-2019-1809: Bringing machine 'default' up with 'virtualbox' provider... -I, [2020-03-04T15:16:30.023457 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Cloning VM... -I, [2020-03-04T15:16:30.415570 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Matching MAC address for NAT networking... -I, [2020-03-04T15:16:30.650482 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Checking if box 'StefanScherer/windows_2019' version '2020.02.12' is up to date... -I, [2020-03-04T15:16:31.363449 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2019-1809-c859c6ff-bf34-4829-9058-babf0bd3b34d -I, [2020-03-04T15:16:36.942954 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Clearing any previously set network interfaces... -I, [2020-03-04T15:16:37.037374 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Preparing network interfaces based on configuration... -I, [2020-03-04T15:16:37.037823 #4335] INFO -- py3-windows-server-2019-1809: default: Adapter 1: nat -I, [2020-03-04T15:16:37.150413 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Forwarding ports... -I, [2020-03-04T15:16:37.256288 #4335] INFO -- py3-windows-server-2019-1809: default: 3389 (guest) => 3389 (host) (adapter 1) -I, [2020-03-04T15:16:37.256952 #4335] INFO -- py3-windows-server-2019-1809: default: 5985 (guest) => 55985 (host) (adapter 1) -I, [2020-03-04T15:16:37.257397 #4335] INFO -- py3-windows-server-2019-1809: default: 5986 (guest) => 55986 (host) (adapter 1) -I, [2020-03-04T15:16:37.257756 #4335] INFO -- py3-windows-server-2019-1809: default: 22 (guest) => 2222 (host) (adapter 1) -I, [2020-03-04T15:16:37.568259 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Running 'pre-boot' VM customizations... -I, [2020-03-04T15:16:38.339763 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Booting VM... -I, [2020-03-04T15:16:40.705123 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Waiting for machine to boot. This may take a few minutes... -I, [2020-03-04T15:16:41.614576 #4335] INFO -- py3-windows-server-2019-1809: default: WinRM address: 127.0.0.1:55985 -I, [2020-03-04T15:16:41.614887 #4335] INFO -- py3-windows-server-2019-1809: default: WinRM username: vagrant -I, [2020-03-04T15:16:41.615232 #4335] INFO -- py3-windows-server-2019-1809: default: WinRM execution_time_limit: PT2H -I, [2020-03-04T15:16:41.615596 #4335] INFO -- py3-windows-server-2019-1809: default: WinRM transport: negotiate -I, [2020-03-04T15:17:52.931059 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Machine booted and ready! -I, [2020-03-04T15:17:52.960534 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Checking for guest additions in VM... -I, [2020-03-04T15:17:53.803495 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Mounting shared folders... -I, [2020-03-04T15:17:53.804423 #4335] INFO -- py3-windows-server-2019-1809: default: /results => /mnt/c/tmp/results -I, [2020-03-04T15:18:02.760797 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Machine not provisioned because `--no-provision` is specified. -I, [2020-03-04T15:18:15.212021 #4335] INFO -- py3-windows-server-2019-1809: [WinRM] Established -I, [2020-03-04T15:18:15.212139 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:18:15.222321 #4335] INFO -- py3-windows-server-2019-1809: Vagrant instance created. -I, [2020-03-04T15:18:15.223951 #4335] INFO -- py3-windows-server-2019-1809: Finished creating (1m52.18s). -I, [2020-03-04T15:18:15.224217 #4335] INFO -- py3-windows-server-2019-1809: -----> Converging ... -I, [2020-03-04T15:18:15.226726 #4335] INFO -- py3-windows-server-2019-1809: Preparing files for transfer -I, [2020-03-04T15:18:15.226885 #4335] INFO -- py3-windows-server-2019-1809: Preparing salt-minion -I, [2020-03-04T15:18:15.231647 #4335] INFO -- py3-windows-server-2019-1809: Preparing pillars into /srv/pillar -I, [2020-03-04T15:18:15.231784 #4335] INFO -- py3-windows-server-2019-1809: pillars-from-files is deprecated in favor of pillars_from_files -I, [2020-03-04T15:18:15.235449 #4335] INFO -- py3-windows-server-2019-1809: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula -I, [2020-03-04T15:18:15.377848 #4335] INFO -- py3-windows-server-2019-1809: Preparing state_top -I, [2020-03-04T15:18:15.379586 #4335] INFO -- py3-windows-server-2019-1809: Preparing scripts into /etc/salt/scripts -I, [2020-03-04T15:18:16.490304 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:18:16.490654 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:18:16.490963 #4335] INFO -- py3-windows-server-2019-1809: Directory: C:\ -I, [2020-03-04T15:18:16.491271 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:18:16.491576 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:18:16.491922 #4335] INFO -- py3-windows-server-2019-1809: Mode LastWriteTime Length Name -I, [2020-03-04T15:18:16.492339 #4335] INFO -- py3-windows-server-2019-1809: ---- ------------- ------ ---- -I, [2020-03-04T15:18:16.492653 #4335] INFO -- py3-windows-server-2019-1809: d----- 3/4/2020 12:18 PM temp -I, [2020-03-04T15:18:17.689283 #4335] INFO -- py3-windows-server-2019-1809: Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe -I, [2020-03-04T15:18:24.994768 #4335] INFO -- py3-windows-server-2019-1809: Installing Salt minion -I, [2020-03-04T15:19:13.930053 #4335] INFO -- py3-windows-server-2019-1809: Starting the Salt minion service -I, [2020-03-04T15:19:13.930535 #4335] INFO -- py3-windows-server-2019-1809: Salt minion successfully installed -I, [2020-03-04T15:19:16.201986 #4335] INFO -- py3-windows-server-2019-1809: You asked for latest and you have 2019.2.3 installed, sweet! -I, [2020-03-04T15:19:16.202441 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.202769 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.881396 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.881808 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.882181 #4335] INFO -- py3-windows-server-2019-1809: Directory: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:19:16.882529 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.882855 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.883252 #4335] INFO -- py3-windows-server-2019-1809: Mode LastWriteTime Length Name -I, [2020-03-04T15:19:16.883641 #4335] INFO -- py3-windows-server-2019-1809: ---- ------------- ------ ---- -I, [2020-03-04T15:19:16.884010 #4335] INFO -- py3-windows-server-2019-1809: d----- 3/4/2020 12:19 PM kitchen -I, [2020-03-04T15:19:16.884363 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.884640 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:16.895652 #4335] INFO -- py3-windows-server-2019-1809: Transferring files to -I, [2020-03-04T15:19:42.437386 #4335] INFO -- py3-windows-server-2019-1809: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:19:42.437669 #4335] INFO -- py3-windows-server-2019-1809: At line:1 char:131 -I, [2020-03-04T15:19:42.437977 #4335] INFO -- py3-windows-server-2019-1809: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... -I, [2020-03-04T15:19:42.438260 #4335] INFO -- py3-windows-server-2019-1809: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -I, [2020-03-04T15:19:42.438519 #4335] INFO -- py3-windows-server-2019-1809: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException -I, [2020-03-04T15:19:42.438760 #4335] INFO -- py3-windows-server-2019-1809: + FullyQualifiedErrorId : NativeCommandError -I, [2020-03-04T15:19:42.438958 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:42.439136 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:42.439364 #4335] INFO -- py3-windows-server-2019-1809: Traceback (most recent call last): -I, [2020-03-04T15:19:42.439571 #4335] INFO -- py3-windows-server-2019-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:19:42.439772 #4335] INFO -- py3-windows-server-2019-1809: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:19:42.439989 #4335] INFO -- py3-windows-server-2019-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:19:42.440197 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:42.440463 #4335] INFO -- py3-windows-server-2019-1809: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. -I, [2020-03-04T15:19:42.440671 #4335] INFO -- py3-windows-server-2019-1809: Traceback (most recent call last): -I, [2020-03-04T15:19:42.440905 #4335] INFO -- py3-windows-server-2019-1809: File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name -I, [2020-03-04T15:19:42.441154 #4335] INFO -- py3-windows-server-2019-1809: return win32security.LookupAccountSid(None, sid_obj)[0] -I, [2020-03-04T15:19:42.441465 #4335] INFO -- py3-windows-server-2019-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -I, [2020-03-04T15:19:42.441721 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:19:43.450733 #4335] INFO -- py3-windows-server-2019-1809: [ERROR ] {'pkg.refresh_db': {'success': 0, 'total': 0, 'failed': 0}} -I, [2020-03-04T15:19:43.451062 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:20:47.016871 #4335] INFO -- py3-windows-server-2019-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W -I, [2020-03-04T15:20:47.017256 #4335] INFO -- py3-windows-server-2019-1809: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:20:47.017520 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:20:47.017775 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:20:47.018092 #4335] INFO -- py3-windows-server-2019-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P -I, [2020-03-04T15:20:47.018338 #4335] INFO -- py3-windows-server-2019-1809: environ[key] = redata.sub(a, value) -I, [2020-03-04T15:20:47.018609 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:20:47.019004 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.027244 #4335] INFO -- py3-windows-server-2019-1809: local: -I, [2020-03-04T15:22:00.027807 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.028229 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.state.system.hostname.saltstack1 -I, [2020-03-04T15:22:00.028612 #4335] INFO -- py3-windows-server-2019-1809: Function: system.hostname -I, [2020-03-04T15:22:00.028919 #4335] INFO -- py3-windows-server-2019-1809: Name: saltstack1 -I, [2020-03-04T15:22:00.029236 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.029543 #4335] INFO -- py3-windows-server-2019-1809: Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot -I, [2020-03-04T15:22:00.029854 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:31.686143 -I, [2020-03-04T15:22:00.030267 #4335] INFO -- py3-windows-server-2019-1809: Duration: 110.026 ms -I, [2020-03-04T15:22:00.030611 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.030926 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.031258 #4335] INFO -- py3-windows-server-2019-1809: hostname: -I, [2020-03-04T15:22:00.031582 #4335] INFO -- py3-windows-server-2019-1809: saltstack1 -I, [2020-03-04T15:22:00.031884 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.032181 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.state.system.computer_desc.description -I, [2020-03-04T15:22:00.032471 #4335] INFO -- py3-windows-server-2019-1809: Function: system.computer_desc -I, [2020-03-04T15:22:00.032758 #4335] INFO -- py3-windows-server-2019-1809: Name: Saltstack Computer Description -I, [2020-03-04T15:22:00.033053 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.033440 #4335] INFO -- py3-windows-server-2019-1809: Comment: Computer description successfully changed to 'Saltstack Computer Description' -I, [2020-03-04T15:22:00.033777 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:31.796169 -I, [2020-03-04T15:22:00.034139 #4335] INFO -- py3-windows-server-2019-1809: Duration: 3142.763 ms -I, [2020-03-04T15:22:00.034437 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.034743 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.035062 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.035370 #4335] INFO -- py3-windows-server-2019-1809: Saltstack Computer Description -I, [2020-03-04T15:22:00.035684 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.035989 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.036284 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.state.timezone.system.America/New_York -I, [2020-03-04T15:22:00.036599 #4335] INFO -- py3-windows-server-2019-1809: Function: timezone.system -I, [2020-03-04T15:22:00.036937 #4335] INFO -- py3-windows-server-2019-1809: Name: America/New_York -I, [2020-03-04T15:22:00.037245 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.037547 #4335] INFO -- py3-windows-server-2019-1809: Comment: Set timezone America/New_York -I, [2020-03-04T15:22:00.037865 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:34.954543 -I, [2020-03-04T15:22:00.038163 #4335] INFO -- py3-windows-server-2019-1809: Duration: 47.401 ms -I, [2020-03-04T15:22:00.043215 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.043807 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.044231 #4335] INFO -- py3-windows-server-2019-1809: timezone: -I, [2020-03-04T15:22:00.044577 #4335] INFO -- py3-windows-server-2019-1809: America/New_York -I, [2020-03-04T15:22:00.044900 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.045206 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.module.environ.items -I, [2020-03-04T15:22:00.045486 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.045791 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.046065 #4335] INFO -- py3-windows-server-2019-1809: Comment: environ.items: Success -I, [2020-03-04T15:22:00.046331 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:35.001944 -I, [2020-03-04T15:22:00.046720 #4335] INFO -- py3-windows-server-2019-1809: Duration: 0.0 ms -I, [2020-03-04T15:22:00.046998 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.047314 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.047659 #4335] INFO -- py3-windows-server-2019-1809: environ.items: -I, [2020-03-04T15:22:00.047966 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.048242 #4335] INFO -- py3-windows-server-2019-1809: ALLUSERSPROFILE: -I, [2020-03-04T15:22:00.048580 #4335] INFO -- py3-windows-server-2019-1809: C:\ProgramData -I, [2020-03-04T15:22:00.048901 #4335] INFO -- py3-windows-server-2019-1809: APPDATA: -I, [2020-03-04T15:22:00.049192 #4335] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Roaming -I, [2020-03-04T15:22:00.049480 #4335] INFO -- py3-windows-server-2019-1809: COMMONPROGRAMFILES: -I, [2020-03-04T15:22:00.049780 #4335] INFO -- py3-windows-server-2019-1809: C:\Program Files\Common Files -I, [2020-03-04T15:22:00.050147 #4335] INFO -- py3-windows-server-2019-1809: COMMONPROGRAMFILES(X86): -I, [2020-03-04T15:22:00.050758 #4335] INFO -- py3-windows-server-2019-1809: C:\Program Files (x86)\Common Files -I, [2020-03-04T15:22:00.051041 #4335] INFO -- py3-windows-server-2019-1809: COMMONPROGRAMW6432: -I, [2020-03-04T15:22:00.051343 #4335] INFO -- py3-windows-server-2019-1809: C:\Program Files\Common Files -I, [2020-03-04T15:22:00.051656 #4335] INFO -- py3-windows-server-2019-1809: COMPUTERNAME: -I, [2020-03-04T15:22:00.051952 #4335] INFO -- py3-windows-server-2019-1809: VAGRANT -I, [2020-03-04T15:22:00.052263 #4335] INFO -- py3-windows-server-2019-1809: COMSPEC: -I, [2020-03-04T15:22:00.052613 #4335] INFO -- py3-windows-server-2019-1809: C:\Windows\system32\cmd.exe -I, [2020-03-04T15:22:00.052894 #4335] INFO -- py3-windows-server-2019-1809: DRIVERDATA: -I, [2020-03-04T15:22:00.053171 #4335] INFO -- py3-windows-server-2019-1809: C:\Windows\System32\Drivers\DriverData -I, [2020-03-04T15:22:00.053453 #4335] INFO -- py3-windows-server-2019-1809: HOMEDRIVE: -I, [2020-03-04T15:22:00.053740 #4335] INFO -- py3-windows-server-2019-1809: C: -I, [2020-03-04T15:22:00.054040 #4335] INFO -- py3-windows-server-2019-1809: HOMEPATH: -I, [2020-03-04T15:22:00.054367 #4335] INFO -- py3-windows-server-2019-1809: \Users\vagrant -I, [2020-03-04T15:22:00.054681 #4335] INFO -- py3-windows-server-2019-1809: LOCALAPPDATA: -I, [2020-03-04T15:22:00.054956 #4335] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Local -I, [2020-03-04T15:22:00.055221 #4335] INFO -- py3-windows-server-2019-1809: LOGONSERVER: -I, [2020-03-04T15:22:00.055500 #4335] INFO -- py3-windows-server-2019-1809: \\VAGRANT -I, [2020-03-04T15:22:00.055770 #4335] INFO -- py3-windows-server-2019-1809: NUMBER_OF_PROCESSORS: -I, [2020-03-04T15:22:00.056054 #4335] INFO -- py3-windows-server-2019-1809: 2 -I, [2020-03-04T15:22:00.056340 #4335] INFO -- py3-windows-server-2019-1809: OS: -I, [2020-03-04T15:22:00.056631 #4335] INFO -- py3-windows-server-2019-1809: Windows_NT -I, [2020-03-04T15:22:00.056897 #4335] INFO -- py3-windows-server-2019-1809: PATH: -I, [2020-03-04T15:22:00.057278 #4335] INFO -- py3-windows-server-2019-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 -I, [2020-03-04T15:22:00.057595 #4335] INFO -- py3-windows-server-2019-1809: PATHEXT: -I, [2020-03-04T15:22:00.057892 #4335] INFO -- py3-windows-server-2019-1809: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL -I, [2020-03-04T15:22:00.058187 #4335] INFO -- py3-windows-server-2019-1809: PROCESSOR_ARCHITECTURE: -I, [2020-03-04T15:22:00.058499 #4335] INFO -- py3-windows-server-2019-1809: AMD64 -I, [2020-03-04T15:22:00.058771 #4335] INFO -- py3-windows-server-2019-1809: PROCESSOR_IDENTIFIER: -I, [2020-03-04T15:22:00.059089 #4335] INFO -- py3-windows-server-2019-1809: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel -I, [2020-03-04T15:22:00.059402 #4335] INFO -- py3-windows-server-2019-1809: PROCESSOR_LEVEL: -I, [2020-03-04T15:22:00.059690 #4335] INFO -- py3-windows-server-2019-1809: 6 -I, [2020-03-04T15:22:00.059969 #4335] INFO -- py3-windows-server-2019-1809: PROCESSOR_REVISION: -I, [2020-03-04T15:22:00.060250 #4335] INFO -- py3-windows-server-2019-1809: 8e0c -I, [2020-03-04T15:22:00.060531 #4335] INFO -- py3-windows-server-2019-1809: PROGRAMDATA: -I, [2020-03-04T15:22:00.060792 #4335] INFO -- py3-windows-server-2019-1809: C:\ProgramData -I, [2020-03-04T15:22:00.061051 #4335] INFO -- py3-windows-server-2019-1809: PROGRAMFILES: -I, [2020-03-04T15:22:00.061355 #4335] INFO -- py3-windows-server-2019-1809: C:\Program Files -I, [2020-03-04T15:22:00.061620 #4335] INFO -- py3-windows-server-2019-1809: PROGRAMFILES(X86): -I, [2020-03-04T15:22:00.061906 #4335] INFO -- py3-windows-server-2019-1809: C:\Program Files (x86) -I, [2020-03-04T15:22:00.062242 #4335] INFO -- py3-windows-server-2019-1809: PROGRAMW6432: -I, [2020-03-04T15:22:00.062524 #4335] INFO -- py3-windows-server-2019-1809: C:\Program Files -I, [2020-03-04T15:22:00.062785 #4335] INFO -- py3-windows-server-2019-1809: PROMPT: -I, [2020-03-04T15:22:00.063067 #4335] INFO -- py3-windows-server-2019-1809: $P$G -I, [2020-03-04T15:22:00.063330 #4335] INFO -- py3-windows-server-2019-1809: PSMODULEPATH: -I, [2020-03-04T15:22:00.063657 #4335] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules -I, [2020-03-04T15:22:00.063947 #4335] INFO -- py3-windows-server-2019-1809: PUBLIC: -I, [2020-03-04T15:22:00.064264 #4335] INFO -- py3-windows-server-2019-1809: C:\Users\Public -I, [2020-03-04T15:22:00.064590 #4335] INFO -- py3-windows-server-2019-1809: PYTHON: -I, [2020-03-04T15:22:00.064868 #4335] INFO -- py3-windows-server-2019-1809: C:\salt\bin\python.exe -I, [2020-03-04T15:22:00.065157 #4335] INFO -- py3-windows-server-2019-1809: SALTDIR: -I, [2020-03-04T15:22:00.065466 #4335] INFO -- py3-windows-server-2019-1809: C:\salt -I, [2020-03-04T15:22:00.065734 #4335] INFO -- py3-windows-server-2019-1809: SCRIPT: -I, [2020-03-04T15:22:00.066017 #4335] INFO -- py3-windows-server-2019-1809: C:\salt\bin\Scripts\salt-call -I, [2020-03-04T15:22:00.066310 #4335] INFO -- py3-windows-server-2019-1809: SYSTEMDRIVE: -I, [2020-03-04T15:22:00.066602 #4335] INFO -- py3-windows-server-2019-1809: C: -I, [2020-03-04T15:22:00.066932 #4335] INFO -- py3-windows-server-2019-1809: SYSTEMROOT: -I, [2020-03-04T15:22:00.067234 #4335] INFO -- py3-windows-server-2019-1809: C:\Windows -I, [2020-03-04T15:22:00.067499 #4335] INFO -- py3-windows-server-2019-1809: TEMP: -I, [2020-03-04T15:22:00.067780 #4335] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:22:00.068058 #4335] INFO -- py3-windows-server-2019-1809: TMP: -I, [2020-03-04T15:22:00.068324 #4335] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Local\Temp -I, [2020-03-04T15:22:00.068587 #4335] INFO -- py3-windows-server-2019-1809: USERDOMAIN: -I, [2020-03-04T15:22:00.068887 #4335] INFO -- py3-windows-server-2019-1809: VAGRANT -I, [2020-03-04T15:22:00.069205 #4335] INFO -- py3-windows-server-2019-1809: USERDOMAIN_ROAMINGPROFILE: -I, [2020-03-04T15:22:00.069481 #4335] INFO -- py3-windows-server-2019-1809: VAGRANT -I, [2020-03-04T15:22:00.069799 #4335] INFO -- py3-windows-server-2019-1809: USERNAME: -I, [2020-03-04T15:22:00.070084 #4335] INFO -- py3-windows-server-2019-1809: vagrant -I, [2020-03-04T15:22:00.070355 #4335] INFO -- py3-windows-server-2019-1809: USERPROFILE: -I, [2020-03-04T15:22:00.070622 #4335] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant -I, [2020-03-04T15:22:00.070928 #4335] INFO -- py3-windows-server-2019-1809: WINDIR: -I, [2020-03-04T15:22:00.071237 #4335] INFO -- py3-windows-server-2019-1809: C:\Windows -I, [2020-03-04T15:22:00.071559 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.071863 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.module.user.current -I, [2020-03-04T15:22:00.072155 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.072458 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.075861 #4335] INFO -- py3-windows-server-2019-1809: Comment: user.current: VAGRANT\vagrant -I, [2020-03-04T15:22:00.076321 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:35.027619 -I, [2020-03-04T15:22:00.076621 #4335] INFO -- py3-windows-server-2019-1809: Duration: 5.567 ms -I, [2020-03-04T15:22:00.076905 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.077182 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.077493 #4335] INFO -- py3-windows-server-2019-1809: user.current: -I, [2020-03-04T15:22:00.077877 #4335] INFO -- py3-windows-server-2019-1809: VAGRANT\vagrant -I, [2020-03-04T15:22:00.078213 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.078529 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.module.status.uptime -I, [2020-03-04T15:22:00.078941 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.079371 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.079777 #4335] INFO -- py3-windows-server-2019-1809: Comment: status.uptime: 0:01:55.064059 -I, [2020-03-04T15:22:00.080151 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:35.033186 -I, [2020-03-04T15:22:00.080514 #4335] INFO -- py3-windows-server-2019-1809: Duration: 30.873 ms -I, [2020-03-04T15:22:00.080833 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.081133 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.081449 #4335] INFO -- py3-windows-server-2019-1809: status.uptime: -I, [2020-03-04T15:22:00.081791 #4335] INFO -- py3-windows-server-2019-1809: 0:01:55.064059 -I, [2020-03-04T15:22:00.082083 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.082368 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 -I, [2020-03-04T15:22:00.082691 #4335] INFO -- py3-windows-server-2019-1809: Function: reg.present -I, [2020-03-04T15:22:00.082977 #4335] INFO -- py3-windows-server-2019-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:22:00.083297 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.083608 #4335] INFO -- py3-windows-server-2019-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:22:00.083891 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:35.064059 -I, [2020-03-04T15:22:00.084155 #4335] INFO -- py3-windows-server-2019-1809: Duration: 8362.757 ms -I, [2020-03-04T15:22:00.084442 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.084785 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.085083 #4335] INFO -- py3-windows-server-2019-1809: reg: -I, [2020-03-04T15:22:00.085361 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.085680 #4335] INFO -- py3-windows-server-2019-1809: Added: -I, [2020-03-04T15:22:00.086022 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.086305 #4335] INFO -- py3-windows-server-2019-1809: Entry: -I, [2020-03-04T15:22:00.087036 #4335] INFO -- py3-windows-server-2019-1809: SystemDefaultTlsVersions -I, [2020-03-04T15:22:00.087407 #4335] INFO -- py3-windows-server-2019-1809: Inheritance: -I, [2020-03-04T15:22:00.087742 #4335] INFO -- py3-windows-server-2019-1809: True -I, [2020-03-04T15:22:00.088048 #4335] INFO -- py3-windows-server-2019-1809: Key: -I, [2020-03-04T15:22:00.088334 #4335] INFO -- py3-windows-server-2019-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:22:00.088658 #4335] INFO -- py3-windows-server-2019-1809: Owner: -I, [2020-03-04T15:22:00.088997 #4335] INFO -- py3-windows-server-2019-1809: None -I, [2020-03-04T15:22:00.089358 #4335] INFO -- py3-windows-server-2019-1809: Perms: -I, [2020-03-04T15:22:00.089674 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.089973 #4335] INFO -- py3-windows-server-2019-1809: Deny: -I, [2020-03-04T15:22:00.090304 #4335] INFO -- py3-windows-server-2019-1809: None -I, [2020-03-04T15:22:00.090699 #4335] INFO -- py3-windows-server-2019-1809: Grant: -I, [2020-03-04T15:22:00.091029 #4335] INFO -- py3-windows-server-2019-1809: None -I, [2020-03-04T15:22:00.091334 #4335] INFO -- py3-windows-server-2019-1809: Value: -I, [2020-03-04T15:22:00.091648 #4335] INFO -- py3-windows-server-2019-1809: 1 -I, [2020-03-04T15:22:00.093127 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.094271 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -I, [2020-03-04T15:22:00.095504 #4335] INFO -- py3-windows-server-2019-1809: Function: reg.present -I, [2020-03-04T15:22:00.096776 #4335] INFO -- py3-windows-server-2019-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:22:00.097574 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.098284 #4335] INFO -- py3-windows-server-2019-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:22:00.098944 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:43.426816 -I, [2020-03-04T15:22:00.099664 #4335] INFO -- py3-windows-server-2019-1809: Duration: 281.374 ms -I, [2020-03-04T15:22:00.100313 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.100980 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.101581 #4335] INFO -- py3-windows-server-2019-1809: reg: -I, [2020-03-04T15:22:00.102254 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.103647 #4335] INFO -- py3-windows-server-2019-1809: Added: -I, [2020-03-04T15:22:00.104966 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.106079 #4335] INFO -- py3-windows-server-2019-1809: Entry: -I, [2020-03-04T15:22:00.107356 #4335] INFO -- py3-windows-server-2019-1809: SystemDefaultTlsVersions -I, [2020-03-04T15:22:00.108862 #4335] INFO -- py3-windows-server-2019-1809: Inheritance: -I, [2020-03-04T15:22:00.110399 #4335] INFO -- py3-windows-server-2019-1809: True -I, [2020-03-04T15:22:00.111818 #4335] INFO -- py3-windows-server-2019-1809: Key: -I, [2020-03-04T15:22:00.113116 #4335] INFO -- py3-windows-server-2019-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -I, [2020-03-04T15:22:00.114538 #4335] INFO -- py3-windows-server-2019-1809: Owner: -I, [2020-03-04T15:22:00.115733 #4335] INFO -- py3-windows-server-2019-1809: None -I, [2020-03-04T15:22:00.116957 #4335] INFO -- py3-windows-server-2019-1809: Perms: -I, [2020-03-04T15:22:00.118316 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.119464 #4335] INFO -- py3-windows-server-2019-1809: Deny: -I, [2020-03-04T15:22:00.120184 #4335] INFO -- py3-windows-server-2019-1809: None -I, [2020-03-04T15:22:00.120817 #4335] INFO -- py3-windows-server-2019-1809: Grant: -I, [2020-03-04T15:22:00.122262 #4335] INFO -- py3-windows-server-2019-1809: None -I, [2020-03-04T15:22:00.123498 #4335] INFO -- py3-windows-server-2019-1809: Value: -I, [2020-03-04T15:22:00.124947 #4335] INFO -- py3-windows-server-2019-1809: 1 -I, [2020-03-04T15:22:00.125406 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.126768 #4335] INFO -- py3-windows-server-2019-1809: ID: manually.update_git_repo-ng -I, [2020-03-04T15:22:00.127170 #4335] INFO -- py3-windows-server-2019-1809: Function: archive.extracted -I, [2020-03-04T15:22:00.128720 #4335] INFO -- py3-windows-server-2019-1809: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -I, [2020-03-04T15:22:00.130085 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.131677 #4335] INFO -- py3-windows-server-2019-1809: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs -I, [2020-03-04T15:22:00.133064 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:43.708190 -I, [2020-03-04T15:22:00.134273 #4335] INFO -- py3-windows-server-2019-1809: Duration: 922.257 ms -I, [2020-03-04T15:22:00.135668 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.137168 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.138318 #4335] INFO -- py3-windows-server-2019-1809: directories_created: -I, [2020-03-04T15:22:00.139129 #4335] INFO -- py3-windows-server-2019-1809: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -I, [2020-03-04T15:22:00.139869 #4335] INFO -- py3-windows-server-2019-1809: extracted_files: -I, [2020-03-04T15:22:00.140607 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ -I, [2020-03-04T15:22:00.141395 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.gitignore -I, [2020-03-04T15:22:00.142287 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis.yml -I, [2020-03-04T15:22:00.143140 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/ -I, [2020-03-04T15:22:00.143514 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/requirements.txt -I, [2020-03-04T15:22:00.144264 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/tests.py -I, [2020-03-04T15:22:00.150154 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/7zip.sls -I, [2020-03-04T15:22:00.150814 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/LICENSE -I, [2020-03-04T15:22:00.151251 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/README.md -I, [2020-03-04T15:22:00.151599 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/_config.yml -I, [2020-03-04T15:22:00.151961 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/activeperl_x64.sls -I, [2020-03-04T15:22:00.152369 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/activeperl_x86.sls -I, [2020-03-04T15:22:00.152811 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobeair.sls -I, [2020-03-04T15:22:00.153177 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader-dc-classic.sls -I, [2020-03-04T15:22:00.153518 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader-xi.sls -I, [2020-03-04T15:22:00.153865 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader.sls -I, [2020-03-04T15:22:00.154277 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobeshockwaveplayer.sls -I, [2020-03-04T15:22:00.154651 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adv-ip-scanner.sls -I, [2020-03-04T15:22:00.154984 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adv-port-scanner.sls -I, [2020-03-04T15:22:00.155367 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/advancedlogging.sls -I, [2020-03-04T15:22:00.155726 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/anydesk-msi.sls -I, [2020-03-04T15:22:00.156123 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/anydesk.sls -I, [2020-03-04T15:22:00.156554 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/applicationrequestrouting.sls -I, [2020-03-04T15:22:00.156946 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/aspnet-mvc1.sls -I, [2020-03-04T15:22:00.157256 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/atom.sls -I, [2020-03-04T15:22:00.157566 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/audacity.sls -I, [2020-03-04T15:22:00.157889 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/ -I, [2020-03-04T15:22:00.158356 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/init.sls -I, [2020-03-04T15:22:00.158830 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/install.cmd -I, [2020-03-04T15:22:00.159335 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/install.ps1 -I, [2020-03-04T15:22:00.159810 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/remove.cmd -I, [2020-03-04T15:22:00.160302 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/autohotkey.sls -I, [2020-03-04T15:22:00.160774 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/autoit.sls -I, [2020-03-04T15:22:00.161263 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/autopsy.sls -I, [2020-03-04T15:22:00.161781 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/awscli.sls -I, [2020-03-04T15:22:00.162305 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/azuredatastudio.sls -I, [2020-03-04T15:22:00.162809 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bandizip.sls -I, [2020-03-04T15:22:00.163322 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/belarc-advisor.sls -I, [2020-03-04T15:22:00.163842 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bginfo4x.sls -I, [2020-03-04T15:22:00.164275 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bitnami-nginxstack.sls -I, [2020-03-04T15:22:00.164705 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bitvise.sls -I, [2020-03-04T15:22:00.165025 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/blender.sls -I, [2020-03-04T15:22:00.165359 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bootracer.sls -I, [2020-03-04T15:22:00.165786 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bulk_extractor.sls -I, [2020-03-04T15:22:00.166138 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bulkrenameutility.sls -I, [2020-03-04T15:22:00.166527 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ccleaner-slim.sls -I, [2020-03-04T15:22:00.166887 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ccleaner.sls -I, [2020-03-04T15:22:00.167327 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cdburnerxp.sls -I, [2020-03-04T15:22:00.167851 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cdroller.sls -I, [2020-03-04T15:22:00.168225 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/check-mk-agent-msi.sls -I, [2020-03-04T15:22:00.168642 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/check-mk-agent.sls -I, [2020-03-04T15:22:00.168976 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/ -I, [2020-03-04T15:22:00.169346 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/init.sls -I, [2020-03-04T15:22:00.169766 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/install.cmd -I, [2020-03-04T15:22:00.170142 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/uninstall.cmd -I, [2020-03-04T15:22:00.170477 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 -I, [2020-03-04T15:22:00.170777 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chrome-rdp.sls -I, [2020-03-04T15:22:00.171194 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chrome.sls -I, [2020-03-04T15:22:00.171655 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/clamav.sls -I, [2020-03-04T15:22:00.172046 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/clamwin.sls -I, [2020-03-04T15:22:00.172390 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/classicshell.sls -I, [2020-03-04T15:22:00.172717 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/clink.sls -I, [2020-03-04T15:22:00.173018 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/conemu.sls -I, [2020-03-04T15:22:00.173362 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cpu-z.sls -I, [2020-03-04T15:22:00.173708 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/curl.sls -I, [2020-03-04T15:22:00.174085 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck-cli.sls -I, [2020-03-04T15:22:00.174499 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck-msi.sls -I, [2020-03-04T15:22:00.174814 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck.sls -I, [2020-03-04T15:22:00.175120 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/defraggler.sls -I, [2020-03-04T15:22:00.175554 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/docs/ -I, [2020-03-04T15:22:00.176086 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/docs/ReadMe.md -I, [2020-03-04T15:22:00.176675 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/dotnet.sls -I, [2020-03-04T15:22:00.177213 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/dropbox.sls -I, [2020-03-04T15:22:00.177781 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/duplicati.sls -I, [2020-03-04T15:22:00.178260 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/dvdstyler.sls -I, [2020-03-04T15:22:00.178622 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/echo-desktop.sls -I, [2020-03-04T15:22:00.179027 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/eea.sls -I, [2020-03-04T15:22:00.179534 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/emet.sls -I, [2020-03-04T15:22:00.179914 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/emsisoft-anti-malware.sls -I, [2020-03-04T15:22:00.180287 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/eraser.sls -I, [2020-03-04T15:22:00.180598 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/ -I, [2020-03-04T15:22:00.181035 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/init.sls -I, [2020-03-04T15:22:00.181551 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/install.cmd -I, [2020-03-04T15:22:00.182086 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/evernote.sls -I, [2020-03-04T15:22:00.182653 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/fiddler.sls -I, [2020-03-04T15:22:00.183164 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/ -I, [2020-03-04T15:22:00.183728 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/init.sls -I, [2020-03-04T15:22:00.184243 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/install.cmd -I, [2020-03-04T15:22:00.184809 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/install.ps1 -I, [2020-03-04T15:22:00.185397 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/remove.cmd -I, [2020-03-04T15:22:00.185930 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filehippo-app-manager.sls -I, [2020-03-04T15:22:00.186516 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filezilla.sls -I, [2020-03-04T15:22:00.187101 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox-esr_x64.sls -I, [2020-03-04T15:22:00.187593 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox-esr_x86.sls -I, [2020-03-04T15:22:00.187969 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox_x64.sls -I, [2020-03-04T15:22:00.188316 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox_x86.sls -I, [2020-03-04T15:22:00.188702 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/ -I, [2020-03-04T15:22:00.189125 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/init.sls -I, [2020-03-04T15:22:00.189576 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/install.cmd -I, [2020-03-04T15:22:00.189925 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/install.ps1 -I, [2020-03-04T15:22:00.190275 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/remove.cmd -I, [2020-03-04T15:22:00.190614 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gedit.sls -I, [2020-03-04T15:22:00.190974 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gimp.sls -I, [2020-03-04T15:22:00.191365 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/git-extensions.sls -I, [2020-03-04T15:22:00.191796 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/git.sls -I, [2020-03-04T15:22:00.192216 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls -I, [2020-03-04T15:22:00.192648 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gnucash.sls -I, [2020-03-04T15:22:00.193068 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/golang.sls -I, [2020-03-04T15:22:00.193411 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/goodsync.sls -I, [2020-03-04T15:22:00.193808 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gow.sls -I, [2020-03-04T15:22:00.194163 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win-light.sls -I, [2020-03-04T15:22:00.194463 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win-vanilla.sls -I, [2020-03-04T15:22:00.194806 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/ -I, [2020-03-04T15:22:00.195153 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/init.sls -I, [2020-03-04T15:22:00.195498 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/silent.ini -I, [2020-03-04T15:22:00.195896 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/graylog-collector-sidecar.sls -I, [2020-03-04T15:22:00.196269 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/grepwin.sls -I, [2020-03-04T15:22:00.196597 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gvim.sls -I, [2020-03-04T15:22:00.196938 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/handbrake.sls -I, [2020-03-04T15:22:00.197286 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/ -I, [2020-03-04T15:22:00.197622 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp -I, [2020-03-04T15:22:00.198102 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/init.sls -I, [2020-03-04T15:22:00.198596 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/install.cmd -I, [2020-03-04T15:22:00.199089 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/install.ps1 -I, [2020-03-04T15:22:00.199486 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/remove.cmd -I, [2020-03-04T15:22:00.199952 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/hipchat.sls -I, [2020-03-04T15:22:00.200484 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/hostsfileeditor.sls -I, [2020-03-04T15:22:00.201007 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/hwinfo.sls -I, [2020-03-04T15:22:00.201510 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ice.sls -I, [2020-03-04T15:22:00.202054 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/icecast.sls -I, [2020-03-04T15:22:00.202526 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/icloud.sls -I, [2020-03-04T15:22:00.202917 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/iismediaservices.sls -I, [2020-03-04T15:22:00.203321 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/influx-capacitor.sls -I, [2020-03-04T15:22:00.203736 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/inkscape.sls -I, [2020-03-04T15:22:00.204200 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/intellij-community.sls -I, [2020-03-04T15:22:00.204678 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/intellij-ultimate.sls -I, [2020-03-04T15:22:00.209807 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/internet-evidence-finder.sls -I, [2020-03-04T15:22:00.210573 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/irfanview-plugins.sls -I, [2020-03-04T15:22:00.211097 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/irfanview.sls -I, [2020-03-04T15:22:00.211486 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/isapirewrite-lite.sls -I, [2020-03-04T15:22:00.211876 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/itunes.sls -I, [2020-03-04T15:22:00.212294 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jdk8.sls -I, [2020-03-04T15:22:00.212906 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jre.sls -I, [2020-03-04T15:22:00.213411 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jre8.sls -I, [2020-03-04T15:22:00.213886 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-server-management.sls -I, [2020-03-04T15:22:00.214372 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-server.sls -I, [2020-03-04T15:22:00.214927 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-workgroup.sls -I, [2020-03-04T15:22:00.215407 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/kdiff3.sls -I, [2020-03-04T15:22:00.215942 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/keepass-2x.sls -I, [2020-03-04T15:22:00.216464 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/keepass.sls -I, [2020-03-04T15:22:00.217003 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/lastpass.sls -I, [2020-03-04T15:22:00.217533 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/lazarus.sls -I, [2020-03-04T15:22:00.217969 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/libreoffice.sls -I, [2020-03-04T15:22:00.218380 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/logparser.sls -I, [2020-03-04T15:22:00.218758 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/maas360bootanalyzer.sls -I, [2020-03-04T15:22:00.219186 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/malwarebytes.sls -I, [2020-03-04T15:22:00.219666 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mariadb.sls -I, [2020-03-04T15:22:00.220110 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mercurial.sls -I, [2020-03-04T15:22:00.220481 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/messageanalyzer.sls -I, [2020-03-04T15:22:00.221039 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/ -I, [2020-03-04T15:22:00.221545 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp -I, [2020-03-04T15:22:00.222032 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/init.sls -I, [2020-03-04T15:22:00.222480 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/install.cmd -I, [2020-03-04T15:22:00.222950 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/install.ps1 -I, [2020-03-04T15:22:00.223402 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/remove.cmd -I, [2020-03-04T15:22:00.223876 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/microsoft-build-tools.sls -I, [2020-03-04T15:22:00.224320 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mikogo.sls -I, [2020-03-04T15:22:00.224767 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/miktex-basic.sls -I, [2020-03-04T15:22:00.225230 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mongodb.sls -I, [2020-03-04T15:22:00.225671 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-mbsa.sls -I, [2020-03-04T15:22:00.226992 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls -I, [2020-03-04T15:22:00.227557 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls -I, [2020-03-04T15:22:00.228068 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls -I, [2020-03-04T15:22:00.228557 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls -I, [2020-03-04T15:22:00.229055 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:22:00.229557 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:22:00.230075 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls -I, [2020-03-04T15:22:00.230562 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls -I, [2020-03-04T15:22:00.231063 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls -I, [2020-03-04T15:22:00.231551 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls -I, [2020-03-04T15:22:00.232029 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls -I, [2020-03-04T15:22:00.232394 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls -I, [2020-03-04T15:22:00.232837 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls -I, [2020-03-04T15:22:00.233193 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:22:00.233669 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls -I, [2020-03-04T15:22:00.234184 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls -I, [2020-03-04T15:22:00.234707 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls -I, [2020-03-04T15:22:00.235219 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls -I, [2020-03-04T15:22:00.235766 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls -I, [2020-03-04T15:22:00.236282 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls -I, [2020-03-04T15:22:00.236790 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls -I, [2020-03-04T15:22:00.237306 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls -I, [2020-03-04T15:22:00.237873 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls -I, [2020-03-04T15:22:00.238407 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls -I, [2020-03-04T15:22:00.239025 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls -I, [2020-03-04T15:22:00.239598 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mucommander.sls -I, [2020-03-04T15:22:00.240137 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-essential.sls -I, [2020-03-04T15:22:00.240646 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-installer-community.sls -I, [2020-03-04T15:22:00.241155 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-workbench.sls -I, [2020-03-04T15:22:00.241675 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/never10.sls -I, [2020-03-04T15:22:00.242182 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/newrelic-infra.sls -I, [2020-03-04T15:22:00.242588 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nextcloud-client.sls -I, [2020-03-04T15:22:00.243011 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nmap.sls -I, [2020-03-04T15:22:00.243418 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/node.js-lts.sls -I, [2020-03-04T15:22:00.243884 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/node.js.sls -I, [2020-03-04T15:22:00.244362 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nomacs.sls -I, [2020-03-04T15:22:00.244868 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/npp.sls -I, [2020-03-04T15:22:00.245356 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nsclient.sls -I, [2020-03-04T15:22:00.245736 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nsis.sls -I, [2020-03-04T15:22:00.246052 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ntp.sls -I, [2020-03-04T15:22:00.246406 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nunit-console.sls -I, [2020-03-04T15:22:00.246722 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nxlog.sls -I, [2020-03-04T15:22:00.247137 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/octopus-tentacle.sls -I, [2020-03-04T15:22:00.247467 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/openlp.sls -I, [2020-03-04T15:22:00.247797 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/openoffice.sls -I, [2020-03-04T15:22:00.248152 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/openvpn.sls -I, [2020-03-04T15:22:00.248480 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/osquery.sls -I, [2020-03-04T15:22:00.248782 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ossec-agent.sls -I, [2020-03-04T15:22:00.249147 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/owncloud.sls -I, [2020-03-04T15:22:00.249516 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/ -I, [2020-03-04T15:22:00.249836 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/init.sls -I, [2020-03-04T15:22:00.250162 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/install.cmd -I, [2020-03-04T15:22:00.250464 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/install.ps1 -I, [2020-03-04T15:22:00.250793 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/remove.cmd -I, [2020-03-04T15:22:00.251199 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pandoc.sls -I, [2020-03-04T15:22:00.251516 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/parallels-client-15.sls -I, [2020-03-04T15:22:00.251835 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pass4win.sls -I, [2020-03-04T15:22:00.252156 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/passware-kit-agent.sls -I, [2020-03-04T15:22:00.252488 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/passware-kit-forensic.sls -I, [2020-03-04T15:22:00.252829 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/patchmypc-free.sls -I, [2020-03-04T15:22:00.253175 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pdf24creator.sls -I, [2020-03-04T15:22:00.253478 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pdfcreator.sls -I, [2020-03-04T15:22:00.253811 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/peazip.sls -I, [2020-03-04T15:22:00.254158 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pgadmin4.sls -I, [2020-03-04T15:22:00.254458 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pgina.sls -I, [2020-03-04T15:22:00.254768 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pidgin.sls -I, [2020-03-04T15:22:00.255086 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/postgresql.sls -I, [2020-03-04T15:22:00.255407 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/powerbi-desktop.sls -I, [2020-03-04T15:22:00.255748 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/powershell-core.sls -I, [2020-03-04T15:22:00.256067 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls -I, [2020-03-04T15:22:00.256362 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/putty.sls -I, [2020-03-04T15:22:00.256682 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/ -I, [2020-03-04T15:22:00.257032 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/init.sls -I, [2020-03-04T15:22:00.257339 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/silent.config -I, [2020-03-04T15:22:00.257661 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python2_x64.sls -I, [2020-03-04T15:22:00.257994 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python2_x86.sls -I, [2020-03-04T15:22:00.258322 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python3_x64.sls -I, [2020-03-04T15:22:00.258695 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python3_x86.sls -I, [2020-03-04T15:22:00.259024 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/qemu.sls -I, [2020-03-04T15:22:00.259323 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/queueexplorerpro.sls -I, [2020-03-04T15:22:00.259666 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/quicktime.sls -I, [2020-03-04T15:22:00.260017 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rabbitmq.sls -I, [2020-03-04T15:22:00.260342 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls -I, [2020-03-04T15:22:00.260726 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rakudo-star_x64.sls -I, [2020-03-04T15:22:00.261101 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rasclient.sls -I, [2020-03-04T15:22:00.261422 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rdcman.sls -I, [2020-03-04T15:22:00.261736 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rocketchat.sls -I, [2020-03-04T15:22:00.262070 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rubyinstaller_x64.sls -I, [2020-03-04T15:22:00.262458 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rubyinstaller_x86.sls -I, [2020-03-04T15:22:00.262787 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/salt-minion-py2.sls -I, [2020-03-04T15:22:00.263087 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/salt-minion-py3.sls -I, [2020-03-04T15:22:00.263387 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sandboxie.sls -I, [2020-03-04T15:22:00.263701 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/scaleout.sls -I, [2020-03-04T15:22:00.264075 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/secunia.psi.sls -I, [2020-03-04T15:22:00.268651 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sensu.sls -I, [2020-03-04T15:22:00.269168 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sharpdevelop.sls -I, [2020-03-04T15:22:00.269592 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/skitch.sls -I, [2020-03-04T15:22:00.269945 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/skype-msi.sls -I, [2020-03-04T15:22:00.270268 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/skype.sls -I, [2020-03-04T15:22:00.270671 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/slack-machine-msi.sls -I, [2020-03-04T15:22:00.271016 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/slack-user-msi.sls -I, [2020-03-04T15:22:00.271411 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/slack.sls -I, [2020-03-04T15:22:00.271755 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/smartmontools.sls -I, [2020-03-04T15:22:00.272074 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/snmptools.sls -I, [2020-03-04T15:22:00.272466 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/soapui.sls -I, [2020-03-04T15:22:00.272848 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/software-informer.sls -I, [2020-03-04T15:22:00.273171 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sourcetree.sls -I, [2020-03-04T15:22:00.273500 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/spybot-anti-beacon.sls -I, [2020-03-04T15:22:00.273889 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/spybot.sls -I, [2020-03-04T15:22:00.274224 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sscserv-free.sls -I, [2020-03-04T15:22:00.274560 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/ -I, [2020-03-04T15:22:00.274873 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/init.sls -I, [2020-03-04T15:22:00.275189 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/install.cmd -I, [2020-03-04T15:22:00.275567 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/steam.sls -I, [2020-03-04T15:22:00.275890 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stellarium.sls -I, [2020-03-04T15:22:00.276357 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/strawberryperl_x64.sls -I, [2020-03-04T15:22:00.276846 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/strawberryperl_x86.sls -I, [2020-03-04T15:22:00.277299 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stunnel.sls -I, [2020-03-04T15:22:00.277648 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/subinacl.sls -I, [2020-03-04T15:22:00.277968 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sumatrapdf.sls -I, [2020-03-04T15:22:00.278348 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/svn.sls -I, [2020-03-04T15:22:00.278716 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/teamviewer.sls -I, [2020-03-04T15:22:00.279032 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/teamviewer_host.sls -I, [2020-03-04T15:22:00.279378 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/teracopy.sls -I, [2020-03-04T15:22:00.279748 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texmaker.sls -I, [2020-03-04T15:22:00.280085 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texniccenter.sls -I, [2020-03-04T15:22:00.280471 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texstudio.sls -I, [2020-03-04T15:22:00.280799 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texworks.sls -I, [2020-03-04T15:22:00.281112 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/thunderbird.sls -I, [2020-03-04T15:22:00.281437 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tightvnc.sls -I, [2020-03-04T15:22:00.281789 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/todotxt.net.sls -I, [2020-03-04T15:22:00.282130 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/todour.sls -I, [2020-03-04T15:22:00.282454 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-bzr.sls -I, [2020-03-04T15:22:00.282756 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-git.sls -I, [2020-03-04T15:22:00.283122 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-hg.sls -I, [2020-03-04T15:22:00.283472 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-svn.sls -I, [2020-03-04T15:22:00.283775 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/truecrypt.sls -I, [2020-03-04T15:22:00.284144 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ultradefrag.sls -I, [2020-03-04T15:22:00.284537 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/urlrewrite.sls -I, [2020-03-04T15:22:00.284855 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/usbdlm.sls -I, [2020-03-04T15:22:00.285180 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vagrant.sls -I, [2020-03-04T15:22:00.285504 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vcforpython27.sls -I, [2020-03-04T15:22:00.285810 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vcxsrv.sls -I, [2020-03-04T15:22:00.286188 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/verysleepy.sls -I, [2020-03-04T15:22:00.286522 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/veyon.sls -I, [2020-03-04T15:22:00.286825 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/virtualbox.sls -I, [2020-03-04T15:22:00.287163 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/viscosity.sls -I, [2020-03-04T15:22:00.287509 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vivaldi.sls -I, [2020-03-04T15:22:00.287810 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vlc.sls -I, [2020-03-04T15:22:00.288187 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vs-community.sls -I, [2020-03-04T15:22:00.288579 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vs_remotetools_2017.sls -I, [2020-03-04T15:22:00.288916 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vscode.sls -I, [2020-03-04T15:22:00.289240 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vsee.sls -I, [2020-03-04T15:22:00.289612 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wamp-server-3.sls -I, [2020-03-04T15:22:00.290030 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wamp-stack.sls -I, [2020-03-04T15:22:00.290372 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/webdeploy.sls -I, [2020-03-04T15:22:00.290814 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/webplatforminstaller.sls -I, [2020-03-04T15:22:00.291190 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/win-app-manager.sls -I, [2020-03-04T15:22:00.291536 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/windirstat.sls -I, [2020-03-04T15:22:00.291894 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winhttpcertcfg.sls -I, [2020-03-04T15:22:00.292347 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/ -I, [2020-03-04T15:22:00.292703 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/init.sls -I, [2020-03-04T15:22:00.293030 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/install.cmd -I, [2020-03-04T15:22:00.293391 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/install.ps1 -I, [2020-03-04T15:22:00.293720 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/remove.cmd -I, [2020-03-04T15:22:00.294041 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winmerge.sls -I, [2020-03-04T15:22:00.294342 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winmtr.sls -I, [2020-03-04T15:22:00.294646 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winpcap.sls -I, [2020-03-04T15:22:00.294976 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winrar.sls -I, [2020-03-04T15:22:00.295297 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winscp.sls -I, [2020-03-04T15:22:00.295595 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wireshark.sls -I, [2020-03-04T15:22:00.296007 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/ -I, [2020-03-04T15:22:00.296407 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/README.md -I, [2020-03-04T15:22:00.296734 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/answer.txt -I, [2020-03-04T15:22:00.297063 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/init.sls -I, [2020-03-04T15:22:00.297364 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/majsetup.reg -I, [2020-03-04T15:22:00.297696 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wscc.sls -I, [2020-03-04T15:22:00.298071 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wufuc.sls -I, [2020-03-04T15:22:00.298377 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/xampp.sls -I, [2020-03-04T15:22:00.298722 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/xming.sls -I, [2020-03-04T15:22:00.299137 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/yubikey-manager.sls -I, [2020-03-04T15:22:00.299467 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/yubikey-personalization-tool.sls -I, [2020-03-04T15:22:00.299775 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zabbix-agent.sls -I, [2020-03-04T15:22:00.300093 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/ -I, [2020-03-04T15:22:00.300407 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/init.sls -I, [2020-03-04T15:22:00.300800 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic -I, [2020-03-04T15:22:00.301172 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic -I, [2020-03-04T15:22:00.301478 #4335] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zoom.sls -I, [2020-03-04T15:22:00.301795 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.302107 #4335] INFO -- py3-windows-server-2019-1809: ID: rename-extract -I, [2020-03-04T15:22:00.302420 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.302715 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.303017 #4335] INFO -- py3-windows-server-2019-1809: Comment: file.rename: True -I, [2020-03-04T15:22:00.303303 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:44.630447 -I, [2020-03-04T15:22:00.303650 #4335] INFO -- py3-windows-server-2019-1809: Duration: 0.0 ms -I, [2020-03-04T15:22:00.303952 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.304244 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.304613 #4335] INFO -- py3-windows-server-2019-1809: file.rename: -I, [2020-03-04T15:22:00.304981 #4335] INFO -- py3-windows-server-2019-1809: True -I, [2020-03-04T15:22:00.305273 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.305580 #4335] INFO -- py3-windows-server-2019-1809: ID: pkg.refresh_db -I, [2020-03-04T15:22:00.305887 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.306166 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.306471 #4335] INFO -- py3-windows-server-2019-1809: Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" -I, [2020-03-04T15:22:00.306883 #4335] INFO -- py3-windows-server-2019-1809: check_cmd determined the state succeeded -I, [2020-03-04T15:22:00.307208 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:19:44.646596 -I, [2020-03-04T15:22:00.307499 #4335] INFO -- py3-windows-server-2019-1809: Duration: 17504.513 ms -I, [2020-03-04T15:22:00.307807 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.308098 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.308404 #4335] INFO -- py3-windows-server-2019-1809: pkg.refresh_db: -I, [2020-03-04T15:22:00.308716 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.309044 #4335] INFO -- py3-windows-server-2019-1809: failed: -I, [2020-03-04T15:22:00.309386 #4335] INFO -- py3-windows-server-2019-1809: 0 -I, [2020-03-04T15:22:00.309714 #4335] INFO -- py3-windows-server-2019-1809: success: -I, [2020-03-04T15:22:00.310008 #4335] INFO -- py3-windows-server-2019-1809: 298 -I, [2020-03-04T15:22:00.310300 #4335] INFO -- py3-windows-server-2019-1809: total: -I, [2020-03-04T15:22:00.310665 #4335] INFO -- py3-windows-server-2019-1809: 298 -I, [2020-03-04T15:22:00.311063 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.311540 #4335] INFO -- py3-windows-server-2019-1809: ID: 7zip -I, [2020-03-04T15:22:00.380556 #4335] INFO -- py3-windows-server-2019-1809: Function: pkg.installed -I, [2020-03-04T15:22:00.380985 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.381392 #4335] INFO -- py3-windows-server-2019-1809: Comment: The following packages were installed/updated: 7zip=18.06.00.0 -I, [2020-03-04T15:22:00.381773 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:20:02.132861 -I, [2020-03-04T15:22:00.382094 #4335] INFO -- py3-windows-server-2019-1809: Duration: 3733.203 ms -I, [2020-03-04T15:22:00.382390 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.382718 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.383059 #4335] INFO -- py3-windows-server-2019-1809: 7zip: -I, [2020-03-04T15:22:00.383417 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.383752 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.384092 #4335] INFO -- py3-windows-server-2019-1809: 18.06.00.0 -I, [2020-03-04T15:22:00.384397 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.384736 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.385077 #4335] INFO -- py3-windows-server-2019-1809: ID: git -I, [2020-03-04T15:22:00.385379 #4335] INFO -- py3-windows-server-2019-1809: Function: pkg.installed -I, [2020-03-04T15:22:00.385715 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.386035 #4335] INFO -- py3-windows-server-2019-1809: Comment: The following packages were installed/updated: git -I, [2020-03-04T15:22:00.386332 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:20:05.882622 -I, [2020-03-04T15:22:00.386626 #4335] INFO -- py3-windows-server-2019-1809: Duration: 30459.783 ms -I, [2020-03-04T15:22:00.386937 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.387238 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.387562 #4335] INFO -- py3-windows-server-2019-1809: git: -I, [2020-03-04T15:22:00.387880 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.388181 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.388485 #4335] INFO -- py3-windows-server-2019-1809: 2.23.0.windows.1 -I, [2020-03-04T15:22:00.388802 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.389094 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.389396 #4335] INFO -- py3-windows-server-2019-1809: ID: kdiff3 -I, [2020-03-04T15:22:00.389711 #4335] INFO -- py3-windows-server-2019-1809: Function: pkg.installed -I, [2020-03-04T15:22:00.389994 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.390289 #4335] INFO -- py3-windows-server-2019-1809: Comment: The following packages were installed/updated: kdiff3 -I, [2020-03-04T15:22:00.390576 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:20:36.359520 -I, [2020-03-04T15:22:00.390878 #4335] INFO -- py3-windows-server-2019-1809: Duration: 11249.646 ms -I, [2020-03-04T15:22:00.391158 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.391460 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.391805 #4335] INFO -- py3-windows-server-2019-1809: kdiff3: -I, [2020-03-04T15:22:00.392101 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.392394 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.392702 #4335] INFO -- py3-windows-server-2019-1809: Not Found -I, [2020-03-04T15:22:00.393010 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.393400 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.393755 #4335] INFO -- py3-windows-server-2019-1809: ID: windows_environment.refresh.path -I, [2020-03-04T15:22:00.394067 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.394382 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.394759 #4335] INFO -- py3-windows-server-2019-1809: Comment: windows_environment.refresh: Success -I, [2020-03-04T15:22:00.395076 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:20:47.625101 -I, [2020-03-04T15:22:00.395413 #4335] INFO -- py3-windows-server-2019-1809: Duration: 47.579 ms -I, [2020-03-04T15:22:00.395719 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.396091 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.396537 #4335] INFO -- py3-windows-server-2019-1809: windows_environment.refresh: -I, [2020-03-04T15:22:00.397024 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.397500 #4335] INFO -- py3-windows-server-2019-1809: PATH: -I, [2020-03-04T15:22:00.398035 #4335] INFO -- py3-windows-server-2019-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd -I, [2020-03-04T15:22:00.398417 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.398746 #4335] INFO -- py3-windows-server-2019-1809: ID: chocolatey.bootstrap -I, [2020-03-04T15:22:00.399045 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.399381 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.399705 #4335] INFO -- py3-windows-server-2019-1809: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:22:00.399970 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.400368 #4335] INFO -- py3-windows-server-2019-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:22:00.400715 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.401035 #4335] INFO -- py3-windows-server-2019-1809: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:22:00.401338 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.401679 #4335] INFO -- py3-windows-server-2019-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:22:00.401960 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.402331 #4335] INFO -- py3-windows-server-2019-1809: Installing chocolatey on this machine -I, [2020-03-04T15:22:00.402642 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.402951 #4335] INFO -- py3-windows-server-2019-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:22:00.403306 #4335] INFO -- py3-windows-server-2019-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:22:00.403594 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.403914 #4335] INFO -- py3-windows-server-2019-1809: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:22:00.404298 #4335] INFO -- py3-windows-server-2019-1809: before you can use choco. -I, [2020-03-04T15:22:00.404625 #4335] INFO -- py3-windows-server-2019-1809: Restricting write permissions to Administrators -I, [2020-03-04T15:22:00.404891 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.405230 #4335] INFO -- py3-windows-server-2019-1809: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:22:00.405584 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.405907 #4335] INFO -- py3-windows-server-2019-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:22:00.406218 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.406538 #4335] INFO -- py3-windows-server-2019-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:22:00.406810 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.407151 #4335] INFO -- py3-windows-server-2019-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:22:00.407455 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.407758 #4335] INFO -- py3-windows-server-2019-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:22:00.408030 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.408353 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.408669 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.409016 #4335] INFO -- py3-windows-server-2019-1809: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:22:00.409307 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.409592 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.409898 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.410232 #4335] INFO -- py3-windows-server-2019-1809: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:22:00.410539 #4335] INFO -- py3-windows-server-2019-1809: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:22:00.410848 #4335] INFO -- py3-windows-server-2019-1809: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:22:00.411231 #4335] INFO -- py3-windows-server-2019-1809: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:22:00.411562 #4335] INFO -- py3-windows-server-2019-1809: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:22:00.411898 #4335] INFO -- py3-windows-server-2019-1809: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:22:00.412193 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.412500 #4335] INFO -- py3-windows-server-2019-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:22:00.412818 #4335] INFO -- py3-windows-server-2019-1809: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:22:00.413101 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.413404 #4335] INFO -- py3-windows-server-2019-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:22:00.413727 #4335] INFO -- py3-windows-server-2019-1809: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:22:00.414068 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.414373 #4335] INFO -- py3-windows-server-2019-1809: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:22:00.414637 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.414975 #4335] INFO -- py3-windows-server-2019-1809: Run choco /? for a list of functions. -I, [2020-03-04T15:22:00.415278 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.419968 #4335] INFO -- py3-windows-server-2019-1809: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:22:00.420432 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.420845 #4335] INFO -- py3-windows-server-2019-1809: first prior to using choco. -I, [2020-03-04T15:22:00.421219 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.421544 #4335] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:22:00.421845 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.422164 #4335] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:22:00.422495 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:20:47.672680 -I, [2020-03-04T15:22:00.422857 #4335] INFO -- py3-windows-server-2019-1809: Duration: 25243.234 ms -I, [2020-03-04T15:22:00.423174 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.423479 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.423920 #4335] INFO -- py3-windows-server-2019-1809: chocolatey.bootstrap: -I, [2020-03-04T15:22:00.424310 #4335] INFO -- py3-windows-server-2019-1809: Getting latest version of the Chocolatey package for download. -I, [2020-03-04T15:22:00.424693 #4335] INFO -- py3-windows-server-2019-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. -I, [2020-03-04T15:22:00.425041 #4335] INFO -- py3-windows-server-2019-1809: Downloading 7-Zip commandline tool prior to extraction. -I, [2020-03-04T15:22:00.425398 #4335] INFO -- py3-windows-server-2019-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... -I, [2020-03-04T15:22:00.425766 #4335] INFO -- py3-windows-server-2019-1809: Installing chocolatey on this machine -I, [2020-03-04T15:22:00.426112 #4335] INFO -- py3-windows-server-2019-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') -I, [2020-03-04T15:22:00.426433 #4335] INFO -- py3-windows-server-2019-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' -I, [2020-03-04T15:22:00.426825 #4335] INFO -- py3-windows-server-2019-1809: WARNING: It's very likely you will need to close and reopen your shell -I, [2020-03-04T15:22:00.427142 #4335] INFO -- py3-windows-server-2019-1809: before you can use choco. -I, [2020-03-04T15:22:00.427473 #4335] INFO -- py3-windows-server-2019-1809: Restricting write permissions to Administrators -I, [2020-03-04T15:22:00.427883 #4335] INFO -- py3-windows-server-2019-1809: We are setting up the Chocolatey package repository. -I, [2020-03-04T15:22:00.428209 #4335] INFO -- py3-windows-server-2019-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' -I, [2020-03-04T15:22:00.428569 #4335] INFO -- py3-windows-server-2019-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). -I, [2020-03-04T15:22:00.428910 #4335] INFO -- py3-windows-server-2019-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' -I, [2020-03-04T15:22:00.429287 #4335] INFO -- py3-windows-server-2019-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. -I, [2020-03-04T15:22:00.429619 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.429958 #4335] INFO -- py3-windows-server-2019-1809: Creating Chocolatey folders if they do not already exist. -I, [2020-03-04T15:22:00.430262 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.430644 #4335] INFO -- py3-windows-server-2019-1809: WARNING: You can safely ignore errors related to missing log files when -I, [2020-03-04T15:22:00.430981 #4335] INFO -- py3-windows-server-2019-1809: upgrading from a version of Chocolatey less than 0.9.9. -I, [2020-03-04T15:22:00.431295 #4335] INFO -- py3-windows-server-2019-1809: 'Batch file could not be found' is also safe to ignore. -I, [2020-03-04T15:22:00.431782 #4335] INFO -- py3-windows-server-2019-1809: 'The system cannot find the file specified' - also safe. -I, [2020-03-04T15:22:00.432171 #4335] INFO -- py3-windows-server-2019-1809: chocolatey.nupkg file not installed in lib. -I, [2020-03-04T15:22:00.432566 #4335] INFO -- py3-windows-server-2019-1809: Attempting to locate it from bootstrapper. -I, [2020-03-04T15:22:00.432947 #4335] INFO -- py3-windows-server-2019-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... -I, [2020-03-04T15:22:00.433277 #4335] INFO -- py3-windows-server-2019-1809: WARNING: Not setting tab completion: Profile file does not exist at -I, [2020-03-04T15:22:00.433734 #4335] INFO -- py3-windows-server-2019-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. -I, [2020-03-04T15:22:00.434112 #4335] INFO -- py3-windows-server-2019-1809: Chocolatey (choco.exe) is now ready. -I, [2020-03-04T15:22:00.434446 #4335] INFO -- py3-windows-server-2019-1809: You can call choco from anywhere, command line or powershell by typing choco. -I, [2020-03-04T15:22:00.434775 #4335] INFO -- py3-windows-server-2019-1809: Run choco /? for a list of functions. -I, [2020-03-04T15:22:00.435087 #4335] INFO -- py3-windows-server-2019-1809: You may need to shut down and restart powershell and/or consoles -I, [2020-03-04T15:22:00.435455 #4335] INFO -- py3-windows-server-2019-1809: first prior to using choco. -I, [2020-03-04T15:22:00.435784 #4335] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey commands are on the path -I, [2020-03-04T15:22:00.436109 #4335] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey.nupkg is in the lib folder -I, [2020-03-04T15:22:00.436520 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.436866 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.chocolatey.notepadplusplus -I, [2020-03-04T15:22:00.437177 #4335] INFO -- py3-windows-server-2019-1809: Function: chocolatey.installed -I, [2020-03-04T15:22:00.437519 #4335] INFO -- py3-windows-server-2019-1809: Name: notepadplusplus -I, [2020-03-04T15:22:00.437810 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.438094 #4335] INFO -- py3-windows-server-2019-1809: Comment: -I, [2020-03-04T15:22:00.438443 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:21:12.915914 -I, [2020-03-04T15:22:00.438750 #4335] INFO -- py3-windows-server-2019-1809: Duration: 12441.368 ms -I, [2020-03-04T15:22:00.439032 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.439355 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.439729 #4335] INFO -- py3-windows-server-2019-1809: notepadplusplus: -I, [2020-03-04T15:22:00.440027 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.440366 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.440690 #4335] INFO -- py3-windows-server-2019-1809: - 7.8.4 -I, [2020-03-04T15:22:00.441044 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.441349 #4335] INFO -- py3-windows-server-2019-1809: notepadplusplus.install: -I, [2020-03-04T15:22:00.441661 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.441968 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.442312 #4335] INFO -- py3-windows-server-2019-1809: - 7.8.4 -I, [2020-03-04T15:22:00.442635 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.442922 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.443232 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.chocolatey.windirstat -I, [2020-03-04T15:22:00.443560 #4335] INFO -- py3-windows-server-2019-1809: Function: chocolatey.installed -I, [2020-03-04T15:22:00.443855 #4335] INFO -- py3-windows-server-2019-1809: Name: windirstat -I, [2020-03-04T15:22:00.444162 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.444463 #4335] INFO -- py3-windows-server-2019-1809: Comment: -I, [2020-03-04T15:22:00.444748 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:21:25.372429 -I, [2020-03-04T15:22:00.445069 #4335] INFO -- py3-windows-server-2019-1809: Duration: 8432.072 ms -I, [2020-03-04T15:22:00.445376 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.445666 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.445961 #4335] INFO -- py3-windows-server-2019-1809: windirstat: -I, [2020-03-04T15:22:00.446314 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.446619 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.446912 #4335] INFO -- py3-windows-server-2019-1809: - 1.1.2.20161210 -I, [2020-03-04T15:22:00.447263 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.447551 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.447845 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.system.server.features.installed.telnet-client -I, [2020-03-04T15:22:00.448179 #4335] INFO -- py3-windows-server-2019-1809: Function: win_servermanager.installed -I, [2020-03-04T15:22:00.448514 #4335] INFO -- py3-windows-server-2019-1809: Name: telnet-client -I, [2020-03-04T15:22:00.448804 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.449103 #4335] INFO -- py3-windows-server-2019-1809: Comment: Installed the following: -I, [2020-03-04T15:22:00.449411 #4335] INFO -- py3-windows-server-2019-1809: - Telnet-Client -I, [2020-03-04T15:22:00.449768 #4335] INFO -- py3-windows-server-2019-1809: - telnet-client -I, [2020-03-04T15:22:00.450065 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:21:33.804501 -I, [2020-03-04T15:22:00.450369 #4335] INFO -- py3-windows-server-2019-1809: Duration: 26238.721 ms -I, [2020-03-04T15:22:00.450651 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.450990 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.451320 #4335] INFO -- py3-windows-server-2019-1809: Telnet-Client: -I, [2020-03-04T15:22:00.451615 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.451905 #4335] INFO -- py3-windows-server-2019-1809: new: -I, [2020-03-04T15:22:00.452216 #4335] INFO -- py3-windows-server-2019-1809: Telnet Client -I, [2020-03-04T15:22:00.452508 #4335] INFO -- py3-windows-server-2019-1809: old: -I, [2020-03-04T15:22:00.452795 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.453101 #4335] INFO -- py3-windows-server-2019-1809: ID: windows.module.system.reboot -I, [2020-03-04T15:22:00.453390 #4335] INFO -- py3-windows-server-2019-1809: Function: module.run -I, [2020-03-04T15:22:00.453689 #4335] INFO -- py3-windows-server-2019-1809: Result: True -I, [2020-03-04T15:22:00.454031 #4335] INFO -- py3-windows-server-2019-1809: Comment: system.reboot: True -I, [2020-03-04T15:22:00.454333 #4335] INFO -- py3-windows-server-2019-1809: Started: 12:22:00.043222 -I, [2020-03-04T15:22:00.454613 #4335] INFO -- py3-windows-server-2019-1809: Duration: 237.886 ms -I, [2020-03-04T15:22:00.454901 #4335] INFO -- py3-windows-server-2019-1809: Changes: -I, [2020-03-04T15:22:00.455272 #4335] INFO -- py3-windows-server-2019-1809: ---------- -I, [2020-03-04T15:22:00.455591 #4335] INFO -- py3-windows-server-2019-1809: system.reboot: -I, [2020-03-04T15:22:00.455894 #4335] INFO -- py3-windows-server-2019-1809: True -I, [2020-03-04T15:22:00.456171 #4335] INFO -- py3-windows-server-2019-1809: -I, [2020-03-04T15:22:00.456465 #4335] INFO -- py3-windows-server-2019-1809: Summary for local -I, [2020-03-04T15:22:00.456806 #4335] INFO -- py3-windows-server-2019-1809: ------------- -I, [2020-03-04T15:22:00.457120 #4335] INFO -- py3-windows-server-2019-1809: Succeeded: 20 (changed=20) -I, [2020-03-04T15:22:00.457400 #4335] INFO -- py3-windows-server-2019-1809: Failed: 0 -I, [2020-03-04T15:22:00.461847 #4335] INFO -- py3-windows-server-2019-1809: ------------- -I, [2020-03-04T15:22:00.462301 #4335] INFO -- py3-windows-server-2019-1809: Total states run: 20 -I, [2020-03-04T15:22:00.462641 #4335] INFO -- py3-windows-server-2019-1809: Total run time: 148.491 s -I, [2020-03-04T15:22:00.480300 #4335] INFO -- py3-windows-server-2019-1809: Downloading files from -I, [2020-03-04T15:22:00.648165 #4335] INFO -- py3-windows-server-2019-1809: Finished converging (3m45.42s). -I, [2020-03-04T15:22:00.648364 #4335] INFO -- py3-windows-server-2019-1809: -----> Setting up ... -I, [2020-03-04T15:22:00.657388 #4335] INFO -- py3-windows-server-2019-1809: Finished setting up (0m0.00s). -I, [2020-03-04T15:22:00.657594 #4335] INFO -- py3-windows-server-2019-1809: -----> Verifying ... -I, [2020-03-04T15:22:01.690676 #4335] INFO -- py3-windows-server-2019-1809: Loaded default -I, [2020-03-04T15:22:40.151912 #4335] INFO -- py3-windows-server-2019-1809: Finished verifying (0m39.49s). -I, [2020-03-04T15:22:40.153362 #4335] INFO -- py3-windows-server-2019-1809: -----> Destroying ... -I, [2020-03-04T15:22:49.295327 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Forcing shutdown of VM... -I, [2020-03-04T15:22:50.827478 #4335] INFO -- py3-windows-server-2019-1809: ==> default: Destroying VM and associated drives... -I, [2020-03-04T15:22:51.564031 #4335] INFO -- py3-windows-server-2019-1809: Vagrant instance destroyed. -I, [2020-03-04T15:22:51.565226 #4335] INFO -- py3-windows-server-2019-1809: Finished destroying (0m11.41s). -I, [2020-03-04T15:22:51.566211 #4335] INFO -- py3-windows-server-2019-1809: Finished testing (6m28.53s). +I, [2020-03-06T13:18:00.471556 #18536] INFO -- py3-windows-server-2019-1809: -----> Cleaning up any prior instances of +I, [2020-03-06T13:18:00.471854 #18536] INFO -- py3-windows-server-2019-1809: -----> Destroying ... +I, [2020-03-06T13:18:00.473867 #18536] INFO -- py3-windows-server-2019-1809: Finished destroying (0m0.00s). +I, [2020-03-06T13:18:00.475354 #18536] INFO -- py3-windows-server-2019-1809: -----> Testing +I, [2020-03-06T13:18:00.475531 #18536] INFO -- py3-windows-server-2019-1809: -----> Creating ... +I, [2020-03-06T13:18:06.763716 #18536] INFO -- py3-windows-server-2019-1809: Bringing machine 'default' up with 'virtualbox' provider... +I, [2020-03-06T13:18:07.798666 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Cloning VM... +I, [2020-03-06T13:18:08.303397 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Matching MAC address for NAT networking... +I, [2020-03-06T13:18:08.526948 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Checking if box 'StefanScherer/windows_2019' version '2020.02.12' is up to date... +I, [2020-03-06T13:18:10.133058 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2019-1809-25b7de8d-6f8c-4539-8e3f-df8d23c0f4d3 +I, [2020-03-06T13:18:13.235769 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Clearing any previously set network interfaces... +I, [2020-03-06T13:18:13.371463 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Preparing network interfaces based on configuration... +I, [2020-03-06T13:18:13.372169 #18536] INFO -- py3-windows-server-2019-1809: default: Adapter 1: nat +I, [2020-03-06T13:18:13.530748 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Forwarding ports... +I, [2020-03-06T13:18:13.663618 #18536] INFO -- py3-windows-server-2019-1809: default: 3389 (guest) => 3389 (host) (adapter 1) +I, [2020-03-06T13:18:13.664152 #18536] INFO -- py3-windows-server-2019-1809: default: 5985 (guest) => 55985 (host) (adapter 1) +I, [2020-03-06T13:18:13.665057 #18536] INFO -- py3-windows-server-2019-1809: default: 5986 (guest) => 55986 (host) (adapter 1) +I, [2020-03-06T13:18:13.665575 #18536] INFO -- py3-windows-server-2019-1809: default: 22 (guest) => 2222 (host) (adapter 1) +I, [2020-03-06T13:18:14.116199 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Running 'pre-boot' VM customizations... +I, [2020-03-06T13:18:15.132393 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Booting VM... +I, [2020-03-06T13:18:17.825534 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Waiting for machine to boot. This may take a few minutes... +I, [2020-03-06T13:18:18.833206 #18536] INFO -- py3-windows-server-2019-1809: default: WinRM address: 127.0.0.1:55985 +I, [2020-03-06T13:18:18.833561 #18536] INFO -- py3-windows-server-2019-1809: default: WinRM username: vagrant +I, [2020-03-06T13:18:18.833836 #18536] INFO -- py3-windows-server-2019-1809: default: WinRM execution_time_limit: PT2H +I, [2020-03-06T13:18:18.834271 #18536] INFO -- py3-windows-server-2019-1809: default: WinRM transport: negotiate +I, [2020-03-06T13:19:33.281689 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Machine booted and ready! +I, [2020-03-06T13:19:33.308695 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Checking for guest additions in VM... +I, [2020-03-06T13:19:34.115161 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Mounting shared folders... +I, [2020-03-06T13:19:34.116174 #18536] INFO -- py3-windows-server-2019-1809: default: /results => /mnt/c/tmp/results +I, [2020-03-06T13:19:43.117226 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Machine not provisioned because `--no-provision` is specified. +I, [2020-03-06T13:19:56.424065 #18536] INFO -- py3-windows-server-2019-1809: [WinRM] Established +I, [2020-03-06T13:19:56.424179 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:19:56.445691 #18536] INFO -- py3-windows-server-2019-1809: Vagrant instance created. +I, [2020-03-06T13:19:56.447328 #18536] INFO -- py3-windows-server-2019-1809: Finished creating (1m55.97s). +I, [2020-03-06T13:19:56.447573 #18536] INFO -- py3-windows-server-2019-1809: -----> Converging ... +I, [2020-03-06T13:19:56.450080 #18536] INFO -- py3-windows-server-2019-1809: Preparing files for transfer +I, [2020-03-06T13:19:56.450281 #18536] INFO -- py3-windows-server-2019-1809: Preparing salt-minion +I, [2020-03-06T13:19:56.455988 #18536] INFO -- py3-windows-server-2019-1809: Preparing pillars into /srv/pillar +I, [2020-03-06T13:19:56.456125 #18536] INFO -- py3-windows-server-2019-1809: pillars-from-files is deprecated in favor of pillars_from_files +I, [2020-03-06T13:19:56.459719 #18536] INFO -- py3-windows-server-2019-1809: Preparing formula: windows from /home/pmudd/projects/github/clearasmudd/windows-formula +I, [2020-03-06T13:19:56.598185 #18536] INFO -- py3-windows-server-2019-1809: Preparing state_top +I, [2020-03-06T13:19:56.599704 #18536] INFO -- py3-windows-server-2019-1809: Preparing scripts into /etc/salt/scripts +I, [2020-03-06T13:19:57.743767 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:19:57.744156 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:19:57.744909 #18536] INFO -- py3-windows-server-2019-1809: Directory: C:\ +I, [2020-03-06T13:19:57.745383 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:19:57.746011 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:19:57.746621 #18536] INFO -- py3-windows-server-2019-1809: Mode LastWriteTime Length Name +I, [2020-03-06T13:19:57.747106 #18536] INFO -- py3-windows-server-2019-1809: ---- ------------- ------ ---- +I, [2020-03-06T13:19:57.747588 #18536] INFO -- py3-windows-server-2019-1809: d----- 3/6/2020 10:19 AM temp +I, [2020-03-06T13:19:58.502307 #18536] INFO -- py3-windows-server-2019-1809: Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe +I, [2020-03-06T13:20:06.679394 #18536] INFO -- py3-windows-server-2019-1809: Installing Salt minion +I, [2020-03-06T13:21:18.950938 #18536] INFO -- py3-windows-server-2019-1809: Starting the Salt minion service +I, [2020-03-06T13:21:18.951508 #18536] INFO -- py3-windows-server-2019-1809: Salt minion successfully installed +I, [2020-03-06T13:21:27.862998 #18536] INFO -- py3-windows-server-2019-1809: You asked for latest and you have 3000 installed, sweet! +I, [2020-03-06T13:21:27.863792 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:27.864499 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:28.841758 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:28.842239 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:28.842823 #18536] INFO -- py3-windows-server-2019-1809: Directory: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:21:28.843418 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:28.843897 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:28.844369 #18536] INFO -- py3-windows-server-2019-1809: Mode LastWriteTime Length Name +I, [2020-03-06T13:21:28.844899 #18536] INFO -- py3-windows-server-2019-1809: ---- ------------- ------ ---- +I, [2020-03-06T13:21:28.845490 #18536] INFO -- py3-windows-server-2019-1809: d----- 3/6/2020 10:21 AM kitchen +I, [2020-03-06T13:21:28.846004 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:28.846404 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:21:28.868753 #18536] INFO -- py3-windows-server-2019-1809: Transferring files to +I, [2020-03-06T13:22:19.232408 #18536] INFO -- py3-windows-server-2019-1809: c:\salt\salt-call.bat : [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:22:19.232824 #18536] INFO -- py3-windows-server-2019-1809: At line:1 char:131 +I, [2020-03-06T13:22:19.233343 #18536] INFO -- py3-windows-server-2019-1809: + ... alt\minion ;c:\salt\salt-call.bat --state-output=changes --config-dir ... +I, [2020-03-06T13:22:19.233767 #18536] INFO -- py3-windows-server-2019-1809: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +I, [2020-03-06T13:22:19.234139 #18536] INFO -- py3-windows-server-2019-1809: + CategoryInfo : NotSpecified: ([ERROR ] Erro...y IDs was done.:String) [], RemoteException +I, [2020-03-06T13:22:19.234416 #18536] INFO -- py3-windows-server-2019-1809: + FullyQualifiedErrorId : NativeCommandError +I, [2020-03-06T13:22:19.234673 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:22:19.234948 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:22:19.235224 #18536] INFO -- py3-windows-server-2019-1809: Traceback (most recent call last): +I, [2020-03-06T13:22:19.235500 #18536] INFO -- py3-windows-server-2019-1809: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:22:19.235779 #18536] INFO -- py3-windows-server-2019-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:22:19.236077 #18536] INFO -- py3-windows-server-2019-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:22:19.236314 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:22:19.236634 #18536] INFO -- py3-windows-server-2019-1809: [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +I, [2020-03-06T13:22:19.237001 #18536] INFO -- py3-windows-server-2019-1809: Traceback (most recent call last): +I, [2020-03-06T13:22:19.237353 #18536] INFO -- py3-windows-server-2019-1809: File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name +I, [2020-03-06T13:22:19.237634 #18536] INFO -- py3-windows-server-2019-1809: return win32security.LookupAccountSid(None, sid_obj)[0] +I, [2020-03-06T13:22:19.237908 #18536] INFO -- py3-windows-server-2019-1809: pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') +I, [2020-03-06T13:22:19.238151 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:23:50.244705 #18536] INFO -- py3-windows-server-2019-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +I, [2020-03-06T13:23:50.245123 #18536] INFO -- py3-windows-server-2019-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:23:50.245584 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:23:50.245976 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:23:50.246387 #18536] INFO -- py3-windows-server-2019-1809: [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +I, [2020-03-06T13:23:50.246803 #18536] INFO -- py3-windows-server-2019-1809: environ[key] = redata.sub(a, value) +I, [2020-03-06T13:23:50.247110 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:23:50.247402 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:08.666320 #18536] INFO -- py3-windows-server-2019-1809: local: +I, [2020-03-06T13:25:08.666770 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.667215 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.state.system.hostname.saltstack1 +I, [2020-03-06T13:25:08.667590 #18536] INFO -- py3-windows-server-2019-1809: Function: system.hostname +I, [2020-03-06T13:25:08.667957 #18536] INFO -- py3-windows-server-2019-1809: Name: saltstack1 +I, [2020-03-06T13:25:08.668324 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.668676 #18536] INFO -- py3-windows-server-2019-1809: Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot +I, [2020-03-06T13:25:08.669013 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:21:55.893201 +I, [2020-03-06T13:25:08.669379 #18536] INFO -- py3-windows-server-2019-1809: Duration: 144.035 ms +I, [2020-03-06T13:25:08.669707 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.670059 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.670401 #18536] INFO -- py3-windows-server-2019-1809: hostname: +I, [2020-03-06T13:25:08.670775 #18536] INFO -- py3-windows-server-2019-1809: saltstack1 +I, [2020-03-06T13:25:08.671140 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.671497 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.state.system.computer_desc.description +I, [2020-03-06T13:25:08.671867 #18536] INFO -- py3-windows-server-2019-1809: Function: system.computer_desc +I, [2020-03-06T13:25:08.672209 #18536] INFO -- py3-windows-server-2019-1809: Name: Saltstack Computer Description +I, [2020-03-06T13:25:08.672545 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.672892 #18536] INFO -- py3-windows-server-2019-1809: Comment: Computer description successfully changed to 'Saltstack Computer Description' +I, [2020-03-06T13:25:08.673220 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:21:56.037236 +I, [2020-03-06T13:25:08.673531 #18536] INFO -- py3-windows-server-2019-1809: Duration: 2606.996 ms +I, [2020-03-06T13:25:08.673870 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.674192 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.674507 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:08.674837 #18536] INFO -- py3-windows-server-2019-1809: Saltstack Computer Description +I, [2020-03-06T13:25:08.675175 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:08.675489 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.675781 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.state.timezone.system.America/New_York +I, [2020-03-06T13:25:08.676113 #18536] INFO -- py3-windows-server-2019-1809: Function: timezone.system +I, [2020-03-06T13:25:08.676430 #18536] INFO -- py3-windows-server-2019-1809: Name: America/New_York +I, [2020-03-06T13:25:08.676757 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.677081 #18536] INFO -- py3-windows-server-2019-1809: Comment: Set timezone America/New_York +I, [2020-03-06T13:25:08.677391 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:21:58.690597 +I, [2020-03-06T13:25:08.677692 #18536] INFO -- py3-windows-server-2019-1809: Duration: 30.721 ms +I, [2020-03-06T13:25:08.678018 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.678349 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.678667 #18536] INFO -- py3-windows-server-2019-1809: timezone: +I, [2020-03-06T13:25:08.679010 #18536] INFO -- py3-windows-server-2019-1809: America/New_York +I, [2020-03-06T13:25:08.679316 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.679653 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.module.environ.items +I, [2020-03-06T13:25:08.679999 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:08.680387 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.680722 #18536] INFO -- py3-windows-server-2019-1809: Comment: environ.items: Success +I, [2020-03-06T13:25:08.681073 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:21:58.738965 +I, [2020-03-06T13:25:08.681401 #18536] INFO -- py3-windows-server-2019-1809: Duration: 14.056 ms +I, [2020-03-06T13:25:08.681722 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.682058 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.682415 #18536] INFO -- py3-windows-server-2019-1809: environ.items: +I, [2020-03-06T13:25:08.682773 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.683143 #18536] INFO -- py3-windows-server-2019-1809: ALLUSERSPROFILE: +I, [2020-03-06T13:25:08.683527 #18536] INFO -- py3-windows-server-2019-1809: C:\ProgramData +I, [2020-03-06T13:25:08.683913 #18536] INFO -- py3-windows-server-2019-1809: APPDATA: +I, [2020-03-06T13:25:08.684270 #18536] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Roaming +I, [2020-03-06T13:25:08.684621 #18536] INFO -- py3-windows-server-2019-1809: COMMONPROGRAMFILES: +I, [2020-03-06T13:25:08.684973 #18536] INFO -- py3-windows-server-2019-1809: C:\Program Files\Common Files +I, [2020-03-06T13:25:08.685326 #18536] INFO -- py3-windows-server-2019-1809: COMMONPROGRAMFILES(X86): +I, [2020-03-06T13:25:08.685776 #18536] INFO -- py3-windows-server-2019-1809: C:\Program Files (x86)\Common Files +I, [2020-03-06T13:25:08.686206 #18536] INFO -- py3-windows-server-2019-1809: COMMONPROGRAMW6432: +I, [2020-03-06T13:25:08.686639 #18536] INFO -- py3-windows-server-2019-1809: C:\Program Files\Common Files +I, [2020-03-06T13:25:08.687031 #18536] INFO -- py3-windows-server-2019-1809: COMPUTERNAME: +I, [2020-03-06T13:25:08.687408 #18536] INFO -- py3-windows-server-2019-1809: VAGRANT +I, [2020-03-06T13:25:08.687789 #18536] INFO -- py3-windows-server-2019-1809: COMSPEC: +I, [2020-03-06T13:25:08.688154 #18536] INFO -- py3-windows-server-2019-1809: C:\Windows\system32\cmd.exe +I, [2020-03-06T13:25:08.688543 #18536] INFO -- py3-windows-server-2019-1809: DRIVERDATA: +I, [2020-03-06T13:25:08.688941 #18536] INFO -- py3-windows-server-2019-1809: C:\Windows\System32\Drivers\DriverData +I, [2020-03-06T13:25:08.689338 #18536] INFO -- py3-windows-server-2019-1809: HOMEDRIVE: +I, [2020-03-06T13:25:08.689741 #18536] INFO -- py3-windows-server-2019-1809: C: +I, [2020-03-06T13:25:08.690170 #18536] INFO -- py3-windows-server-2019-1809: HOMEPATH: +I, [2020-03-06T13:25:08.690632 #18536] INFO -- py3-windows-server-2019-1809: \Users\vagrant +I, [2020-03-06T13:25:08.691056 #18536] INFO -- py3-windows-server-2019-1809: LOCALAPPDATA: +I, [2020-03-06T13:25:08.691432 #18536] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Local +I, [2020-03-06T13:25:08.691833 #18536] INFO -- py3-windows-server-2019-1809: LOGONSERVER: +I, [2020-03-06T13:25:08.692218 #18536] INFO -- py3-windows-server-2019-1809: \\VAGRANT +I, [2020-03-06T13:25:08.692667 #18536] INFO -- py3-windows-server-2019-1809: NUMBER_OF_PROCESSORS: +I, [2020-03-06T13:25:08.693091 #18536] INFO -- py3-windows-server-2019-1809: 2 +I, [2020-03-06T13:25:08.693534 #18536] INFO -- py3-windows-server-2019-1809: OS: +I, [2020-03-06T13:25:08.693979 #18536] INFO -- py3-windows-server-2019-1809: Windows_NT +I, [2020-03-06T13:25:08.694451 #18536] INFO -- py3-windows-server-2019-1809: PATH: +I, [2020-03-06T13:25:08.694976 #18536] INFO -- py3-windows-server-2019-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Users\vagrant\AppData\Local\Microsoft\WindowsApps;C:\salt\bin\lib\site-packages\pywin32_system32;C:\salt\bin\lib\site-packages\pywin32_system32 +I, [2020-03-06T13:25:08.695475 #18536] INFO -- py3-windows-server-2019-1809: PATHEXT: +I, [2020-03-06T13:25:08.695989 #18536] INFO -- py3-windows-server-2019-1809: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL +I, [2020-03-06T13:25:08.696497 #18536] INFO -- py3-windows-server-2019-1809: PROCESSOR_ARCHITECTURE: +I, [2020-03-06T13:25:08.697010 #18536] INFO -- py3-windows-server-2019-1809: AMD64 +I, [2020-03-06T13:25:08.697491 #18536] INFO -- py3-windows-server-2019-1809: PROCESSOR_IDENTIFIER: +I, [2020-03-06T13:25:08.698144 #18536] INFO -- py3-windows-server-2019-1809: Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +I, [2020-03-06T13:25:08.698733 #18536] INFO -- py3-windows-server-2019-1809: PROCESSOR_LEVEL: +I, [2020-03-06T13:25:08.699257 #18536] INFO -- py3-windows-server-2019-1809: 6 +I, [2020-03-06T13:25:08.699757 #18536] INFO -- py3-windows-server-2019-1809: PROCESSOR_REVISION: +I, [2020-03-06T13:25:08.700255 #18536] INFO -- py3-windows-server-2019-1809: 8e0c +I, [2020-03-06T13:25:08.700744 #18536] INFO -- py3-windows-server-2019-1809: PROGRAMDATA: +I, [2020-03-06T13:25:08.701215 #18536] INFO -- py3-windows-server-2019-1809: C:\ProgramData +I, [2020-03-06T13:25:08.701704 #18536] INFO -- py3-windows-server-2019-1809: PROGRAMFILES: +I, [2020-03-06T13:25:08.702180 #18536] INFO -- py3-windows-server-2019-1809: C:\Program Files +I, [2020-03-06T13:25:08.702633 #18536] INFO -- py3-windows-server-2019-1809: PROGRAMFILES(X86): +I, [2020-03-06T13:25:08.703030 #18536] INFO -- py3-windows-server-2019-1809: C:\Program Files (x86) +I, [2020-03-06T13:25:08.703421 #18536] INFO -- py3-windows-server-2019-1809: PROGRAMW6432: +I, [2020-03-06T13:25:08.703800 #18536] INFO -- py3-windows-server-2019-1809: C:\Program Files +I, [2020-03-06T13:25:08.704163 #18536] INFO -- py3-windows-server-2019-1809: PROMPT: +I, [2020-03-06T13:25:08.704566 #18536] INFO -- py3-windows-server-2019-1809: $P$G +I, [2020-03-06T13:25:08.704976 #18536] INFO -- py3-windows-server-2019-1809: PSMODULEPATH: +I, [2020-03-06T13:25:08.705422 #18536] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules +I, [2020-03-06T13:25:08.705890 #18536] INFO -- py3-windows-server-2019-1809: PUBLIC: +I, [2020-03-06T13:25:08.706380 #18536] INFO -- py3-windows-server-2019-1809: C:\Users\Public +I, [2020-03-06T13:25:08.706840 #18536] INFO -- py3-windows-server-2019-1809: PYTHON: +I, [2020-03-06T13:25:08.707320 #18536] INFO -- py3-windows-server-2019-1809: C:\salt\bin\python.exe +I, [2020-03-06T13:25:08.707802 #18536] INFO -- py3-windows-server-2019-1809: SALTDIR: +I, [2020-03-06T13:25:08.708300 #18536] INFO -- py3-windows-server-2019-1809: C:\salt +I, [2020-03-06T13:25:08.708793 #18536] INFO -- py3-windows-server-2019-1809: SCRIPT: +I, [2020-03-06T13:25:08.709316 #18536] INFO -- py3-windows-server-2019-1809: C:\salt\bin\Scripts\salt-call +I, [2020-03-06T13:25:08.709828 #18536] INFO -- py3-windows-server-2019-1809: SYSTEMDRIVE: +I, [2020-03-06T13:25:08.710391 #18536] INFO -- py3-windows-server-2019-1809: C: +I, [2020-03-06T13:25:08.710908 #18536] INFO -- py3-windows-server-2019-1809: SYSTEMROOT: +I, [2020-03-06T13:25:08.711404 #18536] INFO -- py3-windows-server-2019-1809: C:\Windows +I, [2020-03-06T13:25:08.711897 #18536] INFO -- py3-windows-server-2019-1809: TEMP: +I, [2020-03-06T13:25:08.712547 #18536] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:25:08.713024 #18536] INFO -- py3-windows-server-2019-1809: TMP: +I, [2020-03-06T13:25:08.713474 #18536] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant\AppData\Local\Temp +I, [2020-03-06T13:25:08.713886 #18536] INFO -- py3-windows-server-2019-1809: USERDOMAIN: +I, [2020-03-06T13:25:08.714323 #18536] INFO -- py3-windows-server-2019-1809: VAGRANT +I, [2020-03-06T13:25:08.714776 #18536] INFO -- py3-windows-server-2019-1809: USERDOMAIN_ROAMINGPROFILE: +I, [2020-03-06T13:25:08.715228 #18536] INFO -- py3-windows-server-2019-1809: VAGRANT +I, [2020-03-06T13:25:08.715639 #18536] INFO -- py3-windows-server-2019-1809: USERNAME: +I, [2020-03-06T13:25:08.716027 #18536] INFO -- py3-windows-server-2019-1809: vagrant +I, [2020-03-06T13:25:08.716373 #18536] INFO -- py3-windows-server-2019-1809: USERPROFILE: +I, [2020-03-06T13:25:08.716729 #18536] INFO -- py3-windows-server-2019-1809: C:\Users\vagrant +I, [2020-03-06T13:25:08.717449 #18536] INFO -- py3-windows-server-2019-1809: WINDIR: +I, [2020-03-06T13:25:08.718104 #18536] INFO -- py3-windows-server-2019-1809: C:\Windows +I, [2020-03-06T13:25:08.718788 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.719604 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.module.user.current +I, [2020-03-06T13:25:08.720298 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:08.720885 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.721705 #18536] INFO -- py3-windows-server-2019-1809: Comment: user.current: VAGRANT\vagrant +I, [2020-03-06T13:25:08.722293 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:21:58.753021 +I, [2020-03-06T13:25:08.722767 #18536] INFO -- py3-windows-server-2019-1809: Duration: 35.694 ms +I, [2020-03-06T13:25:08.723294 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.723787 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.724357 #18536] INFO -- py3-windows-server-2019-1809: user.current: +I, [2020-03-06T13:25:08.724887 #18536] INFO -- py3-windows-server-2019-1809: VAGRANT\vagrant +I, [2020-03-06T13:25:08.725405 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.726022 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.module.status.uptime +I, [2020-03-06T13:25:08.726597 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:08.727108 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.727625 #18536] INFO -- py3-windows-server-2019-1809: Comment: status.uptime: 0:02:38.816023 +I, [2020-03-06T13:25:08.728187 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:21:58.788715 +I, [2020-03-06T13:25:08.728684 #18536] INFO -- py3-windows-server-2019-1809: Duration: 27.308 ms +I, [2020-03-06T13:25:08.729199 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.729683 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.730191 #18536] INFO -- py3-windows-server-2019-1809: status.uptime: +I, [2020-03-06T13:25:08.730679 #18536] INFO -- py3-windows-server-2019-1809: 0:02:38.816023 +I, [2020-03-06T13:25:08.731179 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.731690 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 +I, [2020-03-06T13:25:08.732165 #18536] INFO -- py3-windows-server-2019-1809: Function: reg.present +I, [2020-03-06T13:25:08.732655 #18536] INFO -- py3-windows-server-2019-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:25:08.733122 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.733625 #18536] INFO -- py3-windows-server-2019-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:25:08.734116 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:21:58.816023 +I, [2020-03-06T13:25:08.734614 #18536] INFO -- py3-windows-server-2019-1809: Duration: 19549.321 ms +I, [2020-03-06T13:25:08.735076 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.735557 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.736084 #18536] INFO -- py3-windows-server-2019-1809: reg: +I, [2020-03-06T13:25:08.736557 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.737005 #18536] INFO -- py3-windows-server-2019-1809: Added: +I, [2020-03-06T13:25:08.737404 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.737832 #18536] INFO -- py3-windows-server-2019-1809: Entry: +I, [2020-03-06T13:25:08.738328 #18536] INFO -- py3-windows-server-2019-1809: SystemDefaultTlsVersions +I, [2020-03-06T13:25:08.738746 #18536] INFO -- py3-windows-server-2019-1809: Inheritance: +I, [2020-03-06T13:25:08.739136 #18536] INFO -- py3-windows-server-2019-1809: True +I, [2020-03-06T13:25:08.739553 #18536] INFO -- py3-windows-server-2019-1809: Key: +I, [2020-03-06T13:25:08.739914 #18536] INFO -- py3-windows-server-2019-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:25:08.740344 #18536] INFO -- py3-windows-server-2019-1809: Owner: +I, [2020-03-06T13:25:08.740761 #18536] INFO -- py3-windows-server-2019-1809: None +I, [2020-03-06T13:25:08.741157 #18536] INFO -- py3-windows-server-2019-1809: Perms: +I, [2020-03-06T13:25:08.741605 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.742031 #18536] INFO -- py3-windows-server-2019-1809: Deny: +I, [2020-03-06T13:25:08.742472 #18536] INFO -- py3-windows-server-2019-1809: None +I, [2020-03-06T13:25:08.742859 #18536] INFO -- py3-windows-server-2019-1809: Grant: +I, [2020-03-06T13:25:08.743312 #18536] INFO -- py3-windows-server-2019-1809: None +I, [2020-03-06T13:25:08.743747 #18536] INFO -- py3-windows-server-2019-1809: Value: +I, [2020-03-06T13:25:08.744159 #18536] INFO -- py3-windows-server-2019-1809: 1 +I, [2020-03-06T13:25:08.744568 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.744991 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 +I, [2020-03-06T13:25:08.745418 #18536] INFO -- py3-windows-server-2019-1809: Function: reg.present +I, [2020-03-06T13:25:08.745827 #18536] INFO -- py3-windows-server-2019-1809: Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:25:08.746267 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.753967 #18536] INFO -- py3-windows-server-2019-1809: Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:25:08.754648 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:22:18.365344 +I, [2020-03-06T13:25:08.755242 #18536] INFO -- py3-windows-server-2019-1809: Duration: 313.466 ms +I, [2020-03-06T13:25:08.755671 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.756077 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.756452 #18536] INFO -- py3-windows-server-2019-1809: reg: +I, [2020-03-06T13:25:08.756828 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.757229 #18536] INFO -- py3-windows-server-2019-1809: Added: +I, [2020-03-06T13:25:08.757618 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.758032 #18536] INFO -- py3-windows-server-2019-1809: Entry: +I, [2020-03-06T13:25:08.758404 #18536] INFO -- py3-windows-server-2019-1809: SystemDefaultTlsVersions +I, [2020-03-06T13:25:08.758776 #18536] INFO -- py3-windows-server-2019-1809: Inheritance: +I, [2020-03-06T13:25:08.759126 #18536] INFO -- py3-windows-server-2019-1809: True +I, [2020-03-06T13:25:08.759541 #18536] INFO -- py3-windows-server-2019-1809: Key: +I, [2020-03-06T13:25:08.759980 #18536] INFO -- py3-windows-server-2019-1809: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +I, [2020-03-06T13:25:08.760418 #18536] INFO -- py3-windows-server-2019-1809: Owner: +I, [2020-03-06T13:25:08.760884 #18536] INFO -- py3-windows-server-2019-1809: None +I, [2020-03-06T13:25:08.761375 #18536] INFO -- py3-windows-server-2019-1809: Perms: +I, [2020-03-06T13:25:08.761842 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.762331 #18536] INFO -- py3-windows-server-2019-1809: Deny: +I, [2020-03-06T13:25:08.762803 #18536] INFO -- py3-windows-server-2019-1809: None +I, [2020-03-06T13:25:08.763266 #18536] INFO -- py3-windows-server-2019-1809: Grant: +I, [2020-03-06T13:25:08.763725 #18536] INFO -- py3-windows-server-2019-1809: None +I, [2020-03-06T13:25:08.764214 #18536] INFO -- py3-windows-server-2019-1809: Value: +I, [2020-03-06T13:25:08.764671 #18536] INFO -- py3-windows-server-2019-1809: 1 +I, [2020-03-06T13:25:08.765156 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.765544 #18536] INFO -- py3-windows-server-2019-1809: ID: manually.update_git_repo-ng +I, [2020-03-06T13:25:08.765888 #18536] INFO -- py3-windows-server-2019-1809: Function: archive.extracted +I, [2020-03-06T13:25:08.766240 #18536] INFO -- py3-windows-server-2019-1809: Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +I, [2020-03-06T13:25:08.766571 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.766930 #18536] INFO -- py3-windows-server-2019-1809: Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs +I, [2020-03-06T13:25:08.767245 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:22:18.678810 +I, [2020-03-06T13:25:08.767634 #18536] INFO -- py3-windows-server-2019-1809: Duration: 1111.338 ms +I, [2020-03-06T13:25:08.767983 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.768303 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.768639 #18536] INFO -- py3-windows-server-2019-1809: directories_created: +I, [2020-03-06T13:25:08.769024 #18536] INFO -- py3-windows-server-2019-1809: - C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +I, [2020-03-06T13:25:08.769380 #18536] INFO -- py3-windows-server-2019-1809: extracted_files: +I, [2020-03-06T13:25:08.769728 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ +I, [2020-03-06T13:25:08.770127 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.gitignore +I, [2020-03-06T13:25:08.770535 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis.yml +I, [2020-03-06T13:25:08.771046 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/ +I, [2020-03-06T13:25:08.771547 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/requirements.txt +I, [2020-03-06T13:25:08.772057 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/.travis/tests.py +I, [2020-03-06T13:25:08.772526 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/7zip.sls +I, [2020-03-06T13:25:08.773024 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/LICENSE +I, [2020-03-06T13:25:08.773496 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/README.md +I, [2020-03-06T13:25:08.774038 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/_config.yml +I, [2020-03-06T13:25:08.774586 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/activeperl_x64.sls +I, [2020-03-06T13:25:08.775080 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/activeperl_x86.sls +I, [2020-03-06T13:25:08.775475 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobeair.sls +I, [2020-03-06T13:25:08.775865 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader-dc-classic.sls +I, [2020-03-06T13:25:08.776319 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader-xi.sls +I, [2020-03-06T13:25:08.776818 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobereader.sls +I, [2020-03-06T13:25:08.777292 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adobeshockwaveplayer.sls +I, [2020-03-06T13:25:08.777803 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adv-ip-scanner.sls +I, [2020-03-06T13:25:08.778297 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/adv-port-scanner.sls +I, [2020-03-06T13:25:08.778796 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/advancedlogging.sls +I, [2020-03-06T13:25:08.779186 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/anydesk-msi.sls +I, [2020-03-06T13:25:08.779589 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/anydesk.sls +I, [2020-03-06T13:25:08.779993 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/applicationrequestrouting.sls +I, [2020-03-06T13:25:08.780404 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/aspnet-mvc1.sls +I, [2020-03-06T13:25:08.780844 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/atom.sls +I, [2020-03-06T13:25:08.781327 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/audacity.sls +I, [2020-03-06T13:25:08.781740 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/ +I, [2020-03-06T13:25:08.782170 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/init.sls +I, [2020-03-06T13:25:08.782652 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/install.cmd +I, [2020-03-06T13:25:08.783094 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/install.ps1 +I, [2020-03-06T13:25:08.783580 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/auditbeat/remove.cmd +I, [2020-03-06T13:25:08.783994 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/autohotkey.sls +I, [2020-03-06T13:25:08.784385 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/autoit.sls +I, [2020-03-06T13:25:08.784768 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/autopsy.sls +I, [2020-03-06T13:25:08.785156 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/awscli.sls +I, [2020-03-06T13:25:08.785540 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/azuredatastudio.sls +I, [2020-03-06T13:25:08.785939 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bandizip.sls +I, [2020-03-06T13:25:08.786373 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/belarc-advisor.sls +I, [2020-03-06T13:25:08.786761 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bginfo4x.sls +I, [2020-03-06T13:25:08.787140 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bitnami-nginxstack.sls +I, [2020-03-06T13:25:08.787567 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bitvise.sls +I, [2020-03-06T13:25:08.788017 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/blender.sls +I, [2020-03-06T13:25:08.788537 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bootracer.sls +I, [2020-03-06T13:25:08.789048 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bulk_extractor.sls +I, [2020-03-06T13:25:08.789527 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/bulkrenameutility.sls +I, [2020-03-06T13:25:08.789937 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ccleaner-slim.sls +I, [2020-03-06T13:25:08.790339 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ccleaner.sls +I, [2020-03-06T13:25:08.790722 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cdburnerxp.sls +I, [2020-03-06T13:25:08.791168 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cdroller.sls +I, [2020-03-06T13:25:08.791580 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/check-mk-agent-msi.sls +I, [2020-03-06T13:25:08.791951 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/check-mk-agent.sls +I, [2020-03-06T13:25:08.792340 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/ +I, [2020-03-06T13:25:08.792714 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/init.sls +I, [2020-03-06T13:25:08.793081 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/install.cmd +I, [2020-03-06T13:25:08.793415 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/uninstall.cmd +I, [2020-03-06T13:25:08.793789 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chocolatey/uninstall.ps1 +I, [2020-03-06T13:25:08.794213 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chrome-rdp.sls +I, [2020-03-06T13:25:08.794633 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/chrome.sls +I, [2020-03-06T13:25:08.795041 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/clamav.sls +I, [2020-03-06T13:25:08.795415 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/clamwin.sls +I, [2020-03-06T13:25:08.795863 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/classicshell.sls +I, [2020-03-06T13:25:08.796346 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/clink.sls +I, [2020-03-06T13:25:08.796826 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/conemu.sls +I, [2020-03-06T13:25:08.797315 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cpu-z.sls +I, [2020-03-06T13:25:08.797761 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/curl.sls +I, [2020-03-06T13:25:08.798193 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck-cli.sls +I, [2020-03-06T13:25:08.798595 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck-msi.sls +I, [2020-03-06T13:25:08.799050 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/cyberduck.sls +I, [2020-03-06T13:25:08.799514 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/defraggler.sls +I, [2020-03-06T13:25:08.799959 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/docs/ +I, [2020-03-06T13:25:08.800343 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/docs/ReadMe.md +I, [2020-03-06T13:25:08.800726 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/dotnet.sls +I, [2020-03-06T13:25:08.801117 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/dropbox.sls +I, [2020-03-06T13:25:08.801492 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/duplicati.sls +I, [2020-03-06T13:25:08.801958 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/dvdstyler.sls +I, [2020-03-06T13:25:08.802361 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/echo-desktop.sls +I, [2020-03-06T13:25:08.802773 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/eea.sls +I, [2020-03-06T13:25:08.803193 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/emet.sls +I, [2020-03-06T13:25:08.803597 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/emsisoft-anti-malware.sls +I, [2020-03-06T13:25:08.804056 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/eraser.sls +I, [2020-03-06T13:25:08.804486 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/ +I, [2020-03-06T13:25:08.804897 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/init.sls +I, [2020-03-06T13:25:08.805371 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/erlang/install.cmd +I, [2020-03-06T13:25:08.805817 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/evernote.sls +I, [2020-03-06T13:25:08.806236 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/fiddler.sls +I, [2020-03-06T13:25:08.806625 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/ +I, [2020-03-06T13:25:08.807050 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/init.sls +I, [2020-03-06T13:25:08.807545 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/install.cmd +I, [2020-03-06T13:25:08.808069 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/install.ps1 +I, [2020-03-06T13:25:08.808535 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filebeat/remove.cmd +I, [2020-03-06T13:25:08.808977 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filehippo-app-manager.sls +I, [2020-03-06T13:25:08.809444 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/filezilla.sls +I, [2020-03-06T13:25:08.809889 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox-esr_x64.sls +I, [2020-03-06T13:25:08.810391 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox-esr_x86.sls +I, [2020-03-06T13:25:08.810834 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox_x64.sls +I, [2020-03-06T13:25:08.811228 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/firefox_x86.sls +I, [2020-03-06T13:25:08.811681 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/ +I, [2020-03-06T13:25:08.812108 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/init.sls +I, [2020-03-06T13:25:08.812503 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/install.cmd +I, [2020-03-06T13:25:08.812899 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/install.ps1 +I, [2020-03-06T13:25:08.813302 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/functionbeat/remove.cmd +I, [2020-03-06T13:25:08.813710 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gedit.sls +I, [2020-03-06T13:25:08.814073 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gimp.sls +I, [2020-03-06T13:25:08.814572 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/git-extensions.sls +I, [2020-03-06T13:25:08.815091 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/git.sls +I, [2020-03-06T13:25:08.815595 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls +I, [2020-03-06T13:25:08.816121 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gnucash.sls +I, [2020-03-06T13:25:08.816626 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/golang.sls +I, [2020-03-06T13:25:08.817071 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/goodsync.sls +I, [2020-03-06T13:25:08.817488 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gow.sls +I, [2020-03-06T13:25:08.817916 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win-light.sls +I, [2020-03-06T13:25:08.818335 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win-vanilla.sls +I, [2020-03-06T13:25:08.818761 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/ +I, [2020-03-06T13:25:08.819178 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/init.sls +I, [2020-03-06T13:25:08.819589 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gpg4win/silent.ini +I, [2020-03-06T13:25:08.820043 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/graylog-collector-sidecar.sls +I, [2020-03-06T13:25:08.820459 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/grepwin.sls +I, [2020-03-06T13:25:08.820856 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/gvim.sls +I, [2020-03-06T13:25:08.821369 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/handbrake.sls +I, [2020-03-06T13:25:08.822034 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/ +I, [2020-03-06T13:25:08.822572 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/.remove.ps1.swp +I, [2020-03-06T13:25:08.823036 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/init.sls +I, [2020-03-06T13:25:08.823538 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/install.cmd +I, [2020-03-06T13:25:08.824220 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/install.ps1 +I, [2020-03-06T13:25:08.824789 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/heartbeat/remove.cmd +I, [2020-03-06T13:25:08.825286 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/hipchat.sls +I, [2020-03-06T13:25:08.825758 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/hostsfileeditor.sls +I, [2020-03-06T13:25:08.826204 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/hwinfo.sls +I, [2020-03-06T13:25:08.826711 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ice.sls +I, [2020-03-06T13:25:08.827181 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/icecast.sls +I, [2020-03-06T13:25:08.827691 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/icloud.sls +I, [2020-03-06T13:25:08.828174 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/iismediaservices.sls +I, [2020-03-06T13:25:08.828661 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/influx-capacitor.sls +I, [2020-03-06T13:25:08.829130 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/inkscape.sls +I, [2020-03-06T13:25:08.829621 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/intellij-community.sls +I, [2020-03-06T13:25:08.830169 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/intellij-ultimate.sls +I, [2020-03-06T13:25:08.830723 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/internet-evidence-finder.sls +I, [2020-03-06T13:25:08.831257 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/irfanview-plugins.sls +I, [2020-03-06T13:25:08.831798 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/irfanview.sls +I, [2020-03-06T13:25:08.832339 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/isapirewrite-lite.sls +I, [2020-03-06T13:25:08.832822 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/itunes.sls +I, [2020-03-06T13:25:08.833305 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jdk8.sls +I, [2020-03-06T13:25:08.833734 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jre.sls +I, [2020-03-06T13:25:08.834201 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jre8.sls +I, [2020-03-06T13:25:08.834603 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-server-management.sls +I, [2020-03-06T13:25:08.834949 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-server.sls +I, [2020-03-06T13:25:08.835290 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/jungledisk-workgroup.sls +I, [2020-03-06T13:25:08.835595 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/kdiff3.sls +I, [2020-03-06T13:25:08.836025 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/keepass-2x.sls +I, [2020-03-06T13:25:08.836458 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/keepass.sls +I, [2020-03-06T13:25:08.836791 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/lastpass.sls +I, [2020-03-06T13:25:08.837189 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/lazarus.sls +I, [2020-03-06T13:25:08.837590 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/libreoffice.sls +I, [2020-03-06T13:25:08.838077 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/logparser.sls +I, [2020-03-06T13:25:08.838597 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/maas360bootanalyzer.sls +I, [2020-03-06T13:25:08.839079 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/malwarebytes.sls +I, [2020-03-06T13:25:08.839429 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mariadb.sls +I, [2020-03-06T13:25:08.839785 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mercurial.sls +I, [2020-03-06T13:25:08.840139 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/messageanalyzer.sls +I, [2020-03-06T13:25:08.840500 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/ +I, [2020-03-06T13:25:08.840934 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/.remove.ps1.swp +I, [2020-03-06T13:25:08.841347 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/init.sls +I, [2020-03-06T13:25:08.841708 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/install.cmd +I, [2020-03-06T13:25:08.842056 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/install.ps1 +I, [2020-03-06T13:25:08.842401 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/metricbeat/remove.cmd +I, [2020-03-06T13:25:08.842787 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/microsoft-build-tools.sls +I, [2020-03-06T13:25:08.843211 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mikogo.sls +I, [2020-03-06T13:25:08.843633 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/miktex-basic.sls +I, [2020-03-06T13:25:08.844076 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mongodb.sls +I, [2020-03-06T13:25:08.844443 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-mbsa.sls +I, [2020-03-06T13:25:08.844948 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls +I, [2020-03-06T13:25:08.845435 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls +I, [2020-03-06T13:25:08.845989 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls +I, [2020-03-06T13:25:08.846434 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls +I, [2020-03-06T13:25:08.846893 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:25:08.847312 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:25:08.847819 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls +I, [2020-03-06T13:25:08.848351 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls +I, [2020-03-06T13:25:08.848893 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls +I, [2020-03-06T13:25:08.849375 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls +I, [2020-03-06T13:25:08.849842 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls +I, [2020-03-06T13:25:08.850282 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls +I, [2020-03-06T13:25:08.850825 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls +I, [2020-03-06T13:25:08.851419 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:25:08.852008 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls +I, [2020-03-06T13:25:08.852565 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls +I, [2020-03-06T13:25:08.853144 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls +I, [2020-03-06T13:25:08.853713 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls +I, [2020-03-06T13:25:08.854528 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls +I, [2020-03-06T13:25:08.855197 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls +I, [2020-03-06T13:25:08.855852 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls +I, [2020-03-06T13:25:08.856414 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls +I, [2020-03-06T13:25:08.856934 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls +I, [2020-03-06T13:25:08.857464 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls +I, [2020-03-06T13:25:08.857998 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls +I, [2020-03-06T13:25:08.858535 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mucommander.sls +I, [2020-03-06T13:25:08.859094 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-essential.sls +I, [2020-03-06T13:25:08.859651 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-installer-community.sls +I, [2020-03-06T13:25:08.860185 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/mysql-workbench.sls +I, [2020-03-06T13:25:08.860735 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/never10.sls +I, [2020-03-06T13:25:08.861252 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/newrelic-infra.sls +I, [2020-03-06T13:25:08.861805 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nextcloud-client.sls +I, [2020-03-06T13:25:08.862360 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nmap.sls +I, [2020-03-06T13:25:08.862921 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/node.js-lts.sls +I, [2020-03-06T13:25:08.863472 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/node.js.sls +I, [2020-03-06T13:25:08.864034 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nomacs.sls +I, [2020-03-06T13:25:08.864571 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/npp.sls +I, [2020-03-06T13:25:08.865091 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nsclient.sls +I, [2020-03-06T13:25:08.872878 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nsis.sls +I, [2020-03-06T13:25:08.874901 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ntp.sls +I, [2020-03-06T13:25:08.875944 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nunit-console.sls +I, [2020-03-06T13:25:08.876612 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/nxlog.sls +I, [2020-03-06T13:25:08.877225 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/octopus-tentacle.sls +I, [2020-03-06T13:25:08.877828 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/openlp.sls +I, [2020-03-06T13:25:08.878430 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/openoffice.sls +I, [2020-03-06T13:25:08.878990 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/openvpn.sls +I, [2020-03-06T13:25:08.879502 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/osquery.sls +I, [2020-03-06T13:25:08.880033 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ossec-agent.sls +I, [2020-03-06T13:25:08.880547 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/owncloud.sls +I, [2020-03-06T13:25:08.881077 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/ +I, [2020-03-06T13:25:08.881596 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/init.sls +I, [2020-03-06T13:25:08.882147 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/install.cmd +I, [2020-03-06T13:25:08.882601 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/install.ps1 +I, [2020-03-06T13:25:08.883127 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/packetbeat/remove.cmd +I, [2020-03-06T13:25:08.883654 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pandoc.sls +I, [2020-03-06T13:25:08.884204 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/parallels-client-15.sls +I, [2020-03-06T13:25:08.884754 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pass4win.sls +I, [2020-03-06T13:25:08.885301 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/passware-kit-agent.sls +I, [2020-03-06T13:25:08.885906 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/passware-kit-forensic.sls +I, [2020-03-06T13:25:08.886344 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/patchmypc-free.sls +I, [2020-03-06T13:25:08.886841 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pdf24creator.sls +I, [2020-03-06T13:25:08.887272 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pdfcreator.sls +I, [2020-03-06T13:25:08.887792 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/peazip.sls +I, [2020-03-06T13:25:08.888350 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pgadmin4.sls +I, [2020-03-06T13:25:08.888863 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pgina.sls +I, [2020-03-06T13:25:08.889279 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pidgin.sls +I, [2020-03-06T13:25:08.889730 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/postgresql.sls +I, [2020-03-06T13:25:08.890153 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/powerbi-desktop.sls +I, [2020-03-06T13:25:08.890619 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/powershell-core.sls +I, [2020-03-06T13:25:08.890989 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/prometheus-wmi-exporter.sls +I, [2020-03-06T13:25:08.891407 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/putty.sls +I, [2020-03-06T13:25:08.891840 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/ +I, [2020-03-06T13:25:08.892219 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/init.sls +I, [2020-03-06T13:25:08.892699 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/pycharm-pro/silent.config +I, [2020-03-06T13:25:08.894167 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python2_x64.sls +I, [2020-03-06T13:25:08.894906 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python2_x86.sls +I, [2020-03-06T13:25:08.895502 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python3_x64.sls +I, [2020-03-06T13:25:08.895993 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/python3_x86.sls +I, [2020-03-06T13:25:08.896464 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/qemu.sls +I, [2020-03-06T13:25:08.896910 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/queueexplorerpro.sls +I, [2020-03-06T13:25:08.897374 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/quicktime.sls +I, [2020-03-06T13:25:08.897782 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rabbitmq.sls +I, [2020-03-06T13:25:08.898318 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls +I, [2020-03-06T13:25:08.898799 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rakudo-star_x64.sls +I, [2020-03-06T13:25:08.899293 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rasclient.sls +I, [2020-03-06T13:25:08.899714 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rdcman.sls +I, [2020-03-06T13:25:08.900185 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rocketchat.sls +I, [2020-03-06T13:25:08.900700 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rubyinstaller_x64.sls +I, [2020-03-06T13:25:08.901158 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/rubyinstaller_x86.sls +I, [2020-03-06T13:25:08.901641 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/salt-minion-py2.sls +I, [2020-03-06T13:25:08.902086 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/salt-minion-py3.sls +I, [2020-03-06T13:25:08.902503 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sandboxie.sls +I, [2020-03-06T13:25:08.902932 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/scaleout.sls +I, [2020-03-06T13:25:08.903388 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/secunia.psi.sls +I, [2020-03-06T13:25:08.903795 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sensu.sls +I, [2020-03-06T13:25:08.904393 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sharpdevelop.sls +I, [2020-03-06T13:25:08.904984 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/skitch.sls +I, [2020-03-06T13:25:08.905534 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/skype-msi.sls +I, [2020-03-06T13:25:08.905991 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/skype.sls +I, [2020-03-06T13:25:08.906393 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/slack-machine-msi.sls +I, [2020-03-06T13:25:08.906842 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/slack-user-msi.sls +I, [2020-03-06T13:25:08.907244 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/slack.sls +I, [2020-03-06T13:25:08.907609 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/smartmontools.sls +I, [2020-03-06T13:25:08.908039 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/snmptools.sls +I, [2020-03-06T13:25:08.908442 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/soapui.sls +I, [2020-03-06T13:25:08.908814 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/software-informer.sls +I, [2020-03-06T13:25:08.909279 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sourcetree.sls +I, [2020-03-06T13:25:08.909736 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/spybot-anti-beacon.sls +I, [2020-03-06T13:25:08.910170 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/spybot.sls +I, [2020-03-06T13:25:08.910519 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sscserv-free.sls +I, [2020-03-06T13:25:08.910852 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/ +I, [2020-03-06T13:25:08.911207 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/init.sls +I, [2020-03-06T13:25:08.911574 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stayawake/install.cmd +I, [2020-03-06T13:25:08.912004 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/steam.sls +I, [2020-03-06T13:25:08.912341 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stellarium.sls +I, [2020-03-06T13:25:08.912737 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/strawberryperl_x64.sls +I, [2020-03-06T13:25:08.913113 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/strawberryperl_x86.sls +I, [2020-03-06T13:25:08.913452 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/stunnel.sls +I, [2020-03-06T13:25:08.913835 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/subinacl.sls +I, [2020-03-06T13:25:08.914216 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/sumatrapdf.sls +I, [2020-03-06T13:25:08.914580 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/svn.sls +I, [2020-03-06T13:25:08.915039 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/teamviewer.sls +I, [2020-03-06T13:25:08.915462 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/teamviewer_host.sls +I, [2020-03-06T13:25:08.915811 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/teracopy.sls +I, [2020-03-06T13:25:08.916186 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texmaker.sls +I, [2020-03-06T13:25:08.916519 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texniccenter.sls +I, [2020-03-06T13:25:08.916855 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texstudio.sls +I, [2020-03-06T13:25:08.917231 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/texworks.sls +I, [2020-03-06T13:25:08.917620 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/thunderbird.sls +I, [2020-03-06T13:25:08.917999 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tightvnc.sls +I, [2020-03-06T13:25:08.918350 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/todotxt.net.sls +I, [2020-03-06T13:25:08.918738 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/todour.sls +I, [2020-03-06T13:25:08.919121 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-bzr.sls +I, [2020-03-06T13:25:08.919495 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-git.sls +I, [2020-03-06T13:25:08.919915 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-hg.sls +I, [2020-03-06T13:25:08.920285 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/tortoise-svn.sls +I, [2020-03-06T13:25:08.920653 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/truecrypt.sls +I, [2020-03-06T13:25:08.921053 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/ultradefrag.sls +I, [2020-03-06T13:25:08.921444 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/urlrewrite.sls +I, [2020-03-06T13:25:08.921997 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/usbdlm.sls +I, [2020-03-06T13:25:08.922405 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vagrant.sls +I, [2020-03-06T13:25:08.922803 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vcforpython27.sls +I, [2020-03-06T13:25:08.923127 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vcxsrv.sls +I, [2020-03-06T13:25:08.923507 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/verysleepy.sls +I, [2020-03-06T13:25:08.923859 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/veyon.sls +I, [2020-03-06T13:25:08.924253 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/virtualbox.sls +I, [2020-03-06T13:25:08.924594 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/viscosity.sls +I, [2020-03-06T13:25:08.924907 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vivaldi.sls +I, [2020-03-06T13:25:08.925233 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vlc.sls +I, [2020-03-06T13:25:08.925602 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vs-community.sls +I, [2020-03-06T13:25:08.925980 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vs_remotetools_2017.sls +I, [2020-03-06T13:25:08.926367 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vscode.sls +I, [2020-03-06T13:25:08.926712 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/vsee.sls +I, [2020-03-06T13:25:08.927040 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wamp-server-3.sls +I, [2020-03-06T13:25:08.927408 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wamp-stack.sls +I, [2020-03-06T13:25:08.927797 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/webdeploy.sls +I, [2020-03-06T13:25:08.928170 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/webplatforminstaller.sls +I, [2020-03-06T13:25:08.928583 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/win-app-manager.sls +I, [2020-03-06T13:25:08.928905 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/windirstat.sls +I, [2020-03-06T13:25:08.929253 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winhttpcertcfg.sls +I, [2020-03-06T13:25:08.929592 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/ +I, [2020-03-06T13:25:08.929919 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/init.sls +I, [2020-03-06T13:25:08.930347 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/install.cmd +I, [2020-03-06T13:25:08.930696 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/install.ps1 +I, [2020-03-06T13:25:08.931030 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winlogbeat/remove.cmd +I, [2020-03-06T13:25:08.931417 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winmerge.sls +I, [2020-03-06T13:25:08.931738 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winmtr.sls +I, [2020-03-06T13:25:08.932163 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winpcap.sls +I, [2020-03-06T13:25:08.932534 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winrar.sls +I, [2020-03-06T13:25:08.932915 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/winscp.sls +I, [2020-03-06T13:25:08.933346 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wireshark.sls +I, [2020-03-06T13:25:08.933755 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/ +I, [2020-03-06T13:25:08.934212 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/README.md +I, [2020-03-06T13:25:08.934620 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/answer.txt +I, [2020-03-06T13:25:08.934958 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/init.sls +I, [2020-03-06T13:25:08.935296 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wmi_provider/majsetup.reg +I, [2020-03-06T13:25:08.935615 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wscc.sls +I, [2020-03-06T13:25:08.935932 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/wufuc.sls +I, [2020-03-06T13:25:08.936387 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/xampp.sls +I, [2020-03-06T13:25:08.936748 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/xming.sls +I, [2020-03-06T13:25:08.937122 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/yubikey-manager.sls +I, [2020-03-06T13:25:08.937484 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/yubikey-personalization-tool.sls +I, [2020-03-06T13:25:08.937819 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zabbix-agent.sls +I, [2020-03-06T13:25:08.938279 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/ +I, [2020-03-06T13:25:08.938636 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/init.sls +I, [2020-03-06T13:25:08.939028 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic +I, [2020-03-06T13:25:08.939438 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic +I, [2020-03-06T13:25:08.939764 #18536] INFO -- py3-windows-server-2019-1809: - salt-winrepo-ng-master/zoom.sls +I, [2020-03-06T13:25:08.940129 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.940499 #18536] INFO -- py3-windows-server-2019-1809: ID: rename-extract +I, [2020-03-06T13:25:08.940820 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:08.941235 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.941549 #18536] INFO -- py3-windows-server-2019-1809: Comment: file.rename: True +I, [2020-03-06T13:25:08.941903 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:22:19.790148 +I, [2020-03-06T13:25:08.942314 #18536] INFO -- py3-windows-server-2019-1809: Duration: 15.638 ms +I, [2020-03-06T13:25:08.942630 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.943040 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.943407 #18536] INFO -- py3-windows-server-2019-1809: file.rename: +I, [2020-03-06T13:25:08.943744 #18536] INFO -- py3-windows-server-2019-1809: True +I, [2020-03-06T13:25:08.944156 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.944518 #18536] INFO -- py3-windows-server-2019-1809: ID: pkg.refresh_db +I, [2020-03-06T13:25:08.944880 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:08.945215 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:08.945535 #18536] INFO -- py3-windows-server-2019-1809: Comment: check_cmd determined the state succeeded +I, [2020-03-06T13:25:08.945902 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:22:19.805786 +I, [2020-03-06T13:25:08.946287 #18536] INFO -- py3-windows-server-2019-1809: Duration: 18048.366 ms +I, [2020-03-06T13:25:08.946645 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:08.946984 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.947303 #18536] INFO -- py3-windows-server-2019-1809: pkg.refresh_db: +I, [2020-03-06T13:25:08.947618 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.948009 #18536] INFO -- py3-windows-server-2019-1809: failed: +I, [2020-03-06T13:25:08.948391 #18536] INFO -- py3-windows-server-2019-1809: 0 +I, [2020-03-06T13:25:08.948794 #18536] INFO -- py3-windows-server-2019-1809: success: +I, [2020-03-06T13:25:08.949140 #18536] INFO -- py3-windows-server-2019-1809: 298 +I, [2020-03-06T13:25:08.949467 #18536] INFO -- py3-windows-server-2019-1809: total: +I, [2020-03-06T13:25:08.949828 #18536] INFO -- py3-windows-server-2019-1809: 298 +I, [2020-03-06T13:25:08.950235 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:08.950572 #18536] INFO -- py3-windows-server-2019-1809: ID: kdiff3 +I, [2020-03-06T13:25:08.950938 #18536] INFO -- py3-windows-server-2019-1809: Function: pkg.installed +I, [2020-03-06T13:25:08.951245 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.023101 #18536] INFO -- py3-windows-server-2019-1809: Comment: The following packages were installed/updated: kdiff3 +I, [2020-03-06T13:25:09.023536 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:22:37.872675 +I, [2020-03-06T13:25:09.024056 #18536] INFO -- py3-windows-server-2019-1809: Duration: 8114.683 ms +I, [2020-03-06T13:25:09.024518 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.024953 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.025311 #18536] INFO -- py3-windows-server-2019-1809: kdiff3: +I, [2020-03-06T13:25:09.025649 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.025982 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:09.026328 #18536] INFO -- py3-windows-server-2019-1809: Not Found +I, [2020-03-06T13:25:09.026652 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:09.027085 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.027445 #18536] INFO -- py3-windows-server-2019-1809: ID: 7zip +I, [2020-03-06T13:25:09.027803 #18536] INFO -- py3-windows-server-2019-1809: Function: pkg.installed +I, [2020-03-06T13:25:09.028147 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.028471 #18536] INFO -- py3-windows-server-2019-1809: Comment: The following packages were installed/updated: 7zip=18.06.00.0 +I, [2020-03-06T13:25:09.028851 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:22:46.172998 +I, [2020-03-06T13:25:09.029263 #18536] INFO -- py3-windows-server-2019-1809: Duration: 19974.843 ms +I, [2020-03-06T13:25:09.029570 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.029905 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.030242 #18536] INFO -- py3-windows-server-2019-1809: 7zip: +I, [2020-03-06T13:25:09.030563 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.030963 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:09.031319 #18536] INFO -- py3-windows-server-2019-1809: 18.06.00.0 +I, [2020-03-06T13:25:09.031683 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:09.032106 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.032430 #18536] INFO -- py3-windows-server-2019-1809: ID: git +I, [2020-03-06T13:25:09.032772 #18536] INFO -- py3-windows-server-2019-1809: Function: pkg.installed +I, [2020-03-06T13:25:09.033189 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.040428 #18536] INFO -- py3-windows-server-2019-1809: Comment: The following packages were installed/updated: git +I, [2020-03-06T13:25:09.040975 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:23:06.241586 +I, [2020-03-06T13:25:09.041494 #18536] INFO -- py3-windows-server-2019-1809: Duration: 43455.558 ms +I, [2020-03-06T13:25:09.041860 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.042248 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.042595 #18536] INFO -- py3-windows-server-2019-1809: git: +I, [2020-03-06T13:25:09.042942 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.043309 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:09.043709 #18536] INFO -- py3-windows-server-2019-1809: 2.23.0.windows.1 +I, [2020-03-06T13:25:09.044040 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:09.044372 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.044719 #18536] INFO -- py3-windows-server-2019-1809: ID: windows_environment.refresh.path +I, [2020-03-06T13:25:09.045111 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:09.045452 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.045890 #18536] INFO -- py3-windows-server-2019-1809: Comment: windows_environment.refresh: Success +I, [2020-03-06T13:25:09.046258 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:23:49.697144 +I, [2020-03-06T13:25:09.046602 #18536] INFO -- py3-windows-server-2019-1809: Duration: 62.467 ms +I, [2020-03-06T13:25:09.046917 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.047308 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.047676 #18536] INFO -- py3-windows-server-2019-1809: windows_environment.refresh: +I, [2020-03-06T13:25:09.047996 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.048326 #18536] INFO -- py3-windows-server-2019-1809: PATH: +I, [2020-03-06T13:25:09.048693 #18536] INFO -- py3-windows-server-2019-1809: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\salt;C:\Program Files\Git\cmd +I, [2020-03-06T13:25:09.049050 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.049390 #18536] INFO -- py3-windows-server-2019-1809: ID: chocolatey.bootstrap +I, [2020-03-06T13:25:09.049778 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:09.050101 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.050466 #18536] INFO -- py3-windows-server-2019-1809: Comment: chocolatey.bootstrap: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:25:09.050795 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.051214 #18536] INFO -- py3-windows-server-2019-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:25:09.051560 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.051912 #18536] INFO -- py3-windows-server-2019-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:25:09.052219 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.052587 #18536] INFO -- py3-windows-server-2019-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:25:09.052871 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.053205 #18536] INFO -- py3-windows-server-2019-1809: Installing chocolatey on this machine +I, [2020-03-06T13:25:09.053510 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.053910 #18536] INFO -- py3-windows-server-2019-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:25:09.054258 #18536] INFO -- py3-windows-server-2019-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:25:09.054623 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.055000 #18536] INFO -- py3-windows-server-2019-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:25:09.055431 #18536] INFO -- py3-windows-server-2019-1809: before you can use choco. +I, [2020-03-06T13:25:09.055892 #18536] INFO -- py3-windows-server-2019-1809: Restricting write permissions to Administrators +I, [2020-03-06T13:25:09.056335 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.056848 #18536] INFO -- py3-windows-server-2019-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:25:09.057291 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.057650 #18536] INFO -- py3-windows-server-2019-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:25:09.058104 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.058538 #18536] INFO -- py3-windows-server-2019-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:25:09.058845 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.059225 #18536] INFO -- py3-windows-server-2019-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:25:09.059597 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.060014 #18536] INFO -- py3-windows-server-2019-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:25:09.060326 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.060766 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.061121 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.061535 #18536] INFO -- py3-windows-server-2019-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:25:09.061831 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.062218 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.062529 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.062898 #18536] INFO -- py3-windows-server-2019-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:25:09.063249 #18536] INFO -- py3-windows-server-2019-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:25:09.063639 #18536] INFO -- py3-windows-server-2019-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:25:09.064108 #18536] INFO -- py3-windows-server-2019-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:25:09.064495 #18536] INFO -- py3-windows-server-2019-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:25:09.064871 #18536] INFO -- py3-windows-server-2019-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:25:09.065232 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.065562 #18536] INFO -- py3-windows-server-2019-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:25:09.065974 #18536] INFO -- py3-windows-server-2019-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:25:09.066409 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.066920 #18536] INFO -- py3-windows-server-2019-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:25:09.067415 #18536] INFO -- py3-windows-server-2019-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:25:09.067824 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.068488 #18536] INFO -- py3-windows-server-2019-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:25:09.069107 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.069620 #18536] INFO -- py3-windows-server-2019-1809: Run choco /? for a list of functions. +I, [2020-03-06T13:25:09.070245 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.070754 #18536] INFO -- py3-windows-server-2019-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:25:09.071193 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.071661 #18536] INFO -- py3-windows-server-2019-1809: first prior to using choco. +I, [2020-03-06T13:25:09.072008 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.072329 #18536] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:25:09.072620 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.072983 #18536] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:25:09.073291 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:23:49.759611 +I, [2020-03-06T13:25:09.073590 #18536] INFO -- py3-windows-server-2019-1809: Duration: 31596.291 ms +I, [2020-03-06T13:25:09.073969 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.074321 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.074798 #18536] INFO -- py3-windows-server-2019-1809: chocolatey.bootstrap: +I, [2020-03-06T13:25:09.075229 #18536] INFO -- py3-windows-server-2019-1809: Getting latest version of the Chocolatey package for download. +I, [2020-03-06T13:25:09.075606 #18536] INFO -- py3-windows-server-2019-1809: Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. +I, [2020-03-06T13:25:09.075971 #18536] INFO -- py3-windows-server-2019-1809: Downloading 7-Zip commandline tool prior to extraction. +I, [2020-03-06T13:25:09.076329 #18536] INFO -- py3-windows-server-2019-1809: Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... +I, [2020-03-06T13:25:09.076839 #18536] INFO -- py3-windows-server-2019-1809: Installing chocolatey on this machine +I, [2020-03-06T13:25:09.077201 #18536] INFO -- py3-windows-server-2019-1809: Creating ChocolateyInstall as an environment variable (targeting 'Machine') +I, [2020-03-06T13:25:09.077544 #18536] INFO -- py3-windows-server-2019-1809: Setting ChocolateyInstall to 'C:\ProgramData\chocolatey' +I, [2020-03-06T13:25:09.077910 #18536] INFO -- py3-windows-server-2019-1809: WARNING: It's very likely you will need to close and reopen your shell +I, [2020-03-06T13:25:09.078318 #18536] INFO -- py3-windows-server-2019-1809: before you can use choco. +I, [2020-03-06T13:25:09.078810 #18536] INFO -- py3-windows-server-2019-1809: Restricting write permissions to Administrators +I, [2020-03-06T13:25:09.079187 #18536] INFO -- py3-windows-server-2019-1809: We are setting up the Chocolatey package repository. +I, [2020-03-06T13:25:09.079602 #18536] INFO -- py3-windows-server-2019-1809: The packages themselves go to 'C:\ProgramData\chocolatey\lib' +I, [2020-03-06T13:25:09.079971 #18536] INFO -- py3-windows-server-2019-1809: (i.e. C:\ProgramData\chocolatey\lib\yourPackageName). +I, [2020-03-06T13:25:09.080312 #18536] INFO -- py3-windows-server-2019-1809: A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin' +I, [2020-03-06T13:25:09.080754 #18536] INFO -- py3-windows-server-2019-1809: and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'. +I, [2020-03-06T13:25:09.081106 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.081441 #18536] INFO -- py3-windows-server-2019-1809: Creating Chocolatey folders if they do not already exist. +I, [2020-03-06T13:25:09.081776 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.082094 #18536] INFO -- py3-windows-server-2019-1809: WARNING: You can safely ignore errors related to missing log files when +I, [2020-03-06T13:25:09.082491 #18536] INFO -- py3-windows-server-2019-1809: upgrading from a version of Chocolatey less than 0.9.9. +I, [2020-03-06T13:25:09.082844 #18536] INFO -- py3-windows-server-2019-1809: 'Batch file could not be found' is also safe to ignore. +I, [2020-03-06T13:25:09.083190 #18536] INFO -- py3-windows-server-2019-1809: 'The system cannot find the file specified' - also safe. +I, [2020-03-06T13:25:09.083561 #18536] INFO -- py3-windows-server-2019-1809: chocolatey.nupkg file not installed in lib. +I, [2020-03-06T13:25:09.083898 #18536] INFO -- py3-windows-server-2019-1809: Attempting to locate it from bootstrapper. +I, [2020-03-06T13:25:09.084220 #18536] INFO -- py3-windows-server-2019-1809: PATH environment variable does not have C:\ProgramData\chocolatey\bin in it. Adding... +I, [2020-03-06T13:25:09.084651 #18536] INFO -- py3-windows-server-2019-1809: WARNING: Not setting tab completion: Profile file does not exist at +I, [2020-03-06T13:25:09.085004 #18536] INFO -- py3-windows-server-2019-1809: 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'. +I, [2020-03-06T13:25:09.085364 #18536] INFO -- py3-windows-server-2019-1809: Chocolatey (choco.exe) is now ready. +I, [2020-03-06T13:25:09.085742 #18536] INFO -- py3-windows-server-2019-1809: You can call choco from anywhere, command line or powershell by typing choco. +I, [2020-03-06T13:25:09.086058 #18536] INFO -- py3-windows-server-2019-1809: Run choco /? for a list of functions. +I, [2020-03-06T13:25:09.086427 #18536] INFO -- py3-windows-server-2019-1809: You may need to shut down and restart powershell and/or consoles +I, [2020-03-06T13:25:09.086775 #18536] INFO -- py3-windows-server-2019-1809: first prior to using choco. +I, [2020-03-06T13:25:09.087093 #18536] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey commands are on the path +I, [2020-03-06T13:25:09.087456 #18536] INFO -- py3-windows-server-2019-1809: Ensuring chocolatey.nupkg is in the lib folder +I, [2020-03-06T13:25:09.087778 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.088123 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.chocolatey.windirstat +I, [2020-03-06T13:25:09.088496 #18536] INFO -- py3-windows-server-2019-1809: Function: chocolatey.installed +I, [2020-03-06T13:25:09.088824 #18536] INFO -- py3-windows-server-2019-1809: Name: windirstat +I, [2020-03-06T13:25:09.089123 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.089466 #18536] INFO -- py3-windows-server-2019-1809: Comment: +I, [2020-03-06T13:25:09.089813 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:24:21.355902 +I, [2020-03-06T13:25:09.090115 #18536] INFO -- py3-windows-server-2019-1809: Duration: 10669.45 ms +I, [2020-03-06T13:25:09.090507 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.090931 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.091336 #18536] INFO -- py3-windows-server-2019-1809: windirstat: +I, [2020-03-06T13:25:09.091681 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.091996 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:09.092367 #18536] INFO -- py3-windows-server-2019-1809: - 1.1.2.20161210 +I, [2020-03-06T13:25:09.092785 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:09.093107 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.093475 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.system.packages.chocolatey.notepadplusplus +I, [2020-03-06T13:25:09.093841 #18536] INFO -- py3-windows-server-2019-1809: Function: chocolatey.installed +I, [2020-03-06T13:25:09.094176 #18536] INFO -- py3-windows-server-2019-1809: Name: notepadplusplus +I, [2020-03-06T13:25:09.094588 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.094888 #18536] INFO -- py3-windows-server-2019-1809: Comment: +I, [2020-03-06T13:25:09.095189 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:24:32.025352 +I, [2020-03-06T13:25:09.095531 #18536] INFO -- py3-windows-server-2019-1809: Duration: 11140.145 ms +I, [2020-03-06T13:25:09.095858 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.096210 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.096546 #18536] INFO -- py3-windows-server-2019-1809: notepadplusplus: +I, [2020-03-06T13:25:09.096864 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.097224 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:09.097553 #18536] INFO -- py3-windows-server-2019-1809: - 7.8.5 +I, [2020-03-06T13:25:09.097855 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:09.098231 #18536] INFO -- py3-windows-server-2019-1809: notepadplusplus.install: +I, [2020-03-06T13:25:09.098582 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.098910 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:09.099239 #18536] INFO -- py3-windows-server-2019-1809: - 7.8.5 +I, [2020-03-06T13:25:09.099553 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:09.099852 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.100203 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.system.server.features.installed.telnet-client +I, [2020-03-06T13:25:09.100543 #18536] INFO -- py3-windows-server-2019-1809: Function: win_servermanager.installed +I, [2020-03-06T13:25:09.100888 #18536] INFO -- py3-windows-server-2019-1809: Name: telnet-client +I, [2020-03-06T13:25:09.101316 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.101637 #18536] INFO -- py3-windows-server-2019-1809: Comment: Installed the following: +I, [2020-03-06T13:25:09.101992 #18536] INFO -- py3-windows-server-2019-1809: - Telnet-Client +I, [2020-03-06T13:25:09.102445 #18536] INFO -- py3-windows-server-2019-1809: - telnet-client +I, [2020-03-06T13:25:09.102776 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:24:43.165497 +I, [2020-03-06T13:25:09.103131 #18536] INFO -- py3-windows-server-2019-1809: Duration: 24859.686 ms +I, [2020-03-06T13:25:09.103449 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.103855 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.104197 #18536] INFO -- py3-windows-server-2019-1809: Telnet-Client: +I, [2020-03-06T13:25:09.104575 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.105037 #18536] INFO -- py3-windows-server-2019-1809: new: +I, [2020-03-06T13:25:09.105499 #18536] INFO -- py3-windows-server-2019-1809: Telnet Client +I, [2020-03-06T13:25:09.105936 #18536] INFO -- py3-windows-server-2019-1809: old: +I, [2020-03-06T13:25:09.106314 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.106728 #18536] INFO -- py3-windows-server-2019-1809: ID: windows.module.system.reboot +I, [2020-03-06T13:25:09.107188 #18536] INFO -- py3-windows-server-2019-1809: Function: module.run +I, [2020-03-06T13:25:09.107541 #18536] INFO -- py3-windows-server-2019-1809: Result: True +I, [2020-03-06T13:25:09.107980 #18536] INFO -- py3-windows-server-2019-1809: Comment: system.reboot: True +I, [2020-03-06T13:25:09.108488 #18536] INFO -- py3-windows-server-2019-1809: Started: 10:25:08.025183 +I, [2020-03-06T13:25:09.108904 #18536] INFO -- py3-windows-server-2019-1809: Duration: 234.566 ms +I, [2020-03-06T13:25:09.109335 #18536] INFO -- py3-windows-server-2019-1809: Changes: +I, [2020-03-06T13:25:09.109677 #18536] INFO -- py3-windows-server-2019-1809: ---------- +I, [2020-03-06T13:25:09.110013 #18536] INFO -- py3-windows-server-2019-1809: system.reboot: +I, [2020-03-06T13:25:09.110317 #18536] INFO -- py3-windows-server-2019-1809: True +I, [2020-03-06T13:25:09.110609 #18536] INFO -- py3-windows-server-2019-1809: +I, [2020-03-06T13:25:09.110925 #18536] INFO -- py3-windows-server-2019-1809: Summary for local +I, [2020-03-06T13:25:09.111254 #18536] INFO -- py3-windows-server-2019-1809: ------------- +I, [2020-03-06T13:25:09.111555 #18536] INFO -- py3-windows-server-2019-1809: Succeeded: 20 (changed=20) +I, [2020-03-06T13:25:09.111907 #18536] INFO -- py3-windows-server-2019-1809: Failed: 0 +I, [2020-03-06T13:25:09.112277 #18536] INFO -- py3-windows-server-2019-1809: ------------- +I, [2020-03-06T13:25:09.112580 #18536] INFO -- py3-windows-server-2019-1809: Total states run: 20 +I, [2020-03-06T13:25:09.112950 #18536] INFO -- py3-windows-server-2019-1809: Total run time: 192.005 s +I, [2020-03-06T13:25:09.135499 #18536] INFO -- py3-windows-server-2019-1809: Downloading files from +I, [2020-03-06T13:25:09.289175 #18536] INFO -- py3-windows-server-2019-1809: Finished converging (5m12.84s). +I, [2020-03-06T13:25:09.289379 #18536] INFO -- py3-windows-server-2019-1809: -----> Setting up ... +I, [2020-03-06T13:25:09.291733 #18536] INFO -- py3-windows-server-2019-1809: Finished setting up (0m0.00s). +I, [2020-03-06T13:25:09.291903 #18536] INFO -- py3-windows-server-2019-1809: -----> Verifying ... +I, [2020-03-06T13:25:10.368779 #18536] INFO -- py3-windows-server-2019-1809: Loaded default +I, [2020-03-06T13:25:49.801745 #18536] INFO -- py3-windows-server-2019-1809: Finished verifying (0m40.50s). +I, [2020-03-06T13:25:49.801933 #18536] INFO -- py3-windows-server-2019-1809: Finished testing (7m49.33s). +I, [2020-03-06T13:25:49.803495 #18536] INFO -- py3-windows-server-2019-1809: -----> Destroying ... +I, [2020-03-06T13:25:58.443585 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Forcing shutdown of VM... +I, [2020-03-06T13:26:00.095443 #18536] INFO -- py3-windows-server-2019-1809: ==> default: Destroying VM and associated drives... +I, [2020-03-06T13:26:00.781084 #18536] INFO -- py3-windows-server-2019-1809: Vagrant instance destroyed. +I, [2020-03-06T13:26:00.782653 #18536] INFO -- py3-windows-server-2019-1809: Finished destroying (0m10.98s). diff --git a/test/results/py3-windows-server-2019-1809.log b/test/results/py3-windows-server-2019-1809.log index d95f7e0..4be4ccb 100644 --- a/test/results/py3-windows-server-2019-1809.log +++ b/test/results/py3-windows-server-2019-1809.log @@ -1,15 +1,13 @@ -Wed Mar 4 15:16:02 EST 2020 -commit 83df63b728d6440d0a2e75a16942f0c1d8916fb0 +Fri Mar 6 13:17:39 EST 2020 +commit 52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e Author: Peter Mudd -Date: Mon Mar 2 12:13:52 2020 -0500 +Date: Fri Mar 6 12:43:24 2020 -0500 - feat: convert `template-formula` to `windows-formula` - - BREAKING CHANGE: changed all state names and ids + feat: support saltstack 3000 CURRENT BRANCH COMMIT ID -83df63b728d6440d0a2e75a16942f0c1d8916fb0 +52abd5e1e609560fb2d7cf5f23a532e0fe0bbd0e CURRENT RELEASE TAG -v1.0.1 +v1.0.0 -----> Starting Test Kitchen (v2.3.4) -----> Cleaning up any prior instances of -----> Destroying ... @@ -20,7 +18,7 @@ v1.0.1 ==> default: Cloning VM... ==> default: Matching MAC address for NAT networking... ==> default: Checking if box 'StefanScherer/windows_2019' version '2020.02.12' is up to date... - ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2019-1809-c859c6ff-bf34-4829-9058-babf0bd3b34d + ==> default: Setting the name of the VM: kitchen-windows-formula-py3-windows-server-2019-1809-25b7de8d-6f8c-4539-8e3f-df8d23c0f4d3 ==> default: Clearing any previously set network interfaces... ==> default: Preparing network interfaces based on configuration... default: Adapter 1: nat @@ -44,7 +42,7 @@ v1.0.1 [WinRM] Established Vagrant instance created. - Finished creating (1m52.18s). + Finished creating (1m55.97s). -----> Converging ... Preparing files for transfer Preparing salt-minion @@ -60,12 +58,12 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:18 PM temp - Downloading Salt minion installer Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe + d----- 3/6/2020 10:19 AM temp + Downloading Salt minion installer Salt-Minion-3000-Py3-AMD64-Setup.exe Installing Salt minion Starting the Salt minion service Salt minion successfully installed - You asked for latest and you have 2019.2.3 installed, sweet! + You asked for latest and you have 3000 installed, sweet! @@ -75,7 +73,7 @@ v1.0.1 Mode LastWriteTime Length Name ---- ------------- ------ ---- - d----- 3/4/2020 12:19 PM kitchen + d----- 3/6/2020 10:21 AM kitchen Transferring files to @@ -88,18 +86,16 @@ v1.0.1 Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') [ERROR ] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') - [ERROR ] {'pkg.refresh_db': {'success': 0, 'total': 0, 'failed': 0}} - [WARNING ] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) @@ -115,8 +111,8 @@ v1.0.1 Name: saltstack1 Result: True Comment: The current hostname is 'vagrant', but will be changed to 'saltstack1' on the next reboot - Started: 12:19:31.686143 - Duration: 110.026 ms + Started: 10:21:55.893201 + Duration: 144.035 ms Changes: ---------- hostname: @@ -127,8 +123,8 @@ v1.0.1 Name: Saltstack Computer Description Result: True Comment: Computer description successfully changed to 'Saltstack Computer Description' - Started: 12:19:31.796169 - Duration: 3142.763 ms + Started: 10:21:56.037236 + Duration: 2606.996 ms Changes: ---------- new: @@ -140,8 +136,8 @@ v1.0.1 Name: America/New_York Result: True Comment: Set timezone America/New_York - Started: 12:19:34.954543 - Duration: 47.401 ms + Started: 10:21:58.690597 + Duration: 30.721 ms Changes: ---------- timezone: @@ -151,8 +147,8 @@ v1.0.1 Function: module.run Result: True Comment: environ.items: Success - Started: 12:19:35.001944 - Duration: 0.0 ms + Started: 10:21:58.738965 + Duration: 14.056 ms Changes: ---------- environ.items: @@ -240,8 +236,8 @@ v1.0.1 Function: module.run Result: True Comment: user.current: VAGRANT\vagrant - Started: 12:19:35.027619 - Duration: 5.567 ms + Started: 10:21:58.753021 + Duration: 35.694 ms Changes: ---------- user.current: @@ -250,21 +246,21 @@ v1.0.1 ID: windows.module.status.uptime Function: module.run Result: True - Comment: status.uptime: 0:01:55.064059 - Started: 12:19:35.033186 - Duration: 30.873 ms + Comment: status.uptime: 0:02:38.816023 + Started: 10:21:58.788715 + Duration: 27.308 ms Changes: ---------- status.uptime: - 0:01:55.064059 + 0:02:38.816023 ---------- ID: windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 Function: reg.present Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:19:35.064059 - Duration: 8362.757 ms + Started: 10:21:58.816023 + Duration: 19549.321 ms Changes: ---------- reg: @@ -293,8 +289,8 @@ v1.0.1 Name: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 Result: True Comment: Added HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 to HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 - Started: 12:19:43.426816 - Duration: 281.374 ms + Started: 10:22:18.365344 + Duration: 313.466 ms Changes: ---------- reg: @@ -323,8 +319,8 @@ v1.0.1 Name: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng Result: True Comment: https://github.com/saltstack/salt-winrepo-ng/archive/master.zip extracted to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\, due to absence of one or more files/dirs - Started: 12:19:43.708190 - Duration: 922.257 ms + Started: 10:22:18.678810 + Duration: 1111.338 ms Changes: ---------- directories_created: @@ -693,8 +689,8 @@ v1.0.1 Function: module.run Result: True Comment: file.rename: True - Started: 12:19:44.630447 - Duration: 0.0 ms + Started: 10:22:19.790148 + Duration: 15.638 ms Changes: ---------- file.rename: @@ -703,10 +699,9 @@ v1.0.1 ID: pkg.refresh_db Function: module.run Result: True - Comment: Attempt 1: Returned a result of "False", with the following comment: "check_cmd determined the state failed" - check_cmd determined the state succeeded - Started: 12:19:44.646596 - Duration: 17504.513 ms + Comment: check_cmd determined the state succeeded + Started: 10:22:19.805786 + Duration: 18048.366 ms Changes: ---------- pkg.refresh_db: @@ -718,54 +713,54 @@ v1.0.1 total: 298 ---------- - ID: 7zip + ID: kdiff3 Function: pkg.installed Result: True - Comment: The following packages were installed/updated: 7zip=18.06.00.0 - Started: 12:20:02.132861 - Duration: 3733.203 ms + Comment: The following packages were installed/updated: kdiff3 + Started: 10:22:37.872675 + Duration: 8114.683 ms Changes: ---------- - 7zip: + kdiff3: ---------- new: - 18.06.00.0 + Not Found old: ---------- - ID: git + ID: 7zip Function: pkg.installed Result: True - Comment: The following packages were installed/updated: git - Started: 12:20:05.882622 - Duration: 30459.783 ms + Comment: The following packages were installed/updated: 7zip=18.06.00.0 + Started: 10:22:46.172998 + Duration: 19974.843 ms Changes: ---------- - git: + 7zip: ---------- new: - 2.23.0.windows.1 + 18.06.00.0 old: ---------- - ID: kdiff3 + ID: git Function: pkg.installed Result: True - Comment: The following packages were installed/updated: kdiff3 - Started: 12:20:36.359520 - Duration: 11249.646 ms + Comment: The following packages were installed/updated: git + Started: 10:23:06.241586 + Duration: 43455.558 ms Changes: ---------- - kdiff3: + git: ---------- new: - Not Found + 2.23.0.windows.1 old: ---------- ID: windows_environment.refresh.path Function: module.run Result: True Comment: windows_environment.refresh: Success - Started: 12:20:47.625101 - Duration: 47.579 ms + Started: 10:23:49.697144 + Duration: 62.467 ms Changes: ---------- windows_environment.refresh: @@ -833,8 +828,8 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder - Started: 12:20:47.672680 - Duration: 25243.234 ms + Started: 10:23:49.759611 + Duration: 31596.291 ms Changes: ---------- chocolatey.bootstrap: @@ -873,39 +868,39 @@ v1.0.1 Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder ---------- - ID: windows.system.packages.chocolatey.notepadplusplus + ID: windows.system.packages.chocolatey.windirstat Function: chocolatey.installed - Name: notepadplusplus + Name: windirstat Result: True Comment: - Started: 12:21:12.915914 - Duration: 12441.368 ms + Started: 10:24:21.355902 + Duration: 10669.45 ms Changes: ---------- - notepadplusplus: - ---------- - new: - - 7.8.4 - old: - notepadplusplus.install: + windirstat: ---------- new: - - 7.8.4 + - 1.1.2.20161210 old: ---------- - ID: windows.system.packages.chocolatey.windirstat + ID: windows.system.packages.chocolatey.notepadplusplus Function: chocolatey.installed - Name: windirstat + Name: notepadplusplus Result: True Comment: - Started: 12:21:25.372429 - Duration: 8432.072 ms + Started: 10:24:32.025352 + Duration: 11140.145 ms Changes: ---------- - windirstat: + notepadplusplus: ---------- new: - - 1.1.2.20161210 + - 7.8.5 + old: + notepadplusplus.install: + ---------- + new: + - 7.8.5 old: ---------- ID: windows.system.server.features.installed.telnet-client @@ -915,8 +910,8 @@ v1.0.1 Comment: Installed the following: - Telnet-Client - telnet-client - Started: 12:21:33.804501 - Duration: 26238.721 ms + Started: 10:24:43.165497 + Duration: 24859.686 ms Changes: ---------- Telnet-Client: @@ -929,8 +924,8 @@ v1.0.1 Function: module.run Result: True Comment: system.reboot: True - Started: 12:22:00.043222 - Duration: 237.886 ms + Started: 10:25:08.025183 + Duration: 234.566 ms Changes: ---------- system.reboot: @@ -942,9 +937,9 @@ v1.0.1 Failed: 0 ------------- Total states run: 20 - Total run time: 148.491 s + Total run time: 192.005 s Downloading files from - Finished converging (3m45.42s). + Finished converging (5m12.84s). -----> Setting up ... Finished setting up (0m0.00s). -----> Verifying ... @@ -991,13 +986,13 @@ Target: winrm://vagrant@http://127.0.0.1:55985/wsman:3389 Profile Summary: 9 successful controls, 0 control failures, 1 control skipped Test Summary: 19 successful, 0 failures, 1 skipped - Finished verifying (0m39.49s). + Finished verifying (0m40.50s). + Finished testing (7m49.33s). -----> Destroying ... ==> default: Forcing shutdown of VM... ==> default: Destroying VM and associated drives... Vagrant instance destroyed. - Finished destroying (0m11.41s). - Finished testing (6m28.53s). ------> Test Kitchen is finished. (6m42.04s) + Finished destroying (0m10.98s). +-----> Test Kitchen is finished. (8m13.41s) KITCHEN TEST EXIT CODE 0 diff --git a/test/results/py3-windows-server-2019-1809.salt.log b/test/results/py3-windows-server-2019-1809.salt.log index a8164ce..26a6085 100755 --- a/test/results/py3-windows-server-2019-1809.salt.log +++ b/test/results/py3-windows-server-2019-1809.salt.log @@ -1,31 +1,31 @@ -2020-03-04 12:19:24,763 [salt.loader :747 ][DEBUG ][3760] Grains refresh requested. Refreshing grains. -2020-03-04 12:19:24,778 [salt.config :2190][DEBUG ][3760] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 12:19:24,778 [salt.config :2334][DEBUG ][3760] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 12:19:24,778 [salt.config :2190][DEBUG ][3760] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf -2020-03-04 12:19:28,581 [salt.pillar :57 ][DEBUG ][3760] Determining pillar cache -2020-03-04 12:19:28,627 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:28,627 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:28,643 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls -2020-03-04 12:19:28,643 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:19:28,659 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.016191720962524414 -2020-03-04 12:19:28,659 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: +2020-03-06 10:21:41,961 [salt.loader :770 ][DEBUG ][5108] Grains refresh requested. Refreshing grains. +2020-03-06 10:21:41,961 [salt.config :2111][DEBUG ][5108] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 10:21:41,961 [salt.config :2255][DEBUG ][5108] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 10:21:41,961 [salt.config :2111][DEBUG ][5108] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:21:49,976 [salt.pillar :57 ][DEBUG ][5108] Determining pillar cache +2020-03-06 10:21:50,039 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:21:50,057 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:21:50,072 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls +2020-03-06 10:21:50,072 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:21:50,089 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'jinja' renderer: 0.016127586364746094 +2020-03-06 10:21:50,089 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls: --- base: "*": - windows -2020-03-04 12:19:28,659 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:50,089 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:19:28,659 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:28,659 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded confirm_top.confirm_top -2020-03-04 12:19:28,659 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded compound_match.match -2020-03-04 12:19:28,659 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3760] compound_match: vagrant ? * -2020-03-04 12:19:28,675 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded glob_match.match -2020-03-04 12:19:28,675 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3760] compound_match vagrant ? "*" => "True" -2020-03-04 12:19:28,675 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls -2020-03-04 12:19:28,675 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] -2020-03-04 12:19:28,675 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:28,675 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: +2020-03-06 10:21:50,106 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\top.sls' using 'yaml' renderer: 0.017648935317993164 +2020-03-06 10:21:50,106 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded confirm_top.confirm_top +2020-03-06 10:21:50,117 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded compound_match.match +2020-03-06 10:21:50,117 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5108] compound_match: vagrant ? * +2020-03-06 10:21:50,132 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded glob_match.match +2020-03-06 10:21:50,132 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5108] compound_match vagrant ? "*" => "True" +2020-03-06 10:21:50,132 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls +2020-03-06 10:21:50,149 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\pillar', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\spm\\pillar'] +2020-03-06 10:21:50,149 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:50,149 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls: # -*- coding: utf-8 -*- # vim: ft=yaml --- @@ -427,283 +427,292 @@ windows: password_never_expires: false disallow_change_password: false -2020-03-04 12:19:28,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:50,165 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('windows', OrderedDict([('states', OrderedDict([('enabled', True), ('system', OrderedDict([('computer_desc', OrderedDict([('id', 'description'), ('enabled', True), ('name', 'Saltstack Computer Description'), ('require', ['windows.state.system.hostname.saltstack1'])])), ('hostname', OrderedDict([('name', 'saltstack1')]))])), ('timezone', OrderedDict([('system', OrderedDict([('name', 'America/New_York'), ('utc', False)]))])), ('wua', OrderedDict([('uptodate', OrderedDict([('enabled', False), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))]))])), ('modules', OrderedDict([('enabled', True), ('environ', OrderedDict([('items', OrderedDict([('enabled', True)]))])), ('system', OrderedDict([('reboot', OrderedDict([('enabled', True), ('timeout', 5), ('in_seconds', True), ('only_on_pending_reboot', True), ('wait_for_reboot', False), ('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"'), ('order', 'last')]))])), ('user', OrderedDict([('enabled', True), ('current', OrderedDict([('enabled', True), ('sam', True)]))])), ('status', OrderedDict([('uptime', OrderedDict([('enabled', True), ('human_readable', True), ('require', ['windows.module.user.current'])]))]))])), ('system', OrderedDict([('enabled', True), ('reboot', OrderedDict([('enabled', False), ('timeout_in_seconds', 10), ('only_on_pending_reboot', True)])), ('dsc', OrderedDict([('enabled', False), ('client', OrderedDict([('root', 'c:\\\\DSC\\\\')])), ('manifest', OrderedDict([('source', 'c:\\\\srv\\\\salt\\\\os_windows\\\\files\\\\dsc\\\\manifests\\\\'), ('configuration', 'Win10DSC')]))])), ('user', OrderedDict([('enabled', False), ('disable', OrderedDict([('Administrator', OrderedDict([('disable', False)])), ('Guest', OrderedDict([('disable', True)]))]))])), ('packages', OrderedDict([('enabled', True), ('always_install_latest_version', False), ('always_upgrade_to_latest_version', False), ('providers', OrderedDict([('enabled', False), ('installed', OrderedDict([('NuGet', None)]))])), ('powershell', OrderedDict([('modules', OrderedDict([('enabled', True), ('installed', OrderedDict([('PSDscResources', None), ('cChoco', None)]))]))])), ('chocolatey', OrderedDict([('enabled', True), ('installed', OrderedDict([('notepadplusplus', None), ('windirstat', OrderedDict([('version', '1.1.2.20161210')]))]))])), ('saltstack', OrderedDict([('enabled', True), ('installed', OrderedDict([('git', OrderedDict([('refresh_minion_env_path', True)])), ('7zip', OrderedDict([('version', '18.06.00.0'), ('refresh_minion_env_path', False)])), ('kdiff3', None)]))])), ('appx', OrderedDict([('enabled', True), ('provisioned', OrderedDict([('uninstalled', OrderedDict([('Microsoft.MicrosoftSolitaireCollection', None), ('Microsoft.Wallet', None), ('Microsoft.ZuneMusic', None), ('Microsoft.ZuneVideo', None), ('Microsoft.MixedReality.Portal', None)]))]))]))])), ('server', OrderedDict([('enabled', True), ('features', OrderedDict([('enabled', True), ('installed', OrderedDict([('telnet-client', None)]))]))])), ('desktop', OrderedDict([('enabled', True), ('optional_features', OrderedDict([('enabled', True), ('installed', OrderedDict([('TelnetClient', None)]))])), ('packages', OrderedDict([('enabled', True)]))]))])), ('system_old', OrderedDict([('enabled', True), ('timezone', 'America/New_York'), ('computer', OrderedDict([('enabled', True), ('hostname', 'saltstack1'), ('description', 'Saltstack Computer Description')])), ('wua', OrderedDict([('enabled', True), ('settings', OrderedDict([('enabled', True), ('level', 4), ('recommended', True), ('featured', False), ('elevated', True), ('msupdate', True), ('day', 'Everyday'), ('time', '01:00')])), ('uptodate', OrderedDict([('enabled', True), ('only_initial_build', True), ('software', True), ('drivers', True), ('skip_hidden', False), ('skip_mandatory', False), ('skip_reboot', False), ('categories', ['Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Update Rollups', 'Updates', 'Update Rollups', 'Windows Defender']), ('severities', ['Critical', 'Important'])]))])), ('user', OrderedDict([('enabled', False), ('create', OrderedDict([('saltuser1', OrderedDict([('enabled', True), ('password', 'P@55w0rd!'), ('fullname', 'User1 SaltStack'), ('description', 'SaltStack User1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Power Users', 'saltstack_users']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)])), ('saltadmin1', OrderedDict([('enabled', False), ('password', 'P@55w0rd!'), ('fullname', 'Admin1 SaltStack'), ('description', 'SaltStack Admin1'), ('home', '\\\\fileserver\\home\\foo'), ('homedrive', 'c:'), ('profile', '\\\\fileserver\\profiles\\foo'), ('logonscript', 'logonscript.ps1'), ('groups', ['Administrators', 'saltstack_administrators']), ('expiration_date', 'None'), ('expired', 'None'), ('account_disabled', False), ('unlock_account', True), ('password_never_expires', False), ('disallow_change_password', False)]))]))]))]))]))]) -2020-03-04 12:19:28,690 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015579462051391602 -2020-03-04 12:19:28,721 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:28,721 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:28,784 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded state.highstate -2020-03-04 12:19:28,784 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded direct_call.execute -2020-03-04 12:19:28,800 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded grains.get -2020-03-04 12:19:28,862 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded saltutil.is_running -2020-03-04 12:19:28,893 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded config.get -2020-03-04 12:19:28,893 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: test, ret: _|- -2020-03-04 12:19:28,924 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,189 [git.cmd :722 ][DEBUG ][3760] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) -2020-03-04 12:19:29,218 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,218 [salt.fileserver :502 ][DEBUG ][3760] Updating roots fileserver cache -2020-03-04 12:19:29,260 [salt.state :736 ][DEBUG ][3760] Gathering pillar data for state run -2020-03-04 12:19:29,260 [salt.state :750 ][DEBUG ][3760] Finished gathering pillar data for state run -2020-03-04 12:19:29,260 [salt.state :966 ][INFO ][3760] Loading fresh modules for state activity -2020-03-04 12:19:29,288 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:29,288 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:29,302 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' -2020-03-04 12:19:29,302 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' -2020-03-04 12:19:29,302 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' -2020-03-04 12:19:29,302 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:29,302 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'top.sls' -2020-03-04 12:19:29,302 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls -2020-03-04 12:19:29,317 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:29,345 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,345 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,345 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.02848529815673828 -2020-03-04 12:19:29,345 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: +2020-03-06 10:21:50,165 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\pillar\windows.sls' using 'yaml' renderer: 0.015878677368164062 +2020-03-06 10:21:50,227 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:21:50,227 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:21:50,816 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded state.highstate +2020-03-06 10:21:50,830 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded direct_call.execute +2020-03-06 10:21:50,846 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded grains.get +2020-03-06 10:21:50,971 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded saltutil.is_running +2020-03-06 10:21:51,096 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded config.get +2020-03-06 10:21:51,096 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: test, ret: _|- +2020-03-06 10:21:51,144 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:51,815 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:21:51,831 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:21:51,893 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:51,893 [salt.fileserver :502 ][DEBUG ][5108] Updating roots fileserver cache +2020-03-06 10:21:52,023 [salt.state :735 ][DEBUG ][5108] Gathering pillar data for state run +2020-03-06 10:21:52,023 [salt.state :749 ][DEBUG ][5108] Finished gathering pillar data for state run +2020-03-06 10:21:52,023 [salt.state :1014][INFO ][5108] Loading fresh modules for state activity +2020-03-06 10:21:52,097 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:21:52,097 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:21:52,097 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'top.sls' to resolve 'salt://top.sls' +2020-03-06 10:21:52,112 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' to resolve 'salt://top.sls' +2020-03-06 10:21:52,112 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://top.sls' +2020-03-06 10:21:52,112 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:52,128 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'top.sls' +2020-03-06 10:21:52,128 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls +2020-03-06 10:21:52,128 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:52,159 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,191 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,191 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'jinja' renderer: 0.06332707405090332 +2020-03-06 10:21:52,191 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls: --- base: "*": - windows -2020-03-04 12:19:29,345 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:52,191 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('base', OrderedDict([('*', ['windows'])]))]) -2020-03-04 12:19:29,345 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:29,359 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded confirm_top.confirm_top -2020-03-04 12:19:29,359 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded compound_match.match -2020-03-04 12:19:29,359 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][3760] compound_match: vagrant ? * -2020-03-04 12:19:29,359 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded glob_match.match -2020-03-04 12:19:29,359 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][3760] compound_match vagrant ? "*" => "True" -2020-03-04 12:19:29,359 [salt.fileclient :1368][DEBUG ][3760] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. -2020-03-04 12:19:29,359 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded saltutil.sync_all -2020-03-04 12:19:29,359 [salt.loaded.int.module.saltutil:968 ][DEBUG ][3760] Syncing all -2020-03-04 12:19:29,359 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' -2020-03-04 12:19:29,387 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,387 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,387 [salt.utils.extmods:90 ][INFO ][3760] Syncing clouds for environment 'base' -2020-03-04 12:19:29,387 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_clouds, for base) -2020-03-04 12:19:29,401 [salt.fileclient :234 ][INFO ][3760] Caching directory '_clouds/' for environment 'base' -2020-03-04 12:19:29,401 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,401 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' -2020-03-04 12:19:29,401 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' -2020-03-04 12:19:29,429 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,429 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,429 [salt.utils.extmods:90 ][INFO ][3760] Syncing beacons for environment 'base' -2020-03-04 12:19:29,429 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_beacons, for base) -2020-03-04 12:19:29,429 [salt.fileclient :234 ][INFO ][3760] Caching directory '_beacons/' for environment 'base' -2020-03-04 12:19:29,429 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,429 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' -2020-03-04 12:19:29,429 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' -2020-03-04 12:19:29,457 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,457 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,457 [salt.utils.extmods:90 ][INFO ][3760] Syncing modules for environment 'base' -2020-03-04 12:19:29,457 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_modules, for base) -2020-03-04 12:19:29,457 [salt.fileclient :234 ][INFO ][3760] Caching directory '_modules/' for environment 'base' -2020-03-04 12:19:29,457 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,472 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:19:29,472 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:19:29,472 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' -2020-03-04 12:19:29,472 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:29,472 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' -2020-03-04 12:19:29,472 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' -2020-03-04 12:19:29,472 [salt.utils.extmods:119 ][INFO ][3760] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' -2020-03-04 12:19:29,486 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' -2020-03-04 12:19:29,499 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,499 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,499 [salt.utils.extmods:90 ][INFO ][3760] Syncing states for environment 'base' -2020-03-04 12:19:29,499 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_states, for base) -2020-03-04 12:19:29,499 [salt.fileclient :234 ][INFO ][3760] Caching directory '_states/' for environment 'base' -2020-03-04 12:19:29,499 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,514 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' -2020-03-04 12:19:29,514 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' -2020-03-04 12:19:29,528 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,541 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,541 [salt.utils.extmods:90 ][INFO ][3760] Syncing sdb for environment 'base' -2020-03-04 12:19:29,541 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_sdb, for base) -2020-03-04 12:19:29,541 [salt.fileclient :234 ][INFO ][3760] Caching directory '_sdb/' for environment 'base' -2020-03-04 12:19:29,541 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,541 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' -2020-03-04 12:19:29,541 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' -2020-03-04 12:19:29,555 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,570 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,570 [salt.utils.extmods:90 ][INFO ][3760] Syncing grains for environment 'base' -2020-03-04 12:19:29,570 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_grains, for base) -2020-03-04 12:19:29,570 [salt.fileclient :234 ][INFO ][3760] Caching directory '_grains/' for environment 'base' -2020-03-04 12:19:29,570 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,570 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' -2020-03-04 12:19:29,570 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' -2020-03-04 12:19:29,584 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,598 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,598 [salt.utils.extmods:90 ][INFO ][3760] Syncing renderers for environment 'base' -2020-03-04 12:19:29,598 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_renderers, for base) -2020-03-04 12:19:29,598 [salt.fileclient :234 ][INFO ][3760] Caching directory '_renderers/' for environment 'base' -2020-03-04 12:19:29,598 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,598 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' -2020-03-04 12:19:29,598 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' -2020-03-04 12:19:29,612 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,626 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,626 [salt.utils.extmods:90 ][INFO ][3760] Syncing returners for environment 'base' -2020-03-04 12:19:29,626 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_returners, for base) -2020-03-04 12:19:29,626 [salt.fileclient :234 ][INFO ][3760] Caching directory '_returners/' for environment 'base' -2020-03-04 12:19:29,626 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,626 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' -2020-03-04 12:19:29,626 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' -2020-03-04 12:19:29,654 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,654 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,654 [salt.utils.extmods:90 ][INFO ][3760] Syncing output for environment 'base' -2020-03-04 12:19:29,654 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_output, for base) -2020-03-04 12:19:29,654 [salt.fileclient :234 ][INFO ][3760] Caching directory '_output/' for environment 'base' -2020-03-04 12:19:29,654 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,654 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' -2020-03-04 12:19:29,654 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' -2020-03-04 12:19:29,683 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,683 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,683 [salt.utils.extmods:90 ][INFO ][3760] Syncing utils for environment 'base' -2020-03-04 12:19:29,683 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_utils, for base) -2020-03-04 12:19:29,683 [salt.fileclient :234 ][INFO ][3760] Caching directory '_utils/' for environment 'base' -2020-03-04 12:19:29,683 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,683 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' -2020-03-04 12:19:29,698 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' -2020-03-04 12:19:29,711 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,711 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,711 [salt.utils.extmods:90 ][INFO ][3760] Syncing log_handlers for environment 'base' -2020-03-04 12:19:29,711 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_log_handlers, for base) -2020-03-04 12:19:29,711 [salt.fileclient :234 ][INFO ][3760] Caching directory '_log_handlers/' for environment 'base' -2020-03-04 12:19:29,725 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,725 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' -2020-03-04 12:19:29,725 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' -2020-03-04 12:19:29,738 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,738 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,753 [salt.utils.extmods:90 ][INFO ][3760] Syncing proxy for environment 'base' -2020-03-04 12:19:29,753 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_proxy, for base) -2020-03-04 12:19:29,753 [salt.fileclient :234 ][INFO ][3760] Caching directory '_proxy/' for environment 'base' -2020-03-04 12:19:29,753 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,753 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' -2020-03-04 12:19:29,753 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' -2020-03-04 12:19:29,767 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,781 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,781 [salt.utils.extmods:90 ][INFO ][3760] Syncing engines for environment 'base' -2020-03-04 12:19:29,781 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_engines, for base) -2020-03-04 12:19:29,781 [salt.fileclient :234 ][INFO ][3760] Caching directory '_engines/' for environment 'base' -2020-03-04 12:19:29,781 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,781 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' -2020-03-04 12:19:29,781 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' -2020-03-04 12:19:29,795 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,809 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,809 [salt.utils.extmods:90 ][INFO ][3760] Syncing thorium for environment 'base' -2020-03-04 12:19:29,809 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_thorium, for base) -2020-03-04 12:19:29,809 [salt.fileclient :234 ][INFO ][3760] Caching directory '_thorium/' for environment 'base' -2020-03-04 12:19:29,809 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,809 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' -2020-03-04 12:19:29,809 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' -2020-03-04 12:19:29,840 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,840 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,840 [salt.utils.extmods:90 ][INFO ][3760] Syncing serializers for environment 'base' -2020-03-04 12:19:29,840 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_serializers, for base) -2020-03-04 12:19:29,840 [salt.fileclient :234 ][INFO ][3760] Caching directory '_serializers/' for environment 'base' -2020-03-04 12:19:29,840 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,856 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' -2020-03-04 12:19:29,856 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' -2020-03-04 12:19:29,873 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,904 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,904 [salt.utils.extmods:90 ][INFO ][3760] Syncing matchers for environment 'base' -2020-03-04 12:19:29,904 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_matchers, for base) -2020-03-04 12:19:29,904 [salt.fileclient :234 ][INFO ][3760] Caching directory '_matchers/' for environment 'base' -2020-03-04 12:19:29,904 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,904 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' -2020-03-04 12:19:29,904 [salt.utils.extmods:79 ][INFO ][3760] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' -2020-03-04 12:19:29,919 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:29,934 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:29,934 [salt.utils.extmods:90 ][INFO ][3760] Syncing pillar for environment 'base' -2020-03-04 12:19:29,934 [salt.utils.extmods:94 ][INFO ][3760] Loading cache from salt://_pillar, for base) -2020-03-04 12:19:29,934 [salt.fileclient :234 ][INFO ][3760] Caching directory '_pillar/' for environment 'base' -2020-03-04 12:19:29,934 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:29,934 [salt.utils.extmods:109 ][DEBUG ][3760] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' -2020-03-04 12:19:29,934 [salt.state :1000][DEBUG ][3760] Refreshing modules... -2020-03-04 12:19:29,950 [salt.state :966 ][INFO ][3760] Loading fresh modules for state activity -2020-03-04 12:19:29,996 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:29,996 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:29,996 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows.sls' in saltenv 'base' -2020-03-04 12:19:29,996 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:19:29,996 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' -2020-03-04 12:19:29,996 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' -2020-03-04 12:19:29,996 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:29,996 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' -2020-03-04 12:19:30,014 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls -2020-03-04 12:19:30,014 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,014 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,014 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,014 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' -2020-03-04 12:19:30,014 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,029 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' -2020-03-04 12:19:30,045 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,045 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,045 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,045 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,045 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' -2020-03-04 12:19:30,060 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,060 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,060 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,060 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,060 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' -2020-03-04 12:19:30,076 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,076 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,076 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,076 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,076 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' -2020-03-04 12:19:30,091 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,091 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,091 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,091 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,091 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' -2020-03-04 12:19:30,106 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,106 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,106 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,106 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,106 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' -2020-03-04 12:19:30,123 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,123 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,123 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,123 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,123 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' -2020-03-04 12:19:30,138 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded config.get -2020-03-04 12:19:30,138 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded grains.filter_by -2020-03-04 12:19:30,138 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.12485098838806152 -2020-03-04 12:19:30,153 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: +2020-03-06 10:21:52,191 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\top.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:52,205 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded confirm_top.confirm_top +2020-03-06 10:21:52,205 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded compound_match.match +2020-03-06 10:21:52,205 [salt.loaded.int.matchers.compound_match:35 ][DEBUG ][5108] compound_match: vagrant ? * +2020-03-06 10:21:52,222 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded glob_match.match +2020-03-06 10:21:52,222 [salt.loaded.int.matchers.compound_match:108 ][DEBUG ][5108] compound_match vagrant ? "*" => "True" +2020-03-06 10:21:52,222 [salt.fileclient :1376][DEBUG ][5108] The _ext_nodes master function has been renamed to _master_tops. To ensure compatibility when using older Salt masters we will continue to invoke the function as _ext_nodes until the Magnesium release. +2020-03-06 10:21:52,222 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded saltutil.sync_all +2020-03-06 10:21:52,236 [salt.loaded.int.module.saltutil:1009][DEBUG ][5108] Syncing all +2020-03-06 10:21:52,236 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\clouds' +2020-03-06 10:21:52,270 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,284 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,284 [salt.utils.extmods:90 ][INFO ][5108] Syncing clouds for environment 'base' +2020-03-06 10:21:52,284 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_clouds, for base) +2020-03-06 10:21:52,284 [salt.fileclient :234 ][INFO ][5108] Caching directory '_clouds/' for environment 'base' +2020-03-06 10:21:52,299 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,299 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_clouds' +2020-03-06 10:21:52,316 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\beacons' +2020-03-06 10:21:52,347 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,362 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,362 [salt.utils.extmods:90 ][INFO ][5108] Syncing beacons for environment 'base' +2020-03-06 10:21:52,362 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_beacons, for base) +2020-03-06 10:21:52,362 [salt.fileclient :234 ][INFO ][5108] Caching directory '_beacons/' for environment 'base' +2020-03-06 10:21:52,362 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,377 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_beacons' +2020-03-06 10:21:52,377 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules' +2020-03-06 10:21:52,410 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,425 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,425 [salt.utils.extmods:90 ][INFO ][5108] Syncing modules for environment 'base' +2020-03-06 10:21:52,425 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_modules, for base) +2020-03-06 10:21:52,425 [salt.fileclient :234 ][INFO ][5108] Caching directory '_modules/' for environment 'base' +2020-03-06 10:21:52,440 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,440 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path '_modules/windows_environment/__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:21:52,440 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to resolve 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:21:52,440 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://_modules/windows_environment/__init__.py' +2020-03-06 10:21:52,440 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:52,456 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** '_modules/windows_environment/__init__.py' +2020-03-06 10:21:52,456 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules' +2020-03-06 10:21:52,471 [salt.utils.extmods:119 ][INFO ][5108] Copying 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_modules\windows_environment\__init__.py' to 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py' +2020-03-06 10:21:52,471 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\states' +2020-03-06 10:21:52,504 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,519 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,519 [salt.utils.extmods:90 ][INFO ][5108] Syncing states for environment 'base' +2020-03-06 10:21:52,519 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_states, for base) +2020-03-06 10:21:52,534 [salt.fileclient :234 ][INFO ][5108] Caching directory '_states/' for environment 'base' +2020-03-06 10:21:52,534 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,534 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_states' +2020-03-06 10:21:52,534 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\sdb' +2020-03-06 10:21:52,570 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,581 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,602 [salt.utils.extmods:90 ][INFO ][5108] Syncing sdb for environment 'base' +2020-03-06 10:21:52,602 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_sdb, for base) +2020-03-06 10:21:52,602 [salt.fileclient :234 ][INFO ][5108] Caching directory '_sdb/' for environment 'base' +2020-03-06 10:21:52,602 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,602 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_sdb' +2020-03-06 10:21:52,611 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\grains' +2020-03-06 10:21:52,646 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,661 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,661 [salt.utils.extmods:90 ][INFO ][5108] Syncing grains for environment 'base' +2020-03-06 10:21:52,661 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_grains, for base) +2020-03-06 10:21:52,661 [salt.fileclient :234 ][INFO ][5108] Caching directory '_grains/' for environment 'base' +2020-03-06 10:21:52,674 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,674 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_grains' +2020-03-06 10:21:52,674 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\renderers' +2020-03-06 10:21:52,695 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,722 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,722 [salt.utils.extmods:90 ][INFO ][5108] Syncing renderers for environment 'base' +2020-03-06 10:21:52,722 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_renderers, for base) +2020-03-06 10:21:52,722 [salt.fileclient :234 ][INFO ][5108] Caching directory '_renderers/' for environment 'base' +2020-03-06 10:21:52,722 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,722 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_renderers' +2020-03-06 10:21:52,737 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\returners' +2020-03-06 10:21:52,769 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,783 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,783 [salt.utils.extmods:90 ][INFO ][5108] Syncing returners for environment 'base' +2020-03-06 10:21:52,783 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_returners, for base) +2020-03-06 10:21:52,783 [salt.fileclient :234 ][INFO ][5108] Caching directory '_returners/' for environment 'base' +2020-03-06 10:21:52,783 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,783 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_returners' +2020-03-06 10:21:52,783 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\output' +2020-03-06 10:21:52,815 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,831 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,831 [salt.utils.extmods:90 ][INFO ][5108] Syncing output for environment 'base' +2020-03-06 10:21:52,831 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_output, for base) +2020-03-06 10:21:52,846 [salt.fileclient :234 ][INFO ][5108] Caching directory '_output/' for environment 'base' +2020-03-06 10:21:52,846 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,846 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_output' +2020-03-06 10:21:52,846 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\utils' +2020-03-06 10:21:52,878 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,893 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,893 [salt.utils.extmods:90 ][INFO ][5108] Syncing utils for environment 'base' +2020-03-06 10:21:52,893 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_utils, for base) +2020-03-06 10:21:52,893 [salt.fileclient :234 ][INFO ][5108] Caching directory '_utils/' for environment 'base' +2020-03-06 10:21:52,893 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,893 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_utils' +2020-03-06 10:21:52,909 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\log_handlers' +2020-03-06 10:21:52,925 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:52,940 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:52,940 [salt.utils.extmods:90 ][INFO ][5108] Syncing log_handlers for environment 'base' +2020-03-06 10:21:52,955 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_log_handlers, for base) +2020-03-06 10:21:52,955 [salt.fileclient :234 ][INFO ][5108] Caching directory '_log_handlers/' for environment 'base' +2020-03-06 10:21:52,955 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=0 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:52,955 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_log_handlers' +2020-03-06 10:21:52,955 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\executors' +2020-03-06 10:21:52,987 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:53,003 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:53,003 [salt.utils.extmods:90 ][INFO ][5108] Syncing executors for environment 'base' +2020-03-06 10:21:53,003 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_executors, for base) +2020-03-06 10:21:53,003 [salt.fileclient :234 ][INFO ][5108] Caching directory '_executors/' for environment 'base' +2020-03-06 10:21:53,003 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:53,003 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_executors' +2020-03-06 10:21:53,018 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\proxy' +2020-03-06 10:21:53,035 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:53,065 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:53,065 [salt.utils.extmods:90 ][INFO ][5108] Syncing proxy for environment 'base' +2020-03-06 10:21:53,065 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_proxy, for base) +2020-03-06 10:21:53,065 [salt.fileclient :234 ][INFO ][5108] Caching directory '_proxy/' for environment 'base' +2020-03-06 10:21:53,065 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:53,080 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_proxy' +2020-03-06 10:21:53,080 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\engines' +2020-03-06 10:21:53,111 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:53,111 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:53,136 [salt.utils.extmods:90 ][INFO ][5108] Syncing engines for environment 'base' +2020-03-06 10:21:53,136 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_engines, for base) +2020-03-06 10:21:53,136 [salt.fileclient :234 ][INFO ][5108] Caching directory '_engines/' for environment 'base' +2020-03-06 10:21:53,136 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:53,143 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_engines' +2020-03-06 10:21:53,143 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\thorium' +2020-03-06 10:21:53,174 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:53,174 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:53,190 [salt.utils.extmods:90 ][INFO ][5108] Syncing thorium for environment 'base' +2020-03-06 10:21:53,190 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_thorium, for base) +2020-03-06 10:21:53,190 [salt.fileclient :234 ][INFO ][5108] Caching directory '_thorium/' for environment 'base' +2020-03-06 10:21:53,190 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:53,190 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_thorium' +2020-03-06 10:21:53,190 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\serializers' +2020-03-06 10:21:53,223 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:53,238 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:53,238 [salt.utils.extmods:90 ][INFO ][5108] Syncing serializers for environment 'base' +2020-03-06 10:21:53,238 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_serializers, for base) +2020-03-06 10:21:53,238 [salt.fileclient :234 ][INFO ][5108] Caching directory '_serializers/' for environment 'base' +2020-03-06 10:21:53,238 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:53,238 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_serializers' +2020-03-06 10:21:53,238 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\matchers' +2020-03-06 10:21:53,268 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:53,284 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:53,284 [salt.utils.extmods:90 ][INFO ][5108] Syncing matchers for environment 'base' +2020-03-06 10:21:53,284 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_matchers, for base) +2020-03-06 10:21:53,284 [salt.fileclient :234 ][INFO ][5108] Caching directory '_matchers/' for environment 'base' +2020-03-06 10:21:53,284 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:53,284 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_matchers' +2020-03-06 10:21:53,299 [salt.utils.extmods:79 ][INFO ][5108] Creating module dir 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\pillar' +2020-03-06 10:21:53,317 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:53,331 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:53,331 [salt.utils.extmods:90 ][INFO ][5108] Syncing pillar for environment 'base' +2020-03-06 10:21:53,331 [salt.utils.extmods:94 ][INFO ][5108] Loading cache from salt://_pillar, for base) +2020-03-06 10:21:53,331 [salt.fileclient :234 ][INFO ][5108] Caching directory '_pillar/' for environment 'base' +2020-03-06 10:21:53,331 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=1 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:53,346 [salt.utils.extmods:109 ][DEBUG ][5108] Local cache dir: 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\_pillar' +2020-03-06 10:21:53,346 [salt.state :1048][DEBUG ][5108] Refreshing modules... +2020-03-06 10:21:53,380 [salt.state :1014][INFO ][5108] Loading fresh modules for state activity +2020-03-06 10:21:53,425 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:21:53,425 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:21:53,425 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows.sls' in saltenv 'base' +2020-03-06 10:21:53,440 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:21:53,440 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' to resolve 'salt://windows/init.sls' +2020-03-06 10:21:53,440 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/init.sls' +2020-03-06 10:21:53,440 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,440 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/init.sls' +2020-03-06 10:21:53,456 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls +2020-03-06 10:21:53,456 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:53,472 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:53,472 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:53,472 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/map.jinja' +2020-03-06 10:21:53,472 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,486 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/map.jinja' +2020-03-06 10:21:53,503 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:53,503 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:53,503 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/defaults.yaml' +2020-03-06 10:21:53,503 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,519 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/defaults.yaml' +2020-03-06 10:21:53,519 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:53,519 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:53,519 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:53,534 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,534 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/osarchmap.yaml' +2020-03-06 10:21:53,534 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:53,550 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:53,550 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:53,550 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,550 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/osfamilymap.yaml' +2020-03-06 10:21:53,565 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:53,565 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:53,565 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osmap.yaml' +2020-03-06 10:21:53,565 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,581 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/osmap.yaml' +2020-03-06 10:21:53,581 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:53,581 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:53,581 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:53,596 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,596 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/osfingermap.yaml' +2020-03-06 10:21:53,596 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:53,612 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:53,612 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:53,612 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,612 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/osversionmap.yaml' +2020-03-06 10:21:53,627 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded config.get +2020-03-06 10:21:53,627 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded grains.filter_by +2020-03-06 10:21:53,644 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'jinja' renderer: 0.18808507919311523 +2020-03-06 10:21:53,644 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .states - .modules - .system -2020-03-04 12:19:30,153 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:53,644 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.states', '.modules', '.system'])]) -2020-03-04 12:19:30,153 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,153 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:19:30,153 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' -2020-03-04 12:19:30,153 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' -2020-03-04 12:19:30,153 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,153 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' -2020-03-04 12:19:30,153 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls -2020-03-04 12:19:30,169 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,169 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:19:30,169 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:19:30,169 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' -2020-03-04 12:19:30,169 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,185 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' -2020-03-04 12:19:30,231 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,231 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,262 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,262 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,262 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,262 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,279 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,279 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,279 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,295 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,295 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,295 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,309 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,309 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,309 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.1407303810119629 -2020-03-04 12:19:30,326 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: +2020-03-06 10:21:53,644 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:53,644 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:21:53,644 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' to resolve 'salt://windows/states.sls' +2020-03-06 10:21:53,644 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/states.sls' +2020-03-06 10:21:53,660 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,660 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/states.sls' +2020-03-06 10:21:53,660 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls +2020-03-06 10:21:53,660 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:53,691 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:21:53,691 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:21:53,691 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/macros.jinja' +2020-03-06 10:21:53,691 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,706 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/macros.jinja' +2020-03-06 10:21:53,768 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:53,768 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:53,799 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:53,799 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:53,815 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:53,815 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:53,815 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:53,831 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:53,831 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:53,831 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:53,847 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:53,847 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:53,862 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:53,862 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:53,877 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'jinja' renderer: 0.21727275848388672 +2020-03-06 10:21:53,877 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -722,34 +731,34 @@ windows.state.timezone.system.America/New_York: -2020-03-04 12:19:30,326 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:53,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('windows.state.system.computer_desc.description', OrderedDict([('system.computer_desc', [OrderedDict([('name', 'Saltstack Computer Description')]), OrderedDict([('require', ['windows.state.system.hostname.saltstack1'])])])])), ('windows.state.system.hostname.saltstack1', OrderedDict([('system.hostname', [OrderedDict([('name', 'saltstack1')])])])), ('windows.state.timezone.system.America/New_York', OrderedDict([('timezone.system', [OrderedDict([('name', 'America/New_York')]), OrderedDict([('utc', False)])])]))]) -2020-03-04 12:19:30,326 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,326 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:19:30,326 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' -2020-03-04 12:19:30,326 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' -2020-03-04 12:19:30,326 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,326 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' -2020-03-04 12:19:30,342 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls -2020-03-04 12:19:30,342 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,342 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:19:30,342 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' -2020-03-04 12:19:30,388 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,388 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,404 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,404 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,421 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,421 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,421 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,421 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,421 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,421 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,434 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,434 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,434 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,434 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,450 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.10850143432617188 -2020-03-04 12:19:30,450 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: +2020-03-06 10:21:53,877 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\states.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:53,877 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:21:53,877 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' to resolve 'salt://windows/modules.sls' +2020-03-06 10:21:53,877 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/modules.sls' +2020-03-06 10:21:53,877 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:53,893 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/modules.sls' +2020-03-06 10:21:53,893 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls +2020-03-06 10:21:53,893 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:53,909 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:21:53,909 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\macros.jinja' to resolve 'salt://windows/macros.jinja' +2020-03-06 10:21:53,956 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:53,956 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:53,971 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:53,971 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:53,986 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:53,986 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:53,986 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:53,986 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:53,986 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:53,986 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,002 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,002 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,002 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,002 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,018 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'jinja' renderer: 0.12549376487731934 +2020-03-06 10:21:54,018 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -777,33 +786,33 @@ windows.module.status.uptime: - windows.module.user.current -2020-03-04 12:19:30,450 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('windows.module.environ.items', OrderedDict([('module.run', [OrderedDict([('environ.items', None)])])])), ('windows.module.system.reboot', OrderedDict([('module.run', [OrderedDict([('system.reboot', [OrderedDict([('timeout', 5)]), OrderedDict([('in_seconds', True)]), OrderedDict([('only_on_pending_reboot', True)]), OrderedDict([('wait_for_reboot', False)])])]), OrderedDict([('onlyif', 'powershell -command "if ($env:CI -imatch \'True\') {throw \'Is CI environment\'} else {exit 0}"')]), OrderedDict([('order', 'last')])])])), ('windows.module.user.current', OrderedDict([('module.run', [OrderedDict([('user.current', [OrderedDict([('sam', True)])])])])])), ('windows.module.status.uptime', OrderedDict([('module.run', [OrderedDict([('status.uptime', [OrderedDict([('human_readable', True)])])]), OrderedDict([('require', ['windows.module.user.current'])])])]))]) -2020-03-04 12:19:30,450 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,450 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system.sls' in saltenv 'base' -2020-03-04 12:19:30,450 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:19:30,450 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' -2020-03-04 12:19:30,450 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' -2020-03-04 12:19:30,450 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,467 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' -2020-03-04 12:19:30,467 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls -2020-03-04 12:19:30,467 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,467 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,482 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,482 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,497 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,514 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,514 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,514 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.04737257957458496 -2020-03-04 12:19:30,514 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: +2020-03-06 10:21:54,018 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\modules.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,018 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system.sls' in saltenv 'base' +2020-03-06 10:21:54,036 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:21:54,036 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' to resolve 'salt://windows/system/init.sls' +2020-03-06 10:21:54,036 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/init.sls' +2020-03-06 10:21:54,036 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,049 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/init.sls' +2020-03-06 10:21:54,049 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls +2020-03-06 10:21:54,049 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,049 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,066 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,082 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,082 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,082 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,082 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,096 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,096 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,096 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,096 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,096 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,096 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,111 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,111 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,111 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'jinja' renderer: 0.06202411651611328 +2020-03-06 10:21:54,111 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls # sls: windows.system windows system @@ -820,19 +829,19 @@ include: - .desktop -2020-03-04 12:19:30,514 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.packages', '.server', '.desktop'])]) -2020-03-04 12:19:30,529 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.014626264572143555 -2020-03-04 12:19:30,529 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' -2020-03-04 12:19:30,529 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:19:30,529 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' -2020-03-04 12:19:30,529 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' -2020-03-04 12:19:30,529 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,529 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' -2020-03-04 12:19:30,529 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls -2020-03-04 12:19:30,544 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,544 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:30,544 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: +2020-03-06 10:21:54,127 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,127 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/packages.sls' in saltenv 'base' +2020-03-06 10:21:54,127 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:21:54,127 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' to resolve 'salt://windows/system/packages/init.sls' +2020-03-06 10:21:54,127 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/init.sls' +2020-03-06 10:21:54,127 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,144 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/init.sls' +2020-03-06 10:21:54,144 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls +2020-03-06 10:21:54,144 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,144 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:54,144 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: @@ -841,67 +850,67 @@ include: - .powershell - .saltstack - .chocolatey -2020-03-04 12:19:30,544 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,144 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.appx', '.powershell', '.saltstack', '.chocolatey'])]) -2020-03-04 12:19:30,544 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,544 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' -2020-03-04 12:19:30,544 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:19:30,544 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:19:30,544 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' -2020-03-04 12:19:30,544 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,562 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' -2020-03-04 12:19:30,562 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls -2020-03-04 12:19:30,562 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,562 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:30,562 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: +2020-03-06 10:21:54,144 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,159 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/packages/appx.sls' in saltenv 'base' +2020-03-06 10:21:54,159 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:21:54,159 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' to resolve 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:21:54,159 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/init.sls' +2020-03-06 10:21:54,159 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,174 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/init.sls' +2020-03-06 10:21:54,174 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls +2020-03-06 10:21:54,174 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,174 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:54,174 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .remove-provisioned-apps -2020-03-04 12:19:30,562 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.remove-provisioned-apps'])]) -2020-03-04 12:19:30,562 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,562 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:19:30,562 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:19:30,577 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:19:30,577 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,577 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' -2020-03-04 12:19:30,577 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls -2020-03-04 12:19:30,577 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,577 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:30,577 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: +2020-03-06 10:21:54,174 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,174 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:21:54,190 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' to resolve 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:21:54,190 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:21:54,190 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,190 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/remove-provisioned-apps.sls' +2020-03-06 10:21:54,190 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls +2020-03-06 10:21:54,206 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,206 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:54,206 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .removed -2020-03-04 12:19:30,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,206 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.removed'])]) -2020-03-04 12:19:30,591 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.014651298522949219 -2020-03-04 12:19:30,591 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:19:30,591 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:19:30,591 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' -2020-03-04 12:19:30,591 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,591 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' -2020-03-04 12:19:30,591 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls -2020-03-04 12:19:30,591 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,607 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,607 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,627 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,627 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,627 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,627 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,641 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,655 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.0635836124420166 -2020-03-04 12:19:30,655 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: +2020-03-06 10:21:54,206 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\remove-provisioned-apps.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,206 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/appx/removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:21:54,206 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' to resolve 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:21:54,206 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/appx/removed.sls' +2020-03-06 10:21:54,221 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,221 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/appx/removed.sls' +2020-03-06 10:21:54,221 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls +2020-03-06 10:21:54,221 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,237 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,237 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,253 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,253 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,268 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,268 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,268 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,268 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,268 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,268 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,284 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,284 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,284 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,284 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,302 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'jinja' renderer: 0.08150267601013184 +2020-03-06 10:21:54,302 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -909,87 +918,87 @@ OrderedDict([('include', ['.removed'])]) -2020-03-04 12:19:30,655 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: {} -2020-03-04 12:19:30,655 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,655 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' -2020-03-04 12:19:30,655 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:19:30,671 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:19:30,671 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' -2020-03-04 12:19:30,671 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,671 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' -2020-03-04 12:19:30,671 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls -2020-03-04 12:19:30,671 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,671 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:30,671 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: +2020-03-06 10:21:54,302 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\appx\removed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,302 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/packages/powershell.sls' in saltenv 'base' +2020-03-06 10:21:54,302 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:21:54,315 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' to resolve 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:21:54,315 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/init.sls' +2020-03-06 10:21:54,315 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,315 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/init.sls' +2020-03-06 10:21:54,315 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls +2020-03-06 10:21:54,331 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,331 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:54,331 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .modules - .framework -2020-03-04 12:19:30,686 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.framework'])]) -2020-03-04 12:19:30,686 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,686 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' -2020-03-04 12:19:30,686 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:19:30,686 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:19:30,686 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:19:30,686 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,700 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' -2020-03-04 12:19:30,700 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls -2020-03-04 12:19:30,700 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,700 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:30,700 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: +2020-03-06 10:21:54,331 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,331 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/packages/powershell/framework.sls' in saltenv 'base' +2020-03-06 10:21:54,331 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:21:54,346 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:21:54,346 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:21:54,346 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,346 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/init.sls' +2020-03-06 10:21:54,346 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls +2020-03-06 10:21:54,361 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,361 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:54,361 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .v4_5 -2020-03-04 12:19:30,700 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,361 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.v4_5'])]) -2020-03-04 12:19:30,700 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,700 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' -2020-03-04 12:19:30,700 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:19:30,700 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:19:30,700 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:19:30,700 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,716 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' -2020-03-04 12:19:30,716 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls -2020-03-04 12:19:30,716 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,716 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:30,716 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: +2020-03-06 10:21:54,361 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,361 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/packages/powershell/framework/v4_5.sls' in saltenv 'base' +2020-03-06 10:21:54,378 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:21:54,378 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:21:54,378 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:21:54,378 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,378 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/init.sls' +2020-03-06 10:21:54,378 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls +2020-03-06 10:21:54,394 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,394 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:54,394 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .tls1_2 -2020-03-04 12:19:30,716 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,394 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.tls1_2'])]) -2020-03-04 12:19:30,716 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,716 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:19:30,733 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:19:30,733 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:19:30,733 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,733 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' -2020-03-04 12:19:30,733 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls -2020-03-04 12:19:30,733 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,733 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,747 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,747 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,763 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,763 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,763 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,763 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,763 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,763 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,763 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,779 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,779 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,779 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,779 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,779 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.045937299728393555 -2020-03-04 12:19:30,779 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: +2020-03-06 10:21:54,394 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,394 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:21:54,408 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' to resolve 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:21:54,408 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:21:54,408 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,408 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/powershell/framework/v4_5/tls1_2.sls' +2020-03-06 10:21:54,408 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls +2020-03-06 10:21:54,424 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,424 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,424 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,442 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,442 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,456 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,456 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,456 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,456 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,456 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,471 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,471 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,471 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,471 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,471 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,487 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'jinja' renderer: 0.06309819221496582 +2020-03-06 10:21:54,487 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1017,151 +1026,85 @@ windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversion - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32 - onlyif: powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1} -2020-03-04 12:19:30,779 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,487 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('use_32bit_registry', True)]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}"')])])])), ('windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64', OrderedDict([('reg.present', [OrderedDict([('name', 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319')]), OrderedDict([('vname', 'SystemDefaultTlsVersions')]), OrderedDict([('vdata', 1)]), OrderedDict([('vtype', 'REG_DWORD')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_32'])]), OrderedDict([('onlyif', 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains \'Tls12\') {exit 0} else {exit 1}')])])]))]) -2020-03-04 12:19:30,795 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.01658797264099121 -2020-03-04 12:19:30,795 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' -2020-03-04 12:19:30,795 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:19:30,795 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:19:30,795 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' -2020-03-04 12:19:30,795 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,810 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' -2020-03-04 12:19:30,810 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls -2020-03-04 12:19:30,810 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,810 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:30,810 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: +2020-03-06 10:21:54,487 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\powershell\framework\v4_5\tls1_2.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,487 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/packages/saltstack.sls' in saltenv 'base' +2020-03-06 10:21:54,503 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:21:54,503 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' to resolve 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:21:54,503 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/init.sls' +2020-03-06 10:21:54,503 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,518 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/init.sls' +2020-03-06 10:21:54,518 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls +2020-03-06 10:21:54,518 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,518 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:54,518 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:19:30,810 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:54,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:19:30,810 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:30,810 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:19:30,810 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:19:30,810 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' -2020-03-04 12:19:30,810 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,826 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' -2020-03-04 12:19:30,826 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls -2020-03-04 12:19:30,826 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:30,826 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:19:30,826 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:19:30,826 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' -2020-03-04 12:19:30,842 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,842 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' -2020-03-04 12:19:30,842 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,842 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:30,858 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,858 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:30,873 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,873 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:30,873 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,873 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:30,873 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,873 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:30,889 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,889 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:30,889 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,889 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:30,905 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:19:30,905 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:19:30,905 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:19:30,905 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:30,905 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' -2020-03-04 12:19:30,999 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pkg.version -2020-03-04 12:19:30,999 [salt.loaded.int.module.win_pkg:823 ][DEBUG ][3760] No winrepo.p cache file for saltenv 'base', creating one now -2020-03-04 12:19:30,999 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][3760] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) -2020-03-04 12:19:30,999 [salt.loaded.int.module.win_pkg:935 ][INFO ][3760] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:19:30,999 [salt.loaded.int.module.win_pkg:954 ][INFO ][3760] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:19:31,014 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded cp.cache_dir -2020-03-04 12:19:31,044 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded roots.envs -2020-03-04 12:19:31,044 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad roots.init: 'roots.init' is not available. -2020-03-04 12:19:31,044 [salt.fileclient :234 ][INFO ][3760] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:19:31,044 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=2 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:31,061 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded reg.list_keys -2020-03-04 12:19:31,061 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,061 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,076 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.2497093677520752 -2020-03-04 12:19:31,093 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: +2020-03-06 10:21:54,518 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:54,518 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:21:54,534 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' to resolve 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:21:54,534 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/installed.sls' +2020-03-06 10:21:54,534 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,534 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/installed.sls' +2020-03-06 10:21:54,534 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls +2020-03-06 10:21:54,550 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:54,550 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:21:54,550 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\action.jinja' to resolve 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:21:54,550 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/action.jinja' +2020-03-06 10:21:54,550 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,565 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/action.jinja' +2020-03-06 10:21:54,565 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,581 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:54,596 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,596 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:54,596 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,596 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:54,596 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,613 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:54,613 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,613 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:54,613 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,613 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:54,627 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,627 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:54,643 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:21:54,643 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\pkg.jinja' to resolve 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:21:54,643 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:21:54,643 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:54,643 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/pkg.jinja' +2020-03-06 10:21:54,940 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pkg.version +2020-03-06 10:21:54,940 [salt.loaded.int.module.win_pkg:827 ][DEBUG ][5108] No winrepo.p cache file for saltenv 'base', creating one now +2020-03-06 10:21:54,940 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][5108] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is -1 day, 23:59:59) +2020-03-06 10:21:54,940 [salt.loaded.int.module.win_pkg:939 ][INFO ][5108] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:21:54,940 [salt.loaded.int.module.win_pkg:958 ][INFO ][5108] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:21:54,956 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cp.cache_dir +2020-03-06 10:21:54,990 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded roots.envs +2020-03-06 10:21:55,002 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad roots.init: 'roots.init' is not available. +2020-03-06 10:21:55,002 [salt.fileclient :234 ][INFO ][5108] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:21:55,002 [salt.fileserver :159 ][DEBUG ][5108] Returning file list from cache: age=3 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p +2020-03-06 10:21:55,018 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded reg.list_keys +2020-03-06 10:21:55,038 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'jinja' renderer: 0.4878401756286621 +2020-03-06 10:21:55,038 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .windows_software_repository +kdiff3: + pkg.installed: + - require: + - pkg.refresh_db 7zip: pkg.installed: - - version: 18.06.00.0 - refresh_minion_env_path: False + - version: 18.06.00.0 - require: - pkg.refresh_db git: @@ -1169,99 +1112,25 @@ git: - refresh_minion_env_path: True - require: - pkg.refresh_db -kdiff3: - pkg.installed: - - require: - - pkg.refresh_db windows_environment.refresh.path: module.run: - windows_environment.refresh: - onchanges: - pkg: git -2020-03-04 12:19:31,093 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('include', ['.windows_software_repository']), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('version', '18.06.00.0')]), OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) -2020-03-04 12:19:31,093 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,093 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:19:31,093 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:19:31,093 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:19:31,093 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,107 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' -2020-03-04 12:19:31,107 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls -2020-03-04 12:19:31,107 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,107 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.063037) -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,123 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,139 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:19:31,139 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.031771183013916016 -2020-03-04 12:19:31,139 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: +2020-03-06 10:21:55,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('include', ['.windows_software_repository']), ('kdiff3', OrderedDict([('pkg.installed', [OrderedDict([('require', ['pkg.refresh_db'])])])])), ('7zip', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', False)]), OrderedDict([('version', '18.06.00.0')]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('git', OrderedDict([('pkg.installed', [OrderedDict([('refresh_minion_env_path', True)]), OrderedDict([('require', ['pkg.refresh_db'])])])])), ('windows_environment.refresh.path', OrderedDict([('module.run', [OrderedDict([('windows_environment.refresh', None)]), OrderedDict([('onchanges', [OrderedDict([('pkg', 'git')])])])])]))]) +2020-03-06 10:21:55,038 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,049 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/saltstack/windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:21:55,049 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' to resolve 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:21:55,049 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:21:55,049 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,065 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/saltstack/windows_software_repository.sls' +2020-03-06 10:21:55,065 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls +2020-03-06 10:21:55,065 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,065 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.062499) +2020-03-06 10:21:55,081 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'jinja' renderer: 0.01610732078552246 +2020-03-06 10:21:55,081 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1294,93 +1163,93 @@ pkg.refresh_db: attempts: 10 until: True interval: 5 -2020-03-04 12:19:31,139 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,081 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('manually.update_git_repo-ng', OrderedDict([('archive.extracted', [OrderedDict([('name', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng')]), OrderedDict([('source', 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip')]), OrderedDict([('skip_verify', True)]), OrderedDict([('if_missing', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])])), ('rename-extract', OrderedDict([('module.run', [OrderedDict([('file.rename', [OrderedDict([('src', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng-master')]), OrderedDict([('dst', 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng/salt-winrepo-ng')])])]), OrderedDict([('onchanges', ['manually.update_git_repo-ng'])]), OrderedDict([('onchanges_in', ['pkg.refresh_db'])])])])), ('pkg.refresh_db', OrderedDict([('module.run', [OrderedDict([('pkg.refresh_db', [OrderedDict([('failhard', False)])])]), OrderedDict([('check_cmd', ['dir C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng'])]), OrderedDict([('retry', OrderedDict([('attempts', 10), ('until', True), ('interval', 5)]))])])]))]) -2020-03-04 12:19:31,139 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,139 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' -2020-03-04 12:19:31,139 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:19:31,139 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:19:31,154 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' -2020-03-04 12:19:31,154 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,154 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' -2020-03-04 12:19:31,154 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls -2020-03-04 12:19:31,154 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,154 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:31,154 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: +2020-03-06 10:21:55,081 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\saltstack\windows_software_repository.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,096 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/packages/chocolatey.sls' in saltenv 'base' +2020-03-06 10:21:55,096 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:21:55,096 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' to resolve 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:21:55,096 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/init.sls' +2020-03-06 10:21:55,096 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,111 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/init.sls' +2020-03-06 10:21:55,111 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls +2020-03-06 10:21:55,111 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,111 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:55,111 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:19:31,154 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,111 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:19:31,154 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,171 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:19:31,171 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:19:31,171 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:19:31,171 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,171 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' -2020-03-04 12:19:31,171 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls -2020-03-04 12:19:31,171 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,186 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,186 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,202 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,202 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,202 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,202 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,218 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,234 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.06259942054748535 -2020-03-04 12:19:31,234 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: +2020-03-06 10:21:55,127 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\init.sls' using 'yaml' renderer: 0.015611886978149414 +2020-03-06 10:21:55,127 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:21:55,127 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' to resolve 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:21:55,127 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:21:55,127 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,143 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/installed.sls' +2020-03-06 10:21:55,143 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls +2020-03-06 10:21:55,143 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,143 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,161 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,177 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,177 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,177 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,177 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,190 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,190 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,190 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,190 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,190 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,190 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,205 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,205 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,205 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'jinja' renderer: 0.062262535095214844 +2020-03-06 10:21:55,205 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .bootstrap -windows.system.packages.chocolatey.notepadplusplus: +windows.system.packages.chocolatey.windirstat: chocolatey.installed: - require: - chocolatey.bootstrap - - name: notepadplusplus + - name: windirstat + - version: 1.1.2.20161210 -windows.system.packages.chocolatey.windirstat: +windows.system.packages.chocolatey.notepadplusplus: chocolatey.installed: - require: - chocolatey.bootstrap - - name: windirstat - - version: 1.1.2.20161210 + - name: notepadplusplus -2020-03-04 12:19:31,234 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])])), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])]))]) -2020-03-04 12:19:31,234 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,249 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:19:31,249 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:19:31,249 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:19:31,249 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,249 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' -2020-03-04 12:19:31,249 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls -2020-03-04 12:19:31,249 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,265 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,265 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,279 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,279 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,279 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,279 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,279 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,279 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,296 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,296 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,296 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,296 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,296 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,296 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,310 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.0617070198059082 -2020-03-04 12:19:31,310 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: +2020-03-06 10:21:55,205 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('include', ['.bootstrap']), ('windows.system.packages.chocolatey.windirstat', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'windirstat')]), OrderedDict([('version', '1.1.2.20161210')])])])), ('windows.system.packages.chocolatey.notepadplusplus', OrderedDict([('chocolatey.installed', [OrderedDict([('require', ['chocolatey.bootstrap'])]), OrderedDict([('name', 'notepadplusplus')])])]))]) +2020-03-06 10:21:55,205 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,225 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/packages/chocolatey/bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:21:55,225 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' to resolve 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:21:55,225 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:21:55,225 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,237 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/packages/chocolatey/bootstrap.sls' +2020-03-06 10:21:55,237 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls +2020-03-06 10:21:55,237 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,237 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,237 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,268 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,268 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,268 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,268 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,268 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,268 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,284 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,284 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,284 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,284 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,284 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,299 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,299 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'jinja' renderer: 0.06247568130493164 +2020-03-06 10:21:55,299 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls: # -*- coding: utf-8 -*- # vim: ft=sls chocolatey.bootstrap: @@ -1390,78 +1259,78 @@ chocolatey.bootstrap: - require: - windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64 -2020-03-04 12:19:31,310 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,299 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('chocolatey.bootstrap', OrderedDict([('module.run', [OrderedDict([('chocolatey.bootstrap', None)]), OrderedDict([('unless', 'where.exe chocolatey')]), OrderedDict([('require', ['windows.system.packages.powershell.framework.v4_5.tls1_2.systemdefaulttlsversions_64'])])])]))]) -2020-03-04 12:19:31,310 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,310 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' -2020-03-04 12:19:31,310 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:19:31,310 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' -2020-03-04 12:19:31,310 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' -2020-03-04 12:19:31,327 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,327 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' -2020-03-04 12:19:31,327 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls -2020-03-04 12:19:31,327 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,327 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:31,327 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: +2020-03-06 10:21:55,299 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\packages\chocolatey\bootstrap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,299 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/server.sls' in saltenv 'base' +2020-03-06 10:21:55,318 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/server/init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:21:55,318 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' to resolve 'salt://windows/system/server/init.sls' +2020-03-06 10:21:55,318 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/init.sls' +2020-03-06 10:21:55,318 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,331 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/server/init.sls' +2020-03-06 10:21:55,331 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls +2020-03-06 10:21:55,331 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,331 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:55,331 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .features -2020-03-04 12:19:31,327 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,331 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.features'])]) -2020-03-04 12:19:31,327 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,327 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' -2020-03-04 12:19:31,343 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:19:31,343 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' -2020-03-04 12:19:31,343 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' -2020-03-04 12:19:31,343 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,343 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' -2020-03-04 12:19:31,343 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls -2020-03-04 12:19:31,358 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,358 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:31,358 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: +2020-03-06 10:21:55,331 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,346 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/server/features.sls' in saltenv 'base' +2020-03-06 10:21:55,346 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/server/features/init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:21:55,346 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' to resolve 'salt://windows/system/server/features/init.sls' +2020-03-06 10:21:55,346 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/init.sls' +2020-03-06 10:21:55,346 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,363 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/init.sls' +2020-03-06 10:21:55,363 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls +2020-03-06 10:21:55,363 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,363 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:55,363 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .installed -2020-03-04 12:19:31,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,363 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.installed'])]) -2020-03-04 12:19:31,358 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,358 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:19:31,358 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:19:31,358 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' -2020-03-04 12:19:31,358 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,373 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' -2020-03-04 12:19:31,373 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls -2020-03-04 12:19:31,373 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,373 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:19:31,373 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:19:31,389 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' -2020-03-04 12:19:31,389 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,389 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' -2020-03-04 12:19:31,405 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,405 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,421 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,421 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,421 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,421 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,435 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,451 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/server/features/features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' -2020-03-04 12:19:31,451 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' -2020-03-04 12:19:31,451 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/features.jinja' -2020-03-04 12:19:31,451 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,467 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/features.jinja' -2020-03-04 12:19:31,467 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.09332728385925293 -2020-03-04 12:19:31,467 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: +2020-03-06 10:21:55,363 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,378 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/server/features/installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:21:55,378 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' to resolve 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:21:55,378 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/installed.sls' +2020-03-06 10:21:55,378 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,378 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/installed.sls' +2020-03-06 10:21:55,378 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls +2020-03-06 10:21:55,393 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,393 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/server/features/action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:21:55,393 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\action.jinja' to resolve 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:21:55,393 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/action.jinja' +2020-03-06 10:21:55,393 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,409 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/action.jinja' +2020-03-06 10:21:55,409 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,409 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,425 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,440 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,440 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,440 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,440 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,440 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,455 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,455 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,455 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,455 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,455 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,471 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,487 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/server/features/features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 10:21:55,487 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\features.jinja' to resolve 'salt://windows/system/server/features/features.jinja' +2020-03-06 10:21:55,487 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/server/features/features.jinja' +2020-03-06 10:21:55,487 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,502 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/server/features/features.jinja' +2020-03-06 10:21:55,502 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'jinja' renderer: 0.1088864803314209 +2020-03-06 10:21:55,502 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -1470,1881 +1339,1878 @@ windows.system.server.features.installed.telnet-client: - name: telnet-client - recurse: true -2020-03-04 12:19:31,467 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('windows.system.server.features.installed.telnet-client', OrderedDict([('win_servermanager.installed', [OrderedDict([('name', 'telnet-client')]), OrderedDict([('recurse', True)])])]))]) -2020-03-04 12:19:31,467 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,483 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' -2020-03-04 12:19:31,483 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:19:31,483 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' -2020-03-04 12:19:31,483 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' -2020-03-04 12:19:31,483 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,483 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' -2020-03-04 12:19:31,483 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls -2020-03-04 12:19:31,499 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,499 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:31,499 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: +2020-03-06 10:21:55,502 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\server\features\installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,518 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/desktop.sls' in saltenv 'base' +2020-03-06 10:21:55,518 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/desktop/init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:21:55,518 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' to resolve 'salt://windows/system/desktop/init.sls' +2020-03-06 10:21:55,518 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/init.sls' +2020-03-06 10:21:55,518 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,534 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/init.sls' +2020-03-06 10:21:55,534 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls +2020-03-06 10:21:55,534 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,534 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:21:55,534 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: # - .packages - .optional_features -2020-03-04 12:19:31,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,534 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.optional_features'])]) -2020-03-04 12:19:31,499 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,499 [salt.fileclient :1072][DEBUG ][3760] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' -2020-03-04 12:19:31,499 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:19:31,515 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:19:31,515 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' -2020-03-04 12:19:31,515 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,515 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' -2020-03-04 12:19:31,515 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls -2020-03-04 12:19:31,515 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,515 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:31,515 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: +2020-03-06 10:21:55,534 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,534 [salt.fileclient :1080][DEBUG ][5108] Could not find file 'salt://windows/system/desktop/optional_features.sls' in saltenv 'base' +2020-03-06 10:21:55,550 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:21:55,550 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' to resolve 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:21:55,550 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/init.sls' +2020-03-06 10:21:55,550 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,565 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/init.sls' +2020-03-06 10:21:55,565 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls +2020-03-06 10:21:55,565 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,581 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'jinja' renderer: 0.015610694885253906 +2020-03-06 10:21:55,581 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls: # -*- coding: utf-8 -*- # vim: ft=sls include: - .feature_installed -2020-03-04 12:19:31,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('include', ['.feature_installed'])]) -2020-03-04 12:19:31,530 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.015124797821044922 -2020-03-04 12:19:31,530 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:19:31,530 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:19:31,530 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:19:31,530 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,530 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' -2020-03-04 12:19:31,530 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls -2020-03-04 12:19:31,545 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:31,545 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:19:31,545 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:19:31,545 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:19:31,545 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:31,545 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' -2020-03-04 12:19:31,562 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,562 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' -2020-03-04 12:19:31,577 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,577 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' -2020-03-04 12:19:31,577 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,577 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,592 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' -2020-03-04 12:19:31,608 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.06290936470031738 -2020-03-04 12:19:31,608 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: +2020-03-06 10:21:55,581 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,581 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:21:55,581 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' to resolve 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:21:55,581 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:21:55,581 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,596 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/feature_installed.sls' +2020-03-06 10:21:55,596 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls +2020-03-06 10:21:55,596 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:21:55,612 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/system/desktop/optional_features/action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:21:55,612 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\action.jinja' to resolve 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:21:55,612 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:21:55,612 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:21:55,627 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'windows/system/desktop/optional_features/action.jinja' +2020-03-06 10:21:55,627 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,627 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\map.jinja' to resolve 'salt://windows/map.jinja' +2020-03-06 10:21:55,643 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,658 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\defaults.yaml' to resolve 'salt://windows/defaults.yaml' +2020-03-06 10:21:55,658 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,658 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osarchmap.yaml' to resolve 'salt://windows/osarchmap.yaml' +2020-03-06 10:21:55,658 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,658 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfamilymap.yaml' to resolve 'salt://windows/osfamilymap.yaml' +2020-03-06 10:21:55,674 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,674 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osmap.yaml' to resolve 'salt://windows/osmap.yaml' +2020-03-06 10:21:55,674 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,674 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osfingermap.yaml' to resolve 'salt://windows/osfingermap.yaml' +2020-03-06 10:21:55,674 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'windows/osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,674 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\osversionmap.yaml' to resolve 'salt://windows/osversionmap.yaml' +2020-03-06 10:21:55,690 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'jinja' renderer: 0.09374642372131348 +2020-03-06 10:21:55,690 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls: # -*- coding: utf-8 -*- # vim: ft=sls -2020-03-04 12:19:31,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:21:55,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: {} -2020-03-04 12:19:31,608 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:31,608 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded cmd.run -2020-03-04 12:19:31,686 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded system.get_computer_desc -2020-03-04 12:19:31,686 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded system.computer_desc -2020-03-04 12:19:31,686 [salt.state :1819][INFO ][3760] Running state [saltstack1] at time 12:19:31.686143 -2020-03-04 12:19:31,686 [salt.state :1852][INFO ][3760] Executing state system.hostname for [saltstack1] -2020-03-04 12:19:31,686 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:19:31,701 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: vagrant -2020-03-04 12:19:31,701 [salt.loaded.int.module.cmdmod:1202][DEBUG ][3760] output: vagrant -2020-03-04 12:19:31,701 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'hostname' in directory 'C:\Users\vagrant' -2020-03-04 12:19:31,718 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: vagrant -2020-03-04 12:19:31,718 [salt.loaded.int.module.cmdmod:1202][DEBUG ][3760] output: vagrant -2020-03-04 12:19:31,718 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'wmic computersystem where name='vagrant' call rename name='saltstack1'' in directory 'C:\Users\vagrant' -2020-03-04 12:19:31,796 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +2020-03-06 10:21:55,690 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\windows\system\desktop\optional_features\feature_installed.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:21:55,706 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cmd.run +2020-03-06 10:21:55,893 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded system.get_computer_desc +2020-03-06 10:21:55,893 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded system.computer_desc +2020-03-06 10:21:55,893 [salt.state :1867][INFO ][5108] Running state [saltstack1] at time 10:21:55.893201 +2020-03-06 10:21:55,893 [salt.state :1900][INFO ][5108] Executing state system.hostname for [saltstack1] +2020-03-06 10:21:55,893 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:21:55,924 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: vagrant +2020-03-06 10:21:55,924 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5108] output: vagrant +2020-03-06 10:21:55,924 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'hostname' in directory 'C:\Users\vagrant' +2020-03-06 10:21:55,941 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: vagrant +2020-03-06 10:21:55,941 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5108] output: vagrant +2020-03-06 10:21:55,941 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'wmic computersystem where name='vagrant' call rename name='saltstack1'' in directory 'C:\Users\vagrant' +2020-03-06 10:21:56,037 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:19:31,796 [salt.loaded.int.module.cmdmod:1202][DEBUG ][3760] output: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() +2020-03-06 10:21:56,037 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5108] output: Executing (\\VAGRANT\ROOT\CIMV2:Win32_ComputerSystem.Name="VAGRANT")->rename() Method execution successful. Out Parameters: instance of __PARAMETERS { ReturnValue = 0; }; -2020-03-04 12:19:31,796 [salt.state :320 ][INFO ][3760] {'hostname': 'saltstack1'} -2020-03-04 12:19:31,796 [salt.state :1997][INFO ][3760] Completed state [saltstack1] at time 12:19:31.796169 (duration_in_ms=110.026) -2020-03-04 12:19:31,796 [salt.state :1819][INFO ][3760] Running state [Saltstack Computer Description] at time 12:19:31.796169 -2020-03-04 12:19:31,811 [salt.state :1852][INFO ][3760] Executing state system.computer_desc for [Saltstack Computer Description] -2020-03-04 12:19:34,924 [salt.state :320 ][INFO ][3760] {'new': 'Saltstack Computer Description', 'old': ''} -2020-03-04 12:19:34,938 [salt.state :1997][INFO ][3760] Completed state [Saltstack Computer Description] at time 12:19:34.938932 (duration_in_ms=3142.763) -2020-03-04 12:19:34,954 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded platform.is_windows -2020-03-04 12:19:34,954 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded path.which -2020-03-04 12:19:34,954 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded timezone.get_zone -2020-03-04 12:19:34,954 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded timezone.system -2020-03-04 12:19:34,954 [salt.state :1819][INFO ][3760] Running state [America/New_York] at time 12:19:34.954543 -2020-03-04 12:19:34,954 [salt.state :1852][INFO ][3760] Executing state timezone.system for [America/New_York] -2020-03-04 12:19:34,954 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' -2020-03-04 12:19:34,986 [salt.state :320 ][INFO ][3760] {'timezone': 'America/New_York'} -2020-03-04 12:19:35,001 [salt.state :1997][INFO ][3760] Completed state [America/New_York] at time 12:19:35.001944 (duration_in_ms=47.401) -2020-03-04 12:19:35,001 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded module.run -2020-03-04 12:19:35,001 [salt.state :1819][INFO ][3760] Running state [windows.module.environ.items] at time 12:19:35.001944 -2020-03-04 12:19:35,001 [salt.state :1852][INFO ][3760] Executing state module.run for [windows.module.environ.items] -2020-03-04 12:19:35,001 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded environ.items -2020-03-04 12:19:35,001 [salt.state :320 ][INFO ][3760] {'environ.items': {'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'PUBLIC': 'C:\\Users\\Public', 'PROGRAMDATA': 'C:\\ProgramData', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT', 'SALTDIR': 'C:\\salt', 'SYSTEMROOT': 'C:\\Windows', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'LOGONSERVER': '\\\\VAGRANT', 'USERPROFILE': 'C:\\Users\\vagrant', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'PROGRAMW6432': 'C:\\Program Files', 'COMPUTERNAME': 'VAGRANT', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'PROCESSOR_LEVEL': '6', 'USERDOMAIN': 'VAGRANT', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'OS': 'Windows_NT', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'USERNAME': 'vagrant', 'NUMBER_OF_PROCESSORS': '2', 'HOMEDRIVE': 'C:', 'SYSTEMDRIVE': 'C:', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'PROGRAMFILES': 'C:\\Program Files', 'PROCESSOR_REVISION': '8e0c', 'HOMEPATH': '\\Users\\vagrant', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'WINDIR': 'C:\\Windows', 'PROMPT': '$P$G'}} -2020-03-04 12:19:35,001 [salt.state :1997][INFO ][3760] Completed state [windows.module.environ.items] at time 12:19:35.001944 (duration_in_ms=0.0) -2020-03-04 12:19:35,027 [salt.state :1819][INFO ][3760] Running state [windows.module.user.current] at time 12:19:35.027619 -2020-03-04 12:19:35,027 [salt.state :1852][INFO ][3760] Executing state module.run for [windows.module.user.current] -2020-03-04 12:19:35,033 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded user.current -2020-03-04 12:19:35,033 [salt.state :320 ][INFO ][3760] {'user.current': 'VAGRANT\\vagrant'} -2020-03-04 12:19:35,033 [salt.state :1997][INFO ][3760] Completed state [windows.module.user.current] at time 12:19:35.033186 (duration_in_ms=5.567) -2020-03-04 12:19:35,033 [salt.state :1819][INFO ][3760] Running state [windows.module.status.uptime] at time 12:19:35.033186 -2020-03-04 12:19:35,033 [salt.state :1852][INFO ][3760] Executing state module.run for [windows.module.status.uptime] -2020-03-04 12:19:35,048 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded status.uptime -2020-03-04 12:19:35,064 [salt.state :320 ][INFO ][3760] {'status.uptime': '0:01:55.064059'} -2020-03-04 12:19:35,064 [salt.state :1997][INFO ][3760] Completed state [windows.module.status.uptime] at time 12:19:35.064059 (duration_in_ms=30.873) -2020-03-04 12:19:35,064 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded reg.present -2020-03-04 12:19:35,064 [salt.state :1819][INFO ][3760] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:19:35.064059 -2020-03-04 12:19:35,064 [salt.state :1852][INFO ][3760] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:19:35,783 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt.secret_key, ret: _|- -2020-03-04 12:19:35,783 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt:secret_key, ret: _|- -2020-03-04 12:19:36,330 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet.api_key, ret: _|- -2020-03-04 12:19:36,330 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet:api_key, ret: _|- -2020-03-04 12:19:36,721 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops.api_key, ret: _|- -2020-03-04 12:19:36,721 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops:api_key, ret: _|- -2020-03-04 12:19:40,661 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad apache.config: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:19:40,661 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded apache.a2enconf -2020-03-04 12:19:40,661 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded apache.a2enmod -2020-03-04 12:19:40,661 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded apache.a2ensite -2020-03-04 12:19:40,692 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:19:40,706 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:19:40,722 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:19:40,722 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:19:40,738 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:19:40,754 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:19:40,754 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:19:40,769 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:19:40,769 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_asg.exists -2020-03-04 12:19:40,769 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cfn.exists -2020-03-04 12:19:40,784 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:19:40,784 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:19:40,784 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:19:40,800 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:19:40,800 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:19:40,800 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:19:40,816 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_dynamodb.exists -2020-03-04 12:19:40,816 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_ec2.get_key -2020-03-04 12:19:40,832 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elasticache.exists -2020-03-04 12:19:40,832 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:19:40,848 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elb.exists -2020-03-04 12:19:40,848 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:19:40,863 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_iam.get_user -2020-03-04 12:19:40,863 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_iam.role_exists -2020-03-04 12:19:40,879 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_iot.policy_exists -2020-03-04 12:19:40,879 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_kinesis.exists -2020-03-04 12:19:40,879 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_kms.describe_key -2020-03-04 12:19:40,894 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_lambda.function_exists -2020-03-04 12:19:40,894 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_asg.exists -2020-03-04 12:19:40,894 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_rds.exists -2020-03-04 12:19:40,910 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_route53.get_record -2020-03-04 12:19:40,910 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:19:40,926 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:19:40,926 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_secgroup.exists -2020-03-04 12:19:40,926 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_sns.exists -2020-03-04 12:19:40,926 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_sqs.exists -2020-03-04 12:19:40,958 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_vpc.exists -2020-03-04 12:19:40,958 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded bower.list -2020-03-04 12:19:40,972 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded chef.client -2020-03-04 12:19:40,972 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded cimc.get_system_info -2020-03-04 12:19:40,972 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded cisconso.set_data_value -2020-03-04 12:19:40,988 [salt.loader :1577][DEBUG ][3760] Failed to import states cloud: +2020-03-06 10:21:56,037 [salt.state :320 ][INFO ][5108] {'hostname': 'saltstack1'} +2020-03-06 10:21:56,037 [salt.state :2045][INFO ][5108] Completed state [saltstack1] at time 10:21:56.037236 (duration_in_ms=144.035) +2020-03-06 10:21:56,037 [salt.state :1867][INFO ][5108] Running state [Saltstack Computer Description] at time 10:21:56.037236 +2020-03-06 10:21:56,037 [salt.state :1900][INFO ][5108] Executing state system.computer_desc for [Saltstack Computer Description] +2020-03-06 10:21:58,644 [salt.state :320 ][INFO ][5108] {'new': 'Saltstack Computer Description', 'old': ''} +2020-03-06 10:21:58,644 [salt.state :2045][INFO ][5108] Completed state [Saltstack Computer Description] at time 10:21:58.644232 (duration_in_ms=2606.996) +2020-03-06 10:21:58,677 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded platform.is_windows +2020-03-06 10:21:58,677 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded path.which +2020-03-06 10:21:58,677 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded timezone.get_zone +2020-03-06 10:21:58,677 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded timezone.system +2020-03-06 10:21:58,690 [salt.state :1867][INFO ][5108] Running state [America/New_York] at time 10:21:58.690597 +2020-03-06 10:21:58,690 [salt.state :1900][INFO ][5108] Executing state timezone.system for [America/New_York] +2020-03-06 10:21:58,690 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['tzutil', '/s', 'Eastern Standard Time'] in directory 'C:\Users\vagrant' +2020-03-06 10:21:58,721 [salt.state :320 ][INFO ][5108] {'timezone': 'America/New_York'} +2020-03-06 10:21:58,721 [salt.state :2045][INFO ][5108] Completed state [America/New_York] at time 10:21:58.721318 (duration_in_ms=30.721) +2020-03-06 10:21:58,738 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded module.run +2020-03-06 10:21:58,738 [salt.state :1867][INFO ][5108] Running state [windows.module.environ.items] at time 10:21:58.738965 +2020-03-06 10:21:58,738 [salt.state :1900][INFO ][5108] Executing state module.run for [windows.module.environ.items] +2020-03-06 10:21:58,738 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded environ.items +2020-03-06 10:21:58,738 [salt.state :320 ][INFO ][5108] {'environ.items': {'PROCESSOR_REVISION': '8e0c', 'NUMBER_OF_PROCESSORS': '2', 'PROGRAMFILES(X86)': 'C:\\Program Files (x86)', 'LOGONSERVER': '\\\\VAGRANT', 'COMPUTERNAME': 'VAGRANT', 'PUBLIC': 'C:\\Users\\Public', 'SYSTEMDRIVE': 'C:', 'PATHEXT': '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL', 'USERDOMAIN': 'VAGRANT', 'SYSTEMROOT': 'C:\\Windows', 'PSMODULEPATH': 'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules', 'PROGRAMDATA': 'C:\\ProgramData', 'USERDOMAIN_ROAMINGPROFILE': 'VAGRANT', 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData', 'TEMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files (x86)\\Common Files', 'HOMEDRIVE': 'C:', 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files', 'TMP': 'C:\\Users\\vagrant\\AppData\\Local\\Temp', 'PROMPT': '$P$G', 'PROGRAMFILES': 'C:\\Program Files', 'LOCALAPPDATA': 'C:\\Users\\vagrant\\AppData\\Local', 'WINDIR': 'C:\\Windows', 'USERPROFILE': 'C:\\Users\\vagrant', 'PROGRAMW6432': 'C:\\Program Files', 'ALLUSERSPROFILE': 'C:\\ProgramData', 'PROCESSOR_LEVEL': '6', 'PROCESSOR_ARCHITECTURE': 'AMD64', 'SALTDIR': 'C:\\salt', 'USERNAME': 'vagrant', 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files', 'SCRIPT': 'C:\\salt\\bin\\Scripts\\salt-call', 'APPDATA': 'C:\\Users\\vagrant\\AppData\\Roaming', 'PYTHON': 'C:\\salt\\bin\\python.exe', 'HOMEPATH': '\\Users\\vagrant', 'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Users\\vagrant\\AppData\\Local\\Microsoft\\WindowsApps;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32;C:\\salt\\bin\\lib\\site-packages\\pywin32_system32', 'OS': 'Windows_NT', 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe', 'PROCESSOR_IDENTIFIER': 'Intel64 Family 6 Model 142 Stepping 12, GenuineIntel'}} +2020-03-06 10:21:58,753 [salt.state :2045][INFO ][5108] Completed state [windows.module.environ.items] at time 10:21:58.753021 (duration_in_ms=14.056) +2020-03-06 10:21:58,753 [salt.state :1867][INFO ][5108] Running state [windows.module.user.current] at time 10:21:58.753021 +2020-03-06 10:21:58,753 [salt.state :1900][INFO ][5108] Executing state module.run for [windows.module.user.current] +2020-03-06 10:21:58,788 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded user.current +2020-03-06 10:21:58,788 [salt.state :320 ][INFO ][5108] {'user.current': 'VAGRANT\\vagrant'} +2020-03-06 10:21:58,788 [salt.state :2045][INFO ][5108] Completed state [windows.module.user.current] at time 10:21:58.788715 (duration_in_ms=35.694) +2020-03-06 10:21:58,788 [salt.state :1867][INFO ][5108] Running state [windows.module.status.uptime] at time 10:21:58.788715 +2020-03-06 10:21:58,788 [salt.state :1900][INFO ][5108] Executing state module.run for [windows.module.status.uptime] +2020-03-06 10:21:58,816 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded status.uptime +2020-03-06 10:21:58,816 [salt.state :320 ][INFO ][5108] {'status.uptime': '0:02:38.816023'} +2020-03-06 10:21:58,816 [salt.state :2045][INFO ][5108] Completed state [windows.module.status.uptime] at time 10:21:58.816023 (duration_in_ms=27.308) +2020-03-06 10:21:58,816 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded reg.present +2020-03-06 10:21:58,816 [salt.state :1867][INFO ][5108] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:21:58.816023 +2020-03-06 10:21:58,816 [salt.state :1900][INFO ][5108] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:21:59,646 [salt.config :2215][DEBUG ][5108] Missing configuration file: /etc/salt/minion +2020-03-06 10:21:59,646 [salt.config :3612][DEBUG ][5108] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:21:59,829 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:21:59,829 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:22:00,405 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:22:00,405 [salt.loader :1671][DEBUG ][5108] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:19:41,003 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded ddns.update -2020-03-04 12:19:41,003 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded chassis.cmd -2020-03-04 12:19:41,034 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:19:41,051 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:19:41,066 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:19:41,081 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:19:41,269 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded esxi.cmd -2020-03-04 12:19:41,333 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded git.version -2020-03-04 12:19:41,333 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded github.list_users -2020-03-04 12:19:41,347 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded glanceng.image_get -2020-03-04 12:19:41,363 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded elasticsearch.exists -2020-03-04 12:19:41,378 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: grafana_version, ret: _|- -2020-03-04 12:19:41,378 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: grafana_version, ret: _|- -2020-03-04 12:19:41,410 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded icinga2.generate_ticket -2020-03-04 12:19:41,410 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded ifttt.trigger_event -2020-03-04 12:19:41,426 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:19:41,441 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:19:41,456 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:19:41,472 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:19:41,488 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:19:41,503 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:19:41,535 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:19:41,535 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.domain_get -2020-03-04 12:19:41,550 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:19:41,550 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.group_get -2020-03-04 12:19:41,550 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.project_get -2020-03-04 12:19:41,550 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.role_get -2020-03-04 12:19:41,567 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.role_grant -2020-03-04 12:19:41,567 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.service_get -2020-03-04 12:19:41,567 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.user_get -2020-03-04 12:19:41,583 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:19:41,614 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:19:41,629 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:19:41,644 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:19:41,660 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:19:41,675 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:19:41,691 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:19:41,691 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:19:41,691 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:19:41,691 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:19:41,709 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded memcached.status -2020-03-04 12:19:41,725 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mongodb.db_exists -2020-03-04 12:19:41,725 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mongodb.user_exists -2020-03-04 12:19:41,725 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:19:41,739 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:19:41,739 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:19:41,739 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:19:41,786 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_networks -2020-03-04 12:19:41,786 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_subnets -2020-03-04 12:19:41,786 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_subnets -2020-03-04 12:19:41,786 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_subnets -2020-03-04 12:19:41,801 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded npm.list -2020-03-04 12:19:41,801 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nxos.cmd -2020-03-04 12:19:41,832 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:19:41,847 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:19:41,864 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded panos.commit -2020-03-04 12:19:41,864 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pdbedit.create -2020-03-04 12:19:41,880 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pecl.list -2020-03-04 12:19:42,301 [pip.vcs :60 ][DEBUG ][3760] Registered VCS backend: git -2020-03-04 12:19:42,395 [pip.vcs :60 ][DEBUG ][3760] Registered VCS backend: hg -2020-03-04 12:19:42,426 [pip.pep425tags :79 ][DEBUG ][3760] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:19:42,426 [pip.pep425tags :79 ][DEBUG ][3760] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:19:42,426 [pip.pep425tags :79 ][DEBUG ][3760] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect -2020-03-04 12:19:42,426 [pip.pep425tags :79 ][DEBUG ][3760] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect -2020-03-04 12:19:42,661 [pip.vcs :60 ][DEBUG ][3760] Registered VCS backend: svn -2020-03-04 12:19:42,661 [pip.vcs :60 ][DEBUG ][3760] Registered VCS backend: bzr -2020-03-04 12:19:42,786 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:19:42,786 [salt.loader :1577][DEBUG ][3760] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:22:01,589 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt.secret_key, ret: _|- +2020-03-06 10:22:01,589 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt:secret_key, ret: _|- +2020-03-06 10:22:03,206 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet.api_key, ret: _|- +2020-03-06 10:22:03,206 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet:api_key, ret: _|- +2020-03-06 10:22:03,924 [salt.loader :1671][DEBUG ][5108] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:19:42,786 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.cluster_exists -2020-03-04 12:19:42,802 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.user_exists -2020-03-04 12:19:42,802 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.create_extension -2020-03-04 12:19:42,802 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.group_create -2020-03-04 12:19:42,817 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.datadir_init -2020-03-04 12:19:42,817 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.language_create -2020-03-04 12:19:42,817 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.privileges_grant -2020-03-04 12:19:42,817 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.schema_exists -2020-03-04 12:19:42,817 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.tablespace_exists -2020-03-04 12:19:42,833 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.user_exists -2020-03-04 12:19:42,879 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:19:42,910 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded selinux.getenforce -2020-03-04 12:19:42,948 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded splunk.list_users -2020-03-04 12:19:42,948 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded splunk_search.get -2020-03-04 12:19:42,974 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:19:42,989 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded tomcat.status -2020-03-04 12:19:43,004 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded vagrant.version -2020-03-04 12:19:43,020 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded victorops.create_event -2020-03-04 12:19:43,036 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded win_iis.create_site -2020-03-04 12:19:43,067 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:19:43,082 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded wordpress.show_plugin -2020-03-04 12:19:43,082 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded x509.get_pem_entry -2020-03-04 12:19:43,082 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded xmpp.send_msg -2020-03-04 12:19:43,129 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded zk_concurrency.lock -2020-03-04 12:19:43,147 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded zonecfg.create -2020-03-04 12:19:43,147 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded zookeeper.create -2020-03-04 12:19:43,161 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:19:43,161 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' -2020-03-04 12:19:43,411 [salt.state :889 ][DEBUG ][3760] Last command return code: 0 -2020-03-04 12:19:43,411 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded dacl.check_perms -2020-03-04 12:19:43,411 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3760] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:19:43,426 [salt.loaded.int.utils.win_dacl:1186][ERROR ][3760] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:22:04,329 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops.api_key, ret: _|- +2020-03-06 10:22:04,329 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops:api_key, ret: _|- +2020-03-06 10:22:12,749 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad acme.cert: 'acme' __virtual__ returned False: The ACME execution module cannot be loaded: letsencrypt-auto not installed. +2020-03-06 10:22:12,763 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded alternatives.auto +2020-03-06 10:22:12,872 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded apache.config +2020-03-06 10:22:12,872 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded apache.a2enconf +2020-03-06 10:22:12,872 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded apache.a2enmod +2020-03-06 10:22:12,888 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded apache.a2ensite +2020-03-06 10:22:12,920 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:22:12,936 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded at.at +2020-03-06 10:22:12,983 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:22:12,998 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:22:12,998 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:22:13,015 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:22:13,030 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:22:13,062 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded disk.tune +2020-03-06 10:22:13,062 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:22:13,078 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:22:13,092 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:22:13,092 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:22:13,125 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:22:13,125 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_asg.exists +2020-03-06 10:22:13,140 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cfn.exists +2020-03-06 10:22:13,140 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:22:13,156 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:22:13,156 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:22:13,156 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:22:13,171 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:22:13,171 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:22:13,187 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_dynamodb.exists +2020-03-06 10:22:13,209 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_ec2.get_key +2020-03-06 10:22:13,218 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elasticache.exists +2020-03-06 10:22:13,218 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:22:13,235 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elb.exists +2020-03-06 10:22:13,251 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:22:13,267 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_iam.get_user +2020-03-06 10:22:13,283 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_iam.role_exists +2020-03-06 10:22:13,283 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_iot.policy_exists +2020-03-06 10:22:13,297 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_kinesis.exists +2020-03-06 10:22:13,297 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_kms.describe_key +2020-03-06 10:22:13,313 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_lambda.function_exists +2020-03-06 10:22:13,313 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_asg.exists +2020-03-06 10:22:13,329 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_rds.exists +2020-03-06 10:22:13,353 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_route53.get_record +2020-03-06 10:22:13,359 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:22:13,359 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:22:13,377 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_secgroup.exists +2020-03-06 10:22:13,377 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_sns.exists +2020-03-06 10:22:13,377 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_sqs.exists +2020-03-06 10:22:13,391 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_vpc.exists +2020-03-06 10:22:13,409 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded bower.list +2020-03-06 10:22:13,422 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded chef.client +2020-03-06 10:22:13,440 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cimc.get_system_info +2020-03-06 10:22:13,440 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cisconso.set_data_value +2020-03-06 10:22:13,454 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cron.list_tab +2020-03-06 10:22:13,471 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded ddns.update +2020-03-06 10:22:13,485 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded chassis.cmd +2020-03-06 10:22:13,521 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:22:13,552 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:22:13,595 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:22:13,612 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:22:13,658 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded eselect.exec_action +2020-03-06 10:22:13,924 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded esxi.cmd +2020-03-06 10:22:14,035 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded git.version +2020-03-06 10:22:14,051 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded github.list_users +2020-03-06 10:22:14,067 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded glanceng.image_get +2020-03-06 10:22:14,084 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded glusterfs.list_volumes +2020-03-06 10:22:14,098 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded elasticsearch.exists +2020-03-06 10:22:14,113 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: grafana_version, ret: _|- +2020-03-06 10:22:14,129 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: grafana_version, ret: _|- +2020-03-06 10:22:14,161 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded icinga2.generate_ticket +2020-03-06 10:22:14,176 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded ifttt.trigger_event +2020-03-06 10:22:14,207 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:22:14,225 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:22:14,274 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:22:14,303 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:22:14,339 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:22:14,370 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:22:14,411 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded ipset.version +2020-03-06 10:22:14,411 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded iptables.version +2020-03-06 10:22:14,443 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded kapacitor.version +2020-03-06 10:22:14,474 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:22:14,474 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keyboard.get_sys +2020-03-06 10:22:14,474 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystone.auth +2020-03-06 10:22:14,490 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.domain_get +2020-03-06 10:22:14,490 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:22:14,490 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.group_get +2020-03-06 10:22:14,505 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.project_get +2020-03-06 10:22:14,505 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.role_get +2020-03-06 10:22:14,505 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.role_grant +2020-03-06 10:22:14,521 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.service_get +2020-03-06 10:22:14,521 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.user_get +2020-03-06 10:22:14,537 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystore.list +2020-03-06 10:22:14,537 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded kmod.available +2020-03-06 10:22:14,569 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:22:14,569 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded layman.add +2020-03-06 10:22:14,631 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:22:14,631 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded logadm.list_conf +2020-03-06 10:22:14,646 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded logrotate.show_conf +2020-03-06 10:22:14,663 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lvs.get_rules +2020-03-06 10:22:14,678 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lvs.get_rules +2020-03-06 10:22:14,678 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:22:14,694 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:22:14,694 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:22:14,694 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:22:14,725 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded makeconf.get_var +2020-03-06 10:22:14,741 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded memcached.status +2020-03-06 10:22:14,757 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded mongodb.db_exists +2020-03-06 10:22:14,757 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded mongodb.user_exists +2020-03-06 10:22:14,772 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded monit.summary +2020-03-06 10:22:14,852 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_networks +2020-03-06 10:22:14,867 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_subnets +2020-03-06 10:22:14,867 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_subnets +2020-03-06 10:22:14,867 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_subnets +2020-03-06 10:22:14,899 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nftables.version +2020-03-06 10:22:14,899 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded npm.list +2020-03-06 10:22:14,914 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nxos.cmd +2020-03-06 10:22:14,914 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded openvswitch.bridge_create +2020-03-06 10:22:14,930 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded openvswitch.port_add +2020-03-06 10:22:14,960 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded panos.commit +2020-03-06 10:22:14,992 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pdbedit.create +2020-03-06 10:22:15,011 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pecl.list +2020-03-06 10:22:15,918 [pip.vcs :60 ][DEBUG ][5108] Registered VCS backend: git +2020-03-06 10:22:16,138 [pip.vcs :60 ][DEBUG ][5108] Registered VCS backend: hg +2020-03-06 10:22:16,217 [pip.pep425tags :79 ][DEBUG ][5108] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:22:16,217 [pip.pep425tags :79 ][DEBUG ][5108] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:22:16,217 [pip.pep425tags :79 ][DEBUG ][5108] Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect +2020-03-06 10:22:16,217 [pip.pep425tags :79 ][DEBUG ][5108] Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect +2020-03-06 10:22:16,608 [pip.vcs :60 ][DEBUG ][5108] Registered VCS backend: svn +2020-03-06 10:22:16,624 [pip.vcs :60 ][DEBUG ][5108] Registered VCS backend: bzr +2020-03-06 10:22:16,953 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:22:16,969 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:22:16,985 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.cluster_exists +2020-03-06 10:22:16,985 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.user_exists +2020-03-06 10:22:17,000 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.create_extension +2020-03-06 10:22:17,016 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.group_create +2020-03-06 10:22:17,016 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.datadir_init +2020-03-06 10:22:17,031 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.language_create +2020-03-06 10:22:17,031 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.privileges_grant +2020-03-06 10:22:17,047 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.schema_exists +2020-03-06 10:22:17,047 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.tablespace_exists +2020-03-06 10:22:17,063 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.user_exists +2020-03-06 10:22:17,126 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded quota.report +2020-03-06 10:22:17,175 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:22:17,270 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:22:17,329 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:22:17,378 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded selinux.getenforce +2020-03-06 10:22:17,455 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:22:17,471 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded snapper.diff +2020-03-06 10:22:17,471 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded splunk.list_users +2020-03-06 10:22:17,486 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded splunk_search.get +2020-03-06 10:22:17,566 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:22:17,612 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded tomcat.status +2020-03-06 10:22:17,612 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded trafficserver.set_config +2020-03-06 10:22:17,643 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded vagrant.version +2020-03-06 10:22:17,660 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded victorops.create_event +2020-03-06 10:22:17,675 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded virt.node_info +2020-03-06 10:22:17,801 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded win_iis.create_site +2020-03-06 10:22:17,848 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:22:17,863 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded wordpress.show_plugin +2020-03-06 10:22:17,879 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded x509.get_pem_entry +2020-03-06 10:22:17,894 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded xmpp.send_msg +2020-03-06 10:22:17,957 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded zk_concurrency.lock +2020-03-06 10:22:17,972 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded zonecfg.create +2020-03-06 10:22:17,989 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded zookeeper.create +2020-03-06 10:22:18,004 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:22:18,004 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}"' in directory 'C:\Users\vagrant' +2020-03-06 10:22:18,334 [salt.state :906 ][DEBUG ][5108] Last command return code: 0 +2020-03-06 10:22:18,334 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][5108] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:22:18,349 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5108] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:22:18,349 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5108] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:19:43,426 [salt.state :320 ][INFO ][3760] {'reg': {'Added': {'Entry': 'SystemDefaultTlsVersions', 'Owner': None, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Perms': {'Grant': None, 'Deny': None}, 'Value': 1}}} -2020-03-04 12:19:43,426 [salt.state :1997][INFO ][3760] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:19:43.426816 (duration_in_ms=8362.757) -2020-03-04 12:19:43,426 [salt.state :1819][INFO ][3760] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:19:43.426816 -2020-03-04 12:19:43,426 [salt.state :1852][INFO ][3760] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] -2020-03-04 12:19:43,443 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. -2020-03-04 12:19:43,443 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' -2020-03-04 12:19:43,708 [salt.state :889 ][DEBUG ][3760] Last command return code: 0 -2020-03-04 12:19:43,708 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3760] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 -2020-03-04 12:19:43,708 [salt.loaded.int.utils.win_dacl:1186][ERROR ][3760] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. +2020-03-06 10:22:18,365 [salt.state :320 ][INFO ][5108] {'reg': {'Added': {'Inheritance': True, 'Owner': None, 'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 10:22:18,365 [salt.state :2045][INFO ][5108] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:22:18.365344 (duration_in_ms=19549.321) +2020-03-06 10:22:18,365 [salt.state :1867][INFO ][5108] Running state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:22:18.365344 +2020-03-06 10:22:18,365 [salt.state :1900][INFO ][5108] Executing state reg.present for [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] +2020-03-06 10:22:18,380 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad reg.mod_run_check: 'reg.mod_run_check' is not available. +2020-03-06 10:22:18,380 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'powershell -command "if ([Enum]::GetNames([Net.SecurityProtocolType]) -contains 'Tls12') {exit 0} else {exit 1}' in directory 'C:\Users\vagrant' +2020-03-06 10:22:18,663 [salt.state :906 ][DEBUG ][5108] Last command return code: 0 +2020-03-06 10:22:18,663 [salt.loaded.int.utils.win_reg:726 ][DEBUG ][5108] Opened existing key: HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:22:18,678 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5108] Getting current permissions for HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 +2020-03-06 10:22:18,678 [salt.loaded.int.utils.win_dacl:1186][ERROR ][5108] Error resolving "S-1-15-3-1024-1065365936-1281604716-3511738428-1654721687-432734479-3232135806-4053264122-3456934681": No mapping between account names and security IDs was done. Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_dacl.py", line 1180, in get_name + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\win_dacl.py", line 1180, in get_name return win32security.LookupAccountSid(None, sid_obj)[0] pywintypes.error: (1332, 'LookupAccountSid', 'No mapping between account names and security IDs was done.') -2020-03-04 12:19:43,708 [salt.state :320 ][INFO ][3760] {'reg': {'Added': {'Entry': 'SystemDefaultTlsVersions', 'Owner': None, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Inheritance': True, 'Perms': {'Grant': None, 'Deny': None}, 'Value': 1}}} -2020-03-04 12:19:43,708 [salt.state :1997][INFO ][3760] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 12:19:43.708190 (duration_in_ms=281.374) -2020-03-04 12:19:43,708 [salt.state :1819][INFO ][3760] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:19:43.708190 -2020-03-04 12:19:43,723 [salt.state :1852][INFO ][3760] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] -2020-03-04 12:19:43,723 [salt.utils.http :234 ][DEBUG ][3760] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method -2020-03-04 12:19:43,723 [salt.utils.http :235 ][DEBUG ][3760] Using backend: tornado -2020-03-04 12:19:44,271 [salt.loaded.int.states.archive:976 ][DEBUG ][3760] file.cached: {'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'result': True, 'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip'} -2020-03-04 12:19:44,271 [salt.loaded.int.states.archive:91 ][DEBUG ][3760] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:19:44,271 [salt.loaded.int.states.archive:996 ][DEBUG ][3760] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected -2020-03-04 12:19:44,318 [salt.loaded.int.module.win_file:1463][DEBUG ][3760] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win -2020-03-04 12:19:44,334 [salt.loaded.int.module.win_file:1463][DEBUG ][3760] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng -2020-03-04 12:19:44,334 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][3760] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:19:44,334 [salt.loaded.int.states.archive:1247][DEBUG ][3760] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ -2020-03-04 12:19:44,630 [salt.loaded.int.states.archive:1543][DEBUG ][3760] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip -2020-03-04 12:19:44,630 [salt.state :320 ][INFO ][3760] {'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\'], 'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls']} -2020-03-04 12:19:44,630 [salt.state :1997][INFO ][3760] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 12:19:44.630447 (duration_in_ms=922.257) -2020-03-04 12:19:44,630 [salt.state :1819][INFO ][3760] Running state [rename-extract] at time 12:19:44.630447 -2020-03-04 12:19:44,630 [salt.state :1852][INFO ][3760] Executing state module.run for [rename-extract] -2020-03-04 12:19:44,630 [salt.state :320 ][INFO ][3760] {'file.rename': True} -2020-03-04 12:19:44,630 [salt.state :1997][INFO ][3760] Completed state [rename-extract] at time 12:19:44.630447 (duration_in_ms=0.0) -2020-03-04 12:19:44,646 [salt.state :1819][INFO ][3760] Running state [pkg.refresh_db] at time 12:19:44.646596 -2020-03-04 12:19:44,646 [salt.state :1852][INFO ][3760] Executing state module.run for [pkg.refresh_db] -2020-03-04 12:19:44,646 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][3760] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:13.601654) -2020-03-04 12:19:44,646 [salt.loaded.int.module.win_pkg:935 ][INFO ][3760] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:19:44,646 [salt.loaded.int.module.win_pkg:954 ][INFO ][3760] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:19:44,646 [salt.fileclient :234 ][INFO ][3760] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:19:44,646 [salt.fileserver :159 ][DEBUG ][3760] Returning file list from cache: age=15 cache_time=20 C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\file_lists\roots\base.p -2020-03-04 12:19:44,677 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 12:19:44,677 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 12:19:44,709 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: Volume in drive C is Windows 2019 - Volume Serial Number is 7CC7-4EE7 - - Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng - -File Not Found -2020-03-04 12:19:44,709 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][3760] retcode: 1 -2020-03-04 12:19:44,709 [salt.state :938 ][DEBUG ][3760] Last command return code: 1 -2020-03-04 12:19:44,709 [salt.state :322 ][ERROR ][3760] {'pkg.refresh_db': {'success': 0, 'total': 0, 'failed': 0}} -2020-03-04 12:19:44,709 [salt.state :1997][INFO ][3760] Completed state [pkg.refresh_db] at time 12:19:44.709597 (duration_in_ms=63.001) -2020-03-04 12:19:44,725 [salt.state :2009][INFO ][3760] State result does not match retry until value, state will be re-run in 5 seconds -2020-03-04 12:19:49,674 [salt.state :1819][INFO ][3760] Running state [pkg.refresh_db] at time 12:19:49.674529 -2020-03-04 12:19:49,674 [salt.state :1852][INFO ][3760] Executing state module.run for [pkg.refresh_db] -2020-03-04 12:19:49,674 [salt.loaded.int.module.win_pkg:931 ][DEBUG ][3760] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:05.012806) -2020-03-04 12:19:49,674 [salt.loaded.int.module.win_pkg:935 ][INFO ][3760] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' -2020-03-04 12:19:49,674 [salt.loaded.int.module.win_pkg:954 ][INFO ][3760] Fetching *.sls files from salt://win/repo-ng/ -2020-03-04 12:19:49,674 [salt.fileclient :234 ][INFO ][3760] Caching directory 'win/repo-ng/' for environment 'base' -2020-03-04 12:19:49,787 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:19:49,787 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:19:49,801 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:19:49,801 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,801 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' -2020-03-04 12:19:49,801 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:19:49,816 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:19:49,816 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:19:49,816 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,816 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' -2020-03-04 12:19:49,829 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:19:49,829 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:19:49,829 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:19:49,829 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,829 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' -2020-03-04 12:19:49,844 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:19:49,844 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:19:49,844 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:19:49,844 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,844 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' -2020-03-04 12:19:49,859 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:19:49,859 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:19:49,859 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:19:49,859 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,859 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' -2020-03-04 12:19:49,875 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:19:49,875 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:19:49,875 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:19:49,875 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,875 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' -2020-03-04 12:19:49,890 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:19:49,890 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:19:49,890 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:19:49,890 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,890 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' -2020-03-04 12:19:49,907 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:19:49,907 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:19:49,907 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:19:49,907 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,907 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' -2020-03-04 12:19:49,922 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:19:49,922 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:19:49,922 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:19:49,922 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,922 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' -2020-03-04 12:19:49,937 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:19:49,937 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:19:49,937 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:19:49,937 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,937 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' -2020-03-04 12:19:49,953 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:19:49,953 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:19:49,953 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:19:49,953 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,953 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' -2020-03-04 12:19:49,968 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:19:49,968 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:19:49,968 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:19:49,968 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,984 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' -2020-03-04 12:19:49,984 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:19:49,999 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:19:49,999 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:19:49,999 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:49,999 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' -2020-03-04 12:19:50,016 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:19:50,016 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:19:50,016 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:19:50,016 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,016 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' -2020-03-04 12:19:50,031 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:19:50,031 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:19:50,031 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:19:50,031 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,031 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' -2020-03-04 12:19:50,047 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:19:50,047 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:19:50,047 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:19:50,047 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,047 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' -2020-03-04 12:19:50,061 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:19:50,061 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:19:50,061 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:19:50,061 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,061 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' -2020-03-04 12:19:50,079 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:19:50,079 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:19:50,079 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:19:50,079 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,079 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' -2020-03-04 12:19:50,093 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:19:50,093 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:19:50,093 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:19:50,093 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,110 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' -2020-03-04 12:19:50,110 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:19:50,110 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:19:50,110 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:19:50,110 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,125 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' -2020-03-04 12:19:50,125 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:19:50,125 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:19:50,125 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:19:50,125 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,140 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' -2020-03-04 12:19:50,140 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:19:50,140 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:19:50,140 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:19:50,140 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,157 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' -2020-03-04 12:19:50,157 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:19:50,157 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:19:50,157 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:19:50,157 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,171 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' -2020-03-04 12:19:50,187 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:19:50,187 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:19:50,187 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:19:50,187 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,187 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' -2020-03-04 12:19:50,203 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:19:50,203 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:19:50,203 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:19:50,203 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,203 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' -2020-03-04 12:19:50,220 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:19:50,220 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:19:50,220 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:19:50,220 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,220 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' -2020-03-04 12:19:50,233 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:19:50,233 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:19:50,233 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:19:50,233 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,233 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' -2020-03-04 12:19:50,250 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:19:50,250 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:19:50,250 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:19:50,250 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,250 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' -2020-03-04 12:19:50,265 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:19:50,265 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:19:50,265 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:19:50,265 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,265 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' -2020-03-04 12:19:50,283 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:19:50,283 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:19:50,283 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:19:50,283 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,296 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' -2020-03-04 12:19:50,296 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:19:50,296 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:19:50,296 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:19:50,296 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,313 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' -2020-03-04 12:19:50,313 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:19:50,313 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:19:50,313 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:19:50,313 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,327 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' -2020-03-04 12:19:50,327 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:19:50,327 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:19:50,327 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:19:50,327 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,344 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' -2020-03-04 12:19:50,344 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:19:50,358 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:19:50,358 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:19:50,358 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,358 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' -2020-03-04 12:19:50,374 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:19:50,374 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:19:50,374 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:19:50,374 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,391 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' -2020-03-04 12:19:50,391 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:19:50,391 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:19:50,391 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:19:50,391 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,406 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' -2020-03-04 12:19:50,406 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:19:50,406 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:19:50,406 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:19:50,422 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,422 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' -2020-03-04 12:19:50,422 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:19:50,437 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:19:50,437 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:19:50,437 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,437 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' -2020-03-04 12:19:50,452 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:19:50,452 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:19:50,452 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:19:50,452 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,452 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' -2020-03-04 12:19:50,469 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:19:50,469 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:19:50,469 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:19:50,469 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,469 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' -2020-03-04 12:19:50,485 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:19:50,485 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:19:50,485 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:19:50,485 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,485 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' -2020-03-04 12:19:50,500 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:19:50,500 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:19:50,500 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:19:50,500 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,500 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' -2020-03-04 12:19:50,515 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:19:50,515 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:19:50,515 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:19:50,515 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,515 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' -2020-03-04 12:19:50,534 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:19:50,534 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:19:50,534 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:19:50,534 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,546 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' -2020-03-04 12:19:50,546 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:19:50,546 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:19:50,546 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:19:50,546 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,562 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' -2020-03-04 12:19:50,578 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:19:50,578 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:19:50,578 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:19:50,578 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,578 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' -2020-03-04 12:19:50,594 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:19:50,594 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:19:50,594 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:19:50,594 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,594 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' -2020-03-04 12:19:50,609 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:19:50,609 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:19:50,609 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:19:50,609 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,609 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' -2020-03-04 12:19:50,625 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:19:50,625 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:19:50,625 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:19:50,625 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,625 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' -2020-03-04 12:19:50,642 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:19:50,642 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:19:50,642 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:19:50,642 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,642 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' -2020-03-04 12:19:50,655 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:19:50,655 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:19:50,655 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:19:50,655 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,655 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' -2020-03-04 12:19:50,671 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:19:50,671 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:19:50,671 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:19:50,671 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,671 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' -2020-03-04 12:19:50,688 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:19:50,688 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:19:50,688 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:19:50,688 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,688 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' -2020-03-04 12:19:50,703 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:19:50,703 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:19:50,703 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:19:50,703 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,719 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' -2020-03-04 12:19:50,734 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:19:50,750 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:19:50,750 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:19:50,750 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,750 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' -2020-03-04 12:19:50,750 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:19:50,750 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:19:50,765 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:19:50,765 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,765 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' -2020-03-04 12:19:50,781 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:19:50,781 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:19:50,781 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:19:50,781 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,781 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' -2020-03-04 12:19:50,796 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:19:50,796 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:19:50,796 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:19:50,796 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,813 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' -2020-03-04 12:19:50,813 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:19:50,813 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:19:50,813 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:19:50,813 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,827 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' -2020-03-04 12:19:50,827 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:19:50,827 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:19:50,827 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:19:50,827 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,843 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' -2020-03-04 12:19:50,843 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:19:50,843 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:19:50,843 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:19:50,869 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,875 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' -2020-03-04 12:19:50,875 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:19:50,875 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:19:50,875 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:19:50,875 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,891 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' -2020-03-04 12:19:50,891 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:19:50,891 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:19:50,891 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:19:50,891 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,906 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' -2020-03-04 12:19:50,906 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:19:50,906 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:19:50,906 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:19:50,922 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,922 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' -2020-03-04 12:19:50,922 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:19:50,937 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:19:50,937 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:19:50,937 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,937 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' -2020-03-04 12:19:50,953 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:19:50,953 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:19:50,953 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:19:50,953 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,953 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' -2020-03-04 12:19:50,968 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:19:50,968 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:19:50,968 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:19:50,968 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,968 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' -2020-03-04 12:19:50,985 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:19:50,985 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:19:50,985 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:19:50,985 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:50,999 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' -2020-03-04 12:19:50,999 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:19:51,015 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:19:51,015 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:19:51,015 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,015 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' -2020-03-04 12:19:51,031 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:19:51,031 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:19:51,031 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:19:51,031 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,031 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' -2020-03-04 12:19:51,047 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:19:51,047 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:19:51,047 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:19:51,047 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,047 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' -2020-03-04 12:19:51,064 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:19:51,064 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:19:51,064 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:19:51,064 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,079 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' -2020-03-04 12:19:51,079 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:19:51,079 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:19:51,079 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:19:51,079 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,094 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' -2020-03-04 12:19:51,094 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:19:51,094 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:19:51,094 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:19:51,094 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,111 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' -2020-03-04 12:19:51,111 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:19:51,111 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:19:51,111 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:19:51,126 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,126 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' -2020-03-04 12:19:51,126 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:19:51,126 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:19:51,142 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:19:51,142 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,142 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' -2020-03-04 12:19:51,156 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:19:51,156 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:19:51,156 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:19:51,156 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,156 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' -2020-03-04 12:19:51,172 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:19:51,172 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:19:51,172 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:19:51,172 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,172 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' -2020-03-04 12:19:51,187 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:19:51,187 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:19:51,187 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:19:51,187 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,202 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' -2020-03-04 12:19:51,202 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:19:51,202 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:19:51,202 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:19:51,202 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,218 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' -2020-03-04 12:19:51,218 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:19:51,218 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:19:51,218 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:19:51,218 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,234 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' -2020-03-04 12:19:51,234 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:19:51,234 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:19:51,234 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:19:51,250 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,250 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' -2020-03-04 12:19:51,250 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:19:51,265 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:19:51,265 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:19:51,265 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,265 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' -2020-03-04 12:19:51,281 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:19:51,281 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:19:51,281 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:19:51,281 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,281 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' -2020-03-04 12:19:51,297 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:19:51,297 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:19:51,297 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:19:51,297 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,297 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' -2020-03-04 12:19:51,312 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:19:51,312 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:19:51,312 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:19:51,312 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,328 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' -2020-03-04 12:19:51,328 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:19:51,328 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:19:51,328 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:19:51,328 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,343 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' -2020-03-04 12:19:51,343 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:19:51,343 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:19:51,343 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:19:51,359 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,359 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' -2020-03-04 12:19:51,359 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:19:51,375 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:19:51,375 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:19:51,375 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,375 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' -2020-03-04 12:19:51,391 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:19:51,391 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:19:51,391 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:19:51,391 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,391 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' -2020-03-04 12:19:51,407 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:19:51,407 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:19:51,407 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:19:51,407 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,407 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' -2020-03-04 12:19:51,422 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:19:51,422 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:19:51,422 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:19:51,422 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,437 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' -2020-03-04 12:19:51,437 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:19:51,437 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:19:51,437 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:19:51,437 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,453 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' -2020-03-04 12:19:51,453 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:19:51,453 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:19:51,469 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:19:51,469 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,469 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' -2020-03-04 12:19:51,485 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:19:51,485 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:19:51,485 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:19:51,485 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,485 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' -2020-03-04 12:19:51,501 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:19:51,501 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:19:51,501 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:19:51,501 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,501 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' -2020-03-04 12:19:51,517 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:19:51,517 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:19:51,517 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:19:51,517 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,532 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' -2020-03-04 12:19:51,532 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:19:51,532 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:19:51,532 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:19:51,532 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,548 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' -2020-03-04 12:19:51,548 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:19:51,562 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:19:51,562 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:19:51,562 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,562 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' -2020-03-04 12:19:51,578 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:19:51,578 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:19:51,578 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:19:51,578 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,578 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' -2020-03-04 12:19:51,594 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:19:51,594 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:19:51,594 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:19:51,594 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,609 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' -2020-03-04 12:19:51,609 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:19:51,609 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:19:51,609 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:19:51,609 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,626 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' -2020-03-04 12:19:51,626 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:19:51,640 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:19:51,640 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:19:51,640 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,640 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' -2020-03-04 12:19:51,657 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:19:51,657 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:19:51,657 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:19:51,657 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,657 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' -2020-03-04 12:19:51,672 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:19:51,672 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:19:51,672 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:19:51,672 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,687 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' -2020-03-04 12:19:51,687 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:19:51,687 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:19:51,687 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:19:51,687 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,704 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' -2020-03-04 12:19:51,719 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:19:51,719 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:19:51,719 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:19:51,719 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,719 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' -2020-03-04 12:19:51,735 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:19:51,735 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:19:51,735 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:19:51,735 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,750 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' -2020-03-04 12:19:51,750 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:19:51,750 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:19:51,750 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:19:51,750 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,766 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' -2020-03-04 12:19:51,766 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:19:51,781 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:19:51,781 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:19:51,781 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,781 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' -2020-03-04 12:19:51,797 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:19:51,797 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:19:51,797 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:19:51,797 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,797 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' -2020-03-04 12:19:51,812 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:19:51,812 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:19:51,812 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:19:51,812 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,829 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' -2020-03-04 12:19:51,844 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:19:51,844 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:19:51,844 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:19:51,844 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,859 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' -2020-03-04 12:19:51,859 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:19:51,859 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:19:51,859 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:19:51,875 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,875 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' -2020-03-04 12:19:51,890 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:19:51,890 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:19:51,890 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:19:51,890 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,890 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' -2020-03-04 12:19:51,907 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:19:51,907 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:19:51,907 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:19:51,907 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,922 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' -2020-03-04 12:19:51,922 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:19:51,922 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:19:51,922 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:19:51,922 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,938 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' -2020-03-04 12:19:51,938 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:19:51,938 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:19:51,954 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:19:51,954 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,954 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' -2020-03-04 12:19:51,969 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:19:51,969 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:19:51,969 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:19:51,969 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:51,984 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' -2020-03-04 12:19:51,984 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:19:51,984 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:19:51,984 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:19:51,984 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,001 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' -2020-03-04 12:19:52,016 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:19:52,016 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:19:52,016 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:19:52,016 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,016 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' -2020-03-04 12:19:52,032 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:19:52,032 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:19:52,032 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:19:52,032 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,047 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' -2020-03-04 12:19:52,047 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:19:52,047 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:19:52,047 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:19:52,047 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,062 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' -2020-03-04 12:19:52,078 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:19:52,078 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:19:52,078 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:19:52,078 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,078 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' -2020-03-04 12:19:52,094 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:19:52,094 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:19:52,094 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:19:52,094 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,109 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' -2020-03-04 12:19:52,125 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:19:52,125 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:19:52,125 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:19:52,125 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,125 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' -2020-03-04 12:19:52,142 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:19:52,142 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:19:52,142 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:19:52,142 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,156 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' -2020-03-04 12:19:52,156 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:19:52,156 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:19:52,156 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:19:52,156 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,174 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' -2020-03-04 12:19:52,187 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:19:52,187 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:19:52,187 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:19:52,187 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,187 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' -2020-03-04 12:19:52,203 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:19:52,203 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:19:52,203 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:19:52,203 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,219 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' -2020-03-04 12:19:52,219 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:19:52,235 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:19:52,235 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:19:52,235 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,235 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' -2020-03-04 12:19:52,251 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:19:52,251 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:19:52,251 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:19:52,251 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,266 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' -2020-03-04 12:19:52,266 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:19:52,266 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:19:52,266 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:19:52,266 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,283 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' -2020-03-04 12:19:52,283 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,297 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,297 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,297 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,297 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,313 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,313 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,313 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,313 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,313 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,329 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:19:52,329 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:19:52,329 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:19:52,329 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,344 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' -2020-03-04 12:19:52,344 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:19:52,344 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:19:52,344 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:19:52,360 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,360 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' -2020-03-04 12:19:52,376 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:19:52,376 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:19:52,376 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:19:52,376 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,376 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' -2020-03-04 12:19:52,391 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:19:52,391 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:19:52,391 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:19:52,391 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,407 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' -2020-03-04 12:19:52,407 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:19:52,407 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:19:52,407 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:19:52,407 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,423 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' -2020-03-04 12:19:52,437 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:19:52,437 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:19:52,437 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:19:52,437 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,437 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' -2020-03-04 12:19:52,453 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,453 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,453 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,453 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,469 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' -2020-03-04 12:19:52,469 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,469 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,469 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,469 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,485 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,485 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:19:52,500 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:19:52,500 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:19:52,500 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,500 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' -2020-03-04 12:19:52,517 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,517 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,517 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,517 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,517 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' -2020-03-04 12:19:52,532 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:19:52,532 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:19:52,532 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:19:52,532 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,547 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' -2020-03-04 12:19:52,547 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:19:52,547 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:19:52,547 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:19:52,563 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,563 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' -2020-03-04 12:19:52,578 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:19:52,578 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:19:52,578 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:19:52,578 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,578 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' -2020-03-04 12:19:52,595 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:19:52,595 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:19:52,595 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:19:52,595 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,595 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' -2020-03-04 12:19:52,610 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:19:52,610 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:19:52,610 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:19:52,610 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,626 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' -2020-03-04 12:19:52,626 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:19:52,640 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:19:52,640 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:19:52,640 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,640 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' -2020-03-04 12:19:52,657 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:19:52,657 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:19:52,657 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:19:52,657 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,657 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' -2020-03-04 12:19:52,671 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:19:52,671 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:19:52,671 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:19:52,671 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,688 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' -2020-03-04 12:19:52,688 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:19:52,688 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:19:52,688 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:19:52,688 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,704 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' -2020-03-04 12:19:52,704 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:19:52,719 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:19:52,719 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:19:52,719 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,719 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' -2020-03-04 12:19:52,736 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:19:52,736 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:19:52,736 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:19:52,736 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,736 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' -2020-03-04 12:19:52,751 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:19:52,751 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:19:52,751 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:19:52,751 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,766 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' -2020-03-04 12:19:52,766 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:19:52,766 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:19:52,781 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:19:52,781 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,781 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' -2020-03-04 12:19:52,797 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:19:52,797 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:19:52,797 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:19:52,797 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,797 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' -2020-03-04 12:19:52,813 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:19:52,813 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:19:52,813 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:19:52,813 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,828 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' -2020-03-04 12:19:52,828 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:19:52,828 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:19:52,828 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:19:52,828 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,844 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' -2020-03-04 12:19:52,844 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:19:52,859 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:19:52,859 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:19:52,859 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,876 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' -2020-03-04 12:19:52,876 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:19:52,876 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:19:52,891 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:19:52,891 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,891 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' -2020-03-04 12:19:52,906 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:19:52,906 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:19:52,906 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:19:52,906 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,906 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' -2020-03-04 12:19:52,923 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:19:52,923 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:19:52,923 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:19:52,923 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,938 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' -2020-03-04 12:19:52,938 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:19:52,938 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:19:52,938 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:19:52,938 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,954 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' -2020-03-04 12:19:52,954 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:19:52,954 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:19:52,970 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:19:52,970 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,970 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' -2020-03-04 12:19:52,985 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:19:52,985 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:19:52,985 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:19:52,985 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:52,985 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' -2020-03-04 12:19:53,001 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:19:53,001 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:19:53,001 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:19:53,001 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,016 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' -2020-03-04 12:19:53,016 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:19:53,016 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:19:53,016 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:19:53,032 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,032 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' -2020-03-04 12:19:53,047 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:19:53,047 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:19:53,047 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:19:53,047 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,047 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' -2020-03-04 12:19:53,063 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:19:53,063 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:19:53,063 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:19:53,063 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,078 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' -2020-03-04 12:19:53,078 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:19:53,078 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:19:53,094 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:19:53,094 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,094 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' -2020-03-04 12:19:53,094 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:19:53,113 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:19:53,113 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:19:53,113 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,113 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' -2020-03-04 12:19:53,127 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:19:53,127 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:19:53,127 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:19:53,127 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,142 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' -2020-03-04 12:19:53,142 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:19:53,142 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:19:53,142 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:19:53,142 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,159 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' -2020-03-04 12:19:53,159 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:19:53,172 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:19:53,172 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:19:53,172 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,172 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' -2020-03-04 12:19:53,188 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:19:53,188 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:19:53,188 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:19:53,188 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,188 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' -2020-03-04 12:19:53,204 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:19:53,219 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:19:53,219 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:19:53,219 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,219 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' -2020-03-04 12:19:53,235 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:19:53,235 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:19:53,235 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:19:53,235 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,235 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' -2020-03-04 12:19:53,250 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:19:53,250 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:19:53,250 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:19:53,250 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,266 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' -2020-03-04 12:19:53,266 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:19:53,266 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:19:53,266 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:19:53,282 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,282 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' -2020-03-04 12:19:53,297 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:19:53,297 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:19:53,297 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:19:53,297 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,297 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' -2020-03-04 12:19:53,312 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:19:53,312 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:19:53,312 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:19:53,312 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,312 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' -2020-03-04 12:19:53,329 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:19:53,329 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:19:53,329 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:19:53,329 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,345 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' -2020-03-04 12:19:53,345 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:19:53,345 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:19:53,360 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:19:53,360 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,360 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' -2020-03-04 12:19:53,376 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:19:53,376 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:19:53,376 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:19:53,376 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,376 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' -2020-03-04 12:19:53,390 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:19:53,390 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:19:53,390 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:19:53,390 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,407 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' -2020-03-04 12:19:53,422 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:19:53,422 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:19:53,422 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:19:53,422 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,439 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' -2020-03-04 12:19:53,439 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:19:53,454 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:19:53,454 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:19:53,454 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,454 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' -2020-03-04 12:19:53,470 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:19:53,470 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:19:53,470 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:19:53,470 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,486 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' -2020-03-04 12:19:53,486 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:19:53,500 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:19:53,500 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:19:53,500 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,500 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' -2020-03-04 12:19:53,517 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:19:53,517 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:19:53,517 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:19:53,517 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,517 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' -2020-03-04 12:19:53,532 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:19:53,532 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:19:53,532 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:19:53,532 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,547 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' -2020-03-04 12:19:53,547 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:19:53,563 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:19:53,563 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:19:53,563 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,563 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' -2020-03-04 12:19:53,579 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:19:53,579 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:19:53,579 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:19:53,579 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,579 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' -2020-03-04 12:19:53,595 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:19:53,595 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:19:53,595 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:19:53,595 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,610 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' -2020-03-04 12:19:53,610 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:19:53,625 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:19:53,625 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:19:53,625 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,625 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' -2020-03-04 12:19:53,642 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:19:53,642 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:19:53,642 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:19:53,642 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,642 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' -2020-03-04 12:19:53,656 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:19:53,656 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:19:53,656 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:19:53,656 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,672 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' -2020-03-04 12:19:53,672 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:19:53,687 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:19:53,687 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:19:53,687 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,687 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' -2020-03-04 12:19:53,705 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:19:53,705 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:19:53,705 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:19:53,705 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,719 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' -2020-03-04 12:19:53,719 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:19:53,719 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:19:53,719 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:19:53,719 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,736 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' -2020-03-04 12:19:53,750 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:19:53,750 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:19:53,750 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:19:53,750 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,750 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' -2020-03-04 12:19:53,766 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:19:53,766 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:19:53,766 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:19:53,766 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,781 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' -2020-03-04 12:19:53,781 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:19:53,781 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:19:53,781 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:19:53,781 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,798 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' -2020-03-04 12:19:53,812 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:19:53,812 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:19:53,812 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:19:53,812 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,812 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' -2020-03-04 12:19:53,830 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:19:53,830 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:19:53,830 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:19:53,830 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,844 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' -2020-03-04 12:19:53,844 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:19:53,844 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:19:53,844 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:19:53,844 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,860 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' -2020-03-04 12:19:53,876 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:19:53,876 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:19:53,876 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:19:53,876 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,876 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' -2020-03-04 12:19:53,891 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:19:53,891 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:19:53,891 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:19:53,891 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,907 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' -2020-03-04 12:19:53,907 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:19:53,907 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:19:53,907 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:19:53,922 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,922 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' -2020-03-04 12:19:53,937 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:19:53,937 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:19:53,937 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:19:53,937 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,937 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' -2020-03-04 12:19:53,954 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:19:53,954 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:19:53,954 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:19:53,970 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,970 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' -2020-03-04 12:19:53,985 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:19:53,985 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:19:53,985 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:19:53,985 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:53,985 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' -2020-03-04 12:19:54,000 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:19:54,000 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:19:54,000 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:19:54,000 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,016 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' -2020-03-04 12:19:54,016 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:19:54,016 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:19:54,016 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:19:54,033 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,033 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' -2020-03-04 12:19:54,047 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:19:54,047 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:19:54,047 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:19:54,047 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,047 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' -2020-03-04 12:19:54,063 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:19:54,063 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:19:54,063 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:19:54,063 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,078 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' -2020-03-04 12:19:54,078 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:19:54,094 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:19:54,094 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:19:54,094 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,094 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' -2020-03-04 12:19:54,111 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:19:54,111 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:19:54,111 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:19:54,111 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,126 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' -2020-03-04 12:19:54,126 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:19:54,142 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:19:54,142 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:19:54,142 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,142 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' -2020-03-04 12:19:54,158 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:19:54,158 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:19:54,158 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:19:54,158 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,172 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' -2020-03-04 12:19:54,172 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:19:54,172 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:19:54,172 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:19:54,188 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,188 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' -2020-03-04 12:19:54,203 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:19:54,203 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:19:54,203 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:19:54,203 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,203 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' -2020-03-04 12:19:54,220 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:19:54,220 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:19:54,220 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:19:54,220 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,234 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' -2020-03-04 12:19:54,234 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:19:54,234 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:19:54,250 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:19:54,250 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,250 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' -2020-03-04 12:19:54,266 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:19:54,266 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:19:54,266 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:19:54,266 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,266 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' -2020-03-04 12:19:54,281 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:19:54,281 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:19:54,281 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:19:54,281 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,298 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' -2020-03-04 12:19:54,298 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:19:54,298 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:19:54,298 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:19:54,313 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,313 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' -2020-03-04 12:19:54,329 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:19:54,329 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:19:54,329 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:19:54,329 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,329 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' -2020-03-04 12:19:54,344 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:19:54,344 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:19:54,344 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:19:54,344 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,360 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' -2020-03-04 12:19:54,360 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:19:54,360 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:19:54,375 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:19:54,375 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,375 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' -2020-03-04 12:19:54,392 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:19:54,392 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:19:54,392 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:19:54,392 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,392 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' -2020-03-04 12:19:54,408 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:19:54,408 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:19:54,408 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:19:54,408 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,422 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' -2020-03-04 12:19:54,422 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:19:54,422 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:19:54,422 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:19:54,422 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,439 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' -2020-03-04 12:19:54,454 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:19:54,454 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:19:54,454 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:19:54,454 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,454 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' -2020-03-04 12:19:54,470 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:19:54,470 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:19:54,470 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:19:54,470 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,484 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' -2020-03-04 12:19:54,484 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:19:54,484 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:19:54,484 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:19:54,484 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,502 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' -2020-03-04 12:19:54,502 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:19:54,502 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:19:54,516 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:19:54,516 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,516 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' -2020-03-04 12:19:54,533 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:19:54,533 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:19:54,533 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:19:54,533 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,533 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' -2020-03-04 12:19:54,547 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:19:54,547 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:19:54,547 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:19:54,547 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,563 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' -2020-03-04 12:19:54,580 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:19:54,580 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:19:54,580 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:19:54,580 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,580 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' -2020-03-04 12:19:54,595 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:19:54,595 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:19:54,595 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:19:54,595 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,610 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' -2020-03-04 12:19:54,610 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:19:54,610 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:19:54,610 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:19:54,610 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,626 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' -2020-03-04 12:19:54,626 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:19:54,641 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:19:54,641 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:19:54,641 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,641 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' -2020-03-04 12:19:54,658 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:19:54,658 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:19:54,658 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:19:54,658 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,672 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' -2020-03-04 12:19:54,672 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:19:54,688 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:19:54,688 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:19:54,688 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,688 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' -2020-03-04 12:19:54,703 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:19:54,703 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:19:54,703 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:19:54,703 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,720 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' -2020-03-04 12:19:54,735 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:19:54,735 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:19:54,735 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:19:54,735 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,751 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' -2020-03-04 12:19:54,751 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:19:54,751 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:19:54,751 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:19:54,751 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,768 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' -2020-03-04 12:19:54,768 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:19:54,782 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:19:54,782 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:19:54,782 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,782 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' -2020-03-04 12:19:54,799 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:19:54,799 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:19:54,799 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:19:54,799 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,813 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' -2020-03-04 12:19:54,813 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:19:54,813 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:19:54,813 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:19:54,813 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,829 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' -2020-03-04 12:19:54,829 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:19:54,844 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:19:54,844 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:19:54,844 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,844 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' -2020-03-04 12:19:54,860 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:19:54,860 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:19:54,860 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:19:54,860 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,876 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' -2020-03-04 12:19:54,876 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:19:54,876 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:19:54,876 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:19:54,876 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,891 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' -2020-03-04 12:19:54,891 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:19:54,908 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:19:54,908 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:19:54,908 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,908 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' -2020-03-04 12:19:54,923 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:19:54,923 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:19:54,923 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:19:54,923 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,938 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' -2020-03-04 12:19:54,938 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:19:54,938 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:19:54,953 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:19:54,953 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,953 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' -2020-03-04 12:19:54,969 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:19:54,969 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:19:54,969 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:19:54,969 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:54,969 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' -2020-03-04 12:19:54,986 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:19:54,986 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:19:54,986 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:19:54,986 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,000 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' -2020-03-04 12:19:55,000 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:19:55,016 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:19:55,016 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:19:55,016 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,016 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' -2020-03-04 12:19:55,032 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:19:55,032 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:19:55,032 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:19:55,032 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,032 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' -2020-03-04 12:19:55,047 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:19:55,047 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:19:55,047 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:19:55,047 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,064 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' -2020-03-04 12:19:55,064 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:19:55,078 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:19:55,078 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:19:55,078 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,078 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' -2020-03-04 12:19:55,094 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:19:55,094 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:19:55,094 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:19:55,094 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,110 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' -2020-03-04 12:19:55,110 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:19:55,110 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:19:55,110 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:19:55,110 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,126 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' -2020-03-04 12:19:55,126 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:19:55,142 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:19:55,142 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:19:55,142 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,142 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' -2020-03-04 12:19:55,156 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:19:55,156 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:19:55,156 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:19:55,156 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,156 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' -2020-03-04 12:19:55,174 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:19:55,174 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:19:55,174 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:19:55,174 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,189 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' -2020-03-04 12:19:55,189 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:19:55,189 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:19:55,205 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:19:55,205 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,205 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' -2020-03-04 12:19:55,219 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:19:55,219 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:19:55,236 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:19:55,236 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,236 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' -2020-03-04 12:19:55,250 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:19:55,250 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:19:55,250 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:19:55,250 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,250 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' -2020-03-04 12:19:55,266 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:19:55,266 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:19:55,266 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:19:55,266 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,283 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' -2020-03-04 12:19:55,283 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:19:55,283 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:19:55,299 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:19:55,299 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,299 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' -2020-03-04 12:19:55,314 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:19:55,314 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:19:55,314 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:19:55,314 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,314 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' -2020-03-04 12:19:55,329 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:19:55,329 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:19:55,329 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:19:55,329 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,345 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' -2020-03-04 12:19:55,345 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:19:55,345 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:19:55,361 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:19:55,361 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,361 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' -2020-03-04 12:19:55,376 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:19:55,376 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:19:55,376 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:19:55,376 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,376 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' -2020-03-04 12:19:55,392 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:19:55,392 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:19:55,392 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:19:55,392 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,407 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' -2020-03-04 12:19:55,407 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:19:55,422 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:19:55,422 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:19:55,422 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,422 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' -2020-03-04 12:19:55,438 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:19:55,438 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:19:55,438 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:19:55,438 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,438 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' -2020-03-04 12:19:55,454 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:19:55,454 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:19:55,454 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:19:55,454 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,470 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' -2020-03-04 12:19:55,470 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:19:55,470 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:19:55,470 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:19:55,470 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,486 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' -2020-03-04 12:19:55,500 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:19:55,500 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:19:55,500 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:19:55,500 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,500 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' -2020-03-04 12:19:55,517 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:19:55,517 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:19:55,517 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:19:55,517 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,533 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' -2020-03-04 12:19:55,533 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:19:55,533 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:19:55,533 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:19:55,533 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,548 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' -2020-03-04 12:19:55,564 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:19:55,564 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:19:55,564 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:19:55,564 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,564 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' -2020-03-04 12:19:55,579 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:19:55,579 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:19:55,579 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:19:55,579 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,595 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' -2020-03-04 12:19:55,595 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:19:55,595 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:19:55,595 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:19:55,611 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,611 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' -2020-03-04 12:19:55,626 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:19:55,626 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:19:55,626 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:19:55,626 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,626 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' -2020-03-04 12:19:55,642 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:19:55,642 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:19:55,642 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:19:55,642 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,657 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' -2020-03-04 12:19:55,657 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:19:55,657 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:19:55,657 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:19:55,657 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,673 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' -2020-03-04 12:19:55,673 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:19:55,688 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:19:55,688 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:19:55,688 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,688 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' -2020-03-04 12:19:55,704 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:19:55,704 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:19:55,704 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:19:55,704 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,720 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' -2020-03-04 12:19:55,720 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:19:55,720 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:19:55,735 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:19:55,735 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,735 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' -2020-03-04 12:19:55,750 [salt.fileclient :1093][DEBUG ][3760] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:19:55,750 [salt.fileclient :1101][DEBUG ][3760] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:19:55,750 [salt.fileclient :1121][DEBUG ][3760] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:19:55,750 [salt.fileclient :1149][DEBUG ][3760] No dest file found -2020-03-04 12:19:55,750 [salt.fileclient :1230][INFO ][3760] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' -2020-03-04 12:19:55,766 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,766 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,766 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls -2020-03-04 12:19:55,782 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,782 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,782 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: +2020-03-06 10:22:18,678 [salt.state :320 ][INFO ][5108] {'reg': {'Added': {'Inheritance': True, 'Owner': None, 'Value': 1, 'Key': 'HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319', 'Perms': {'Deny': None, 'Grant': None}, 'Entry': 'SystemDefaultTlsVersions'}}} +2020-03-06 10:22:18,678 [salt.state :2045][INFO ][5108] Completed state [HKLM\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] at time 10:22:18.678810 (duration_in_ms=313.466) +2020-03-06 10:22:18,678 [salt.state :1867][INFO ][5108] Running state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:22:18.678810 +2020-03-06 10:22:18,678 [salt.state :1900][INFO ][5108] Executing state archive.extracted for [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] +2020-03-06 10:22:18,694 [salt.utils.http :234 ][DEBUG ][5108] Requesting URL https://github.com/saltstack/salt-winrepo-ng/archive/master.zip using GET method +2020-03-06 10:22:18,694 [salt.utils.http :235 ][DEBUG ][5108] Using backend: tornado +2020-03-06 10:22:19,210 [salt.loaded.int.states.archive:1039][DEBUG ][5108] file.cached: {'changes': {'hash': {'new': 'f004cac093e2ec281bfcbfb8a809007029ba53e60e9f218e98b408cbf7166f36', 'old': None}}, 'name': 'https://github.com/saltstack/salt-winrepo-ng/archive/master.zip', 'comment': 'File is cached to C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\extrn_files\\base\\github.com\\saltstack\\salt-winrepo-ng\\archive\\master.zip', 'result': True} +2020-03-06 10:22:19,210 [salt.loaded.int.states.archive:91 ][DEBUG ][5108] Using checksum file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\archive_hash\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip.hash for cached archive file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:22:19,235 [salt.loaded.int.states.archive:1059][DEBUG ][5108] Checking https://github.com/saltstack/salt-winrepo-ng/archive/master.zip to see if it is password-protected +2020-03-06 10:22:19,288 [salt.loaded.int.module.win_file:1463][DEBUG ][5108] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win +2020-03-06 10:22:19,304 [salt.loaded.int.module.win_file:1463][DEBUG ][5108] Creating directory: C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng +2020-03-06 10:22:19,304 [salt.loaded.int.utils.win_dacl:2340][DEBUG ][5108] Getting current permissions for C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:22:19,304 [salt.loaded.int.states.archive:1344][DEBUG ][5108] Extracting C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip to C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng\ +2020-03-06 10:22:19,790 [salt.loaded.int.states.archive:1643][DEBUG ][5108] Keeping cached source file C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\saltstack\salt-winrepo-ng\archive\master.zip +2020-03-06 10:22:19,790 [salt.state :320 ][INFO ][5108] {'extracted_files': ['salt-winrepo-ng-master/', 'salt-winrepo-ng-master/.gitignore', 'salt-winrepo-ng-master/.travis.yml', 'salt-winrepo-ng-master/.travis/', 'salt-winrepo-ng-master/.travis/requirements.txt', 'salt-winrepo-ng-master/.travis/tests.py', 'salt-winrepo-ng-master/7zip.sls', 'salt-winrepo-ng-master/LICENSE', 'salt-winrepo-ng-master/README.md', 'salt-winrepo-ng-master/_config.yml', 'salt-winrepo-ng-master/activeperl_x64.sls', 'salt-winrepo-ng-master/activeperl_x86.sls', 'salt-winrepo-ng-master/adobeair.sls', 'salt-winrepo-ng-master/adobereader-dc-classic.sls', 'salt-winrepo-ng-master/adobereader-xi.sls', 'salt-winrepo-ng-master/adobereader.sls', 'salt-winrepo-ng-master/adobeshockwaveplayer.sls', 'salt-winrepo-ng-master/adv-ip-scanner.sls', 'salt-winrepo-ng-master/adv-port-scanner.sls', 'salt-winrepo-ng-master/advancedlogging.sls', 'salt-winrepo-ng-master/anydesk-msi.sls', 'salt-winrepo-ng-master/anydesk.sls', 'salt-winrepo-ng-master/applicationrequestrouting.sls', 'salt-winrepo-ng-master/aspnet-mvc1.sls', 'salt-winrepo-ng-master/atom.sls', 'salt-winrepo-ng-master/audacity.sls', 'salt-winrepo-ng-master/auditbeat/', 'salt-winrepo-ng-master/auditbeat/init.sls', 'salt-winrepo-ng-master/auditbeat/install.cmd', 'salt-winrepo-ng-master/auditbeat/install.ps1', 'salt-winrepo-ng-master/auditbeat/remove.cmd', 'salt-winrepo-ng-master/autohotkey.sls', 'salt-winrepo-ng-master/autoit.sls', 'salt-winrepo-ng-master/autopsy.sls', 'salt-winrepo-ng-master/awscli.sls', 'salt-winrepo-ng-master/azuredatastudio.sls', 'salt-winrepo-ng-master/bandizip.sls', 'salt-winrepo-ng-master/belarc-advisor.sls', 'salt-winrepo-ng-master/bginfo4x.sls', 'salt-winrepo-ng-master/bitnami-nginxstack.sls', 'salt-winrepo-ng-master/bitvise.sls', 'salt-winrepo-ng-master/blender.sls', 'salt-winrepo-ng-master/bootracer.sls', 'salt-winrepo-ng-master/bulk_extractor.sls', 'salt-winrepo-ng-master/bulkrenameutility.sls', 'salt-winrepo-ng-master/ccleaner-slim.sls', 'salt-winrepo-ng-master/ccleaner.sls', 'salt-winrepo-ng-master/cdburnerxp.sls', 'salt-winrepo-ng-master/cdroller.sls', 'salt-winrepo-ng-master/check-mk-agent-msi.sls', 'salt-winrepo-ng-master/check-mk-agent.sls', 'salt-winrepo-ng-master/chocolatey/', 'salt-winrepo-ng-master/chocolatey/init.sls', 'salt-winrepo-ng-master/chocolatey/install.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.cmd', 'salt-winrepo-ng-master/chocolatey/uninstall.ps1', 'salt-winrepo-ng-master/chrome-rdp.sls', 'salt-winrepo-ng-master/chrome.sls', 'salt-winrepo-ng-master/clamav.sls', 'salt-winrepo-ng-master/clamwin.sls', 'salt-winrepo-ng-master/classicshell.sls', 'salt-winrepo-ng-master/clink.sls', 'salt-winrepo-ng-master/conemu.sls', 'salt-winrepo-ng-master/cpu-z.sls', 'salt-winrepo-ng-master/curl.sls', 'salt-winrepo-ng-master/cyberduck-cli.sls', 'salt-winrepo-ng-master/cyberduck-msi.sls', 'salt-winrepo-ng-master/cyberduck.sls', 'salt-winrepo-ng-master/defraggler.sls', 'salt-winrepo-ng-master/docs/', 'salt-winrepo-ng-master/docs/ReadMe.md', 'salt-winrepo-ng-master/dotnet.sls', 'salt-winrepo-ng-master/dropbox.sls', 'salt-winrepo-ng-master/duplicati.sls', 'salt-winrepo-ng-master/dvdstyler.sls', 'salt-winrepo-ng-master/echo-desktop.sls', 'salt-winrepo-ng-master/eea.sls', 'salt-winrepo-ng-master/emet.sls', 'salt-winrepo-ng-master/emsisoft-anti-malware.sls', 'salt-winrepo-ng-master/eraser.sls', 'salt-winrepo-ng-master/erlang/', 'salt-winrepo-ng-master/erlang/init.sls', 'salt-winrepo-ng-master/erlang/install.cmd', 'salt-winrepo-ng-master/evernote.sls', 'salt-winrepo-ng-master/fiddler.sls', 'salt-winrepo-ng-master/filebeat/', 'salt-winrepo-ng-master/filebeat/init.sls', 'salt-winrepo-ng-master/filebeat/install.cmd', 'salt-winrepo-ng-master/filebeat/install.ps1', 'salt-winrepo-ng-master/filebeat/remove.cmd', 'salt-winrepo-ng-master/filehippo-app-manager.sls', 'salt-winrepo-ng-master/filezilla.sls', 'salt-winrepo-ng-master/firefox-esr_x64.sls', 'salt-winrepo-ng-master/firefox-esr_x86.sls', 'salt-winrepo-ng-master/firefox_x64.sls', 'salt-winrepo-ng-master/firefox_x86.sls', 'salt-winrepo-ng-master/functionbeat/', 'salt-winrepo-ng-master/functionbeat/init.sls', 'salt-winrepo-ng-master/functionbeat/install.cmd', 'salt-winrepo-ng-master/functionbeat/install.ps1', 'salt-winrepo-ng-master/functionbeat/remove.cmd', 'salt-winrepo-ng-master/gedit.sls', 'salt-winrepo-ng-master/gimp.sls', 'salt-winrepo-ng-master/git-extensions.sls', 'salt-winrepo-ng-master/git.sls', 'salt-winrepo-ng-master/glarysoft-absolute-uninstaller.sls', 'salt-winrepo-ng-master/gnucash.sls', 'salt-winrepo-ng-master/golang.sls', 'salt-winrepo-ng-master/goodsync.sls', 'salt-winrepo-ng-master/gow.sls', 'salt-winrepo-ng-master/gpg4win-light.sls', 'salt-winrepo-ng-master/gpg4win-vanilla.sls', 'salt-winrepo-ng-master/gpg4win/', 'salt-winrepo-ng-master/gpg4win/init.sls', 'salt-winrepo-ng-master/gpg4win/silent.ini', 'salt-winrepo-ng-master/graylog-collector-sidecar.sls', 'salt-winrepo-ng-master/grepwin.sls', 'salt-winrepo-ng-master/gvim.sls', 'salt-winrepo-ng-master/handbrake.sls', 'salt-winrepo-ng-master/heartbeat/', 'salt-winrepo-ng-master/heartbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/heartbeat/init.sls', 'salt-winrepo-ng-master/heartbeat/install.cmd', 'salt-winrepo-ng-master/heartbeat/install.ps1', 'salt-winrepo-ng-master/heartbeat/remove.cmd', 'salt-winrepo-ng-master/hipchat.sls', 'salt-winrepo-ng-master/hostsfileeditor.sls', 'salt-winrepo-ng-master/hwinfo.sls', 'salt-winrepo-ng-master/ice.sls', 'salt-winrepo-ng-master/icecast.sls', 'salt-winrepo-ng-master/icloud.sls', 'salt-winrepo-ng-master/iismediaservices.sls', 'salt-winrepo-ng-master/influx-capacitor.sls', 'salt-winrepo-ng-master/inkscape.sls', 'salt-winrepo-ng-master/intellij-community.sls', 'salt-winrepo-ng-master/intellij-ultimate.sls', 'salt-winrepo-ng-master/internet-evidence-finder.sls', 'salt-winrepo-ng-master/irfanview-plugins.sls', 'salt-winrepo-ng-master/irfanview.sls', 'salt-winrepo-ng-master/isapirewrite-lite.sls', 'salt-winrepo-ng-master/itunes.sls', 'salt-winrepo-ng-master/jdk8.sls', 'salt-winrepo-ng-master/jre.sls', 'salt-winrepo-ng-master/jre8.sls', 'salt-winrepo-ng-master/jungledisk-server-management.sls', 'salt-winrepo-ng-master/jungledisk-server.sls', 'salt-winrepo-ng-master/jungledisk-workgroup.sls', 'salt-winrepo-ng-master/kdiff3.sls', 'salt-winrepo-ng-master/keepass-2x.sls', 'salt-winrepo-ng-master/keepass.sls', 'salt-winrepo-ng-master/lastpass.sls', 'salt-winrepo-ng-master/lazarus.sls', 'salt-winrepo-ng-master/libreoffice.sls', 'salt-winrepo-ng-master/logparser.sls', 'salt-winrepo-ng-master/maas360bootanalyzer.sls', 'salt-winrepo-ng-master/malwarebytes.sls', 'salt-winrepo-ng-master/mariadb.sls', 'salt-winrepo-ng-master/mercurial.sls', 'salt-winrepo-ng-master/messageanalyzer.sls', 'salt-winrepo-ng-master/metricbeat/', 'salt-winrepo-ng-master/metricbeat/.remove.ps1.swp', 'salt-winrepo-ng-master/metricbeat/init.sls', 'salt-winrepo-ng-master/metricbeat/install.cmd', 'salt-winrepo-ng-master/metricbeat/install.ps1', 'salt-winrepo-ng-master/metricbeat/remove.cmd', 'salt-winrepo-ng-master/microsoft-build-tools.sls', 'salt-winrepo-ng-master/mikogo.sls', 'salt-winrepo-ng-master/miktex-basic.sls', 'salt-winrepo-ng-master/mongodb.sls', 'salt-winrepo-ng-master/ms-mbsa.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2005-sp1-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-atl-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2008-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_64.sls', 'salt-winrepo-ng-master/ms-vcpp-2010-sp1-mfc-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2012-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2013-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-build-tools.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2015-redist_x86.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x64.sls', 'salt-winrepo-ng-master/ms-vcpp-2017-redist_x86.sls', 'salt-winrepo-ng-master/mucommander.sls', 'salt-winrepo-ng-master/mysql-essential.sls', 'salt-winrepo-ng-master/mysql-installer-community.sls', 'salt-winrepo-ng-master/mysql-workbench.sls', 'salt-winrepo-ng-master/never10.sls', 'salt-winrepo-ng-master/newrelic-infra.sls', 'salt-winrepo-ng-master/nextcloud-client.sls', 'salt-winrepo-ng-master/nmap.sls', 'salt-winrepo-ng-master/node.js-lts.sls', 'salt-winrepo-ng-master/node.js.sls', 'salt-winrepo-ng-master/nomacs.sls', 'salt-winrepo-ng-master/npp.sls', 'salt-winrepo-ng-master/nsclient.sls', 'salt-winrepo-ng-master/nsis.sls', 'salt-winrepo-ng-master/ntp.sls', 'salt-winrepo-ng-master/nunit-console.sls', 'salt-winrepo-ng-master/nxlog.sls', 'salt-winrepo-ng-master/octopus-tentacle.sls', 'salt-winrepo-ng-master/openlp.sls', 'salt-winrepo-ng-master/openoffice.sls', 'salt-winrepo-ng-master/openvpn.sls', 'salt-winrepo-ng-master/osquery.sls', 'salt-winrepo-ng-master/ossec-agent.sls', 'salt-winrepo-ng-master/owncloud.sls', 'salt-winrepo-ng-master/packetbeat/', 'salt-winrepo-ng-master/packetbeat/init.sls', 'salt-winrepo-ng-master/packetbeat/install.cmd', 'salt-winrepo-ng-master/packetbeat/install.ps1', 'salt-winrepo-ng-master/packetbeat/remove.cmd', 'salt-winrepo-ng-master/pandoc.sls', 'salt-winrepo-ng-master/parallels-client-15.sls', 'salt-winrepo-ng-master/pass4win.sls', 'salt-winrepo-ng-master/passware-kit-agent.sls', 'salt-winrepo-ng-master/passware-kit-forensic.sls', 'salt-winrepo-ng-master/patchmypc-free.sls', 'salt-winrepo-ng-master/pdf24creator.sls', 'salt-winrepo-ng-master/pdfcreator.sls', 'salt-winrepo-ng-master/peazip.sls', 'salt-winrepo-ng-master/pgadmin4.sls', 'salt-winrepo-ng-master/pgina.sls', 'salt-winrepo-ng-master/pidgin.sls', 'salt-winrepo-ng-master/postgresql.sls', 'salt-winrepo-ng-master/powerbi-desktop.sls', 'salt-winrepo-ng-master/powershell-core.sls', 'salt-winrepo-ng-master/prometheus-wmi-exporter.sls', 'salt-winrepo-ng-master/putty.sls', 'salt-winrepo-ng-master/pycharm-pro/', 'salt-winrepo-ng-master/pycharm-pro/init.sls', 'salt-winrepo-ng-master/pycharm-pro/silent.config', 'salt-winrepo-ng-master/python2_x64.sls', 'salt-winrepo-ng-master/python2_x86.sls', 'salt-winrepo-ng-master/python3_x64.sls', 'salt-winrepo-ng-master/python3_x86.sls', 'salt-winrepo-ng-master/qemu.sls', 'salt-winrepo-ng-master/queueexplorerpro.sls', 'salt-winrepo-ng-master/quicktime.sls', 'salt-winrepo-ng-master/rabbitmq.sls', 'salt-winrepo-ng-master/rakudo-star-no-jit_x86.sls', 'salt-winrepo-ng-master/rakudo-star_x64.sls', 'salt-winrepo-ng-master/rasclient.sls', 'salt-winrepo-ng-master/rdcman.sls', 'salt-winrepo-ng-master/rocketchat.sls', 'salt-winrepo-ng-master/rubyinstaller_x64.sls', 'salt-winrepo-ng-master/rubyinstaller_x86.sls', 'salt-winrepo-ng-master/salt-minion-py2.sls', 'salt-winrepo-ng-master/salt-minion-py3.sls', 'salt-winrepo-ng-master/sandboxie.sls', 'salt-winrepo-ng-master/scaleout.sls', 'salt-winrepo-ng-master/secunia.psi.sls', 'salt-winrepo-ng-master/sensu.sls', 'salt-winrepo-ng-master/sharpdevelop.sls', 'salt-winrepo-ng-master/skitch.sls', 'salt-winrepo-ng-master/skype-msi.sls', 'salt-winrepo-ng-master/skype.sls', 'salt-winrepo-ng-master/slack-machine-msi.sls', 'salt-winrepo-ng-master/slack-user-msi.sls', 'salt-winrepo-ng-master/slack.sls', 'salt-winrepo-ng-master/smartmontools.sls', 'salt-winrepo-ng-master/snmptools.sls', 'salt-winrepo-ng-master/soapui.sls', 'salt-winrepo-ng-master/software-informer.sls', 'salt-winrepo-ng-master/sourcetree.sls', 'salt-winrepo-ng-master/spybot-anti-beacon.sls', 'salt-winrepo-ng-master/spybot.sls', 'salt-winrepo-ng-master/sscserv-free.sls', 'salt-winrepo-ng-master/stayawake/', 'salt-winrepo-ng-master/stayawake/init.sls', 'salt-winrepo-ng-master/stayawake/install.cmd', 'salt-winrepo-ng-master/steam.sls', 'salt-winrepo-ng-master/stellarium.sls', 'salt-winrepo-ng-master/strawberryperl_x64.sls', 'salt-winrepo-ng-master/strawberryperl_x86.sls', 'salt-winrepo-ng-master/stunnel.sls', 'salt-winrepo-ng-master/subinacl.sls', 'salt-winrepo-ng-master/sumatrapdf.sls', 'salt-winrepo-ng-master/svn.sls', 'salt-winrepo-ng-master/teamviewer.sls', 'salt-winrepo-ng-master/teamviewer_host.sls', 'salt-winrepo-ng-master/teracopy.sls', 'salt-winrepo-ng-master/texmaker.sls', 'salt-winrepo-ng-master/texniccenter.sls', 'salt-winrepo-ng-master/texstudio.sls', 'salt-winrepo-ng-master/texworks.sls', 'salt-winrepo-ng-master/thunderbird.sls', 'salt-winrepo-ng-master/tightvnc.sls', 'salt-winrepo-ng-master/todotxt.net.sls', 'salt-winrepo-ng-master/todour.sls', 'salt-winrepo-ng-master/tortoise-bzr.sls', 'salt-winrepo-ng-master/tortoise-git.sls', 'salt-winrepo-ng-master/tortoise-hg.sls', 'salt-winrepo-ng-master/tortoise-svn.sls', 'salt-winrepo-ng-master/truecrypt.sls', 'salt-winrepo-ng-master/ultradefrag.sls', 'salt-winrepo-ng-master/urlrewrite.sls', 'salt-winrepo-ng-master/usbdlm.sls', 'salt-winrepo-ng-master/vagrant.sls', 'salt-winrepo-ng-master/vcforpython27.sls', 'salt-winrepo-ng-master/vcxsrv.sls', 'salt-winrepo-ng-master/verysleepy.sls', 'salt-winrepo-ng-master/veyon.sls', 'salt-winrepo-ng-master/virtualbox.sls', 'salt-winrepo-ng-master/viscosity.sls', 'salt-winrepo-ng-master/vivaldi.sls', 'salt-winrepo-ng-master/vlc.sls', 'salt-winrepo-ng-master/vs-community.sls', 'salt-winrepo-ng-master/vs_remotetools_2017.sls', 'salt-winrepo-ng-master/vscode.sls', 'salt-winrepo-ng-master/vsee.sls', 'salt-winrepo-ng-master/wamp-server-3.sls', 'salt-winrepo-ng-master/wamp-stack.sls', 'salt-winrepo-ng-master/webdeploy.sls', 'salt-winrepo-ng-master/webplatforminstaller.sls', 'salt-winrepo-ng-master/win-app-manager.sls', 'salt-winrepo-ng-master/windirstat.sls', 'salt-winrepo-ng-master/winhttpcertcfg.sls', 'salt-winrepo-ng-master/winlogbeat/', 'salt-winrepo-ng-master/winlogbeat/init.sls', 'salt-winrepo-ng-master/winlogbeat/install.cmd', 'salt-winrepo-ng-master/winlogbeat/install.ps1', 'salt-winrepo-ng-master/winlogbeat/remove.cmd', 'salt-winrepo-ng-master/winmerge.sls', 'salt-winrepo-ng-master/winmtr.sls', 'salt-winrepo-ng-master/winpcap.sls', 'salt-winrepo-ng-master/winrar.sls', 'salt-winrepo-ng-master/winscp.sls', 'salt-winrepo-ng-master/wireshark.sls', 'salt-winrepo-ng-master/wmi_provider/', 'salt-winrepo-ng-master/wmi_provider/README.md', 'salt-winrepo-ng-master/wmi_provider/answer.txt', 'salt-winrepo-ng-master/wmi_provider/init.sls', 'salt-winrepo-ng-master/wmi_provider/majsetup.reg', 'salt-winrepo-ng-master/wscc.sls', 'salt-winrepo-ng-master/wufuc.sls', 'salt-winrepo-ng-master/xampp.sls', 'salt-winrepo-ng-master/xming.sls', 'salt-winrepo-ng-master/yubikey-manager.sls', 'salt-winrepo-ng-master/yubikey-personalization-tool.sls', 'salt-winrepo-ng-master/zabbix-agent.sls', 'salt-winrepo-ng-master/zipinstaller/', 'salt-winrepo-ng-master/zipinstaller/init.sls', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x64.zic', 'salt-winrepo-ng-master/zipinstaller/~zipinst~_x86.zic', 'salt-winrepo-ng-master/zoom.sls'], 'directories_created': ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\srv\\salt\\win\\repo-ng\\']} +2020-03-06 10:22:19,790 [salt.state :2045][INFO ][5108] Completed state [C:\Users\vagrant\AppData\Local\Temp\kitchen\srv\salt\win\repo-ng] at time 10:22:19.790148 (duration_in_ms=1111.338) +2020-03-06 10:22:19,790 [salt.state :1867][INFO ][5108] Running state [rename-extract] at time 10:22:19.790148 +2020-03-06 10:22:19,790 [salt.state :1900][INFO ][5108] Executing state module.run for [rename-extract] +2020-03-06 10:22:19,805 [salt.state :320 ][INFO ][5108] {'file.rename': True} +2020-03-06 10:22:19,805 [salt.state :2045][INFO ][5108] Completed state [rename-extract] at time 10:22:19.805786 (duration_in_ms=15.638) +2020-03-06 10:22:19,805 [salt.state :1867][INFO ][5108] Running state [pkg.refresh_db] at time 10:22:19.805786 +2020-03-06 10:22:19,805 [salt.state :1900][INFO ][5108] Executing state module.run for [pkg.refresh_db] +2020-03-06 10:22:19,805 [salt.loaded.int.module.win_pkg:935 ][DEBUG ][5108] Refreshing pkg metadata db for saltenv 'base' (age of existing metadata is 0:00:24.803199) +2020-03-06 10:22:19,805 [salt.loaded.int.module.win_pkg:939 ][INFO ][5108] Removing all *.sls files under 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng' +2020-03-06 10:22:19,805 [salt.loaded.int.module.win_pkg:958 ][INFO ][5108] Fetching *.sls files from salt://win/repo-ng/ +2020-03-06 10:22:19,821 [salt.fileclient :234 ][INFO ][5108] Caching directory 'win/repo-ng/' for environment 'base' +2020-03-06 10:22:20,120 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:22:20,120 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:22:20,120 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:22:20,120 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,150 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/7zip.sls' +2020-03-06 10:22:20,167 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:22:20,167 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:22:20,167 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:22:20,167 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,181 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x64.sls' +2020-03-06 10:22:20,198 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:22:20,198 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:22:20,212 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:22:20,212 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,212 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/activeperl_x86.sls' +2020-03-06 10:22:20,229 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:22:20,244 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:22:20,244 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:22:20,244 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,260 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeair.sls' +2020-03-06 10:22:20,276 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:22:20,276 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:22:20,276 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:22:20,276 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,291 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-dc-classic.sls' +2020-03-06 10:22:20,307 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:22:20,307 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:22:20,307 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:22:20,307 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,322 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader-xi.sls' +2020-03-06 10:22:20,339 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:22:20,339 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:22:20,339 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:22:20,339 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,354 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobereader.sls' +2020-03-06 10:22:20,369 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:22:20,369 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:22:20,369 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:22:20,369 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,385 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adobeshockwaveplayer.sls' +2020-03-06 10:22:20,400 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:22:20,400 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:22:20,400 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:22:20,400 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,417 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-ip-scanner.sls' +2020-03-06 10:22:20,433 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:22:20,433 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:22:20,433 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:22:20,447 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,447 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/adv-port-scanner.sls' +2020-03-06 10:22:20,464 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:22:20,464 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:22:20,479 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:22:20,479 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,479 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/advancedlogging.sls' +2020-03-06 10:22:20,494 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:22:20,510 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:22:20,510 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:22:20,510 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,526 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk-msi.sls' +2020-03-06 10:22:20,544 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:22:20,544 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:22:20,544 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:22:20,544 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,558 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/anydesk.sls' +2020-03-06 10:22:20,573 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:22:20,573 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:22:20,573 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:22:20,589 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,589 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/applicationrequestrouting.sls' +2020-03-06 10:22:20,604 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:22:20,604 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:22:20,604 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:22:20,620 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,620 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/aspnet-mvc1.sls' +2020-03-06 10:22:20,637 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:22:20,637 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:22:20,652 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:22:20,652 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,652 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/atom.sls' +2020-03-06 10:22:20,667 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:22:20,683 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:22:20,683 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:22:20,683 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,698 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/audacity.sls' +2020-03-06 10:22:20,717 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:22:20,717 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:22:20,717 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:22:20,730 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,730 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/auditbeat/init.sls' +2020-03-06 10:22:20,746 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:22:20,761 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:22:20,761 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:22:20,761 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,777 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autohotkey.sls' +2020-03-06 10:22:20,793 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:22:20,793 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:22:20,793 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:22:20,793 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,808 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autoit.sls' +2020-03-06 10:22:20,824 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:22:20,824 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:22:20,824 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:22:20,824 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,840 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/autopsy.sls' +2020-03-06 10:22:20,856 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:22:20,856 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:22:20,856 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:22:20,856 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,871 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/awscli.sls' +2020-03-06 10:22:20,871 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:22:20,886 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:22:20,886 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:22:20,886 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,886 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/azuredatastudio.sls' +2020-03-06 10:22:20,902 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:22:20,902 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:22:20,902 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:22:20,902 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,918 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bandizip.sls' +2020-03-06 10:22:20,934 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:22:20,934 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:22:20,934 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:22:20,934 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,949 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/belarc-advisor.sls' +2020-03-06 10:22:20,966 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:22:20,966 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:22:20,966 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:22:20,966 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,980 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bginfo4x.sls' +2020-03-06 10:22:20,996 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:22:20,996 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:22:20,996 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:22:20,996 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:20,996 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitnami-nginxstack.sls' +2020-03-06 10:22:21,012 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:22:21,012 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:22:21,012 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:22:21,027 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,027 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bitvise.sls' +2020-03-06 10:22:21,044 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:22:21,044 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:22:21,044 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:22:21,044 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,060 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/blender.sls' +2020-03-06 10:22:21,074 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:22:21,074 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:22:21,074 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:22:21,074 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,091 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bootracer.sls' +2020-03-06 10:22:21,091 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:22:21,091 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:22:21,106 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:22:21,106 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,106 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulk_extractor.sls' +2020-03-06 10:22:21,122 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:22:21,122 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:22:21,122 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:22:21,138 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,138 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/bulkrenameutility.sls' +2020-03-06 10:22:21,153 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:22:21,153 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:22:21,168 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:22:21,168 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,168 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner-slim.sls' +2020-03-06 10:22:21,184 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:22:21,184 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:22:21,184 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:22:21,200 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,200 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ccleaner.sls' +2020-03-06 10:22:21,216 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:22:21,216 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:22:21,216 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:22:21,231 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,231 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdburnerxp.sls' +2020-03-06 10:22:21,250 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:22:21,263 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:22:21,263 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:22:21,263 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,279 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cdroller.sls' +2020-03-06 10:22:21,294 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:22:21,294 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:22:21,294 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:22:21,294 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,294 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent-msi.sls' +2020-03-06 10:22:21,311 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:22:21,311 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:22:21,325 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:22:21,325 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,342 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/check-mk-agent.sls' +2020-03-06 10:22:21,357 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:22:21,357 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:22:21,357 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:22:21,357 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,374 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chocolatey/init.sls' +2020-03-06 10:22:21,391 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:22:21,391 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:22:21,391 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:22:21,391 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,406 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome-rdp.sls' +2020-03-06 10:22:21,422 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:22:21,422 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:22:21,422 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:22:21,438 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,438 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/chrome.sls' +2020-03-06 10:22:21,453 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:22:21,453 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:22:21,470 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:22:21,470 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,482 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamav.sls' +2020-03-06 10:22:21,497 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:22:21,497 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:22:21,497 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:22:21,497 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,513 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clamwin.sls' +2020-03-06 10:22:21,529 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:22:21,529 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:22:21,529 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:22:21,529 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,544 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/classicshell.sls' +2020-03-06 10:22:21,560 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:22:21,560 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:22:21,577 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:22:21,577 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,577 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/clink.sls' +2020-03-06 10:22:21,592 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:22:21,608 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:22:21,608 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:22:21,608 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,608 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/conemu.sls' +2020-03-06 10:22:21,623 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:22:21,623 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:22:21,639 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:22:21,639 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,639 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cpu-z.sls' +2020-03-06 10:22:21,654 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:22:21,654 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:22:21,670 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:22:21,670 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,670 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/curl.sls' +2020-03-06 10:22:21,686 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:22:21,701 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:22:21,701 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:22:21,701 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,718 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-cli.sls' +2020-03-06 10:22:21,733 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:22:21,733 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:22:21,733 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:22:21,733 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,749 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck-msi.sls' +2020-03-06 10:22:21,768 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:22:21,768 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:22:21,768 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:22:21,780 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,780 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/cyberduck.sls' +2020-03-06 10:22:21,796 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:22:21,812 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:22:21,812 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:22:21,812 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,828 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/defraggler.sls' +2020-03-06 10:22:21,843 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:22:21,843 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:22:21,843 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:22:21,843 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,874 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dotnet.sls' +2020-03-06 10:22:21,874 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:22:21,874 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:22:21,890 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:22:21,890 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,905 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dropbox.sls' +2020-03-06 10:22:21,923 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:22:21,923 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:22:21,923 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:22:21,923 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,939 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/duplicati.sls' +2020-03-06 10:22:21,954 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:22:21,954 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:22:21,954 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:22:21,954 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,968 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/dvdstyler.sls' +2020-03-06 10:22:21,984 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:22:21,984 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:22:21,984 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:22:21,984 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:21,999 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/echo-desktop.sls' +2020-03-06 10:22:22,015 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:22:22,015 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:22:22,015 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:22:22,015 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,030 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eea.sls' +2020-03-06 10:22:22,046 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:22:22,046 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:22:22,046 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:22:22,046 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,062 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emet.sls' +2020-03-06 10:22:22,078 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:22:22,078 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:22:22,078 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:22:22,093 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,093 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/emsisoft-anti-malware.sls' +2020-03-06 10:22:22,110 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:22:22,110 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:22:22,110 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:22:22,125 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,125 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/eraser.sls' +2020-03-06 10:22:22,140 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:22:22,140 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:22:22,140 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:22:22,156 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,156 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/erlang/init.sls' +2020-03-06 10:22:22,171 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:22:22,171 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:22:22,187 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:22:22,187 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,203 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/evernote.sls' +2020-03-06 10:22:22,219 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:22:22,219 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:22:22,219 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:22:22,219 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,250 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/fiddler.sls' +2020-03-06 10:22:22,265 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:22:22,265 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:22:22,265 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:22:22,265 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,281 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filebeat/init.sls' +2020-03-06 10:22:22,297 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:22:22,297 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:22:22,297 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:22:22,297 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,330 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filehippo-app-manager.sls' +2020-03-06 10:22:22,345 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:22:22,360 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:22:22,360 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:22:22,360 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,378 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/filezilla.sls' +2020-03-06 10:22:22,407 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:22:22,407 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:22:22,407 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:22:22,407 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,422 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x64.sls' +2020-03-06 10:22:22,438 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:22:22,454 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:22:22,454 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:22:22,454 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,469 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox-esr_x86.sls' +2020-03-06 10:22:22,469 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:22:22,485 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:22:22,485 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:22:22,485 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,501 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x64.sls' +2020-03-06 10:22:22,517 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:22:22,517 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:22:22,532 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:22:22,532 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,532 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/firefox_x86.sls' +2020-03-06 10:22:22,547 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:22:22,564 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:22:22,564 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:22:22,564 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,579 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/functionbeat/init.sls' +2020-03-06 10:22:22,596 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:22:22,596 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:22:22,596 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:22:22,610 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,610 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gedit.sls' +2020-03-06 10:22:22,643 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:22:22,643 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:22:22,643 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:22:22,643 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,660 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gimp.sls' +2020-03-06 10:22:22,689 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:22:22,689 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:22:22,689 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:22:22,689 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,704 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git-extensions.sls' +2020-03-06 10:22:22,736 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:22:22,736 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:22:22,736 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:22:22,736 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,767 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/git.sls' +2020-03-06 10:22:22,783 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:22:22,783 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:22:22,783 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:22:22,798 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,798 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/glarysoft-absolute-uninstaller.sls' +2020-03-06 10:22:22,815 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:22:22,815 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:22:22,829 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:22:22,829 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,829 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gnucash.sls' +2020-03-06 10:22:22,846 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:22:22,846 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:22:22,861 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:22:22,861 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,861 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/golang.sls' +2020-03-06 10:22:22,876 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:22:22,876 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:22:22,892 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:22:22,892 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,892 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/goodsync.sls' +2020-03-06 10:22:22,925 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:22:22,925 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:22:22,925 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:22:22,925 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,939 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gow.sls' +2020-03-06 10:22:22,955 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:22:22,955 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:22:22,955 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:22:22,955 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:22,970 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-light.sls' +2020-03-06 10:22:22,986 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:22:22,986 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:22:22,986 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:22:22,986 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,002 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win-vanilla.sls' +2020-03-06 10:22:23,018 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:22:23,018 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:22:23,018 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:22:23,033 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,033 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gpg4win/init.sls' +2020-03-06 10:22:23,049 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:22:23,049 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:22:23,065 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:22:23,065 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,080 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/graylog-collector-sidecar.sls' +2020-03-06 10:22:23,096 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:22:23,096 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:22:23,096 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:22:23,096 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,111 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/grepwin.sls' +2020-03-06 10:22:23,111 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:22:23,127 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:22:23,127 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:22:23,127 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,144 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/gvim.sls' +2020-03-06 10:22:23,159 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:22:23,159 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:22:23,159 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:22:23,159 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,175 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/handbrake.sls' +2020-03-06 10:22:23,190 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:22:23,208 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:22:23,208 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:22:23,208 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,221 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/heartbeat/init.sls' +2020-03-06 10:22:23,237 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:22:23,253 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:22:23,253 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:22:23,253 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,284 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hipchat.sls' +2020-03-06 10:22:23,316 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:22:23,316 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:22:23,316 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:22:23,316 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,331 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hostsfileeditor.sls' +2020-03-06 10:22:23,347 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:22:23,347 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:22:23,347 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:22:23,347 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,362 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/hwinfo.sls' +2020-03-06 10:22:23,379 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:22:23,379 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:22:23,379 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:22:23,394 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,410 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ice.sls' +2020-03-06 10:22:23,425 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:22:23,425 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:22:23,425 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:22:23,425 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,440 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icecast.sls' +2020-03-06 10:22:23,456 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:22:23,472 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:22:23,472 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:22:23,472 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,487 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/icloud.sls' +2020-03-06 10:22:23,503 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:22:23,503 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:22:23,503 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:22:23,503 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,520 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/iismediaservices.sls' +2020-03-06 10:22:23,536 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:22:23,536 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:22:23,536 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:22:23,536 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,550 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/influx-capacitor.sls' +2020-03-06 10:22:23,566 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:22:23,566 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:22:23,566 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:22:23,566 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,581 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/inkscape.sls' +2020-03-06 10:22:23,597 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:22:23,597 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:22:23,597 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:22:23,597 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,613 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-community.sls' +2020-03-06 10:22:23,628 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:22:23,628 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:22:23,628 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:22:23,644 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,644 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/intellij-ultimate.sls' +2020-03-06 10:22:23,660 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:22:23,660 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:22:23,660 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:22:23,660 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,675 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/internet-evidence-finder.sls' +2020-03-06 10:22:23,692 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:22:23,692 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:22:23,692 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:22:23,692 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,707 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview-plugins.sls' +2020-03-06 10:22:23,723 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:22:23,723 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:22:23,723 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:22:23,723 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,738 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/irfanview.sls' +2020-03-06 10:22:23,755 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:22:23,755 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:22:23,755 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:22:23,755 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,769 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/isapirewrite-lite.sls' +2020-03-06 10:22:23,785 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:22:23,785 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:22:23,785 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:22:23,785 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,801 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/itunes.sls' +2020-03-06 10:22:23,816 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:22:23,816 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:22:23,816 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:22:23,816 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,833 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jdk8.sls' +2020-03-06 10:22:23,833 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:22:23,848 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:22:23,848 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:22:23,848 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,863 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre.sls' +2020-03-06 10:22:23,863 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:22:23,880 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:22:23,880 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:22:23,880 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,880 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jre8.sls' +2020-03-06 10:22:23,895 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:22:23,895 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:22:23,910 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:22:23,910 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,910 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server-management.sls' +2020-03-06 10:22:23,926 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:22:23,926 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:22:23,926 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:22:23,926 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,942 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-server.sls' +2020-03-06 10:22:23,957 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:22:23,957 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:22:23,957 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:22:23,957 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,957 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/jungledisk-workgroup.sls' +2020-03-06 10:22:23,973 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:22:23,973 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:22:23,973 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:22:23,973 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:23,988 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/kdiff3.sls' +2020-03-06 10:22:24,004 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:22:24,004 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:22:24,004 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:22:24,004 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,020 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass-2x.sls' +2020-03-06 10:22:24,042 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:22:24,042 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:22:24,042 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:22:24,042 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,052 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/keepass.sls' +2020-03-06 10:22:24,068 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:22:24,068 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:22:24,068 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:22:24,068 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,083 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lastpass.sls' +2020-03-06 10:22:24,098 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:22:24,098 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:22:24,098 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:22:24,098 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,098 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/lazarus.sls' +2020-03-06 10:22:24,114 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:22:24,114 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:22:24,129 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:22:24,129 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,129 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/libreoffice.sls' +2020-03-06 10:22:24,146 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:22:24,146 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:22:24,146 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:22:24,146 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,161 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/logparser.sls' +2020-03-06 10:22:24,177 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:22:24,177 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:22:24,177 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:22:24,177 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,193 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/maas360bootanalyzer.sls' +2020-03-06 10:22:24,193 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:22:24,193 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:22:24,208 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:22:24,208 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,208 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/malwarebytes.sls' +2020-03-06 10:22:24,224 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:22:24,224 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:22:24,224 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:22:24,224 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,240 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mariadb.sls' +2020-03-06 10:22:24,256 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:22:24,256 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:22:24,256 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:22:24,256 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,271 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mercurial.sls' +2020-03-06 10:22:24,293 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:22:24,313 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:22:24,313 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:22:24,317 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,317 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/messageanalyzer.sls' +2020-03-06 10:22:24,333 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:22:24,333 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:22:24,333 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:22:24,333 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,350 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/metricbeat/init.sls' +2020-03-06 10:22:24,365 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:22:24,365 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:22:24,365 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:22:24,365 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,380 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/microsoft-build-tools.sls' +2020-03-06 10:22:24,380 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:22:24,380 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:22:24,380 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:22:24,396 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,396 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mikogo.sls' +2020-03-06 10:22:24,412 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:22:24,412 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:22:24,412 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:22:24,412 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,428 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/miktex-basic.sls' +2020-03-06 10:22:24,428 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:22:24,428 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:22:24,443 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:22:24,443 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,443 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mongodb.sls' +2020-03-06 10:22:24,459 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:22:24,459 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:22:24,459 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:22:24,459 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,475 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-mbsa.sls' +2020-03-06 10:22:24,475 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:22:24,490 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:22:24,490 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:22:24,490 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,490 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x64.sls' +2020-03-06 10:22:24,506 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:22:24,506 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:22:24,506 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:22:24,506 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,522 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-atl-redist_x86.sls' +2020-03-06 10:22:24,537 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:22:24,537 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:22:24,537 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:22:24,537 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,537 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x64.sls' +2020-03-06 10:22:24,553 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:22:24,553 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:22:24,553 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:22:24,568 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,568 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-redist_x86.sls' +2020-03-06 10:22:24,584 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,584 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,584 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,584 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,601 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,601 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,615 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,615 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,615 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,615 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,647 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:22:24,647 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:22:24,647 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:22:24,647 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,663 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x64.sls' +2020-03-06 10:22:24,678 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:22:24,678 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:22:24,678 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:22:24,678 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,694 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2005-sp1-redist_x86.sls' +2020-03-06 10:22:24,694 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:22:24,694 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:22:24,709 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:22:24,709 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,709 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x64.sls' +2020-03-06 10:22:24,726 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:22:24,726 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:22:24,726 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:22:24,726 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,740 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-redist_x86.sls' +2020-03-06 10:22:24,740 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:22:24,757 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:22:24,757 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:22:24,757 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,757 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x64.sls' +2020-03-06 10:22:24,772 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:22:24,787 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:22:24,787 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:22:24,787 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,787 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-atl-redist_x86.sls' +2020-03-06 10:22:24,803 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,803 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,803 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,803 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,819 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x64.sls' +2020-03-06 10:22:24,819 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,834 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,834 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,834 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,834 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2008-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,850 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:22:24,850 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:22:24,850 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:22:24,850 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,866 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_64.sls' +2020-03-06 10:22:24,882 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,882 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,882 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,882 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,882 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2010-sp1-mfc-redist_x86.sls' +2020-03-06 10:22:24,897 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:22:24,897 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:22:24,897 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:22:24,897 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,913 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x64.sls' +2020-03-06 10:22:24,929 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:22:24,929 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:22:24,929 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:22:24,929 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,929 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2012-redist_x86.sls' +2020-03-06 10:22:24,944 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:22:24,944 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:22:24,944 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:22:24,960 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,960 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x64.sls' +2020-03-06 10:22:24,977 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:22:24,977 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:22:24,977 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:22:24,977 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:24,992 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2013-redist_x86.sls' +2020-03-06 10:22:24,992 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:22:25,007 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:22:25,007 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:22:25,007 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,007 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-build-tools.sls' +2020-03-06 10:22:25,022 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:22:25,022 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:22:25,022 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:22:25,022 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,038 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x64.sls' +2020-03-06 10:22:25,054 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:22:25,054 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:22:25,054 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:22:25,054 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,070 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2015-redist_x86.sls' +2020-03-06 10:22:25,070 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:22:25,070 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:22:25,085 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:22:25,085 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,085 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x64.sls' +2020-03-06 10:22:25,101 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:22:25,101 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:22:25,101 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:22:25,101 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,117 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ms-vcpp-2017-redist_x86.sls' +2020-03-06 10:22:25,132 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:22:25,132 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:22:25,132 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:22:25,132 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,148 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mucommander.sls' +2020-03-06 10:22:25,148 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:22:25,163 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:22:25,163 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:22:25,163 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,163 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-essential.sls' +2020-03-06 10:22:25,179 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:22:25,179 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:22:25,179 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:22:25,179 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,195 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-installer-community.sls' +2020-03-06 10:22:25,211 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:22:25,211 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:22:25,211 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:22:25,211 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,226 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/mysql-workbench.sls' +2020-03-06 10:22:25,226 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:22:25,226 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:22:25,242 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:22:25,242 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,242 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/never10.sls' +2020-03-06 10:22:25,258 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:22:25,258 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:22:25,258 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:22:25,258 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,273 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/newrelic-infra.sls' +2020-03-06 10:22:25,289 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:22:25,289 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:22:25,289 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:22:25,289 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,321 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nextcloud-client.sls' +2020-03-06 10:22:25,335 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:22:25,335 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:22:25,335 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:22:25,335 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,335 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nmap.sls' +2020-03-06 10:22:25,352 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:22:25,352 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:22:25,352 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:22:25,352 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,367 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js-lts.sls' +2020-03-06 10:22:25,383 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:22:25,383 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:22:25,383 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:22:25,383 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,383 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/node.js.sls' +2020-03-06 10:22:25,399 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:22:25,399 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:22:25,399 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:22:25,399 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,414 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nomacs.sls' +2020-03-06 10:22:25,430 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:22:25,430 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:22:25,430 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:22:25,430 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,430 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/npp.sls' +2020-03-06 10:22:25,446 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:22:25,446 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:22:25,446 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:22:25,446 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,461 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsclient.sls' +2020-03-06 10:22:25,477 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:22:25,477 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:22:25,477 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:22:25,477 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,477 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nsis.sls' +2020-03-06 10:22:25,492 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:22:25,492 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:22:25,492 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:22:25,492 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,509 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ntp.sls' +2020-03-06 10:22:25,523 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:22:25,523 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:22:25,523 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:22:25,523 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,523 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nunit-console.sls' +2020-03-06 10:22:25,539 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:22:25,539 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:22:25,539 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:22:25,539 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,555 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/nxlog.sls' +2020-03-06 10:22:25,571 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:22:25,571 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:22:25,571 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:22:25,571 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,571 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/octopus-tentacle.sls' +2020-03-06 10:22:25,586 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:22:25,586 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:22:25,586 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:22:25,602 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,602 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openlp.sls' +2020-03-06 10:22:25,618 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:22:25,618 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:22:25,618 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:22:25,618 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,633 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openoffice.sls' +2020-03-06 10:22:25,633 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:22:25,633 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:22:25,649 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:22:25,649 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,649 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/openvpn.sls' +2020-03-06 10:22:25,664 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:22:25,664 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:22:25,664 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:22:25,664 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,680 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/osquery.sls' +2020-03-06 10:22:25,680 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:22:25,696 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:22:25,696 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:22:25,696 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,696 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ossec-agent.sls' +2020-03-06 10:22:25,711 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:22:25,711 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:22:25,711 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:22:25,711 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,727 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/owncloud.sls' +2020-03-06 10:22:25,727 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:22:25,744 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:22:25,744 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:22:25,744 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,744 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/packetbeat/init.sls' +2020-03-06 10:22:25,759 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:22:25,774 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:22:25,774 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:22:25,774 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,792 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pandoc.sls' +2020-03-06 10:22:25,805 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:22:25,805 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:22:25,805 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:22:25,805 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,829 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/parallels-client-15.sls' +2020-03-06 10:22:25,837 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:22:25,837 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:22:25,837 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:22:25,837 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,853 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pass4win.sls' +2020-03-06 10:22:25,853 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:22:25,853 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:22:25,868 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:22:25,868 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,868 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-agent.sls' +2020-03-06 10:22:25,884 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:22:25,884 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:22:25,884 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:22:25,884 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,900 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/passware-kit-forensic.sls' +2020-03-06 10:22:25,900 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:22:25,900 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:22:25,915 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:22:25,915 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,915 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/patchmypc-free.sls' +2020-03-06 10:22:25,931 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:22:25,931 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:22:25,931 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:22:25,931 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,947 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdf24creator.sls' +2020-03-06 10:22:25,947 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:22:25,947 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:22:25,962 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:22:25,962 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,962 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pdfcreator.sls' +2020-03-06 10:22:25,978 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:22:25,978 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:22:25,978 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:22:25,978 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:25,993 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/peazip.sls' +2020-03-06 10:22:26,010 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:22:26,010 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:22:26,010 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:22:26,010 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,025 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgadmin4.sls' +2020-03-06 10:22:26,041 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:22:26,041 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:22:26,041 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:22:26,041 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,056 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pgina.sls' +2020-03-06 10:22:26,056 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:22:26,071 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:22:26,071 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:22:26,071 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,071 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pidgin.sls' +2020-03-06 10:22:26,088 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:22:26,088 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:22:26,088 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:22:26,088 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,103 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/postgresql.sls' +2020-03-06 10:22:26,119 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:22:26,119 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:22:26,119 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:22:26,119 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,134 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powerbi-desktop.sls' +2020-03-06 10:22:26,134 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:22:26,150 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:22:26,150 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:22:26,150 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,150 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/powershell-core.sls' +2020-03-06 10:22:26,166 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:22:26,166 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:22:26,182 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:22:26,182 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,182 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/prometheus-wmi-exporter.sls' +2020-03-06 10:22:26,198 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:22:26,198 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:22:26,198 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:22:26,212 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,212 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/putty.sls' +2020-03-06 10:22:26,229 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:22:26,229 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:22:26,229 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:22:26,229 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,244 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/pycharm-pro/init.sls' +2020-03-06 10:22:26,260 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:22:26,260 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:22:26,260 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:22:26,260 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,275 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x64.sls' +2020-03-06 10:22:26,292 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:22:26,292 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:22:26,292 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:22:26,292 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,307 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python2_x86.sls' +2020-03-06 10:22:26,322 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:22:26,322 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:22:26,338 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:22:26,338 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,338 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x64.sls' +2020-03-06 10:22:26,354 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:22:26,354 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:22:26,369 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:22:26,369 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,369 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/python3_x86.sls' +2020-03-06 10:22:26,385 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:22:26,400 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:22:26,400 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:22:26,400 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,400 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/qemu.sls' +2020-03-06 10:22:26,416 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:22:26,416 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:22:26,416 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:22:26,432 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,432 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/queueexplorerpro.sls' +2020-03-06 10:22:26,448 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:22:26,448 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:22:26,464 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:22:26,464 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,479 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/quicktime.sls' +2020-03-06 10:22:26,479 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:22:26,495 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:22:26,495 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:22:26,495 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,510 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rabbitmq.sls' +2020-03-06 10:22:26,527 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:22:26,527 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:22:26,527 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:22:26,527 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,542 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star-no-jit_x86.sls' +2020-03-06 10:22:26,558 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:22:26,558 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:22:26,558 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:22:26,558 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,573 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rakudo-star_x64.sls' +2020-03-06 10:22:26,573 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:22:26,589 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:22:26,589 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:22:26,589 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,589 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rasclient.sls' +2020-03-06 10:22:26,604 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:22:26,604 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:22:26,619 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:22:26,619 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,619 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rdcman.sls' +2020-03-06 10:22:26,636 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:22:26,636 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:22:26,636 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:22:26,651 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,651 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rocketchat.sls' +2020-03-06 10:22:26,667 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:22:26,667 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:22:26,682 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:22:26,682 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,699 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x64.sls' +2020-03-06 10:22:26,714 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:22:26,714 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:22:26,714 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:22:26,714 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,729 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/rubyinstaller_x86.sls' +2020-03-06 10:22:26,745 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:22:26,745 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:22:26,745 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:22:26,745 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,760 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py2.sls' +2020-03-06 10:22:26,776 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:22:26,776 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:22:26,776 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:22:26,776 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,793 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/salt-minion-py3.sls' +2020-03-06 10:22:26,808 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:22:26,808 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:22:26,833 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:22:26,833 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,839 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sandboxie.sls' +2020-03-06 10:22:26,855 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:22:26,855 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:22:26,855 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:22:26,855 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,871 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/scaleout.sls' +2020-03-06 10:22:26,886 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:22:26,886 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:22:26,886 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:22:26,886 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,902 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/secunia.psi.sls' +2020-03-06 10:22:26,917 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:22:26,917 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:22:26,917 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:22:26,917 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,934 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sensu.sls' +2020-03-06 10:22:26,948 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:22:26,948 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:22:26,948 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:22:26,948 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,964 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sharpdevelop.sls' +2020-03-06 10:22:26,964 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:22:26,964 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:22:26,980 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:22:26,980 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:26,980 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skitch.sls' +2020-03-06 10:22:26,996 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:22:26,996 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:22:26,996 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:22:27,011 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,011 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype-msi.sls' +2020-03-06 10:22:27,027 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:22:27,027 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:22:27,027 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:22:27,027 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,043 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/skype.sls' +2020-03-06 10:22:27,058 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:22:27,058 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:22:27,058 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:22:27,058 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,074 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-machine-msi.sls' +2020-03-06 10:22:27,089 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:22:27,089 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:22:27,089 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:22:27,089 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,105 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack-user-msi.sls' +2020-03-06 10:22:27,105 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:22:27,105 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:22:27,121 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:22:27,121 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,121 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/slack.sls' +2020-03-06 10:22:27,137 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:22:27,137 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:22:27,137 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:22:27,137 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,152 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/smartmontools.sls' +2020-03-06 10:22:27,169 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:22:27,169 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:22:27,169 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:22:27,169 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,183 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/snmptools.sls' +2020-03-06 10:22:27,183 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:22:27,199 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:22:27,199 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:22:27,199 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,199 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/soapui.sls' +2020-03-06 10:22:27,215 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:22:27,215 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:22:27,215 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:22:27,215 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,231 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/software-informer.sls' +2020-03-06 10:22:27,246 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:22:27,246 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:22:27,246 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:22:27,246 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,261 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sourcetree.sls' +2020-03-06 10:22:27,277 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:22:27,277 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:22:27,277 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:22:27,277 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,293 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot-anti-beacon.sls' +2020-03-06 10:22:27,293 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:22:27,293 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:22:27,308 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:22:27,308 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,308 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/spybot.sls' +2020-03-06 10:22:27,324 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:22:27,324 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:22:27,324 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:22:27,324 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,346 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sscserv-free.sls' +2020-03-06 10:22:27,356 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:22:27,356 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:22:27,356 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:22:27,356 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,372 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stayawake/init.sls' +2020-03-06 10:22:27,387 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:22:27,387 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:22:27,387 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:22:27,387 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,403 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/steam.sls' +2020-03-06 10:22:27,403 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:22:27,418 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:22:27,418 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:22:27,418 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,418 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stellarium.sls' +2020-03-06 10:22:27,434 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:22:27,434 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:22:27,434 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:22:27,434 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,451 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x64.sls' +2020-03-06 10:22:27,451 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:22:27,469 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:22:27,469 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:22:27,469 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,482 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/strawberryperl_x86.sls' +2020-03-06 10:22:27,482 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:22:27,482 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:22:27,496 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:22:27,496 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,496 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/stunnel.sls' +2020-03-06 10:22:27,513 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:22:27,513 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:22:27,513 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:22:27,513 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,529 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/subinacl.sls' +2020-03-06 10:22:27,544 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:22:27,544 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:22:27,544 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:22:27,544 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,559 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/sumatrapdf.sls' +2020-03-06 10:22:27,559 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:22:27,559 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:22:27,559 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:22:27,575 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,575 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/svn.sls' +2020-03-06 10:22:27,591 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:22:27,591 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:22:27,591 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:22:27,591 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,607 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer.sls' +2020-03-06 10:22:27,607 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:22:27,607 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:22:27,622 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:22:27,622 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,622 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teamviewer_host.sls' +2020-03-06 10:22:27,638 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:22:27,638 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:22:27,638 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:22:27,638 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,653 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/teracopy.sls' +2020-03-06 10:22:27,669 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:22:27,669 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:22:27,669 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:22:27,669 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,669 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texmaker.sls' +2020-03-06 10:22:27,684 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:22:27,684 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:22:27,684 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:22:27,700 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,700 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texniccenter.sls' +2020-03-06 10:22:27,716 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:22:27,716 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:22:27,716 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:22:27,716 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,731 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texstudio.sls' +2020-03-06 10:22:27,731 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:22:27,731 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:22:27,747 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:22:27,747 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,747 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/texworks.sls' +2020-03-06 10:22:27,763 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:22:27,763 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:22:27,763 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:22:27,763 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,778 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/thunderbird.sls' +2020-03-06 10:22:27,778 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:22:27,794 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:22:27,794 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:22:27,794 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,794 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tightvnc.sls' +2020-03-06 10:22:27,809 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:22:27,809 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:22:27,809 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:22:27,809 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,826 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todotxt.net.sls' +2020-03-06 10:22:27,841 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:22:27,841 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:22:27,841 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:22:27,841 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,841 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/todour.sls' +2020-03-06 10:22:27,856 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:22:27,856 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:22:27,856 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:22:27,856 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,872 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-bzr.sls' +2020-03-06 10:22:27,889 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:22:27,889 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:22:27,889 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:22:27,889 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,889 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-git.sls' +2020-03-06 10:22:27,904 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:22:27,904 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:22:27,904 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:22:27,919 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,919 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-hg.sls' +2020-03-06 10:22:27,936 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:22:27,936 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:22:27,936 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:22:27,936 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,951 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/tortoise-svn.sls' +2020-03-06 10:22:27,951 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:22:27,951 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:22:27,966 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:22:27,966 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,966 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/truecrypt.sls' +2020-03-06 10:22:27,983 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:22:27,983 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:22:27,983 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:22:27,997 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:27,997 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/ultradefrag.sls' +2020-03-06 10:22:28,014 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:22:28,014 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:22:28,014 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:22:28,014 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,029 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/urlrewrite.sls' +2020-03-06 10:22:28,044 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:22:28,044 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:22:28,044 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:22:28,044 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,060 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/usbdlm.sls' +2020-03-06 10:22:28,060 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:22:28,060 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:22:28,075 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:22:28,075 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,075 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vagrant.sls' +2020-03-06 10:22:28,092 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:22:28,092 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:22:28,092 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:22:28,092 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,107 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcforpython27.sls' +2020-03-06 10:22:28,123 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:22:28,123 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:22:28,123 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:22:28,123 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,138 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vcxsrv.sls' +2020-03-06 10:22:28,138 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:22:28,138 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:22:28,154 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:22:28,154 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,154 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/verysleepy.sls' +2020-03-06 10:22:28,170 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:22:28,170 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:22:28,170 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:22:28,185 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,185 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/veyon.sls' +2020-03-06 10:22:28,201 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:22:28,201 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:22:28,201 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:22:28,201 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,216 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/virtualbox.sls' +2020-03-06 10:22:28,234 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:22:28,234 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:22:28,234 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:22:28,234 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,248 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/viscosity.sls' +2020-03-06 10:22:28,248 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:22:28,263 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:22:28,263 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:22:28,263 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,263 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vivaldi.sls' +2020-03-06 10:22:28,280 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:22:28,280 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:22:28,280 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:22:28,280 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,311 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vlc.sls' +2020-03-06 10:22:28,311 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:22:28,327 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:22:28,327 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:22:28,327 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,327 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs-community.sls' +2020-03-06 10:22:28,342 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:22:28,342 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:22:28,342 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:22:28,342 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,358 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vs_remotetools_2017.sls' +2020-03-06 10:22:28,373 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:22:28,373 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:22:28,373 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:22:28,373 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,389 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vscode.sls' +2020-03-06 10:22:28,389 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:22:28,389 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:22:28,405 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:22:28,405 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,405 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/vsee.sls' +2020-03-06 10:22:28,420 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:22:28,420 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:22:28,420 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:22:28,420 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,436 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-server-3.sls' +2020-03-06 10:22:28,436 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:22:28,453 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:22:28,453 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:22:28,453 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,453 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wamp-stack.sls' +2020-03-06 10:22:28,468 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:22:28,468 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:22:28,468 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:22:28,468 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,485 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webdeploy.sls' +2020-03-06 10:22:28,500 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:22:28,500 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:22:28,500 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:22:28,500 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,516 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/webplatforminstaller.sls' +2020-03-06 10:22:28,517 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:22:28,531 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:22:28,531 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:22:28,531 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,531 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/win-app-manager.sls' +2020-03-06 10:22:28,547 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:22:28,547 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:22:28,547 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:22:28,547 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,562 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/windirstat.sls' +2020-03-06 10:22:28,579 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:22:28,579 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:22:28,595 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:22:28,595 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,595 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winhttpcertcfg.sls' +2020-03-06 10:22:28,608 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:22:28,608 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:22:28,608 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:22:28,608 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,626 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winlogbeat/init.sls' +2020-03-06 10:22:28,639 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:22:28,639 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:22:28,639 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:22:28,639 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,655 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmerge.sls' +2020-03-06 10:22:28,655 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:22:28,670 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:22:28,670 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:22:28,670 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,670 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winmtr.sls' +2020-03-06 10:22:28,686 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:22:28,686 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:22:28,703 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:22:28,703 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,703 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winpcap.sls' +2020-03-06 10:22:28,718 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:22:28,718 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:22:28,718 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:22:28,733 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,733 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winrar.sls' +2020-03-06 10:22:28,750 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:22:28,750 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:22:28,750 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:22:28,765 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,765 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/winscp.sls' +2020-03-06 10:22:28,797 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:22:28,797 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:22:28,797 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:22:28,797 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,812 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wireshark.sls' +2020-03-06 10:22:28,826 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:22:28,826 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:22:28,826 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:22:28,826 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,842 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wmi_provider/init.sls' +2020-03-06 10:22:28,859 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:22:28,874 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:22:28,874 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:22:28,874 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,889 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wscc.sls' +2020-03-06 10:22:28,905 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:22:28,905 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:22:28,905 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:22:28,905 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,922 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/wufuc.sls' +2020-03-06 10:22:28,936 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:22:28,936 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:22:28,936 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:22:28,936 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,953 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xampp.sls' +2020-03-06 10:22:28,969 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:22:28,969 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:22:28,969 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:22:28,969 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:28,984 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/xming.sls' +2020-03-06 10:22:28,999 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:22:28,999 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:22:28,999 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:22:28,999 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:29,014 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-manager.sls' +2020-03-06 10:22:29,032 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:22:29,032 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:22:29,032 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:22:29,032 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:29,047 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/yubikey-personalization-tool.sls' +2020-03-06 10:22:29,062 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:22:29,062 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:22:29,062 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:22:29,077 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:29,077 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zabbix-agent.sls' +2020-03-06 10:22:29,092 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:22:29,108 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:22:29,108 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:22:29,108 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:29,123 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zipinstaller/init.sls' +2020-03-06 10:22:29,139 [salt.fileclient :1101][DEBUG ][5108] In saltenv 'base', looking at rel_path 'win/repo-ng/salt-winrepo-ng/zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:22:29,139 [salt.fileclient :1109][DEBUG ][5108] In saltenv 'base', ** considering ** path 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' to resolve 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:22:29,139 [salt.fileclient :1129][DEBUG ][5108] Fetching file from saltenv 'base', ** attempting ** 'salt://win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:22:29,156 [salt.fileclient :1157][DEBUG ][5108] No dest file found +2020-03-06 10:22:29,156 [salt.fileclient :1238][INFO ][5108] Fetching file from saltenv 'base', ** done ** 'win/repo-ng/salt-winrepo-ng/zoom.sls' +2020-03-06 10:22:29,170 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,186 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,186 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls +2020-03-06 10:22:29,186 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,201 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'jinja' renderer: 0.015102624893188477 +2020-03-06 10:22:29,201 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -3352,11 +3218,11 @@ File Not Found 7zip: - '19.00.00.0': + '18.06.00.0': - full_name: '7-Zip 19.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1900-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' + full_name: '7-Zip 18.06 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1806-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3365,13 +3231,11 @@ File Not Found locale: en_US reboot: False - - - '16.04.00.0': + '18.05.00.0': - full_name: '7-Zip 16.04 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1604-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' + full_name: '7-Zip 18.05 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1805-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3380,11 +3244,11 @@ File Not Found locale: en_US reboot: False - '16.03.00.0': + '18.03.00.0': - full_name: '7-Zip 16.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1603-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' + full_name: '7-Zip 18.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1803-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3393,11 +3257,11 @@ File Not Found locale: en_US reboot: False - '16.02.00.0': + '18.01.00.0': - full_name: '7-Zip 16.02 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1602-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' + full_name: '7-Zip 18.01 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1801-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3406,11 +3270,13 @@ File Not Found locale: en_US reboot: False - '16.00.00.0': + + + '19.00.00.0': - full_name: '7-Zip 16.00 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1600-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' + full_name: '7-Zip 19.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1900-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1900-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3421,11 +3287,11 @@ File Not Found - '18.06.00.0': + '16.04.00.0': - full_name: '7-Zip 18.06 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1806-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1806-x64.msi' + full_name: '7-Zip 16.04 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1604-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1604-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3434,11 +3300,11 @@ File Not Found locale: en_US reboot: False - '18.05.00.0': + '16.03.00.0': - full_name: '7-Zip 18.05 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1805-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1805-x64.msi' + full_name: '7-Zip 16.03 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1603-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1603-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3447,11 +3313,11 @@ File Not Found locale: en_US reboot: False - '18.03.00.0': + '16.02.00.0': - full_name: '7-Zip 18.03 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1803-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1803-x64.msi' + full_name: '7-Zip 16.02 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1602-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1602-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3460,11 +3326,11 @@ File Not Found locale: en_US reboot: False - '18.01.00.0': + '16.00.00.0': - full_name: '7-Zip 18.01 (x64 edition)' - installer: 'https://d.7-zip.org/a/7z1801-x64.msi' - uninstaller: 'https://d.7-zip.org/a/7z1801-x64.msi' + full_name: '7-Zip 16.00 (x64 edition)' + installer: 'https://d.7-zip.org/a/7z1600-x64.msi' + uninstaller: 'https://d.7-zip.org/a/7z1600-x64.msi' arch: x64 install_flags: '/qn /norestart' @@ -3475,15 +3341,15 @@ File Not Found -2020-03-04 12:19:55,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('7zip', OrderedDict([('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,798 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.015646696090698242 -2020-03-04 12:19:55,798 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,798 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,798 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls -2020-03-04 12:19:55,798 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,813 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.015622377395629883 -2020-03-04 12:19:55,813 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: +2020-03-06 10:22:29,217 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('7zip', OrderedDict([('18.06.00.0', OrderedDict([('full_name', '7-Zip 18.06 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1806-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.05.00.0', OrderedDict([('full_name', '7-Zip 18.05 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1805-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.03.00.0', OrderedDict([('full_name', '7-Zip 18.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1803-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('18.01.00.0', OrderedDict([('full_name', '7-Zip 18.01 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1801-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('19.00.00.0', OrderedDict([('full_name', '7-Zip 19.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1900-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.04.00.0', OrderedDict([('full_name', '7-Zip 16.04 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1604-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.03.00.0', OrderedDict([('full_name', '7-Zip 16.03 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1603-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.02.00.0', OrderedDict([('full_name', '7-Zip 16.02 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1602-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('16.00.00.0', OrderedDict([('full_name', '7-Zip 16.00 (x64 edition)'), ('installer', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('uninstaller', 'https://d.7-zip.org/a/7z1600-x64.msi'), ('arch', 'x64'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:22:29,217 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\7zip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,217 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,217 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,233 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls +2020-03-06 10:22:29,233 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,233 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,233 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls: activeperl_x64: '5.22.4': @@ -3517,15 +3383,15 @@ activeperl_x64: reboot: False -2020-03-04 12:19:55,813 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,253 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('activeperl_x64', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x64-403863.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3', OrderedDict([('full_name', 'ActivePerl 5.24.3 Build 2404 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.24.3.2404/ActivePerl-5.24.3.2404-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {640132A6-C702-4B2F-96B6-562260574CAE} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.26.1', OrderedDict([('full_name', 'ActivePerl 5.26.1 Build 2601 (64-bit)'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.26.1.2601/ActivePerl-5.26.1.2601-MSWin32-x64-404865.exe'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstall_flags', '/x {F25E2736-A81F-435C-8CD5-ED71AD63A2FD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,813 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,813 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,813 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,813 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls -2020-03-04 12:19:55,830 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,830 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,830 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: +2020-03-06 10:22:29,253 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,253 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,265 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,265 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls +2020-03-06 10:22:29,265 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,281 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'jinja' renderer: 0.01569223403930664 +2020-03-06 10:22:29,281 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls: activeperl_x86: '5.22.4': @@ -3541,15 +3407,15 @@ activeperl_x86: reboot: False -2020-03-04 12:19:55,830 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('activeperl_x86', OrderedDict([('5.22.4', OrderedDict([('full_name', 'ActivePerl 5.22.4 Build 2205'), ('installer', 'http://downloads.activestate.com/ActivePerl/releases/5.22.4.2205/ActivePerl-5.22.4.2205-MSWin32-x86-64int-403863.exe'), ('uninstall_flags', '/x {5F58794C-C0AA-4394-ADE1-F491204395B6} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/exenoui /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,830 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,830 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,845 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,845 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls -2020-03-04 12:19:55,845 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,845 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,845 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: +2020-03-06 10:22:29,281 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\activeperl_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,296 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,296 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,296 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls +2020-03-06 10:22:29,314 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,314 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,314 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls: adobeair: latest: full_name: 'Adobe AIR' @@ -3570,15 +3436,15 @@ adobeair: locale: en_US reboot: False -2020-03-04 12:19:55,845 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,314 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('adobeair', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0.0.107', OrderedDict([('full_name', 'Adobe AIR'), ('installer', 'http://airdownload.adobe.com/air/win/download/30.0/AdobeAIRInstaller.exe'), ('install_flags', '-silent -eulaAccepted'), ('uninstaller', 'c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\airdownload.adobe.com\\air\\win\\download\\30.0\\AdobeAIRInstaller.exe'), ('uninstall_flags', '-uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,845 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,845 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,860 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,860 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls -2020-03-04 12:19:55,860 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,860 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,860 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: +2020-03-06 10:22:29,314 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeair.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,327 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,327 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,327 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls +2020-03-06 10:22:29,342 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,342 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,358 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls: # to understand what is meant by "classic" see # http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/whatsnewdc.html @@ -3772,15 +3638,15 @@ adobereader-dc-classic: reboot: False -2020-03-04 12:19:55,875 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,358 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('adobereader-dc-classic', OrderedDict([('20.006.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000620034/AcroRdrDC2000620034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120058/AcroRdrDC1902120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20049', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120049/AcroRdrDC1902120049_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.021.20047', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1902120047/AcroRdrDC1902120047_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20036', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220036/AcroRdrDC1901220036_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.012.20034', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901220034/AcroRdrDC1901220034_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20099', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020099/AcroRdrDC1901020099_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20098', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020098/AcroRdrDC1901020098_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20091', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020091/AcroRdrDC1901020091_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20069', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020069/AcroRdrDC1901020069_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.010.20064', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1901020064/AcroRdrDC1901020064_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20081', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820081/AcroRdrDC1900820081_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('19.008.20071', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20063', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120063/AcroRdrDC1801120063_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20058', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120058/AcroRdrDC1801120058_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20055', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120055/AcroRdrDC1801120055_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('18.011.20040', OrderedDict([('full_name', 'Adobe Acrobat Reader DC'), ('installer', 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/1801120040/AcroRdrDC1801120040_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES ALLUSERS=1 REMOVE_PREVIOUS=YES /qn'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AC0F074E4100} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,875 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.015137195587158203 -2020-03-04 12:19:55,875 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,875 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,875 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls -2020-03-04 12:19:55,875 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,875 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,892 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: +2020-03-06 10:22:29,358 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-dc-classic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,358 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,374 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,374 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls +2020-03-06 10:22:29,374 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,374 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,374 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls: adobereader-xi: '11.0.10': full_name: 'Adobe Reader XI (11.0.10)' @@ -3801,15 +3667,15 @@ adobereader-xi: locale: en_US reboot: False -2020-03-04 12:19:55,892 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,390 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('adobereader-xi', OrderedDict([('11.0.10', OrderedDict([('full_name', 'Adobe Reader XI (11.0.10)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('11.0.6', OrderedDict([('full_name', 'Adobe Reader XI (11.0.06)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.06/en_US/AdbeRdr11006_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AB0000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,892 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,892 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,892 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,892 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls -2020-03-04 12:19:55,892 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,908 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.015191793441772461 -2020-03-04 12:19:55,908 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: +2020-03-06 10:22:29,390 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader-xi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,390 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,390 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,390 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls +2020-03-06 10:22:29,405 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,405 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,405 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls: adobereader: '10.1.4': full_name: 'Adobe Reader X (10.1.4)' @@ -3830,15 +3696,15 @@ adobereader: locale: en_US reboot: False -2020-03-04 12:19:55,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,405 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('adobereader', OrderedDict([('10.1.4', OrderedDict([('full_name', 'Adobe Reader X (10.1.4)'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.4/en_US/AdbeRdr1014_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-AA1000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('9.5.0', OrderedDict([('full_name', 'Adobe Reader 9.5.0'), ('installer', 'http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe'), ('install_flags', '/msi EULA_ACCEPT=YES REMOVE_PREVIOUS=YES ALLUSERS=1 /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {AC76BA86-7AD7-1033-7B44-A95000000001} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,908 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,908 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,908 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,908 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls -2020-03-04 12:19:55,908 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,922 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.014592647552490234 -2020-03-04 12:19:55,922 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: +2020-03-06 10:22:29,405 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobereader.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,405 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,421 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,421 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls +2020-03-06 10:22:29,421 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,421 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,421 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls: adobeshockwaveplayer: latest: full_name: 'Adobe Shockwave Player 12.2' @@ -3852,15 +3718,15 @@ adobeshockwaveplayer: # # Adobe only makes one single *.msi available for the 12.1 series, so this file will get updated and might then install a newer version -2020-03-04 12:19:55,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,421 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('adobeshockwaveplayer', OrderedDict([('latest', OrderedDict([('full_name', 'Adobe Shockwave Player 12.2'), ('installer', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,922 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,922 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,922 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,922 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls -2020-03-04 12:19:55,922 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,939 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.016603469848632812 -2020-03-04 12:19:55,939 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: +2020-03-06 10:22:29,438 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adobeshockwaveplayer.sls' using 'yaml' renderer: 0.017121553421020508 +2020-03-06 10:22:29,438 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,438 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,453 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls +2020-03-06 10:22:29,453 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,468 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'jinja' renderer: 0.015491724014282227 +2020-03-06 10:22:29,468 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls: @@ -3883,15 +3749,15 @@ adv-ip-scanner: # http://www.advanced-ip-scanner.com # a product of: www.radmin.com -2020-03-04 12:19:55,939 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,468 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('adv-ip-scanner', OrderedDict([('2.5.3784', OrderedDict([('full_name', 'Advanced IP Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-ip-scanner/Advanced_IP_Scanner_2.5.3784.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_ip_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {FC77CBC1-A83E-4FB4-905C-7467DE6871C4}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,939 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,939 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,939 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,955 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls -2020-03-04 12:19:55,955 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,955 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,955 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: +2020-03-06 10:22:29,468 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-ip-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,484 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,484 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,484 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls +2020-03-06 10:22:29,499 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,499 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,515 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls: @@ -3914,15 +3780,15 @@ adv-port-scanner: # http://www.advanced-port-scanner.com # a product of: www.radmin.com -2020-03-04 12:19:55,955 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,515 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('adv-port-scanner', OrderedDict([('2.5.3680', OrderedDict([('full_name', 'Advanced Port Scanner 2.5'), ('installer', 'salt://win/repo-ng/adv-port-scanner/Advanced_Port_Scanner_2.5.3680.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- & taskkill /F /T /IM advanced_port_scanner.exe & exit 0'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /noreboot /x {76773275-7196-4B20-B3C6-27EDA624C053}'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,955 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:55,971 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,971 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,971 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls -2020-03-04 12:19:55,971 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,971 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,971 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: +2020-03-06 10:22:29,515 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\adv-port-scanner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,515 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,530 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,530 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls +2020-03-06 10:22:29,530 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,530 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,530 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls: advancedlogging: '1.0.0625.10': full_name: 'IIS Advanced Logging 1.0' @@ -3936,15 +3802,15 @@ advancedlogging: locale: en_US reboot: False -2020-03-04 12:19:55,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,546 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('advancedlogging', OrderedDict([('1.0.0625.10', OrderedDict([('full_name', 'IIS Advanced Logging 1.0'), ('installer', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('uninstaller', 'https://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,986 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.014688491821289062 -2020-03-04 12:19:55,986 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:55,986 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:55,986 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls -2020-03-04 12:19:55,986 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:55,986 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:55,986 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: +2020-03-06 10:22:29,546 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\advancedlogging.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,546 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,546 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,562 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls +2020-03-06 10:22:29,562 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,562 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,562 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls: # just 32-bit x86 msi package available @@ -3960,15 +3826,15 @@ anydesk-msi: locale: en_US reboot: False -2020-03-04 12:19:55,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,577 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('anydesk-msi', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk MSI'), ('installer', 'https://download.anydesk.com/AnyDesk.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:55,986 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,002 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,002 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,002 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls -2020-03-04 12:19:56,002 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,002 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,017 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: +2020-03-06 10:22:29,577 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk-msi.sls' using 'yaml' renderer: 0.01565098762512207 +2020-03-06 10:22:29,577 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,577 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,577 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls +2020-03-06 10:22:29,602 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,609 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'jinja' renderer: 0.007192850112915039 +2020-03-06 10:22:29,609 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls: # just 32-bit x86 installer available @@ -3988,15 +3854,15 @@ anydesk: locale: en_US reboot: False -2020-03-04 12:19:56,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,609 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('anydesk', OrderedDict([('latest', OrderedDict([('full_name', 'AnyDesk'), ('installer', 'https://download.anydesk.com/AnyDesk.exe'), ('install_flags', '--install "%ProgramFiles(x86)%\\AnyDesk" --start-with-win --silent --create-shortcut'), ('uninstaller', 'https://download.anydesk.com/AnyDesk.exe'), ('uninstall_flags', '--silent --remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,017 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,017 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,017 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,017 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls -2020-03-04 12:19:56,032 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,032 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,032 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: +2020-03-06 10:22:29,609 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\anydesk.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,609 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,624 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,624 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls +2020-03-06 10:22:29,624 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,640 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'jinja' renderer: 0.01564311981201172 +2020-03-06 10:22:29,640 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls: applicationrequestrouting: '3.0.1952': full_name: 'Microsoft Application Request Routing 3.0' @@ -4010,15 +3876,15 @@ applicationrequestrouting: locale: en_US reboot: False -2020-03-04 12:19:56,047 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,640 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('applicationrequestrouting', OrderedDict([('3.0.1952', OrderedDict([('full_name', 'Microsoft Application Request Routing 3.0'), ('installer', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/E/9/8/E9849D6A-020E-47E4-9FD0-A023E99B54EB/requestRouter_amd64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,047 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.01518106460571289 -2020-03-04 12:19:56,047 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,047 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,047 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls -2020-03-04 12:19:56,047 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,047 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,064 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: +2020-03-06 10:22:29,640 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\applicationrequestrouting.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,655 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,655 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,655 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls +2020-03-06 10:22:29,655 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,655 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,671 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls: aspnet-mvc1: '1.0.0.0': full_name: 'Microsoft ASP.NET MVC 1.0' @@ -4030,15 +3896,15 @@ aspnet-mvc1: locale: en_US reboot: False -2020-03-04 12:19:56,064 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,671 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('aspnet-mvc1', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Microsoft ASP.NET MVC 1.0'), ('installer', 'https://download.microsoft.com/download/A/6/8/A68968AE-DE1D-4FA4-A98A-B74042C6090D/AspNetMVC1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', '{A4394612-D02F-11DC-9BFF-D18556D89593}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,064 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,064 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,064 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,064 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls -2020-03-04 12:19:56,079 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,079 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,079 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: +2020-03-06 10:22:29,671 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\aspnet-mvc1.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,671 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,671 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,686 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls +2020-03-06 10:22:29,686 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,686 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,686 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls: atom: @@ -4103,15 +3969,15 @@ atom: reboot: False -2020-03-04 12:19:56,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,704 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('atom', OrderedDict([('1.28.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.28.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.2', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.2/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.27.1', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.27.1/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.23.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.23.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.8.0/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Atom'), ('installer', 'https://github.com/atom/atom/releases/download/v1.7.3/AtomSetup.exe'), ('install_flags', '--machine'), ('uninstaller', '%AppData%\\Local\\atom\\Update.exe'), ('uninstall_flags', '--uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,079 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,079 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,079 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,095 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls -2020-03-04 12:19:56,095 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,095 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,095 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: +2020-03-06 10:22:29,704 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\atom.sls' using 'yaml' renderer: 0.01723480224609375 +2020-03-06 10:22:29,704 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,718 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,718 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls +2020-03-06 10:22:29,718 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,718 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,718 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls: @@ -4139,15 +4005,15 @@ audacity: reboot: False -2020-03-04 12:19:56,095 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('audacity', OrderedDict([('2.2.2', OrderedDict([('full_name', 'Audacity 2.2.2'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.2/audacity-win-2.2.2.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Audacity 2.2.1'), ('installer', 'https://downloads.sourceforge.net/project/audacity/audacity/2.2.1/audacity-win-2.2.1.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Audacity\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,095 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,095 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,112 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,112 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls -2020-03-04 12:19:56,112 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,112 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,112 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: +2020-03-06 10:22:29,736 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\audacity.sls' using 'yaml' renderer: 0.018079519271850586 +2020-03-06 10:22:29,736 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,736 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,736 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls +2020-03-06 10:22:29,750 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,750 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,750 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls: @@ -4189,15 +4055,15 @@ autohotkey: locale: en_US reboot: False -2020-03-04 12:19:56,126 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,765 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('autohotkey', OrderedDict([('1.1.29.01', OrderedDict([('full_name', 'AutoHotkey 1.1.29.01'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.27.06', OrderedDict([('full_name', 'AutoHotkey 1.1.27.06'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.24.00', OrderedDict([('full_name', 'AutoHotkey 1.1.24.00'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.22.09', OrderedDict([('full_name', 'AutoHotkey 1.1.22.09'), ('installer', 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'), ('install_flags', '/S /U32 /D="%ProgramFiles(x86)%\\AutoHotkey"'), ('uninstaller', '%ProgramFiles(x86)%\\AutoHotKey\\AutoHotKey.exe'), ('uninstall_flags', '"%ProgramFiles(x86)%\\AutoHotkey\\Installer.ahk" /Uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,126 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.01456761360168457 -2020-03-04 12:19:56,126 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,126 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,126 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls -2020-03-04 12:19:56,126 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,141 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.014957427978515625 -2020-03-04 12:19:56,141 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: +2020-03-06 10:22:29,765 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autohotkey.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,765 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,765 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,789 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls +2020-03-06 10:22:29,789 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,796 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'jinja' renderer: 0.007324934005737305 +2020-03-06 10:22:29,796 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls: autoit: @@ -4214,15 +4080,15 @@ autoit: reboot: False -2020-03-04 12:19:56,141 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,796 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('autoit', OrderedDict([('3.3.14.5', OrderedDict([('full_name', 'AutoIt v3.3.14.5'), ('installer', 'https://www.autoitscript.com/files/autoit3/autoit-v3-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\AutoIt3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,141 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,141 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,141 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,141 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls -2020-03-04 12:19:56,141 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,158 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.016597747802734375 -2020-03-04 12:19:56,158 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: +2020-03-06 10:22:29,796 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autoit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,812 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,812 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,812 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls +2020-03-06 10:22:29,812 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,829 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'jinja' renderer: 0.01712632179260254 +2020-03-06 10:22:29,829 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls: autopsy: '4.3.0': full_name: 'Autopsy' @@ -4236,15 +4102,15 @@ autopsy: locale: en_US reboot: False -2020-03-04 12:19:56,158 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,829 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('autopsy', OrderedDict([('4.3.0', OrderedDict([('full_name', 'Autopsy'), ('installer', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/autopsy/autopsy/4.3.0/autopsy-4.3.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,158 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,158 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,158 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,158 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls -2020-03-04 12:19:56,173 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,173 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,173 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: +2020-03-06 10:22:29,829 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\autopsy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,844 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,844 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,844 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls +2020-03-06 10:22:29,860 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,860 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,860 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available awscli: @@ -4260,15 +4126,15 @@ awscli: locale: en_US reboot: False -2020-03-04 12:19:56,173 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,860 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('awscli', OrderedDict([('latest', OrderedDict([('full_name', 'AWS Command Line Interface'), ('installer', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('uninstaller', 'https://s3.amazonaws.com/aws-cli/AWSCLI64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,173 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,189 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,189 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,189 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls -2020-03-04 12:19:56,189 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,189 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,189 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: +2020-03-06 10:22:29,860 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\awscli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,876 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,876 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,876 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls +2020-03-06 10:22:29,876 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,890 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'jinja' renderer: 0.014801025390625 +2020-03-06 10:22:29,890 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls: # due to winrepo installer limitations you need to manually download the exe from # https://go.microsoft.com/fwlink/?linkid=2049975 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/azuredatastudio/... @@ -4286,15 +4152,15 @@ azuredatastudio: locale: en_US reboot: False -2020-03-04 12:19:56,189 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,890 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('azuredatastudio', OrderedDict([('1.3.9', OrderedDict([('full_name', 'Azure Data Studio'), ('installer', 'https://azuredatastudiobuilds.blob.core.windows.net/releases/1.3.9/azuredatastudio-windows-setup-1.3.9.exe'), ('uninstaller', 'C:\\Program Files\\Azure Data Studio\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS=!RUNCODE'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,204 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.014985084533691406 -2020-03-04 12:19:56,204 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,204 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,204 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls -2020-03-04 12:19:56,204 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,204 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,204 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: +2020-03-06 10:22:29,890 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\azuredatastudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,907 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,907 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,907 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls +2020-03-06 10:22:29,907 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,922 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'jinja' renderer: 0.015806913375854492 +2020-03-06 10:22:29,922 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls: #the provider only offers the download of the latest version @@ -4310,15 +4176,15 @@ bandizip: locale: en_US reboot: False -2020-03-04 12:19:56,204 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,922 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('bandizip', OrderedDict([('6.21', OrderedDict([('full_name', 'Bandizip'), ('installer', 'http://ca-dl.bandisoft.com/bandizip/BANDIZIP-SETUP.EXE'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Bandizip\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,220 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.016099214553833008 -2020-03-04 12:19:56,220 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,220 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,220 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls -2020-03-04 12:19:56,220 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,220 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,236 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: +2020-03-06 10:22:29,922 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bandizip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,937 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,937 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,937 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls +2020-03-06 10:22:29,937 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,953 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'jinja' renderer: 0.01595139503479004 +2020-03-06 10:22:29,953 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls: # just 32-bit x86 installer available @@ -4334,15 +4200,15 @@ belarc-advisor: locale: en_US reboot: False -2020-03-04 12:19:56,236 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,953 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('belarc-advisor', OrderedDict([('8.6', OrderedDict([('full_name', 'Belarc Advisor'), ('installer', 'http://downloads.belarc.com/advisor/advisorinstaller.exe'), ('install_flags', '/s'), ('uninstaller', '%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\Uninstall.exe'), ('uninstall_flags', '/s "%PROGRAMFILES(x86)%\\Belarc\\BelarcAdvisor\\INSTALL.LOG"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,236 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,236 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,236 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,236 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls -2020-03-04 12:19:56,236 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,236 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,252 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: +2020-03-06 10:22:29,953 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\belarc-advisor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,968 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,968 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:29,968 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls +2020-03-06 10:22:29,968 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:29,968 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:29,968 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls: bginfo4x: '3.3.6': full_name: 'BGINFO4X for Windows 3.3.6' @@ -4354,15 +4220,15 @@ bginfo4x: locale: en_US reboot: False -2020-03-04 12:19:56,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:29,984 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('bginfo4x', OrderedDict([('3.3.6', OrderedDict([('full_name', 'BGINFO4X for Windows 3.3.6'), ('installer', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/bginfo4x/BGINFO4X3.3.6.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,252 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,252 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,252 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,252 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls -2020-03-04 12:19:56,267 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,267 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,267 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: +2020-03-06 10:22:29,984 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bginfo4x.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:29,984 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:29,984 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,000 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls +2020-03-06 10:22:30,000 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,016 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'jinja' renderer: 0.015660762786865234 +2020-03-06 10:22:30,016 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls: # source: https://bitnami.com/redirect/to/61422/bitnami-nginxstack-1.8.0-0-windows-installer.exe bitnami-nginxstack: '1.8.0-0': @@ -4375,15 +4241,15 @@ bitnami-nginxstack: locale: en_US reboot: False -2020-03-04 12:19:56,267 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,016 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('bitnami-nginxstack', OrderedDict([('1.8.0-0', OrderedDict([('full_name', 'Bitnami Nginx Stack'), ('installer', 'https://downloads.bitnami.com/files/stacks/nginxstack/1.8.0-0/bitnami-nginxstack-1.8.0-0-windows-installer.exe'), ('install_flags', '--unattendedmodeui none --mode unattended --base_password "ChangeMeNow"'), ('uninstaller', 'C:\\Bitnami\\nginxstack-1.8.0-0\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,267 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,267 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,282 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,282 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls -2020-03-04 12:19:56,282 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,282 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,282 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: +2020-03-06 10:22:30,016 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitnami-nginxstack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,016 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,031 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,031 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls +2020-03-06 10:22:30,031 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,031 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,048 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -4403,15 +4269,15 @@ bitvise: -2020-03-04 12:19:56,282 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,048 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('bitvise', OrderedDict([('8.32', OrderedDict([('full_name', 'Bitvise SSH Server 8.32 (remove only)'), ('installer', 'https://s3.amazonaws.com/dl.bitvise.com/BvSshServer-Inst.exe'), ('install_flags', '-acceptEULA -defaultInstance -startService'), ('uninstaller', '%ProgramFiles%\\Bitvise SSH Server\\uninst.exe'), ('uninstall_flags', '"Bitvise SSH Server" -unat'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,282 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,282 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,298 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,298 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls -2020-03-04 12:19:56,298 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,298 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,314 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: +2020-03-06 10:22:30,048 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bitvise.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,048 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,062 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,062 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls +2020-03-06 10:22:30,062 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,062 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,079 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available blender: @@ -4427,15 +4293,15 @@ blender: locale: en_US reboot: False -2020-03-04 12:19:56,314 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,079 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('blender', OrderedDict([('2.78', OrderedDict([('full_name', 'Blender'), ('installer', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('uninstaller', 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,314 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,314 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,314 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,314 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls -2020-03-04 12:19:56,330 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,330 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,330 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: +2020-03-06 10:22:30,079 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\blender.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,079 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,079 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,094 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls +2020-03-06 10:22:30,094 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,094 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,109 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls: bootracer: '6.50.0.450': full_name: 'BootRacer' @@ -4448,15 +4314,15 @@ bootracer: reboot: False # download zip archive manually and unpack msi to slat master winrepo-ng directory -2020-03-04 12:19:56,330 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,109 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('bootracer', OrderedDict([('6.50.0.450', OrderedDict([('full_name', 'BootRacer'), ('installer', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('uninstaller', 'salt://win/repo-ng/bootracer/bootracer-650.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,330 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,330 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,330 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,345 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls -2020-03-04 12:19:56,345 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,345 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,345 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: +2020-03-06 10:22:30,109 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bootracer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,109 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,109 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,109 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls +2020-03-06 10:22:30,125 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,125 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,125 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls: bulkrenameutility: @@ -4474,15 +4340,15 @@ bulkrenameutility: -2020-03-04 12:19:56,361 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,143 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('bulkrenameutility', OrderedDict([('3.0.0.1', OrderedDict([('full_name', 'Bulk Rename Utility 3.0.0.1 (64-bit)'), ('installer', 'http://www.s3.tgrmn.com/bru/BRU_setup_3.0.0.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\Bulk Rename Utility\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,361 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.016664505004882812 -2020-03-04 12:19:56,361 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,361 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,361 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls -2020-03-04 12:19:56,361 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,376 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.014548540115356445 -2020-03-04 12:19:56,376 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: +2020-03-06 10:22:30,143 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulkrenameutility.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,143 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,143 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,143 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls +2020-03-06 10:22:30,156 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,156 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,174 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls: # just 32-bit x86 installer available @@ -4520,15 +4386,15 @@ bulk_extractor: reboot: False -2020-03-04 12:19:56,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('bulk_extractor', OrderedDict([('1.5.5', OrderedDict([('full_name', 'Bulk Extractor 1.5.5'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.5\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Bulk Extractor 1.5.1'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.1-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.1\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Bulk Extractor 1.5.0'), ('installer', 'https://digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.0-windowsinstaller.exe'), ('install_flags', ' /S /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Bulk Extractor 1.5.0\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,376 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,376 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,376 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,376 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls -2020-03-04 12:19:56,392 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,392 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,392 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: +2020-03-06 10:22:30,174 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\bulk_extractor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,174 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,174 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,188 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls +2020-03-06 10:22:30,188 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,204 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'jinja' renderer: 0.01589202880859375 +2020-03-06 10:22:30,204 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls: ccleaner-slim: @@ -4577,15 +4443,15 @@ ccleaner-slim: reboot: False -2020-03-04 12:19:56,392 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,204 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ccleaner-slim', OrderedDict([('5.60', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup560_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.59', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup559_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.58', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup558_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/slim/ccsetup557_slim.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,392 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,407 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,407 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,407 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls -2020-03-04 12:19:56,407 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,407 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,407 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: +2020-03-06 10:22:30,204 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner-slim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,219 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,219 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,219 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls +2020-03-06 10:22:30,219 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,235 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'jinja' renderer: 0.015628576278686523 +2020-03-06 10:22:30,235 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls: ccleaner: @@ -4612,15 +4478,15 @@ ccleaner: reboot: False -2020-03-04 12:19:56,407 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,235 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ccleaner', OrderedDict([('5.57', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup557.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.44', OrderedDict([('full_name', 'CCleaner'), ('installer', 'https://download.ccleaner.com/ccsetup544.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\CCleaner\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,422 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.014973163604736328 -2020-03-04 12:19:56,422 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,422 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,422 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls -2020-03-04 12:19:56,422 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,422 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,422 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: +2020-03-06 10:22:30,235 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ccleaner.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,235 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,250 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,250 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls +2020-03-06 10:22:30,250 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,250 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,250 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -4636,15 +4502,15 @@ cdburnerxp: locale: en_US reboot: False -2020-03-04 12:19:56,422 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,250 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('cdburnerxp', OrderedDict([('4.5.6.5931', OrderedDict([('full_name', 'CDBurnerXP'), ('installer', 'https://download.cdburnerxp.se/cdbxp_setup_4.5.6.5931.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\CDBurnerXP\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,439 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.017068147659301758 -2020-03-04 12:19:56,439 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,439 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,439 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls -2020-03-04 12:19:56,439 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,454 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.01450347900390625 -2020-03-04 12:19:56,454 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: +2020-03-06 10:22:30,266 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdburnerxp.sls' using 'yaml' renderer: 0.01567220687866211 +2020-03-06 10:22:30,266 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,266 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,266 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls +2020-03-06 10:22:30,266 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,281 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'jinja' renderer: 0.015622377395629883 +2020-03-06 10:22:30,281 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls: # just 32-bit x86 installer available @@ -4660,15 +4526,15 @@ cdroller: locale: en_US reboot: False -2020-03-04 12:19:56,454 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,281 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('cdroller', OrderedDict([('10.0', OrderedDict([('full_name', 'CDRoller version 10.0'), ('installer', 'http://cdroller.fileburst.com/CDRoller10_en.exe'), ('install_flags', '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'), ('uninstaller', '%PROGRAMFILES(x86)%\\CDRoller\\unins000.exe'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,454 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,454 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,454 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,454 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls -2020-03-04 12:19:56,470 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,470 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,470 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: +2020-03-06 10:22:30,281 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cdroller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,281 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,297 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,297 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls +2020-03-06 10:22:30,297 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,313 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'jinja' renderer: 0.015473365783691406 +2020-03-06 10:22:30,313 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls: check-mk-agent-msi: '1.5.0.3268': @@ -4882,15 +4748,15 @@ check-mk-agent-msi: reboot: False -2020-03-04 12:19:56,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,313 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('check-mk-agent-msi', OrderedDict([('1.5.0.3268', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.5.0.3268.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2940', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2940.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0.2857', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0.2857.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.4.0p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8.1521', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8.1521.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8p26', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8p26.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.8b1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.8b1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p5', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p4', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p3', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p2', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.7i3p1', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.7i3p1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6.185', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6.185.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p16', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p15', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p14', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p13', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.2.6p12', OrderedDict([('full_name', 'Check_MK Agent'), ('installer', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/check_mk/check_mk_agent-1.2.6p12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,485 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.014925479888916016 -2020-03-04 12:19:56,485 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,485 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,485 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls -2020-03-04 12:19:56,485 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,485 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,485 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: +2020-03-06 10:22:30,313 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,329 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,329 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,329 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls +2020-03-06 10:22:30,329 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,344 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'jinja' renderer: 0.014747381210327148 +2020-03-06 10:22:30,344 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls: check-mk-agent: 'Not Found': full_name: 'Check_MK Agent 1.2.8b4' @@ -4904,15 +4770,15 @@ check-mk-agent: locale: en_US reboot: False -2020-03-04 12:19:56,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,344 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('check-mk-agent', OrderedDict([('Not Found', OrderedDict([('full_name', 'Check_MK Agent 1.2.8b4'), ('installer', 'salt://win/repo-ng/check_mk/install_agent-64-1.2.8b4.exe'), ('uninstaller', '%ProgramFiles%\\check_mk\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,500 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,500 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,500 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,500 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls -2020-03-04 12:19:56,500 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,500 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,500 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: +2020-03-06 10:22:30,344 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\check-mk-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,344 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,360 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,360 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls +2020-03-06 10:22:30,360 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,360 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,360 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls: chrome-rdp: latest: full_name: 'Chrome Remote Desktop Host' @@ -4924,15 +4790,15 @@ chrome-rdp: locale: en_US reboot: False -2020-03-04 12:19:56,500 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,360 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('chrome-rdp', OrderedDict([('latest', OrderedDict([('full_name', 'Chrome Remote Desktop Host'), ('installer', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/dl/edgedl/chrome-remote-desktop/chromeremotedesktophost.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,517 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.016656160354614258 -2020-03-04 12:19:56,517 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,517 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,517 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls -2020-03-04 12:19:56,517 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,517 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,517 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: +2020-03-06 10:22:30,375 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome-rdp.sls' using 'yaml' renderer: 0.01469278335571289 +2020-03-06 10:22:30,375 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,375 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,375 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls +2020-03-06 10:22:30,398 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,398 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,398 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls: chrome: latest: full_name: 'Google Chrome' @@ -4944,15 +4810,15 @@ chrome: locale: en_US reboot: False -2020-03-04 12:19:56,517 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,406 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('chrome', OrderedDict([('latest', OrderedDict([('full_name', 'Google Chrome'), ('installer', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,517 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,533 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,533 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,533 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls -2020-03-04 12:19:56,533 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,533 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,533 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: +2020-03-06 10:22:30,406 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chrome.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,406 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,406 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,406 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls +2020-03-06 10:22:30,406 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,423 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'jinja' renderer: 0.016596078872680664 +2020-03-06 10:22:30,423 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls: clamav: '0.99.1': @@ -4979,15 +4845,15 @@ clamav: uninstaller: 'msiexec.exe' uninstall_flags: '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}' -2020-03-04 12:19:56,533 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,423 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('clamav', OrderedDict([('0.99.1', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.99.1-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')])), ('0.98.7', OrderedDict([('full_name', 'ClamAV-x64'), ('installer', 'salt://win/repo-ng/clamav/clamav-0.98.7-x64.msi'), ('install_flags', '/qr'), ('locale', 'en_US'), ('reboot', False), ('msiexec', True), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {66A7538D-C6C2-431D-A62F-BAD564FA4F6B}')]))]))]) -2020-03-04 12:19:56,549 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.016083240509033203 -2020-03-04 12:19:56,549 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,549 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,549 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls -2020-03-04 12:19:56,549 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,549 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,549 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: +2020-03-06 10:22:30,423 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamav.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,423 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,438 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,438 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls +2020-03-06 10:22:30,438 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,438 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,438 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls: # just 32-bit x86 installer available @@ -5021,15 +4887,15 @@ clamwin: locale: en_US reboot: False -2020-03-04 12:19:56,564 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,453 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('clamwin', OrderedDict([('0.98.7', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.7-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.6', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.6-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.98.5', OrderedDict([('full_name', 'ClamWin'), ('installer', 'https://downloads.sourceforge.net/clamwin/clamwin-0.98.5-setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\ClamWin\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,564 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,564 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,564 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,564 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls -2020-03-04 12:19:56,580 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,580 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,580 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: +2020-03-06 10:22:30,453 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clamwin.sls' using 'yaml' renderer: 0.015659809112548828 +2020-03-06 10:22:30,453 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,453 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,453 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls +2020-03-06 10:22:30,469 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,469 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,469 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls: classicshell: '4.2.4': full_name: 'Classic Shell' @@ -5043,15 +4909,15 @@ classicshell: locale: en_US reboot: False -2020-03-04 12:19:56,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,469 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('classicshell', OrderedDict([('4.2.4', OrderedDict([('full_name', 'Classic Shell'), ('installer', 'http://www.mediafire.com/download/wl5nbjaki7zbssn/ClassicShellSetup_4_2_4.exe'), ('install_flags', '/passive'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E289B7DD-6732-4333-A47A-75A145D23EE3} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,580 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,580 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,580 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,595 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls -2020-03-04 12:19:56,595 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,595 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,595 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: +2020-03-06 10:22:30,469 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\classicshell.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,485 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,485 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,485 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls +2020-03-06 10:22:30,485 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,485 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,501 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls: # just 32-bit x86 installer available @@ -5095,15 +4961,15 @@ clink: reboot: False # https://mridgers.github.io/clink/ -2020-03-04 12:19:56,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,501 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('clink', OrderedDict([('0.4.8', OrderedDict([('full_name', 'Clink v0.4.8'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.8/clink_0.4.8_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.8\\clink_uninstall_0.4.8.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.7', OrderedDict([('full_name', 'Clink v0.4.7'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.7/clink_0.4.7_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.7\\clink_uninstall_0.4.7.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.6', OrderedDict([('full_name', 'Clink v0.4.6'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.6/clink_0.4.6_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.6\\clink_uninstall_0.4.6.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'Clink v0.4.4'), ('installer', 'https://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\clink\\0.4.4\\clink_uninstall_0.4.4.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,595 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,610 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,610 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,610 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls -2020-03-04 12:19:56,610 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,610 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,610 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: +2020-03-06 10:22:30,501 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\clink.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,501 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,501 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,516 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls +2020-03-06 10:22:30,516 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,516 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,516 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls: conemu: '11.160.5290': @@ -5117,15 +4983,15 @@ conemu: locale: en_US reboot: False -2020-03-04 12:19:56,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,516 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('conemu', OrderedDict([('11.160.5290', OrderedDict([('full_name', 'ConEmu 160529.x64'), ('install_flags', '/p:x64,adm /quiet /norestart'), ('uninstall_flags', '/qn /x {A75DF0AD-CC78-48F5-8DEF-868A393CE9DF} /norestart'), ('installer', 'https://github.com/Maximus5/ConEmu/releases/download/v16.05.29/ConEmuSetup.160529.exe'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,610 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,627 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,627 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,627 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls -2020-03-04 12:19:56,627 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,627 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,627 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: +2020-03-06 10:22:30,516 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\conemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,532 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,532 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,532 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls +2020-03-06 10:22:30,532 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,548 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,548 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls: cpu-z: '1.86': @@ -5371,15 +5237,15 @@ cpu-z: reboot: False -2020-03-04 12:19:56,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,548 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('cpu-z', OrderedDict([('1.86', OrderedDict([('full_name', 'CPUID CPU-Z 1.86'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.86-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.85', OrderedDict([('full_name', 'CPUID CPU-Z 1.85'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.85-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.84', OrderedDict([('full_name', 'CPUID CPU-Z 1.84'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.84-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.83', OrderedDict([('full_name', 'CPUID CPU-Z 1.83'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.83-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.82', OrderedDict([('full_name', 'CPUID CPU-Z 1.82'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.82-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.81', OrderedDict([('full_name', 'CPUID CPU-Z 1.81'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.81-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.80', OrderedDict([('full_name', 'CPUID CPU-Z 1.80'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.80-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.79', OrderedDict([('full_name', 'CPUID CPU-Z 1.79'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.79-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.78', OrderedDict([('full_name', 'CPUID CPU-Z 1.78'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.78-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.77', OrderedDict([('full_name', 'CPUID CPU-Z 1.77'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.77-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.76', OrderedDict([('full_name', 'CPUID CPU-Z 1.76'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.76-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.75', OrderedDict([('full_name', 'CPUID CPU-Z 1.75'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.75-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.74', OrderedDict([('full_name', 'CPUID CPU-Z 1.74'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.74-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.73', OrderedDict([('full_name', 'CPUID CPU-Z 1.73'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.73-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.72.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.72.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.71.1', OrderedDict([('full_name', 'CPUID CPU-Z 1.71.1'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.71.1-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.70', OrderedDict([('full_name', 'CPUID CPU-Z 1.70'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.70-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.69', OrderedDict([('full_name', 'CPUID CPU-Z 1.69'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.69-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.68', OrderedDict([('full_name', 'CPUID CPU-Z 1.68'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.68-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.67', OrderedDict([('full_name', 'CPUID CPU-Z 1.67'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.67-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.66', OrderedDict([('full_name', 'CPUID CPU-Z 1.66'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.66-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.65', OrderedDict([('full_name', 'CPUID CPU-Z 1.65'), ('installer', 'http://download.cpuid.com/cpu-z/cpu-z_1.65-en.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles%\\CPUID\\CPU-Z\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,641 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,641 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,641 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,641 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls -2020-03-04 12:19:56,641 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,657 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.01612401008605957 -2020-03-04 12:19:56,657 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: +2020-03-06 10:22:30,548 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cpu-z.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,563 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,563 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,563 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls +2020-03-06 10:22:30,563 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,563 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,581 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available curl: @@ -5443,15 +5309,15 @@ curl: # Note: 'curl' is also a standard powershell alias as of at least .NET 4.0 for Invoke-WebRequest, # so you might not be calling the right 'curl' -2020-03-04 12:19:56,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,581 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('curl', OrderedDict([('7.46.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.46.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.45.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.45.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.44.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.44.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.43.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.43.0-win64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.0', OrderedDict([('full_name', 'cURL'), ('installer', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstaller', 'salt://win/repo-ng/curl/curl-7.40.0-win64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,657 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,673 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,673 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,673 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls -2020-03-04 12:19:56,673 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,673 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,673 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: +2020-03-06 10:22:30,581 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\curl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,581 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,594 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,594 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls +2020-03-06 10:22:30,594 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,594 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,594 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls: cyberduck-cli: '1.0.0.0': full_name: 'Cyberduck CLI' @@ -5463,15 +5329,15 @@ cyberduck-cli: locale: en_US reboot: False -2020-03-04 12:19:56,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,594 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('cyberduck-cli', OrderedDict([('1.0.0.0', OrderedDict([('full_name', 'Cyberduck CLI'), ('installer', 'http://dist.duck.sh/duck-5.0.3.20504.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ALLUSERSPROFILE%\\Package Cache\\{d7e97b39-df55-4b65-84b3-c24d1041948b}\\duck-5.0.3.20504.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,673 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,673 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,673 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,690 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls -2020-03-04 12:19:56,690 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,704 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.01415109634399414 -2020-03-04 12:19:56,704 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: +2020-03-06 10:22:30,594 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-cli.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,610 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,610 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,610 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls +2020-03-06 10:22:30,610 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,626 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'jinja' renderer: 0.015293359756469727 +2020-03-06 10:22:30,626 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls: # just 32-bit x86 installer available @@ -5492,10 +5358,10 @@ cyberduck-msi: - '6.9.0.29768': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5504,10 +5370,10 @@ cyberduck-msi: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi' install_flags: '/qn' uninstall_flags: '/qn' msiexec: True @@ -5516,15 +5382,15 @@ cyberduck-msi: -2020-03-04 12:19:56,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('cyberduck-msi', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,720 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.016086101531982422 -2020-03-04 12:19:56,720 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,720 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,720 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls -2020-03-04 12:19:56,720 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,738 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.018070459365844727 -2020-03-04 12:19:56,738 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: +2020-03-06 10:22:30,626 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('cyberduck-msi', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.msi'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:22:30,626 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,626 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,642 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,642 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls +2020-03-06 10:22:30,642 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,657 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'jinja' renderer: 0.015650510787963867 +2020-03-06 10:22:30,657 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls: # just 32-bit x86 installer available @@ -5545,10 +5411,10 @@ cyberduck: - '6.9.0.29768': + '6.8.3.29107': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5557,10 +5423,10 @@ cyberduck: - '6.8.3.29107': + '6.9.0.29768': full_name: 'Cyberduck' - installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' - uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe' + installer: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' + uninstaller: 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe' install_flags: '/install /quiet' uninstall_flags: '/uninstall /quiet' msiexec: False @@ -5569,15 +5435,15 @@ cyberduck: -2020-03-04 12:19:56,738 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('cyberduck', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,738 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,751 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,751 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,751 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls -2020-03-04 12:19:56,751 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,767 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.01565074920654297 -2020-03-04 12:19:56,767 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: +2020-03-06 10:22:30,657 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('cyberduck', OrderedDict([('6.8.2.28974', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.2.28974.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.8.3.29107', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.8.3.29107.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.0.29768', OrderedDict([('full_name', 'Cyberduck'), ('installer', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('uninstaller', 'https://update.cyberduck.io/windows/Cyberduck-Installer-6.9.0.29768.exe'), ('install_flags', '/install /quiet'), ('uninstall_flags', '/uninstall /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:22:30,657 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\cyberduck.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,657 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,674 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,674 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls +2020-03-06 10:22:30,674 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,688 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'jinja' renderer: 0.014200687408447266 +2020-03-06 10:22:30,688 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls: # just 32-bit x86 installer available @@ -5602,15 +5468,15 @@ defraggler: locale: en_US reboot: False -2020-03-04 12:19:56,767 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,688 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('defraggler', OrderedDict([('2.20', OrderedDict([('full_name', 'Defraggler'), ('installer', 'https://download.piriform.com/dfsetup220.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.945', OrderedDict([('full_name', 'Defraggler 2.18'), ('installer', 'https://download.piriform.com/dfsetup218.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Defraggler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,767 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,767 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,767 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,767 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls -2020-03-04 12:19:56,783 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,783 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,783 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: +2020-03-06 10:22:30,688 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\defraggler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,688 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,705 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,705 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls +2020-03-06 10:22:30,705 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,705 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,720 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls: dotnet: '4.6.01590': full_name: 'Microsoft .NET Framework 4.6.2' @@ -5657,15 +5523,15 @@ dotnet: locale: en_US reboot: False -2020-03-04 12:19:56,783 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('dotnet', OrderedDict([('4.6.01590', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.2'), ('installer', 'https://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01590\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.01055', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6.1'), ('installer', 'https://download.microsoft.com/download/3/5/9/35980F81-60F4-4DE3-88FC-8F962B97253B/NDP461-KB3102438-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.01055\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.6.00081', OrderedDict([('full_name', 'Microsoft .NET Framework 4.6'), ('installer', 'https://download.microsoft.com/download/1/4/A/14A6C422-0D3C-4811-A31F-5EF91A83C368/NDP46-KB3045560-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.6.00081\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.5.51209', OrderedDict([('full_name', 'Microsoft .NET Framework 4.5.2'), ('installer', 'https://download.microsoft.com/download/B/4/1/B4119C11-0423-477B-80EE-7A474314B347/NDP452-KB2901954-Web.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SetupCache\\v4.5.51209\\Setup.exe'), ('uninstall_flags', '/uninstall /x86 /x64 /q /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,783 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,783 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,798 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,798 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls -2020-03-04 12:19:56,798 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,798 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,798 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: +2020-03-06 10:22:30,720 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dotnet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,720 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,720 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,720 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls +2020-03-06 10:22:30,735 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,735 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,735 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls: # just 32-bit x86 installer available @@ -5686,15 +5552,15 @@ dropbox: locale: en_US reboot: False -2020-03-04 12:19:56,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,735 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('dropbox', OrderedDict([('69.4.102', OrderedDict([('full_name', 'Dropbox'), ('installer', 'https://clientupdates.dropboxstatic.com/dbx-releng/client/Dropbox%2069.4.102%20Offline%20Installer.exe'), ('install_flags', '/NOLAUNCH'), ('uninstaller', '%PROGRAMFILES(x86)%\\Dropbox\\Client\\DropboxUninstaller.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,798 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,814 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,814 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,814 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls -2020-03-04 12:19:56,814 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,814 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,814 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: +2020-03-06 10:22:30,735 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dropbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,752 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,752 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,752 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls +2020-03-06 10:22:30,752 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,752 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,752 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls: duplicati: '1.3.4': @@ -5711,15 +5577,15 @@ duplicati: cache_dir: False use_scheduler: False -2020-03-04 12:19:56,814 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,752 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('duplicati', OrderedDict([('1.3.4', OrderedDict([('full_name', 'Duplicati (x64)'), ('installer', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('uninstaller', 'https://duplicati.googlecode.com/files/Duplicati%201.3.4.x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('refresh', False), ('cache_dir', False), ('use_scheduler', False)]))]))]) -2020-03-04 12:19:56,814 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,830 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,830 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,830 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls -2020-03-04 12:19:56,830 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,830 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,830 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: +2020-03-06 10:22:30,767 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\duplicati.sls' using 'yaml' renderer: 0.015164852142333984 +2020-03-06 10:22:30,767 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,767 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,767 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls +2020-03-06 10:22:30,767 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,784 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'jinja' renderer: 0.01668691635131836 +2020-03-06 10:22:30,784 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available dvdstyler: @@ -5735,15 +5601,15 @@ dvdstyler: locale: en_US reboot: False -2020-03-04 12:19:56,830 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('dvdstyler', OrderedDict([('Not Found', OrderedDict([('full_name', 'DVDStyler v2.9.6'), ('installer', 'https://downloads.sourceforge.net/project/dvdstyler/dvdstyler/2.9.6/DVDStyler-2.9.6-win64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\DVDStyler\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,830 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,846 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,846 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,846 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls -2020-03-04 12:19:56,846 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,861 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.015651464462280273 -2020-03-04 12:19:56,861 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: +2020-03-06 10:22:30,784 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\dvdstyler.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,784 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,799 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,799 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls +2020-03-06 10:22:30,799 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,815 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'jinja' renderer: 0.016151905059814453 +2020-03-06 10:22:30,815 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls: echo-desktop: '3.0.4': full_name: @@ -5755,15 +5621,15 @@ echo-desktop: uninstaller: "C:\\Program Files (x86)\\LiveScribe\\uninstall.exe" uninstall_flags: "/S /U:\"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml\"" -2020-03-04 12:19:56,878 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('echo-desktop', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Echo Desktop'), ('installer', 'https://www.livescribe.com/downloads/support/EchoDesktop/win/EchoDesktop_Setup_v3.0.4.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\LiveScribe\\uninstall.exe'), ('uninstall_flags', '/S /U:"C:\\Program Files (x86)\\LiveScribe\\Uninstall\\uninstall.xml"')]))]))]) -2020-03-04 12:19:56,878 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,878 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,878 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,878 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls -2020-03-04 12:19:56,893 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,893 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,893 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: +2020-03-06 10:22:30,815 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\echo-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,815 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,830 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,830 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls +2020-03-06 10:22:30,845 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,845 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,845 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls: eea: # '5.0.2260.1': # full_name: 'ESET Endpoint Antivirus' @@ -5795,15 +5661,15 @@ eea: # download from your closest eset server using your credentials and place into relevant version dir in salt://win/repo/eea/ # for Uk use http://www.eset.co.uk/Download/Software/Product/EAVB -2020-03-04 12:19:56,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,845 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('eea', OrderedDict([('6.3.2016.0', OrderedDict([('full_name', 'ESET Endpoint Antivirus'), ('installer', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('uninstaller', 'salt://win/repo-ng/eea/v6/eea_nt64_enu.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True), ('use_scheduler', True)]))]))]) -2020-03-04 12:19:56,893 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,893 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,908 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,908 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls -2020-03-04 12:19:56,908 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,908 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,908 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: +2020-03-06 10:22:30,845 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eea.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,861 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,861 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,861 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls +2020-03-06 10:22:30,861 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,876 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'jinja' renderer: 0.01550912857055664 +2020-03-06 10:22:30,876 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls: emet: '5.5': full_name: 'EMET 5.5' @@ -5815,15 +5681,15 @@ emet: locale: en_US reboot: False -2020-03-04 12:19:56,923 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('emet', OrderedDict([('5.5', OrderedDict([('full_name', 'EMET 5.5'), ('installer', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('install_flags', 'ALLUSERS=1 /quiet /qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/8/E/E/8EEFD9FC-46B1-4A8B-9B5D-13B4365F8CA0/EMET%20Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,923 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,923 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,923 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,923 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls -2020-03-04 12:19:56,939 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,939 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,939 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: +2020-03-06 10:22:30,876 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emet.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,876 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,876 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,892 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls +2020-03-06 10:22:30,892 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,892 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,909 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls: # just 32-bit x86 installer available @@ -5840,15 +5706,15 @@ emsisoft-anti-malware: locale: en_US reboot: False -2020-03-04 12:19:56,939 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('emsisoft-anti-malware', OrderedDict([('9.0', OrderedDict([('full_name', 'Emsisoft Anti-Malware'), ('installer', 'https://dl.emsisoft.com/EmsisoftAntiMalwareSetup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Emsisoft Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SuppressMsgBoxes'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,939 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,939 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,954 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,954 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls -2020-03-04 12:19:56,954 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,970 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.01607346534729004 -2020-03-04 12:19:56,970 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: +2020-03-06 10:22:30,909 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\emsisoft-anti-malware.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,909 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,909 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,924 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls +2020-03-06 10:22:30,924 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,940 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'jinja' renderer: 0.016131877899169922 +2020-03-06 10:22:30,940 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls: eraser: @@ -5874,15 +5740,15 @@ eraser: reboot: False -2020-03-04 12:19:56,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('eraser', OrderedDict([('6.2.2986', OrderedDict([('full_name', 'Eraser 6.2.0.2986'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2986.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5227C9E1-58FC-45DE-880C-0E4C3559837D} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.2.2983', OrderedDict([('full_name', 'Eraser 6.2.0.2983'), ('installer', 'https://downloads.sourceforge.net/project/eraser/Eraser%206/6.2/Eraser%206.2.0.2983.exe'), ('install_flags', '--quiet /verysilent /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,970 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:56,970 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:56,970 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:56,970 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls -2020-03-04 12:19:56,986 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:56,986 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:56,986 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: +2020-03-06 10:22:30,940 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\eraser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,940 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,955 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,955 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls +2020-03-06 10:22:30,955 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,971 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'jinja' renderer: 0.015978097915649414 +2020-03-06 10:22:30,971 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls: evernote: '6.9.7.6770': full_name: 'Evernote v. 6.9.7' @@ -5912,15 +5778,15 @@ evernote: locale: en_US reboot: False -2020-03-04 12:19:56,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('evernote', OrderedDict([('6.9.7.6770', OrderedDict([('full_name', 'Evernote v. 6.9.7'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.7.6770.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.9.6.6729', OrderedDict([('full_name', 'Evernote v. 6.9.6'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.9.6.6729.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('6.5.4.4720', OrderedDict([('full_name', 'Evernote v. 6.5.4'), ('installer', 'https://cdn1.evernote.com/win6/public/Evernote_6.5.4.4720.exe'), ('install_flags', '/quiet'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/x {D47E7D82-0D98-11E7-A6D6-005056951CAD} /qn /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:56,986 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,001 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,001 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,001 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls -2020-03-04 12:19:57,001 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,001 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,001 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: +2020-03-06 10:22:30,971 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\evernote.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:30,971 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:30,986 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:30,986 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls +2020-03-06 10:22:30,986 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:30,986 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:30,986 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls: # just 32-bit x86 installer available @@ -5936,15 +5802,15 @@ fiddler: locale: en_US reboot: False -2020-03-04 12:19:57,016 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:30,986 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('fiddler', OrderedDict([('5.0.20181.14850', OrderedDict([('full_name', 'Fiddler'), ('installer', 'https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerSetup.exe'), ('install_flags', '/S /D=%ProgramFiles(x86)%\\Fiddler'), ('uninstaller', '%ProgramFiles(x86)%\\Fiddler\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,016 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,016 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,016 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,016 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls -2020-03-04 12:19:57,016 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,016 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,033 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: +2020-03-06 10:22:31,001 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\fiddler.sls' using 'yaml' renderer: 0.015645265579223633 +2020-03-06 10:22:31,001 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,001 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,001 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls +2020-03-06 10:22:31,001 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,017 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'jinja' renderer: 0.016157865524291992 +2020-03-06 10:22:31,017 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls: # just 32-bit x86 installer available @@ -5962,15 +5828,15 @@ filehippo-app-manager: reboot: False # download manually and place on master salt://win/repo-ng/filehippo-app-manager -2020-03-04 12:19:57,033 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,017 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('filehippo-app-manager', OrderedDict([('2.0', OrderedDict([('full_name', 'FileHippo App Manager'), ('installer', 'salt://win/repo-ng/filehippo-app-manager/AppManagerSetup_2.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\FileHippo.com\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,033 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,033 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,033 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,033 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls -2020-03-04 12:19:57,033 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,048 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.01549983024597168 -2020-03-04 12:19:57,048 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: +2020-03-06 10:22:31,017 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filehippo-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,032 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,032 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,032 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls +2020-03-06 10:22:31,032 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,049 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'jinja' renderer: 0.016929149627685547 +2020-03-06 10:22:31,049 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls: filezilla: @@ -6744,15 +6610,15 @@ filezilla: reboot: False -2020-03-04 12:19:57,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('filezilla', OrderedDict([('3.47.1', OrderedDict([('full_name', 'FileZilla Client 3.47.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.47.0', OrderedDict([('full_name', 'FileZilla Client 3.47.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.47.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.3', OrderedDict([('full_name', 'FileZilla Client 3.46.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.2', OrderedDict([('full_name', 'FileZilla Client 3.46.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.1', OrderedDict([('full_name', 'FileZilla Client 3.46.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.46.0', OrderedDict([('full_name', 'FileZilla Client 3.46.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.46.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.1', OrderedDict([('full_name', 'FileZilla Client 3.45.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.45.0', OrderedDict([('full_name', 'FileZilla Client 3.45.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.45.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.2', OrderedDict([('full_name', 'FileZilla Client 3.44.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.1', OrderedDict([('full_name', 'FileZilla Client 3.44.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.44.0', OrderedDict([('full_name', 'FileZilla Client 3.44.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.44.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.43.0', OrderedDict([('full_name', 'FileZilla Client 3.43.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.43.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.1', OrderedDict([('full_name', 'FileZilla Client 3.42.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.42.0', OrderedDict([('full_name', 'FileZilla Client 3.42.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.42.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.2', OrderedDict([('full_name', 'FileZilla Client 3.41.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.1', OrderedDict([('full_name', 'FileZilla Client 3.41.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.41.0', OrderedDict([('full_name', 'FileZilla Client 3.41.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.41.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.40.0', OrderedDict([('full_name', 'FileZilla Client 3.40.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.40.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.39.0', OrderedDict([('full_name', 'FileZilla Client 3.39.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.39.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.1', OrderedDict([('full_name', 'FileZilla Client 3.38.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.38.0', OrderedDict([('full_name', 'FileZilla Client 3.38.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.38.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.4', OrderedDict([('full_name', 'FileZilla Client 3.37.4'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.4_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.3', OrderedDict([('full_name', 'FileZilla Client 3.37.3'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.3_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.1', OrderedDict([('full_name', 'FileZilla Client 3.37.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.37.0', OrderedDict([('full_name', 'FileZilla Client 3.37.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.37.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.36.0', OrderedDict([('full_name', 'FileZilla Client 3.36.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.36.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.2', OrderedDict([('full_name', 'FileZilla Client 3.35.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.1', OrderedDict([('full_name', 'FileZilla Client 3.35.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.35.0', OrderedDict([('full_name', 'FileZilla Client 3.35.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.35.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.34.0', OrderedDict([('full_name', 'FileZilla Client 3.34.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.34.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.33.0', OrderedDict([('full_name', 'FileZilla Client 3.33.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.33.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.32.0', OrderedDict([('full_name', 'FileZilla Client 3.32.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.32.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.31.0', OrderedDict([('full_name', 'FileZilla Client 3.31.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.31.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.30.0', OrderedDict([('full_name', 'FileZilla Client 3.30.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.30.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.29.0', OrderedDict([('full_name', 'FileZilla Client 3.29.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.29.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.28.0', OrderedDict([('full_name', 'FileZilla Client 3.28.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.28.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.1', OrderedDict([('full_name', 'FileZilla Client 3.27.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0.1', OrderedDict([('full_name', 'FileZilla Client 3.27.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.27.0', OrderedDict([('full_name', 'FileZilla Client 3.27.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.27.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.2', OrderedDict([('full_name', 'FileZilla Client 3.26.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.1', OrderedDict([('full_name', 'FileZilla Client 3.26.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.26.0', OrderedDict([('full_name', 'FileZilla Client 3.26.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.26.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.2', OrderedDict([('full_name', 'FileZilla Client 3.25.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.1', OrderedDict([('full_name', 'FileZilla Client 3.25.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.25.0', OrderedDict([('full_name', 'FileZilla Client 3.25.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.25.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.1', OrderedDict([('full_name', 'FileZilla Client 3.24.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.24.0', OrderedDict([('full_name', 'FileZilla Client 3.24.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.24.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.2', OrderedDict([('full_name', 'FileZilla Client 3.23.0.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0.1', OrderedDict([('full_name', 'FileZilla Client 3.23.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.23.0', OrderedDict([('full_name', 'FileZilla Client 3.23.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.23.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2.1', OrderedDict([('full_name', 'FileZilla Client 3.22.2.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.2', OrderedDict([('full_name', 'FileZilla Client 3.22.2'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.2_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.1', OrderedDict([('full_name', 'FileZilla Client 3.22.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.22.0', OrderedDict([('full_name', 'FileZilla Client 3.22.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.22.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.21.0', OrderedDict([('full_name', 'FileZilla Client 3.21.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.21.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.1', OrderedDict([('full_name', 'FileZilla Client 3.20.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.20.0', OrderedDict([('full_name', 'FileZilla Client 3.20.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.20.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.19.0', OrderedDict([('full_name', 'FileZilla Client 3.19.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.19.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.18.0', OrderedDict([('full_name', 'FileZilla Client 3.18.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.18.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0.1', OrderedDict([('full_name', 'FileZilla Client 3.17.0.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.17.0', OrderedDict([('full_name', 'FileZilla Client 3.17.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.17.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.1', OrderedDict([('full_name', 'FileZilla Client 3.16.1'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.1_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.16.0', OrderedDict([('full_name', 'FileZilla Client 3.16.0'), ('installer', 'https://download.filezilla-project.org/client/FileZilla_3.16.0_win64-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\FileZilla FTP Client\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,063 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.014643430709838867 -2020-03-04 12:19:57,063 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,079 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,079 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls -2020-03-04 12:19:57,079 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,095 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.016570568084716797 -2020-03-04 12:19:57,095 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: +2020-03-06 10:22:31,067 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filezilla.sls' using 'yaml' renderer: 0.017609596252441406 +2020-03-06 10:22:31,079 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,079 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,079 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls +2020-03-06 10:22:31,095 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,095 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,095 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls: firefox-esr_x64: '68.5.0': @@ -7416,15 +7282,15 @@ firefox-esr_x64: reboot: False -2020-03-04 12:19:57,110 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('firefox-esr_x64', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win64/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win64/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win64/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win64/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win64/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win64/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win64/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win64/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win64/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win64/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win64/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win64/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win64/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win64/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win64/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win64/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win64/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win64/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win64/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win64/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win64/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win64/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win64/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win64/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win64/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win64/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win64/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win64/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win64/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win64/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win64/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win64/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win64/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win64/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win64/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win64/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win64/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win64/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win64/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win64/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win64/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win64/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win64/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win64/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win64/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win64/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win64/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win64/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win64/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win64/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win64/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win64/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win64/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win64/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win64/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win64/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win64/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win64/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win64/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win64/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win64/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win64/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win64/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win64/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win64/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win64/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,110 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.015126705169677734 -2020-03-04 12:19:57,110 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,110 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,126 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls -2020-03-04 12:19:57,126 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,142 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.01577305793762207 -2020-03-04 12:19:57,142 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: +2020-03-06 10:22:31,126 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x64.sls' using 'yaml' renderer: 0.014673233032226562 +2020-03-06 10:22:31,126 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,126 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,126 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls +2020-03-06 10:22:31,143 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,160 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'jinja' renderer: 0.017027854919433594 +2020-03-06 10:22:31,160 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls: firefox-esr_x86: @@ -8201,15 +8067,15 @@ firefox-esr_x86: reboot: False -2020-03-04 12:19:57,157 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('firefox-esr_x86', OrderedDict([('68.5.0', OrderedDict([('full_name', 'Mozilla Firefox 68.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.5.0esr/win32/en-US/Firefox%20Setup%2068.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.2', OrderedDict([('full_name', 'Mozilla Firefox 68.4.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.2esr/win32/en-US/Firefox%20Setup%2068.4.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.1', OrderedDict([('full_name', 'Mozilla Firefox 68.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.1esr/win32/en-US/Firefox%20Setup%2068.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.4.0', OrderedDict([('full_name', 'Mozilla Firefox 68.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.4.0esr/win32/en-US/Firefox%20Setup%2068.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.3.0', OrderedDict([('full_name', 'Mozilla Firefox 68.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.3.0esr/win32/en-US/Firefox%20Setup%2068.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.2.0', OrderedDict([('full_name', 'Mozilla Firefox 68.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.2.0esr/win32/en-US/Firefox%20Setup%2068.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.1.0', OrderedDict([('full_name', 'Mozilla Firefox 68.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.1.0esr/win32/en-US/Firefox%20Setup%2068.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0esr/win32/en-US/Firefox%20Setup%2068.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.9.0', OrderedDict([('full_name', 'Mozilla Firefox 60.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.9.0esr/win32/en-US/Firefox%20Setup%2060.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.8.0', OrderedDict([('full_name', 'Mozilla Firefox 60.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.8.0esr/win32/en-US/Firefox%20Setup%2060.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.2', OrderedDict([('full_name', 'Mozilla Firefox 60.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.2esr/win32/en-US/Firefox%20Setup%2060.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.1', OrderedDict([('full_name', 'Mozilla Firefox 60.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.1esr/win32/en-US/Firefox%20Setup%2060.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.7.0', OrderedDict([('full_name', 'Mozilla Firefox 60.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.7.0esr/win32/en-US/Firefox%20Setup%2060.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.3', OrderedDict([('full_name', 'Mozilla Firefox 60.6.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.3esr/win32/en-US/Firefox%20Setup%2060.6.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.2', OrderedDict([('full_name', 'Mozilla Firefox 60.6.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.2esr/win32/en-US/Firefox%20Setup%2060.6.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.1', OrderedDict([('full_name', 'Mozilla Firefox 60.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.1esr/win32/en-US/Firefox%20Setup%2060.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Firefox 60.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.6.0esr/win32/en-US/Firefox%20Setup%2060.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Firefox 60.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.2esr/win32/en-US/Firefox%20Setup%2060.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Firefox 60.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.1esr/win32/en-US/Firefox%20Setup%2060.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Firefox 60.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.5.0esr/win32/en-US/Firefox%20Setup%2060.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Firefox 60.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.4.0esr/win32/en-US/Firefox%20Setup%2060.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Firefox 60.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.3.0esr/win32/en-US/Firefox%20Setup%2060.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.2', OrderedDict([('full_name', 'Mozilla Firefox 60.2.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.2esr/win32/en-US/Firefox%20Setup%2060.2.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Firefox 60.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.1esr/win32/en-US/Firefox%20Setup%2060.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.0', OrderedDict([('full_name', 'Mozilla Firefox 60.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.2.0esr/win32/en-US/Firefox%20Setup%2060.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.1.0', OrderedDict([('full_name', 'Mozilla Firefox 60.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.1.0esr/win32/en-US/Firefox%20Setup%2060.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2esr/win32/en-US/Firefox%20Setup%2060.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1esr/win32/en-US/Firefox%20Setup%2060.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0esr/win32/en-US/Firefox%20Setup%2060.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Firefox 52.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.9.0esr/win32/en-US/Firefox%20Setup%2052.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.1', OrderedDict([('full_name', 'Mozilla Firefox 52.8.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.1esr/win32/en-US/Firefox%20Setup%2052.8.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Firefox 52.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.8.0esr/win32/en-US/Firefox%20Setup%2052.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.4', OrderedDict([('full_name', 'Mozilla Firefox 52.7.4 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.4esr/win32/en-US/Firefox%20Setup%2052.7.4esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.3', OrderedDict([('full_name', 'Mozilla Firefox 52.7.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.3esr/win32/en-US/Firefox%20Setup%2052.7.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.2', OrderedDict([('full_name', 'Mozilla Firefox 52.7.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.2esr/win32/en-US/Firefox%20Setup%2052.7.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.1', OrderedDict([('full_name', 'Mozilla Firefox 52.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.1esr/win32/en-US/Firefox%20Setup%2052.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.7.0', OrderedDict([('full_name', 'Mozilla Firefox 52.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.7.0esr/win32/en-US/Firefox%20Setup%2052.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Firefox 52.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.6.0esr/win32/en-US/Firefox%20Setup%2052.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.3', OrderedDict([('full_name', 'Mozilla Firefox 52.5.3 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.3esr/win32/en-US/Firefox%20Setup%2052.5.3esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Firefox 52.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.2esr/win32/en-US/Firefox%20Setup%2052.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.0', OrderedDict([('full_name', 'Mozilla Firefox 52.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.5.0esr/win32/en-US/Firefox%20Setup%2052.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.1', OrderedDict([('full_name', 'Mozilla Firefox 52.4.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.1esr/win32/en-US/Firefox%20Setup%2052.4.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.4.0', OrderedDict([('full_name', 'Mozilla Firefox 52.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.4.0esr/win32/en-US/Firefox%20Setup%2052.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Firefox 52.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.3.0esr/win32/en-US/Firefox%20Setup%2052.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.1', OrderedDict([('full_name', 'Mozilla Firefox 52.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.1esr/win32/en-US/Firefox%20Setup%2052.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.2.0', OrderedDict([('full_name', 'Mozilla Firefox 52.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.2.0esr/win32/en-US/Firefox%20Setup%2052.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.2', OrderedDict([('full_name', 'Mozilla Firefox 52.1.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.2esr/win32/en-US/Firefox%20Setup%2052.1.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.1', OrderedDict([('full_name', 'Mozilla Firefox 52.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.1esr/win32/en-US/Firefox%20Setup%2052.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.1.0', OrderedDict([('full_name', 'Mozilla Firefox 52.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.1.0esr/win32/en-US/Firefox%20Setup%2052.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2esr/win32/en-US/Firefox%20Setup%2052.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1esr/win32/en-US/Firefox%20Setup%2052.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0esr/win32/en-US/Firefox%20Setup%2052.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.9.0', OrderedDict([('full_name', 'Mozilla Firefox 45.9.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.9.0esr/win32/en-US/Firefox%20Setup%2045.9.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.8.0', OrderedDict([('full_name', 'Mozilla Firefox 45.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.8.0esr/win32/en-US/Firefox%20Setup%2045.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.7.0', OrderedDict([('full_name', 'Mozilla Firefox 45.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.7.0esr/win32/en-US/Firefox%20Setup%2045.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Firefox 45.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.6.0esr/win32/en-US/Firefox%20Setup%2045.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.1', OrderedDict([('full_name', 'Mozilla Firefox 45.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.1esr/win32/en-US/Firefox%20Setup%2045.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.5.0', OrderedDict([('full_name', 'Mozilla Firefox 45.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.5.0esr/win32/en-US/Firefox%20Setup%2045.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Firefox 45.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.4.0esr/win32/en-US/Firefox%20Setup%2045.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.3.0', OrderedDict([('full_name', 'Mozilla Firefox 45.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.3.0esr/win32/en-US/Firefox%20Setup%2045.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.2.0', OrderedDict([('full_name', 'Mozilla Firefox 45.2.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.2.0esr/win32/en-US/Firefox%20Setup%2045.2.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.1', OrderedDict([('full_name', 'Mozilla Firefox 45.1.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.1esr/win32/en-US/Firefox%20Setup%2045.1.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.1.0', OrderedDict([('full_name', 'Mozilla Firefox 45.1.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.1.0esr/win32/en-US/Firefox%20Setup%2045.1.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2esr/win32/en-US/Firefox%20Setup%2045.0.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1esr/win32/en-US/Firefox%20Setup%2045.0.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0esr/win32/en-US/Firefox%20Setup%2045.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.8.0', OrderedDict([('full_name', 'Mozilla Firefox 38.8.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.8.0esr/win32/en-US/Firefox%20Setup%2038.8.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.1', OrderedDict([('full_name', 'Mozilla Firefox 38.7.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.1esr/win32/en-US/Firefox%20Setup%2038.7.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.7.0', OrderedDict([('full_name', 'Mozilla Firefox 38.7.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.7.0esr/win32/en-US/Firefox%20Setup%2038.7.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.1', OrderedDict([('full_name', 'Mozilla Firefox 38.6.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.1esr/win32/en-US/Firefox%20Setup%2038.6.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Firefox 38.6.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.6.0esr/win32/en-US/Firefox%20Setup%2038.6.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.2', OrderedDict([('full_name', 'Mozilla Firefox 38.5.2 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.2esr/win32/en-US/Firefox%20Setup%2038.5.2esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.1', OrderedDict([('full_name', 'Mozilla Firefox 38.5.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.1esr/win32/en-US/Firefox%20Setup%2038.5.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Firefox 38.5.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.5.0esr/win32/en-US/Firefox%20Setup%2038.5.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Firefox 38.4.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.4.0esr/win32/en-US/Firefox%20Setup%2038.4.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Firefox 38.3.0 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.3.0esr/win32/en-US/Firefox%20Setup%2038.3.0esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.1', OrderedDict([('full_name', 'Mozilla Firefox 38.2.1 ESR (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.2.1esr/win32/en-US/Firefox%20Setup%2038.2.1esr.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,157 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.015527486801147461 -2020-03-04 12:19:57,157 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,173 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,173 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls -2020-03-04 12:19:57,173 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,189 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.015814542770385742 -2020-03-04 12:19:57,189 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: +2020-03-06 10:22:31,174 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox-esr_x86.sls' using 'yaml' renderer: 0.01455545425415039 +2020-03-06 10:22:31,189 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,189 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,205 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls +2020-03-06 10:22:31,205 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,205 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,223 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls: firefox_x64: '73.0': @@ -9193,15 +9059,15 @@ firefox_x64: reboot: False -2020-03-04 12:19:57,204 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,237 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('firefox_x64', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win64/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win64/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win64/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win64/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win64/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win64/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win64/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win64/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win64/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win64/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win64/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win64/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win64/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win64/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win64/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win64/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win64/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win64/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win64/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win64/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win64/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win64/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win64/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win64/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win64/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win64/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win64/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win64/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win64/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win64/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win64/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win64/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win64/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win64/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win64/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win64/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win64/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win64/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win64/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win64/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win64/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win64/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win64/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win64/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win64/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win64/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win64/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win64/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win64/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win64/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win64/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win64/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win64/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win64/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win64/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win64/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win64/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win64/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win64/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win64/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win64/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win64/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win64/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win64/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win64/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win64/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win64/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win64/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win64/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win64/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win64/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win64/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win64/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win64/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win64/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win64/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win64/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win64/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win64/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win64/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win64/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win64/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win64/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win64/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win64/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win64/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win64/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win64/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win64/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win64/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win64/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win64/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win64/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win64/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win64/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win64/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win64/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x64 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win64/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,204 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.014914274215698242 -2020-03-04 12:19:57,204 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,219 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,219 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls -2020-03-04 12:19:57,219 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,236 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.01612091064453125 -2020-03-04 12:19:57,236 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: +2020-03-06 10:22:31,237 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x64.sls' using 'yaml' renderer: 0.013963699340820312 +2020-03-06 10:22:31,252 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,252 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,252 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls +2020-03-06 10:22:31,271 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,287 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'jinja' renderer: 0.015918970108032227 +2020-03-06 10:22:31,287 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls: firefox_x86: @@ -10548,15 +10414,15 @@ firefox_x86: reboot: False -2020-03-04 12:19:57,268 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('firefox_x86', OrderedDict([('73.0', OrderedDict([('full_name', 'Mozilla Firefox 73.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/73.0/win32/en-US/Firefox%20Setup%2073.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.2', OrderedDict([('full_name', 'Mozilla Firefox 72.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.2/win32/en-US/Firefox%20Setup%2072.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0.1', OrderedDict([('full_name', 'Mozilla Firefox 72.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/win32/en-US/Firefox%20Setup%2072.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('72.0', OrderedDict([('full_name', 'Mozilla Firefox 72.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/win32/en-US/Firefox%20Setup%2072.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('71.0', OrderedDict([('full_name', 'Mozilla Firefox 71.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/71.0/win32/en-US/Firefox%20Setup%2071.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0.1', OrderedDict([('full_name', 'Mozilla Firefox 70.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0.1/win32/en-US/Firefox%20Setup%2070.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('70.0', OrderedDict([('full_name', 'Mozilla Firefox 70.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/70.0/win32/en-US/Firefox%20Setup%2070.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.3', OrderedDict([('full_name', 'Mozilla Firefox 69.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.3/win32/en-US/Firefox%20Setup%2069.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.2', OrderedDict([('full_name', 'Mozilla Firefox 69.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.2/win32/en-US/Firefox%20Setup%2069.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0.1', OrderedDict([('full_name', 'Mozilla Firefox 69.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0.1/win32/en-US/Firefox%20Setup%2069.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('69.0', OrderedDict([('full_name', 'Mozilla Firefox 69.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/69.0/win32/en-US/Firefox%20Setup%2069.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.2', OrderedDict([('full_name', 'Mozilla Firefox 68.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.2/win32/en-US/Firefox%20Setup%2068.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0.1', OrderedDict([('full_name', 'Mozilla Firefox 68.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0.1/win32/en-US/Firefox%20Setup%2068.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('68.0', OrderedDict([('full_name', 'Mozilla Firefox 68.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/68.0/win32/en-US/Firefox%20Setup%2068.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.4', OrderedDict([('full_name', 'Mozilla Firefox 67.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.4/win32/en-US/Firefox%20Setup%2067.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.3', OrderedDict([('full_name', 'Mozilla Firefox 67.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.3/win32/en-US/Firefox%20Setup%2067.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.2', OrderedDict([('full_name', 'Mozilla Firefox 67.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.2/win32/en-US/Firefox%20Setup%2067.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0.1', OrderedDict([('full_name', 'Mozilla Firefox 67.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0.1/win32/en-US/Firefox%20Setup%2067.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('67.0', OrderedDict([('full_name', 'Mozilla Firefox 67.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/67.0/win32/en-US/Firefox%20Setup%2067.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.5', OrderedDict([('full_name', 'Mozilla Firefox 66.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.5/win32/en-US/Firefox%20Setup%2066.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.4', OrderedDict([('full_name', 'Mozilla Firefox 66.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.4/win32/en-US/Firefox%20Setup%2066.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.3', OrderedDict([('full_name', 'Mozilla Firefox 66.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.3/win32/en-US/Firefox%20Setup%2066.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.2', OrderedDict([('full_name', 'Mozilla Firefox 66.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.2/win32/en-US/Firefox%20Setup%2066.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0.1', OrderedDict([('full_name', 'Mozilla Firefox 66.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0.1/win32/en-US/Firefox%20Setup%2066.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('66.0', OrderedDict([('full_name', 'Mozilla Firefox 66.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/66.0/win32/en-US/Firefox%20Setup%2066.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.2', OrderedDict([('full_name', 'Mozilla Firefox 65.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.2/win32/en-US/Firefox%20Setup%2065.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0.1', OrderedDict([('full_name', 'Mozilla Firefox 65.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0.1/win32/en-US/Firefox%20Setup%2065.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('65.0', OrderedDict([('full_name', 'Mozilla Firefox 65.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/65.0/win32/en-US/Firefox%20Setup%2065.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0.2', OrderedDict([('full_name', 'Mozilla Firefox 64.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0.2/win32/en-US/Firefox%20Setup%2064.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('64.0', OrderedDict([('full_name', 'Mozilla Firefox 64.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/64.0/win32/en-US/Firefox%20Setup%2064.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.3', OrderedDict([('full_name', 'Mozilla Firefox 63.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.3/win32/en-US/Firefox%20Setup%2063.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0.1', OrderedDict([('full_name', 'Mozilla Firefox 63.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0.1/win32/en-US/Firefox%20Setup%2063.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('63.0', OrderedDict([('full_name', 'Mozilla Firefox 63.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/63.0/win32/en-US/Firefox%20Setup%2063.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.3', OrderedDict([('full_name', 'Mozilla Firefox 62.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.3/win32/en-US/Firefox%20Setup%2062.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0.2', OrderedDict([('full_name', 'Mozilla Firefox 62.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0.2/win32/en-US/Firefox%20Setup%2062.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('62.0', OrderedDict([('full_name', 'Mozilla Firefox 62.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/62.0/win32/en-US/Firefox%20Setup%2062.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.2', OrderedDict([('full_name', 'Mozilla Firefox 61.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.2/win32/en-US/Firefox%20Setup%2061.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0.1', OrderedDict([('full_name', 'Mozilla Firefox 61.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0.1/win32/en-US/Firefox%20Setup%2061.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('61.0', OrderedDict([('full_name', 'Mozilla Firefox 61.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/win32/en-US/Firefox%20Setup%2061.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.2', OrderedDict([('full_name', 'Mozilla Firefox 60.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.2/win32/en-US/Firefox%20Setup%2060.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0.1', OrderedDict([('full_name', 'Mozilla Firefox 60.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0.1/win32/en-US/Firefox%20Setup%2060.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Firefox 60.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/win32/en-US/Firefox%20Setup%2060.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.3', OrderedDict([('full_name', 'Mozilla Firefox 59.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.3/win32/en-US/Firefox%20Setup%2059.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.2', OrderedDict([('full_name', 'Mozilla Firefox 59.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.2/win32/en-US/Firefox%20Setup%2059.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0.1', OrderedDict([('full_name', 'Mozilla Firefox 59.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0.1/win32/en-US/Firefox%20Setup%2059.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('59.0', OrderedDict([('full_name', 'Mozilla Firefox 59.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/59.0/win32/en-US/Firefox%20Setup%2059.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.2', OrderedDict([('full_name', 'Mozilla Firefox 58.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.2/win32/en-US/Firefox%20Setup%2058.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0.1', OrderedDict([('full_name', 'Mozilla Firefox 58.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0.1/win32/en-US/Firefox%20Setup%2058.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('58.0', OrderedDict([('full_name', 'Mozilla Firefox 58.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/58.0/win32/en-US/Firefox%20Setup%2058.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.4', OrderedDict([('full_name', 'Mozilla Firefox 57.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.4/win32/en-US/Firefox%20Setup%2057.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.3', OrderedDict([('full_name', 'Mozilla Firefox 57.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.3/win32/en-US/Firefox%20Setup%2057.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.2', OrderedDict([('full_name', 'Mozilla Firefox 57.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.2/win32/en-US/Firefox%20Setup%2057.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0.1', OrderedDict([('full_name', 'Mozilla Firefox 57.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0.1/win32/en-US/Firefox%20Setup%2057.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('57.0', OrderedDict([('full_name', 'Mozilla Firefox 57.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0/win32/en-US/Firefox%20Setup%2057.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.2', OrderedDict([('full_name', 'Mozilla Firefox 56.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.2/win32/en-US/Firefox%20Setup%2056.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0.1', OrderedDict([('full_name', 'Mozilla Firefox 56.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0.1/win32/en-US/Firefox%20Setup%2056.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('56.0', OrderedDict([('full_name', 'Mozilla Firefox 56.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/56.0/win32/en-US/Firefox%20Setup%2056.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.3', OrderedDict([('full_name', 'Mozilla Firefox 55.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/win32/en-US/Firefox%20Setup%2055.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.2', OrderedDict([('full_name', 'Mozilla Firefox 55.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.2/win32/en-US/Firefox%20Setup%2055.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0.1', OrderedDict([('full_name', 'Mozilla Firefox 55.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.1/win32/en-US/Firefox%20Setup%2055.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('55.0', OrderedDict([('full_name', 'Mozilla Firefox 55.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0/win32/en-US/Firefox%20Setup%2055.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0.1', OrderedDict([('full_name', 'Mozilla Firefox 54.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0.1/win32/en-US/Firefox%20Setup%2054.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('54.0', OrderedDict([('full_name', 'Mozilla Firefox 54.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/54.0/win32/en-US/Firefox%20Setup%2054.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.3', OrderedDict([('full_name', 'Mozilla Firefox 53.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.3/win32/en-US/Firefox%20Setup%2053.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0.2', OrderedDict([('full_name', 'Mozilla Firefox 53.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0.2/win32/en-US/Firefox%20Setup%2053.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('53.0', OrderedDict([('full_name', 'Mozilla Firefox 53.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/53.0/win32/en-US/Firefox%20Setup%2053.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.2', OrderedDict([('full_name', 'Mozilla Firefox 52.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.2/win32/en-US/Firefox%20Setup%2052.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0.1', OrderedDict([('full_name', 'Mozilla Firefox 52.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0.1/win32/en-US/Firefox%20Setup%2052.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.0', OrderedDict([('full_name', 'Mozilla Firefox 52.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/52.0/win32/en-US/Firefox%20Setup%2052.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0.1', OrderedDict([('full_name', 'Mozilla Firefox 51.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0.1/win32/en-US/Firefox%20Setup%2051.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('51.0', OrderedDict([('full_name', 'Mozilla Firefox 51.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/51.0/win32/en-US/Firefox%20Setup%2051.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.1.0', OrderedDict([('full_name', 'Mozilla Firefox 50.1.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.1.0/win32/en-US/Firefox%20Setup%2050.1.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.2', OrderedDict([('full_name', 'Mozilla Firefox 50.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.2/win32/en-US/Firefox%20Setup%2050.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0.1', OrderedDict([('full_name', 'Mozilla Firefox 50.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0.1/win32/en-US/Firefox%20Setup%2050.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('50.0', OrderedDict([('full_name', 'Mozilla Firefox 50.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/50.0/win32/en-US/Firefox%20Setup%2050.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.2', OrderedDict([('full_name', 'Mozilla Firefox 49.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.2/win32/en-US/Firefox%20Setup%2049.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0.1', OrderedDict([('full_name', 'Mozilla Firefox 49.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0.1/win32/en-US/Firefox%20Setup%2049.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('49.0', OrderedDict([('full_name', 'Mozilla Firefox 49.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/49.0/win32/en-US/Firefox%20Setup%2049.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.2', OrderedDict([('full_name', 'Mozilla Firefox 48.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.2/win32/en-US/Firefox%20Setup%2048.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0.1', OrderedDict([('full_name', 'Mozilla Firefox 48.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0.1/win32/en-US/Firefox%20Setup%2048.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('48.0', OrderedDict([('full_name', 'Mozilla Firefox 48.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/win32/en-US/Firefox%20Setup%2048.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.2', OrderedDict([('full_name', 'Mozilla Firefox 47.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.2/win32/en-US/Firefox%20Setup%2047.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0.1', OrderedDict([('full_name', 'Mozilla Firefox 47.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/win32/en-US/Firefox%20Setup%2047.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('47.0', OrderedDict([('full_name', 'Mozilla Firefox 47.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0/win32/en-US/Firefox%20Setup%2047.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0.1', OrderedDict([('full_name', 'Mozilla Firefox 46.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0.1/win32/en-US/Firefox%20Setup%2046.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('46.0', OrderedDict([('full_name', 'Mozilla Firefox 46.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/46.0/win32/en-US/Firefox%20Setup%2046.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.2', OrderedDict([('full_name', 'Mozilla Firefox 45.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.2/win32/en-US/Firefox%20Setup%2045.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0.1', OrderedDict([('full_name', 'Mozilla Firefox 45.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0.1/win32/en-US/Firefox%20Setup%2045.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.0', OrderedDict([('full_name', 'Mozilla Firefox 45.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/45.0/win32/en-US/Firefox%20Setup%2045.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.2', OrderedDict([('full_name', 'Mozilla Firefox 44.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.2/win32/en-US/Firefox%20Setup%2044.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0.1', OrderedDict([('full_name', 'Mozilla Firefox 44.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0.1/win32/en-US/Firefox%20Setup%2044.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('44.0', OrderedDict([('full_name', 'Mozilla Firefox 44.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/44.0/win32/en-US/Firefox%20Setup%2044.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.4', OrderedDict([('full_name', 'Mozilla Firefox 43.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.4/win32/en-US/Firefox%20Setup%2043.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.3', OrderedDict([('full_name', 'Mozilla Firefox 43.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.3/win32/en-US/Firefox%20Setup%2043.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.2', OrderedDict([('full_name', 'Mozilla Firefox 43.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.2/win32/en-US/Firefox%20Setup%2043.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0.1', OrderedDict([('full_name', 'Mozilla Firefox 43.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0.1/win32/en-US/Firefox%20Setup%2043.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('43.0', OrderedDict([('full_name', 'Mozilla Firefox 43.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/43.0/win32/en-US/Firefox%20Setup%2043.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('42.0', OrderedDict([('full_name', 'Mozilla Firefox 42.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/42.0/win32/en-US/Firefox%20Setup%2042.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.2', OrderedDict([('full_name', 'Mozilla Firefox 41.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.2/win32/en-US/Firefox%20Setup%2041.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0.1', OrderedDict([('full_name', 'Mozilla Firefox 41.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0.1/win32/en-US/Firefox%20Setup%2041.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('41.0', OrderedDict([('full_name', 'Mozilla Firefox 41.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/41.0/win32/en-US/Firefox%20Setup%2041.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.3', OrderedDict([('full_name', 'Mozilla Firefox 40.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.3/win32/en-US/Firefox%20Setup%2040.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0.2', OrderedDict([('full_name', 'Mozilla Firefox 40.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0.2/win32/en-US/Firefox%20Setup%2040.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('40.0', OrderedDict([('full_name', 'Mozilla Firefox 40.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/40.0/win32/en-US/Firefox%20Setup%2040.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0.3', OrderedDict([('full_name', 'Mozilla Firefox 39.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0.3/win32/en-US/Firefox%20Setup%2039.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('39.0', OrderedDict([('full_name', 'Mozilla Firefox 39.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/39.0/win32/en-US/Firefox%20Setup%2039.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.6', OrderedDict([('full_name', 'Mozilla Firefox 38.0.6 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.6/win32/en-US/Firefox%20Setup%2038.0.6.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.5', OrderedDict([('full_name', 'Mozilla Firefox 38.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.5/win32/en-US/Firefox%20Setup%2038.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0.1', OrderedDict([('full_name', 'Mozilla Firefox 38.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0.1/win32/en-US/Firefox%20Setup%2038.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.0', OrderedDict([('full_name', 'Mozilla Firefox 38.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/38.0/win32/en-US/Firefox%20Setup%2038.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.2', OrderedDict([('full_name', 'Mozilla Firefox 37.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.2/win32/en-US/Firefox%20Setup%2037.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0.1', OrderedDict([('full_name', 'Mozilla Firefox 37.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0.1/win32/en-US/Firefox%20Setup%2037.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('37.0', OrderedDict([('full_name', 'Mozilla Firefox 37.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/37.0/win32/en-US/Firefox%20Setup%2037.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.4', OrderedDict([('full_name', 'Mozilla Firefox 36.0.4 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.4/win32/en-US/Firefox%20Setup%2036.0.4.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.3', OrderedDict([('full_name', 'Mozilla Firefox 36.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.3/win32/en-US/Firefox%20Setup%2036.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0.1', OrderedDict([('full_name', 'Mozilla Firefox 36.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0.1/win32/en-US/Firefox%20Setup%2036.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('36.0', OrderedDict([('full_name', 'Mozilla Firefox 36.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/36.0/win32/en-US/Firefox%20Setup%2036.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0.1', OrderedDict([('full_name', 'Mozilla Firefox 35.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0.1/win32/en-US/Firefox%20Setup%2035.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('35.0', OrderedDict([('full_name', 'Mozilla Firefox 35.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/35.0/win32/en-US/Firefox%20Setup%2035.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0.5', OrderedDict([('full_name', 'Mozilla Firefox 34.0.5 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0.5/win32/en-US/Firefox%20Setup%2034.0.5.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('34.0', OrderedDict([('full_name', 'Mozilla Firefox 34.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/34.0/win32/en-US/Firefox%20Setup%2034.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1.1/win32/en-US/Firefox%20Setup%2033.1.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.1', OrderedDict([('full_name', 'Mozilla Firefox 33.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.1/win32/en-US/Firefox%20Setup%2033.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.3', OrderedDict([('full_name', 'Mozilla Firefox 33.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.3/win32/en-US/Firefox%20Setup%2033.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.2', OrderedDict([('full_name', 'Mozilla Firefox 33.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.2/win32/en-US/Firefox%20Setup%2033.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0.1', OrderedDict([('full_name', 'Mozilla Firefox 33.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0.1/win32/en-US/Firefox%20Setup%2033.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('33.0', OrderedDict([('full_name', 'Mozilla Firefox 33.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/33.0/win32/en-US/Firefox%20Setup%2033.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.3', OrderedDict([('full_name', 'Mozilla Firefox 32.0.3 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.3/win32/en-US/Firefox%20Setup%2032.0.3.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.2', OrderedDict([('full_name', 'Mozilla Firefox 32.0.2 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.2/win32/en-US/Firefox%20Setup%2032.0.2.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0.1', OrderedDict([('full_name', 'Mozilla Firefox 32.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0.1/win32/en-US/Firefox%20Setup%2032.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('32.0', OrderedDict([('full_name', 'Mozilla Firefox 32.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/32.0/win32/en-US/Firefox%20Setup%2032.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('31.0', OrderedDict([('full_name', 'Mozilla Firefox 31.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/31.0/win32/en-US/Firefox%20Setup%2031.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('30.0', OrderedDict([('full_name', 'Mozilla Firefox 30.0 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/30.0/win32/en-US/Firefox%20Setup%2030.0.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('29.0.1', OrderedDict([('full_name', 'Mozilla Firefox 29.0.1 (x86 en-US)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/firefox/releases/29.0.1/win32/en-US/Firefox%20Setup%2029.0.1.exe'), ('install_flags', '/s'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Firefox\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,268 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.016019105911254883 -2020-03-04 12:19:57,282 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,282 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,282 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls -2020-03-04 12:19:57,282 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,282 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,282 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: +2020-03-06 10:22:31,320 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\firefox_x86.sls' using 'yaml' renderer: 0.032937049865722656 +2020-03-06 10:22:31,330 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,330 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,330 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls +2020-03-06 10:22:31,330 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,330 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,347 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls: # just 32-bit x86 installer available @@ -10573,15 +10439,15 @@ gedit: locale: en_US reboot: False -2020-03-04 12:19:57,299 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,347 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gedit', OrderedDict([('2.30.1', OrderedDict([('full_name', 'gedit 2.30.1'), ('installer', 'https://ftp.gnome.org/pub/GNOME/binaries/win32/gedit/2.30/gedit-setup-2.30.1-1.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\gedit\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,299 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,299 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,299 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,299 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls -2020-03-04 12:19:57,315 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,315 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,315 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: +2020-03-06 10:22:31,347 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gedit.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,347 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,347 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,347 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls +2020-03-06 10:22:31,362 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,362 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,362 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls: # just 32-bit x86 installer available # Gimp installs into %ProgramFiles on either cpu arch gimp: @@ -10627,15 +10493,15 @@ gimp: restart: False -2020-03-04 12:19:57,315 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,362 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gimp', OrderedDict([('2.10.4', OrderedDict([('full_name', 'GIMP 2.10.4'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.10/windows/gimp-2.10.4-setup-2.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.22', OrderedDict([('full_name', 'GIMP 2.8.22'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.22-setup.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.16', OrderedDict([('full_name', 'GIMP 2.8.16'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.16-setup-6.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)])), ('2.8.14', OrderedDict([('full_name', 'GIMP 2.8.14'), ('installer', 'https://download.gimp.org/mirror/pub/gimp/v2.8/windows/gimp-2.8.14-setup-1.exe'), ('install_flags', '/SP- /SILENT /NORESTART'), ('uninstaller', '%ProgramFiles%\\Gimp 2\\uninst\\unins000.exe'), ('uninstall_flags', '/SP- /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('restart', False)]))]))]) -2020-03-04 12:19:57,315 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,315 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,330 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,330 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls -2020-03-04 12:19:57,330 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,330 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,330 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: +2020-03-06 10:22:31,362 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gimp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,378 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,378 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,378 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls +2020-03-06 10:22:31,392 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,392 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,392 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls: git-extensions: '2.48.05': full_name: 'Git Extensions 2.48.05' @@ -10656,15 +10522,15 @@ git-extensions: locale: en_US reboot: False -2020-03-04 12:19:57,330 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,392 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('git-extensions', OrderedDict([('2.48.05', OrderedDict([('full_name', 'Git Extensions 2.48.05'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.05/GitExtensions-2.48.05-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.48.03', OrderedDict([('full_name', 'Git Extensions 2.48.03'), ('installer', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/gitextensions/Git%20Extensions/Version%202.48.03/GitExtensions-2.48.03-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,346 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.016080617904663086 -2020-03-04 12:19:57,346 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,346 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,346 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls -2020-03-04 12:19:57,361 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,377 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.01564335823059082 -2020-03-04 12:19:57,377 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: +2020-03-06 10:22:31,392 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git-extensions.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,392 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,408 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,408 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls +2020-03-06 10:22:31,408 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,440 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'jinja' renderer: 0.03177642822265625 +2020-03-06 10:22:31,440 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available for git @@ -11503,15 +11369,15 @@ msysgit: locale: en_US reboot: False -2020-03-04 12:19:57,377 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,440 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('git', OrderedDict([('2.23.0.windows.1', OrderedDict([('full_name', 'Git version 2.23.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.22.0.windows.1', OrderedDict([('full_name', 'Git version 2.22.0.windows.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.22.0.windows.1/Git-2.22.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.21.0', OrderedDict([('full_name', 'Git version 2.21.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.21.0.windows.1/Git-2.21.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.1', OrderedDict([('full_name', 'Git version 2.20.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.1.windows.1/Git-2.20.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.20.0', OrderedDict([('full_name', 'Git version 2.20.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.20.0.windows.1/Git-2.20.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.2', OrderedDict([('full_name', 'Git version 2.19.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.2.windows.1/Git-2.19.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.1', OrderedDict([('full_name', 'Git version 2.19.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.1.windows.1/Git-2.19.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.19.0', OrderedDict([('full_name', 'Git version 2.19.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.19.0.windows.1/Git-2.19.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.18.0', OrderedDict([('full_name', 'Git version 2.18.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.18.0.windows.1/Git-2.18.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.1.2', OrderedDict([('full_name', 'Git version 2.17.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.1.windows.2/Git-2.17.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.17.0', OrderedDict([('full_name', 'Git version 2.17.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.17.0.windows.1/Git-2.17.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.3', OrderedDict([('full_name', 'Git version 2.16.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.3.windows.1/Git-2.16.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.2', OrderedDict([('full_name', 'Git version 2.16.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.16.0.2', OrderedDict([('full_name', 'Git version 2.16.0.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.16.0.windows.2/Git-2.16.0.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.15.0', OrderedDict([('full_name', 'Git version 2.15.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.15.0.windows.1/Git-2.15.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.2', OrderedDict([('full_name', 'Git version 2.14.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.1/Git-2.14.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.3', OrderedDict([('full_name', 'Git version 2.13.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.3.windows.1/Git-2.13.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.1.2', OrderedDict([('full_name', 'Git version 2.13.1.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.13.1.windows.2/Git-2.13.1.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.2', OrderedDict([('full_name', 'Git version 2.12.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.2.windows.1/Git-2.12.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.1', OrderedDict([('full_name', 'Git version 2.12.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.12.1.windows.1/Git-2.12.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0.3', OrderedDict([('full_name', 'Git version 2.11.0.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.3/Git-2.11.0.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.11.0', OrderedDict([('full_name', 'Git version 2.11.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.11.0.windows.1/Git-2.11.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Git version 2.10.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.2.windows.1/Git-2.10.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Git version 2.10.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.1.windows.1/Git-2.10.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.0', OrderedDict([('full_name', 'Git version 2.10.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/Git-2.10.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Git version 2.9.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.9.0.windows.1/Git-2.9.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.4', OrderedDict([('full_name', 'Git version 2.8.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.4.windows.1/Git-2.8.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.3', OrderedDict([('full_name', 'Git version 2.8.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/Git-2.8.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2', OrderedDict([('full_name', 'Git version 2.8.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.2.windows.1/Git-2.8.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.8.1', OrderedDict([('full_name', 'Git version 2.8.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2', OrderedDict([('full_name', 'Git version 2.7.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.2.windows.1/Git-2.7.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.1', OrderedDict([('full_name', 'Git version 2.7.1'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.1.windows.1/Git-2.7.1-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0', OrderedDict([('full_name', 'Git version 2.7.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Git version 2.6.4'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.4.windows.1/Git-2.6.4-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Git version 2.6.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.6.2.windows.1/Git-2.6.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Git version 2.5.3'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.3.windows.1/Git-2.5.3-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2.2', OrderedDict([('full_name', 'Git version 2.5.2.2'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.2.windows.2/Git-2.5.2.2-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Git version 2.5.0'), ('installer', 'https://github.com/git-for-windows/git/releases/download/v2.5.0.windows.1/Git-2.5.0-64-bit.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES'), ('uninstaller', 'forfiles'), ('uninstall_flags', '/p "%ProgramFiles%\\Git" /m unins*.exe /c "cmd /c @path /VERYSILENT /NORESTART"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))])), ('msysgit', OrderedDict([('1.9.5-preview20150319', OrderedDict([('full_name', 'Git version 1.9.5-preview20150319'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/Git-1.9.5-preview20150319.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5-preview20141217', OrderedDict([('full_name', 'Git version 1.9.5-preview20141217'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20141217/Git-1.9.5-preview20141217.exe'), ('install_flags', '/VERYSILENT /NORESTART /SP- /NOCANCEL'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4-preview20140815', OrderedDict([('full_name', 'Git version 1.9.4-preview20140815'), ('installer', 'https://github.com/msysgit/msysgit/releases/download/Git-1.9.4-preview20140815/Git-1.9.4-preview20140815.exe'), ('install_flags', '/VERYSILENT /NOREBOOT'), ('uninstaller', '%ProgramFiles(x86)%\\Git\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NOREBOOT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,391 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.014651775360107422 -2020-03-04 12:19:57,391 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,391 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,391 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls -2020-03-04 12:19:57,391 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,407 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.015890836715698242 -2020-03-04 12:19:57,407 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: +2020-03-06 10:22:31,456 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\git.sls' using 'yaml' renderer: 0.015874862670898438 +2020-03-06 10:22:31,456 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,456 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,456 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls +2020-03-06 10:22:31,471 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,471 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,471 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls: # just 32-bit x86 installer available @@ -11536,15 +11402,15 @@ glarysoft-absolute-uninstaller: locale: en_US reboot: False -2020-03-04 12:19:57,407 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,471 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('glarysoft-absolute-uninstaller', OrderedDict([('5.3.1.23', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.23'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.3.1.21', OrderedDict([('full_name', 'Absolute Uninstaller 5.3.1.21'), ('installer', 'https://download.glarysoft.com/ausetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Glarysoft\\Absolute Uninstaller 5\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,407 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,407 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,407 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,407 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls -2020-03-04 12:19:57,407 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,423 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.015635967254638672 -2020-03-04 12:19:57,423 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: +2020-03-06 10:22:31,471 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\glarysoft-absolute-uninstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,486 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,486 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,486 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls +2020-03-06 10:22:31,486 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,503 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'jinja' renderer: 0.016715049743652344 +2020-03-06 10:22:31,503 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls: # just 32-bit x86 installer available @@ -11561,15 +11427,15 @@ gnucash: reboot: False -2020-03-04 12:19:57,423 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,503 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gnucash', OrderedDict([('2.6.5', OrderedDict([('full_name', 'GnuCash 2.6.5'), ('installer', 'https://downloads.sourceforge.net/project/gnucash/gnucash%20%28stable%29/2.6.5/gnucash-2.6.5-setup.exe'), ('install_flags', '/SILENT'), ('uninstaller', '%ProgramFiles(x86)%\\gnucash\\uninstall\\gnucash\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,423 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,423 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,423 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,423 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls -2020-03-04 12:19:57,423 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,439 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015802383422851562 -2020-03-04 12:19:57,454 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: +2020-03-06 10:22:31,503 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gnucash.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,503 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,503 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,518 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls +2020-03-06 10:22:31,518 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,534 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'jinja' renderer: 0.015603780746459961 +2020-03-06 10:22:31,549 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls: # "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software." - Google. # See https://golang.org/ @@ -12792,15 +12658,15 @@ golang: reboot: False -2020-03-04 12:19:57,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,565 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('golang', OrderedDict([('1.2.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.2.2'), ('installer', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.2.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3'), ('installer', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.1'), ('installer', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.2'), ('installer', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.3.3'), ('installer', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.3.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4'), ('installer', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.1'), ('installer', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.2'), ('installer', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.4.3'), ('installer', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.4.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5'), ('installer', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.1'), ('installer', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.2'), ('installer', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.3'), ('installer', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.5.4'), ('installer', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.5.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6'), ('installer', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.1'), ('installer', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.2'), ('installer', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.3'), ('installer', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.6.4'), ('installer', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.6.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7'), ('installer', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.1'), ('installer', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.2'), ('installer', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.3'), ('installer', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.4'), ('installer', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.5'), ('installer', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.7.6'), ('installer', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.7.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8'), ('installer', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.1'), ('installer', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.2'), ('installer', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.3'), ('installer', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.4'), ('installer', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.5'), ('installer', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.6'), ('installer', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.8.7'), ('installer', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.8.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9'), ('installer', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.1'), ('installer', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.2'), ('installer', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.3'), ('installer', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.4'), ('installer', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.5'), ('installer', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.6'), ('installer', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.9.7'), ('installer', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.9.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10'), ('installer', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.1'), ('installer', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.2'), ('installer', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.3'), ('installer', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.4'), ('installer', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.5'), ('installer', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.6'), ('installer', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.7'), ('installer', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.10.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.10.8'), ('installer', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.10.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11'), ('installer', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.1'), ('installer', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.2'), ('installer', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.3'), ('installer', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.4'), ('installer', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.5'), ('installer', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.6'), ('installer', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.7'), ('installer', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.8'), ('installer', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.9'), ('installer', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.10'), ('installer', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.11'), ('installer', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.12'), ('installer', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.11.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.11.13'), ('installer', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.11.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12'), ('installer', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.1'), ('installer', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.2'), ('installer', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.3'), ('installer', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.4'), ('installer', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.5'), ('installer', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.6'), ('installer', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.7'), ('installer', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.8'), ('installer', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.9', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.9'), ('installer', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.9.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.10', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.10'), ('installer', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.10.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.11', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.11'), ('installer', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.11.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.12', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.12'), ('installer', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.12.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.13', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.13'), ('installer', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.14', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.14'), ('installer', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.15', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.15'), ('installer', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.15.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.16', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.16'), ('installer', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.16.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.12.17', OrderedDict([('full_name', 'Go Programming Language amd64 go1.12.17'), ('installer', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.12.17.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13'), ('installer', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.1', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.1'), ('installer', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.1.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.2', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.2'), ('installer', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.2.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.3', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.3'), ('installer', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.3.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.4', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.4'), ('installer', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.4.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.5', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.5'), ('installer', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.5.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.6', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.6'), ('installer', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.6.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.7', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.7'), ('installer', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.7.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.13.8', OrderedDict([('full_name', 'Go Programming Language amd64 go1.13.8'), ('installer', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.13.8.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.14.0', OrderedDict([('full_name', 'Go Programming Language amd64 go1.14'), ('installer', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('uninstaller', 'https://dl.google.com/go/go1.14.windows-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,470 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.01544642448425293 -2020-03-04 12:19:57,470 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,470 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,485 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls -2020-03-04 12:19:57,485 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,485 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,485 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: +2020-03-06 10:22:31,565 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\golang.sls' using 'yaml' renderer: 0.015569686889648438 +2020-03-06 10:22:31,581 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,581 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,581 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls +2020-03-06 10:22:31,581 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,581 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,596 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls: goodsync: '9.9.46.6': full_name: 'GoodSync' @@ -12812,15 +12678,15 @@ goodsync: locale: en_US reboot: False -2020-03-04 12:19:57,485 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,596 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('goodsync', OrderedDict([('9.9.46.6', OrderedDict([('full_name', 'GoodSync'), ('installer', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.goodsync.com/download/GoodSync-Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,485 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,485 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,485 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,485 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls -2020-03-04 12:19:57,502 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,502 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,502 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: +2020-03-06 10:22:31,596 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\goodsync.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,596 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,596 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,596 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls +2020-03-06 10:22:31,611 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,611 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,611 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls: # just 32-bit x86 installer available @@ -12838,15 +12704,15 @@ gow: # Gow - GNU on Windows - The lightweight alternative to Cygwin # https://github.com/bmatzelle/gow/wiki -2020-03-04 12:19:57,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,611 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gow', OrderedDict([('Not Found', OrderedDict([('full_name', 'Gow'), ('installer', 'https://github.com/bmatzelle/gow/releases/download/v0.8.0/Gow-0.8.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Gow\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,502 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,502 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,502 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,502 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls -2020-03-04 12:19:57,518 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,518 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,518 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: +2020-03-06 10:22:31,611 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gow.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,628 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,628 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,628 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls +2020-03-06 10:22:31,643 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,643 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,643 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls: # just 32-bit x86 installer available @@ -12920,15 +12786,15 @@ gpg4win-light: # https://github.com/saltstack/salt-winrepo/issues/113#issuecomment-72837987 # -2020-03-04 12:19:57,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,658 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gpg4win-light', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-light-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,518 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,532 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,532 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,532 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls -2020-03-04 12:19:57,532 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,532 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,532 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: +2020-03-06 10:22:31,658 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-light.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,658 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,658 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,674 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls +2020-03-06 10:22:31,674 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,674 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,674 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls: # just 32-bit x86 installer available @@ -12996,15 +12862,15 @@ gpg4win-vanilla: reboot: False -2020-03-04 12:19:57,548 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,690 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gpg4win-vanilla', OrderedDict([('2.3.4', OrderedDict([('full_name', 'Gpg4Win (2.3.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4Win (2.3.3)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4Win (2.3.2)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.2.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4Win (2.3.1)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4Win (2.3.0)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.3.0.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4Win (2.2.4)'), ('installer', 'https://files.gpg4win.org/gpg4win-vanilla-2.2.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\GNU\\GnuPG\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,548 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.015630006790161133 -2020-03-04 12:19:57,548 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,548 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,548 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls -2020-03-04 12:19:57,564 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,564 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,564 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: +2020-03-06 10:22:31,690 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win-vanilla.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,706 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,706 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,706 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls +2020-03-06 10:22:31,721 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,721 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,721 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls: graylog-collector-sidecar: @@ -13080,15 +12946,15 @@ graylog-collector-sidecar: reboot: False -2020-03-04 12:19:57,564 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,721 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('graylog-collector-sidecar', OrderedDict([('0.1.6', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.6/collector_sidecar_installer_0.1.6-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.5', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.5/collector_sidecar_installer_0.1.5-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.4', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.4/collector_sidecar_installer_0.1.4-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.3', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.3/collector_sidecar_installer_0.1.3-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.2', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.2/collector_sidecar_installer_0.1.2-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.1', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.1/collector_sidecar_installer_0.1.1-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.1.0', OrderedDict([('full_name', 'Graylog Collector Sidecar'), ('installer', 'https://github.com/Graylog2/collector-sidecar/releases/download/0.1.0/collector_sidecar_installer_0.1.0-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\graylog\\collector-sidecar\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,564 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,564 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,579 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,579 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls -2020-03-04 12:19:57,579 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,579 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,579 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: +2020-03-06 10:22:31,737 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\graylog-collector-sidecar.sls' using 'yaml' renderer: 0.01604461669921875 +2020-03-06 10:22:31,737 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,737 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,752 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls +2020-03-06 10:22:31,752 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,769 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'jinja' renderer: 0.016786575317382812 +2020-03-06 10:22:31,769 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls: grepwin: '1.6.682': @@ -13135,15 +13001,15 @@ grepwin: locale: en_US reboot: False -2020-03-04 12:19:57,579 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,784 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('grepwin', OrderedDict([('1.6.682', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.15/grepWin-1.6.15-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.673', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.14/grepWin-1.6.14-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.661', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.13/grepWin-1.6.13-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.646', OrderedDict([('full_name', 'grepWin x64'), ('installer', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/grepwin/1.6.12/grepWin-1.6.12-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,595 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.0160672664642334 -2020-03-04 12:19:57,595 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,595 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,595 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls -2020-03-04 12:19:57,595 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,595 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,595 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: +2020-03-06 10:22:31,784 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\grepwin.sls' using 'yaml' renderer: 0.014916658401489258 +2020-03-06 10:22:31,784 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,784 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,799 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls +2020-03-06 10:22:31,799 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,799 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,799 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls: # just 32-bit x86 installer available @@ -13159,15 +13025,15 @@ gvim: locale: en_US reboot: False -2020-03-04 12:19:57,611 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,815 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gvim', OrderedDict([('Not Found', OrderedDict([('full_name', 'Vim 8.0.3'), ('installer', 'https://downloads.sourceforge.net/project/cream/Vim/8.0.3/gvim-8-0-3.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Vim\\vim80\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,611 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,611 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,611 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,611 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls -2020-03-04 12:19:57,627 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,627 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,627 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: +2020-03-06 10:22:31,815 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gvim.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,815 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,831 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,831 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls +2020-03-06 10:22:31,847 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,847 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,847 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available # Source: https://handbrake.fr @@ -13184,15 +13050,15 @@ handbrake: locale: en_US reboot: False -2020-03-04 12:19:57,627 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,847 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('handbrake', OrderedDict([('0.10.5', OrderedDict([('full_name', 'Handbrake 0.10.5'), ('installer', 'https://download.handbrake.fr/handbrake/releases/0.10.5/HandBrake-0.10.5-x86_64-Win_GUI-1.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Handbrake\\uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,627 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,627 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,627 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,641 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls -2020-03-04 12:19:57,641 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,641 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,641 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: +2020-03-06 10:22:31,862 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\handbrake.sls' using 'yaml' renderer: 0.015007257461547852 +2020-03-06 10:22:31,862 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,862 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,862 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls +2020-03-06 10:22:31,877 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,877 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,894 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls: hipchat: @@ -13206,15 +13072,15 @@ hipchat: msiexec: False reboot: False -2020-03-04 12:19:57,641 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,894 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('hipchat', OrderedDict([('4.0.1650', OrderedDict([('installer', 'https://hipchat-ops.s3.amazonaws.com/hipchat4/windows/HipChat_4.0.1650.exe'), ('full_name', 'HipChat'), ('install_flags', '/sp /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Atlassian\\Hipchat4\\unins000.exe'), ('uninstall_flags', '/sp /verysilent'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:19:57,657 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.01611804962158203 -2020-03-04 12:19:57,657 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,657 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,657 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls -2020-03-04 12:19:57,657 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,674 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.01607489585876465 -2020-03-04 12:19:57,674 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: +2020-03-06 10:22:31,894 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hipchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,894 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,894 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,909 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls +2020-03-06 10:22:31,909 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,927 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'jinja' renderer: 0.01761770248413086 +2020-03-06 10:22:31,927 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls: hostsfileeditor: '1.2.0': @@ -13228,15 +13094,15 @@ hostsfileeditor: locale: en_US reboot: False -2020-03-04 12:19:57,674 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,927 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('hostsfileeditor', OrderedDict([('1.2.0', OrderedDict([('full_name', 'Hosts File Editor'), ('installer', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('uninstaller', 'https://github.com/scottlerch/HostsFileEditor/releases/download/v1.2.0/HostsFileEditorSetup-1.2.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,674 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,674 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,674 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,674 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls -2020-03-04 12:19:57,689 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,689 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,689 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: +2020-03-06 10:22:31,927 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hostsfileeditor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,940 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,940 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,940 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls +2020-03-06 10:22:31,940 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,956 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'jinja' renderer: 0.015707731246948242 +2020-03-06 10:22:31,956 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls: hwinfo: '5.70': @@ -13251,15 +13117,15 @@ hwinfo: locale: en_US reboot: False -2020-03-04 12:19:57,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,956 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('hwinfo', OrderedDict([('5.70', OrderedDict([('full_name', 'HWiNFO64 Version 5.70'), ('installer', 'https://www.fosshub.com/HWiNFO.html/hw64_570.exe'), ('uninstaller', '%PROGRAMFILES%\\HWiNFO64\\unins000.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstall_flags', '/VERYSILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,689 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,689 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,715 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,715 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls -2020-03-04 12:19:57,719 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,719 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,719 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: +2020-03-06 10:22:31,956 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\hwinfo.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,971 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:31,971 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:31,971 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls +2020-03-06 10:22:31,987 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:31,987 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:31,987 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls: # -*- coding: utf-8 -*- # vim: ft=sls ice: @@ -13273,15 +13139,15 @@ ice: locale: en_US reboot: False -2020-03-04 12:19:57,719 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:31,987 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ice', OrderedDict([('3.6.1.2', OrderedDict([('full_name', 'Ice 3.6.1.2'), ('installer', 'https://zeroc.com/download/Ice/3.6/Ice-3.6.1-2.msi'), ('uninstaller', '{CEEE6D1F-5545-4CC0-8FF9-55911A22B68D}'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,719 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,736 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,736 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,736 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls -2020-03-04 12:19:57,736 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,736 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,736 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: +2020-03-06 10:22:31,987 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:31,987 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,003 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,003 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls +2020-03-06 10:22:32,003 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,003 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,018 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls: # just 32-bit x86 installer available @@ -13297,15 +13163,15 @@ icecast: locale: en_US reboot: False -2020-03-04 12:19:57,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,018 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('icecast', OrderedDict([('2.4.2', OrderedDict([('full_name', 'Icecast'), ('installer', 'http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Icecast\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,736 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,751 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,751 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,751 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls -2020-03-04 12:19:57,751 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,766 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.015126705169677734 -2020-03-04 12:19:57,766 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: +2020-03-06 10:22:32,018 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icecast.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,018 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,018 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,018 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls +2020-03-06 10:22:32,034 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,034 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,034 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls: icloud: '7.3.0.20': full_name: iCloud @@ -13317,15 +13183,15 @@ icloud: locale: en_US reboot: False -2020-03-04 12:19:57,766 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,034 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('icloud', OrderedDict([('7.3.0.20', OrderedDict([('full_name', 'iCloud'), ('installer', 'https://secure-appldnld.apple.com/windows/091-43200-20180123-7D30C4B2-FFEC-11E7-A82F-B9BB7CCC33A9/iCloudSetup.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {694E3E02-E14A-4BB2-A970-CF7F017FD5CC} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,766 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,766 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,766 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,766 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls -2020-03-04 12:19:57,766 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,782 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.016129016876220703 -2020-03-04 12:19:57,782 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: +2020-03-06 10:22:32,051 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\icloud.sls' using 'yaml' renderer: 0.01668381690979004 +2020-03-06 10:22:32,051 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,051 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,051 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls +2020-03-06 10:22:32,051 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,066 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'jinja' renderer: 0.015104055404663086 +2020-03-06 10:22:32,066 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls: iismediaservices: '4.1.0938.454': full_name: 'IIS Media Services 4.1' @@ -13361,15 +13227,15 @@ iismediaservices: locale: en_US reboot: False -2020-03-04 12:19:57,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,066 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('iismediaservices', OrderedDict([('4.1.0938.454', OrderedDict([('full_name', 'IIS Media Services 4.1'), ('installer', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/1/7/5/175931F3-DCF8-4E8F-A62D-884C5ACF6D46/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.0938.54', OrderedDict([('full_name', 'IIS Media Services 4.0'), ('installer', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/5/D/2/5D2EE743-3F52-4838-BE8E-02611F0FCFEE/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'IIS Media Services 2.0'), ('installer', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('uninstaller', 'https://download.microsoft.com/download/7/C/1/7C1C6ADA-88B5-4559-83E0-178811ADC5B7/IISMedia64.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,782 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,782 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,782 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,782 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls -2020-03-04 12:19:57,798 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,798 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,798 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: +2020-03-06 10:22:32,066 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\iismediaservices.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,081 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,081 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,081 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls +2020-03-06 10:22:32,097 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,097 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,097 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls: influx-capacitor: '1.0.89': full_name: 'Influx Capacitor' @@ -13381,15 +13247,15 @@ influx-capacitor: locale: en_US reboot: False -2020-03-04 12:19:57,798 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,097 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('influx-capacitor', OrderedDict([('1.0.89', OrderedDict([('full_name', 'Influx Capacitor'), ('installer', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('install_flags', '/q'), ('uninstaller', 'http://influx-capacitor.com/Resources/Production/Influx-Capacitor.1.0.89.msi'), ('uninstall_flags', '/q'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,798 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,814 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,814 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,814 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls -2020-03-04 12:19:57,814 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,814 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,814 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: +2020-03-06 10:22:32,097 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\influx-capacitor.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,097 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,113 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,113 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls +2020-03-06 10:22:32,113 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,113 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,113 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls: inkscape: '0.91': full_name: 'Inkscape 0.91' @@ -13403,15 +13269,15 @@ inkscape: locale: en_US reboot: False -2020-03-04 12:19:57,814 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,113 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('inkscape', OrderedDict([('0.91', OrderedDict([('full_name', 'Inkscape 0.91'), ('installer', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('uninstaller', 'https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,814 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,830 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,830 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,830 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls -2020-03-04 12:19:57,830 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,845 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.01480555534362793 -2020-03-04 12:19:57,845 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: +2020-03-06 10:22:32,128 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\inkscape.sls' using 'yaml' renderer: 0.015154600143432617 +2020-03-06 10:22:32,128 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,128 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,128 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls +2020-03-06 10:22:32,144 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,144 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,144 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls: # just 32-bit x86 installer available @@ -13429,15 +13295,15 @@ intellij-community: reboot: False -2020-03-04 12:19:57,845 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,144 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('intellij-community', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Community Edition 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIC-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA Community Edition 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,845 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,845 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,845 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,845 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls -2020-03-04 12:19:57,845 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,861 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.015602588653564453 -2020-03-04 12:19:57,861 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: +2020-03-06 10:22:32,160 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-community.sls' using 'yaml' renderer: 0.016666889190673828 +2020-03-06 10:22:32,160 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,160 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,160 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls +2020-03-06 10:22:32,160 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,176 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'jinja' renderer: 0.015589714050292969 +2020-03-06 10:22:32,176 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls: # just 32-bit x86 installer available @@ -13455,15 +13321,15 @@ intellij-ultimate: reboot: False -2020-03-04 12:19:57,861 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,176 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('intellij-ultimate', OrderedDict([('14.1.4', OrderedDict([('full_name', 'IntelliJ IDEAS Ultimate 14.1.4'), ('installer', 'https://download.jetbrains.com/idea/ideaIU-14.1.4.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\IntelliJ IDEA 14.1.4\\bin\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,861 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,861 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,861 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,876 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls -2020-03-04 12:19:57,876 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,876 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,876 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: +2020-03-06 10:22:32,176 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\intellij-ultimate.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,176 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,191 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,191 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls +2020-03-06 10:22:32,191 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,191 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,191 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls: internet-evidence-finder: '6.2.3.0001': full_name: 'Internet Evidence Finder' @@ -13475,15 +13341,15 @@ internet-evidence-finder: locale: en_US reboot: False -2020-03-04 12:19:57,876 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,191 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('internet-evidence-finder', OrderedDict([('6.2.3.0001', OrderedDict([('full_name', 'Internet Evidence Finder'), ('installer', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('install_flags', '/sp- /verysilent /norestart'), ('uninstaller', 'salt://win/repo-ng/ief/IEFv623.0001setup.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,876 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,876 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,876 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,891 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls -2020-03-04 12:19:57,891 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,891 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,891 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: +2020-03-06 10:22:32,191 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\internet-evidence-finder.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,207 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,207 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,207 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls +2020-03-06 10:22:32,207 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,207 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,223 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls: irfanview-plugins: '4.42': @@ -13498,15 +13364,15 @@ irfanview-plugins: locale: en_US reboot: False -2020-03-04 12:19:57,891 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,223 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('irfanview-plugins', OrderedDict([('4.42', OrderedDict([('full_name', 'Irfanview Plugins 4.40'), ('installer', 'salt://win/repo-ng/irfanview/irfanview_plugins_x64_442_setup.exe'), ('install_flags', '/silent'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,891 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,891 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,891 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,908 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls -2020-03-04 12:19:57,908 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,908 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,908 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: +2020-03-06 10:22:32,223 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview-plugins.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,223 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,223 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,223 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls +2020-03-06 10:22:32,238 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,238 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,254 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available irfanview: @@ -13533,15 +13399,15 @@ irfanview: # assocallusers: if used, set associations for all users (Windows XP only) # ini: if used, set custom INI file folder (system environment variables are allowed) -2020-03-04 12:19:57,908 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,254 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('irfanview', OrderedDict([('4.51', OrderedDict([('full_name', 'IrfanView 64 (remove only)'), ('installer', 'salt://win/repo-ng/irfanview/iview451_x64_setup.exe'), ('install_flags', '/silent /desktop=0 /thumbs=0 /group=1 /allusers=0 /assoc=0'), ('uninstaller', '%ProgramFiles%\\irfanview\\iv_uninstall.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,923 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.015185832977294922 -2020-03-04 12:19:57,923 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,923 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,923 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls -2020-03-04 12:19:57,923 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,923 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,923 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: +2020-03-06 10:22:32,254 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\irfanview.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,254 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,269 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,269 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls +2020-03-06 10:22:32,269 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,269 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,269 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls: isapirewrite-lite: '3.1.0112': full_name: 'Helicon ISAPI_Rewrite 3 Lite' @@ -13555,15 +13421,15 @@ isapirewrite-lite: locale: en_US reboot: False -2020-03-04 12:19:57,938 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,269 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('isapirewrite-lite', OrderedDict([('3.1.0112', OrderedDict([('full_name', 'Helicon ISAPI_Rewrite 3 Lite'), ('installer', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('uninstaller', 'https://www.helicontech.com/download/isapi_rewrite/ISAPI_Rewrite3_0112_Lite_x64.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,938 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,938 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,938 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,938 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls -2020-03-04 12:19:57,938 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,938 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,938 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: +2020-03-06 10:22:32,285 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\isapirewrite-lite.sls' using 'yaml' renderer: 0.015668869018554688 +2020-03-06 10:22:32,285 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,285 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,285 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls +2020-03-06 10:22:32,285 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,300 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'jinja' renderer: 0.015151739120483398 +2020-03-06 10:22:32,300 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available itunes: '12.8.0.150': @@ -13592,15 +13458,15 @@ itunes: locale: en_US reboot: False -2020-03-04 12:19:57,955 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,300 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('itunes', OrderedDict([('12.8.0.150', OrderedDict([('full_name', 'iTunes'), ('installer', 'https://secure-appldnld.apple.com/itunes12/091-81692-20180709-A4DF288B-8929-401F-AD73-4189359D8A6B/iTunes64Setup.exe'), ('uninstall_flags', "'/qn /norestart /x {56DDDFB8-7F79-4480-89D5-25E1F52AB28F} &\nmsiexec.exe /qn /norestart /x {A30EA700-5515-48F0-88B0-9E99DC356B88} &\nmsiexec.exe /qn /norestart /x {C29B636B-9015-4ED1-A12F-6375A337F23B} &\nmsiexec.exe /qn /norestart /x {C56BA005-F02C-461B-ACA5-A0CE3E32578F} &\nmsiexec.exe /qn /norestart /x {D745E014-74DD-43A3-98DF-E7D38164B681} &\nmsiexec.exe /qn /norestart /x {36F365B3-05C2-455D-9D96-B73829DE046D} &\nexit 0'\n"), ('install_flags', '/quiet /qn ALLUSERS=1 /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,955 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,955 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,955 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,955 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls -2020-03-04 12:19:57,955 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,955 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,970 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: +2020-03-06 10:22:32,300 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\itunes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,300 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,300 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,318 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls +2020-03-06 10:22:32,318 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,318 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,318 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8/... way @@ -13623,15 +13489,15 @@ jdk8: locale: en_US reboot: False -2020-03-04 12:19:57,970 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,318 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('jdk8', OrderedDict([('8.0.1440.1', OrderedDict([('full_name', 'Java SE Development Kit 8 Update 144 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jdk-8u144-windows-x64.exe'), ('install_flags', '/s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature"'), ('uninstall_flags', '/x {32A3A4F4-B792-11D6-A78A-00B0D0180144} /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,970 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,970 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:57,970 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:57,970 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls -2020-03-04 12:19:57,985 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:57,985 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:57,985 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: +2020-03-06 10:22:32,332 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jdk8.sls' using 'yaml' renderer: 0.014157772064208984 +2020-03-06 10:22:32,332 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,332 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,332 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls +2020-03-06 10:22:32,348 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,348 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,348 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available jre: @@ -13650,15 +13516,15 @@ jre: # http://javadl.sun.com/webapps/download/AutoDL?BundleId=106369 # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre/... way -2020-03-04 12:19:57,985 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,363 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('jre', OrderedDict([('7.0.790', OrderedDict([('full_name', 'Java 7 Update 79 (64-bit)'), ('installer', 'salt://win/repo-ng/jre/jre-7u79-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F06417079FF} /norestart'), ('uninstaller', 'msiexec.exe'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:57,985 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:57,985 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,001 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,001 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls -2020-03-04 12:19:58,001 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,001 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,001 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: +2020-03-06 10:22:32,363 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,363 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,363 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,363 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls +2020-03-06 10:22:32,378 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,378 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,378 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls: # due to winrepo installer limitations you need to manually download the exe from # http://www.java.com/en/download/manual.jsp # and put it on the winrepo on master to install it the 'salt://win/repo-ng/jre8_*/... @@ -13738,15 +13604,15 @@ jre8: -2020-03-04 12:19:58,001 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,394 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('jre8', OrderedDict([('8.0.2010.9', OrderedDict([('full_name', 'Java 8 Update 201 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u201-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180201F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2110.9', OrderedDict([('full_name', 'Java 8 Update 211 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u211-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180211F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2210.9', OrderedDict([('full_name', 'Java 8 Update 221 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u221-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180221F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2310.9', OrderedDict([('full_name', 'Java 8 Update 231 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u231-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180231F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('8.0.2410.7', OrderedDict([('full_name', 'Java 8 Update 241 (64-bit)'), ('installer', 'salt://win/repo-ng/jre8/jre-8u241-windows-x64.exe'), ('uninstall_flags', '/qn /x {26A24AE4-039D-4CA4-87B4-2F64180241F0} /norestart'), ('install_flags', '/s REBOOT=Suppress SPONSORS=0 REMOVEOUTOFDATEJRES=1 AUTO_UPDATE=Disable'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,017 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.016097068786621094 -2020-03-04 12:19:58,017 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,017 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,017 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls -2020-03-04 12:19:58,017 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,017 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,032 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: +2020-03-06 10:22:32,394 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jre8.sls' using 'yaml' renderer: 0.0161285400390625 +2020-03-06 10:22:32,394 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,394 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,394 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls +2020-03-06 10:22:32,394 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,410 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'jinja' renderer: 0.015655040740966797 +2020-03-06 10:22:32,410 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls: jungledisk-server-management: '3.23.0.2': full_name: 'Jungle Disk Server Management' @@ -13760,15 +13626,15 @@ jungledisk-server-management: locale: en_US reboot: False -2020-03-04 12:19:58,032 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,410 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('jungledisk-server-management', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server Management'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServerManagement64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-management64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-management64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,032 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,032 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,032 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,032 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls -2020-03-04 12:19:58,048 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,048 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,048 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: +2020-03-06 10:22:32,410 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server-management.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,410 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,426 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,426 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls +2020-03-06 10:22:32,426 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,441 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'jinja' renderer: 0.015173912048339844 +2020-03-06 10:22:32,441 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls: jungledisk-server: '3.23.0.2': full_name: 'Jungle Disk Server' @@ -13782,15 +13648,15 @@ jungledisk-server: locale: en_US reboot: False -2020-03-04 12:19:58,048 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,441 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('jungledisk-server', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Server'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskServer64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-server-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-server-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,048 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,048 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,048 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,063 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls -2020-03-04 12:19:58,063 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,063 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,063 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: +2020-03-06 10:22:32,441 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-server.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,456 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,456 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,456 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls +2020-03-06 10:22:32,456 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,456 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,456 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls: jungledisk-workgroup: '3.23.0.2': full_name: 'Jungle Disk Workgroup' @@ -13804,15 +13670,15 @@ jungledisk-workgroup: locale: en_US reboot: False -2020-03-04 12:19:58,063 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,472 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('jungledisk-workgroup', OrderedDict([('3.23.0.2', OrderedDict([('full_name', 'Jungle Disk Workgroup'), ('installer', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('uninstaller', 'https://downloads.jungledisk.com/jungledisk/JungleDiskWorkgroup64-3230.exe'), ('install_flags', '/install /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('uninstall_flags', '/uninstall /quiet /norestart /log jungledisk-Workgroup-64-3230.log'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,063 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,063 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,063 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,063 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls -2020-03-04 12:19:58,080 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,080 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,080 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: +2020-03-06 10:22:32,472 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\jungledisk-workgroup.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,472 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,472 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,472 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls +2020-03-06 10:22:32,488 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,488 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,488 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls: kdiff3: 'Not Found': full_name: 'KDiff3 (remove only)' @@ -13826,15 +13692,15 @@ kdiff3: locale: en_US reboot: False -2020-03-04 12:19:58,080 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,488 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('kdiff3', OrderedDict([('Not Found', OrderedDict([('full_name', 'KDiff3 (remove only)'), ('installer', 'https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\KDiff3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,080 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,096 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,096 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,096 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls -2020-03-04 12:19:58,096 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,112 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.01607966423034668 -2020-03-04 12:19:58,112 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: +2020-03-06 10:22:32,488 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\kdiff3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,503 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,503 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,503 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls +2020-03-06 10:22:32,503 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,521 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'jinja' renderer: 0.017214059829711914 +2020-03-06 10:22:32,521 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls: # Keepass 2.x installation from https://keepass.info/ # to keep the versioning in the format of "2..minor", two seperate version arrays are created. @@ -14098,15 +13964,15 @@ keepass-2x: locale: en_US reboot: False -2020-03-04 12:19:58,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,521 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('keepass-2x', OrderedDict([('2.24.0', OrderedDict([('full_name', 'KeePass 2.24'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.24/KeePass-2.24.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.25.0', OrderedDict([('full_name', 'KeePass 2.25'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.25/KeePass-2.25.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.26.0', OrderedDict([('full_name', 'KeePass 2.26'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.26/KeePass-2.26.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.27.0', OrderedDict([('full_name', 'KeePass 2.27'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.27/KeePass-2.27.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.28.0', OrderedDict([('full_name', 'KeePass 2.28'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.28/KeePass-2.28.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.29.0', OrderedDict([('full_name', 'KeePass 2.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.29/KeePass-2.29.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.30.0', OrderedDict([('full_name', 'KeePass 2.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.30/KeePass-2.30.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.31.0', OrderedDict([('full_name', 'KeePass 2.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.31/KeePass-2.31.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.32.0', OrderedDict([('full_name', 'KeePass 2.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.32/KeePass-2.32.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.33.0', OrderedDict([('full_name', 'KeePass 2.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.33/KeePass-2.33.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.34.0', OrderedDict([('full_name', 'KeePass 2.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.34/KeePass-2.34.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.35.0', OrderedDict([('full_name', 'KeePass 2.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.35/KeePass-2.35.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.36.0', OrderedDict([('full_name', 'KeePass 2.36'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.36/KeePass-2.36.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.37.0', OrderedDict([('full_name', 'KeePass 2.37'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.37/KeePass-2.37.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.38.0', OrderedDict([('full_name', 'KeePass 2.38'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.38/KeePass-2.38.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.0', OrderedDict([('full_name', 'KeePass 2.39'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39/KeePass-2.39.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.40.0', OrderedDict([('full_name', 'KeePass 2.40'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.40/KeePass-2.40.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.41.0', OrderedDict([('full_name', 'KeePass 2.41'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.41/KeePass-2.41.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.0', OrderedDict([('full_name', 'KeePass 2.42'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42/KeePass-2.42.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.43.0', OrderedDict([('full_name', 'KeePass 2.43'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.43/KeePass-2.43.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.44.0', OrderedDict([('full_name', 'KeePass 2.44'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.44/KeePass-2.44.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.39.1', OrderedDict([('full_name', 'KeePass 2.39.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.39.1/KeePass-2.39.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.42.1', OrderedDict([('full_name', 'KeePass 2.42.1'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%202.x/2.42.1/KeePass-2.42.1.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,112 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,112 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,127 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,127 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls -2020-03-04 12:19:58,127 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,127 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,127 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: +2020-03-06 10:22:32,536 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass-2x.sls' using 'yaml' renderer: 0.015563488006591797 +2020-03-06 10:22:32,536 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,536 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,536 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls +2020-03-06 10:22:32,536 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,551 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'jinja' renderer: 0.014670610427856445 +2020-03-06 10:22:32,551 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls: keepass: '1.35.0': full_name: 'KeePass 1.35' @@ -14172,15 +14038,15 @@ keepass: locale: en_US reboot: False -2020-03-04 12:19:58,127 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,551 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('keepass', OrderedDict([('1.35.0', OrderedDict([('full_name', 'KeePass 1.35'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.35/KeePass-1.35.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.34.0', OrderedDict([('full_name', 'KeePass 1.34'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.34/KeePass-1.34.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.33.0', OrderedDict([('full_name', 'KeePass 1.33'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.33/KeePass-1.33.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.32.0', OrderedDict([('full_name', 'KeePass 1.32'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.32/KeePass-1.32.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.31.0', OrderedDict([('full_name', 'KeePass 1.31'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.31/KeePass-1.31.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.30.0', OrderedDict([('full_name', 'KeePass 1.30'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.29.0', OrderedDict([('full_name', 'KeePass 1.29'), ('installer', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/keepass/KeePass%201.x/1.29/KeePass-1.29.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,127 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,142 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,142 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,142 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls -2020-03-04 12:19:58,142 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,158 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.016161680221557617 -2020-03-04 12:19:58,158 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: +2020-03-06 10:22:32,551 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\keepass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,551 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,551 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,567 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls +2020-03-06 10:22:32,567 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,582 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'jinja' renderer: 0.014683246612548828 +2020-03-06 10:22:32,582 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls: # just 32-bit x86 installer available @@ -14198,15 +14064,15 @@ lastpass: locale: en_US reboot: False -2020-03-04 12:19:58,158 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,582 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('lastpass', OrderedDict([('Not Found', OrderedDict([('full_name', 'LastPass (uninstall only)'), ('installer', 'https://lastpass.eu/sync/lastpass_x64.exe'), ('install_flags', '-si --userinstallie --userinstallff --userinstallchrome'), ('uninstaller', '%PROGRAMFILES(x86)%\\LastPass\\lastpass.exe'), ('uninstall_flags', '-sb'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,158 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,158 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,158 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,158 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls -2020-03-04 12:19:58,158 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,174 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.01638507843017578 -2020-03-04 12:19:58,174 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: +2020-03-06 10:22:32,582 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lastpass.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,598 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,598 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,598 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls +2020-03-06 10:22:32,598 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,598 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,614 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls: # NOTE: If the lazarus installation directory exists the installation will # pop up a dialog box. This will cause the minion to hang because it # is waiting for the user to click continue on a dialog box that will @@ -14240,15 +14106,15 @@ lazarus: uninstall_flags: /VERYSILENT /NORESTART /SUPPRESSMSGBOXES -2020-03-04 12:19:58,174 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('lazarus', OrderedDict([('1.8.0', OrderedDict([('full_name', 'Lazarus 1.8.0'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.8.0/lazarus-1.8.0-fpc-3.0.4-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')])), ('1.6.4', OrderedDict([('full_name', 'Lazarus 1.6.4'), ('installer', 'https://downloads.sourceforge.net/project/lazarus/Lazarus%20Windows%2064%20bits/Lazarus%201.6.4/lazarus-1.6.4-fpc-3.0.2-win64.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', 'C:\\\\lazarus\\\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SUPPRESSMSGBOXES')]))]))]) -2020-03-04 12:19:58,174 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,174 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,174 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,189 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls -2020-03-04 12:19:58,189 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,189 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,204 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: +2020-03-06 10:22:32,614 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\lazarus.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,614 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,614 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,629 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls +2020-03-06 10:22:32,629 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,629 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,647 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls: libreoffice: '5.3.5.2': @@ -14324,15 +14190,15 @@ libreoffice: reboot: False -2020-03-04 12:19:58,204 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('libreoffice', OrderedDict([('5.3.5.2', OrderedDict([('full_name', 'LibreOffice 5.3.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.5.2/win/x86_64/LibreOffice_5.3.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.3.6.1', OrderedDict([('full_name', 'LibreOffice 5.3.6.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.3.6.1/win/x86_64/LibreOffice_5.3.6.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.6.2', OrderedDict([('full_name', 'LibreOffice 5.4.6.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.6.2/win/x86_64/LibreOffice_5.4.6.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.4.7.2', OrderedDict([('full_name', 'LibreOffice 5.4.7.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/5.4.7.2/win/x86_64/LibreOffice_5.4.7.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.0.5.2', OrderedDict([('full_name', 'LibreOffice 6.0.5.2'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.0.5.2/win/x86_64/LibreOffice_6.0.5.2_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.2.7.1', OrderedDict([('full_name', 'LibreOffice 6.2.7.1'), ('installer', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('uninstaller', 'https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.7.1/win/x86_64/LibreOffice_6.2.7.1_Win_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,204 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,204 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,204 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,204 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls -2020-03-04 12:19:58,204 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,204 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,221 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: +2020-03-06 10:22:32,647 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\libreoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,647 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,660 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,660 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls +2020-03-06 10:22:32,660 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,660 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,660 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls: logparser: '2.2.10': full_name: 'Log Parser 2.2' @@ -14344,15 +14210,15 @@ logparser: locale: en_US reboot: False -2020-03-04 12:19:58,221 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,660 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('logparser', OrderedDict([('2.2.10', OrderedDict([('full_name', 'Log Parser 2.2'), ('installer', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/f/f/1/ff1819f9-f702-48a5-bbc7-c9656bc74de8/LogParser.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,221 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,221 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,221 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,221 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls -2020-03-04 12:19:58,236 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,236 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,236 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: +2020-03-06 10:22:32,660 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\logparser.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,676 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,676 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,676 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls +2020-03-06 10:22:32,676 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,693 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'jinja' renderer: 0.0165712833404541 +2020-03-06 10:22:32,693 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls: # just 32-bit x86 installer available @@ -14379,15 +14245,15 @@ maas360bootanalyzer: reboot: False # download installer for MaaS360 Boot analyzer from internet and put in salt master win repo-ng directory -2020-03-04 12:19:58,236 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,693 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('maas360bootanalyzer', OrderedDict([('1.0.0', OrderedDict([('full_name', 'MaaS360 Boot Analyzer v 1.0.0'), ('installer', 'salt://win/repo-ng/maas360bootanalyzer/bootanalyzerinstaller.exe'), ('install_flags', '\'/S &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayName /d "MaaS360 Boot Analyzer v 1.0.0" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v DisplayVersion /d 1.0.0 &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v UninstallString /d "C:\\Program Files (x86)\\BootAnalyzer\\Uninstall.exe" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v Publisher /d "installed by salt winrepo-ng" &\nreg ADD HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MaaS360BootAnalyzer /f /v URLUpdateInfo /d "http://www.maas360.com" &\nexit 0\'\n'), ('uninstaller', '%PROGRAMFILES(x86)%\\MaaS360\\BootAnalyzer\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,236 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,252 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,252 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,252 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls -2020-03-04 12:19:58,252 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,252 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,252 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: +2020-03-06 10:22:32,693 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\maas360bootanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,708 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,708 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,708 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls +2020-03-06 10:22:32,708 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,708 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,708 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls: # just 32-bit x86 installer available @@ -14404,15 +14270,15 @@ malwarebytes: locale: en_US reboot: Falsea -2020-03-04 12:19:58,252 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,723 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_name', 'Malwarebytes Anti-Malware version 2.0.4.1028'), ('installer', 'https://data-cdn.mbamupdates.com/web/mb3-setup-consumer/mb3-setup-consumer-3.5.1.2522-1.0.374-1.0.5597.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Malwarebytes Anti-Malware\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', 'Falsea')]))]))]) -2020-03-04 12:19:58,268 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.015733718872070312 -2020-03-04 12:19:58,268 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,268 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,268 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls -2020-03-04 12:19:58,268 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,330 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.062219858169555664 -2020-03-04 12:19:58,330 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: +2020-03-06 10:22:32,723 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\malwarebytes.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,723 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,723 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,723 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls +2020-03-06 10:22:32,723 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,739 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'jinja' renderer: 0.01517343521118164 +2020-03-06 10:22:32,765 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls: #MariaDB https://downloads.mariadb.org/mariadb/+releases/ #only stable versions are listed @@ -14426,1251 +14292,1251 @@ OrderedDict([('malwarebytes', OrderedDict([('3.5.1.2522', OrderedDict([('full_na mariadb: - '10.0.38.0': + '10.3.13.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.37.0': + '10.3.12.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.36.0': + '10.3.11.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.35.0': + '10.3.10.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.34.0': + '10.3.9.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.33.0': + '10.3.8.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.32.0': + '10.3.7.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + full_name: 'MariaDB 10.3 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.31.0': + + + '5.5.63.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.30.0': + '5.5.62.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.29.0': + '5.5.61.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.28.0': + '5.5.60.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.27.0': + '5.5.59.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.26.0': + '5.5.58.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.25.0': + '5.5.57.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.24.0': + '5.5.56.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.23.0': + '5.5.55.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.22.0': + '5.5.54.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.21.0': + '5.5.53.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.20.0': + '5.5.52.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.19.0': + '5.5.51.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.18.0': + '5.5.50.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.17.0': + '5.5.49.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.16.0': + '5.5.48.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.15.0': + '5.5.47.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.14.0': + '5.5.46.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.13.0': + '5.5.45.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.12.0': + '5.5.44.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.11.0': + '5.5.43.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.0.10.0': + '5.5.42.0': - full_name: 'MariaDB 10.0 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.1.38.0': + '5.5.41.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.37.0': + '5.5.40.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.36.0': + '5.5.39.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.35.0': + '5.5.38.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.34.0': + '5.5.37.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.33.0': + '5.5.36.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.32.0': + '5.5.35.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.31.0': + '5.5.34.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + full_name: 'MariaDB 5.5 (x64)' + installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.30.0': + + + '10.2.22.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.29.0': + '10.2.21.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.28.0': + '10.2.20.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.27.0': + '10.2.19.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.26.0': + '10.2.18.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.25.0': + '10.2.17.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.24.0': + '10.2.16.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.23.0': + '10.2.15.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.22.0': + '10.2.14.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.21.0': + '10.2.13.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.20.0': + '10.2.12.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.19.0': + '10.2.11.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.18.0': + '10.2.10.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.17.0': + '10.2.9.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.16.0': + '10.2.8.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.14.0': + '10.2.7.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.13.0': + '10.2.6.0': - full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + full_name: 'MariaDB 10.2 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.12.0': + + + '10.1.38.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.11.0': + '10.1.37.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.10.0': + '10.1.36.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.9.0': + '10.1.35.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.1.8.0': + '10.1.34.0': full_name: 'MariaDB 10.1 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + installer: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.3.13.0': + '10.1.33.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.12.0': + '10.1.32.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.11.0': + '10.1.31.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.10.0': + '10.1.30.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.9.0': + '10.1.29.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.8.0': + '10.1.28.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.3.7.0': + '10.1.27.0': - full_name: 'MariaDB 10.3 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '5.5.63.0': + '10.1.26.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.62.0': + '10.1.25.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.61.0': + '10.1.24.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.60.0': + '10.1.23.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.59.0': + '10.1.22.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.58.0': + '10.1.21.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.57.0': + '10.1.20.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.56.0': + '10.1.19.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.55.0': + '10.1.18.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.54.0': + '10.1.17.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.53.0': + '10.1.16.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.52.0': + '10.1.14.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.51.0': + '10.1.13.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.50.0': + '10.1.12.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.49.0': + '10.1.11.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.48.0': + '10.1.10.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.47.0': + '10.1.9.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.46.0': + '10.1.8.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi' + full_name: 'MariaDB 10.1 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.45.0': + + + '10.0.38.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.44.0': + '10.0.37.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.43.0': + '10.0.36.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.42.0': + '10.0.35.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.41.0': + '10.0.34.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.40.0': + '10.0.33.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.39.0': + '10.0.32.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.38.0': + '10.0.31.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.37.0': + '10.0.30.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.36.0': + '10.0.29.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.35.0': + '10.0.28.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '5.5.34.0': + '10.0.27.0': - full_name: 'MariaDB 5.5 (x64)' - installer: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - - - '10.2.22.0': + '10.0.26.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.21.0': + '10.0.25.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.20.0': + '10.0.24.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.19.0': + '10.0.23.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.18.0': + '10.0.22.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.17.0': + '10.0.21.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.16.0': + '10.0.20.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.15.0': + '10.0.19.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.14.0': + '10.0.18.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.13.0': + '10.0.17.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.12.0': + '10.0.16.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.11.0': + '10.0.15.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.10.0': + '10.0.14.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.9.0': + '10.0.13.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.8.0': + '10.0.12.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.7.0': + '10.0.11.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' msiexec: True reboot: False - '10.2.6.0': + '10.0.10.0': - full_name: 'MariaDB 10.2 (x64)' - installer: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' - uninstaller: 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi' + full_name: 'MariaDB 10.0 (x64)' + installer: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' + uninstaller: 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi' install_flags: '/qn /norestart' uninstall_flags: '/qn /norestart' @@ -15679,15 +15545,15 @@ mariadb: -2020-03-04 12:19:58,361 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('mariadb', OrderedDict([('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:19:58,361 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.030780553817749023 -2020-03-04 12:19:58,361 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,361 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,361 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls -2020-03-04 12:19:58,376 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,376 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,376 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: +2020-03-06 10:22:32,774 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('mariadb', OrderedDict([('10.3.13.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.12.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.12/winx64-packages/mariadb-10.3.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.11.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.10.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.9.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.9/winx64-packages/mariadb-10.3.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.8.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.8/winx64-packages/mariadb-10.3.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.3.7.0', OrderedDict([('full_name', 'MariaDB 10.3 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.3.7/winx64-packages/mariadb-10.3.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.63.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.63/winx64-packages/mariadb-5.5.63-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.62.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.62/winx64-packages/mariadb-5.5.62-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.61.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.61/winx64-packages/mariadb-5.5.61-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.60.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.60/winx64-packages/mariadb-5.5.60-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.59.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.59/winx64-packages/mariadb-5.5.59-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.58.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.58/winx64-packages/mariadb-5.5.58-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.57.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.57/winx64-packages/mariadb-5.5.57-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.56.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.56/winx64-packages/mariadb-5.5.56-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.55.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.55/winx64-packages/mariadb-5.5.55-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.54.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.54/winx64-packages/mariadb-5.5.54-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.53.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.53/winx64-packages/mariadb-5.5.53-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.52.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.52/winx64-packages/mariadb-5.5.52-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.51.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.51/winx64-packages/mariadb-5.5.51-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.50.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.50/winx64-packages/mariadb-5.5.50-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.49.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.49/winx64-packages/mariadb-5.5.49-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.48.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.48/winx64-packages/mariadb-5.5.48-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.47.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.47/winx64-packages/mariadb-5.5.47-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.46.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.46/winx64-packages/mariadb-5.5.46-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.45.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.45/winx64-packages/mariadb-5.5.45-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.44.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.44/winx64-packages/mariadb-5.5.44-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.43.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.43/winx64-packages/mariadb-5.5.43-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.42.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.42/winx64-packages/mariadb-5.5.42-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.41.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.41/winx64-packages/mariadb-5.5.41-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.40.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.40/winx64-packages/mariadb-5.5.40-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.39.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.39/winx64-packages/mariadb-5.5.39-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.38.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.38/winx64-packages/mariadb-5.5.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.37.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.37/winx64-packages/mariadb-5.5.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.36.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.36/winx64-packages/mariadb-5.5.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.35.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.35/winx64-packages/mariadb-5.5.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('5.5.34.0', OrderedDict([('full_name', 'MariaDB 5.5 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-5.5.34/winx64-packages/mariadb-5.5.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.22.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.22/winx64-packages/mariadb-10.2.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.21.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.21/winx64-packages/mariadb-10.2.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.20.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.20/winx64-packages/mariadb-10.2.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.19.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.19/winx64-packages/mariadb-10.2.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.18.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.18/winx64-packages/mariadb-10.2.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.17.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.17/winx64-packages/mariadb-10.2.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.16.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.16/winx64-packages/mariadb-10.2.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.15.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.15/winx64-packages/mariadb-10.2.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.14.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.14/winx64-packages/mariadb-10.2.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.13.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.13/winx64-packages/mariadb-10.2.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.12.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.12/winx64-packages/mariadb-10.2.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.11.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.11/winx64-packages/mariadb-10.2.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.10.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.10/winx64-packages/mariadb-10.2.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.9.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.9/winx64-packages/mariadb-10.2.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.8.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.8/winx64-packages/mariadb-10.2.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.7.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.7/winx64-packages/mariadb-10.2.7-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.2.6.0', OrderedDict([('full_name', 'MariaDB 10.2 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.2.6/winx64-packages/mariadb-10.2.6-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.38.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.38/winx64-packages/mariadb-10.1.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.37.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.37/winx64-packages/mariadb-10.1.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.36.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.36/winx64-packages/mariadb-10.1.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.35.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.35/winx64-packages/mariadb-10.1.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.34.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.34/winx64-packages/mariadb-10.1.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.33.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.33/winx64-packages/mariadb-10.1.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.32.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.32/winx64-packages/mariadb-10.1.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.31.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.31/winx64-packages/mariadb-10.1.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.30.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.30/winx64-packages/mariadb-10.1.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.29.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.29/winx64-packages/mariadb-10.1.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.28.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.28/winx64-packages/mariadb-10.1.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.27.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.27/winx64-packages/mariadb-10.1.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.26.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.26/winx64-packages/mariadb-10.1.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.25.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.25/winx64-packages/mariadb-10.1.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.24.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.24/winx64-packages/mariadb-10.1.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.23.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.23/winx64-packages/mariadb-10.1.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.22.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.22/winx64-packages/mariadb-10.1.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.21.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.21/winx64-packages/mariadb-10.1.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.20.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.20/winx64-packages/mariadb-10.1.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.19.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.19/winx64-packages/mariadb-10.1.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.18.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.18/winx64-packages/mariadb-10.1.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.17.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.17/winx64-packages/mariadb-10.1.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.16.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.16/winx64-packages/mariadb-10.1.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.14.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.14/winx64-packages/mariadb-10.1.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.13.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.13/winx64-packages/mariadb-10.1.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.12.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.12/winx64-packages/mariadb-10.1.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.11.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.11/winx64-packages/mariadb-10.1.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.10.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.10/winx64-packages/mariadb-10.1.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.9.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.9/winx64-packages/mariadb-10.1.9-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.1.8.0', OrderedDict([('full_name', 'MariaDB 10.1 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.1.8/winx64-packages/mariadb-10.1.8-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.38.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.38/winx64-packages/mariadb-10.0.38-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.37.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.37/winx64-packages/mariadb-10.0.37-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.36.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.36/winx64-packages/mariadb-10.0.36-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.35.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.35/winx64-packages/mariadb-10.0.35-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.34.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.34/winx64-packages/mariadb-10.0.34-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.33.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.33/winx64-packages/mariadb-10.0.33-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.32.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.32/winx64-packages/mariadb-10.0.32-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.31.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.31/winx64-packages/mariadb-10.0.31-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.30.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.30/winx64-packages/mariadb-10.0.30-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.29.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.29/winx64-packages/mariadb-10.0.29-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.28.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.28/winx64-packages/mariadb-10.0.28-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.27.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.27/winx64-packages/mariadb-10.0.27-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.26.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.26/winx64-packages/mariadb-10.0.26-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.25.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.25/winx64-packages/mariadb-10.0.25-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.24.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.24/winx64-packages/mariadb-10.0.24-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.23.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.23/winx64-packages/mariadb-10.0.23-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.22.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.22/winx64-packages/mariadb-10.0.22-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.21.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.21/winx64-packages/mariadb-10.0.21-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.20.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.20/winx64-packages/mariadb-10.0.20-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.19.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.19/winx64-packages/mariadb-10.0.19-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.18.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.18/winx64-packages/mariadb-10.0.18-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.17.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.17/winx64-packages/mariadb-10.0.17-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.16.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.16/winx64-packages/mariadb-10.0.16-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.15.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.15/winx64-packages/mariadb-10.0.15-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.14.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.14/winx64-packages/mariadb-10.0.14-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.13.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.13/winx64-packages/mariadb-10.0.13-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.12.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.12/winx64-packages/mariadb-10.0.12-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.11.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.11/winx64-packages/mariadb-10.0.11-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('10.0.10.0', OrderedDict([('full_name', 'MariaDB 10.0 (x64)'), ('installer', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('uninstaller', 'http://archive.mariadb.org/mariadb-10.0.10/winx64-packages/mariadb-10.0.10-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:22:32,794 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mariadb.sls' using 'yaml' renderer: 0.02880263328552246 +2020-03-06 10:22:32,801 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,801 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,801 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls +2020-03-06 10:22:32,801 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,801 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,817 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls: mercurial: '3.1.1': @@ -15701,15 +15567,15 @@ mercurial: locale: en_US reboot: False -2020-03-04 12:19:58,376 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,817 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('mercurial', OrderedDict([('3.1.1', OrderedDict([('full_name', 'Mercurial 3.1.1 (x64)'), ('installer', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('uninstaller', 'https://mercurial.selenic.com/release/windows/mercurial-3.1.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,376 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,376 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,376 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,376 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls -2020-03-04 12:19:58,376 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,393 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.01724386215209961 -2020-03-04 12:19:58,393 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: +2020-03-06 10:22:32,817 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mercurial.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,817 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,817 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,817 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls +2020-03-06 10:22:32,833 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,833 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,833 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls: messageanalyzer: '4.0.7551.0': full_name: 'Microsoft Message Analyzer' @@ -15724,15 +15590,15 @@ messageanalyzer: locale: en_US reboot: False -2020-03-04 12:19:58,393 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,833 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('messageanalyzer', OrderedDict([('4.0.7551.0', OrderedDict([('full_name', 'Microsoft Message Analyzer'), ('installer', 'https://download.microsoft.com/download/2/8/3/283DE38A-5164-49DB-9883-9D1CC432174D/MessageAnalyzer64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', '{1CC02C23-8FCD-487E-860C-311EC0A0C933}'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,393 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,393 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,393 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,393 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls -2020-03-04 12:19:58,409 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,409 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,409 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: +2020-03-06 10:22:32,833 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\messageanalyzer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,833 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,848 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,848 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls +2020-03-06 10:22:32,848 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,864 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'jinja' renderer: 0.016068220138549805 +2020-03-06 10:22:32,864 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls: microsoft-build-tools: '14.0.23107': @@ -15746,15 +15612,15 @@ microsoft-build-tools: locale: en_US reboot: False -2020-03-04 12:19:58,409 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,864 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('microsoft-build-tools', OrderedDict([('14.0.23107', OrderedDict([('full_name', 'Microsoft Build Tools 14.0 (amd64)'), ('uninstall_flags', '/qn /x {8C918E5B-E238-401F-9F6E-4FB84B024CA2} /norestart'), ('installer', 'https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe'), ('install_flags', '/Q /NoRestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,409 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,423 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,423 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,423 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls -2020-03-04 12:19:58,423 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,423 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,423 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: +2020-03-06 10:22:32,864 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\microsoft-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,864 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,864 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,864 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls +2020-03-06 10:22:32,879 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,879 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,879 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls: mikogo: '5.3.0': full_name: 'Mikogo' @@ -15766,15 +15632,15 @@ mikogo: locale: en_US reboot: False -2020-03-04 12:19:58,439 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,879 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('mikogo', OrderedDict([('5.3.0', OrderedDict([('full_name', 'Mikogo'), ('installer', 'https://download.mikogo4.com/mikogo-starter.exe'), ('install_flags', '/S & taskkill /F /T /IM Mikogo-Screen-Service.exe & exit 0'), ('uninstaller', '%AppData%\\Mikogo\\remover.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,439 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,439 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,439 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,439 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls -2020-03-04 12:19:58,439 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,439 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,454 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: +2020-03-06 10:22:32,895 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mikogo.sls' using 'yaml' renderer: 0.015661954879760742 +2020-03-06 10:22:32,895 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,895 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,895 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls +2020-03-06 10:22:32,895 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,918 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'jinja' renderer: 0.022435903549194336 +2020-03-06 10:22:32,918 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls: miktex-basic: '2.9': full_name: 'MiKTeX 2.9' @@ -15791,15 +15657,15 @@ miktex-basic: locale: en_US reboot: False -2020-03-04 12:19:58,454 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,918 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('miktex-basic', OrderedDict([('2.9', OrderedDict([('full_name', 'MiKTeX 2.9'), ('installer', 'http://mirrors.ctan.org/systems/win32/miktex/setup/basic-miktex-2.9.6643-x64.exe'), ('install_flags', '--auto-install=yes --paper-size=A4 --shared --unattended --package-set=basic --program-folder="%ProgramFiles%\\MiKTeX 2.9\\"'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c del /Q /F /S "%ProgramFiles%\\MiKTeX 2.9\\" &\nreg delete "HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MiKTeX 2.9" /f &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,454 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,454 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,454 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,454 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls -2020-03-04 12:19:58,454 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,454 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,470 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: +2020-03-06 10:22:32,918 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\miktex-basic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,926 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,926 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,926 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls +2020-03-06 10:22:32,926 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,926 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,926 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls: mongodb: '3.3.5': full_name: 'MongoDB 3.3.5 2008R2Plus (64 bit)' @@ -15820,15 +15686,15 @@ mongodb: locale: en_US reboot: False -2020-03-04 12:19:58,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,926 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('mongodb', OrderedDict([('3.3.5', OrderedDict([('full_name', 'MongoDB 3.3.5 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.3.5-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'MongoDB 3.2.6 2008R2Plus (64 bit)'), ('installer', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.2.6-signed.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,470 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,470 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,470 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,470 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls -2020-03-04 12:19:58,470 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,470 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,470 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: +2020-03-06 10:22:32,942 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mongodb.sls' using 'yaml' renderer: 0.01657700538635254 +2020-03-06 10:22:32,942 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,942 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,942 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls +2020-03-06 10:22:32,942 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,958 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,958 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ms-mbsa: '2.3.2211': @@ -15843,15 +15709,15 @@ ms-mbsa: locale: en_US reboot: False -2020-03-04 12:19:58,470 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,958 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-mbsa', OrderedDict([('2.3.2211', OrderedDict([('installer', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('uninstaller', 'https://download.microsoft.com/download/8/E/1/8E16A4C7-DD28-4368-A83A-282C82FC212A/MBSASetup-x64-EN.msi'), ('full_name', 'Microsoft Baseline Security Analyzer 2.3'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,487 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.017052173614501953 -2020-03-04 12:19:58,487 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,487 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,487 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls -2020-03-04 12:19:58,487 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,487 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,487 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: +2020-03-06 10:22:32,958 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-mbsa.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,958 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,958 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,958 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls +2020-03-06 10:22:32,973 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,973 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,973 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls: ms-vcpp-2005-atl-redist_x64: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15863,15 +15729,15 @@ ms-vcpp-2005-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,973 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x64', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/9/1/4/914851c6-9141-443b-bdb4-8bad3a57bea9/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6E8E85E8-CE4B-4FF5-91F7-04999C9FAE6A} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,502 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.014695882797241211 -2020-03-04 12:19:58,502 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,502 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,502 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls -2020-03-04 12:19:58,502 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,502 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,502 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: +2020-03-06 10:22:32,973 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:32,973 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:32,973 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:32,989 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls +2020-03-06 10:22:32,989 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:32,989 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:32,989 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls: ms-vcpp-2005-atl-redist_x86: '8.0.50727.42': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15883,15 +15749,15 @@ ms-vcpp-2005-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,502 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:32,989 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-atl-redist_x86', OrderedDict([('8.0.50727.42', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/d/3/4/d342efa6-3266-4157-a2ec-5174867be706/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {A49F249F-0C91-497F-86DF-B2585E8E76B7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,502 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,518 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,518 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,518 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls -2020-03-04 12:19:58,518 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,518 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,518 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: +2020-03-06 10:22:32,989 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-atl-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,005 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,005 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,005 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls +2020-03-06 10:22:33,005 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,005 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,005 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls: ms-vcpp-2005-redist_x64: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15903,15 +15769,15 @@ ms-vcpp-2005-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,518 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,005 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x64', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/d/4/1/d41aca8a-faa5-49a7-a5f2-ea0aa4587da0/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {071c9b48-7c32-4621-a0ac-3f809523288f} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,518 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,533 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,533 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,533 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls -2020-03-04 12:19:58,533 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,533 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,533 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: +2020-03-06 10:22:33,020 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x64.sls' using 'yaml' renderer: 0.01563739776611328 +2020-03-06 10:22:33,020 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,020 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,020 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls +2020-03-06 10:22:33,020 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,020 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,036 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls: ms-vcpp-2005-redist_x86: '8.0.56336': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15923,15 +15789,15 @@ ms-vcpp-2005-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,533 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,036 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-redist_x86', OrderedDict([('8.0.56336', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/e/1/c/e1c773de-73ba-494a-a5ba-f24906ecf088/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {7299052b-02a4-4627-81f2-1818da5d550d} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,533 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,549 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,549 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,549 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls -2020-03-04 12:19:58,549 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,549 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,549 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: +2020-03-06 10:22:33,036 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,036 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,036 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,036 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls +2020-03-06 10:22:33,051 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,051 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,051 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls: ms-vcpp-2005-sp1-mfc-redist_x64: '8.0.61000': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15943,15 +15809,15 @@ ms-vcpp-2005-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,549 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,051 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x64', OrderedDict([('8.0.61000', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x64.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {ad8a2fa1-06e7-4b0d-927d-6e54b3d31028} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,549 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,564 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,564 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,564 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls -2020-03-04 12:19:58,564 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,564 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,564 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: +2020-03-06 10:22:33,051 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,051 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,051 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,051 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls +2020-03-06 10:22:33,067 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,067 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,067 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls: ms-vcpp-2005-sp1-mfc-redist_x86: '8.0.61001': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -15963,15 +15829,15 @@ ms-vcpp-2005-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,580 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,067 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-mfc-redist_x86', OrderedDict([('8.0.61001', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {710f4c1c-cc18-4c49-8cbf-51240c89a1a2} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,580 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,580 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,580 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,580 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls -2020-03-04 12:19:58,595 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,595 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,595 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: +2020-03-06 10:22:33,067 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,082 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,082 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,082 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls +2020-03-06 10:22:33,098 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,098 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,098 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls: ms-vcpp-2005-sp1-redist_x64: '8.0.59192': full_name: 'Microsoft Visual C++ 2005 Redistributable (x64)' @@ -15983,15 +15849,15 @@ ms-vcpp-2005-sp1-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,595 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,098 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x64', OrderedDict([('8.0.59192', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable (x64)'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x64.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {6ce5bae9-d3ca-4b99-891a-1dc6c118a5fc} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,595 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,595 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,595 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,595 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls -2020-03-04 12:19:58,610 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,610 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,610 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: +2020-03-06 10:22:33,098 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,098 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,098 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,114 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls +2020-03-06 10:22:33,114 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,114 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,114 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls: ms-vcpp-2005-sp1-redist_x86: '8.0.59193': full_name: 'Microsoft Visual C++ 2005 Redistributable' @@ -16003,15 +15869,15 @@ ms-vcpp-2005-sp1-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,610 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,114 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2005-sp1-redist_x86', OrderedDict([('8.0.59193', OrderedDict([('full_name', 'Microsoft Visual C++ 2005 Redistributable'), ('installer', 'https://download.microsoft.com/download/6/B/B/6BB661D6-A8AE-4819-B79F-236472F6070C/vcredist_x86.exe'), ('install_flags', '/q'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {837b34e3-7c30-493c-8f6a-2b0f04e2912c} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,610 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,610 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,610 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,610 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls -2020-03-04 12:19:58,610 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,610 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,628 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: +2020-03-06 10:22:33,114 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2005-sp1-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,114 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,129 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,129 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls +2020-03-06 10:22:33,129 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,129 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,129 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls: ms-vcpp-2008-redist_x64: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022' @@ -16023,15 +15889,15 @@ ms-vcpp-2008-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,628 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x64', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.21022'), ('installer', 'https://download.microsoft.com/download/d/2/4/d242c3fb-da5a-4542-ad66-f9661d0a8d19/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {350AA351-21FA-3270-8B7A-835434E766AD} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,628 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,628 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,628 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,628 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls -2020-03-04 12:19:58,628 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,643 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.014627218246459961 -2020-03-04 12:19:58,643 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: +2020-03-06 10:22:33,129 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,145 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,145 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,145 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls +2020-03-06 10:22:33,145 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,145 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,145 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls: ms-vcpp-2008-redist_x86: '9.0.21022': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022' @@ -16043,15 +15909,15 @@ ms-vcpp-2008-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,643 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,145 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-redist_x86', OrderedDict([('9.0.21022', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.21022'), ('installer', 'https://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,643 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,643 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,643 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,643 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls -2020-03-04 12:19:58,643 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,643 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,660 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: +2020-03-06 10:22:33,145 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,162 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,162 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,162 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls +2020-03-06 10:22:33,162 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,162 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,162 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls: ms-vcpp-2008-sp1-atl-redist_x64: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148' @@ -16063,15 +15929,15 @@ ms-vcpp-2008-sp1-atl-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,660 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,162 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x64', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {4B6C7001-C7D6-3710-913E-5BC23FCE91E6} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,660 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,660 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,660 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,660 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls -2020-03-04 12:19:58,673 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,673 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,673 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: +2020-03-06 10:22:33,162 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,177 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,177 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,177 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls +2020-03-06 10:22:33,177 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,177 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,177 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls: ms-vcpp-2008-sp1-atl-redist_x86: '9.0.30729.4148': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148' @@ -16083,15 +15949,15 @@ ms-vcpp-2008-sp1-atl-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,673 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,177 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-atl-redist_x86', OrderedDict([('9.0.30729.4148', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148'), ('installer', 'https://download.microsoft.com/download/9/7/7/977B481A-7BA6-4E30-AC40-ED51EB2028F2/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {1F1C2DFC-2D24-3E06-BCB8-725134ADF989} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,673 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,673 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,673 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,673 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls -2020-03-04 12:19:58,689 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,689 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,689 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: +2020-03-06 10:22:33,192 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-atl-redist_x86.sls' using 'yaml' renderer: 0.015154123306274414 +2020-03-06 10:22:33,192 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,192 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,192 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls +2020-03-06 10:22:33,208 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,208 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,208 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls: ms-vcpp-2008-sp1-mfc-redist_x64: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161' @@ -16103,15 +15969,15 @@ ms-vcpp-2008-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,689 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,208 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x64', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x64.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,689 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,705 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,705 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,705 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls -2020-03-04 12:19:58,705 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,705 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,705 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: +2020-03-06 10:22:33,208 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,208 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,208 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,224 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls +2020-03-06 10:22:33,224 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,224 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,224 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls: ms-vcpp-2008-sp1-mfc-redist_x86: '9.0.30729.6161': full_name: 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161' @@ -16123,15 +15989,15 @@ ms-vcpp-2008-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,705 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,224 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2008-sp1-mfc-redist_x86', OrderedDict([('9.0.30729.6161', OrderedDict([('full_name', 'Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161'), ('installer', 'https://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe'), ('install_flags', '/qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9BE518E6-ECC6-35A9-88E4-87755C07200F} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,705 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,720 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,720 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,720 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls -2020-03-04 12:19:58,720 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,720 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,720 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: +2020-03-06 10:22:33,224 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2008-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,239 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,239 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,239 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls +2020-03-06 10:22:33,239 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,239 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,239 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls: ms-vcpp-2010-sp1-mfc-redist_x64: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219' @@ -16143,15 +16009,15 @@ ms-vcpp-2010-sp1-mfc-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,720 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,239 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x64', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x64 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {1D8E6291-B0D5-35EC-8441-6616F567A0F7} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,736 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.016111135482788086 -2020-03-04 12:19:58,736 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,736 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,736 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls -2020-03-04 12:19:58,736 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,736 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,736 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: +2020-03-06 10:22:33,239 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,256 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,256 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,256 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls +2020-03-06 10:22:33,256 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,256 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,273 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls: ms-vcpp-2010-sp1-mfc-redist_x86: '10.0.40219': full_name: 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219' @@ -16163,15 +16029,15 @@ ms-vcpp-2010-sp1-mfc-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,736 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2010-sp1-mfc-redist_x86', OrderedDict([('10.0.40219', OrderedDict([('full_name', 'Microsoft Visual C++ 2010 Redistributable - x86 10.0.40219'), ('installer', 'https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe'), ('install_flags', '/q /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/q /x {F0C3E5D1-1ADE-321E-8167-68EF0DE699A5} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,736 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,751 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,751 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,751 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls -2020-03-04 12:19:58,751 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,751 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,751 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: +2020-03-06 10:22:33,273 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2010-sp1-mfc-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,273 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,273 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,286 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls +2020-03-06 10:22:33,286 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,286 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,286 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls: ms-vcpp-2012-redist_x64: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030' @@ -16183,15 +16049,15 @@ ms-vcpp-2012-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,751 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,286 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x64', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '%ProgramData%\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe'), ('uninstall_flags', '/quiet /uninstall /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,751 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,768 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,768 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,768 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls -2020-03-04 12:19:58,768 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,768 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,768 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: +2020-03-06 10:22:33,286 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,286 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,302 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,302 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls +2020-03-06 10:22:33,302 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,302 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,302 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls: ms-vcpp-2012-redist_x86: '11.0.61030.0': full_name: 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030' @@ -16203,15 +16069,15 @@ ms-vcpp-2012-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,768 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,302 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2012-redist_x86', OrderedDict([('11.0.61030.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030'), ('installer', 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', '"%ProgramData%\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe"'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,768 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,782 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,782 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,782 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls -2020-03-04 12:19:58,782 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,782 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,782 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: +2020-03-06 10:22:33,302 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2012-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,318 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,318 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,318 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls +2020-03-06 10:22:33,318 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,318 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,318 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls: ms-vcpp-2013-redist_x64: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501' @@ -16223,15 +16089,15 @@ ms-vcpp-2013-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,782 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,334 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x64', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x64) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,782 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,799 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,799 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,799 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls -2020-03-04 12:19:58,799 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,799 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,799 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: +2020-03-06 10:22:33,334 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x64.sls' using 'yaml' renderer: 0.016126394271850586 +2020-03-06 10:22:33,334 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,334 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,334 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls +2020-03-06 10:22:33,334 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,334 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,349 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls: ms-vcpp-2013-redist_x86: '12.0.30501.0': full_name: 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501' @@ -16243,15 +16109,15 @@ ms-vcpp-2013-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,799 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,349 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2013-redist_x86', OrderedDict([('12.0.30501.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2013 Redistributable (x86) - 12.0.30501'), ('installer', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,799 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,814 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,814 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,814 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls -2020-03-04 12:19:58,814 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,814 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,830 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: +2020-03-06 10:22:33,349 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2013-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,349 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,349 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,349 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls +2020-03-06 10:22:33,364 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,364 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,364 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls: ms-vcpp-2015-build-tools: '14.0.25420.1': full_name: 'Microsoft Visual C++ Build Tools' @@ -16262,15 +16128,15 @@ ms-vcpp-2015-build-tools: locale: en_US reboot: False -2020-03-04 12:19:58,830 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,364 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-build-tools', OrderedDict([('14.0.25420.1', OrderedDict([('full_name', 'Microsoft Visual C++ Build Tools'), ('installer', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('install_flags', '/Q /Silent /NoRestart'), ('uninstaller', 'https://download.microsoft.com/download/5/F/7/5F7ACAEB-8363-451F-9425-68A90F98B238/visualcppbuildtools_full.exe'), ('uninstall_flags', '/Q /U /Silent /NoRestart'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,830 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,830 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,830 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,830 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls -2020-03-04 12:19:58,830 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,830 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,846 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: +2020-03-06 10:22:33,364 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-build-tools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,380 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,380 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,380 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls +2020-03-06 10:22:33,380 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,380 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,380 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls: ms-vcpp-2015-redist_x64: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215' @@ -16295,15 +16161,15 @@ ms-vcpp-2015-redist_x64: # Microsoft Visual C++ 2015 x64 Minimum Runtime - 14.0.23026 {0D3E9E15-DE7A-300B-96F1-B4AF12B96488} # Microsoft Visual C++ 2015 x64 Additional Runtime - 14.0.23026 {BC958BD2-5DAC-3862-BB1A-C1BE0790438D} -2020-03-04 12:19:58,846 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,396 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x64', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x64) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,846 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,846 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,846 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,846 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls -2020-03-04 12:19:58,846 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,861 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.015146255493164062 -2020-03-04 12:19:58,861 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: +2020-03-06 10:22:33,396 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,396 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,396 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,396 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls +2020-03-06 10:22:33,412 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,412 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,412 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls: ms-vcpp-2015-redist_x86: '14.0.24215.1': full_name: 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215' @@ -16328,15 +16194,15 @@ ms-vcpp-2015-redist_x86: # Microsoft Visual C++ 2015 x86 Minimum Runtime - 14.0.23026 {A2563E55-3BEC-3828-8D67-E5E8B9E8B675} # Microsoft Visual C++ 2015 x86 Additional Runtime - 14.0.23026 {BE960C1C-7BAD-3DE6-8B1A-2616FE532845} -2020-03-04 12:19:58,861 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,412 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2015-redist_x86', OrderedDict([('14.0.24215.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24215'), ('installer', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.0.23026.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.23026'), ('installer', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,861 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,861 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,861 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,861 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls -2020-03-04 12:19:58,861 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,877 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.01613306999206543 -2020-03-04 12:19:58,877 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: +2020-03-06 10:22:33,412 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2015-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,428 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,428 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,428 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls +2020-03-06 10:22:33,428 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,428 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,428 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls: ms-vcpp-2017-redist_x64: '14.20.27508.1': full_name: 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508' @@ -16357,15 +16223,15 @@ ms-vcpp-2017-redist_x64: locale: en_US reboot: False -2020-03-04 12:19:58,877 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,443 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x64', OrderedDict([('14.20.27508.1', OrderedDict([('full_name', 'Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('14.20.27508', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x64) - 14.20.27508'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/602ece0b-dae9-4f47-84c5-240dc997483e/5a0b5cec555e06240d79eb4ac6bc8973/vc_redist.x64.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,877 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,877 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,877 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,877 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls -2020-03-04 12:19:58,877 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,893 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.015601396560668945 -2020-03-04 12:19:58,893 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: +2020-03-06 10:22:33,443 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,443 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,443 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,443 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls +2020-03-06 10:22:33,458 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,458 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,458 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls: ms-vcpp-2017-redist_x86: '14.11.25325.0': full_name: 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0' @@ -16377,15 +16243,15 @@ ms-vcpp-2017-redist_x86: locale: en_US reboot: False -2020-03-04 12:19:58,893 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,458 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ms-vcpp-2017-redist_x86', OrderedDict([('14.11.25325.0', OrderedDict([('full_name', 'Microsoft Visual C++ 2017 Redistributable (x86) - 14.11.25325.0'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe'), ('uninstall_flags', '/uninstall /quiet /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,893 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,893 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,893 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,893 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls -2020-03-04 12:19:58,893 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,909 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.01563572883605957 -2020-03-04 12:19:58,909 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: +2020-03-06 10:22:33,458 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ms-vcpp-2017-redist_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,458 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,458 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,458 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls +2020-03-06 10:22:33,475 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,475 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,475 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls: @@ -16402,15 +16268,15 @@ mucommander: reboot: False -2020-03-04 12:19:58,909 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('mucommander', OrderedDict([('0.9.2', OrderedDict([('full_name', 'muCommander (remove only)'), ('installer', 'https://github.com/mucommander/mucommander/releases/download/0.9.2/mucommander-0.9.2.exe'), ('uninstaller', '%PROGRAMFILES(x86)%\\muCommander\\uninstaller.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,909 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,909 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,909 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,924 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls -2020-03-04 12:19:58,924 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,924 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,924 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: +2020-03-06 10:22:33,475 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mucommander.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,475 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,494 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,494 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls +2020-03-06 10:22:33,494 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,494 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,507 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls: mysql-essential: '5.1.73': full_name: 'MySQL Server 5.1' @@ -16424,15 +16290,15 @@ mysql-essential: locale: en_US reboot: False -2020-03-04 12:19:58,924 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,507 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('mysql-essential', OrderedDict([('5.1.73', OrderedDict([('full_name', 'MySQL Server 5.1'), ('installer', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQL-5.1/mysql-essential-5.1.73-winx64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,924 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,924 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,924 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,940 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls -2020-03-04 12:19:58,940 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,940 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,940 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: +2020-03-06 10:22:33,507 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-essential.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,507 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,507 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,507 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls +2020-03-06 10:22:33,522 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,522 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,522 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls: mysql-installer-community: '1.4.3.0': full_name: 'MySQL Installer - Community' @@ -16448,15 +16314,15 @@ mysql-installer-community: # https://dev.mysql.com/doc/refman/5.6/en/mysql-installer-gui.html # https://dev.mysql.com/doc/refman/5.6/en/MySQLInstallerConsole.html -2020-03-04 12:19:58,940 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,522 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('mysql-installer-community', OrderedDict([('1.4.3.0', OrderedDict([('full_name', 'MySQL Installer - Community'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.23.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,940 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,940 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,955 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,955 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls -2020-03-04 12:19:58,955 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,955 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,955 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: +2020-03-06 10:22:33,522 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-installer-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,522 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,522 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,539 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls +2020-03-06 10:22:33,539 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,539 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,539 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls: mysql-workbench-community: '8.0.15': @@ -16493,15 +16359,15 @@ mysql-workbench-community: # Read for MySQL Workbench Prerequisites: https://dev.mysql.com/resources/workbench_prerequisites.html -2020-03-04 12:19:58,955 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,552 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('mysql-workbench-community', OrderedDict([('8.0.15', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.14', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.14-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.0.13', OrderedDict([('full_name', 'MySQL Workbench 8.0 CE'), ('installer', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-winx64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,955 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,955 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,971 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,971 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls -2020-03-04 12:19:58,971 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,971 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,971 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: +2020-03-06 10:22:33,552 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\mysql-workbench.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,552 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,552 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,552 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls +2020-03-06 10:22:33,552 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,568 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'jinja' renderer: 0.016567230224609375 +2020-03-06 10:22:33,568 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls: never10: '1.3': full_name: 'Never 10 (GRC)' @@ -16514,15 +16380,15 @@ never10: reboot: False # download it from https://www.grc.com/never10.htm -2020-03-04 12:19:58,971 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,568 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('never10', OrderedDict([('1.3', OrderedDict([('full_name', 'Never 10 (GRC)'), ('installer', 'https://www.grc.com/files/never10.exe'), ('install_flags', 'update delete disable'), ('uninstaller', ''), ('uninstall_flags', ''), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:58,971 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:58,971 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:58,987 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:58,987 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls -2020-03-04 12:19:58,987 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:58,987 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:58,987 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: +2020-03-06 10:22:33,568 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\never10.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,568 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,583 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,583 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls +2020-03-06 10:22:33,583 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,583 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,583 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls: # Please note that per # https://docs.newrelic.com/docs/infrastructure/new-relic-infrastructure/installation/uninstall-infrastructure-agent#uninstall-windows # the MSI uninstall does not remove files or settings, @@ -16683,15 +16549,15 @@ newrelic-infra: reboot: False -2020-03-04 12:19:59,000 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,599 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('newrelic-infra', OrderedDict([('1.0.279', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.279.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.292', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.292.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.296', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.296.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.301', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.301.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.311', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.311.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.316', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.316.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.323', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.323.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.336', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.336.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.338', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.338.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.341', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.341.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.673', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.673.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.677', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.677.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.682', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.682.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.690', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.690.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.703', OrderedDict([('full_name', 'New Relic Infrastructure Agent'), ('installer', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.0.703.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,000 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.013457775115966797 -2020-03-04 12:19:59,000 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,000 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,000 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls -2020-03-04 12:19:59,000 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,015 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.014796972274780273 -2020-03-04 12:19:59,015 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: +2020-03-06 10:22:33,599 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\newrelic-infra.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,599 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,599 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,614 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls +2020-03-06 10:22:33,614 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,614 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,614 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls: nextcloud-client: '2.2.3.4': @@ -16785,15 +16651,15 @@ nextcloud-client: reboot: False -2020-03-04 12:19:59,015 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,614 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('nextcloud-client', OrderedDict([('2.2.3.4', OrderedDict([('full_name', 'Nextcloud Client 2.2.3.4'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.3.4-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.2', OrderedDict([('full_name', 'Nextcloud Client 2.2.4.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.2.4.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.1.8', OrderedDict([('full_name', 'Nextcloud Client 2.3.1.8'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.1.8-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.2.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.2.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.2.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.3.3.1', OrderedDict([('full_name', 'Nextcloud Client 2.3.3.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.3.3.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0', OrderedDict([('full_name', 'Nextcloud Client 2.5.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.1', OrderedDict([('full_name', 'Nextcloud Client 2.5.1'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.1-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.2', OrderedDict([('full_name', 'Nextcloud Client 2.5.2'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.2-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.5.3', OrderedDict([('full_name', 'Nextcloud Client 2.5.3'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.5.3-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Nextcloud Client 2.6.0'), ('installer', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', 'https://download.nextcloud.com/desktop/releases/Windows/Nextcloud-2.6.0-setup.exe'), ('uninstall_flags', '/S'), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,015 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,015 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,015 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,015 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls -2020-03-04 12:19:59,028 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,028 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,028 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: +2020-03-06 10:22:33,631 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nextcloud-client.sls' using 'yaml' renderer: 0.01662731170654297 +2020-03-06 10:22:33,631 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,631 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,631 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls +2020-03-06 10:22:33,631 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,646 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'jinja' renderer: 0.015152692794799805 +2020-03-06 10:22:33,646 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls: # just 32-bit x86 installer available @@ -16823,15 +16689,15 @@ nmap: reboot: False -2020-03-04 12:19:59,028 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,646 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('nmap', OrderedDict([('7.70', OrderedDict([('full_name', 'Nmap 7.70'), ('installer', 'https://nmap.org/dist/nmap-7.70-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.60', OrderedDict([('full_name', 'Nmap 7.60'), ('installer', 'https://nmap.org/dist/nmap-7.60-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Nmap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,028 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,028 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,028 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,043 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls -2020-03-04 12:19:59,043 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,043 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,043 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: +2020-03-06 10:22:33,646 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nmap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,646 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,646 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,662 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls +2020-03-06 10:22:33,662 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,662 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,677 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls: node.js-lts: '12.13.1': @@ -16919,15 +16785,15 @@ node.js-lts: reboot: False -2020-03-04 12:19:59,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,677 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('node.js-lts', OrderedDict([('12.13.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.16.0/node-v10.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.17.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.17.1/node-v6.17.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.11.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.11.3/node-v6.11.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('6.9.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v6.9.1/node-v6.9.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,098 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.05490922927856445 -2020-03-04 12:19:59,098 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,098 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,098 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls -2020-03-04 12:19:59,098 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,112 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.014503717422485352 -2020-03-04 12:19:59,112 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: +2020-03-06 10:22:33,677 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js-lts.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,677 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,677 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,693 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls +2020-03-06 10:22:33,693 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,693 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,693 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls: node.js: '13.1.0': @@ -17051,15 +16917,15 @@ node.js: reboot: False -2020-03-04 12:19:59,112 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,709 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('node.js', OrderedDict([('13.1.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v13.1.0/node-v13.1.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.6.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.6.0/node-v12.6.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('12.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v12.0.0/node-v12.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('11.14.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v11.14.0/node-v11.14.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('10.15.3', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v10.15.3/node-v10.15.3-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('9.11.2', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v9.11.2/node-v9.11.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.16.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.16.0/node-v8.16.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v8.8.1/node-v8.8.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.10.1', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.10.1/node-v7.10.1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.0.0', OrderedDict([('full_name', 'Node.js'), ('installer', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('uninstaller', 'https://nodejs.org/dist/v7.0.0/node-v7.0.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,112 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,112 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,112 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,112 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls -2020-03-04 12:19:59,112 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,129 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0160520076751709 -2020-03-04 12:19:59,129 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: +2020-03-06 10:22:33,709 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\node.js.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,709 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,709 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,724 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls +2020-03-06 10:22:33,724 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,724 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,724 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls: nomacs: '3.8.0': @@ -17073,15 +16939,15 @@ nomacs: reboot: False -2020-03-04 12:19:59,129 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('nomacs', OrderedDict([('3.8.0', OrderedDict([('full_name', 'nomacs - Image Lounge'), ('installer', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/nomacs/nomacs-setup-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,129 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,129 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,129 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,129 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls -2020-03-04 12:19:59,141 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,141 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,141 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: +2020-03-06 10:22:33,724 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nomacs.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,739 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,739 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,739 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls +2020-03-06 10:22:33,739 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,758 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'jinja' renderer: 0.018140554428100586 +2020-03-06 10:22:33,758 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls: # just 32-bit x86 installer used for now. x64 was introduced at ver. 7.0, but most plugins are still only 32-bit. @@ -17278,15 +17144,15 @@ npp: # the 64-bit installer is available from: # https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.x64.exe -2020-03-04 12:19:59,141 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,758 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('npp', OrderedDict([('7.7.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7.1/npp.7.7.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.6/npp.7.6.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.4/npp.7.6.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.3/npp.7.6.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.2/npp.7.6.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.6.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.6.1/npp.7.6.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.9', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.9/npp.7.5.9.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.8', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.8/npp.7.5.8.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.7', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.7/npp.7.5.7.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.6', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.6/npp.7.5.6.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.5', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.5/npp.7.5.5.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.4', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.4/npp.7.5.4.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.3', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.3/npp.7.5.3.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.2/npp.7.5.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.5.1', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.5.1/npp.7.5.1.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('7.4.2', OrderedDict([('full_name', 'Notepad++ (32-bit x86)'), ('installer', 'https://notepad-plus-plus.org/repository/7.x/7.4.2/npp.7.4.2.Installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Notepad++\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,155 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.014542341232299805 -2020-03-04 12:19:59,155 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,155 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,155 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls -2020-03-04 12:19:59,155 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,169 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.01435232162475586 -2020-03-04 12:19:59,169 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: +2020-03-06 10:22:33,771 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\npp.sls' using 'yaml' renderer: 0.013642311096191406 +2020-03-06 10:22:33,771 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,771 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,771 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls +2020-03-06 10:22:33,771 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,786 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'jinja' renderer: 0.015150070190429688 +2020-03-06 10:22:33,786 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls: nsclient: @@ -17443,24 +17309,24 @@ nsclient: reboot: False -2020-03-04 12:19:59,169 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,803 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('nsclient', OrderedDict([('0.5.2039', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.39/NSCP-0.5.2.39-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.2029', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.2.29/NSCP-0.5.2.29-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1046', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.46/NSCP-0.5.1.46-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.1044', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.1.44/NSCP-0.5.1.44-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0062', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.5.0.62/NSCP-0.5.0.62-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.23', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.23/NSCP-0.4.4.23-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4.19', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.4.19/NSCP-0.4.4.19-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.143', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.143/NSCP-0.4.3.143-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3.88', OrderedDict([('full_name', 'NSClient++ (x64)'), ('installer', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('uninstaller', 'https://github.com/mickem/nscp/releases/download/0.4.3.88/NSCP-0.4.3.88-x64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,169 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,169 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,182 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,182 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls -2020-03-04 12:19:59,182 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,182 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,182 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: +2020-03-06 10:22:33,803 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsclient.sls' using 'yaml' renderer: 0.016104459762573242 +2020-03-06 10:22:33,803 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,803 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,803 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls +2020-03-06 10:22:33,803 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,818 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'jinja' renderer: 0.015707015991210938 +2020-03-06 10:22:33,818 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls: # Define versions nsis: - '3.03': + '3.0b2': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17470,9 +17336,9 @@ nsis: locale: en_US reboot: False - '3.02.1': + '3.0b1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17482,9 +17348,11 @@ nsis: locale: en_US reboot: False - '3.02': + + + '3.03': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17494,9 +17362,9 @@ nsis: locale: en_US reboot: False - '3.01': + '3.02.1': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17506,9 +17374,9 @@ nsis: locale: en_US reboot: False - '3.0': + '3.02': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17518,11 +17386,9 @@ nsis: locale: en_US reboot: False - - - '3.0b2': + '3.01': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17532,9 +17398,9 @@ nsis: locale: en_US reboot: False - '3.0b1': + '3.0': full_name: 'Nullsoft Install System' - installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe' + installer: 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe' install_flags: '/S' uninstaller: '%PROGRAMFILES(x86)%\NSIS\uninst-nsis.exe' @@ -17620,15 +17486,15 @@ nsis: -2020-03-04 12:19:59,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('nsis', OrderedDict([('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,197 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.014969825744628906 -2020-03-04 12:19:59,197 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,197 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,197 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls -2020-03-04 12:19:59,212 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,212 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,212 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: +2020-03-06 10:22:33,818 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('nsis', OrderedDict([('3.0b2', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b2/nsis-3.0b2-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0b1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0b1/nsis-3.0b1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.03', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.03/nsis-3.03-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02.1', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.02', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.02/nsis-3.02-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.01', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.01/nsis-3.01-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%203/3.0/nsis-3.0-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.51', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.51/nsis-2.51-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.50', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.50/nsis-2.50-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.49', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.49/nsis-2.49-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.48', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.48/nsis-2.48-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.47', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.47/nsis-2.47-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.46', OrderedDict([('full_name', 'Nullsoft Install System'), ('installer', 'https://iweb.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\NSIS\\uninst-nsis.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:22:33,834 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nsis.sls' using 'yaml' renderer: 0.01618337631225586 +2020-03-06 10:22:33,834 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,834 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,834 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls +2020-03-06 10:22:33,850 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,850 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,865 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls: # Install Meinberg NTP daemon for Windows # Note: To do a silent installation, this installer needs a setup file named # setup.ini, which should be stored at C:/ProgramData/NTP/setup.ini. @@ -17670,29 +17536,29 @@ ntp: reboot: False -2020-03-04 12:19:59,212 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,865 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ntp', OrderedDict([('4.2.8p13', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p13-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p12', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p12-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8p11', OrderedDict([('full_name', 'Network Time Protocol'), ('installer', 'https://www.meinberg.de/download/ntp/windows/ntp-4.2.8p11-win32-setup.exe'), ('install_flags', '/USE_FILE=C:\\\\ProgramData\\\\NTP\\\\setup.ini'), ('uninstaller', '%ProgramFiles(x86)%\\\\NTP\\\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,212 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,225 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,225 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,225 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls -2020-03-04 12:19:59,225 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,225 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,240 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: +2020-03-06 10:22:33,865 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ntp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,865 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,865 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,865 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls +2020-03-06 10:22:33,880 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,880 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,880 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls: nunit-console: - '3.7.0': - full_name: 'NUnit Console 3.7.0' + '3.8.0': + full_name: 'NUnit Console 3.8.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False @@ -17713,29 +17579,29 @@ nunit-console: - '3.8.0': - full_name: 'NUnit Console 3.8.0' + '3.7.0': + full_name: 'NUnit Console 3.7.0' - installer: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + installer: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' install_flags: '/qn /norestart' - uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi' + uninstaller: 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi' uninstall_flags: '/qn /norestart' msiexec: True reboot: False -2020-03-04 12:19:59,240 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('nunit-console', OrderedDict([('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:19:59,240 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,240 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,240 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,240 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls -2020-03-04 12:19:59,240 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,254 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.01392507553100586 -2020-03-04 12:19:59,254 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: +2020-03-06 10:22:33,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('nunit-console', OrderedDict([('3.8.0', OrderedDict([('full_name', 'NUnit Console 3.8.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.8/NUnit.Console-3.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.9.0', OrderedDict([('full_name', 'NUnit Console 3.9.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.7.0', OrderedDict([('full_name', 'NUnit Console 3.7.0'), ('installer', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/nunit/nunit-console/releases/download/3.7/NUnit.Console-3.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) +2020-03-06 10:22:33,897 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nunit-console.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,897 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,897 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,897 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls +2020-03-06 10:22:33,912 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,912 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,912 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls: nxlog: '2.10.2150': full_name: 'NXLog-CE' @@ -17747,15 +17613,15 @@ nxlog: locale: en_US reboot: False -2020-03-04 12:19:59,254 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,912 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('nxlog', OrderedDict([('2.10.2150', OrderedDict([('full_name', 'NXLog-CE'), ('installer', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('install_flags', '/quiet /norestart'), ('uninstaller', 'https://nxlog.co/system/files/products/files/348/nxlog-ce-2.10.2150.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,254 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,254 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,254 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,254 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls -2020-03-04 12:19:59,267 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,267 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,267 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: +2020-03-06 10:22:33,912 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\nxlog.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,912 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,928 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,928 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls +2020-03-06 10:22:33,943 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,943 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,943 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -17793,15 +17659,15 @@ octopus-tentacle: reboot: False -2020-03-04 12:19:59,267 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,943 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('octopus-tentacle', OrderedDict([('latest', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://octopus.com/downloads/latest/OctopusTentacle64'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.17', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.17-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.16', OrderedDict([('full_name', 'Octopus Deploy Tentacle'), ('installer', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.octopusdeploy.com/octopus/Octopus.Tentacle.3.3.16-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,267 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,282 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,282 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,282 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls -2020-03-04 12:19:59,282 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,296 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.014322280883789062 -2020-03-04 12:19:59,296 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: +2020-03-06 10:22:33,943 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\octopus-tentacle.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:33,959 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,959 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,959 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls +2020-03-06 10:22:33,975 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:33,975 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:33,975 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls: # Source: http://openlp.org/ # just 32-bit x86 installer available @@ -17831,15 +17697,15 @@ openlp: reboot: False -2020-03-04 12:19:59,296 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:33,990 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('openlp', OrderedDict([('2.4.6', OrderedDict([('full_name', 'OpenLP 2.4.6'), ('installer', 'https://get.openlp.org/2.4.6/OpenLP-2.4.6-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'OpenLP 2.2.1'), ('installer', 'https://get.openlp.org/2.2.1/OpenLP-2.2.1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\OpenLP\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,296 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,296 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,296 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,296 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls -2020-03-04 12:19:59,309 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,309 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,309 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: +2020-03-06 10:22:33,990 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openlp.sls' using 'yaml' renderer: 0.015795469284057617 +2020-03-06 10:22:33,990 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:33,990 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:33,990 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls +2020-03-06 10:22:33,990 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,006 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'jinja' renderer: 0.015645980834960938 +2020-03-06 10:22:34,006 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls: openoffice: '4.1.2': full_name: 'OpenOffice 4.1.2' @@ -17872,15 +17738,15 @@ openoffice: # 'fi', 'fr', 'da', 'de', 'bg', 'ast' # -2020-03-04 12:19:59,309 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,006 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('openoffice', OrderedDict([('4.1.2', OrderedDict([('full_name', 'OpenOffice 4.1.2'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.2/binaries/en-US/Apache_OpenOffice_4.1.2_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {E6AD67BB-1C33-4AB3-A387-E0D48137AB70} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.1.1', OrderedDict([('full_name', 'OpenOffice 4.1.1'), ('installer', 'https://downloads.sourceforge.net/project/openofficeorg.mirror/4.1.1/binaries/en-US/Apache_OpenOffice_4.1.1_Win_x86_install_en-US.exe'), ('install_flags', '/S'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9395F41D-0F80-432E-9A59-B8E477E7E163} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,309 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,309 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,309 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,309 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls -2020-03-04 12:19:59,309 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,325 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.015830278396606445 -2020-03-04 12:19:59,325 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: +2020-03-06 10:22:34,006 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openoffice.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,006 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,006 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,021 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls +2020-03-06 10:22:34,021 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,038 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'jinja' renderer: 0.01623368263244629 +2020-03-06 10:22:34,038 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18052,15 +17918,15 @@ openvpn: # /SELECTLZODLLS=1 - dependencies - LZO compressor DLL's # /SELECT_PKCS11DLLS=1 - dependencies - PCKS#11 DLL's -2020-03-04 12:19:59,338 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('openvpn', OrderedDict([('2.4.7-I607-Win7', OrderedDict([('full_name', 'OpenVPN 2.4.7-I607-Win7 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.7-I607-Win7.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6-I602', OrderedDict([('full_name', 'OpenVPN 2.4.6-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.6-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5-I601', OrderedDict([('full_name', 'OpenVPN 2.4.5-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.5-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4-I601', OrderedDict([('full_name', 'OpenVPN 2.4.4-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.4-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I602', OrderedDict([('full_name', 'OpenVPN 2.4.3-I602 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I602.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3-I601', OrderedDict([('full_name', 'OpenVPN 2.4.3-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.4.3-I601.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.17-I601', OrderedDict([('full_name', 'OpenVPN 2.3.17-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.17-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.12-I601', OrderedDict([('full_name', 'OpenVPN 2.3.12-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.12-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.11-I601', OrderedDict([('full_name', 'OpenVPN 2.3.11-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.11-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.10-I603', OrderedDict([('full_name', 'OpenVPN 2.3.10-I603 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.10-I603-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.8-I601', OrderedDict([('full_name', 'OpenVPN 2.3.8-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.8-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.3.6-I601', OrderedDict([('full_name', 'OpenVPN 2.3.6-I601 '), ('installer', 'https://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe'), ('install_flags', '/S /SELECT_OPENSSL_UTILITIES=1 /SELECT_EASYRSA=1 /SELECTSHORTCUTS=1 /SELECTOPENVPN=1 /SELECTASSOCIATIONS=1 /SELECTOPENVPNGUI=1 /SELECTPATH=1'), ('uninstaller', '%ProgramFiles%\\OpenVPN\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,338 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.013300895690917969 -2020-03-04 12:19:59,338 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,338 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,338 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls -2020-03-04 12:19:59,351 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,351 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,351 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: +2020-03-06 10:22:34,038 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\openvpn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,038 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,053 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,053 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls +2020-03-06 10:22:34,053 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,069 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'jinja' renderer: 0.01679372787475586 +2020-03-06 10:22:34,069 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls: # Performant endpoint visibility https://osquery.io/ @@ -18113,15 +17979,15 @@ osquery: reboot: False -2020-03-04 12:19:59,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.3.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.6', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('3.2.4', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-3.2.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('2.11.2', OrderedDict([('full_name', 'osquery'), ('installer', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://osquery-packages.s3.amazonaws.com/windows/osquery-2.11.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:19:59,351 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,351 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,366 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,366 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls -2020-03-04 12:19:59,366 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,366 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,366 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: +2020-03-06 10:22:34,069 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\osquery.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,069 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,084 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,084 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls +2020-03-06 10:22:34,084 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,084 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,101 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls: # just 32-bit x86 installer available @@ -18135,9 +18001,9 @@ OrderedDict([('osquery', OrderedDict([('3.3.2', OrderedDict([('full_name', 'osqu ossec-agent: - '3.0.0': - full_name: 'OSSEC HIDS 3.0.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' + '2.9.0': + full_name: 'OSSEC HIDS 2.9.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18147,9 +18013,9 @@ ossec-agent: - '2.9.4': - full_name: 'OSSEC HIDS 2.9.4' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' + '2.9.2': + full_name: 'OSSEC HIDS 2.9.2' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18159,9 +18025,9 @@ ossec-agent: - '3.1.0': - full_name: 'OSSEC HIDS 3.1.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' + '3.0.0': + full_name: 'OSSEC HIDS 3.0.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18171,9 +18037,9 @@ ossec-agent: - '3.0.1': - full_name: 'OSSEC HIDS 3.0.1' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' + '2.9.4': + full_name: 'OSSEC HIDS 2.9.4' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18195,9 +18061,9 @@ ossec-agent: - '2.9.2': - full_name: 'OSSEC HIDS 2.9.2' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe' + '3.1.0': + full_name: 'OSSEC HIDS 3.1.0' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18207,9 +18073,9 @@ ossec-agent: - '2.9.3': - full_name: 'OSSEC HIDS 2.9.3' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' + '3.0.1': + full_name: 'OSSEC HIDS 3.0.1' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18219,9 +18085,9 @@ ossec-agent: - '2.9.0': - full_name: 'OSSEC HIDS 2.9.0' - installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe' + '2.9.3': + full_name: 'OSSEC HIDS 2.9.3' + installer: 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe' install_flags: '/S' uninstaller: '%ProgramFiles(x86)%\ossec-agent\uninstall.exe' uninstall_flags: '/S' @@ -18231,15 +18097,15 @@ ossec-agent: -2020-03-04 12:19:59,382 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('ossec-agent', OrderedDict([('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,382 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,382 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,382 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,382 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls -2020-03-04 12:19:59,382 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,396 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.014652490615844727 -2020-03-04 12:19:59,396 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: +2020-03-06 10:22:34,101 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('ossec-agent', OrderedDict([('2.9.0', OrderedDict([('full_name', 'OSSEC HIDS 2.9.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.0-2017.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.2', OrderedDict([('full_name', 'OSSEC HIDS 2.9.2'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.2-2760.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'OSSEC HIDS 3.0.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.0-5609.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.4', OrderedDict([('full_name', 'OSSEC HIDS 2.9.4'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.4-5177.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.2.0', OrderedDict([('full_name', 'OSSEC HIDS 3.2.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.2.0-6132.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.1.0', OrderedDict([('full_name', 'OSSEC HIDS 3.1.0'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.1.0-5732.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'OSSEC HIDS 3.0.1'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-3.0.1-5667.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.3', OrderedDict([('full_name', 'OSSEC HIDS 2.9.3'), ('installer', 'https://updates.atomicorp.com/channels/atomic/windows/ossec-agent-win32-2.9.3-4466.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ossec-agent\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:22:34,101 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ossec-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,101 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,101 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,115 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls +2020-03-06 10:22:34,115 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,115 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,115 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls: owncloud: @@ -18296,15 +18162,15 @@ owncloud: reboot: False -2020-03-04 12:19:59,396 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,115 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('owncloud', OrderedDict([('2.2.4.6408', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.4.6408-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2.6192', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.2.6192-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1.6146', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.1.6146-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.6076', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.2.0.6076-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1.5837', OrderedDict([('full_name', 'ownCloud'), ('installer', 'https://download.owncloud.com/desktop/stable/ownCloud-2.1.1.5837-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\ownCloud\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,396 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,396 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,396 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,396 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls -2020-03-04 12:19:59,414 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,414 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,414 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: +2020-03-06 10:22:34,132 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\owncloud.sls' using 'yaml' renderer: 0.016625165939331055 +2020-03-06 10:22:34,132 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,132 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,132 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls +2020-03-06 10:22:34,147 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,147 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,147 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls: pandoc: '1.17.0.2': full_name: 'Pandoc 1.17.0.2' @@ -18316,15 +18182,15 @@ pandoc: locale: en_US reboot: False -2020-03-04 12:19:59,414 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,147 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pandoc', OrderedDict([('1.17.0.2', OrderedDict([('full_name', 'Pandoc 1.17.0.2'), ('installer', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,414 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,428 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,428 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,428 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls -2020-03-04 12:19:59,428 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,428 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,444 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: +2020-03-06 10:22:34,147 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pandoc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,147 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,162 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,162 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls +2020-03-06 10:22:34,162 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,178 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'jinja' renderer: 0.015538454055786133 +2020-03-06 10:22:34,178 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls: parallels-client-15: '15.0.3869': @@ -18340,15 +18206,15 @@ parallels-client-15: # The latest RAS clients can be downloaded for FREE from: # https://www.parallels.com/uk/products/ras/download/links/ -2020-03-04 12:19:59,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,178 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('parallels-client-15', OrderedDict([('15.0.3869', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('uninstaller', 'https://download.parallels.com/ras/v15/15.0.5.3869/RASClient-x64-15.0.3869.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,444 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,444 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,444 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,444 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls -2020-03-04 12:19:59,444 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,461 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.017176389694213867 -2020-03-04 12:19:59,461 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: +2020-03-06 10:22:34,178 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\parallels-client-15.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,178 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,178 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,178 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls +2020-03-06 10:22:34,194 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,194 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,194 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -18379,15 +18245,15 @@ pass4win: locale: en_US reboot: False -2020-03-04 12:19:59,461 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pass4win', OrderedDict([('1.2.3.7', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.3/Pass4Win-Setup-v1.2.3.7-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.1.9', OrderedDict([('full_name', 'Pass4Win - Windows version of Pass (http://www.passwordstore.org/) in the sense that the store (password structure) is and should be exactly the same between the two programs.'), ('installer', 'https://github.com/mbos/Pass4Win/releases/download/version-1.2.1/Pass4Win-Setup-v1.2.1.9-x64.exe'), ('uninstaller', '"{ PROGRAM_FILES }\\Pass4Win\\uninstall.exe"'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,461 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,461 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,461 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,461 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls -2020-03-04 12:19:59,475 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,475 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,475 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: +2020-03-06 10:22:34,194 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pass4win.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,209 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,209 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,209 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls +2020-03-06 10:22:34,209 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,209 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,209 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls: passware-kit-agent: '13.1.7657': full_name: 'Passware Kit Agent (64-bit)' @@ -18399,15 +18265,15 @@ passware-kit-agent: locale: en_US reboot: False -2020-03-04 12:19:59,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('passware-kit-agent', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Agent (64-bit)'), ('installer', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://www.lostpassword.com/downloads/passware-kit-agent-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,475 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,475 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,475 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,475 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls -2020-03-04 12:19:59,490 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,490 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.015081644058227539 -2020-03-04 12:19:59,490 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: +2020-03-06 10:22:34,225 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-agent.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,225 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,225 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,225 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls +2020-03-06 10:22:34,225 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,225 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,241 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls: passware-kit-forensic: '13.1.7657': full_name: 'Passware Kit Forensic (64-bit)' @@ -18419,15 +18285,15 @@ passware-kit-forensic: locale: en_US reboot: False -2020-03-04 12:19:59,490 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,241 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('passware-kit-forensic', OrderedDict([('13.1.7657', OrderedDict([('full_name', 'Passware Kit Forensic (64-bit)'), ('installer', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'salt://win/repo-ng/passware-kit-forensic-13.1.7657/passware-kit-forensic-64bit.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,490 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,490 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,490 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,490 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls -2020-03-04 12:19:59,490 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,506 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.016114473342895508 -2020-03-04 12:19:59,506 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: +2020-03-06 10:22:34,241 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\passware-kit-forensic.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,241 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,241 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,241 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls +2020-03-06 10:22:34,241 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,256 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'jinja' renderer: 0.01532435417175293 +2020-03-06 10:22:34,256 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls: # Source: https://patchmypc.net/ patchmypc-free: '3.0.1.1': @@ -18446,15 +18312,15 @@ patchmypc-free: locale: en_US reboot: False -2020-03-04 12:19:59,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,256 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('patchmypc-free', OrderedDict([('3.0.1.1', OrderedDict([('full_name', 'PatchMyPC'), ('installer', 'https://patchmypc.net/freeupdater/PatchMyPC.exe'), ('install_flags', '\' & cmd /c taskkill /F /IM PatchMyPC.exe &\nxcopy /q /c /r /y "c:\\salt\\var\\cache\\salt\\minion\\extrn_files\\base\\patchmypc.net\\freeupdater\\PatchMyPC.exe" "%SystemRoot%" &\nexit 0\'\n'), ('uninstaller', 'cmd'), ('uninstall_flags', '\'/c taskkill /F /IM PatchMyPC.exe &\ndel /q /f "%SystemRoot%"\\PatchMyPC.exe &\nexit 0\'\n'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,506 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,506 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,506 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,506 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls -2020-03-04 12:19:59,506 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,522 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.015630006790161133 -2020-03-04 12:19:59,522 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: +2020-03-06 10:22:34,256 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\patchmypc-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,256 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,256 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,256 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls +2020-03-06 10:22:34,272 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,272 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,272 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls: pdf24creator: '8.8.2': @@ -18550,15 +18416,15 @@ pdf24creator: # Source: https://en.pdf24.org/ # Packagin info Source: https://chocolatey.org/packages/pdf24 -2020-03-04 12:19:59,522 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pdf24creator', OrderedDict([('8.8.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.8.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.2', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.7.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.7.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.1', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.6.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('8.5.0', OrderedDict([('full_name', 'PDF24 Creator'), ('installer', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('install_flags', 'DESKTOPICONS=No FAXPRINTER=No /norestart /qn'), ('uninstaller', 'https://en.pdf24.org/products/pdf-creator/download/pdf24-creator-8.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,522 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,522 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,522 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,538 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls -2020-03-04 12:19:59,538 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,538 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,538 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: +2020-03-06 10:22:34,288 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdf24creator.sls' using 'yaml' renderer: 0.016333580017089844 +2020-03-06 10:22:34,288 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,288 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,288 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls +2020-03-06 10:22:34,303 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,303 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,303 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls: # just 32-bit x86 installer available @@ -18574,15 +18440,15 @@ pdfcreator: locale: en_US reboot: False -2020-03-04 12:19:59,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,303 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pdfcreator', OrderedDict([('2.5.0', OrderedDict([('full_name', 'PDFCreator'), ('installer', 'http://white.download.pdfforge.org/pdfcreator/2.5.0/PDFCreator-2_5_0-Setup.exe'), ('install_flags', '/VERYSILENT /NORESTART /DontUseYahooSearch /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\PDFCreator\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,538 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,538 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,538 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,553 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls -2020-03-04 12:19:59,553 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,553 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,553 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: +2020-03-06 10:22:34,303 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pdfcreator.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,321 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,321 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,321 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls +2020-03-06 10:22:34,335 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,335 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,335 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls: peazip: '6.0.0': @@ -18596,15 +18462,15 @@ peazip: locale: en_US reboot: False -2020-03-04 12:19:59,553 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('peazip', OrderedDict([('6.0.0', OrderedDict([('full_name', 'PeaZip 6.0.0 (WIN64)'), ('installer', 'https://downloads.sourceforge.net/projects/peazip/files/6.0.0/peazip-6.0.0.WIN64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles%\\PeaZip\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,568 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.015180349349975586 -2020-03-04 12:19:59,568 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,568 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,568 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls -2020-03-04 12:19:59,568 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,584 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.016100645065307617 -2020-03-04 12:19:59,584 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: +2020-03-06 10:22:34,335 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\peazip.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,351 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,351 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,351 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls +2020-03-06 10:22:34,351 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,351 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,368 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls: @@ -18648,15 +18514,15 @@ pgadmin4: reboot: False -2020-03-04 12:19:59,584 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,368 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pgadmin4', OrderedDict([('2.1', OrderedDict([('full_name', 'pgAdmin 4 version 2.1'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.1/windows/pgadmin4-2.1-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0', OrderedDict([('full_name', 'pgAdmin 4 version 2.0'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/windows/pgadmin4-2.0-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v2\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6', OrderedDict([('full_name', 'pgAdmin 4 version 1.6'), ('installer', 'https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v1.6/windows/pgadmin4-1.6-x86.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\pgAdmin 4\\v1\\unins000.exe'), ('uninstall_flags', '/verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,584 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,584 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,584 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,584 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls -2020-03-04 12:19:59,584 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,600 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.015114545822143555 -2020-03-04 12:19:59,600 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: +2020-03-06 10:22:34,368 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgadmin4.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,368 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,368 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,381 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls +2020-03-06 10:22:34,381 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,381 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,381 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls: pgina: '3.1.8.0': full_name: 'pGina v3.1.8.0' @@ -18666,15 +18532,15 @@ pgina: locale: en_US reboot: False -2020-03-04 12:19:59,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,381 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pgina', OrderedDict([('3.1.8.0', OrderedDict([('full_name', 'pGina v3.1.8.0'), ('installer', 'https://github.com/pgina/pgina/releases/download/v3.1.8.0/pGinaSetup-3.1.8.0.exe'), ('install_flags', '/silent '), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,600 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,600 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,600 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,600 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls -2020-03-04 12:19:59,600 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,617 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.01707315444946289 -2020-03-04 12:19:59,617 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: +2020-03-06 10:22:34,381 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pgina.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,397 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,397 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,397 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls +2020-03-06 10:22:34,413 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,413 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,413 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls: # just 32-bit x86 installer available @@ -18693,15 +18559,15 @@ pidgin: reboot: False -2020-03-04 12:19:59,617 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pidgin', OrderedDict([('2.12.0', OrderedDict([('full_name', 'Pidgin'), ('installer', 'https://downloads.sourceforge.net/project/pidgin/Pidgin/2.12.0/pidgin-2.12.0-offline.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Pidgin\\pidgin-uninst.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,617 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,617 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,617 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,617 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls -2020-03-04 12:19:59,617 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,632 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.015185117721557617 -2020-03-04 12:19:59,632 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: +2020-03-06 10:22:34,429 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pidgin.sls' using 'yaml' renderer: 0.01562643051147461 +2020-03-06 10:22:34,429 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,429 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,429 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls +2020-03-06 10:22:34,429 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,444 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'jinja' renderer: 0.015158653259277344 +2020-03-06 10:22:34,444 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls: # Note: because version with one dot (e.g. 9.5) possibly be interpreted as a float number, use quotes like this: # salt mid pkg.install postgresql version='"9.6"' @@ -18746,15 +18612,15 @@ postgresql: reboot: False -2020-03-04 12:19:59,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('postgresql', OrderedDict([('9.6', OrderedDict([('full_name', 'PostgreSQL 9.6 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.6.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.6\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.5', OrderedDict([('full_name', 'PostgreSQL 9.5 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.5.0-1-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.5\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.4', OrderedDict([('full_name', 'PostgreSQL 9.4 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.4.5-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.4\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)])), ('9.3', OrderedDict([('full_name', 'PostgreSQL 9.3 '), ('installer', 'https://get.enterprisedb.com/postgresql/postgresql-9.3.10-3-windows-x64.exe'), ('install_flags', ' --unattendedmodeui minimal --mode unattended --superpassword postgres'), ('uninstaller', '%ProgramFiles%\\PostgreSQL\\9.3\\uninstall-postgresql.exe'), ('uninstall_flags', ' --mode unattended'), ('locale', 'en_US'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:19:59,632 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,632 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,632 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,647 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls -2020-03-04 12:19:59,647 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,647 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,647 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: +2020-03-06 10:22:34,444 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\postgresql.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,461 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,461 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,461 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls +2020-03-06 10:22:34,461 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,475 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'jinja' renderer: 0.013918638229370117 +2020-03-06 10:22:34,475 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls: ### NOTE: You must accept the PowerBI Desktop EULA by setting the ### Pillar key `powerbi:desktop:accept_eula` to `True` in order to ### install this package. You can find a copy of the EULA at @@ -18776,15 +18642,15 @@ powerbi-desktop: msiexec: True reboot: False -2020-03-04 12:19:59,647 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('powerbi-desktop', OrderedDict([('2.59.5135.421', OrderedDict([('full_name', 'Microsoft PowerBI Desktop (x64)'), ('installer', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('install_flags', '/qn /norestart ACCEPT_EULA=0'), ('uninstaller', 'https://download.microsoft.com/download/9/B/A/9BAEFFEF-1A68-4102-8CDF-5D28BFFE6A61/PBIDesktop_x64.msi'), ('uninstall_flags', '/qn /norestart ACCEPT_EULA=0'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:19:59,647 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,663 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,663 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,663 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls -2020-03-04 12:19:59,663 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,663 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,663 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: +2020-03-06 10:22:34,475 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powerbi-desktop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,475 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,491 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,491 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls +2020-03-06 10:22:34,491 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,491 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,509 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls: #PowerShell Core https://github.com/PowerShell/PowerShell @@ -18847,15 +18713,15 @@ powershell-core: reboot: False -2020-03-04 12:19:59,678 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,509 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('powershell-core', OrderedDict([('6.1.3.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.2.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.2/PowerShell-6.1.2-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.1.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.1/PowerShell-6.1.1-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.1.0.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)])), ('6.0.5.0', OrderedDict([('full_name', 'PowerShell 6-x64'), ('installer', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('uninstaller', 'https://github.com/PowerShell/PowerShell/releases/download/v6.0.5/PowerShell-6.0.5-win-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:19:59,678 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,678 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,678 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,678 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls -2020-03-04 12:19:59,678 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,695 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.01660442352294922 -2020-03-04 12:19:59,695 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: +2020-03-06 10:22:34,509 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\powershell-core.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,522 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls +2020-03-06 10:22:34,522 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,522 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,522 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls: # Installs the WMI Exporter used by prometheus to scrape metrics from windows based systems # WMI Exporter: https://github.com/martinlindhe/wmi_exporter # Prometheus Monitoring: https://prometheus.io/ @@ -19055,15 +18921,15 @@ prometheus-wmi-exporter: reboot: False -2020-03-04 12:19:59,695 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('prometheus-wmi-exporter', OrderedDict([('0.9.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.9.0/wmi_exporter-0.9.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.3/wmi_exporter-0.8.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.1/wmi_exporter-0.8.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.8.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.8.0/wmi_exporter-0.8.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.7.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.7.0/wmi_exporter-0.7.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.6.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.6.0/wmi_exporter-0.6.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.5.0/wmi_exporter-0.5.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.4', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.4/wmi_exporter-0.4.4-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.3/wmi_exporter-0.4.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.2/wmi_exporter-0.4.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.1/wmi_exporter-0.4.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.4.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.4.0/wmi_exporter-0.4.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.3', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.3/wmi_exporter-0.3.3-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.2', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.2/wmi_exporter-0.3.2-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.1', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.1/wmi_exporter-0.3.1-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.3.0', OrderedDict([('full_name', 'WMI Exporter'), ('installer', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('uninstaller', 'https://github.com/martinlindhe/wmi_exporter/releases/download/v0.3.0/wmi_exporter-0.3.0-amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,695 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,709 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,709 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,709 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls -2020-03-04 12:19:59,709 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,709 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,726 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: +2020-03-06 10:22:34,538 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\prometheus-wmi-exporter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,554 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,554 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,554 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls +2020-03-06 10:22:34,569 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,569 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,585 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls: putty: '0.73.0.0': @@ -19189,15 +19055,15 @@ putty: reboot: False -2020-03-04 12:19:59,726 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('putty', OrderedDict([('0.73.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.73/w64/putty-64bit-0.73-installer.msi'), ('full_name', 'PuTTY release 0.73 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.72.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.72/w64/putty-64bit-0.72-installer.msi'), ('full_name', 'PuTTY release 0.72 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.71.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.71/w64/putty-64bit-0.71-installer.msi'), ('full_name', 'PuTTY release 0.71 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.70.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.70/w64/putty-64bit-0.70-installer.msi'), ('full_name', 'PuTTY release 0.70 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.69.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.69/w64/putty-64bit-0.69-installer.msi'), ('full_name', 'PuTTY release 0.69 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.68.0.0', OrderedDict([('installer', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('uninstaller', 'https://the.earth.li/~sgtatham/putty/0.68/w64/putty-64bit-0.68-installer.msi'), ('full_name', 'PuTTY release 0.68 (64-bit)'), ('install_flags', '/qn'), ('uninstall_flags', '/qn'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.67', OrderedDict([('full_name', 'PuTTY release 0.67'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.67/x86/putty-0.67-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.66', OrderedDict([('full_name', 'PuTTY release 0.66'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.66/x86/putty-0.66-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.65', OrderedDict([('full_name', 'PuTTY release 0.65'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.65/x86/putty-0.65-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.64', OrderedDict([('full_name', 'PuTTY release 0.64'), ('installer', 'https://the.earth.li/~sgtatham/putty/0.64/x86/putty-0.64-installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\PuTTY\\unins000.exe'), ('uninstall_flags', '/SP- /silent /verysilent /suppressmsgboxes /norestart /UNINSTMODE'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,726 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,726 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,726 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,726 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls -2020-03-04 12:19:59,742 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,742 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,742 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: +2020-03-06 10:22:34,585 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\putty.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,601 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,601 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,601 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls +2020-03-06 10:22:34,616 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,632 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'jinja' renderer: 0.01622176170349121 +2020-03-06 10:22:34,632 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls: python2_x64: @@ -19409,15 +19275,15 @@ python2_x64: reboot: False -2020-03-04 12:19:59,755 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('python2_x64', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16 (64-bit)'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 ADDLOCAL=Extensions /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,756 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.014651775360107422 -2020-03-04 12:19:59,756 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,756 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,756 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls -2020-03-04 12:19:59,756 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,772 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.015664100646972656 -2020-03-04 12:19:59,772 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: +2020-03-06 10:22:34,632 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,648 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,648 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,648 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls +2020-03-06 10:22:34,663 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,663 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,663 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls: python2_x86: @@ -19629,15 +19495,15 @@ python2_x86: reboot: False -2020-03-04 12:19:59,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('python2_x86', OrderedDict([('2.7.1150', OrderedDict([('full_name', 'Python 2.7.1'), ('installer', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.1/python-2.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.2150', OrderedDict([('full_name', 'Python 2.7.2'), ('installer', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.2/python-2.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.3150', OrderedDict([('full_name', 'Python 2.7.3'), ('installer', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.4150', OrderedDict([('full_name', 'Python 2.7.4'), ('installer', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.4/python-2.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.5150', OrderedDict([('full_name', 'Python 2.7.5'), ('installer', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.5/python-2.7.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.6150', OrderedDict([('full_name', 'Python 2.7.6'), ('installer', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.6/python-2.7.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.7150', OrderedDict([('full_name', 'Python 2.7.7'), ('installer', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.8150', OrderedDict([('full_name', 'Python 2.7.8'), ('installer', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.8/python-2.7.8.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.9150', OrderedDict([('full_name', 'Python 2.7.9'), ('installer', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10150', OrderedDict([('full_name', 'Python 2.7.10'), ('installer', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.11150', OrderedDict([('full_name', 'Python 2.7.11'), ('installer', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.12150', OrderedDict([('full_name', 'Python 2.7.12'), ('installer', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.13150', OrderedDict([('full_name', 'Python 2.7.13'), ('installer', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.14150', OrderedDict([('full_name', 'Python 2.7.14'), ('installer', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.15150', OrderedDict([('full_name', 'Python 2.7.15'), ('installer', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.16150', OrderedDict([('full_name', 'Python 2.7.16'), ('installer', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('install_flags', '/qn /norestart ALLUSERS=1'), ('uninstaller', 'https://www.python.org/ftp/python/2.7.16/python-2.7.16.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,772 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,787 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,787 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,787 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls -2020-03-04 12:19:59,787 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,803 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.015631675720214844 -2020-03-04 12:19:59,803 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: +2020-03-06 10:22:34,680 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python2_x86.sls' using 'yaml' renderer: 0.0169374942779541 +2020-03-06 10:22:34,680 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,694 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,694 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls +2020-03-06 10:22:34,709 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,734 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'jinja' renderer: 0.024510860443115234 +2020-03-06 10:22:34,734 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls: python3_x64: @@ -19774,15 +19640,15 @@ python3_x64: reboot: False -2020-03-04 12:19:59,803 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('python3_x64', OrderedDict([('3.8.150.0', OrderedDict([('full_name', 'Python 3.8.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1-amd64.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 Core Interpreter (64-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.amd64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,803 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,819 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,819 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,819 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls -2020-03-04 12:19:59,819 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,835 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.01574850082397461 -2020-03-04 12:19:59,835 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: +2020-03-06 10:22:34,835 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x64.sls' using 'yaml' renderer: 0.09317302703857422 +2020-03-06 10:22:34,835 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,835 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,850 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls +2020-03-06 10:22:34,850 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,850 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,866 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls: python3_x86: @@ -19909,15 +19775,15 @@ python3_x86: reboot: False -2020-03-04 12:19:59,835 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('python3_x86', OrderedDict([('3.7.4150.0', OrderedDict([('full_name', 'Python 3.7.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.4/python-3.7.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.3150.0', OrderedDict([('full_name', 'Python 3.7.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.3/python-3.7.3.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.150.0', OrderedDict([('full_name', 'Python 3.7.0 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.8150.0', OrderedDict([('full_name', 'Python 3.6.8 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.8/python-3.6.8.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.6.6150.0', OrderedDict([('full_name', 'Python 3.6.6 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.6.6/python-3.6.6.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.4150.0', OrderedDict([('full_name', 'Python 3.5.4 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.4/python-3.5.4.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.2150.0', OrderedDict([('full_name', 'Python 3.5.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.2/python-3.5.2.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.1150.0', OrderedDict([('full_name', 'Python 3.5.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('install_flags', '/quiet InstallAllUsers=1'), ('uninstaller', 'https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe'), ('uninstall_flags', '/quiet /uninstall'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.4.3150', OrderedDict([('full_name', 'Python 3.4.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.3/python-3.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.2150', OrderedDict([('full_name', 'Python 3.4.2 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.2/python-3.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.4.1150', OrderedDict([('full_name', 'Python 3.4.1 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.4.1/python-3.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3150', OrderedDict([('full_name', 'Python 3.3.3 (32-bit)'), ('installer', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://www.python.org/ftp/python/3.3.3/python-3.3.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,835 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,835 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,850 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,850 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls -2020-03-04 12:19:59,850 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,850 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,850 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: +2020-03-06 10:22:34,866 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\python3_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,882 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,882 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,882 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls +2020-03-06 10:22:34,882 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,882 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,898 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -19934,15 +19800,15 @@ qemu: locale: en_US reboot: False -2020-03-04 12:19:59,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,898 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('qemu', OrderedDict([('2018.05.19', OrderedDict([('full_name', 'QEMU'), ('installer', 'https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180519.exe'), ('uninstaller', '%PROGRAMFILES%\\qemu\\qemu-uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,850 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,866 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,866 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,866 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls -2020-03-04 12:19:59,866 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,881 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.015150070190429688 -2020-03-04 12:19:59,881 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: +2020-03-06 10:22:34,898 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\qemu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,898 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,898 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,913 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls +2020-03-06 10:22:34,913 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,929 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'jinja' renderer: 0.015981435775756836 +2020-03-06 10:22:34,929 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls: @@ -19958,15 +19824,15 @@ queueexplorerpro: locale: en_US reboot: False -2020-03-04 12:19:59,881 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('queueexplorerpro', OrderedDict([('4.1.5', OrderedDict([('full_name', 'QueueExplorer Professional 4.1.5'), ('installer', 'https://www.cogin.com/download/mq/download.php?file=QueueExplorerPro4.1.5.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\QueueExplorer Professional\\unins000.exe'), ('uninstall_flags', '/SILENT'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,881 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,881 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,881 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,881 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls -2020-03-04 12:19:59,881 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,897 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.015601158142089844 -2020-03-04 12:19:59,897 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: +2020-03-06 10:22:34,929 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\queueexplorerpro.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,929 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,945 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,945 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls +2020-03-06 10:22:34,945 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,966 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'jinja' renderer: 0.020907878875732422 +2020-03-06 10:22:34,966 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls: quicktime: '7.79.80.95': full_name: 'QuickTime 7' @@ -19991,15 +19857,15 @@ quicktime: # Apple Application Support (64-bit) v. 4.1.2 {691F30EB-9009-475A-B8A9-E1BF39598FD5} # QuickTime 7 v. 7.79.80.95 {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} -2020-03-04 12:19:59,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,966 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('quicktime', OrderedDict([('7.79.80.95', OrderedDict([('full_name', 'QuickTime 7'), ('installer', 'salt://win/repo-ng/quicktime/QuickTimeInstaller.exe'), ('uninstall_flags', "'/qn /x {FFD1F7F1-1AC9-4BC4-A908-0686D635ABAF} /norestart &\nmsiexec.exe /qn /x {7FA9ECCF-A2DE-4DA1-BFF3-81260DBDA68F} /norestart &\nmsiexec.exe /qn /x {691F30EB-9009-475A-B8A9-E1BF39598FD5} /norestart &\nmsiexec.exe /qn /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /norestart &\nexit 0'\n"), ('install_flags', '/quiet /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,897 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,897 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,897 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,897 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls -2020-03-04 12:19:59,913 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,913 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,913 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: +2020-03-06 10:22:34,966 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\quicktime.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,976 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,976 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:34,976 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls +2020-03-06 10:22:34,976 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:34,976 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:34,992 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls: rabbitmq: @@ -20024,15 +19890,15 @@ rabbitmq: reboot: False -2020-03-04 12:19:59,913 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:34,992 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rabbitmq', OrderedDict([('3.6.9', OrderedDict([('full_name', 'RabbitMQ Server 3.6.9'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/rabbitmq_v3_6_9/rabbitmq-server-3.6.9.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.7.7', OrderedDict([('full_name', 'RabbitMQ Server 3.7.7'), ('installer', 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.7/rabbitmq-server-3.7.7.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files\\RabbitMQ Server\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,913 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,913 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,928 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,928 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls -2020-03-04 12:19:59,928 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,928 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,928 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: +2020-03-06 10:22:34,992 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rabbitmq.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:34,992 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:34,992 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,008 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls +2020-03-06 10:22:35,008 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,008 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,025 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls: rakudo-star_x86: '1.0.0': full_name: 'Rakudo Star 2016.01' @@ -20044,15 +19910,15 @@ rakudo-star_x86: locale: en_US reboot: False -2020-03-04 12:19:59,928 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,025 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rakudo-star_x86', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.01'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.01-x86%20(no%20JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,928 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,945 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,945 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,945 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls -2020-03-04 12:19:59,945 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,945 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,945 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: +2020-03-06 10:22:35,025 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star-no-jit_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,025 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,038 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,038 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls +2020-03-06 10:22:35,038 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,038 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,038 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls: rakudo-star_x64: '1.0.0': full_name: 'Rakudo Star 2016.04' @@ -20064,15 +19930,15 @@ rakudo-star_x64: locale: en_US reboot: False -2020-03-04 12:19:59,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rakudo-star_x64', OrderedDict([('1.0.0', OrderedDict([('full_name', 'Rakudo Star 2016.04'), ('installer', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://rakudo.org/downloads/star/rakudo-star-2016.04-x86_64%20(JIT).msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,945 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,959 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,959 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,959 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls -2020-03-04 12:19:59,959 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,959 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,959 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: +2020-03-06 10:22:35,054 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rakudo-star_x64.sls' using 'yaml' renderer: 0.01521158218383789 +2020-03-06 10:22:35,054 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,054 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,054 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls +2020-03-06 10:22:35,070 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,070 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,070 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls: rasclient: '16': @@ -20089,15 +19955,15 @@ rasclient: reboot: False -2020-03-04 12:19:59,976 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,070 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rasclient', OrderedDict([('16', OrderedDict([('full_name', 'Parallels Client-64 bit'), ('installer', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('uninstaller', 'https://download.parallels.com/ras/v16/16.2.1.19160/RASClient-x64-16.2.19160.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,976 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,976 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,976 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,976 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls -2020-03-04 12:19:59,976 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:19:59,976 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:19:59,991 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: +2020-03-06 10:22:35,085 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rasclient.sls' using 'yaml' renderer: 0.015634536743164062 +2020-03-06 10:22:35,085 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,085 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,085 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls +2020-03-06 10:22:35,101 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,101 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,101 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls: rdcman: '2.7.14060': full_name: 'Remote Desktop Connection Manager' @@ -20109,15 +19975,15 @@ rdcman: locale: en_US reboot: False -2020-03-04 12:19:59,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,101 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rdcman', OrderedDict([('2.7.14060', OrderedDict([('full_name', 'Remote Desktop Connection Manager'), ('installer', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('install_flags', 'ALLUSERS=1 /quiet /norestart'), ('uninstaller', 'https://download.microsoft.com/download/A/F/0/AF0071F3-B198-4A35-AA90-C68D103BDCCF/rdcman.msi'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:19:59,991 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:19:59,991 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:19:59,991 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:19:59,991 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls -2020-03-04 12:19:59,991 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,007 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.01649022102355957 -2020-03-04 12:20:00,007 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: +2020-03-06 10:22:35,101 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rdcman.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,117 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,117 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,117 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls +2020-03-06 10:22:35,117 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,132 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'jinja' renderer: 0.0156252384185791 +2020-03-06 10:22:35,132 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls: rocketchat: @@ -20213,15 +20079,15 @@ rocketchat: reboot: False -2020-03-04 12:20:00,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rocketchat', OrderedDict([('2.13.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.1/rocketchat-setup-2.13.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.13.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.13.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.13.0/rocketchat-setup-2.13.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.12.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.12.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.12.0/rocketchat-setup-2.12.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.5', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.5'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.5/rocketchat-setup-2.10.5.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.4', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.4'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.4/rocketchat-setup-2.10.4.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.3', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.3'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.3/rocketchat-setup-2.10.3.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.2', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.2'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.2/rocketchat-setup-2.10.2.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.10.1', OrderedDict([('full_name', 'Rocket.Chat+ 2.10.1'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.10.1/rocketchat-setup-2.10.1.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.9.0', OrderedDict([('full_name', 'Rocket.Chat+ 2.9.0'), ('installer', 'https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/2.9.0/rocketchat-setup-2.9.0.exe'), ('install_flags', '/S /allusers'), ('uninstaller', '%ProgramFiles%\\rocketchat\\Uninstall Rocket.Chat+.exe'), ('uninstall_flags', '/S /allusers'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,007 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,007 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,007 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,007 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls -2020-03-04 12:20:00,022 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,022 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,022 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: +2020-03-06 10:22:35,132 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rocketchat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,132 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,148 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,148 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls +2020-03-06 10:22:35,148 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,148 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,163 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls: rubyinstaller_x64: '2.2.3-p173': @@ -20255,15 +20121,15 @@ rubyinstaller_x64: reboot: False -2020-03-04 12:20:00,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,163 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rubyinstaller_x64', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647-x64'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647-x64.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200-x64\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,022 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,022 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,022 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,022 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls -2020-03-04 12:20:00,038 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,038 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,038 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: +2020-03-06 10:22:35,163 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,163 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,163 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,163 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls +2020-03-06 10:22:35,163 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,179 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'jinja' renderer: 0.016065597534179688 +2020-03-06 10:22:35,179 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls: rubyinstaller_x86: '2.2.3-p173': @@ -20307,15 +20173,15 @@ rubyinstaller_x86: reboot: False -2020-03-04 12:20:00,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('rubyinstaller_x86', OrderedDict([('2.2.3-p173', OrderedDict([('full_name', 'Ruby 2.2.3-p173'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.2.3.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby22\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.7-p400', OrderedDict([('full_name', 'Ruby 2.1.7-p400'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.1.7.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby21\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0-p647', OrderedDict([('full_name', 'Ruby 2.0.0-p647'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p647.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby200\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3-p551', OrderedDict([('full_name', 'Ruby 1.9.3-p551'), ('installer', 'http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-1.9.3-p551.exe'), ('install_flags', '/verysilent'), ('uninstaller', 'C:\\Ruby193\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,038 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,038 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,053 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,053 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls -2020-03-04 12:20:00,053 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,053 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,068 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: +2020-03-06 10:22:35,179 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\rubyinstaller_x86.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,195 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,195 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,195 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls +2020-03-06 10:22:35,195 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,212 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'jinja' renderer: 0.016118526458740234 +2020-03-06 10:22:35,212 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -20835,15 +20701,15 @@ salt-minion: -2020-03-04 12:20:00,068 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,227 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('salt-minion', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.10', OrderedDict([('full_name', 'Salt Minion 2016.11.10'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.10-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.9', OrderedDict([('full_name', 'Salt Minion 2016.11.9'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.9-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.8', OrderedDict([('full_name', 'Salt Minion 2016.11.8'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.8-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.7', OrderedDict([('full_name', 'Salt Minion 2016.11.7'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.7-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.6', OrderedDict([('full_name', 'Salt Minion 2016.11.6'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.6-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.5', OrderedDict([('full_name', 'Salt Minion 2016.11.5'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.5-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.4', OrderedDict([('full_name', 'Salt Minion 2016.11.4'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.4-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.3', OrderedDict([('full_name', 'Salt Minion 2016.11.3'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.2', OrderedDict([('full_name', 'Salt Minion 2016.11.2'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.2-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.1', OrderedDict([('full_name', 'Salt Minion 2016.11.1'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.1-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2016.11.0', OrderedDict([('full_name', 'Salt Minion 2016.11.0'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2016.11.0-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:20:00,068 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,068 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,084 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,084 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls -2020-03-04 12:20:00,084 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,084 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,084 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: +2020-03-06 10:22:35,227 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py2.sls' using 'yaml' renderer: 0.014988183975219727 +2020-03-06 10:22:35,227 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,227 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,241 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls +2020-03-06 10:22:35,241 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,241 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,241 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls: # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # This software definition will only work in versions of Salt newer than # 2015.8.2. In verion 2015.8.2 we added the `use_scheduler` option which @@ -21177,15 +21043,15 @@ salt-minion-py3: -2020-03-04 12:20:00,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('salt-minion-py3', OrderedDict([('3000', OrderedDict([('full_name', 'Salt Minion 3000 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-3000-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.3', OrderedDict([('full_name', 'Salt Minion 2019.2.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.2', OrderedDict([('full_name', 'Salt Minion 2019.2.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.1', OrderedDict([('full_name', 'Salt Minion 2019.2.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2019.2.0', OrderedDict([('full_name', 'Salt Minion 2019.2.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2019.2.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.5', OrderedDict([('full_name', 'Salt Minion 2018.3.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.4', OrderedDict([('full_name', 'Salt Minion 2018.3.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.3', OrderedDict([('full_name', 'Salt Minion 2018.3.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.2', OrderedDict([('full_name', 'Salt Minion 2018.3.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.1', OrderedDict([('full_name', 'Salt Minion 2018.3.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2018.3.0', OrderedDict([('full_name', 'Salt Minion 2018.3.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2018.3.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.8', OrderedDict([('full_name', 'Salt Minion 2017.7.8 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.8-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.7', OrderedDict([('full_name', 'Salt Minion 2017.7.7 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.7-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.6', OrderedDict([('full_name', 'Salt Minion 2017.7.6 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.6-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.5', OrderedDict([('full_name', 'Salt Minion 2017.7.5 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.5-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.4', OrderedDict([('full_name', 'Salt Minion 2017.7.4 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.4-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.3', OrderedDict([('full_name', 'Salt Minion 2017.7.3 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.3-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.2', OrderedDict([('full_name', 'Salt Minion 2017.7.2 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.2-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.1', OrderedDict([('full_name', 'Salt Minion 2017.7.1 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.1-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)])), ('2017.7.0', OrderedDict([('full_name', 'Salt Minion 2017.7.0 (Python 3)'), ('installer', 'https://repo.saltstack.com/windows/Salt-Minion-2017.7.0-Py3-AMD64-Setup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\salt\\uninst.exe'), ('uninstall_flags', '/S'), ('refresh', True), ('msiexec', False), ('use_scheduler', True), ('reboot', False)]))]))]) -2020-03-04 12:20:00,100 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.016119718551635742 -2020-03-04 12:20:00,100 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,100 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,116 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls -2020-03-04 12:20:00,116 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,132 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.016069412231445312 -2020-03-04 12:20:00,132 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: +2020-03-06 10:22:35,258 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\salt-minion-py3.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,258 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,273 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,273 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls +2020-03-06 10:22:35,273 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,273 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,273 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls: sandboxie: '4.20': @@ -21199,15 +21065,15 @@ sandboxie: locale: en_US reboot: False -2020-03-04 12:20:00,132 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('sandboxie', OrderedDict([('4.20', OrderedDict([('full_name', 'Sandboxie 4.20 (64-bit)'), ('installer', 'http://www.sandboxie.com/attic/SandboxieInstall64-420.exe'), ('uninstaller', 'C:\\Windows\\Installer\\SandboxieInstall64.exe'), ('install_flags', '/S'), ('uninstall_flags', '/remove'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,132 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,132 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,132 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,132 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls -2020-03-04 12:20:00,132 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,132 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,148 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: +2020-03-06 10:22:35,289 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sandboxie.sls' using 'yaml' renderer: 0.015573501586914062 +2020-03-06 10:22:35,289 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,289 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,289 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls +2020-03-06 10:22:35,289 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,305 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'jinja' renderer: 0.01590895652770996 +2020-03-06 10:22:35,305 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls: scaleout: latest: @@ -21221,15 +21087,15 @@ scaleout: locale: en_US reboot: False -2020-03-04 12:20:00,148 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,305 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('scaleout', OrderedDict([('latest', OrderedDict([('full_name', 'ScaleOut StateServer x64 Edition'), ('installer', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('uninstaller', 'https://www.scaleoutsoftware.com/pkg/soss_setup64.msi'), ('install_flags', '/quiet'), ('uninstall_flags', '/quiet'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,148 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,148 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,148 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,148 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls -2020-03-04 12:20:00,148 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,163 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.014629125595092773 -2020-03-04 12:20:00,163 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: +2020-03-06 10:22:35,305 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\scaleout.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,305 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,305 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,305 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls +2020-03-06 10:22:35,321 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,321 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'jinja' renderer: 0.01635146141052246 +2020-03-06 10:22:35,321 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls: # just 32-bit x86 installer available @@ -21245,15 +21111,15 @@ secunia.psi: locale: en_US reboot: False -2020-03-04 12:20:00,163 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('secunia.psi', OrderedDict([('3.0.0.10004', OrderedDict([('full_name', 'Secunia PSI'), ('installer', 'http://secunia.com/PSISetup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Secunia\\PSI\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,163 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,163 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,163 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,163 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls -2020-03-04 12:20:00,163 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,179 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.015622138977050781 -2020-03-04 12:20:00,179 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: +2020-03-06 10:22:35,321 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\secunia.psi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,336 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,336 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,336 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls +2020-03-06 10:22:35,336 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,352 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'jinja' renderer: 0.015905380249023438 +2020-03-06 10:22:35,352 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls: @@ -21323,15 +21189,15 @@ sensu: reboot: False -2020-03-04 12:20:00,179 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,352 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('sensu', OrderedDict([('1.4.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.4.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.0.2', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-1.0.2-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.28.4', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.28.4-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.5', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.5-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.26.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.26.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('0.25.3', OrderedDict([('full_name', 'Sensu'), ('installer', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'http://sensu.global.ssl.fastly.net/msi/2012r2/sensu-0.25.3-1-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,193 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.014718770980834961 -2020-03-04 12:20:00,193 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,193 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,193 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls -2020-03-04 12:20:00,209 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,209 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,209 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: +2020-03-06 10:22:35,352 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sensu.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,368 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,368 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,368 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls +2020-03-06 10:22:35,383 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,383 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,383 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls: sharpdevelop: '5.1.5134': full_name: 'SharpDevelop 5.1 RC' @@ -21370,15 +21236,15 @@ sharpdevelop: locale: en_US reboot: False -2020-03-04 12:20:00,209 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('sharpdevelop', OrderedDict([('5.1.5134', OrderedDict([('full_name', 'SharpDevelop 5.1 RC'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%205.x/5.1%20RC/SharpDevelop_5.1.0.5134_RC_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.9749', OrderedDict([('full_name', 'SharpDevelop 4.4'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%204.x/4.4/SharpDevelop_4.4.2.9749_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.2.6466', OrderedDict([('full_name', 'SharpDevelop 3.2.1'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%203.x/3.2/SharpDevelop_3.2.1.6466_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2648', OrderedDict([('full_name', 'SharpDevelop 2.2'), ('installer', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://downloads.sourceforge.net/project/sharpdevelop/SharpDevelop%202.x/2.2.1/SharpDevelop_2.2.1.2648_Setup.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,209 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,225 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,225 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,241 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls -2020-03-04 12:20:00,241 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,241 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,241 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: +2020-03-06 10:22:35,383 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sharpdevelop.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,383 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,398 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,398 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls +2020-03-06 10:22:35,398 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,422 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'jinja' renderer: 0.02348470687866211 +2020-03-06 10:22:35,422 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls: # just 32-bit x86 installer available @@ -21394,15 +21260,15 @@ skitch: locale: en_US reboot: False -2020-03-04 12:20:00,241 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,422 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('skitch', OrderedDict([('2.3.2.176', OrderedDict([('full_name', 'Skitch'), ('installer', 'https://evernote.s3.amazonaws.com/Skitch/win32/skitchsetup_2.3.2.176.exe'), ('install_flags', '--mode unattended'), ('uninstaller', '%ProgramFiles(x86)%\\Evernote\\Skitch\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,241 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,241 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,257 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,257 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls -2020-03-04 12:20:00,257 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,257 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,257 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: +2020-03-06 10:22:35,422 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skitch.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,429 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,429 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,429 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls +2020-03-06 10:22:35,429 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,429 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,445 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls: skype-msi: '7.41.101': full_name: 'Skypeâ„¢ 7.41' @@ -21438,15 +21304,15 @@ skype-msi: # http://community.skype.com/t5/Windows-archive/Unattended-install/td-p/184628 # you can also check microsite http://skype.techygeekshome.info/ -2020-03-04 12:20:00,257 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,445 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('skype-msi', OrderedDict([('7.41.101', OrderedDict([('full_name', 'Skypeâ„¢ 7.41'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.41.0.101.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.151', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.151.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.40.103', OrderedDict([('full_name', 'Skypeâ„¢ 7.40'), ('installer', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('install_flags', '/qn /norestart STARTSKYPE=FALSE TRANSFORMS=:RemoveDesktopShortcut.mst TRANSFORMS=:RemoveStartup.mst'), ('uninstaller', 'http://download.skype.com/msi/SkypeSetup_7.40.0.103.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,257 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,257 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,272 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,272 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls -2020-03-04 12:20:00,272 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,272 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,288 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: +2020-03-06 10:22:35,445 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,445 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,445 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,445 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls +2020-03-06 10:22:35,461 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,461 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,478 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls: # just 32-bit x86 installer available @@ -21464,15 +21330,15 @@ skype: reboot: False -2020-03-04 12:20:00,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,478 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('skype', OrderedDict([('8.31', OrderedDict([('full_name', 'Skype version 8.31'), ('installer', 'https://endpoint920510.azureedge.net/s4l/s4l/download/win/Skype-8.31.0.92.exe'), ('install_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\Microsoft\\Skype for Desktop\\unins000.exe'), ('uninstall_flags', '/SILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,288 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,288 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,288 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,288 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls -2020-03-04 12:20:00,288 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,304 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.016287565231323242 -2020-03-04 12:20:00,304 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: +2020-03-06 10:22:35,478 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\skype.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,478 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,478 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,478 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls +2020-03-06 10:22:35,492 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,492 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,492 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls: #MSI machine-wide deployment package #The MSI for single installation deployment installs Slack for Windows machine-wide, either to Program Files or a location of your choice. #It is multi-client-capable, meaning that it can be used by multiple users on one machine, @@ -21518,15 +21384,15 @@ slack-machine-msi: reboot: False -2020-03-04 12:20:00,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,492 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('slack-machine-msi', OrderedDict([('3.3.7.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.7.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.6.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.3.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/slack-standalone-3.3.3.0.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,304 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,304 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,304 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,304 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls -2020-03-04 12:20:00,304 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,320 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.01546788215637207 -2020-03-04 12:20:00,320 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: +2020-03-06 10:22:35,492 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-machine-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,508 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,508 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,508 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls +2020-03-06 10:22:35,508 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,508 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,523 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls: #MSI for per-user deployment package #The MSI for per-user deployment adds the Slack Installer machine-wide, rather than individually installing Slack for Windows. #The Slack Installer will only add Slack for Windows if it was never installed for the user currently logged into the machine. @@ -21545,15 +21411,15 @@ slack-user-msi: locale: en_US reboot: False -2020-03-04 12:20:00,320 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,523 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('slack-user-msi', OrderedDict([('latest', OrderedDict([('full_name', 'Slack Machine-Wide Installer'), ('installer', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('uninstaller', 'https://slack-ssb-updates.global.ssl.fastly.net/releases_x64/SlackSetup.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,320 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,320 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,320 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,320 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls -2020-03-04 12:20:00,335 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,335 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,335 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: +2020-03-06 10:22:35,523 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack-user-msi.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,523 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,523 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,523 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls +2020-03-06 10:22:35,523 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,540 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'jinja' renderer: 0.016811132431030273 +2020-03-06 10:22:35,540 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls: slack: 3.4.0: full_name: Slack @@ -21564,15 +21430,15 @@ slack: msiexec: True reboot: False -2020-03-04 12:20:00,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,540 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('slack', OrderedDict([('3.4.0', OrderedDict([('full_name', 'Slack'), ('installer', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://downloads.slack-edge.com/releases_x64/slack-standalone-3.4.0.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:20:00,335 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,335 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,335 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,335 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls -2020-03-04 12:20:00,350 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,350 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,350 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: +2020-03-06 10:22:35,540 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\slack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,540 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,540 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,554 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls +2020-03-06 10:22:35,554 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,554 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,554 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls: # just 32-bit x86 installer available @@ -21588,15 +21454,15 @@ smartmontools: locale: en_US reboot: False -2020-03-04 12:20:00,350 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,554 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('smartmontools', OrderedDict([('6.4 2015-06-04 r4109 (sf-6.4-1)', OrderedDict([('full_name', 'smartmontools'), ('installer', 'https://downloads.sourceforge.net/project/smartmontools/smartmontools/6.4/smartmontools-6.4-1.win32-setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\smartmontools\\uninst-smartmontools.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,350 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,350 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,350 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,350 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls -2020-03-04 12:20:00,350 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,368 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.017609357833862305 -2020-03-04 12:20:00,368 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: +2020-03-06 10:22:35,554 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\smartmontools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,572 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls +2020-03-06 10:22:35,572 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,572 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,587 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls: # just 32-bit x86 installer available @@ -21612,15 +21478,15 @@ snmptools: locale: en_US reboot: False -2020-03-04 12:20:00,368 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,587 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('snmptools', OrderedDict([('Not Found', OrderedDict([('full_name', 'SnmpTools 2'), ('installer', 'https://erwan.labalec.fr/snmptools/snmptools32.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\SnmpTools\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,368 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,368 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,368 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,368 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls -2020-03-04 12:20:00,381 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,381 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,381 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: +2020-03-06 10:22:35,587 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\snmptools.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,587 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,587 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,587 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls +2020-03-06 10:22:35,602 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,602 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,602 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls: soapui: @@ -21637,15 +21503,15 @@ soapui: reboot: False -2020-03-04 12:20:00,381 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,602 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('soapui', OrderedDict([('5.4.0', OrderedDict([('full_name', 'SoapUI 5.4.0 5.4.0'), ('installer', 'https://s3.amazonaws.com/downloads.eviware/soapuios/5.4.0/SoapUI-x64-5.4.0.exe'), ('install_flags', '-q'), ('uninstaller', '%ProgramFiles%\\SmartBear\\SoapUI-5.4.0\\uninstall.exe'), ('uninstall_flags', '-q'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,381 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,381 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,381 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,398 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls -2020-03-04 12:20:00,398 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,398 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,398 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: +2020-03-06 10:22:35,602 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\soapui.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,602 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,619 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,619 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls +2020-03-06 10:22:35,619 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,632 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'jinja' renderer: 0.013686895370483398 +2020-03-06 10:22:35,632 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls: # just 32-bit x86 installer available @@ -21662,15 +21528,15 @@ software-informer: locale: en_US reboot: False -2020-03-04 12:20:00,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('software-informer', OrderedDict([('Not Found', OrderedDict([('full_name', 'Software Informer'), ('installer', 'https://files.informer.com/siinst.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('uninstaller', '%ProgramFiles(x86)%\\Software Informer\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,413 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,413 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,413 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,413 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls -2020-03-04 12:20:00,413 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,429 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.016412973403930664 -2020-03-04 12:20:00,429 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: +2020-03-06 10:22:35,632 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\software-informer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,632 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,649 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,649 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls +2020-03-06 10:22:35,649 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,649 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,664 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls: sourcetree: '2.3.1.0': @@ -21886,15 +21752,15 @@ sourcetree: reboot: False -2020-03-04 12:20:00,429 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,664 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('sourcetree', OrderedDict([('2.3.1.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.1.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.2.4.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.11.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.11.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2.5', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.1.2.5.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.0.20.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.0.20.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.10.23.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-1.10.23.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.13.7', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.13.7.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.10.0', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.10.0.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.9.20', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.9.20.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.9.6.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.8.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.8.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.7.0.32509', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.7.0.32509.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.6.25', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.6.25.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.5.2.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.4.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.3.3', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.3.3.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.2.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.2.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.1.1', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.1.1.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.0.8', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_1.0.8.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('0.9.4', OrderedDict([('full_name', 'SourceTree'), ('installer', 'https://downloads.atlassian.com/software/sourcetree/windows/SourceTreeSetup_0.9.4.exe'), ('install_flags', '/exenoui /qn /norestart'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9FFB4428-D676-449F-B173-52C0E9FF1179} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,429 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,429 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,443 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,443 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls -2020-03-04 12:20:00,443 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,443 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,443 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: +2020-03-06 10:22:35,664 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sourcetree.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,664 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,680 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,680 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls +2020-03-06 10:22:35,680 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,680 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,680 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls: # just 32-bit x86 installer available @@ -21910,15 +21776,15 @@ spybot-anti-beacon: locale: en_US reboot: False -2020-03-04 12:20:00,443 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('spybot-anti-beacon', OrderedDict([('1.6', OrderedDict([('full_name', 'Spybot Anti-Beacon'), ('installer', 'https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-1.6-setup.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot Anti-Beacon\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,443 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,443 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,460 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,460 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls -2020-03-04 12:20:00,460 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,460 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,475 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: +2020-03-06 10:22:35,680 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot-anti-beacon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,696 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,696 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,696 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls +2020-03-06 10:22:35,711 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,711 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,711 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls: # just 32-bit x86 installer available @@ -21938,15 +21804,15 @@ spybot: # http://www.spybotupdates.biz/files/spybot-2.4.exe # http://spybot-mirror.com/files/spybot-2.4.exe -2020-03-04 12:20:00,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,711 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('spybot', OrderedDict([('2.4', OrderedDict([('full_name', 'Spybot - Search & Destroy'), ('installer', 'http://spybotupdates.com/files/spybot-2.4.exe'), ('install_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Spybot - Search & Destroy 2\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SuppressMsgGBoxes /NoRestart /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,475 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,475 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,475 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,475 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls -2020-03-04 12:20:00,491 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,491 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,491 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: +2020-03-06 10:22:35,711 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\spybot.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,727 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,727 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,727 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls +2020-03-06 10:22:35,742 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,742 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,742 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls: # -*- coding: utf-8 -*- # vim: ft=sls @@ -21975,15 +21841,15 @@ sscserv-free: reboot: False -2020-03-04 12:20:00,491 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,742 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('sscserv-free', OrderedDict([('3.6.1', OrderedDict([('full_name', 'SSC Serv 3.6.1 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.6.1%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.5.0', OrderedDict([('full_name', 'SSC Serv 3.5.0 Free Edition'), ('installer', 'http://ssc-serv.com/files/SSC%20Serv%20Setup%203.5.0%20x86-64%20Free%20Edition.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES%\\SSC Serv\\unins000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,491 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,491 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,506 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,506 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls -2020-03-04 12:20:00,506 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,506 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,506 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: +2020-03-06 10:22:35,742 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sscserv-free.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,759 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,759 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,759 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls +2020-03-06 10:22:35,759 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,759 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,774 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls: steam: latest: full_name: 'Steam' @@ -21994,15 +21860,15 @@ steam: uninstall_flags: '/S' reboot: False -2020-03-04 12:20:00,506 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,774 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('steam', OrderedDict([('latest', OrderedDict([('full_name', 'Steam'), ('installer', 'https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Steam\\uninstaller.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,506 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,523 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,523 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,523 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls -2020-03-04 12:20:00,523 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,523 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,538 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: +2020-03-06 10:22:35,774 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\steam.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,774 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,774 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,774 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls +2020-03-06 10:22:35,789 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,789 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,789 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available stellarium: @@ -22018,15 +21884,15 @@ stellarium: locale: en_US reboot: False -2020-03-04 12:20:00,538 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,805 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('stellarium', OrderedDict([('0.16.1', OrderedDict([('full_name', 'Stellarium 0.16.1'), ('installer', 'https://downloads.sourceforge.net/project/stellarium/Stellarium-win64/0.16.1/stellarium-0.16.1-win64.exe'), ('install_flags', '/silent'), ('uninstaller', '%ProgramFiles%\\Stellarium\\unins000.exe'), ('uninstall_flags', '/silent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,538 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,538 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,538 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,538 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls -2020-03-04 12:20:00,538 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,554 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.016399145126342773 -2020-03-04 12:20:00,554 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: +2020-03-06 10:22:35,805 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stellarium.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,805 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,805 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,805 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls +2020-03-06 10:22:35,805 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,820 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'jinja' renderer: 0.015161275863647461 +2020-03-06 10:22:35,820 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls: strawberryperl_x64: '5.26.1001': @@ -22050,15 +21916,15 @@ strawberryperl_x64: reboot: False -2020-03-04 12:20:00,554 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,820 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('strawberryperl_x64', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl (64-bit)'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,554 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,554 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,554 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,554 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls -2020-03-04 12:20:00,554 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,569 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.014863729476928711 -2020-03-04 12:20:00,569 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: +2020-03-06 10:22:35,820 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x64.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,820 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,836 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,836 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls +2020-03-06 10:22:35,836 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,836 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,836 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls: strawberryperl_x86: '5.26.1001': @@ -22082,15 +21948,15 @@ strawberryperl_x86: reboot: False -2020-03-04 12:20:00,569 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,851 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('strawberryperl_x86', OrderedDict([('5.26.1001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.26.1.1/strawberry-perl-5.26.1.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('5.24.3001', OrderedDict([('full_name', 'Strawberry Perl'), ('installer', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('uninstaller', 'http://strawberryperl.com/download/5.24.3.1/strawberry-perl-5.24.3.1-32bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,569 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,569 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,569 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,569 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls -2020-03-04 12:20:00,585 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,585 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,585 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: +2020-03-06 10:22:35,851 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\strawberryperl_x86.sls' using 'yaml' renderer: 0.015647172927856445 +2020-03-06 10:22:35,851 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,851 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,851 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls +2020-03-06 10:22:35,851 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,868 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'jinja' renderer: 0.016565322875976562 +2020-03-06 10:22:35,868 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls: # just 32-bit x86 installer available @@ -22106,15 +21972,15 @@ stunnel: locale: en_US reboot: False -2020-03-04 12:20:00,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,868 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('stunnel', OrderedDict([('5.30', OrderedDict([('full_name', 'stunnel installed for AllUsers'), ('installer', 'https://www.stunnel.org/downloads/archive/5.x/stunnel-5.30-installer.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\stunnel\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,585 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,585 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,585 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,600 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls -2020-03-04 12:20:00,600 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,600 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,600 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: +2020-03-06 10:22:35,868 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stunnel.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,868 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,883 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,883 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls +2020-03-06 10:22:35,883 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,883 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,883 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls: subinacl: '5.2.3790.1164': full_name: 'Windows Resource Kit Tools - SubInAcl.exe' @@ -22126,15 +21992,15 @@ subinacl: locale: en_US reboot: False -2020-03-04 12:20:00,600 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,883 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('subinacl', OrderedDict([('5.2.3790.1164', OrderedDict([('full_name', 'Windows Resource Kit Tools - SubInAcl.exe'), ('installer', 'https://download.microsoft.com/download/1/7/d/17d82b72-bc6a-4dc8-bfaa-98b37b22b367/subinacl.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', '{D3EE034D-5B92-4A55-AA02-2E6D0A6A96EE}'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,600 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,600 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,600 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,600 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls -2020-03-04 12:20:00,616 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,616 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,616 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: +2020-03-06 10:22:35,883 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\subinacl.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,899 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,899 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,899 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls +2020-03-06 10:22:35,899 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,899 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,899 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls: @@ -22149,15 +22015,15 @@ sumatrapdf: locale: en_US reboot: False -2020-03-04 12:20:00,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,899 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('sumatrapdf', OrderedDict([('3.1.2', OrderedDict([('full_name', 'SumatraPDF'), ('installer', 'https://www.sumatrapdfreader.org/dl/SumatraPDF-3.1.2-64-install.exe'), ('install_flags', '/s /opt'), ('uninstaller', '%ProgramFiles%\\SumatraPDF\\uninstall.exe'), ('uninstall_flags', '/s'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,616 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,616 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,616 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,616 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls -2020-03-04 12:20:00,632 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,632 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,632 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: +2020-03-06 10:22:35,914 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\sumatrapdf.sls' using 'yaml' renderer: 0.015156269073486328 +2020-03-06 10:22:35,914 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,914 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,914 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls +2020-03-06 10:22:35,914 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,914 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,930 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls: svn: '1.8.13': full_name: 'Subversion' @@ -22178,15 +22044,15 @@ svn: locale: en_US reboot: False -2020-03-04 12:20:00,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,930 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('svn', OrderedDict([('1.8.13', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.13/Setup-Subversion-1.8.13.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.11', OrderedDict([('full_name', 'Subversion'), ('installer', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('install_flags', '/quiet'), ('uninstaller', 'https://downloads.sourceforge.net/projects/win32svn/files/1.8.11/Setup-Subversion-1.8.11.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,632 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,632 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,632 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,632 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls -2020-03-04 12:20:00,648 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,648 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,648 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: +2020-03-06 10:22:35,930 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,930 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,930 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,930 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls +2020-03-06 10:22:35,945 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,945 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:35,945 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls: # just 32-bit x86 installer available @@ -22206,15 +22072,15 @@ teamviewer: locale: en_US reboot: False -2020-03-04 12:20:00,648 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('teamviewer', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,648 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,648 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,663 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,663 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls -2020-03-04 12:20:00,663 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,663 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,678 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: +2020-03-06 10:22:35,945 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,945 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,961 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,961 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls +2020-03-06 10:22:35,961 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,977 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'jinja' renderer: 0.016495227813720703 +2020-03-06 10:22:35,977 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls: # just 32-bit x86 installer available @@ -22234,15 +22100,15 @@ teamviewer_host: locale: en_US reboot: False -2020-03-04 12:20:00,678 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:35,977 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('teamviewer_host', OrderedDict([('latest', OrderedDict([('full_name', 'TeamViewer 14 Host'), ('installer', 'https://dl.tvcdn.de/download/TeamViewer_Host_Setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\TeamViewer\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,678 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,678 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,678 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,678 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls -2020-03-04 12:20:00,694 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,694 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,694 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: +2020-03-06 10:22:35,977 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teamviewer_host.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:35,977 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:35,992 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:35,992 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls +2020-03-06 10:22:35,992 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:35,992 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,008 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls: # just 32-bit x86 installer available @@ -22261,15 +22127,15 @@ teracopy: locale: en_US reboot: False -2020-03-04 12:20:00,694 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,008 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('teracopy', OrderedDict([('Not Found', OrderedDict([('full_name', 'TeraCopy 2.3'), ('installer', 'http://storage.googleapis.com/codesector/teracopy.exe'), ('install_flags', "'/SP- /verysilent /suppressmsgboxes /norestart &\nreg ADD HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraCopy_is1 /v DisplayVersion /d 2.3 &\nexit 0'\n"), ('uninstaller', '%ProgramFiles(x86)%\\TeraCopy\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,694 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,694 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,710 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,710 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls -2020-03-04 12:20:00,710 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,724 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.014430999755859375 -2020-03-04 12:20:00,724 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: +2020-03-06 10:22:36,008 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\teracopy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,008 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,008 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,008 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls +2020-03-06 10:22:36,024 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,024 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,024 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls: # just 32-bit x86 installer available @@ -22285,15 +22151,15 @@ texmaker: locale: en_US reboot: False -2020-03-04 12:20:00,724 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,024 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('texmaker', OrderedDict([('Not Found', OrderedDict([('full_name', 'Texmaker'), ('installer', 'http://www.xm1math.net/texmaker/texmakerwin32_install.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES(x86)%\\Texmaker\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,724 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,724 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,724 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,724 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls -2020-03-04 12:20:00,724 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,741 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.01628875732421875 -2020-03-04 12:20:00,741 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: +2020-03-06 10:22:36,024 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texmaker.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,040 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,040 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,040 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls +2020-03-06 10:22:36,040 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,040 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,055 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls: texniccenter: '2.02 Stable': @@ -22308,15 +22174,15 @@ texniccenter: locale: en_US reboot: False -2020-03-04 12:20:00,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,055 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('texniccenter', OrderedDict([('2.02 Stable', OrderedDict([('full_name', 'TeXnicCenter Version 2.02 Stable'), ('installer', 'https://downloads.sourceforge.net/project/texniccenter/TeXnicCenter/2.02%20Stable/TXCSetup_2.02Stable_x64.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES%\\TeXnicCenter\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,741 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,741 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,741 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,741 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls -2020-03-04 12:20:00,741 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,757 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.01639699935913086 -2020-03-04 12:20:00,757 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: +2020-03-06 10:22:36,055 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texniccenter.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,055 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,055 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,055 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls +2020-03-06 10:22:36,055 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,071 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'jinja' renderer: 0.015814781188964844 +2020-03-06 10:22:36,071 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls: # just 32-bit x86 installer available @@ -22332,15 +22198,15 @@ texstudio: locale: en_US reboot: False -2020-03-04 12:20:00,757 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,071 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('texstudio', OrderedDict([('2.10.8', OrderedDict([('full_name', 'TeXstudio 2.10.8'), ('installer', 'https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%202.10.8/texstudio-2.10.8-win-qt5.5.1.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXstudio\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,757 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,757 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,757 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,757 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls -2020-03-04 12:20:00,757 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,772 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.014681577682495117 -2020-03-04 12:20:00,772 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: +2020-03-06 10:22:36,071 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texstudio.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,071 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,086 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,086 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls +2020-03-06 10:22:36,086 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,086 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,086 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls: # just 32-bit x86 installer available @@ -22356,15 +22222,15 @@ texworks: locale: en_US reboot: False -2020-03-04 12:20:00,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,086 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('texworks', OrderedDict([('0.6.1', OrderedDict([('full_name', 'TeXworks 0.6.1'), ('installer', 'https://github.com/TeXworks/texworks/releases/download/release-0.6.1/TeXworks-win-setup-0.6.1-201605010903-git_3614278.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%PROGRAMFILES(x86)%\\TeXworks\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,772 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,772 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,772 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,772 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls -2020-03-04 12:20:00,788 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,788 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,788 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: +2020-03-06 10:22:36,086 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\texworks.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,102 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,102 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,102 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls +2020-03-06 10:22:36,118 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,118 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,118 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls: # just 32-bit x86 installer available @@ -22642,15 +22508,15 @@ thunderbird: reboot: False -2020-03-04 12:20:00,803 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,133 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('thunderbird', OrderedDict([('60.6.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.1/win32/en-GB/Thunderbird%20Setup%2060.6.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.6.0/win32/en-GB/Thunderbird%20Setup%2060.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.3/win32/en-GB/Thunderbird%20Setup%2060.5.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.2/win32/en-GB/Thunderbird%20Setup%2060.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.1/win32/en-GB/Thunderbird%20Setup%2060.5.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.5.0/win32/en-GB/Thunderbird%20Setup%2060.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.4.0/win32/en-GB/Thunderbird%20Setup%2060.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.3', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.3 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.3/win32/en-GB/Thunderbird%20Setup%2060.3.3.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.2', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.2/win32/en-GB/Thunderbird%20Setup%2060.3.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.1/win32/en-GB/Thunderbird%20Setup%2060.3.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.3.0/win32/en-GB/Thunderbird%20Setup%2060.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.2.1', OrderedDict([('full_name', 'Mozilla Thunderbird 60.2.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.2.1/win32/en-GB/Thunderbird%20Setup%2060.2.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('60.0', OrderedDict([('full_name', 'Mozilla Thunderbird 60.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/60.0/win32/en-GB/Thunderbird%20Setup%2060.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.1', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.1 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.1/win32/en-GB/Thunderbird%20Setup%2052.9.1.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.9.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.9.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.9.0/win32/en-GB/Thunderbird%20Setup%2052.9.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.8.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.8.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.8.0/win32/en-GB/Thunderbird%20Setup%2052.8.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.6.0/win32/en-GB/Thunderbird%20Setup%2052.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.5.2', OrderedDict([('full_name', 'Mozilla Thunderbird 52.5.2 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.5.2/win32/en-GB/Thunderbird%20Setup%2052.5.2.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('52.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 52.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/52.3.0/win32/en-GB/Thunderbird%20Setup%2052.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.6.0/win32/en-GB/Thunderbird%20Setup%2045.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('45.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 45.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/45.4.0/win32/en-GB/Thunderbird%20Setup%2045.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.6.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.6.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.6.0/win32/en-GB/Thunderbird%20Setup%2038.6.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.5.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.5.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.5.0/win32/en-GB/Thunderbird%20Setup%2038.5.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.4.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.4.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.4.0/win32/en-GB/Thunderbird%20Setup%2038.4.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.3.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.3.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.3.0/win32/en-GB/Thunderbird%20Setup%2038.3.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.2.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.2.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.2.0/win32/en-GB/Thunderbird%20Setup%2038.2.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('38.1.0', OrderedDict([('full_name', 'Mozilla Thunderbird 38.1.0 (x86 en-GB)'), ('installer', 'https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/38.1.0/win32/en-GB/Thunderbird%20Setup%2038.1.0.exe'), ('install_flags', '-ms'), ('uninstaller', '%ProgramFiles(x86)%\\Mozilla Thunderbird\\uninstall\\helper.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,803 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,803 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,803 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,803 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls -2020-03-04 12:20:00,803 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,826 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.022701025009155273 -2020-03-04 12:20:00,826 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: +2020-03-06 10:22:36,133 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\thunderbird.sls' using 'yaml' renderer: 0.015227317810058594 +2020-03-06 10:22:36,133 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,133 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,133 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls +2020-03-06 10:22:36,149 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,149 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,149 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls: tightvnc: @@ -22766,15 +22632,15 @@ tightvnc: reboot: False -2020-03-04 12:20:00,834 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,149 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('tightvnc', OrderedDict([('2.8.27.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.27/tightvnc-2.8.27-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.23.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.23/tightvnc-2.8.23-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.11.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.11/tightvnc-2.8.11-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.8.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.8/tightvnc-2.8.8-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.5.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.5/tightvnc-2.8.5-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.8.2.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.8.2/tightvnc-2.8.2-gpl-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.10.0', OrderedDict([('full_name', 'TightVNC'), ('installer', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('uninstaller', 'https://www.tightvnc.com/download/2.7.10/tightvnc-2.7.10-setup-64bit.msi'), ('install_flags', '/quiet /norestart'), ('uninstall_flags', '/quiet /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,834 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.008075237274169922 -2020-03-04 12:20:00,834 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,834 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,834 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls -2020-03-04 12:20:00,834 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,851 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.01703953742980957 -2020-03-04 12:20:00,851 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: +2020-03-06 10:22:36,165 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tightvnc.sls' using 'yaml' renderer: 0.016145706176757812 +2020-03-06 10:22:36,165 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,165 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,165 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls +2020-03-06 10:22:36,180 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,180 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,180 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls: todotxt.net: 'Not Found': # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22790,15 +22656,15 @@ todotxt.net: locale: en_US reboot: False -2020-03-04 12:20:00,851 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,180 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('todotxt.net', OrderedDict([('Not Found', OrderedDict([('full_name', 'todotxt.net v3.2.0.0'), ('installer', 'salt://win/repo-ng/todotxt.net/todotxt-setup-3.2.0.0.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Hughesoft\\todotxt.net\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,851 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,851 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,851 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,866 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls -2020-03-04 12:20:00,866 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,866 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,866 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: +2020-03-06 10:22:36,180 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todotxt.net.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,196 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,196 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,196 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls +2020-03-06 10:22:36,196 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,196 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,211 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -22814,15 +22680,15 @@ todour: locale: en_US reboot: False -2020-03-04 12:20:00,866 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,211 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('todour', OrderedDict([('2.03', OrderedDict([('full_name', 'Todour version 2.03'), ('installer', 'https://nerdur.com/Todour-2.03.exe'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('uninstaller', '%ProgramFiles(x86)%\\Todour\\unins000.exe'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,866 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,866 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,866 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,882 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls -2020-03-04 12:20:00,882 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,882 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,897 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: +2020-03-06 10:22:36,211 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\todour.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,211 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,211 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,211 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls +2020-03-06 10:22:36,227 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,227 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,227 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls: # just 32-bit x86 installer available @@ -22839,15 +22705,15 @@ tortoise-bzr: locale: en_US reboot: False -2020-03-04 12:20:00,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,227 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('tortoise-bzr', OrderedDict([('2.5.1-1', OrderedDict([('full_name', 'Bazaar 2.5.1'), ('installer', 'https://launchpadlibrarian.net/107526036/bzr-2.5.1-1-setup.exe'), ('install_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%ProgramFiles(x86)%\\Bazaar\\uninst000.exe'), ('uninstall_flags', '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,897 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,897 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,897 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,897 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls -2020-03-04 12:20:00,897 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,914 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.01762986183166504 -2020-03-04 12:20:00,914 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: +2020-03-06 10:22:36,227 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-bzr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,244 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,244 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,244 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls +2020-03-06 10:22:36,244 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,258 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'jinja' renderer: 0.014147043228149414 +2020-03-06 10:22:36,258 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls: # Source: https://tortoisegit.org/ tortoise-git: @@ -23008,15 +22874,15 @@ tortoise-git: reboot: False -2020-03-04 12:20:00,914 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('tortoise-git', OrderedDict([('2.8.0.0', OrderedDict([('full_name', 'TortoiseGit 2.8.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.8.0.0/TortoiseGit-2.8.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.7.0.0', OrderedDict([('full_name', 'TortoiseGit 2.7.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.7.0.0/TortoiseGit-2.7.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0.0', OrderedDict([('full_name', 'TortoiseGit 2.6.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.6.0.0/TortoiseGit-2.6.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.5.0.0', OrderedDict([('full_name', 'TortoiseGit 2.5.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.5.0.0/TortoiseGit-2.5.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0.0', OrderedDict([('full_name', 'TortoiseGit 2.4.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.4.0.0/TortoiseGit-2.4.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.3.0.0', OrderedDict([('full_name', 'TortoiseGit 2.3.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.3.0.0/TortoiseGit-2.3.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0.0', OrderedDict([('full_name', 'TortoiseGit 2.2.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.2.0.0/TortoiseGit-2.2.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0.0', OrderedDict([('full_name', 'TortoiseGit 2.1.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.1.0.0/TortoiseGit-2.1.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0.0', OrderedDict([('full_name', 'TortoiseGit 2.0.0.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/2.0.0.0/TortoiseGit-2.0.0.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.16.0', OrderedDict([('full_name', 'TortoiseGit 1.8.16.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.16.0/TortoiseGit-1.8.16.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.15.0', OrderedDict([('full_name', 'TortoiseGit 1.8.15.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.15.0/TortoiseGit-1.8.15.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.14.0', OrderedDict([('full_name', 'TortoiseGit 1.8.14.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.14.0/TortoiseGit-1.8.14.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.13.0', OrderedDict([('full_name', 'TortoiseGit 1.8.13.0 (64 bit)'), ('installer', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('uninstaller', 'https://download.tortoisegit.org/tgit/1.8.13.0/TortoiseGit-1.8.13.0-64bit.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,914 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,914 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,928 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,928 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls -2020-03-04 12:20:00,928 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,945 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.016605377197265625 -2020-03-04 12:20:00,945 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: +2020-03-06 10:22:36,258 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-git.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,276 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,276 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,276 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls +2020-03-06 10:22:36,276 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,276 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,290 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls: # Source: http://tortoisehg.bitbucket.org/ tortoise-hg: '3.6.2': @@ -23044,15 +22910,15 @@ tortoise-hg: # Need to download from source site above, so it will append proper aws key credentials # place downloaded msi in master's win_repo-ng -2020-03-04 12:20:00,945 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,290 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('tortoise-hg', OrderedDict([('3.6.2', OrderedDict([('full_name', 'TortoiseHg 3.6.2 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.6.2-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.3.0', OrderedDict([('full_name', 'TortoiseHg 3.3.0 (x64)'), ('installer', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('uninstaller', 'salt://win/repo-ng/tortoise-hg/tortoisehg-3.3.0-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,945 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,945 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,945 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,945 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls -2020-03-04 12:20:00,960 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,960 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,960 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: +2020-03-06 10:22:36,290 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-hg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,290 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,290 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,290 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls +2020-03-06 10:22:36,306 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,306 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'jinja' renderer: 0.01603555679321289 +2020-03-06 10:22:36,306 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls: # Source: http://tortoisesvn.net/ tortoise-svn: '1.9.27285': @@ -23068,15 +22934,15 @@ tortoise-svn: reboot: False -2020-03-04 12:20:00,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,306 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('tortoise-svn', OrderedDict([('1.9.27285', OrderedDict([('full_name', 'TortoiseSVN 1.9.4.27285 (64 bit)'), ('installer', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('uninstaller', 'https://downloads.sourceforge.net/project/tortoisesvn/1.9.4/Application/TortoiseSVN-1.9.4.27285-x64-svn-1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,960 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,960 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,960 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,960 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls -2020-03-04 12:20:00,976 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,976 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,976 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: +2020-03-06 10:22:36,306 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\tortoise-svn.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,306 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,306 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,321 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls +2020-03-06 10:22:36,321 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,321 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,321 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls: # just 32-bit x86 installer available @@ -23092,15 +22958,15 @@ truecrypt: locale: en_US reboot: False -2020-03-04 12:20:00,976 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,321 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('truecrypt', OrderedDict([('7.1a', OrderedDict([('full_name', 'TrueCrypt 7.1a'), ('installer', 'https://download.truecrypt.ch/current/TrueCrypt%20Setup%207.1a.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\Truecrypt\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:00,976 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:00,976 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:00,976 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:00,991 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls -2020-03-04 12:20:00,991 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:00,991 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:00,991 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: +2020-03-06 10:22:36,336 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\truecrypt.sls' using 'yaml' renderer: 0.015202522277832031 +2020-03-06 10:22:36,336 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,336 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,336 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls +2020-03-06 10:22:36,354 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,354 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,354 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available ultradefrag: @@ -23116,15 +22982,15 @@ ultradefrag: locale: en_US reboot: False -2020-03-04 12:20:01,006 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,354 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('ultradefrag', OrderedDict([('7.0.2', OrderedDict([('full_name', 'Ultra Defragmenter'), ('installer', 'https://downloads.sourceforge.net/project/ultradefrag/stable-release/7.0.2/ultradefrag-7.0.2.bin.amd64.exe'), ('install_flags', '/S /FULL=1'), ('uninstaller', '%ProgramFiles%\\UltraDefrag\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,006 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,006 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,006 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,006 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls -2020-03-04 12:20:01,006 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,006 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,022 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: +2020-03-06 10:22:36,368 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\ultradefrag.sls' using 'yaml' renderer: 0.01465463638305664 +2020-03-06 10:22:36,368 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,368 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,368 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls +2020-03-06 10:22:36,368 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,384 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'jinja' renderer: 0.015567541122436523 +2020-03-06 10:22:36,384 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available urlrewrite: @@ -23151,15 +23017,15 @@ urlrewrite: locale: en_US reboot: False -2020-03-04 12:20:01,022 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('urlrewrite', OrderedDict([('7.2.1952', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('7.2.1980', OrderedDict([('full_name', 'IIS URL Rewrite Module 2'), ('installer', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/D/E/DDE57C26-C62C-4C59-A1BB-31D58B36ADA2/rewrite_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,022 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,022 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,022 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,022 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls -2020-03-04 12:20:01,022 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,038 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.015575885772705078 -2020-03-04 12:20:01,038 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: +2020-03-06 10:22:36,384 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\urlrewrite.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,401 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,401 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls +2020-03-06 10:22:36,401 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,401 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,401 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls: usbdlm: '5.2.7.0': @@ -23173,15 +23039,15 @@ usbdlm: locale: en_US reboot: False -2020-03-04 12:20:01,038 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,415 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('usbdlm', OrderedDict([('5.2.7.0', OrderedDict([('full_name', 'USB Drive Letter Manager (x64)'), ('installer', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('uninstaller', 'http://www.uwe-sieber.de/files/usbdlm_x64.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,038 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,038 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,038 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,038 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls -2020-03-04 12:20:01,038 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,053 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.01567864418029785 -2020-03-04 12:20:01,053 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: +2020-03-06 10:22:36,415 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\usbdlm.sls' using 'yaml' renderer: 0.01324605941772461 +2020-03-06 10:22:36,415 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,415 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,415 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls +2020-03-06 10:22:36,415 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,432 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'jinja' renderer: 0.016965389251708984 +2020-03-06 10:22:36,432 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls: vagrant: @@ -23687,15 +23553,15 @@ vagrant: reboot: False -2020-03-04 12:20:01,069 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,446 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vagrant', OrderedDict([('2.2.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.1/vagrant_2.2.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.2.0/vagrant_2.2.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.5/vagrant_2.1.5_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.4/vagrant_2.1.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.3/vagrant_2.1.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.2/vagrant_2.1.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.1/vagrant_2.1.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.1.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.1.0/vagrant_2.1.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.4/vagrant_2.0.4_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.3/vagrant_2.0.3_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('2.0.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.8', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.8/vagrant_1.9.8_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.7/vagrant_1.9.7_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.6/vagrant_1.9.6_x86_64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.4/vagrant_1.9.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.3/vagrant_1.9.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.2/vagrant_1.9.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.9.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.9.0/vagrant_1.9.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.7', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.6', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.6/vagrant_1.8.6.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.8.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.8.0/vagrant_1.8.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.4/vagrant_1.7.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.3/vagrant_1.7.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.2/vagrant_1.7.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.7.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.7.1/vagrant_1.7.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.5', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.5/vagrant_1.6.5.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.4/vagrant_1.6.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.3/vagrant_1.6.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.2/vagrant_1.6.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.1/vagrant_1.6.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.6.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.6.0/vagrant_1.6.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.4', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.4/vagrant_1.5.4.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.3/vagrant_1.5.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.2/vagrant_1.5.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.1/vagrant_1.5.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.5.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.5.0/vagrant_1.5.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.3', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.3/vagrant_1.4.3.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.2', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.1', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.1/vagrant_1.4.1.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('1.4.0', OrderedDict([('full_name', 'Vagrant'), ('installer', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://releases.hashicorp.com/vagrant/1.4.0/vagrant_1.4.0.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,069 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.015092134475708008 -2020-03-04 12:20:01,069 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,084 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,084 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls -2020-03-04 12:20:01,084 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,084 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,084 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: +2020-03-06 10:22:36,446 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vagrant.sls' using 'yaml' renderer: 0.014319419860839844 +2020-03-06 10:22:36,446 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,462 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,462 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls +2020-03-06 10:22:36,462 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,462 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,462 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls: vcforpython27: '9.0.1.30729': full_name: 'Microsoft Visual C++ Compiler Package for Python 2.7' @@ -23707,15 +23573,15 @@ vcforpython27: locale: en_US reboot: False -2020-03-04 12:20:01,084 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,462 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vcforpython27', OrderedDict([('9.0.1.30729', OrderedDict([('full_name', 'Microsoft Visual C++ Compiler Package for Python 2.7'), ('installer', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('install_flags', '/qn ALLUSERS=1 /norestart'), ('uninstaller', 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,084 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,084 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,084 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,100 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls -2020-03-04 12:20:01,100 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,100 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,100 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: +2020-03-06 10:22:36,462 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcforpython27.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,477 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,477 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,477 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls +2020-03-06 10:22:36,477 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,499 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'jinja' renderer: 0.021504640579223633 +2020-03-06 10:22:36,499 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls: @@ -23747,15 +23613,15 @@ vcxsrv: reboot: False -2020-03-04 12:20:01,100 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,499 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vcxsrv', OrderedDict([('1.20.0.0', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.19.6.4', OrderedDict([('full_name', 'VcXsrv'), ('installer', 'https://downloads.sourceforge.net/project/vcxsrv/vcxsrv/1.20.0.0/vcxsrv-64.1.20.0.0.installer.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\VcXsrv\\uninstall.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,100 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,116 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,116 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,116 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls -2020-03-04 12:20:01,116 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,116 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,116 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: +2020-03-06 10:22:36,499 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vcxsrv.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,509 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls +2020-03-06 10:22:36,509 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,525 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'jinja' renderer: 0.01610112190246582 +2020-03-06 10:22:36,525 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls: verysleepy: @@ -23770,15 +23636,15 @@ verysleepy: locale: en_US reboot: False -2020-03-04 12:20:01,116 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,525 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('verysleepy', OrderedDict([('0.90', OrderedDict([('full_name', 'Very Sleepy CS version 0.90'), ('installer', 'https://github.com/VerySleepy/verysleepy/releases/download/v0.90/verysleepy-cs-0.90.exe'), ('uninstaller', '%ProgramFiles%\\Very Sleepy CS\\unins000.exe'), ('install_flags', '/SP- /NORESTART /SILENT'), ('uninstall_flags', '/SILENT'), ('cache_dir', True), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,116 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,131 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,131 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,131 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls -2020-03-04 12:20:01,131 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,131 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,131 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: +2020-03-06 10:22:36,525 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\verysleepy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,525 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,525 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,525 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls +2020-03-06 10:22:36,540 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,540 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,540 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -23809,15 +23675,15 @@ veyon: reboot: False -2020-03-04 12:20:01,131 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,540 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('veyon', OrderedDict([('4.0.7', OrderedDict([('full_name', 'Veyon 4.0.7'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.7/veyon-4.0.7.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('4.0.6', OrderedDict([('full_name', 'Veyon 4.0.6'), ('installer', 'https://github.com/veyon/veyon/releases/download/v4.0.6/veyon-4.0.6.0-win64-setup.exe'), ('install_flags', '/S /Master'), ('uninstaller', '%ProgramFiles%\\Veyon\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,148 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0167849063873291 -2020-03-04 12:20:01,148 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,148 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,148 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls -2020-03-04 12:20:01,148 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,162 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.01443171501159668 -2020-03-04 12:20:01,162 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: +2020-03-06 10:22:36,540 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\veyon.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,556 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,556 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,556 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls +2020-03-06 10:22:36,556 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,572 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'jinja' renderer: 0.015636920928955078 +2020-03-06 10:22:36,572 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls: # Version 5.1 and older are no longer supported by Oracle # https://www.virtualbox.org/wiki/Download_Old_Builds @@ -23880,15 +23746,15 @@ virtualbox: reboot: False -2020-03-04 12:20:01,162 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,572 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('virtualbox', OrderedDict([('6.0.4', OrderedDict([('full_name', 'Oracle VM VirtualBox 6.0.4'), ('installer', 'https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {79366295-CD6A-4467-9901-4A7DFCF90F40} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.2.26', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.2.26'), ('installer', 'https://download.virtualbox.org/virtualbox/5.2.26/VirtualBox-5.2.26-128414-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {28CBFD88-CBF3-482C-978E-DB437CCEDFC8} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.1.38', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.1.38'), ('installer', 'https://download.virtualbox.org/virtualbox/5.1.38/VirtualBox-5.1.38-122592-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {9E37A2F6-2495-46D2-B71B-703971F30A46} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.0.40', OrderedDict([('full_name', 'Oracle VM VirtualBox 5.0.40'), ('installer', 'https://download.virtualbox.org/virtualbox/5.0.40/VirtualBox-5.0.40-115130-Win.exe'), ('install_flags', '--silent'), ('uninstaller', 'msiexec.exe'), ('uninstall_flags', '/qn /x {50DCC38E-5AD2-4D5C-BB75-94A22C3B0940} /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,162 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,177 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,177 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,177 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls -2020-03-04 12:20:01,177 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,177 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,177 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: +2020-03-06 10:22:36,572 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\virtualbox.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,587 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,587 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,587 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls +2020-03-06 10:22:36,587 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,587 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,608 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls: @@ -23923,15 +23789,15 @@ viscosity: reboot: False -2020-03-04 12:20:01,194 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,608 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('viscosity', OrderedDict([('1.7.14.1595', OrderedDict([('full_name', 'Viscosity 1.7.14 (1595)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.14.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.7.12.1581', OrderedDict([('full_name', 'Viscosity 1.7.12 (1581)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.7.12.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)])), ('1.6.8.1477', OrderedDict([('full_name', 'Viscosity 1.6.8 (1477)'), ('installer', 'https://swupdate.sparklabs.com/download/win/release/viscosity/Viscosity%20Installer%201.6.8.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /ALLUSERS /SUPPRESSMSGBOXES'), ('uninstaller', 'net'), ('uninstall_flags', 'stop viscosityservice & taskkill /IM viscosity.exe /F /T & forfiles /p "%ProgramFiles%\\Viscosity" /m unins*.exe /c "cmd /c @path /SP- /VERYSILENT /NORESTART /SUPPRESSMSGBOXES"'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:20:01,194 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.016603469848632812 -2020-03-04 12:20:01,194 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,194 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,194 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls -2020-03-04 12:20:01,194 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,194 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,194 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: +2020-03-06 10:22:36,608 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\viscosity.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,608 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,618 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,618 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls +2020-03-06 10:22:36,618 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,618 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,618 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls: #Vivaldi is a Chromium-based browser #https://vivaldi.com @@ -23950,15 +23816,15 @@ vivaldi: locale: en_US reboot: False -2020-03-04 12:20:01,210 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,618 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vivaldi', OrderedDict([('latest', OrderedDict([('full_name', 'Vivaldi'), ('installer', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('uninstaller', 'https://downloads.vivaldi.com/stable/Vivaldi.x64.exe'), ('install_flags', '--vivaldi-silent --do-not-launch-chrome --system-level'), ('uninstall_flags', '--uninstall --force-uninstall --system-level --vivaldi'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,210 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,210 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,210 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,210 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls -2020-03-04 12:20:01,210 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,225 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.015114545822143555 -2020-03-04 12:20:01,225 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: +2020-03-06 10:22:36,635 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vivaldi.sls' using 'yaml' renderer: 0.016161680221557617 +2020-03-06 10:22:36,635 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,635 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,635 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls +2020-03-06 10:22:36,635 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,651 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'jinja' renderer: 0.015974044799804688 +2020-03-06 10:22:36,651 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available vlc: @@ -24108,15 +23974,15 @@ vlc: reboot: False -2020-03-04 12:20:01,225 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,651 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vlc', OrderedDict([('3.0.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.8/win64/vlc-3.0.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7.1/win64/vlc-3.0.7.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.7', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.7/win64/vlc-3.0.7-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.6/win64/vlc-3.0.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.5', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.5/win64/vlc-3.0.5-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.4', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.4/win64/vlc-3.0.4-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.3/win64/vlc-3.0.3-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.2/win64/vlc-3.0.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.1/win64/vlc-3.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/3.0.0/win64/vlc-3.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.8/win64/vlc-2.2.8-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'VLC media player'), ('installer', 'https://get.videolan.org/vlc/2.2.6/win64/vlc-2.2.6-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\VideoLAN\\VLC\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,225 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,241 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,241 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,241 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls -2020-03-04 12:20:01,241 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,258 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.016789913177490234 -2020-03-04 12:20:01,258 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: +2020-03-06 10:22:36,651 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vlc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,666 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,666 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,666 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls +2020-03-06 10:22:36,666 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,681 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'jinja' renderer: 0.015621185302734375 +2020-03-06 10:22:36,681 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls: vs-community: 15.5.27130.0: # Visual Studio Community 2017 (Version 15.4) full_name: @@ -24135,15 +24001,15 @@ vs-community: --norestart reboot: False -2020-03-04 12:20:01,258 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,681 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vs-community', OrderedDict([('15.5.27130.0', OrderedDict([('full_name', 'Visual Studio Community 2017'), ('installer', 'https://download.visualstudio.microsoft.com/download/pr/100314170/045b56eb413191d03850ecc425172a7d/vs_Community.exe'), ('install_flags', '--quiet --norestart --wait'), ('uninstaller', 'C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vs_installer.exe'), ('uninstall_flags', '/uninstall --force --quiet --norestart'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,258 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,258 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,258 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,258 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls -2020-03-04 12:20:01,273 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,273 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,273 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: +2020-03-06 10:22:36,681 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs-community.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,681 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,681 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,696 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls +2020-03-06 10:22:36,696 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,696 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,696 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls: # due to winrepo installer limitations you need to manually download x86 + x64 System installer from # https://code.visualstudio.com/Download # and put it on the winrepo on master to install it the 'salt://win/repo-ng/vscode/... @@ -24219,15 +24085,15 @@ vscode: -2020-03-04 12:20:01,273 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vscode', OrderedDict([('1.36.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/2213894ea0415ee8c85c5eea0d0ff81ecc191529/VSCodeSetup-x64-1.36.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.37.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/f06011ac164ae4dc8e753a3fe7f9549844d15e35/VSCodeSetup-x64-1.37.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.38.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/b37e54c98e1a74ba89e03073e5a3761284e3ffb0/VSCodeSetup-x64-1.38.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.1', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/88f15d17dca836346e787762685a40bb5cce75a8/VSCodeSetup-x64-1.39.1.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('1.39.2', OrderedDict([('full_name', 'Microsoft Visual Studio Code'), ('installer', 'https://az764295.vo.msecnd.net/stable/6ab598523be7a800d7f3eb4d92d7ab9a66069390/VSCodeSetup-x64-1.39.2.exe'), ('uninstaller', '%ProgramFiles%\\Microsoft VS Code\\unins000.exe'), ('install_flags', '/SP- /VERYSILENT /NORESTART /MERGETASKS="!RUNCODE,ADDCONTEXTMENUFILES,ADDCONTEXTMENUFOLDERS,ADDTOPATH"'), ('uninstall_flags', '/VERYSILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,273 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,288 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,288 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,288 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls -2020-03-04 12:20:01,288 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,288 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,288 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: +2020-03-06 10:22:36,713 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vscode.sls' using 'yaml' renderer: 0.01661992073059082 +2020-03-06 10:22:36,713 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,713 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,713 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls +2020-03-06 10:22:36,728 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,728 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,728 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls: vsee: '15.0.0.707': full_name: 'VSee' @@ -24239,15 +24105,15 @@ vsee: locale: en_US reboot: False -2020-03-04 12:20:01,288 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,728 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vsee', OrderedDict([('15.0.0.707', OrderedDict([('full_name', 'VSee'), ('installer', 'http://d2q5hugz2rti4w.cloudfront.net/builds/2015/vsee707_0030-r34_final_build.exe'), ('install_flags', '-no_autorun'), ('uninstaller', '%AppData%\\VSeeInstall\\vseeUninstall.exe'), ('uninstall_flags', '-no_confirm'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,288 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,304 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,304 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,304 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls -2020-03-04 12:20:01,304 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,304 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,304 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: +2020-03-06 10:22:36,728 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vsee.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,728 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,744 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,744 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls +2020-03-06 10:22:36,744 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,744 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,744 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls: vs_remotetools_2017: latest: full_name: 'Remote Tools for Visual Studio 2017' @@ -24262,15 +24128,15 @@ vs_remotetools_2017: locale: en_US reboot: False -2020-03-04 12:20:01,304 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,744 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('vs_remotetools_2017', OrderedDict([('latest', OrderedDict([('full_name', 'Remote Tools for Visual Studio 2017'), ('installer', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('uninstaller', 'https://aka.ms/vs/15/release/RemoteTools.amd64ret.enu.exe'), ('arch', 'x64'), ('install_flags', '/install /passive /quiet'), ('uninstall_flags', '/uninstall /passive /quiet'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,304 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,319 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,319 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,319 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls -2020-03-04 12:20:01,319 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,335 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.01679515838623047 -2020-03-04 12:20:01,335 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: +2020-03-06 10:22:36,759 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\vs_remotetools_2017.sls' using 'yaml' renderer: 0.01563286781311035 +2020-03-06 10:22:36,759 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,759 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,759 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls +2020-03-06 10:22:36,776 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,776 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,776 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls: wamp-server-3: '3.1.3': @@ -24284,15 +24150,15 @@ wamp-server-3: locale: en_US reboot: False -2020-03-04 12:20:01,335 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,776 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('wamp-server-3', OrderedDict([('3.1.3', OrderedDict([('full_name', 'Wampserver64 3.1.3'), ('installer', 'https://downloads.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.1.3_x64.exe'), ('uninstaller', 'c:\\wamp64\\uninstall_services.bat'), ('uninstall_flags', '& c:\\wamp64\\unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('install_flags', '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,335 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,335 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,335 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,335 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls -2020-03-04 12:20:01,351 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,351 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,351 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: +2020-03-06 10:22:36,791 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-server-3.sls' using 'yaml' renderer: 0.01550602912902832 +2020-03-06 10:22:36,791 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,791 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,791 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls +2020-03-06 10:22:36,791 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,806 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'jinja' renderer: 0.015161275863647461 +2020-03-06 10:22:36,806 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls: wamp-stack: @@ -24318,15 +24184,15 @@ wamp-stack: reboot: False -2020-03-04 12:20:01,351 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,806 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('wamp-stack', OrderedDict([('7.1.27-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 7.1.27-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/7.1.27-1/bitnami-wampstack-7.1.27-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-7.1.27-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.6.40-1', OrderedDict([('full_name', 'Bitnami WAMP Stack 5.6.40-1'), ('installer', 'https://downloads.bitnami.com/files/stacks/wampstack/5.6.40-1/bitnami-wampstack-5.6.40-1-windows-x64-installer.exe'), ('install_flags', '--mode unattended --base_password ChangeMe --apache_server_port 8080'), ('uninstaller', 'C:\\Bitnami\\wampstack-5.6.40-1\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,351 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,351 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,366 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,366 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls -2020-03-04 12:20:01,366 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,366 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,366 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: +2020-03-06 10:22:36,806 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wamp-stack.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,822 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,822 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,822 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls +2020-03-06 10:22:36,822 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,822 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,838 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls: webdeploy: '3.1237.1764': full_name: 'Microsoft Web Deploy 3.5' @@ -24340,15 +24206,15 @@ webdeploy: locale: en_US reboot: False -2020-03-04 12:20:01,366 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,838 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('webdeploy', OrderedDict([('3.1237.1764', OrderedDict([('full_name', 'Microsoft Web Deploy 3.5'), ('installer', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/D/4/4/D446D154-2232-49A1-9D64-F5A9429913A4/WebDeploy_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,366 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,366 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,383 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,383 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls -2020-03-04 12:20:01,383 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,383 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,383 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: +2020-03-06 10:22:36,838 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webdeploy.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,838 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,838 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,838 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls +2020-03-06 10:22:36,853 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,853 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,853 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls: webplatforminstaller: '5.0.50430.0': full_name: 'Microsoft Web Platform Installer 5.0' @@ -24362,15 +24228,15 @@ webplatforminstaller: locale: en_US reboot: False -2020-03-04 12:20:01,383 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,853 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('webplatforminstaller', OrderedDict([('5.0.50430.0', OrderedDict([('full_name', 'Microsoft Web Platform Installer 5.0'), ('installer', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('uninstaller', 'https://download.microsoft.com/download/C/F/F/CFF3A0B8-99D4-41A2-AE1A-496C08BEB904/WebPlatformInstaller_amd64_en-US.msi'), ('install_flags', '/qn /norestart'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,383 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,398 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,398 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,398 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls -2020-03-04 12:20:01,398 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,398 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,398 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: +2020-03-06 10:22:36,853 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\webplatforminstaller.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,853 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,870 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,870 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls +2020-03-06 10:22:36,870 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,870 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,870 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls: # Source: http://winappmanager.herokuapp.com/ @@ -24386,15 +24252,15 @@ win-app-manager: locale: en_US reboot: False -2020-03-04 12:20:01,398 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,884 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('win-app-manager', OrderedDict([('15.01.11', OrderedDict([('full_name', 'WinAppManager'), ('installer', 'https://iweb.dl.sourceforge.net/project/appdriverupdate/WinApp_Manager/WinAppManagerSetup_15.01.11.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinApp Manager\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,398 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,413 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,413 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,413 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls -2020-03-04 12:20:01,413 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,413 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,413 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: +2020-03-06 10:22:36,884 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\win-app-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,884 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,884 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,911 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls +2020-03-06 10:22:36,911 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,915 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'jinja' renderer: 0.003941535949707031 +2020-03-06 10:22:36,915 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls: @@ -24409,15 +24275,15 @@ windirstat: locale: en_US reboot: False -2020-03-04 12:20:01,413 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,915 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('windirstat', OrderedDict([('Not Found', OrderedDict([('full_name', 'WinDirStat 1.1.2'), ('installer', 'http://download01.windirstat.info/windirstat1_1_2_setup.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles(x86)%\\WinDirStat\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,429 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.01578497886657715 -2020-03-04 12:20:01,429 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,429 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,429 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls -2020-03-04 12:20:01,429 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,429 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,429 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: +2020-03-06 10:22:36,915 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\windirstat.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,915 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,931 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,931 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls +2020-03-06 10:22:36,931 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,931 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,931 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls: winhttpcertcfg: '5.2.3790.1060': full_name: 'Windows Resource Kit Tools - WinHttpCertCfg.exe' @@ -24429,15 +24295,15 @@ winhttpcertcfg: locale: en_US reboot: False -2020-03-04 12:20:01,444 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,931 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('winhttpcertcfg', OrderedDict([('5.2.3790.1060', OrderedDict([('full_name', 'Windows Resource Kit Tools - WinHttpCertCfg.exe'), ('installer', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://download.microsoft.com/download/4/5/b/45bab62d-cdd8-42c7-85d0-0275b96db2c5/winhttpcertcfg.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,444 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,444 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,444 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,444 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls -2020-03-04 12:20:01,444 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,460 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.016095399856567383 -2020-03-04 12:20:01,460 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: +2020-03-06 10:22:36,931 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winhttpcertcfg.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,946 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,946 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,946 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls +2020-03-06 10:22:36,963 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,963 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,963 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls: @@ -24465,15 +24331,15 @@ winmerge: reboot: False -2020-03-04 12:20:01,460 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,963 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('winmerge', OrderedDict([('2.16.0', OrderedDict([('full_name', 'WinMerge 2.16.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.16.0/WinMerge-2.16.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.14.0', OrderedDict([('full_name', 'WinMerge 2.14.0'), ('installer', 'https://downloads.sourceforge.net/project/winmerge/stable/2.14.0/WinMerge-2.14.0-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinMerge\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,460 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,460 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,475 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,475 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls -2020-03-04 12:20:01,475 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,475 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,475 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: +2020-03-06 10:22:36,963 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmerge.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,979 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,979 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,979 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls +2020-03-06 10:22:36,979 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:36,979 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:36,994 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls: winmtr: '0.92': @@ -24491,15 +24357,15 @@ winmtr: # download exe from winmtr.net # create two installers using http://www.ssesetup.com/ -2020-03-04 12:20:01,475 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:36,994 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('winmtr', OrderedDict([('0.92', OrderedDict([('full_name', 'WinMTR_x64 0.92'), ('installer', 'salt://win/repo-ng/winmtr/winmtr_x64-092.exe'), ('uninstaller', 'c:\\utl\\uninstall-winmtr_x64.exe'), ('install_flags', '/D="c:\\utl" /SILENT /NORESTART'), ('uninstall_flags', 'c:\\utl\\SSEun.dat /SILENT /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,475 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,491 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,491 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,491 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls -2020-03-04 12:20:01,491 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,507 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,507 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: +2020-03-06 10:22:36,994 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winmtr.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:36,994 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:36,994 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:36,994 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls +2020-03-06 10:22:37,010 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,010 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,010 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls: winpcap: '4.1.0.2980': full_name: 'WinPcap 4.1.3' @@ -24511,15 +24377,15 @@ winpcap: locale: en_US reboot: False -2020-03-04 12:20:01,507 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,010 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('winpcap', OrderedDict([('4.1.0.2980', OrderedDict([('full_name', 'WinPcap 4.1.3'), ('installer', 'https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe'), ('install_flags', '/S'), ('uninstaller', '%PROGRAMFILES%\\WinPcap\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,507 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,507 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,507 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,507 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls -2020-03-04 12:20:01,522 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,522 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,522 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: +2020-03-06 10:22:37,010 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winpcap.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,025 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,025 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,025 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls +2020-03-06 10:22:37,025 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,040 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'jinja' renderer: 0.015646696090698242 +2020-03-06 10:22:37,040 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls: #if possible use 5.70 or newer due to vulnerabilities (CVE-2018-20250, CVE-2018-20251, CVE-2018-20252, CVE-2018-20253) @@ -24554,15 +24420,15 @@ winrar: -2020-03-04 12:20:01,522 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,040 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('winrar', OrderedDict([('5.70.0', OrderedDict([('full_name', 'WinRAR 5.70 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-570.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.61.0', OrderedDict([('full_name', 'WinRAR 5.61 (64-bit)'), ('installer', 'https://www.rarlab.com/rar/winrar-x64-561.exe'), ('arch', 'x64'), ('uninstaller', '%ProgramFiles%\\WinRAR\\uninstall.exe'), ('install_flags', '/S'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,522 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,537 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,537 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,537 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls -2020-03-04 12:20:01,537 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,537 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,554 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: +2020-03-06 10:22:37,040 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winrar.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,056 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,056 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,056 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls +2020-03-06 10:22:37,056 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,074 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'jinja' renderer: 0.018050193786621094 +2020-03-06 10:22:37,074 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls: @@ -24829,15 +24695,15 @@ winscp: reboot: False -2020-03-04 12:20:01,554 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,074 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('winscp', OrderedDict([('5.17', OrderedDict([('full_name', 'WinSCP 5.17'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.17/WinSCP-5.17-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.9', OrderedDict([('full_name', 'WinSCP 5.15.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.9/WinSCP-5.15.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.7', OrderedDict([('full_name', 'WinSCP 5.15.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.7/WinSCP-5.15.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.5', OrderedDict([('full_name', 'WinSCP 5.15.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.5/WinSCP-5.15.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.4', OrderedDict([('full_name', 'WinSCP 5.15.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.4/WinSCP-5.15.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.3', OrderedDict([('full_name', 'WinSCP 5.15.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.3/WinSCP-5.15.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.2', OrderedDict([('full_name', 'WinSCP 5.15.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.2/WinSCP-5.15.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15.1', OrderedDict([('full_name', 'WinSCP 5.15.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15.1/WinSCP-5.15.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.15', OrderedDict([('full_name', 'WinSCP 5.15'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.15/WinSCP-5.15-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.9', OrderedDict([('full_name', 'WinSCP 5.13.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.9/WinSCP-5.13.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.8', OrderedDict([('full_name', 'WinSCP 5.13.8'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.8/WinSCP-5.13.8-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.7', OrderedDict([('full_name', 'WinSCP 5.13.7'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.7/WinSCP-5.13.7-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.6', OrderedDict([('full_name', 'WinSCP 5.13.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.6/WinSCP-5.13.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.5', OrderedDict([('full_name', 'WinSCP 5.13.5'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.5/WinSCP-5.13.5-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.4', OrderedDict([('full_name', 'WinSCP 5.13.4'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.4/WinSCP-5.13.4-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.3', OrderedDict([('full_name', 'WinSCP 5.13.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.3/WinSCP-5.13.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.2', OrderedDict([('full_name', 'WinSCP 5.13.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.2/WinSCP-5.13.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13.1', OrderedDict([('full_name', 'WinSCP 5.13.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13.1/WinSCP-5.13.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.13', OrderedDict([('full_name', 'WinSCP 5.13'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.13/WinSCP-5.13-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.3', OrderedDict([('full_name', 'WinSCP 5.11.3'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.3/WinSCP-5.11.3-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.2', OrderedDict([('full_name', 'WinSCP 5.11.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.2/WinSCP-5.11.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.11.1', OrderedDict([('full_name', 'WinSCP 5.11.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.11.1/WinSCP-5.11.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.6', OrderedDict([('full_name', 'WinSCP 5.9.6'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.6/WinSCP-5.9.6-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.2', OrderedDict([('full_name', 'WinSCP 5.9.2'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.2/WinSCP-5.9.2-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9.1', OrderedDict([('full_name', 'WinSCP 5.9.1'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9.1/WinSCP-5.9.1-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('5.9', OrderedDict([('full_name', 'WinSCP 5.9'), ('installer', 'https://downloads.sourceforge.net/project/winscp/WinSCP/5.9/WinSCP-5.9-Setup.exe'), ('install_flags', '/SP- /verysilent /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\WinSCP\\unins000.exe'), ('uninstall_flags', '/verysilent'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,554 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,554 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,554 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,569 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls -2020-03-04 12:20:01,569 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,569 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,569 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: +2020-03-06 10:22:37,074 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winscp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,089 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,089 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,089 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls +2020-03-06 10:22:37,089 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,105 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'jinja' renderer: 0.015499353408813477 +2020-03-06 10:22:37,105 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available wireshark: @@ -25359,15 +25225,15 @@ wireshark: reboot: False -2020-03-04 12:20:01,585 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,119 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('wireshark', OrderedDict([('3.0.4', OrderedDict([('full_name', 'Wireshark 3.0.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Wireshark 3.0.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.2', OrderedDict([('full_name', 'Wireshark 3.0.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.1', OrderedDict([('full_name', 'Wireshark 3.0.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Wireshark 3.0.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-3.0.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.6', OrderedDict([('full_name', 'Wireshark 2.6.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.5', OrderedDict([('full_name', 'Wireshark 2.6.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.4', OrderedDict([('full_name', 'Wireshark 2.6.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.3', OrderedDict([('full_name', 'Wireshark 2.6.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.2', OrderedDict([('full_name', 'Wireshark 2.6.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.1', OrderedDict([('full_name', 'Wireshark 2.6.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.6.0', OrderedDict([('full_name', 'Wireshark 2.6.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.6.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.12', OrderedDict([('full_name', 'Wireshark 2.4.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.11', OrderedDict([('full_name', 'Wireshark 2.4.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.10', OrderedDict([('full_name', 'Wireshark 2.4.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.9', OrderedDict([('full_name', 'Wireshark 2.4.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.8', OrderedDict([('full_name', 'Wireshark 2.4.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.7', OrderedDict([('full_name', 'Wireshark 2.4.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.6', OrderedDict([('full_name', 'Wireshark 2.4.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.5', OrderedDict([('full_name', 'Wireshark 2.4.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.4', OrderedDict([('full_name', 'Wireshark 2.4.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.3', OrderedDict([('full_name', 'Wireshark 2.4.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.2', OrderedDict([('full_name', 'Wireshark 2.4.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.1', OrderedDict([('full_name', 'Wireshark 2.4.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.4.0', OrderedDict([('full_name', 'Wireshark 2.4.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.4.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.17', OrderedDict([('full_name', 'Wireshark 2.2.17 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.17.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.16', OrderedDict([('full_name', 'Wireshark 2.2.16 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.16.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.15', OrderedDict([('full_name', 'Wireshark 2.2.15 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.15.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.14', OrderedDict([('full_name', 'Wireshark 2.2.14 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.14.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.13', OrderedDict([('full_name', 'Wireshark 2.2.13 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.13.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.12', OrderedDict([('full_name', 'Wireshark 2.2.12 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.12.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.11', OrderedDict([('full_name', 'Wireshark 2.2.11 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.11.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.10', OrderedDict([('full_name', 'Wireshark 2.2.10 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.10.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.9', OrderedDict([('full_name', 'Wireshark 2.2.9 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.9.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.8', OrderedDict([('full_name', 'Wireshark 2.2.8 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.8.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.7', OrderedDict([('full_name', 'Wireshark 2.2.7 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.7.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.6', OrderedDict([('full_name', 'Wireshark 2.2.6 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.6.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.5', OrderedDict([('full_name', 'Wireshark 2.2.5 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.5.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Wireshark 2.2.4 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.4.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.3', OrderedDict([('full_name', 'Wireshark 2.2.3 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.3.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.2', OrderedDict([('full_name', 'Wireshark 2.2.2 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.2.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.1', OrderedDict([('full_name', 'Wireshark 2.2.1 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.1.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('2.2.0', OrderedDict([('full_name', 'Wireshark 2.2.0 64-bit'), ('installer', 'https://1.na.dl.wireshark.org/win64/all-versions/Wireshark-win64-2.2.0.exe'), ('install_flags', '/S /desktopicon=yes /quicklaunchicon=yes'), ('uninstaller', '%ProgramFiles%\\Wireshark\\uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,585 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.01592707633972168 -2020-03-04 12:20:01,585 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,599 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,599 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls -2020-03-04 12:20:01,599 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,599 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,599 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: +2020-03-06 10:22:37,119 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wireshark.sls' using 'yaml' renderer: 0.014224529266357422 +2020-03-06 10:22:37,119 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,119 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,134 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls +2020-03-06 10:22:37,134 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,134 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,134 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls: # source: http://www.kls-soft.com/wscc/ wscc: '2.5.0.4': @@ -25382,15 +25248,15 @@ wscc: locale: en_US reboot: False -2020-03-04 12:20:01,599 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,134 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('wscc', OrderedDict([('2.5.0.4', OrderedDict([('full_name', 'WSCC 2.5.0.4'), ('installer', 'http://www.kls-soft.com/downloads/wscc_setup.exe'), ('install_flags', '/SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('uninstaller', '%PROGRAMFILES(x86)%\\WSCC\\unins000.exe'), ('uninstall_flags', '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,599 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,599 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,599 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,616 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls -2020-03-04 12:20:01,616 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,616 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,616 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: +2020-03-06 10:22:37,134 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wscc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,151 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,151 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,151 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls +2020-03-06 10:22:37,151 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,166 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'jinja' renderer: 0.015060663223266602 +2020-03-06 10:22:37,166 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls: # Allows install of Windows Updates on "Unsupported Hardware" on Win 7/8.1 # https://github.com/zeffy/wufuc @@ -25412,15 +25278,15 @@ wufuc: reboot: False -2020-03-04 12:20:01,616 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,166 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('wufuc', OrderedDict([('1.0.1.201', OrderedDict([('full_name', 'wufuc'), ('installer', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://github.com/zeffy/wufuc/releases/download/v1.0.1.201/wufuc_v1.0.1.201-x64.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,616 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,616 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,632 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,632 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls -2020-03-04 12:20:01,632 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,632 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,632 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: +2020-03-06 10:22:37,166 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wufuc.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,166 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,166 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,182 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls +2020-03-06 10:22:37,182 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,182 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,182 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls: xampp: '7.2.6.0': full_name: 'XAMPP 7.2.6' @@ -25432,15 +25298,15 @@ xampp: locale: en_US reboot: False -2020-03-04 12:20:01,632 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,182 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('xampp', OrderedDict([('7.2.6.0', OrderedDict([('full_name', 'XAMPP 7.2.6'), ('installer', 'https://downloads.sourceforge.net/project/xampp/XAMPP%20Windows/7.2.6/xampp-win32-7.2.6-0-VC15-installer.exe'), ('install_flags', '--mode unattended'), ('uninstaller', 'c:\\xampp\\uninstall.exe'), ('uninstall_flags', '--mode unattended'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,632 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,647 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,647 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,647 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls -2020-03-04 12:20:01,647 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,647 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,647 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: +2020-03-06 10:22:37,182 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xampp.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,182 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,197 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,197 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls +2020-03-06 10:22:37,197 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,197 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,197 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls: # just 32-bit x86 installer available @@ -25457,15 +25323,15 @@ xming: locale: en_US reboot: False -2020-03-04 12:20:01,663 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,197 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('xming', OrderedDict([('6.9.0.31', OrderedDict([('full_name', 'Xming 6.9.0.31'), ('installer', 'https://downloads.sourceforge.net/project/xming/Xming/6.9.0.31/Xming-6-9-0-31-setup.exe'), ('install_flags', '/SP- /verysilent /suppressmsgboxes /norestart'), ('uninstaller', '%ProgramFiles(x86)%\\Xming\\unins000.exe'), ('uninstall_flags', '/SP- /verysilent /norestart'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,663 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,663 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,663 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,663 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls -2020-03-04 12:20:01,663 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,680 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.017094135284423828 -2020-03-04 12:20:01,680 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: +2020-03-06 10:22:37,213 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\xming.sls' using 'yaml' renderer: 0.015634536743164062 +2020-03-06 10:22:37,213 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,213 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,213 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls +2020-03-06 10:22:37,213 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,229 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'jinja' renderer: 0.01609206199645996 +2020-03-06 10:22:37,229 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls: yubikey-manager: @@ -25531,15 +25397,15 @@ yubikey-manager: reboot: False -2020-03-04 12:20:01,680 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,229 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('yubikey-manager', OrderedDict([('1.1.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.1.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('1.0.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-1.0.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.2', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.2-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.1', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.1-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)])), ('0.5.0', OrderedDict([('full_name', 'YubiKey Manager'), ('installer', 'https://developers.yubico.com/yubikey-manager-qt/Releases/yubikey-manager-qt-0.5.0-win64.exe'), ('install_flags', '/S'), ('uninstaller', '%ProgramFiles%\\Yubico\\YubiKey Manager\\ykman-uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,680 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,680 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,680 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,680 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls -2020-03-04 12:20:01,696 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,696 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,696 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: +2020-03-06 10:22:37,229 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-manager.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,244 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,244 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,244 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls +2020-03-06 10:22:37,244 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,260 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'jinja' renderer: 0.0162198543548584 +2020-03-06 10:22:37,260 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls: yubikey-personalization-tool: '3.1.24': full_name: 'YubiKey Personalization Tool' @@ -25549,15 +25415,15 @@ yubikey-personalization-tool: uninstall_flags: '/S' reboot: False -2020-03-04 12:20:01,696 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,260 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDict([('full_name', 'YubiKey Personalization Tool'), ('installer', 'https://developers.yubico.com/yubikey-personalization-gui/Releases/yubikey-personalization-gui-3.1.24.exe'), ('install_flags', '/S'), ('uninstaller', 'C:\\Program Files (x86)\\Yubico\\YubiKey Personalization Tool\\uninstall.exe'), ('uninstall_flags', '/S'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,696 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,696 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,696 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,712 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls -2020-03-04 12:20:01,712 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,726 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.014135122299194336 -2020-03-04 12:20:01,726 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: +2020-03-06 10:22:37,260 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\yubikey-personalization-tool.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,260 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,278 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,278 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls +2020-03-06 10:22:37,278 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,291 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'jinja' renderer: 0.013029098510742188 +2020-03-06 10:22:37,291 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls: # both 32-bit (x86) AND a 64-bit (AMD64) installer available @@ -25565,11 +25431,11 @@ OrderedDict([('yubikey-personalization-tool', OrderedDict([('3.1.24', OrderedDic zabbix-agent: - '3.0.26.2400': + '4.4.1.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25577,11 +25443,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.27.2400': + '4.4.2.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25589,11 +25455,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.28.2400': + '4.4.3.2400': - full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + full_name: 'Zabbix Agent (64-bit)' + installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25601,11 +25467,11 @@ zabbix-agent: locale: en_US reboot: False - '3.0.29.2400': + '4.4.4.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25787,11 +25653,11 @@ zabbix-agent: - '4.4.1.2400': + '3.0.26.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25799,11 +25665,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.2.2400': + '3.0.27.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25811,11 +25677,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.3.2400': + '3.0.28.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25823,11 +25689,11 @@ zabbix-agent: locale: en_US reboot: False - '4.4.4.2400': + '3.0.29.2400': full_name: 'Zabbix Agent (64-bit)' - installer: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' - uninstaller: 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi' + installer: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' + uninstaller: 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi' install_flags: '/qn /norestart SERVER=localhost' uninstall_flags: '/qn /norestart' @@ -25837,15 +25703,15 @@ zabbix-agent: -2020-03-04 12:20:01,726 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: -OrderedDict([('zabbix-agent', OrderedDict([('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,726 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,726 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,741 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,741 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls -2020-03-04 12:20:01,741 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,741 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,741 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: +2020-03-06 10:22:37,291 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: +OrderedDict([('zabbix-agent', OrderedDict([('4.4.1.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.1/zabbix_agent-4.4.1-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.2.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.2/zabbix_agent-4.4.2-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.3/zabbix_agent-4.4.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.4.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.4.4/zabbix_agent-4.4.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.9.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.9/zabbix_agent-4.0.9-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.10.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.10/zabbix_agent-4.0.10-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.11.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.11/zabbix_agent-4.0.11-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.12.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.12/zabbix_agent-4.0.12-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.13.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.13/zabbix_agent-4.0.13-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.14.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.14/zabbix_agent-4.0.14-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.15.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.15/zabbix_agent-4.0.15-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.0.16.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.0.16/zabbix_agent-4.0.16-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.3.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.3/zabbix_agent-4.2.3-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.4.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.4/zabbix_agent-4.2.4-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.5.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.5/zabbix_agent-4.2.5-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.6.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.6/zabbix_agent-4.2.6-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.7.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.7/zabbix_agent-4.2.7-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('4.2.8.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/4.2.8/zabbix_agent-4.2.8-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.26.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.26/zabbix_agent-3.0.26-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.27.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.27/zabbix_agent-3.0.27-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.28.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.28/zabbix_agent-3.0.28-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)])), ('3.0.29.2400', OrderedDict([('full_name', 'Zabbix Agent (64-bit)'), ('installer', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('uninstaller', 'https://www.zabbix.com/downloads/3.0.29/zabbix_agent-3.0.29-windows-amd64-openssl.msi'), ('install_flags', '/qn /norestart SERVER=localhost'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('locale', 'en_US'), ('reboot', False)]))]))]) +2020-03-06 10:22:37,307 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zabbix-agent.sls' using 'yaml' renderer: 0.015346050262451172 +2020-03-06 10:22:37,307 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,307 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,307 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls +2020-03-06 10:22:37,322 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,322 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,322 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls: zoom: latest: @@ -25857,15 +25723,15 @@ zoom: msiexec: True reboot: False -2020-03-04 12:20:01,741 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,322 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('zoom', OrderedDict([('latest', OrderedDict([('full_name', 'Zoom'), ('installer', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('install_flags', '/qn /norestart'), ('uninstaller', 'https://www.zoom.us/client/latest/ZoomInstallerFull.msi'), ('uninstall_flags', '/qn /norestart'), ('msiexec', True), ('reboot', False)]))]))]) -2020-03-04 12:20:01,741 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,741 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,757 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,757 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls -2020-03-04 12:20:01,757 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,757 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,757 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: +2020-03-06 10:22:37,338 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zoom.sls' using 'yaml' renderer: 0.015137195587158203 +2020-03-06 10:22:37,338 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,338 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,338 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls +2020-03-06 10:22:37,353 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,353 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,353 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls: # Software Definition File for Elasticsearch Auditbeat # Uses the following associated scripts @@ -25927,15 +25793,15 @@ auditbeat: cache_dir: True -2020-03-04 12:20:01,757 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,353 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('auditbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Auditbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/auditbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,757 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,772 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,772 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,772 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls -2020-03-04 12:20:01,772 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,772 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,772 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: +2020-03-06 10:22:37,369 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\auditbeat\init.sls' using 'yaml' renderer: 0.015354633331298828 +2020-03-06 10:22:37,369 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,369 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,369 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls +2020-03-06 10:22:37,369 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,384 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'jinja' renderer: 0.015634536743164062 +2020-03-06 10:22:37,384 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls: chocolatey: latest: full_name: 'Chocolatey' @@ -25949,15 +25815,15 @@ chocolatey: # https://github.com/saltstack/salt/issues/15709#issuecomment-118330172 -2020-03-04 12:20:01,772 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,384 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('chocolatey', OrderedDict([('latest', OrderedDict([('full_name', 'Chocolatey'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/install.cmd'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/chocolatey/uninstall.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,772 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,788 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,788 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,788 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls -2020-03-04 12:20:01,788 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,805 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.016656160354614258 -2020-03-04 12:20:01,805 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: +2020-03-06 10:22:37,384 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\chocolatey\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,401 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,401 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls +2020-03-06 10:22:37,401 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,416 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'jinja' renderer: 0.01546335220336914 +2020-03-06 10:22:37,416 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls: @@ -25985,15 +25851,15 @@ erlang: reboot: False -2020-03-04 12:20:01,805 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,416 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('erlang', OrderedDict([('19.3', OrderedDict([('full_name', 'Erlang OTP 19 (8.3)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_19.3.exe" "otp_win64_19.3.exe" "19.3" "Erlang OTP 19 (8.3)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl8.3\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)])), ('21.0.1', OrderedDict([('full_name', 'Erlang OTP 21 (10.0.1)'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/erlang/install.cmd'), ('install_flags', '"http://erlang.org/download/otp_win64_21.0.1.exe" "otp_win64_21.0.1.exe" "21.0.1" "Erlang OTP 21 (10.0.1)" "/S"'), ('uninstaller', '%ProgramFiles%\\erl10.0.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False)]))]))]) -2020-03-04 12:20:01,805 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,805 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,805 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,805 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls -2020-03-04 12:20:01,819 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,819 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,819 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: +2020-03-06 10:22:37,416 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\erlang\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,432 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,432 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,432 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls +2020-03-06 10:22:37,447 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,447 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,447 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls: # Software Definition File for Elasticsearch Filebeat # Uses the following associated scripts @@ -26055,15 +25921,15 @@ filebeat: cache_dir: True -2020-03-04 12:20:01,834 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,463 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('filebeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Filebeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/filebeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,835 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.015306949615478516 -2020-03-04 12:20:01,835 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,835 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,835 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls -2020-03-04 12:20:01,835 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,835 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,850 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: +2020-03-06 10:22:37,463 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\filebeat\init.sls' using 'yaml' renderer: 0.016126632690429688 +2020-03-06 10:22:37,463 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,463 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,478 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls +2020-03-06 10:22:37,478 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,478 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,494 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls: # Software Definition File for Elasticsearch Functionbeat # Uses the following associated scripts @@ -26125,15 +25991,15 @@ functionbeat: cache_dir: True -2020-03-04 12:20:01,850 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,494 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('functionbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Functionbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/functionbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,850 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,850 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,850 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,850 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls -2020-03-04 12:20:01,866 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,866 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,866 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: +2020-03-06 10:22:37,494 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\functionbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,494 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,510 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,510 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls +2020-03-06 10:22:37,526 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,541 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'jinja' renderer: 0.015639543533325195 +2020-03-06 10:22:37,541 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls: # just 32-bit x86 installer available @@ -26232,15 +26098,15 @@ gpg4win: reboot: False -2020-03-04 12:20:01,881 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,541 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('gpg4win', OrderedDict([('3.1.7', OrderedDict([('full_name', 'Gpg4win (3.1.7)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.1.7.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.3', OrderedDict([('full_name', 'Gpg4win (3.0.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('3.0.0', OrderedDict([('full_name', 'Gpg4win (3.0.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-3.0.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.4', OrderedDict([('full_name', 'Gpg4win (2.3.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.3', OrderedDict([('full_name', 'Gpg4win (2.3.3)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.3.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.2', OrderedDict([('full_name', 'Gpg4win (2.3.2)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.2.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.1', OrderedDict([('full_name', 'Gpg4win (2.3.1)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.1.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.3.0', OrderedDict([('full_name', 'Gpg4win (2.3.0)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.3.0.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)])), ('2.2.4', OrderedDict([('full_name', 'Gpg4win (2.2.4)'), ('installer', 'http://files.gpg4win.org/gpg4win-2.2.4.exe'), ('install_flags', '/S /C=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\gpg4win\\silent.ini'), ('uninstaller', '%ProgramFiles(x86)%\\gpg4win\\gpg4win-uninstall.exe'), ('uninstall_flags', '/S'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/gpg4win/silent.ini'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:20:01,881 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.015072345733642578 -2020-03-04 12:20:01,881 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,881 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,881 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls -2020-03-04 12:20:01,881 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,897 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.01607489585876465 -2020-03-04 12:20:01,897 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: +2020-03-06 10:22:37,541 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\gpg4win\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,557 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,557 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,557 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls +2020-03-06 10:22:37,557 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,573 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'jinja' renderer: 0.015102624893188477 +2020-03-06 10:22:37,573 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls: # Software Definition File for Elasticsearch Heartbeat # Uses the following associated scripts @@ -26302,15 +26168,15 @@ heartbeat: cache_dir: True -2020-03-04 12:20:01,897 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,573 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('heartbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Heartbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/heartbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,897 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,897 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,897 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,897 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls -2020-03-04 12:20:01,914 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,914 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,914 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: +2020-03-06 10:22:37,573 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\heartbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,588 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,588 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,588 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls +2020-03-06 10:22:37,604 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,604 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,604 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls: # Software Definition File for Elasticsearch Metricbeat # Uses the following associated scripts @@ -26372,15 +26238,15 @@ metricbeat: cache_dir: True -2020-03-04 12:20:01,914 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,604 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('metricbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Metricbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/metricbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,914 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,929 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,929 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,929 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls -2020-03-04 12:20:01,929 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,929 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,929 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: +2020-03-06 10:22:37,604 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\metricbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,620 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,620 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,620 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls +2020-03-06 10:22:37,620 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,620 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,635 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls: # Software Definition File for Elasticsearch Packetbeat # Uses the following associated scripts @@ -26442,15 +26308,15 @@ packetbeat: cache_dir: True -2020-03-04 12:20:01,929 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,635 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('packetbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Packetbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/packetbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,944 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.015593528747558594 -2020-03-04 12:20:01,944 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,944 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,944 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls -2020-03-04 12:20:01,944 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,960 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.015589237213134766 -2020-03-04 12:20:01,960 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: +2020-03-06 10:22:37,635 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\packetbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,635 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,635 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,635 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls +2020-03-06 10:22:37,651 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,651 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,651 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls: @@ -26469,15 +26335,15 @@ pycharm-pro: reboot: False -2020-03-04 12:20:01,960 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,651 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('pycharm-pro', OrderedDict([('191.6605.12', OrderedDict([('installer', 'https://download.jetbrains.com/python/pycharm-professional-2019.1.1.exe'), ('full_name', 'JetBrains Pycharm 2019.1.1'), ('install_flags', '/S /CONFIG=C:\\salt\\var\\cache\\salt\\minion\\files\\base\\win\\repo-ng\\salt-winrepo-ng\\pycharm-pro\\silent.config'), ('cache_file', 'salt://win/repo-ng/salt-winrepo-ng/pycharm-pro/silent.config'), ('uninstaller', '%ProgramFiles(x86)%\\JetBrains\\PyCharm 2019.1.1\\Uninstall.exe'), ('uninstall_flags', '/S'), ('msiexec', False), ('reboot', False)]))]))]) -2020-03-04 12:20:01,960 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,960 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,960 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,960 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls -2020-03-04 12:20:01,960 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,975 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.015630245208740234 -2020-03-04 12:20:01,975 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: +2020-03-06 10:22:37,651 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\pycharm-pro\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,667 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls +2020-03-06 10:22:37,667 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,683 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'jinja' renderer: 0.015590906143188477 +2020-03-06 10:22:37,683 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls: # just 32-bit x86 installer available @@ -26492,15 +26358,15 @@ stayawake: uninstall_flags: '/S' -2020-03-04 12:20:01,975 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,683 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('stayawake', OrderedDict([('1.0', OrderedDict([('full_name', 'StayAwake'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/stayawake/install.cmd'), ('install_flags', '"https://downloads.sourceforge.net/projects/stayawake/" "StayAwake-setup.exe" "1.0" "/S"'), ('uninstaller', '%PROGRAMFILES(x86)%\\StayAwake\\uninstall.exe'), ('uninstall_flags', '/S')]))]))]) -2020-03-04 12:20:01,975 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:01,975 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:01,975 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:01,975 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls -2020-03-04 12:20:01,991 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:01,991 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:01,991 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: +2020-03-06 10:22:37,683 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\stayawake\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,683 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,683 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,697 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls +2020-03-06 10:22:37,697 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,713 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'jinja' renderer: 0.016077041625976562 +2020-03-06 10:22:37,713 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls: # Software Definition File for Elasticsearch Winlogbeat # Uses the following associated scripts @@ -26562,31 +26428,31 @@ winlogbeat: cache_dir: True -2020-03-04 12:20:01,991 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,713 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('winlogbeat', OrderedDict([('7.3.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.3.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.2.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.2.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('7.1.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '7.1.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.2', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.2'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.1', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.1'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)])), ('6.8.0', OrderedDict([('full_name', 'Winlogbeat'), ('installer', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/install.cmd'), ('install_flags', '6.8.0'), ('uninstaller', 'salt://win/repo-ng/salt-winrepo-ng/winlogbeat/remove.cmd'), ('cache_dir', True)]))]))]) -2020-03-04 12:20:01,991 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:02,007 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:02,007 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:02,007 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls -2020-03-04 12:20:02,007 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:02,007 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 -2020-03-04 12:20:02,007 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: +2020-03-06 10:22:37,713 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\winlogbeat\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,713 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,729 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,729 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls +2020-03-06 10:22:37,729 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,729 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'jinja' renderer: 0.0 +2020-03-06 10:22:37,729 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls: ############################################################# # Windows ############################################################# # -2020-03-04 12:20:02,007 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,729 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: {} -2020-03-04 12:20:02,023 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.01561594009399414 -2020-03-04 12:20:02,023 [salt.loaded.int.module.win_pkg:1213][DEBUG ][3760] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing -2020-03-04 12:20:02,023 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:02,023 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:02,023 [salt.template :59 ][DEBUG ][3760] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls -2020-03-04 12:20:02,023 [salt.utils.jinja :85 ][DEBUG ][3760] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] -2020-03-04 12:20:02,039 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.016034841537475586 -2020-03-04 12:20:02,039 [salt.template :120 ][DEBUG ][3760] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: +2020-03-06 10:22:37,745 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\wmi_provider\init.sls' using 'yaml' renderer: 0.016615867614746094 +2020-03-06 10:22:37,745 [salt.loaded.int.module.win_pkg:1217][DEBUG ][5108] No data within 'salt-winrepo-ng\wmi_provider\init.sls' after processing +2020-03-06 10:22:37,745 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:37,745 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:37,745 [salt.template :59 ][DEBUG ][5108] compile template: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls +2020-03-06 10:22:37,745 [salt.utils.jinja :85 ][DEBUG ][5108] Jinja search path: ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\kitchen\\var\\cache\\salt\\minion\\files\\base'] +2020-03-06 10:22:37,760 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'jinja' renderer: 0.015148162841796875 +2020-03-06 10:22:37,760 [salt.template :120 ][DEBUG ][5108] Rendered data from file: C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls: # only 32-bit (x86) installer available @@ -26620,1265 +26486,465 @@ zipinstaller: # as well as the 'zipinst.exe' and 'cache_dir: True' will copy all files from master to minion cache # -2020-03-04 12:20:02,039 [salt.loaded.int.render.yaml:80 ][DEBUG ][3760] Results of YAML rendering: +2020-03-06 10:22:37,760 [salt.loaded.int.render.yaml:80 ][DEBUG ][5108] Results of YAML rendering: OrderedDict([('zipinstaller', OrderedDict([('1.21', OrderedDict([('full_name', 'ZipInstaller'), ('installer', 'salt://win/repo-ng/zipinstaller/zipinst.exe'), ('install_flags', '/i zipinst_x64.zip'), ('uninstaller', 'zipinst.exe'), ('uninstall_flags', '/uninst "c:\\utl\\uninst1~.nsu"'), ('msiexec', False), ('locale', 'en_US'), ('reboot', False), ('cache_dir', True)]))]))]) -2020-03-04 12:20:02,039 [salt.template :26 ][PROFILE ][3760] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 -2020-03-04 12:20:02,054 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. -2020-03-04 12:20:02,054 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' -2020-03-04 12:20:02,101 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: Volume in drive C is Windows 2019 +2020-03-06 10:22:37,760 [salt.template :30 ][PROFILE ][5108] Time (in seconds) to render 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng\zipinstaller\init.sls' using 'yaml' renderer: 0.0 +2020-03-06 10:22:37,791 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad module.mod_run_check_cmd: 'module.mod_run_check_cmd' is not available. +2020-03-06 10:22:37,791 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'dir C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng' in directory 'C:\Users\vagrant' +2020-03-06 10:22:37,854 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: Volume in drive C is Windows 2019 Volume Serial Number is 7CC7-4EE7 Directory of C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base\win\repo-ng\salt-winrepo-ng -03/04/2020 03:19 PM . -03/04/2020 03:19 PM .. -03/04/2020 03:19 PM 927 7zip.sls -03/04/2020 03:19 PM 723 activeperl_x64.sls -03/04/2020 03:19 PM 973 activeperl_x86.sls -03/04/2020 03:19 PM 798 adobeair.sls -03/04/2020 03:19 PM 956 adobereader-dc-classic.sls -03/04/2020 03:19 PM 851 adobereader-xi.sls -03/04/2020 03:19 PM 830 adobereader.sls -03/04/2020 03:19 PM 589 adobeshockwaveplayer.sls -03/04/2020 03:19 PM 775 adv-ip-scanner.sls -03/04/2020 03:19 PM 787 adv-port-scanner.sls -03/04/2020 03:19 PM 769 advancedlogging.sls -03/04/2020 03:19 PM 373 anydesk-msi.sls -03/04/2020 03:19 PM 597 anydesk.sls -03/04/2020 03:19 PM 803 applicationrequestrouting.sls -03/04/2020 03:19 PM 370 aspnet-mvc1.sls -03/04/2020 03:19 PM 439 atom.sls -03/04/2020 03:19 PM 655 audacity.sls -03/04/2020 03:19 PM auditbeat -03/04/2020 03:19 PM 1,768 autohotkey.sls -03/04/2020 03:19 PM 611 autoit.sls -03/04/2020 03:19 PM 670 autopsy.sls -03/04/2020 03:19 PM 659 awscli.sls -03/04/2020 03:19 PM 799 azuredatastudio.sls -03/04/2020 03:19 PM 422 bandizip.sls -03/04/2020 03:19 PM 563 belarc-advisor.sls -03/04/2020 03:19 PM 367 bginfo4x.sls -03/04/2020 03:19 PM 547 bitnami-nginxstack.sls -03/04/2020 03:19 PM 568 bitvise.sls -03/04/2020 03:19 PM 777 blender.sls -03/04/2020 03:19 PM 395 bootracer.sls -03/04/2020 03:19 PM 664 bulkrenameutility.sls -03/04/2020 03:19 PM 661 bulk_extractor.sls -03/04/2020 03:19 PM 476 ccleaner-slim.sls -03/04/2020 03:19 PM 445 ccleaner.sls -03/04/2020 03:19 PM 606 cdburnerxp.sls -03/04/2020 03:19 PM 594 cdroller.sls -03/04/2020 03:19 PM 658 check-mk-agent-msi.sls -03/04/2020 03:19 PM 451 check-mk-agent.sls -03/04/2020 03:19 PM chocolatey -03/04/2020 03:19 PM 394 chrome-rdp.sls -03/04/2020 03:19 PM 375 chrome.sls -03/04/2020 03:19 PM 1,296 clamav.sls -03/04/2020 03:19 PM 1,200 clamwin.sls -03/04/2020 03:19 PM 500 classicshell.sls -03/04/2020 03:19 PM 1,521 clink.sls -03/04/2020 03:19 PM 617 conemu.sls -03/04/2020 03:19 PM 687 cpu-z.sls -03/04/2020 03:19 PM 2,833 curl.sls -03/04/2020 03:19 PM 374 cyberduck-cli.sls -03/04/2020 03:19 PM 616 cyberduck-msi.sls -03/04/2020 03:19 PM 639 cyberduck.sls -03/04/2020 03:19 PM 751 defraggler.sls -03/04/2020 03:19 PM 2,637 dotnet.sls -03/04/2020 03:19 PM 643 dropbox.sls -03/04/2020 03:19 PM 683 duplicati.sls -03/04/2020 03:19 PM 712 dvdstyler.sls -03/04/2020 03:19 PM 737 echo-desktop.sls -03/04/2020 03:19 PM 1,327 eea.sls -03/04/2020 03:19 PM 423 emet.sls -03/04/2020 03:19 PM 625 emsisoft-anti-malware.sls -03/04/2020 03:19 PM 721 eraser.sls -03/04/2020 03:19 PM erlang -03/04/2020 03:19 PM 982 evernote.sls -03/04/2020 03:19 PM 531 fiddler.sls -03/04/2020 03:19 PM filebeat -03/04/2020 03:19 PM 660 filehippo-app-manager.sls -03/04/2020 03:19 PM 1,271 filezilla.sls -03/04/2020 03:19 PM 1,115 firefox-esr_x64.sls -03/04/2020 03:19 PM 1,396 firefox-esr_x86.sls -03/04/2020 03:19 PM 1,365 firefox_x64.sls -03/04/2020 03:19 PM 1,870 firefox_x86.sls -03/04/2020 03:19 PM functionbeat -03/04/2020 03:19 PM 552 gedit.sls -03/04/2020 03:19 PM 822 gimp.sls -03/04/2020 03:19 PM 953 git-extensions.sls -03/04/2020 03:19 PM 3,855 git.sls -03/04/2020 03:19 PM 848 glarysoft-absolute-uninstaller.sls -03/04/2020 03:19 PM 563 gnucash.sls -03/04/2020 03:19 PM 2,152 golang.sls -03/04/2020 03:19 PM 320 goodsync.sls -03/04/2020 03:19 PM 601 gow.sls -03/04/2020 03:19 PM gpg4win -03/04/2020 03:19 PM 847 gpg4win-light.sls -03/04/2020 03:19 PM 621 gpg4win-vanilla.sls -03/04/2020 03:19 PM 544 graylog-collector-sidecar.sls -03/04/2020 03:19 PM 2,661 grepwin.sls -03/04/2020 03:19 PM 505 gvim.sls -03/04/2020 03:19 PM 622 handbrake.sls -03/04/2020 03:19 PM heartbeat -03/04/2020 03:19 PM 503 hipchat.sls -03/04/2020 03:19 PM 771 hostsfileeditor.sls -03/04/2020 03:19 PM 623 hwinfo.sls -03/04/2020 03:19 PM 339 ice.sls -03/04/2020 03:19 PM 493 icecast.sls -03/04/2020 03:19 PM 377 icloud.sls -03/04/2020 03:19 PM 2,197 iismediaservices.sls -03/04/2020 03:19 PM 358 influx-capacitor.sls -03/04/2020 03:19 PM 644 inkscape.sls -03/04/2020 03:19 PM 646 intellij-community.sls -03/04/2020 03:19 PM 618 intellij-ultimate.sls -03/04/2020 03:19 PM 360 internet-evidence-finder.sls -03/04/2020 03:19 PM 702 irfanview-plugins.sls -03/04/2020 03:19 PM 1,610 irfanview.sls -03/04/2020 03:19 PM 697 isapirewrite-lite.sls -03/04/2020 03:19 PM 2,602 itunes.sls -03/04/2020 03:19 PM 1,279 jdk8.sls -03/04/2020 03:19 PM 1,200 jre.sls -03/04/2020 03:19 PM 1,480 jre8.sls -03/04/2020 03:19 PM 995 jungledisk-server-management.sls -03/04/2020 03:19 PM 891 jungledisk-server.sls -03/04/2020 03:19 PM 921 jungledisk-workgroup.sls -03/04/2020 03:19 PM 518 kdiff3.sls -03/04/2020 03:19 PM 1,091 keepass-2x.sls -03/04/2020 03:19 PM 2,655 keepass.sls -03/04/2020 03:19 PM 673 lastpass.sls -03/04/2020 03:19 PM 1,329 lazarus.sls -03/04/2020 03:19 PM 951 libreoffice.sls -03/04/2020 03:19 PM 419 logparser.sls -03/04/2020 03:19 PM 2,627 maas360bootanalyzer.sls -03/04/2020 03:19 PM 722 malwarebytes.sls -03/04/2020 03:19 PM 1,884 mariadb.sls -03/04/2020 03:19 PM 653 mercurial.sls -03/04/2020 03:19 PM 649 messageanalyzer.sls -03/04/2020 03:19 PM metricbeat -03/04/2020 03:19 PM 603 microsoft-build-tools.sls -03/04/2020 03:19 PM 317 mikogo.sls -03/04/2020 03:19 PM 766 miktex-basic.sls -03/04/2020 03:19 PM 787 mongodb.sls -03/04/2020 03:19 PM 831 ms-mbsa.sls -03/04/2020 03:19 PM 419 ms-vcpp-2005-atl-redist_x64.sls -03/04/2020 03:19 PM 413 ms-vcpp-2005-atl-redist_x86.sls -03/04/2020 03:19 PM 412 ms-vcpp-2005-redist_x64.sls -03/04/2020 03:19 PM 406 ms-vcpp-2005-redist_x86.sls -03/04/2020 03:19 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls -03/04/2020 03:19 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls -03/04/2020 03:19 PM 416 ms-vcpp-2005-sp1-redist_x64.sls -03/04/2020 03:19 PM 410 ms-vcpp-2005-sp1-redist_x86.sls -03/04/2020 03:19 PM 434 ms-vcpp-2008-redist_x64.sls -03/04/2020 03:19 PM 434 ms-vcpp-2008-redist_x86.sls -03/04/2020 03:19 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls -03/04/2020 03:19 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls -03/04/2020 03:19 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls -03/04/2020 03:19 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls -03/04/2020 03:19 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls -03/04/2020 03:19 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls -03/04/2020 03:19 PM 493 ms-vcpp-2012-redist_x64.sls -03/04/2020 03:19 PM 495 ms-vcpp-2012-redist_x86.sls -03/04/2020 03:19 PM 503 ms-vcpp-2013-redist_x64.sls -03/04/2020 03:19 PM 503 ms-vcpp-2013-redist_x86.sls -03/04/2020 03:19 PM 481 ms-vcpp-2015-build-tools.sls -03/04/2020 03:19 PM 1,407 ms-vcpp-2015-redist_x64.sls -03/04/2020 03:19 PM 1,407 ms-vcpp-2015-redist_x86.sls -03/04/2020 03:19 PM 1,166 ms-vcpp-2017-redist_x64.sls -03/04/2020 03:19 PM 539 ms-vcpp-2017-redist_x86.sls -03/04/2020 03:19 PM 585 mucommander.sls -03/04/2020 03:19 PM 638 mysql-essential.sls -03/04/2020 03:19 PM 632 mysql-installer-community.sls -03/04/2020 03:19 PM 639 mysql-workbench.sls -03/04/2020 03:19 PM 298 never10.sls -03/04/2020 03:19 PM 929 newrelic-infra.sls -03/04/2020 03:19 PM 526 nextcloud-client.sls -03/04/2020 03:19 PM 584 nmap.sls -03/04/2020 03:19 PM 709 node.js-lts.sls -03/04/2020 03:19 PM 733 node.js.sls -03/04/2020 03:19 PM 368 nomacs.sls -03/04/2020 03:19 PM 985 npp.sls -03/04/2020 03:19 PM 1,252 nsclient.sls -03/04/2020 03:19 PM 826 nsis.sls -03/04/2020 03:19 PM 902 ntp.sls -03/04/2020 03:19 PM 793 nunit-console.sls -03/04/2020 03:19 PM 363 nxlog.sls -03/04/2020 03:19 PM 1,081 octopus-tentacle.sls -03/04/2020 03:19 PM 678 openlp.sls -03/04/2020 03:19 PM 1,192 openoffice.sls -03/04/2020 03:19 PM 2,130 openvpn.sls -03/04/2020 03:19 PM 587 osquery.sls -03/04/2020 03:19 PM 878 ossec-agent.sls -03/04/2020 03:19 PM 590 owncloud.sls -03/04/2020 03:19 PM packetbeat -03/04/2020 03:19 PM 400 pandoc.sls -03/04/2020 03:19 PM 814 parallels-client-15.sls -03/04/2020 03:19 PM 1,709 pass4win.sls -03/04/2020 03:19 PM 378 passware-kit-agent.sls -03/04/2020 03:19 PM 416 passware-kit-forensic.sls -03/04/2020 03:19 PM 656 patchmypc-free.sls -03/04/2020 03:19 PM 638 pdf24creator.sls -03/04/2020 03:19 PM 567 pdfcreator.sls -03/04/2020 03:19 PM 611 peazip.sls -03/04/2020 03:19 PM 812 pgadmin4.sls -03/04/2020 03:19 PM 235 pgina.sls -03/04/2020 03:19 PM 617 pidgin.sls -03/04/2020 03:19 PM 1,898 postgresql.sls -03/04/2020 03:19 PM 997 powerbi-desktop.sls -03/04/2020 03:19 PM 864 powershell-core.sls -03/04/2020 03:19 PM 1,172 prometheus-wmi-exporter.sls -03/04/2020 03:19 PM 1,488 putty.sls -03/04/2020 03:19 PM pycharm-pro -03/04/2020 03:19 PM 567 python2_x64.sls -03/04/2020 03:19 PM 526 python2_x86.sls -03/04/2020 03:19 PM 1,540 python3_x64.sls -03/04/2020 03:19 PM 1,435 python3_x86.sls -03/04/2020 03:19 PM 449 qemu.sls -03/04/2020 03:19 PM 562 queueexplorerpro.sls -03/04/2020 03:19 PM 1,542 quicktime.sls -03/04/2020 03:19 PM 495 rabbitmq.sls -03/04/2020 03:19 PM 379 rakudo-star-no-jit_x86.sls -03/04/2020 03:19 PM 375 rakudo-star_x64.sls -03/04/2020 03:19 PM 888 rasclient.sls -03/04/2020 03:19 PM 444 rdcman.sls -03/04/2020 03:19 PM 609 rocketchat.sls -03/04/2020 03:19 PM 526 rubyinstaller_x64.sls -03/04/2020 03:19 PM 551 rubyinstaller_x86.sls -03/04/2020 03:19 PM 3,719 salt-minion-py2.sls -03/04/2020 03:19 PM 2,050 salt-minion-py3.sls -03/04/2020 03:19 PM 562 sandboxie.sls -03/04/2020 03:19 PM 581 scaleout.sls -03/04/2020 03:19 PM 476 secunia.psi.sls -03/04/2020 03:19 PM 1,190 sensu.sls -03/04/2020 03:19 PM 1,827 sharpdevelop.sls -03/04/2020 03:19 PM 539 skitch.sls -03/04/2020 03:19 PM 1,533 skype-msi.sls -03/04/2020 03:19 PM 708 skype.sls -03/04/2020 03:19 PM 1,244 slack-machine-msi.sls -03/04/2020 03:19 PM 1,023 slack-user-msi.sls -03/04/2020 03:19 PM 329 slack.sls -03/04/2020 03:19 PM 591 smartmontools.sls -03/04/2020 03:19 PM 556 snmptools.sls -03/04/2020 03:19 PM 653 soapui.sls -03/04/2020 03:19 PM 623 software-informer.sls -03/04/2020 03:19 PM 1,039 sourcetree.sls -03/04/2020 03:19 PM 591 spybot-anti-beacon.sls -03/04/2020 03:19 PM 765 spybot.sls -03/04/2020 03:19 PM 664 sscserv-free.sls -03/04/2020 03:19 PM stayawake -03/04/2020 03:19 PM 443 steam.sls -03/04/2020 03:19 PM 658 stellarium.sls -03/04/2020 03:19 PM 540 strawberryperl_x64.sls -03/04/2020 03:19 PM 531 strawberryperl_x86.sls -03/04/2020 03:19 PM 521 stunnel.sls -03/04/2020 03:19 PM 398 subinacl.sls -03/04/2020 03:19 PM 467 sumatrapdf.sls -03/04/2020 03:19 PM 769 svn.sls -03/04/2020 03:19 PM 534 teamviewer.sls -03/04/2020 03:19 PM 549 teamviewer_host.sls -03/04/2020 03:19 PM 749 teracopy.sls -03/04/2020 03:19 PM 491 texmaker.sls -03/04/2020 03:19 PM 709 texniccenter.sls -03/04/2020 03:19 PM 639 texstudio.sls -03/04/2020 03:19 PM 643 texworks.sls -03/04/2020 03:19 PM 937 thunderbird.sls -03/04/2020 03:19 PM 1,014 tightvnc.sls -03/04/2020 03:19 PM 623 todotxt.net.sls -03/04/2020 03:19 PM 551 todour.sls -03/04/2020 03:19 PM 630 tortoise-bzr.sls -03/04/2020 03:19 PM 983 tortoise-git.sls -03/04/2020 03:19 PM 1,367 tortoise-hg.sls -03/04/2020 03:19 PM 897 tortoise-svn.sls -03/04/2020 03:19 PM 503 truecrypt.sls -03/04/2020 03:19 PM 662 ultradefrag.sls -03/04/2020 03:19 PM 1,598 urlrewrite.sls -03/04/2020 03:19 PM 560 usbdlm.sls -03/04/2020 03:19 PM 1,361 vagrant.sls -03/04/2020 03:19 PM 479 vcforpython27.sls -03/04/2020 03:19 PM 820 vcxsrv.sls -03/04/2020 03:19 PM 434 verysleepy.sls -03/04/2020 03:19 PM 611 veyon.sls -03/04/2020 03:19 PM 2,570 virtualbox.sls -03/04/2020 03:19 PM 794 viscosity.sls -03/04/2020 03:19 PM 657 vivaldi.sls -03/04/2020 03:19 PM 739 vlc.sls -03/04/2020 03:19 PM 713 vs-community.sls -03/04/2020 03:19 PM 1,388 vscode.sls -03/04/2020 03:19 PM 325 vsee.sls -03/04/2020 03:19 PM 640 vs_remotetools_2017.sls -03/04/2020 03:19 PM 835 wamp-server-3.sls -03/04/2020 03:19 PM 585 wamp-stack.sls -03/04/2020 03:19 PM 775 webdeploy.sls -03/04/2020 03:19 PM 842 webplatforminstaller.sls -03/04/2020 03:19 PM 610 win-app-manager.sls -03/04/2020 03:19 PM 467 windirstat.sls -03/04/2020 03:19 PM 468 winhttpcertcfg.sls -03/04/2020 03:19 PM winlogbeat -03/04/2020 03:19 PM 618 winmerge.sls -03/04/2020 03:19 PM 737 winmtr.sls -03/04/2020 03:19 PM 288 winpcap.sls -03/04/2020 03:19 PM 825 winrar.sls -03/04/2020 03:19 PM 828 winscp.sls -03/04/2020 03:19 PM 1,136 wireshark.sls -03/04/2020 03:19 PM wmi_provider -03/04/2020 03:19 PM 539 wscc.sls -03/04/2020 03:19 PM 726 wufuc.sls -03/04/2020 03:19 PM 352 xampp.sls -03/04/2020 03:19 PM 649 xming.sls -03/04/2020 03:19 PM 621 yubikey-manager.sls -03/04/2020 03:19 PM 546 yubikey-personalization-tool.sls -03/04/2020 03:19 PM 1,119 zabbix-agent.sls -03/04/2020 03:19 PM zipinstaller -03/04/2020 03:19 PM 278 zoom.sls +03/06/2020 01:22 PM . +03/06/2020 01:22 PM .. +03/06/2020 01:22 PM 927 7zip.sls +03/06/2020 01:22 PM 723 activeperl_x64.sls +03/06/2020 01:22 PM 973 activeperl_x86.sls +03/06/2020 01:22 PM 798 adobeair.sls +03/06/2020 01:22 PM 956 adobereader-dc-classic.sls +03/06/2020 01:22 PM 851 adobereader-xi.sls +03/06/2020 01:22 PM 830 adobereader.sls +03/06/2020 01:22 PM 589 adobeshockwaveplayer.sls +03/06/2020 01:22 PM 775 adv-ip-scanner.sls +03/06/2020 01:22 PM 787 adv-port-scanner.sls +03/06/2020 01:22 PM 769 advancedlogging.sls +03/06/2020 01:22 PM 373 anydesk-msi.sls +03/06/2020 01:22 PM 597 anydesk.sls +03/06/2020 01:22 PM 803 applicationrequestrouting.sls +03/06/2020 01:22 PM 370 aspnet-mvc1.sls +03/06/2020 01:22 PM 439 atom.sls +03/06/2020 01:22 PM 655 audacity.sls +03/06/2020 01:22 PM auditbeat +03/06/2020 01:22 PM 1,768 autohotkey.sls +03/06/2020 01:22 PM 611 autoit.sls +03/06/2020 01:22 PM 670 autopsy.sls +03/06/2020 01:22 PM 659 awscli.sls +03/06/2020 01:22 PM 799 azuredatastudio.sls +03/06/2020 01:22 PM 422 bandizip.sls +03/06/2020 01:22 PM 563 belarc-advisor.sls +03/06/2020 01:22 PM 367 bginfo4x.sls +03/06/2020 01:22 PM 547 bitnami-nginxstack.sls +03/06/2020 01:22 PM 568 bitvise.sls +03/06/2020 01:22 PM 777 blender.sls +03/06/2020 01:22 PM 395 bootracer.sls +03/06/2020 01:22 PM 664 bulkrenameutility.sls +03/06/2020 01:22 PM 661 bulk_extractor.sls +03/06/2020 01:22 PM 476 ccleaner-slim.sls +03/06/2020 01:22 PM 445 ccleaner.sls +03/06/2020 01:22 PM 606 cdburnerxp.sls +03/06/2020 01:22 PM 594 cdroller.sls +03/06/2020 01:22 PM 658 check-mk-agent-msi.sls +03/06/2020 01:22 PM 451 check-mk-agent.sls +03/06/2020 01:22 PM chocolatey +03/06/2020 01:22 PM 394 chrome-rdp.sls +03/06/2020 01:22 PM 375 chrome.sls +03/06/2020 01:22 PM 1,296 clamav.sls +03/06/2020 01:22 PM 1,200 clamwin.sls +03/06/2020 01:22 PM 500 classicshell.sls +03/06/2020 01:22 PM 1,521 clink.sls +03/06/2020 01:22 PM 617 conemu.sls +03/06/2020 01:22 PM 687 cpu-z.sls +03/06/2020 01:22 PM 2,833 curl.sls +03/06/2020 01:22 PM 374 cyberduck-cli.sls +03/06/2020 01:22 PM 616 cyberduck-msi.sls +03/06/2020 01:22 PM 639 cyberduck.sls +03/06/2020 01:22 PM 751 defraggler.sls +03/06/2020 01:22 PM 2,637 dotnet.sls +03/06/2020 01:22 PM 643 dropbox.sls +03/06/2020 01:22 PM 683 duplicati.sls +03/06/2020 01:22 PM 712 dvdstyler.sls +03/06/2020 01:22 PM 737 echo-desktop.sls +03/06/2020 01:22 PM 1,327 eea.sls +03/06/2020 01:22 PM 423 emet.sls +03/06/2020 01:22 PM 625 emsisoft-anti-malware.sls +03/06/2020 01:22 PM 721 eraser.sls +03/06/2020 01:22 PM erlang +03/06/2020 01:22 PM 982 evernote.sls +03/06/2020 01:22 PM 531 fiddler.sls +03/06/2020 01:22 PM filebeat +03/06/2020 01:22 PM 660 filehippo-app-manager.sls +03/06/2020 01:22 PM 1,271 filezilla.sls +03/06/2020 01:22 PM 1,115 firefox-esr_x64.sls +03/06/2020 01:22 PM 1,396 firefox-esr_x86.sls +03/06/2020 01:22 PM 1,365 firefox_x64.sls +03/06/2020 01:22 PM 1,870 firefox_x86.sls +03/06/2020 01:22 PM functionbeat +03/06/2020 01:22 PM 552 gedit.sls +03/06/2020 01:22 PM 822 gimp.sls +03/06/2020 01:22 PM 953 git-extensions.sls +03/06/2020 01:22 PM 3,855 git.sls +03/06/2020 01:22 PM 848 glarysoft-absolute-uninstaller.sls +03/06/2020 01:22 PM 563 gnucash.sls +03/06/2020 01:22 PM 2,152 golang.sls +03/06/2020 01:22 PM 320 goodsync.sls +03/06/2020 01:22 PM 601 gow.sls +03/06/2020 01:22 PM gpg4win +03/06/2020 01:22 PM 847 gpg4win-light.sls +03/06/2020 01:22 PM 621 gpg4win-vanilla.sls +03/06/2020 01:22 PM 544 graylog-collector-sidecar.sls +03/06/2020 01:22 PM 2,661 grepwin.sls +03/06/2020 01:22 PM 505 gvim.sls +03/06/2020 01:22 PM 622 handbrake.sls +03/06/2020 01:22 PM heartbeat +03/06/2020 01:22 PM 503 hipchat.sls +03/06/2020 01:22 PM 771 hostsfileeditor.sls +03/06/2020 01:22 PM 623 hwinfo.sls +03/06/2020 01:22 PM 339 ice.sls +03/06/2020 01:22 PM 493 icecast.sls +03/06/2020 01:22 PM 377 icloud.sls +03/06/2020 01:22 PM 2,197 iismediaservices.sls +03/06/2020 01:22 PM 358 influx-capacitor.sls +03/06/2020 01:22 PM 644 inkscape.sls +03/06/2020 01:22 PM 646 intellij-community.sls +03/06/2020 01:22 PM 618 intellij-ultimate.sls +03/06/2020 01:22 PM 360 internet-evidence-finder.sls +03/06/2020 01:22 PM 702 irfanview-plugins.sls +03/06/2020 01:22 PM 1,610 irfanview.sls +03/06/2020 01:22 PM 697 isapirewrite-lite.sls +03/06/2020 01:22 PM 2,602 itunes.sls +03/06/2020 01:22 PM 1,279 jdk8.sls +03/06/2020 01:22 PM 1,200 jre.sls +03/06/2020 01:22 PM 1,480 jre8.sls +03/06/2020 01:22 PM 995 jungledisk-server-management.sls +03/06/2020 01:22 PM 891 jungledisk-server.sls +03/06/2020 01:22 PM 921 jungledisk-workgroup.sls +03/06/2020 01:22 PM 518 kdiff3.sls +03/06/2020 01:22 PM 1,091 keepass-2x.sls +03/06/2020 01:22 PM 2,655 keepass.sls +03/06/2020 01:22 PM 673 lastpass.sls +03/06/2020 01:22 PM 1,329 lazarus.sls +03/06/2020 01:22 PM 951 libreoffice.sls +03/06/2020 01:22 PM 419 logparser.sls +03/06/2020 01:22 PM 2,627 maas360bootanalyzer.sls +03/06/2020 01:22 PM 722 malwarebytes.sls +03/06/2020 01:22 PM 1,884 mariadb.sls +03/06/2020 01:22 PM 653 mercurial.sls +03/06/2020 01:22 PM 649 messageanalyzer.sls +03/06/2020 01:22 PM metricbeat +03/06/2020 01:22 PM 603 microsoft-build-tools.sls +03/06/2020 01:22 PM 317 mikogo.sls +03/06/2020 01:22 PM 766 miktex-basic.sls +03/06/2020 01:22 PM 787 mongodb.sls +03/06/2020 01:22 PM 831 ms-mbsa.sls +03/06/2020 01:22 PM 419 ms-vcpp-2005-atl-redist_x64.sls +03/06/2020 01:22 PM 413 ms-vcpp-2005-atl-redist_x86.sls +03/06/2020 01:22 PM 412 ms-vcpp-2005-redist_x64.sls +03/06/2020 01:22 PM 406 ms-vcpp-2005-redist_x86.sls +03/06/2020 01:22 PM 420 ms-vcpp-2005-sp1-mfc-redist_x64.sls +03/06/2020 01:22 PM 414 ms-vcpp-2005-sp1-mfc-redist_x86.sls +03/06/2020 01:22 PM 416 ms-vcpp-2005-sp1-redist_x64.sls +03/06/2020 01:22 PM 410 ms-vcpp-2005-sp1-redist_x86.sls +03/06/2020 01:22 PM 434 ms-vcpp-2008-redist_x64.sls +03/06/2020 01:22 PM 434 ms-vcpp-2008-redist_x86.sls +03/06/2020 01:22 PM 452 ms-vcpp-2008-sp1-atl-redist_x64.sls +03/06/2020 01:22 PM 452 ms-vcpp-2008-sp1-atl-redist_x86.sls +03/06/2020 01:22 PM 452 ms-vcpp-2008-sp1-mfc-redist_x64.sls +03/06/2020 01:22 PM 452 ms-vcpp-2008-sp1-mfc-redist_x86.sls +03/06/2020 01:22 PM 443 ms-vcpp-2010-sp1-mfc-redist_64.sls +03/06/2020 01:22 PM 443 ms-vcpp-2010-sp1-mfc-redist_x86.sls +03/06/2020 01:22 PM 493 ms-vcpp-2012-redist_x64.sls +03/06/2020 01:22 PM 495 ms-vcpp-2012-redist_x86.sls +03/06/2020 01:22 PM 503 ms-vcpp-2013-redist_x64.sls +03/06/2020 01:22 PM 503 ms-vcpp-2013-redist_x86.sls +03/06/2020 01:22 PM 481 ms-vcpp-2015-build-tools.sls +03/06/2020 01:22 PM 1,407 ms-vcpp-2015-redist_x64.sls +03/06/2020 01:22 PM 1,407 ms-vcpp-2015-redist_x86.sls +03/06/2020 01:22 PM 1,166 ms-vcpp-2017-redist_x64.sls +03/06/2020 01:22 PM 539 ms-vcpp-2017-redist_x86.sls +03/06/2020 01:22 PM 585 mucommander.sls +03/06/2020 01:22 PM 638 mysql-essential.sls +03/06/2020 01:22 PM 632 mysql-installer-community.sls +03/06/2020 01:22 PM 639 mysql-workbench.sls +03/06/2020 01:22 PM 298 never10.sls +03/06/2020 01:22 PM 929 newrelic-infra.sls +03/06/2020 01:22 PM 526 nextcloud-client.sls +03/06/2020 01:22 PM 584 nmap.sls +03/06/2020 01:22 PM 709 node.js-lts.sls +03/06/2020 01:22 PM 733 node.js.sls +03/06/2020 01:22 PM 368 nomacs.sls +03/06/2020 01:22 PM 985 npp.sls +03/06/2020 01:22 PM 1,252 nsclient.sls +03/06/2020 01:22 PM 826 nsis.sls +03/06/2020 01:22 PM 902 ntp.sls +03/06/2020 01:22 PM 793 nunit-console.sls +03/06/2020 01:22 PM 363 nxlog.sls +03/06/2020 01:22 PM 1,081 octopus-tentacle.sls +03/06/2020 01:22 PM 678 openlp.sls +03/06/2020 01:22 PM 1,192 openoffice.sls +03/06/2020 01:22 PM 2,130 openvpn.sls +03/06/2020 01:22 PM 587 osquery.sls +03/06/2020 01:22 PM 878 ossec-agent.sls +03/06/2020 01:22 PM 590 owncloud.sls +03/06/2020 01:22 PM packetbeat +03/06/2020 01:22 PM 400 pandoc.sls +03/06/2020 01:22 PM 814 parallels-client-15.sls +03/06/2020 01:22 PM 1,709 pass4win.sls +03/06/2020 01:22 PM 378 passware-kit-agent.sls +03/06/2020 01:22 PM 416 passware-kit-forensic.sls +03/06/2020 01:22 PM 656 patchmypc-free.sls +03/06/2020 01:22 PM 638 pdf24creator.sls +03/06/2020 01:22 PM 567 pdfcreator.sls +03/06/2020 01:22 PM 611 peazip.sls +03/06/2020 01:22 PM 812 pgadmin4.sls +03/06/2020 01:22 PM 235 pgina.sls +03/06/2020 01:22 PM 617 pidgin.sls +03/06/2020 01:22 PM 1,898 postgresql.sls +03/06/2020 01:22 PM 997 powerbi-desktop.sls +03/06/2020 01:22 PM 864 powershell-core.sls +03/06/2020 01:22 PM 1,172 prometheus-wmi-exporter.sls +03/06/2020 01:22 PM 1,488 putty.sls +03/06/2020 01:22 PM pycharm-pro +03/06/2020 01:22 PM 567 python2_x64.sls +03/06/2020 01:22 PM 526 python2_x86.sls +03/06/2020 01:22 PM 1,540 python3_x64.sls +03/06/2020 01:22 PM 1,435 python3_x86.sls +03/06/2020 01:22 PM 449 qemu.sls +03/06/2020 01:22 PM 562 queueexplorerpro.sls +03/06/2020 01:22 PM 1,542 quicktime.sls +03/06/2020 01:22 PM 495 rabbitmq.sls +03/06/2020 01:22 PM 379 rakudo-star-no-jit_x86.sls +03/06/2020 01:22 PM 375 rakudo-star_x64.sls +03/06/2020 01:22 PM 888 rasclient.sls +03/06/2020 01:22 PM 444 rdcman.sls +03/06/2020 01:22 PM 609 rocketchat.sls +03/06/2020 01:22 PM 526 rubyinstaller_x64.sls +03/06/2020 01:22 PM 551 rubyinstaller_x86.sls +03/06/2020 01:22 PM 3,719 salt-minion-py2.sls +03/06/2020 01:22 PM 2,050 salt-minion-py3.sls +03/06/2020 01:22 PM 562 sandboxie.sls +03/06/2020 01:22 PM 581 scaleout.sls +03/06/2020 01:22 PM 476 secunia.psi.sls +03/06/2020 01:22 PM 1,190 sensu.sls +03/06/2020 01:22 PM 1,827 sharpdevelop.sls +03/06/2020 01:22 PM 539 skitch.sls +03/06/2020 01:22 PM 1,533 skype-msi.sls +03/06/2020 01:22 PM 708 skype.sls +03/06/2020 01:22 PM 1,244 slack-machine-msi.sls +03/06/2020 01:22 PM 1,023 slack-user-msi.sls +03/06/2020 01:22 PM 329 slack.sls +03/06/2020 01:22 PM 591 smartmontools.sls +03/06/2020 01:22 PM 556 snmptools.sls +03/06/2020 01:22 PM 653 soapui.sls +03/06/2020 01:22 PM 623 software-informer.sls +03/06/2020 01:22 PM 1,039 sourcetree.sls +03/06/2020 01:22 PM 591 spybot-anti-beacon.sls +03/06/2020 01:22 PM 765 spybot.sls +03/06/2020 01:22 PM 664 sscserv-free.sls +03/06/2020 01:22 PM stayawake +03/06/2020 01:22 PM 443 steam.sls +03/06/2020 01:22 PM 658 stellarium.sls +03/06/2020 01:22 PM 540 strawberryperl_x64.sls +03/06/2020 01:22 PM 531 strawberryperl_x86.sls +03/06/2020 01:22 PM 521 stunnel.sls +03/06/2020 01:22 PM 398 subinacl.sls +03/06/2020 01:22 PM 467 sumatrapdf.sls +03/06/2020 01:22 PM 769 svn.sls +03/06/2020 01:22 PM 534 teamviewer.sls +03/06/2020 01:22 PM 549 teamviewer_host.sls +03/06/2020 01:22 PM 749 teracopy.sls +03/06/2020 01:22 PM 491 texmaker.sls +03/06/2020 01:22 PM 709 texniccenter.sls +03/06/2020 01:22 PM 639 texstudio.sls +03/06/2020 01:22 PM 643 texworks.sls +03/06/2020 01:22 PM 937 thunderbird.sls +03/06/2020 01:22 PM 1,014 tightvnc.sls +03/06/2020 01:22 PM 623 todotxt.net.sls +03/06/2020 01:22 PM 551 todour.sls +03/06/2020 01:22 PM 630 tortoise-bzr.sls +03/06/2020 01:22 PM 983 tortoise-git.sls +03/06/2020 01:22 PM 1,367 tortoise-hg.sls +03/06/2020 01:22 PM 897 tortoise-svn.sls +03/06/2020 01:22 PM 503 truecrypt.sls +03/06/2020 01:22 PM 662 ultradefrag.sls +03/06/2020 01:22 PM 1,598 urlrewrite.sls +03/06/2020 01:22 PM 560 usbdlm.sls +03/06/2020 01:22 PM 1,361 vagrant.sls +03/06/2020 01:22 PM 479 vcforpython27.sls +03/06/2020 01:22 PM 820 vcxsrv.sls +03/06/2020 01:22 PM 434 verysleepy.sls +03/06/2020 01:22 PM 611 veyon.sls +03/06/2020 01:22 PM 2,570 virtualbox.sls +03/06/2020 01:22 PM 794 viscosity.sls +03/06/2020 01:22 PM 657 vivaldi.sls +03/06/2020 01:22 PM 739 vlc.sls +03/06/2020 01:22 PM 713 vs-community.sls +03/06/2020 01:22 PM 1,388 vscode.sls +03/06/2020 01:22 PM 325 vsee.sls +03/06/2020 01:22 PM 640 vs_remotetools_2017.sls +03/06/2020 01:22 PM 835 wamp-server-3.sls +03/06/2020 01:22 PM 585 wamp-stack.sls +03/06/2020 01:22 PM 775 webdeploy.sls +03/06/2020 01:22 PM 842 webplatforminstaller.sls +03/06/2020 01:22 PM 610 win-app-manager.sls +03/06/2020 01:22 PM 467 windirstat.sls +03/06/2020 01:22 PM 468 winhttpcertcfg.sls +03/06/2020 01:22 PM winlogbeat +03/06/2020 01:22 PM 618 winmerge.sls +03/06/2020 01:22 PM 737 winmtr.sls +03/06/2020 01:22 PM 288 winpcap.sls +03/06/2020 01:22 PM 825 winrar.sls +03/06/2020 01:22 PM 828 winscp.sls +03/06/2020 01:22 PM 1,136 wireshark.sls +03/06/2020 01:22 PM wmi_provider +03/06/2020 01:22 PM 539 wscc.sls +03/06/2020 01:22 PM 726 wufuc.sls +03/06/2020 01:22 PM 352 xampp.sls +03/06/2020 01:22 PM 649 xming.sls +03/06/2020 01:22 PM 621 yubikey-manager.sls +03/06/2020 01:22 PM 546 yubikey-personalization-tool.sls +03/06/2020 01:22 PM 1,119 zabbix-agent.sls +03/06/2020 01:22 PM zipinstaller +03/06/2020 01:22 PM 278 zoom.sls 284 File(s) 232,192 bytes - 16 Dir(s) 49,813,524,480 bytes free -2020-03-04 12:20:02,115 [salt.state :938 ][DEBUG ][3760] Last command return code: 0 -2020-03-04 12:20:02,116 [salt.state :320 ][INFO ][3760] {'pkg.refresh_db': {'success': 298, 'total': 298, 'failed': 0}} -2020-03-04 12:20:02,116 [salt.state :1997][INFO ][3760] Completed state [pkg.refresh_db] at time 12:20:02.116041 (duration_in_ms=12441.512) -2020-03-04 12:20:02,132 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. -2020-03-04 12:20:02,146 [salt.state :1819][INFO ][3760] Running state [7zip] at time 12:20:02.132861 -2020-03-04 12:20:02,146 [salt.state :1852][INFO ][3760] Executing state pkg.installed for [7zip] -2020-03-04 12:20:02,163 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:20:02,179 [salt.loaded.int.module.win_pkg:802 ][INFO ][3760] Refresh skipped, age of winrepo metadata in seconds (0.12400341033935547) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:20:02,179 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.124003) -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,288 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,304 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,320 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:20:02,334 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:20:02,350 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:20:02,350 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.311515) -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,366 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,381 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:02,381 [salt.utils.http :234 ][DEBUG ][3760] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method -2020-03-04 12:20:02,381 [salt.utils.http :235 ][DEBUG ][3760] Using backend: tornado -2020-03-04 12:20:05,022 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' -2020-03-04 12:20:05,696 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.656755) -2020-03-04 12:20:05,696 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,696 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,696 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,696 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,696 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,696 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,710 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,726 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:20:05,726 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:03.687023) -2020-03-04 12:20:05,726 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,726 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products + 16 Dir(s) 49,779,859,456 bytes free +2020-03-06 10:22:37,854 [salt.state :986 ][DEBUG ][5108] Last command return code: 0 +2020-03-06 10:22:37,854 [salt.state :320 ][INFO ][5108] {'pkg.refresh_db': {'total': 298, 'failed': 0, 'success': 298}} +2020-03-06 10:22:37,854 [salt.state :2045][INFO ][5108] Completed state [pkg.refresh_db] at time 10:22:37.854152 (duration_in_ms=18048.366) +2020-03-06 10:22:37,872 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.ex_mod_init: 'pkg.ex_mod_init' is not available. +2020-03-06 10:22:37,872 [salt.state :1867][INFO ][5108] Running state [kdiff3] at time 10:22:37.872675 +2020-03-06 10:22:37,891 [salt.state :1900][INFO ][5108] Executing state pkg.installed for [kdiff3] +2020-03-06 10:22:37,918 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:22:37,918 [salt.loaded.int.module.win_pkg:806 ][INFO ][5108] Refresh skipped, age of winrepo metadata in seconds (0.1404280662536621) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:22:37,918 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.140428) +2020-03-06 10:22:38,089 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:22:38,107 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:22:38,136 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:22:38,136 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:00.358401) +2020-03-06 10:22:38,151 [salt.utils.http :234 ][DEBUG ][5108] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method +2020-03-06 10:22:38,151 [salt.utils.http :235 ][DEBUG ][5108] Using backend: tornado +2020-03-06 10:22:43,530 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' +2020-03-06 10:22:45,595 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:07.816893) +2020-03-06 10:22:45,642 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:22:45,642 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:07.864685) +2020-03-06 10:22:45,657 [salt.state :320 ][INFO ][5108] Made the following changes: +'kdiff3' changed from 'absent' to 'Not Found' + +2020-03-06 10:22:45,657 [salt.state :1048][DEBUG ][5108] Refreshing modules... +2020-03-06 10:22:45,783 [salt.state :1014][INFO ][5108] Loading fresh modules for state activity +2020-03-06 10:22:45,972 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:22:45,987 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:22:45,987 [salt.state :2045][INFO ][5108] Completed state [kdiff3] at time 10:22:45.987358 (duration_in_ms=8114.683) +2020-03-06 10:22:45,987 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded config.option +2020-03-06 10:22:46,157 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pkg.install +2020-03-06 10:22:46,157 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pkg.installed +2020-03-06 10:22:46,172 [salt.state :1867][INFO ][5108] Running state [7zip] at time 10:22:46.172998 +2020-03-06 10:22:46,172 [salt.state :1900][INFO ][5108] Executing state pkg.installed for [7zip] +2020-03-06 10:22:48,111 [salt.config :2215][DEBUG ][5108] Missing configuration file: /etc/salt/minion +2020-03-06 10:22:48,111 [salt.config :3612][DEBUG ][5108] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:22:48,283 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:22:48,283 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:22:48,971 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:22:48,971 [salt.loader :1671][DEBUG ][5108] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,741 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:22:50,017 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt.secret_key, ret: _|- +2020-03-06 10:22:50,017 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt:secret_key, ret: _|- +2020-03-06 10:22:51,268 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet.api_key, ret: _|- +2020-03-06 10:22:51,268 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet:api_key, ret: _|- +2020-03-06 10:22:51,753 [salt.loader :1671][DEBUG ][5108] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:05,758 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. -2020-03-04 12:20:05,772 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. -2020-03-04 12:20:05,772 [salt.state :320 ][INFO ][3760] Made the following changes: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:22:52,052 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops.api_key, ret: _|- +2020-03-06 10:22:52,052 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops:api_key, ret: _|- +2020-03-06 10:23:01,521 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:23:01,521 [salt.loaded.int.module.win_pkg:806 ][INFO ][5108] Refresh skipped, age of winrepo metadata in seconds (23.743483543395996) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:23:01,521 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:23.743484) +2020-03-06 10:23:01,553 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:23:01,584 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:23:01,615 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:23:01,615 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:23.837010) +2020-03-06 10:23:01,615 [salt.utils.http :234 ][DEBUG ][5108] Requesting URL https://d.7-zip.org/a/7z1806-x64.msi using GET method +2020-03-06 10:23:01,631 [salt.utils.http :235 ][DEBUG ][5108] Using backend: tornado +2020-03-06 10:23:04,866 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""msiexec" /I "C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a\7z1806-x64.msi" ALLUSERS=1 /qn /norestart"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\d.7-zip.org\a' +2020-03-06 10:23:05,804 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.025888) +2020-03-06 10:23:05,850 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:23:05,867 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:28.072792) +2020-03-06 10:23:05,899 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.version_clean: 'pkg.version_clean' is not available. +2020-03-06 10:23:05,946 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.version_cmp: 'pkg.version_cmp' is not available. +2020-03-06 10:23:05,946 [salt.state :320 ][INFO ][5108] Made the following changes: '7zip' changed from 'absent' to '18.06.00.0' -2020-03-04 12:20:05,772 [salt.state :1000][DEBUG ][3760] Refreshing modules... -2020-03-04 12:20:05,803 [salt.state :966 ][INFO ][3760] Loading fresh modules for state activity -2020-03-04 12:20:05,866 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:05,866 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:05,866 [salt.state :1997][INFO ][3760] Completed state [7zip] at time 12:20:05.866064 (duration_in_ms=3733.203) -2020-03-04 12:20:05,866 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded config.option -2020-03-04 12:20:05,882 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pkg.install -2020-03-04 12:20:05,882 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pkg.installed -2020-03-04 12:20:05,882 [salt.state :1819][INFO ][3760] Running state [git] at time 12:20:05.882622 -2020-03-04 12:20:05,882 [salt.state :1852][INFO ][3760] Executing state pkg.installed for [git] -2020-03-04 12:20:06,413 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt.secret_key, ret: _|- -2020-03-04 12:20:06,413 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt:secret_key, ret: _|- -2020-03-04 12:20:06,679 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet.api_key, ret: _|- -2020-03-04 12:20:06,679 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet:api_key, ret: _|- -2020-03-04 12:20:06,882 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded reg.read_value -2020-03-04 12:20:07,007 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops.api_key, ret: _|- -2020-03-04 12:20:07,024 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops:api_key, ret: _|- -2020-03-04 12:20:12,192 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded platform.is_windows -2020-03-04 12:20:12,192 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded path.which -2020-03-04 12:20:12,223 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:20:12,239 [salt.loaded.int.module.win_pkg:802 ][INFO ][3760] Refresh skipped, age of winrepo metadata in seconds (10.200068712234497) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:20:12,239 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:10.200069) -2020-03-04 12:20:12,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,239 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,255 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,270 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:20:12,285 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:20:12,285 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:20:12,301 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:10.262123) -2020-03-04 12:20:12,301 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,301 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,301 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,301 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,301 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,301 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:12,317 [salt.utils.http :234 ][DEBUG ][3760] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method -2020-03-04 12:20:12,333 [salt.utils.http :235 ][DEBUG ][3760] Using backend: tornado -2020-03-04 12:20:18,551 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' -2020-03-04 12:20:36,170 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.131150) -2020-03-04 12:20:36,170 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,170 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,170 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,170 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,170 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,186 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,201 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,201 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall +2020-03-06 10:23:05,946 [salt.state :1048][DEBUG ][5108] Refreshing modules... +2020-03-06 10:23:06,022 [salt.state :1014][INFO ][5108] Loading fresh modules for state activity +2020-03-06 10:23:06,135 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:23:06,147 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:23:06,147 [salt.state :2045][INFO ][5108] Completed state [7zip] at time 10:23:06.147841 (duration_in_ms=19974.843) +2020-03-06 10:23:06,147 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded config.option +2020-03-06 10:23:06,241 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pkg.install +2020-03-06 10:23:06,241 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pkg.installed +2020-03-06 10:23:06,241 [salt.state :1867][INFO ][5108] Running state [git] at time 10:23:06.241586 +2020-03-06 10:23:06,241 [salt.state :1900][INFO ][5108] Executing state pkg.installed for [git] +2020-03-06 10:23:07,633 [salt.config :2215][DEBUG ][5108] Missing configuration file: /etc/salt/minion +2020-03-06 10:23:07,633 [salt.config :3612][DEBUG ][5108] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:23:07,772 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:23:07,788 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:23:08,195 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:23:08,195 [salt.loader :1671][DEBUG ][5108] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,201 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:23:09,007 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt.secret_key, ret: _|- +2020-03-06 10:23:09,007 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt:secret_key, ret: _|- +2020-03-06 10:23:10,226 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet.api_key, ret: _|- +2020-03-06 10:23:10,226 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet:api_key, ret: _|- +2020-03-06 10:23:10,836 [salt.loader :1671][DEBUG ][5108] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,201 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,218 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:20:36,218 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:34.179157) -2020-03-04 12:20:36,218 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,218 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,218 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,236 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,248 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,248 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:36,248 [salt.state :320 ][INFO ][3760] Made the following changes: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:23:11,227 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops.api_key, ret: _|- +2020-03-06 10:23:11,227 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops:api_key, ret: _|- +2020-03-06 10:23:22,289 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. +2020-03-06 10:23:22,305 [salt.loaded.int.module.win_pkg:806 ][INFO ][5108] Refresh skipped, age of winrepo metadata in seconds (44.52710485458374) is less than winrepo_cache_expire_min (1800) +2020-03-06 10:23:22,305 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:44.527105) +2020-03-06 10:23:22,337 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:23:22,383 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. +2020-03-06 10:23:22,416 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. +2020-03-06 10:23:22,416 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:00:44.638293) +2020-03-06 10:23:22,447 [salt.utils.http :234 ][DEBUG ][5108] Requesting URL https://github.com/git-for-windows/git/releases/download/v2.23.0.windows.1/Git-2.23.0-64-bit.exe using GET method +2020-03-06 10:23:22,447 [salt.utils.http :235 ][DEBUG ][5108] Using backend: tornado +2020-03-06 10:23:26,149 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1\Git-2.23.0-64-bit.exe" /VERYSILENT /NORESTART /SP- /NOCANCEL /SUPPRESSMSGBOXES"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\github.com\git-for-windows\git\releases\download\v2.23.0.windows.1' +2020-03-06 10:23:49,525 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:01:11.747516) +2020-03-06 10:23:49,556 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. +2020-03-06 10:23:49,556 [salt.loaded.int.module.win_pkg:819 ][DEBUG ][5108] Using existing pkg metadata db for saltenv 'base' (age is 0:01:11.778767) +2020-03-06 10:23:49,573 [salt.state :320 ][INFO ][5108] Made the following changes: 'git' changed from 'absent' to '2.23.0.windows.1' -2020-03-04 12:20:36,248 [salt.state :1000][DEBUG ][3760] Refreshing modules... -2020-03-04 12:20:36,267 [salt.state :966 ][INFO ][3760] Loading fresh modules for state activity -2020-03-04 12:20:36,342 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:36,342 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:36,342 [salt.state :1997][INFO ][3760] Completed state [git] at time 12:20:36.342405 (duration_in_ms=30459.783) -2020-03-04 12:20:36,342 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded config.option -2020-03-04 12:20:36,359 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pkg.install -2020-03-04 12:20:36,359 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pkg.installed -2020-03-04 12:20:36,359 [salt.state :1819][INFO ][3760] Running state [kdiff3] at time 12:20:36.359520 -2020-03-04 12:20:36,359 [salt.state :1852][INFO ][3760] Executing state pkg.installed for [kdiff3] -2020-03-04 12:20:36,845 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt.secret_key, ret: _|- -2020-03-04 12:20:36,845 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt:secret_key, ret: _|- -2020-03-04 12:20:37,063 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet.api_key, ret: _|- -2020-03-04 12:20:37,063 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet:api_key, ret: _|- -2020-03-04 12:20:37,235 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded reg.read_value -2020-03-04 12:20:37,346 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops.api_key, ret: _|- -2020-03-04 12:20:37,346 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops:api_key, ret: _|- -2020-03-04 12:20:41,738 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded platform.is_windows -2020-03-04 12:20:41,754 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded path.which -2020-03-04 12:20:41,786 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.resolve_capabilities: 'pkg.resolve_capabilities' is not available. -2020-03-04 12:20:41,786 [salt.loaded.int.module.win_pkg:802 ][INFO ][3760] Refresh skipped, age of winrepo metadata in seconds (39.747172594070435) is less than winrepo_cache_expire_min (1800) -2020-03-04 12:20:41,801 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:39.747173) -2020-03-04 12:20:41,801 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,801 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,801 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,801 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,817 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,834 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:20:41,848 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.check_db: 'pkg.check_db' is not available. -2020-03-04 12:20:41,848 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.normalize_name: 'pkg.normalize_name' is not available. -2020-03-04 12:20:41,863 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:39.824514) -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,863 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,879 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:41,879 [salt.utils.http :234 ][DEBUG ][3760] Requesting URL https://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.98/KDiff3-64bit-Setup_0.9.98-2.exe using GET method -2020-03-04 12:20:41,879 [salt.utils.http :235 ][DEBUG ][3760] Using backend: tornado -2020-03-04 12:20:46,388 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command '"C:\Windows\system32\cmd.exe" /s /c ""C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98\KDiff3-64bit-Setup_0.9.98-2.exe" /S"' in directory 'C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extrn_files\base\downloads.sourceforge.net\project\kdiff3\kdiff3\0.9.98' -2020-03-04 12:20:47,452 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:45.413054) -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,468 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,484 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,484 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,484 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,484 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,484 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.hold: 'pkg.hold' is not available. -2020-03-04 12:20:47,499 [salt.loaded.int.module.win_pkg:815 ][DEBUG ][3760] Using existing pkg metadata db for saltenv 'base' (age is 0:00:45.460522) -2020-03-04 12:20:47,514 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,514 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,514 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,514 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\.DEFAULT\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-19\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-20\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Windows\CurrentVersion\Uninstall -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-21-1664111820-3206810002-80935068-1000_Classes\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.loaded.int.utils.win_reg:351 ][DEBUG ][3760] Cannot find key: HKU\S-1-5-18\Software\Microsoft\Installer\Products -Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\utils\win_reg.py", line 341, in list_keys - handle = win32api.RegOpenKeyEx(hkey, local_key, 0, access_mask) -pywintypes.error: (2, 'RegOpenKeyEx', 'The system cannot find the file specified.') -2020-03-04 12:20:47,531 [salt.state :320 ][INFO ][3760] Made the following changes: -'kdiff3' changed from 'absent' to 'Not Found' - -2020-03-04 12:20:47,531 [salt.state :1000][DEBUG ][3760] Refreshing modules... -2020-03-04 12:20:47,562 [salt.state :966 ][INFO ][3760] Loading fresh modules for state activity -2020-03-04 12:20:47,609 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded jinja.render -2020-03-04 12:20:47,609 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded yaml.render -2020-03-04 12:20:47,609 [salt.state :1997][INFO ][3760] Completed state [kdiff3] at time 12:20:47.609166 (duration_in_ms=11249.646) -2020-03-04 12:20:47,625 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded config.option -2020-03-04 12:20:47,625 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded module.run -2020-03-04 12:20:47,625 [salt.state :1819][INFO ][3760] Running state [windows_environment.refresh.path] at time 12:20:47.625101 -2020-03-04 12:20:47,625 [salt.state :1852][INFO ][3760] Executing state module.run for [windows_environment.refresh.path] -2020-03-04 12:20:47,625 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded windows_environment.refresh -2020-03-04 12:20:47,625 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded cmd.run -2020-03-04 12:20:47,625 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' -2020-03-04 12:20:47,657 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: +2020-03-06 10:23:49,573 [salt.state :1048][DEBUG ][5108] Refreshing modules... +2020-03-06 10:23:49,619 [salt.state :1014][INFO ][5108] Loading fresh modules for state activity +2020-03-06 10:23:49,697 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded jinja.render +2020-03-06 10:23:49,697 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded yaml.render +2020-03-06 10:23:49,697 [salt.state :2045][INFO ][5108] Completed state [git] at time 10:23:49.697144 (duration_in_ms=43455.558) +2020-03-06 10:23:49,697 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded config.option +2020-03-06 10:23:49,697 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded module.run +2020-03-06 10:23:49,697 [salt.state :1867][INFO ][5108] Running state [windows_environment.refresh.path] at time 10:23:49.697144 +2020-03-06 10:23:49,697 [salt.state :1900][INFO ][5108] Executing state module.run for [windows_environment.refresh.path] +2020-03-06 10:23:49,697 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded windows_environment.refresh +2020-03-06 10:23:49,713 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cmd.run +2020-03-06 10:23:49,713 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' in directory 'C:\Users\vagrant' +2020-03-06 10:23:49,744 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27895,7 +26961,7 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:20:47,657 [salt.loaded.int.module.cmdmod:1202][DEBUG ][3760] output: +2020-03-06 10:23:49,744 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5108] output: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment ComSpec REG_EXPAND_SZ %SystemRoot%\system32\cmd.exe DriverData REG_SZ C:\Windows\System32\Drivers\DriverData @@ -27912,312 +26978,325 @@ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment PROCESSOR_LEVEL REG_SZ 6 PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 12, GenuineIntel PROCESSOR_REVISION REG_SZ 8e0c -2020-03-04 12:20:47,657 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded environ.get -2020-03-04 12:20:47,657 [py.warnings :919 ][WARNING ][3760] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W +2020-03-06 10:23:49,744 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded environ.get +2020-03-06 10:23:49,744 [py.warnings :919 ][WARNING ][5108] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \W environ[key] = redata.sub(a, value) -2020-03-04 12:20:47,657 [py.warnings :919 ][WARNING ][3760] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P +2020-03-06 10:23:49,759 [py.warnings :919 ][WARNING ][5108] C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\extmods\modules\windows_environment\__init__.py:54: DeprecationWarning: bad escape \P environ[key] = redata.sub(a, value) -2020-03-04 12:20:47,657 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded event.fire -2020-03-04 12:20:47,672 [salt.utils.event :322 ][DEBUG ][3760] SaltEvent PUB socket URI: 4510 -2020-03-04 12:20:47,672 [salt.utils.event :323 ][DEBUG ][3760] SaltEvent PULL socket URI: 4511 -2020-03-04 12:20:47,672 [salt.utils.event :737 ][DEBUG ][3760] Sending event: tag = environ_setenv; data = {'clear_all': False, 'permanent': False, 'false_unsets': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, '_stamp': '2020-03-04T20:20:47.672680'} -2020-03-04 12:20:47,672 [salt.transport.ipc:364 ][DEBUG ][3760] Closing IPCMessageClient instance -2020-03-04 12:20:47,672 [salt.state :320 ][INFO ][3760] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} -2020-03-04 12:20:47,672 [salt.state :1997][INFO ][3760] Completed state [windows_environment.refresh.path] at time 12:20:47.672680 (duration_in_ms=47.579) -2020-03-04 12:20:47,672 [salt.state :1819][INFO ][3760] Running state [chocolatey.bootstrap] at time 12:20:47.672680 -2020-03-04 12:20:47,672 [salt.state :1852][INFO ][3760] Executing state module.run for [chocolatey.bootstrap] -2020-03-04 12:20:48,047 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt.secret_key, ret: _|- -2020-03-04 12:20:48,047 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: ifttt:secret_key, ret: _|- -2020-03-04 12:20:48,235 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet.api_key, ret: _|- -2020-03-04 12:20:48,235 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: pushbullet:api_key, ret: _|- -2020-03-04 12:20:48,376 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded reg.read_value -2020-03-04 12:20:48,470 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops.api_key, ret: _|- -2020-03-04 12:20:48,470 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: victorops:api_key, ret: _|- -2020-03-04 12:20:54,712 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded platform.is_windows -2020-03-04 12:20:54,712 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded path.which -2020-03-04 12:20:54,743 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. -2020-03-04 12:20:54,805 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded apache.config -2020-03-04 12:20:54,805 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded apache.a2enconf -2020-03-04 12:20:54,805 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded apache.a2ensite -2020-03-04 12:20:54,822 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. -2020-03-04 12:20:54,822 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded azurearm_compute.availability_set_create_or_update -2020-03-04 12:20:54,822 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded azurearm_network.check_ip_address_availability -2020-03-04 12:20:54,822 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded azurearm_resource.resource_group_check_existence -2020-03-04 12:20:54,837 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto3_elasticache.cache_cluster_exists -2020-03-04 12:20:54,837 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto3_route53.find_hosted_zone -2020-03-04 12:20:54,837 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto3_sns.topic_exists -2020-03-04 12:20:54,837 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_apigateway.describe_apis -2020-03-04 12:20:54,837 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_asg.exists -2020-03-04 12:20:54,837 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cfn.exists -2020-03-04 12:20:54,837 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudfront.get_distribution -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudtrail.exists -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudwatch.get_alarm -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cloudwatch_event.exists -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_cognitoidentity.describe_identity_pools -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_datapipeline.create_pipeline -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_dynamodb.exists -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_ec2.get_key -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elasticache.exists -2020-03-04 12:20:54,854 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elasticsearch_domain.exists -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elb.exists -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_elbv2.target_group_exists -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_iam.get_user -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_iam.role_exists -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_iot.policy_exists -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_kinesis.exists -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_kms.describe_key -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_lambda.function_exists -2020-03-04 12:20:54,868 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_asg.exists -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_rds.exists -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_route53.get_record -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_s3.get_object_metadata -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_s3_bucket.exists -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_secgroup.exists -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_sns.exists -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_sqs.exists -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded boto_vpc.exists -2020-03-04 12:20:54,885 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded bower.list -2020-03-04 12:20:54,902 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded chef.client -2020-03-04 12:20:54,902 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded cimc.get_system_info -2020-03-04 12:20:54,902 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded cisconso.set_data_value -2020-03-04 12:20:54,902 [salt.loader :1577][DEBUG ][3760] Failed to import states cloud: +2020-03-06 10:23:49,759 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded event.fire +2020-03-06 10:23:49,759 [salt.utils.event :310 ][DEBUG ][5108] SaltEvent PUB socket URI: 4510 +2020-03-06 10:23:49,759 [salt.utils.event :311 ][DEBUG ][5108] SaltEvent PULL socket URI: 4511 +2020-03-06 10:23:49,759 [salt.utils.event :736 ][DEBUG ][5108] Sending event: tag = environ_setenv; data = {'permanent': False, 'clear_all': False, 'false_unsets': False, 'environ': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}, '_stamp': '2020-03-06T18:23:49.759611'} +2020-03-06 10:23:49,759 [salt.transport.ipc:363 ][DEBUG ][5108] Closing IPCMessageClient instance +2020-03-06 10:23:49,759 [salt.state :320 ][INFO ][5108] {'windows_environment.refresh': {'PATH': 'C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\salt;C:\\Program Files\\Git\\cmd'}} +2020-03-06 10:23:49,759 [salt.state :2045][INFO ][5108] Completed state [windows_environment.refresh.path] at time 10:23:49.759611 (duration_in_ms=62.467) +2020-03-06 10:23:49,759 [salt.state :1867][INFO ][5108] Running state [chocolatey.bootstrap] at time 10:23:49.759611 +2020-03-06 10:23:49,775 [salt.state :1900][INFO ][5108] Executing state module.run for [chocolatey.bootstrap] +2020-03-06 10:23:51,009 [salt.config :2215][DEBUG ][5108] Missing configuration file: /etc/salt/minion +2020-03-06 10:23:51,009 [salt.config :3612][DEBUG ][5108] Using cached minion ID from c:\salt\conf\minion_id: vagrant +2020-03-06 10:23:51,118 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:23:51,181 [git.cmd :722 ][DEBUG ][5108] Popen(['git', 'version'], cwd=C:\Users\vagrant\Documents, universal_newlines=False, shell=None) +2020-03-06 10:23:51,573 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad boto3.assign_funcs: 'boto3.assign_funcs' is not available. +2020-03-06 10:23:51,573 [salt.loader :1671][DEBUG ][5108] Error loading module.boto3_elasticsearch: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\cloud.py", line 25, in - import salt.utils.cloud as suc - File "C:\salt\bin\lib\site-packages\salt\utils\cloud.py", line 76, in - import salt.cloud -ImportError: No module named 'salt.cloud' -2020-03-04 12:20:54,915 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded ddns.update -2020-03-04 12:20:54,915 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded chassis.cmd -2020-03-04 12:20:54,932 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:20:54,947 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:20:54,962 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:20:54,978 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad docker.version: 'docker.version' is not available. -2020-03-04 12:20:55,197 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded esxi.cmd -2020-03-04 12:20:55,212 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' -2020-03-04 12:20:55,275 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: git version 2.23.0.windows.1 -2020-03-04 12:20:55,275 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded github.list_users -2020-03-04 12:20:55,292 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded glanceng.image_get -2020-03-04 12:20:55,292 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded elasticsearch.exists -2020-03-04 12:20:55,292 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: grafana_version, ret: _|- -2020-03-04 12:20:55,292 [salt.loaded.int.module.config:398 ][DEBUG ][3760] key: grafana_version, ret: _|- -2020-03-04 12:20:55,307 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded icinga2.generate_ticket -2020-03-04 12:20:55,307 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded ifttt.trigger_event -2020-03-04 12:20:55,323 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:20:55,337 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. -2020-03-04 12:20:55,353 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:20:55,369 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:20:55,384 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:20:55,400 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. -2020-03-04 12:20:55,432 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. -2020-03-04 12:20:55,432 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.domain_get -2020-03-04 12:20:55,432 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.endpoint_get -2020-03-04 12:20:55,432 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.group_get -2020-03-04 12:20:55,432 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.project_get -2020-03-04 12:20:55,432 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.role_get -2020-03-04 12:20:55,448 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.role_grant -2020-03-04 12:20:55,448 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.service_get -2020-03-04 12:20:55,448 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded keystoneng.user_get -2020-03-04 12:20:55,464 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. -2020-03-04 12:20:55,479 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. -2020-03-04 12:20:55,494 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad logadm.list_conf: 'logadm.list_conf' is not available. -2020-03-04 12:20:55,510 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad logrotate.show_conf: 'logrotate.show_conf' is not available. -2020-03-04 12:20:55,541 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:20:55,556 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad lvs.get_rules: 'lvs.get_rules' is not available. -2020-03-04 12:20:55,556 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:20:55,556 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:20:55,556 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:20:55,556 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded lxd.version -2020-03-04 12:20:55,556 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded memcached.status -2020-03-04 12:20:55,574 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mongodb.db_exists -2020-03-04 12:20:55,574 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mongodb.user_exists -2020-03-04 12:20:55,574 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:20:55,574 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:20:55,574 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:20:55,574 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded mssql.version -2020-03-04 12:20:55,590 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_networks -2020-03-04 12:20:55,590 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_subnets -2020-03-04 12:20:55,590 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_subnets -2020-03-04 12:20:55,604 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded neutronng.list_subnets -2020-03-04 12:20:55,604 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded npm.list -2020-03-04 12:20:55,604 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nxos.cmd -2020-03-04 12:20:55,621 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad openvswitch.bridge_create: 'openvswitch.bridge_create' is not available. -2020-03-04 12:20:55,635 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad openvswitch.port_add: 'openvswitch.port_add' is not available. -2020-03-04 12:20:55,650 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded panos.commit -2020-03-04 12:20:55,650 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pdbedit.create -2020-03-04 12:20:55,650 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded pecl.list -2020-03-04 12:20:55,681 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. -2020-03-04 12:20:55,681 [salt.loader :1577][DEBUG ][3760] Failed to import states ports: + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\boto3_elasticsearch.py", line 92, in __init__ + __utils__['boto3.assign_funcs'](__name__, 'es') + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1248, in __getitem__ + func = super(LazyLoader, self).__getitem__(item) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\utils\lazy.py", line 108, in __getitem__ + raise KeyError(key) +KeyError: 'boto3.assign_funcs' +2020-03-06 10:23:52,181 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt.secret_key, ret: _|- +2020-03-06 10:23:52,181 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: ifttt:secret_key, ret: _|- +2020-03-06 10:23:53,009 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet.api_key, ret: _|- +2020-03-06 10:23:53,009 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: pushbullet:api_key, ret: _|- +2020-03-06 10:23:53,463 [salt.loader :1671][DEBUG ][5108] Error loading module.swarm: __init__ failed Traceback (most recent call last): - File "C:\salt\bin\lib\site-packages\salt\loader.py", line 1560, in _load_module - mod = spec.loader.load_module() - File "", line 418, in _check_name_wrapper - File "", line 841, in load_module - File "", line 700, in load_module - File "", line 268, in _load_module_shim - File "", line 693, in _load - File "", line 673, in _load_unlocked - File "", line 697, in exec_module - File "", line 222, in _call_with_frames_removed - File "C:\salt\bin\lib\site-packages\salt\states\ports.py", line 27, in - from salt.modules.freebsdports import _normalize, _options_file_exists -ImportError: No module named 'salt.modules.freebsdports' -2020-03-04 12:20:55,681 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.cluster_exists -2020-03-04 12:20:55,681 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.user_exists -2020-03-04 12:20:55,681 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.create_extension -2020-03-04 12:20:55,681 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.group_create -2020-03-04 12:20:55,681 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.datadir_init -2020-03-04 12:20:55,681 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.language_create -2020-03-04 12:20:55,698 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.privileges_grant -2020-03-04 12:20:55,698 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.schema_exists -2020-03-04 12:20:55,698 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.tablespace_exists -2020-03-04 12:20:55,698 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded postgres.user_exists -2020-03-04 12:20:55,728 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. -2020-03-04 12:20:55,744 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded selinux.getenforce -2020-03-04 12:20:55,744 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded splunk.list_users -2020-03-04 12:20:55,744 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded splunk_search.get -2020-03-04 12:20:55,760 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. -2020-03-04 12:20:55,775 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded tomcat.status -2020-03-04 12:20:55,775 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded vagrant.version -2020-03-04 12:20:55,775 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded victorops.create_event -2020-03-04 12:20:55,793 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded win_iis.create_site -2020-03-04 12:20:55,793 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded win_snmp.get_agent_settings -2020-03-04 12:20:55,809 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded wordpress.show_plugin -2020-03-04 12:20:55,809 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded x509.get_pem_entry -2020-03-04 12:20:55,809 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded xmpp.send_msg -2020-03-04 12:20:55,823 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded zk_concurrency.lock -2020-03-04 12:20:55,823 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded zonecfg.create -2020-03-04 12:20:55,823 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded zookeeper.create -2020-03-04 12:20:55,839 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:20:55,839 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' -2020-03-04 12:20:56,026 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: INFO: Could not find files for the given pattern(s). -2020-03-04 12:20:56,041 [salt.loaded.int.module.cmdmod:847 ][DEBUG ][3760] retcode: 1 -2020-03-04 12:20:56,041 [salt.state :915 ][DEBUG ][3760] Last command return code: 1 -2020-03-04 12:20:56,041 [salt.utils.http :234 ][DEBUG ][3760] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method -2020-03-04 12:20:56,041 [salt.utils.http :235 ][DEBUG ][3760] Using backend: tornado -2020-03-04 12:20:56,260 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:03,679 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\header.bmp... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\SplashScreen.bmp... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\watermark.bmp... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\DisplayIcon.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Print.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate1.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate2.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate3.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate4.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate5.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate6.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate7.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Rotate8.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Save.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\Setup.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\stop.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\SysReqMet.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\SysReqNotMet.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Graphics\warn.ico... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1033\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1042\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1041\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1037\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1025\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1035\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1030\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1044\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1043\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1040\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1029\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1031\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1036\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1032\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1038\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\2052\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1028\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\3076\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1055\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1053\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\3082\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\2070\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1046\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1049\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1045\LocalizedData.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Client\Parameterinfo.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Extended\Parameterinfo.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\ParameterInfo.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Strings.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\UiInfo.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Client\UiInfo.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Extended\UiInfo.xml... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\SetupUi.xsd... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\DHtmlHeader.html... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1033\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1025\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1028\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1030\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1031\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1029\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1036\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1035\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1032\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1038\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1037\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1040\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1041\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1042\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1044\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1043\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1046\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1045\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1055\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1053\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\2052\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1049\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\3082\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\2070\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\3076\eula.rtf... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\Setup.exe... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\SetupUtility.exe... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\SetupEngine.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1025\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1033\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1029\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1030\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1035\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1031\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1036\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1032\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1028\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\2052\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\3076\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1042\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1041\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1037\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1044\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1053\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1055\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1040\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1045\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1046\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1049\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1038\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\2070\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\3082\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\1043\SetupResources.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\SetupUi.dll... -Preparing: C:\dfff6744d6ffa7bd69a70432eef1fae7\sqmapi.dll... -2020-03-04 12:21:03,679 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' -2020-03-04 12:21:12,915 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: Getting latest version of the Chocolatey package for download. + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\loader.py", line 1664, in _load_module + module_init(self.opts) + File "C:\salt\bin\lib\site-packages\salt-3000-py3.5.egg\salt\modules\swarm.py", line 53, in __init__ + __context__['client'] = docker.from_env() +AttributeError: module 'docker' has no attribute 'from_env' +2020-03-06 10:23:53,760 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops.api_key, ret: _|- +2020-03-06 10:23:53,760 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: victorops:api_key, ret: _|- +2020-03-06 10:24:01,493 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad apache.a2enmod: 'apache' __virtual__ returned False: The apache execution module cannot be loaded: apache is not installed. +2020-03-06 10:24:01,493 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded acme.cert +2020-03-06 10:24:01,493 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded alternatives.auto +2020-03-06 10:24:01,556 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded apache.config +2020-03-06 10:24:01,556 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded apache.a2enconf +2020-03-06 10:24:01,556 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded apache.a2ensite +2020-03-06 10:24:01,587 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.get_selections: 'pkg.get_selections' is not available. +2020-03-06 10:24:01,587 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded at.at +2020-03-06 10:24:01,603 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad augeas.execute: 'augeas.execute' is not available. +2020-03-06 10:24:01,619 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_compute.availability_set_create_or_update +2020-03-06 10:24:01,619 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_dns.zones_list_by_resource_group +2020-03-06 10:24:01,619 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_network.check_ip_address_availability +2020-03-06 10:24:01,619 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded azurearm_resource.resource_group_check_existence +2020-03-06 10:24:01,619 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded disk.tune +2020-03-06 10:24:01,634 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_elasticache.cache_cluster_exists +2020-03-06 10:24:01,634 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_elasticsearch.describe_elasticsearch_domain +2020-03-06 10:24:01,634 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_route53.find_hosted_zone +2020-03-06 10:24:01,634 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto3_sns.topic_exists +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_apigateway.describe_apis +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_asg.exists +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cfn.exists +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudfront.get_distribution +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudtrail.exists +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudwatch.get_alarm +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cloudwatch_event.exists +2020-03-06 10:24:01,650 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_cognitoidentity.describe_identity_pools +2020-03-06 10:24:01,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_datapipeline.create_pipeline +2020-03-06 10:24:01,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_dynamodb.exists +2020-03-06 10:24:01,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_ec2.get_key +2020-03-06 10:24:01,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elasticache.exists +2020-03-06 10:24:01,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elasticsearch_domain.exists +2020-03-06 10:24:01,667 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elb.exists +2020-03-06 10:24:01,682 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_elbv2.target_group_exists +2020-03-06 10:24:01,682 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_iam.get_user +2020-03-06 10:24:01,682 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_iam.role_exists +2020-03-06 10:24:01,682 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_iot.policy_exists +2020-03-06 10:24:01,682 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_kinesis.exists +2020-03-06 10:24:01,682 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_kms.describe_key +2020-03-06 10:24:01,682 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_lambda.function_exists +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_asg.exists +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_rds.exists +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_route53.get_record +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_s3.get_object_metadata +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_s3_bucket.exists +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_secgroup.exists +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_sns.exists +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_sqs.exists +2020-03-06 10:24:01,698 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded boto_vpc.exists +2020-03-06 10:24:01,715 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded bower.list +2020-03-06 10:24:01,715 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded chef.client +2020-03-06 10:24:01,715 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cimc.get_system_info +2020-03-06 10:24:01,728 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cisconso.set_data_value +2020-03-06 10:24:01,728 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded cron.list_tab +2020-03-06 10:24:01,728 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded ddns.update +2020-03-06 10:24:01,728 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded chassis.cmd +2020-03-06 10:24:01,759 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:24:01,775 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:24:01,806 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:24:01,822 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad docker.version: 'docker.version' is not available. +2020-03-06 10:24:01,837 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded eselect.exec_action +2020-03-06 10:24:02,071 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded esxi.cmd +2020-03-06 10:24:02,087 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['git', '--version'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:02,119 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: git version 2.23.0.windows.1 +2020-03-06 10:24:02,119 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded github.list_users +2020-03-06 10:24:02,135 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded glanceng.image_get +2020-03-06 10:24:02,135 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded glusterfs.list_volumes +2020-03-06 10:24:02,135 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded elasticsearch.exists +2020-03-06 10:24:02,150 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: grafana_version, ret: _|- +2020-03-06 10:24:02,150 [salt.loaded.int.module.config:483 ][DEBUG ][5108] key: grafana_version, ret: _|- +2020-03-06 10:24:02,166 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded icinga2.generate_ticket +2020-03-06 10:24:02,166 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded ifttt.trigger_event +2020-03-06 10:24:02,182 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:24:02,197 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb08.db_exists: 'influxdb08.db_exists' is not available. +2020-03-06 10:24:02,228 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:24:02,244 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:24:02,275 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:24:02,292 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad influxdb.db_exists: 'influxdb.db_exists' is not available. +2020-03-06 10:24:02,310 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded ipset.version +2020-03-06 10:24:02,310 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded iptables.version +2020-03-06 10:24:02,310 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded kapacitor.version +2020-03-06 10:24:02,337 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad kernelpkg.upgrade: 'kernelpkg.upgrade' is not available. +2020-03-06 10:24:02,337 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keyboard.get_sys +2020-03-06 10:24:02,370 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystone.auth +2020-03-06 10:24:02,370 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.domain_get +2020-03-06 10:24:02,370 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.endpoint_get +2020-03-06 10:24:02,370 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.group_get +2020-03-06 10:24:02,370 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.project_get +2020-03-06 10:24:02,370 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.role_get +2020-03-06 10:24:02,370 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.role_grant +2020-03-06 10:24:02,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.service_get +2020-03-06 10:24:02,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystoneng.user_get +2020-03-06 10:24:02,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded keystore.list +2020-03-06 10:24:02,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded kmod.available +2020-03-06 10:24:02,400 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad kubernetes.ping: 'kubernetes.ping' is not available. +2020-03-06 10:24:02,400 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded layman.add +2020-03-06 10:24:02,431 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad locale.get_locale: 'locale.get_locale' is not available. +2020-03-06 10:24:02,431 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded logadm.list_conf +2020-03-06 10:24:02,431 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded logrotate.show_conf +2020-03-06 10:24:02,446 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lvs.get_rules +2020-03-06 10:24:02,446 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lvs.get_rules +2020-03-06 10:24:02,446 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:24:02,446 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:24:02,446 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:24:02,446 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded lxd.version +2020-03-06 10:24:02,462 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded makeconf.get_var +2020-03-06 10:24:02,462 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded memcached.status +2020-03-06 10:24:02,462 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded mongodb.db_exists +2020-03-06 10:24:02,462 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded mongodb.user_exists +2020-03-06 10:24:02,462 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded monit.summary +2020-03-06 10:24:02,493 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_networks +2020-03-06 10:24:02,493 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_subnets +2020-03-06 10:24:02,493 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_subnets +2020-03-06 10:24:02,493 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded neutronng.list_subnets +2020-03-06 10:24:02,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nftables.version +2020-03-06 10:24:02,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded npm.list +2020-03-06 10:24:02,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nxos.cmd +2020-03-06 10:24:02,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded openvswitch.bridge_create +2020-03-06 10:24:02,509 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded openvswitch.port_add +2020-03-06 10:24:02,525 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded panos.commit +2020-03-06 10:24:02,525 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pdbedit.create +2020-03-06 10:24:02,525 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded pecl.list +2020-03-06 10:24:02,556 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad pkg.mod_repo: 'pkg.mod_repo' is not available. +2020-03-06 10:24:02,556 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded portage_config.get_missing_flags +2020-03-06 10:24:02,556 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.cluster_exists +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.user_exists +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.create_extension +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.group_create +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.datadir_init +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.language_create +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.privileges_grant +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.schema_exists +2020-03-06 10:24:02,572 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.tablespace_exists +2020-03-06 10:24:02,587 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded postgres.user_exists +2020-03-06 10:24:02,587 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded quota.report +2020-03-06 10:24:02,603 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded rabbitmq.list_upstreams +2020-03-06 10:24:02,634 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad rbac.profile_list: 'rbac.profile_list' is not available. +2020-03-06 10:24:02,665 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad redis.set_key: 'redis.set_key' is not available. +2020-03-06 10:24:02,665 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded selinux.getenforce +2020-03-06 10:24:02,696 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad vmadm.create: 'vmadm.create' is not available. +2020-03-06 10:24:02,696 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded snapper.diff +2020-03-06 10:24:02,696 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded splunk.list_users +2020-03-06 10:24:02,712 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded splunk_search.get +2020-03-06 10:24:02,743 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad sysctl.show: 'sysctl.show' is not available. +2020-03-06 10:24:02,759 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded tomcat.status +2020-03-06 10:24:02,759 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded trafficserver.set_config +2020-03-06 10:24:02,774 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded vagrant.version +2020-03-06 10:24:02,774 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded victorops.create_event +2020-03-06 10:24:02,774 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded virt.node_info +2020-03-06 10:24:02,790 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded win_iis.create_site +2020-03-06 10:24:02,821 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded win_snmp.get_agent_settings +2020-03-06 10:24:02,821 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded wordpress.show_plugin +2020-03-06 10:24:02,837 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded x509.get_pem_entry +2020-03-06 10:24:02,837 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded xmpp.send_msg +2020-03-06 10:24:02,853 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded zk_concurrency.lock +2020-03-06 10:24:02,853 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded zonecfg.create +2020-03-06 10:24:02,853 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded zookeeper.create +2020-03-06 10:24:02,869 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:24:02,869 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'where.exe chocolatey' in directory 'C:\Users\vagrant' +2020-03-06 10:24:03,089 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: INFO: Could not find files for the given pattern(s). +2020-03-06 10:24:03,089 [salt.loaded.int.module.cmdmod:844 ][DEBUG ][5108] retcode: 1 +2020-03-06 10:24:03,089 [salt.state :951 ][DEBUG ][5108] Last command return code: 1 +2020-03-06 10:24:03,102 [salt.utils.http :234 ][DEBUG ][5108] Requesting URL http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe using GET method +2020-03-06 10:24:03,102 [salt.utils.http :235 ][DEBUG ][5108] Using backend: tornado +2020-03-06 10:24:03,401 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\Users\\vagrant\\AppData\\Local\\Temp\\dotnet4.exe', '/q', '/norestart'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:10,713 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: Preparing: C:\8a8d874e7765cc41406ab9\header.bmp... +Preparing: C:\8a8d874e7765cc41406ab9\SplashScreen.bmp... +Preparing: C:\8a8d874e7765cc41406ab9\watermark.bmp... +Preparing: C:\8a8d874e7765cc41406ab9\DisplayIcon.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Print.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate1.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate2.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate3.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate4.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate5.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate6.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate7.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Rotate8.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Save.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\Setup.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\stop.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\SysReqMet.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\SysReqNotMet.ico... +Preparing: C:\8a8d874e7765cc41406ab9\Graphics\warn.ico... +Preparing: C:\8a8d874e7765cc41406ab9\1033\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1042\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1041\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1037\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1025\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1035\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1030\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1044\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1043\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1040\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1029\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1031\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1036\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1032\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1038\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\2052\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1028\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\3076\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1055\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1053\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\3082\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\2070\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1046\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1049\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\1045\LocalizedData.xml... +Preparing: C:\8a8d874e7765cc41406ab9\Client\Parameterinfo.xml... +Preparing: C:\8a8d874e7765cc41406ab9\Extended\Parameterinfo.xml... +Preparing: C:\8a8d874e7765cc41406ab9\ParameterInfo.xml... +Preparing: C:\8a8d874e7765cc41406ab9\Strings.xml... +Preparing: C:\8a8d874e7765cc41406ab9\UiInfo.xml... +Preparing: C:\8a8d874e7765cc41406ab9\Client\UiInfo.xml... +Preparing: C:\8a8d874e7765cc41406ab9\Extended\UiInfo.xml... +Preparing: C:\8a8d874e7765cc41406ab9\SetupUi.xsd... +Preparing: C:\8a8d874e7765cc41406ab9\DHtmlHeader.html... +Preparing: C:\8a8d874e7765cc41406ab9\1033\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1025\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1028\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1030\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1031\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1029\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1036\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1035\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1032\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1038\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1037\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1040\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1041\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1042\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1044\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1043\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1046\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1045\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1055\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1053\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\2052\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\1049\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\3082\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\2070\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\3076\eula.rtf... +Preparing: C:\8a8d874e7765cc41406ab9\Setup.exe... +Preparing: C:\8a8d874e7765cc41406ab9\SetupUtility.exe... +Preparing: C:\8a8d874e7765cc41406ab9\SetupEngine.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1025\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1033\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1029\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1030\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1035\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1031\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1036\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1032\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1028\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\2052\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\3076\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1042\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1041\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1037\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1044\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1053\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1055\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1040\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1045\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1046\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1049\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1038\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\2070\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\3082\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\1043\SetupResources.dll... +Preparing: C:\8a8d874e7765cc41406ab9\SetupUi.dll... +Preparing: C:\8a8d874e7765cc41406ab9\sqmapi.dll... +2020-03-06 10:24:10,713 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'C:\Windows\SYSTEM32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin' in directory 'C:\Users\vagrant' +2020-03-06 10:24:21,339 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: Getting latest version of the Chocolatey package for download. Getting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15. Downloading 7-Zip commandline tool prior to extraction. Extracting C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall\chocolatey.zip to C:\Users\vagrant\AppData\Local\Temp\chocolatey\chocInstall... @@ -28251,17 +27330,55 @@ You may need to shut down and restart powershell and/or consoles first prior to using choco. Ensuring chocolatey commands are on the path Ensuring chocolatey.nupkg is in the lib folder -2020-03-04 12:21:12,915 [salt.state :320 ][INFO ][3760] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} -2020-03-04 12:21:12,915 [salt.state :1997][INFO ][3760] Completed state [chocolatey.bootstrap] at time 12:21:12.915914 (duration_in_ms=25243.234) -2020-03-04 12:21:12,915 [salt.state :1819][INFO ][3760] Running state [notepadplusplus] at time 12:21:12.915914 -2020-03-04 12:21:12,932 [salt.state :1852][INFO ][3760] Executing state chocolatey.installed for [notepadplusplus] -2020-03-04 12:21:12,932 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:13,710 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: chocolatey|0.10.15 -2020-03-04 12:21:13,710 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:14,101 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: 0.10.15 -2020-03-04 12:21:14,101 [salt.loaded.int.module.cmdmod:1202][DEBUG ][3760] output: 0.10.15 -2020-03-04 12:21:14,117 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:24,575 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: Chocolatey v0.10.15 +2020-03-06 10:24:21,339 [salt.state :320 ][INFO ][5108] {'chocolatey.bootstrap': "Getting latest version of the Chocolatey package for download.\r\nGetting Chocolatey from https://chocolatey.org/api/v2/package/chocolatey/0.10.15.\r\nDownloading 7-Zip commandline tool prior to extraction.\r\nExtracting C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall\\chocolatey.zip to C:\\Users\\vagrant\\AppData\\Local\\Temp\\chocolatey\\chocInstall...\r\nInstalling chocolatey on this machine\r\nCreating ChocolateyInstall as an environment variable (targeting 'Machine') \n Setting ChocolateyInstall to 'C:\\ProgramData\\chocolatey'\r\nWARNING: It's very likely you will need to close and reopen your shell \n before you can use choco.\nRestricting write permissions to Administrators\r\nWe are setting up the Chocolatey package repository.\r\nThe packages themselves go to 'C:\\ProgramData\\chocolatey\\lib'\r\n (i.e. C:\\ProgramData\\chocolatey\\lib\\yourPackageName).\r\nA shim file for the command line goes to 'C:\\ProgramData\\chocolatey\\bin'\r\n and points to an executable in 'C:\\ProgramData\\chocolatey\\lib\\yourPackageName'.\r\n\r\nCreating Chocolatey folders if they do not already exist.\r\n\r\nWARNING: You can safely ignore errors related to missing log files when \n upgrading from a version of Chocolatey less than 0.9.9. \n 'Batch file could not be found' is also safe to ignore. \n 'The system cannot find the file specified' - also safe.\nchocolatey.nupkg file not installed in lib.\n Attempting to locate it from bootstrapper.\r\nPATH environment variable does not have C:\\ProgramData\\chocolatey\\bin in it. Adding...\nWARNING: Not setting tab completion: Profile file does not exist at \r\n'C:\\Users\\vagrant\\Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1'.\nChocolatey (choco.exe) is now ready.\r\nYou can call choco from anywhere, command line or powershell by typing choco.\r\nRun choco /? for a list of functions.\r\nYou may need to shut down and restart powershell and/or consoles\r\n first prior to using choco.\r\nEnsuring chocolatey commands are on the path\r\nEnsuring chocolatey.nupkg is in the lib folder"} +2020-03-06 10:24:21,355 [salt.state :2045][INFO ][5108] Completed state [chocolatey.bootstrap] at time 10:24:21.355902 (duration_in_ms=31596.291) +2020-03-06 10:24:21,355 [salt.state :1867][INFO ][5108] Running state [windirstat] at time 10:24:21.355902 +2020-03-06 10:24:21,355 [salt.state :1900][INFO ][5108] Executing state chocolatey.installed for [windirstat] +2020-03-06 10:24:21,355 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:22,165 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: chocolatey|0.10.15 +2020-03-06 10:24:22,165 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', '-v'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:22,572 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: 0.10.15 +2020-03-06 10:24:22,572 [salt.loaded.int.module.cmdmod:1199][DEBUG ][5108] output: 0.10.15 +2020-03-06 10:24:22,572 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:31,291 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: Chocolatey v0.10.15 +2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). + +Validation Warnings: + - A pending system reboot request has been detected, however, this is + being ignored due to the current Chocolatey configuration. If you + want to halt when this occurs, then either set the global feature + using: + choco feature enable -name=exitOnRebootDetected + or pass the option --exit-when-reboot-detected. + +Installing the following packages: +windirstat +By installing you accept licenses for the packages. + +windirstat v1.1.2.20161210 [Approved] +windirstat package files install completed. Performing other installation steps. +Installing WinDirStat... +WinDirStat has been installed. + windirstat may be able to be automatically uninstalled. + The install of windirstat was successful. + Software installed to 'C:\Program Files (x86)\WinDirStat' + +Chocolatey installed 1/1 packages. + See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). +2020-03-06 10:24:31,291 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:32,025 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:24:32,025 [salt.state :320 ][INFO ][5108] Made the following changes: +'windirstat' changed from 'absent' to '['1.1.2.20161210']' + +2020-03-06 10:24:32,025 [salt.state :2045][INFO ][5108] Completed state [windirstat] at time 10:24:32.025352 (duration_in_ms=10669.45) +2020-03-06 10:24:32,025 [salt.state :1867][INFO ][5108] Running state [notepadplusplus] at time 10:24:32.025352 +2020-03-06 10:24:32,025 [salt.state :1900][INFO ][5108] Executing state chocolatey.installed for [notepadplusplus] +2020-03-06 10:24:32,041 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:32,759 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: chocolatey|0.10.15 +windirstat|1.1.2.20161210 +2020-03-06 10:24:32,759 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'notepadplusplus', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:42,368 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: Chocolatey v0.10.15 2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). Validation Warnings: @@ -28282,7 +27399,7 @@ chocolatey-core.extension package files install completed. Performing other inst The install of chocolatey-core.extension was successful. Software installed to 'C:\ProgramData\Chocolatey\extensions\chocolatey-core' -notepadplusplus.install v7.8.4 [Approved] +notepadplusplus.install v7.8.5 notepadplusplus.install package files install completed. Performing other installation steps. Installing 64-bit notepadplusplus.install... notepadplusplus.install has been installed. @@ -28292,7 +27409,7 @@ Added C:\ProgramData\Chocolatey\bin\notepad++.exe shim pointed to 'c:\program fi The install of notepadplusplus.install was successful. Software installed as 'exe', install location is likely default. -notepadplusplus v7.8.4 [Approved] +notepadplusplus v7.8.5 [Approved] notepadplusplus package files install completed. Performing other installation steps. The install of notepadplusplus was successful. Software install location not explicitly set, could be in package or @@ -28300,64 +27417,22 @@ notepadplusplus package files install completed. Performing other installation s Chocolatey installed 3/3 packages. See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:21:24,575 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:25,357 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: chocolatey|0.10.15 -chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:21:25,357 [salt.state :320 ][INFO ][3760] Made the following changes: -'notepadplusplus.install' changed from 'absent' to '['7.8.4']' -'notepadplusplus' changed from 'absent' to '['7.8.4']' - -2020-03-04 12:21:25,357 [salt.state :1997][INFO ][3760] Completed state [notepadplusplus] at time 12:21:25.357282 (duration_in_ms=12441.368) -2020-03-04 12:21:25,372 [salt.state :1819][INFO ][3760] Running state [windirstat] at time 12:21:25.372429 -2020-03-04 12:21:25,372 [salt.state :1852][INFO ][3760] Executing state chocolatey.installed for [windirstat] -2020-03-04 12:21:25,372 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:26,109 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: chocolatey|0.10.15 -chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 -2020-03-04 12:21:26,109 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'install', 'windirstat', '--version', '1.1.2.20161210', '--no-progress', '--yes'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:33,115 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: Chocolatey v0.10.15 -2 validations performed. 1 success(es), 1 warning(s), and 0 error(s). - -Validation Warnings: - - A pending system reboot request has been detected, however, this is - being ignored due to the current Chocolatey configuration. If you - want to halt when this occurs, then either set the global feature - using: - choco feature enable -name=exitOnRebootDetected - or pass the option --exit-when-reboot-detected. - -Installing the following packages: -windirstat -By installing you accept licenses for the packages. - -windirstat v1.1.2.20161210 [Approved] -windirstat package files install completed. Performing other installation steps. -Installing WinDirStat... -WinDirStat has been installed. - windirstat may be able to be automatically uninstalled. - The install of windirstat was successful. - Software installed to 'C:\Program Files (x86)\WinDirStat' - -Chocolatey installed 1/1 packages. - See the log for details (C:\ProgramData\Chocolatey\logs\chocolatey.log). -2020-03-04 12:21:33,115 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' -2020-03-04 12:21:33,804 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: chocolatey|0.10.15 +2020-03-06 10:24:42,368 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command ['C:\\ProgramData\\Chocolatey\\bin\\chocolatey.exe', 'list', '--local-only', '--limit-output'] in directory 'C:\Users\vagrant' +2020-03-06 10:24:43,165 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: chocolatey|0.10.15 chocolatey-core.extension|1.3.5.1 -notepadplusplus|7.8.4 -notepadplusplus.install|7.8.4 +notepadplusplus|7.8.5 +notepadplusplus.install|7.8.5 windirstat|1.1.2.20161210 -2020-03-04 12:21:33,804 [salt.state :320 ][INFO ][3760] Made the following changes: -'windirstat' changed from 'absent' to '['1.1.2.20161210']' +2020-03-06 10:24:43,165 [salt.state :320 ][INFO ][5108] Made the following changes: +'notepadplusplus.install' changed from 'absent' to '['7.8.5']' +'notepadplusplus' changed from 'absent' to '['7.8.5']' -2020-03-04 12:21:33,804 [salt.state :1997][INFO ][3760] Completed state [windirstat] at time 12:21:33.804501 (duration_in_ms=8432.072) -2020-03-04 12:21:33,804 [salt.state :1819][INFO ][3760] Running state [telnet-client] at time 12:21:33.804501 -2020-03-04 12:21:33,804 [salt.state :1852][INFO ][3760] Executing state win_servermanager.installed for [telnet-client] -2020-03-04 12:21:33,804 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][3760] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json -2020-03-04 12:21:33,804 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' -2020-03-04 12:21:35,022 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: [ +2020-03-06 10:24:43,165 [salt.state :2045][INFO ][5108] Completed state [notepadplusplus] at time 10:24:43.165497 (duration_in_ms=11140.145) +2020-03-06 10:24:43,165 [salt.state :1867][INFO ][5108] Running state [telnet-client] at time 10:24:43.165497 +2020-03-06 10:24:43,165 [salt.state :1900][INFO ][5108] Executing state win_servermanager.installed for [telnet-client] +2020-03-06 10:24:43,165 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][5108] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 10:24:43,165 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 10:24:44,682 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: [ { "DisplayName": "Active Directory Certificate Services", "Name": "AD-Certificate", @@ -29669,9 +28744,9 @@ windirstat|1.1.2.20161210 "Installed": true } ] -2020-03-04 12:21:35,037 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][3760] PowerShell: Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json -2020-03-04 12:21:35,037 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json"' in directory 'C:\Users\vagrant' -2020-03-04 12:21:59,418 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: { +2020-03-06 10:24:44,682 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][5108] PowerShell: Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json +2020-03-06 10:24:44,696 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Install-WindowsFeature -Name telnet-client -IncludeManagementTools -IncludeAllSubFeature -WarningAction SilentlyContinue | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 10:25:07,321 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: { "Success": true, "RestartNeeded": 1, "FeatureResult": [ @@ -29687,9 +28762,9 @@ windirstat|1.1.2.20161210 ], "ExitCode": 0 } -2020-03-04 12:21:59,418 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][3760] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json -2020-03-04 12:21:59,418 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' -2020-03-04 12:22:00,043 [salt.loaded.int.module.cmdmod:843 ][DEBUG ][3760] stdout: [ +2020-03-06 10:25:07,337 [salt.loaded.int.module.win_servermanager:60 ][DEBUG ][5108] PowerShell: Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json +2020-03-06 10:25:07,337 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'Powershell -NonInteractive -NoProfile "Import-Module ServerManager; Get-WindowsFeature -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select DisplayName,Name,Installed | ConvertTo-Json"' in directory 'C:\Users\vagrant' +2020-03-06 10:25:08,025 [salt.loaded.int.module.cmdmod:840 ][DEBUG ][5108] stdout: [ { "DisplayName": "Active Directory Certificate Services", "Name": "AD-Certificate", @@ -31001,46 +30076,45 @@ windirstat|1.1.2.20161210 "Installed": true } ] -2020-03-04 12:22:00,043 [salt.state :320 ][INFO ][3760] Made the following changes: +2020-03-06 10:25:08,025 [salt.state :320 ][INFO ][5108] Made the following changes: 'Telnet-Client' changed from 'absent' to 'Telnet Client' -2020-03-04 12:22:00,043 [salt.state :1997][INFO ][3760] Completed state [telnet-client] at time 12:22:00.043222 (duration_in_ms=26238.721) -2020-03-04 12:22:00,043 [salt.state :1819][INFO ][3760] Running state [windows.module.system.reboot] at time 12:22:00.043222 -2020-03-04 12:22:00,043 [salt.state :1852][INFO ][3760] Executing state module.run for [windows.module.system.reboot] -2020-03-04 12:22:00,059 [salt.utils.lazy :107 ][DEBUG ][3760] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. -2020-03-04 12:22:00,059 [salt.loaded.int.module.cmdmod:397 ][INFO ][3760] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' -2020-03-04 12:22:00,230 [salt.state :889 ][DEBUG ][3760] Last command return code: 0 -2020-03-04 12:22:00,246 [salt.loaded.int.module.win_system:1413][DEBUG ][3760] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired -2020-03-04 12:22:00,246 [salt.loaded.int.module.win_system:1348][DEBUG ][3760] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:22:00,246 [salt.loaded.int.module.win_system:1348][DEBUG ][3760] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager -2020-03-04 12:22:00,246 [salt.loaded.int.module.win_system:1387][DEBUG ][3760] Unable to access key: SOFTWARE\Microsoft\ServerManager -2020-03-04 12:22:00,246 [salt.loaded.int.module.win_system:1273][DEBUG ][3760] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending -2020-03-04 12:22:00,281 [salt.state :320 ][INFO ][3760] {'system.reboot': True} -2020-03-04 12:22:00,281 [salt.state :1997][INFO ][3760] Completed state [windows.module.system.reboot] at time 12:22:00.281108 (duration_in_ms=237.886) -2020-03-04 12:22:00,281 [salt.state :2801][DEBUG ][3760] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\2221468419856 does not exist, no need to cleanup -2020-03-04 12:22:00,281 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded state.check_result -2020-03-04 12:22:00,294 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded highstate.output -2020-03-04 12:22:00,294 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,294 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,294 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,309 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,309 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,309 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,324 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,324 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,340 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,340 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,356 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,356 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,356 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,356 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,373 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,373 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,373 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,466 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,466 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 12:22:00,466 [salt.utils.lazy :104 ][DEBUG ][3760] LazyLoaded nested.output -2020-03-04 15:22:04,684 [salt.loader :747 ][DEBUG ][4588] Grains refresh requested. Refreshing grains. -2020-03-04 15:22:04,684 [salt.config :2190][DEBUG ][4588] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion -2020-03-04 15:22:04,684 [salt.config :2334][DEBUG ][4588] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' -2020-03-04 15:22:04,684 [salt.config :2190][DEBUG ][4588] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf +2020-03-06 10:25:08,025 [salt.state :2045][INFO ][5108] Completed state [telnet-client] at time 10:25:08.025183 (duration_in_ms=24859.686) +2020-03-06 10:25:08,025 [salt.state :1867][INFO ][5108] Running state [windows.module.system.reboot] at time 10:25:08.025183 +2020-03-06 10:25:08,025 [salt.state :1900][INFO ][5108] Executing state module.run for [windows.module.system.reboot] +2020-03-06 10:25:08,041 [salt.utils.lazy :107 ][DEBUG ][5108] Could not LazyLoad module.mod_run_check: 'module.mod_run_check' is not available. +2020-03-06 10:25:08,041 [salt.loaded.int.module.cmdmod:397 ][INFO ][5108] Executing command 'powershell -command "if ($env:CI -imatch 'True') {throw 'Is CI environment'} else {exit 0}"' in directory 'C:\Users\vagrant' +2020-03-06 10:25:08,228 [salt.state :906 ][DEBUG ][5108] Last command return code: 0 +2020-03-06 10:25:08,228 [salt.loaded.int.module.win_system:1413][DEBUG ][5108] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired +2020-03-06 10:25:08,228 [salt.loaded.int.module.win_system:1348][DEBUG ][5108] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:25:08,228 [salt.loaded.int.module.win_system:1348][DEBUG ][5108] Unable to access key: SYSTEM\CurrentControlSet\Control\Session Manager +2020-03-06 10:25:08,228 [salt.loaded.int.module.win_system:1387][DEBUG ][5108] Unable to access key: SOFTWARE\Microsoft\ServerManager +2020-03-06 10:25:08,228 [salt.loaded.int.module.win_system:1273][DEBUG ][5108] Key does not exist: SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending +2020-03-06 10:25:08,259 [salt.state :320 ][INFO ][5108] {'system.reboot': True} +2020-03-06 10:25:08,259 [salt.state :2045][INFO ][5108] Completed state [windows.module.system.reboot] at time 10:25:08.259749 (duration_in_ms=234.566) +2020-03-06 10:25:08,259 [salt.state :2921][DEBUG ][5108] File C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\accumulator\3257447910256 does not exist, no need to cleanup +2020-03-06 10:25:08,276 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded highstate.output +2020-03-06 10:25:08,276 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,290 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,290 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,290 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,290 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,307 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,307 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,307 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,321 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,321 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,338 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,353 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,353 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,353 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,353 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,369 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,369 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,369 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 10:25:08,384 [salt.utils.lazy :104 ][DEBUG ][5108] LazyLoaded nested.output +2020-03-06 13:25:14,292 [salt.loader :770 ][DEBUG ][3096] Grains refresh requested. Refreshing grains. +2020-03-06 13:25:14,292 [salt.config :2111][DEBUG ][3096] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion +2020-03-06 13:25:14,339 [salt.config :2255][DEBUG ][3096] Including configuration from 'C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf' +2020-03-06 13:25:14,339 [salt.config :2111][DEBUG ][3096] Reading configuration from C:\Users\vagrant\AppData\Local\Temp\kitchen\etc\salt\minion.d\99-minion.conf From ec7e3c95f559402972108dffc63e88c4977f6f89 Mon Sep 17 00:00:00 2001 From: Peter Mudd Date: Thu, 12 Mar 2020 14:22:13 -0400 Subject: [PATCH 4/5] chore: cleanup messages --- scripts/kitchen_test.sh | 2 +- test/integration/default/libraries/helpers.rb | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/kitchen_test.sh b/scripts/kitchen_test.sh index 4d88154..6d7edfe 100755 --- a/scripts/kitchen_test.sh +++ b/scripts/kitchen_test.sh @@ -87,7 +87,7 @@ if [ ${#failures_array[@]} -eq 0 ]; then dos2unix test/results/* read -p 'Commit test results and push to github? [y]' -n 1 -r REPLY echo - commit_message="test: on premise windows 10 and windows server \'kitchen test\' results" + commit_message="test: on premise windows 10 and windows server 'kitchen test' results" if [[ $REPLY =~ ^[Yy]$ ]]; then git add -A test/results git commit -m "$commit_message" diff --git a/test/integration/default/libraries/helpers.rb b/test/integration/default/libraries/helpers.rb index 1c76487..12f04b9 100755 --- a/test/integration/default/libraries/helpers.rb +++ b/test/integration/default/libraries/helpers.rb @@ -141,7 +141,6 @@ def ingest_from_minion(type, ps_cmd, max_retries = 20, sec_timeout = 10) puts(msg) Inspec::Log.debug(msg) end - puts 'yes - windows' if OS.windows? if OS.windows? pwsh_cmd = '$test_path=".kitchen/kitchen-vagrant/$(Get-ChildItem -Path .kitchen/logs/*.log | Where-Object {$_.Name -ne "kitchen.log"} | Sort-Object -Property @{Expression = {$_.LastWriteTime}; Descending = $True} | Select-Object -Property BaseName -First 1 -expandproperty BaseName)"; Set-Location -Path $test_path; $test_vagrantfile = "$test_path/Vagrantfile"; Set-Content -Path $test_vagrantfile -Value (get-content -Path $test_vagrantfile | Select-String -Pattern "vagrant_vb_guest.rb" -NotMatch); Set-Location -Path $test_path; vagrant winrm' cmd = "powershell -command '#{pwsh_cmd}'" From 798bfb58a036b04a66ad83eb55d26302568b16d5 Mon Sep 17 00:00:00 2001 From: Peter Mudd Date: Thu, 12 Mar 2020 14:37:44 -0400 Subject: [PATCH 5/5] chore: cleanup messages and skip ci --- scripts/kitchen_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/kitchen_test.sh b/scripts/kitchen_test.sh index 6d7edfe..d7abfff 100755 --- a/scripts/kitchen_test.sh +++ b/scripts/kitchen_test.sh @@ -87,7 +87,7 @@ if [ ${#failures_array[@]} -eq 0 ]; then dos2unix test/results/* read -p 'Commit test results and push to github? [y]' -n 1 -r REPLY echo - commit_message="test: on premise windows 10 and windows server 'kitchen test' results" + commit_message="test: on premise windows 10 and windows server 'kitchen test' results [skip ci]" if [[ $REPLY =~ ^[Yy]$ ]]; then git add -A test/results git commit -m "$commit_message"